Add performance analysis code + gzip eval

This commit is contained in:
Théophile Bastian 2019-06-11 22:15:32 +02:00
parent db32807dd0
commit a3a33d4c88
116 changed files with 1254 additions and 10 deletions

View File

@ -1,8 +1,12 @@
open Std
let main ?no_rbp_undef:(no_rbp_undef=false) outfile proj =
let main
?no_rbp_undef:(no_rbp_undef=false)
?timers:(timers=false)
outfile
proj =
let pre_dwarf = proj
|> Simplest.of_proj no_rbp_undef
|> Simplest.of_proj no_rbp_undef timers
|> Simplest.clean_lost_track_subs in
Format.printf "%a" Frontend.pp_pre_dwarf_readelf pre_dwarf;
let pre_c_dwarf = PreCBinding.convert_pre_c pre_dwarf in

View File

@ -40,11 +40,13 @@ exception InvalidSub
exception UnexpectedRbpSet
type synthesis_settings = {
mutable no_rbp_undef: bool
}
mutable no_rbp_undef: bool;
mutable timers: bool
}
let __settings = {
no_rbp_undef = false
no_rbp_undef = false;
timers = false
}
let pp_cfa_pos ppx = function
@ -83,6 +85,12 @@ let pp_option_of sub_pp ppx = function
| None -> Format.fprintf ppx "None"
| Some x -> Format.fprintf ppx "Some %a" sub_pp x
let timer_probe probe_name =
if __settings.timers then (
let time = Unix.gettimeofday () in
Format.eprintf "~~TIME~~ %s [%f]@." probe_name time
)
let opt_addr_of term =
(** Get the address of a term as an option, if it has one*)
BStd.Term.get_attr term BStd.address
@ -864,14 +872,18 @@ let build_sub_ranges prog: (memory_address) AddrMap.t =
~init:AddrMap.empty
~f:fold_subroutine
let of_proj no_rbp_undef proj : subroutine_cfa_map =
let of_proj no_rbp_undef timers proj : subroutine_cfa_map =
(** Extracts the `cfa_changes` of a project *)
__settings.no_rbp_undef <- no_rbp_undef ;
__settings.timers <- timers ;
timer_probe "dwarfsynth generation" ;
let prog = BStd.Project.program proj in
let sub_ranges = build_sub_ranges prog in
let next_instr_graph =
build_next_instr sub_ranges (BStd.Project.disasm proj) in
of_prog prog next_instr_graph
let result = of_prog prog next_instr_graph in
timer_probe "dwarfsynth cleaning" ;
result
let clean_lost_track_subs pre_dwarf : subroutine_cfa_map =
(** Removes the subroutines on which we lost track from [pre_dwarf] *)

View File

@ -28,10 +28,19 @@ module Cmdline = struct
~default:false
)
let timers = Cnf.(
param (bool) "timers"
~doc:("Enable timers: print time probes at various points of the "
^"code.")
~as_flag:true
~default: false
)
let () = Cnf.(
when_ready ((fun {get=(!!)} ->
Bap.Std.Project.register_pass' (main
~no_rbp_undef:!!no_rbp_undef
~timers:!!timers
!!outfile )))
)
end

View File

@ -0,0 +1,21 @@
# Synthesis of gzip, statically linked
* `.text` section: 698882B (ie. ~0.7M)
## Uncached bap, 10 runs
bap startup: 39.524±0.988 sec
dwarfsynth generation: 3.833±0.153 sec
dwarfsynth cleaning: 0.085±0.007 sec
write DWARF table: 0.011±0.001 sec
insert DWARF table in binary: 0.006±0.001 sec
Total: 43.459±1.132 sec
## Cached bap, 100 runs
bap startup: 1.700±0.061 sec
dwarfsynth generation: 3.827±0.135 sec
dwarfsynth cleaning: 0.078±0.005 sec
write DWARF table: 0.012±0.001 sec
insert DWARF table in binary: 0.006±0.001 sec
Total: 5.622±0.183 sec

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281352.315164278]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281353.993941]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281357.771968]
~~TIME~~ write DWARF table [1560281357.846636223]
~~TIME~~ insert DWARF table in binary [1560281357.857683256]
~~TIME~~ finish [1560281357.863254214]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281402.142625621]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281403.802240]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281407.569127]
~~TIME~~ write DWARF table [1560281407.643448406]
~~TIME~~ insert DWARF table in binary [1560281407.654585307]
~~TIME~~ finish [1560281407.660157562]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281909.623327477]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281911.319594]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281915.151671]
~~TIME~~ write DWARF table [1560281915.232230971]
~~TIME~~ insert DWARF table in binary [1560281915.243924394]
~~TIME~~ finish [1560281915.250104862]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281407.667306336]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281409.335586]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281413.091894]
~~TIME~~ write DWARF table [1560281413.166155531]
~~TIME~~ insert DWARF table in binary [1560281413.177077753]
~~TIME~~ finish [1560281413.182814272]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281413.189990212]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281414.883961]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281418.713210]
~~TIME~~ write DWARF table [1560281418.788888945]
~~TIME~~ insert DWARF table in binary [1560281418.801770392]
~~TIME~~ finish [1560281418.807409310]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281418.814649334]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281420.494096]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281424.252214]
~~TIME~~ write DWARF table [1560281424.328237652]
~~TIME~~ insert DWARF table in binary [1560281424.339212970]
~~TIME~~ finish [1560281424.345007851]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281424.352037796]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281426.014260]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281429.753347]
~~TIME~~ write DWARF table [1560281429.829284661]
~~TIME~~ insert DWARF table in binary [1560281429.840772459]
~~TIME~~ finish [1560281429.846767182]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281429.854164975]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281431.543399]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281435.303522]
~~TIME~~ write DWARF table [1560281435.377588758]
~~TIME~~ insert DWARF table in binary [1560281435.388465169]
~~TIME~~ finish [1560281435.394388109]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281435.401107497]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281437.058676]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281440.821699]
~~TIME~~ write DWARF table [1560281440.896160990]
~~TIME~~ insert DWARF table in binary [1560281440.906958740]
~~TIME~~ finish [1560281440.912979265]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281440.919704641]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281442.579090]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281446.330609]
~~TIME~~ write DWARF table [1560281446.410918828]
~~TIME~~ insert DWARF table in binary [1560281446.422142427]
~~TIME~~ finish [1560281446.427708299]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281446.435277500]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281448.117816]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281451.963857]
~~TIME~~ write DWARF table [1560281452.039344934]
~~TIME~~ insert DWARF table in binary [1560281452.050898326]
~~TIME~~ finish [1560281452.056525828]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281452.063779649]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281453.735612]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281457.521017]
~~TIME~~ write DWARF table [1560281457.601037387]
~~TIME~~ insert DWARF table in binary [1560281457.612669903]
~~TIME~~ finish [1560281457.618724537]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281357.870060470]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281359.528141]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281363.314683]
~~TIME~~ write DWARF table [1560281363.389136466]
~~TIME~~ insert DWARF table in binary [1560281363.400780751]
~~TIME~~ finish [1560281363.406294054]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281457.625894208]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281459.321016]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281463.134007]
~~TIME~~ write DWARF table [1560281463.215000185]
~~TIME~~ insert DWARF table in binary [1560281463.226482420]
~~TIME~~ finish [1560281463.232581902]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281463.239462196]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281464.908691]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281468.647992]
~~TIME~~ write DWARF table [1560281468.722160022]
~~TIME~~ insert DWARF table in binary [1560281468.733621514]
~~TIME~~ finish [1560281468.739469945]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281468.746686071]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281470.432567]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281474.201472]
~~TIME~~ write DWARF table [1560281474.281015229]
~~TIME~~ insert DWARF table in binary [1560281474.292142725]
~~TIME~~ finish [1560281474.297686643]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281474.305144829]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281475.995944]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281479.773452]
~~TIME~~ write DWARF table [1560281479.850221700]
~~TIME~~ insert DWARF table in binary [1560281479.862411607]
~~TIME~~ finish [1560281479.868559585]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281479.876138242]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281481.564604]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281485.375812]
~~TIME~~ write DWARF table [1560281485.454272926]
~~TIME~~ insert DWARF table in binary [1560281485.466314954]
~~TIME~~ finish [1560281485.472663794]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281485.479509523]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281487.190248]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281491.010432]
~~TIME~~ write DWARF table [1560281491.085877698]
~~TIME~~ insert DWARF table in binary [1560281491.096823874]
~~TIME~~ finish [1560281491.102328866]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281491.109419801]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281492.773578]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281496.561177]
~~TIME~~ write DWARF table [1560281496.640954444]
~~TIME~~ insert DWARF table in binary [1560281496.652417604]
~~TIME~~ finish [1560281496.658926529]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281496.666473025]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281498.351896]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281502.283159]
~~TIME~~ write DWARF table [1560281502.363213673]
~~TIME~~ insert DWARF table in binary [1560281502.374706084]
~~TIME~~ finish [1560281502.380456753]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281502.387838183]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281504.081297]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281507.874786]
~~TIME~~ write DWARF table [1560281507.950041826]
~~TIME~~ insert DWARF table in binary [1560281507.961369137]
~~TIME~~ finish [1560281507.967208562]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281507.974820975]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281509.655477]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281513.462898]
~~TIME~~ write DWARF table [1560281513.539737595]
~~TIME~~ insert DWARF table in binary [1560281513.551384350]
~~TIME~~ finish [1560281513.556873247]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281363.413300204]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281365.065564]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281368.783261]
~~TIME~~ write DWARF table [1560281368.857877394]
~~TIME~~ insert DWARF table in binary [1560281368.869279975]
~~TIME~~ finish [1560281368.875234654]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281513.564072580]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281515.279598]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281519.135458]
~~TIME~~ write DWARF table [1560281519.211780062]
~~TIME~~ insert DWARF table in binary [1560281519.223308499]
~~TIME~~ finish [1560281519.229142963]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281519.235899501]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281520.922599]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281524.718352]
~~TIME~~ write DWARF table [1560281524.798640302]
~~TIME~~ insert DWARF table in binary [1560281524.809637103]
~~TIME~~ finish [1560281524.815465879]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281524.822855657]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281526.506230]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281530.313753]
~~TIME~~ write DWARF table [1560281530.389631432]
~~TIME~~ insert DWARF table in binary [1560281530.401015811]
~~TIME~~ finish [1560281530.407015527]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281530.414288194]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281532.157952]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281535.964519]
~~TIME~~ write DWARF table [1560281536.040160072]
~~TIME~~ insert DWARF table in binary [1560281536.051215653]
~~TIME~~ finish [1560281536.056983502]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281536.064612699]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281537.754646]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281541.560252]
~~TIME~~ write DWARF table [1560281541.638332015]
~~TIME~~ insert DWARF table in binary [1560281541.649971947]
~~TIME~~ finish [1560281541.656045840]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281541.663220654]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281543.364881]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281547.197339]
~~TIME~~ write DWARF table [1560281547.273884100]
~~TIME~~ insert DWARF table in binary [1560281547.285065332]
~~TIME~~ finish [1560281547.290886995]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281547.298387604]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281548.973210]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281552.786291]
~~TIME~~ write DWARF table [1560281552.866410011]
~~TIME~~ insert DWARF table in binary [1560281552.877824774]
~~TIME~~ finish [1560281552.883684310]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281552.891004728]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281554.582563]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281558.453338]
~~TIME~~ write DWARF table [1560281558.530938018]
~~TIME~~ insert DWARF table in binary [1560281558.543420433]
~~TIME~~ finish [1560281558.550283154]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281558.557710289]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281560.287532]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281564.123894]
~~TIME~~ write DWARF table [1560281564.204535342]
~~TIME~~ insert DWARF table in binary [1560281564.215266918]
~~TIME~~ finish [1560281564.221215357]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281564.228518756]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281565.950320]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281569.806175]
~~TIME~~ write DWARF table [1560281569.880998272]
~~TIME~~ insert DWARF table in binary [1560281569.892680378]
~~TIME~~ finish [1560281569.898710042]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281368.882481007]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281370.543147]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281374.314420]
~~TIME~~ write DWARF table [1560281374.388680290]
~~TIME~~ insert DWARF table in binary [1560281374.400143760]
~~TIME~~ finish [1560281374.406207060]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281569.906010609]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281571.650430]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281575.581333]
~~TIME~~ write DWARF table [1560281575.659190256]
~~TIME~~ insert DWARF table in binary [1560281575.671184190]
~~TIME~~ finish [1560281575.677105108]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281575.684496004]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281577.390342]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281581.194364]
~~TIME~~ write DWARF table [1560281581.269674206]
~~TIME~~ insert DWARF table in binary [1560281581.281093402]
~~TIME~~ finish [1560281581.286624106]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281581.293540955]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281582.988928]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281586.799485]
~~TIME~~ write DWARF table [1560281586.875164685]
~~TIME~~ insert DWARF table in binary [1560281586.886656461]
~~TIME~~ finish [1560281586.892542509]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281586.899381428]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281588.621306]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281592.489716]
~~TIME~~ write DWARF table [1560281592.567288066]
~~TIME~~ insert DWARF table in binary [1560281592.578783228]
~~TIME~~ finish [1560281592.585472106]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281592.592464985]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281594.296132]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281598.082554]
~~TIME~~ write DWARF table [1560281598.160458829]
~~TIME~~ insert DWARF table in binary [1560281598.172061374]
~~TIME~~ finish [1560281598.178046508]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281598.185515936]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281599.945846]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281603.757230]
~~TIME~~ write DWARF table [1560281603.835991775]
~~TIME~~ insert DWARF table in binary [1560281603.847151274]
~~TIME~~ finish [1560281603.852953672]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281603.860919959]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281605.587011]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281609.413989]
~~TIME~~ write DWARF table [1560281609.492620497]
~~TIME~~ insert DWARF table in binary [1560281609.504604426]
~~TIME~~ finish [1560281609.510397996]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281609.517543081]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281611.195664]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281615.062610]
~~TIME~~ write DWARF table [1560281615.138304730]
~~TIME~~ insert DWARF table in binary [1560281615.150012952]
~~TIME~~ finish [1560281615.155950105]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281615.163057395]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281616.874626]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281620.674894]
~~TIME~~ write DWARF table [1560281620.752402694]
~~TIME~~ insert DWARF table in binary [1560281620.763904473]
~~TIME~~ finish [1560281620.770088457]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281620.777143129]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281622.459392]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281626.263536]
~~TIME~~ write DWARF table [1560281626.339114086]
~~TIME~~ insert DWARF table in binary [1560281626.350602312]
~~TIME~~ finish [1560281626.356433705]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281374.413093044]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281376.171342]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281379.992959]
~~TIME~~ write DWARF table [1560281380.069703605]
~~TIME~~ insert DWARF table in binary [1560281380.080905430]
~~TIME~~ finish [1560281380.086732062]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281626.363434970]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281628.049524]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281631.923170]
~~TIME~~ write DWARF table [1560281631.998482136]
~~TIME~~ insert DWARF table in binary [1560281632.011693648]
~~TIME~~ finish [1560281632.019175222]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281632.026386919]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281633.721467]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281637.522722]
~~TIME~~ write DWARF table [1560281637.599629183]
~~TIME~~ insert DWARF table in binary [1560281637.611304842]
~~TIME~~ finish [1560281637.617430011]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281637.624124494]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281639.296319]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281643.069992]
~~TIME~~ write DWARF table [1560281643.144766638]
~~TIME~~ insert DWARF table in binary [1560281643.157041966]
~~TIME~~ finish [1560281643.162773820]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281643.169745674]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281644.908058]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281648.740735]
~~TIME~~ write DWARF table [1560281648.820074757]
~~TIME~~ insert DWARF table in binary [1560281648.831567069]
~~TIME~~ finish [1560281648.837188890]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281648.844573103]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281650.574437]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281654.482302]
~~TIME~~ write DWARF table [1560281654.559424096]
~~TIME~~ insert DWARF table in binary [1560281654.570578866]
~~TIME~~ finish [1560281654.576593745]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281654.583652826]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281656.275971]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281660.130978]
~~TIME~~ write DWARF table [1560281660.208100120]
~~TIME~~ insert DWARF table in binary [1560281660.219781075]
~~TIME~~ finish [1560281660.225366595]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281660.232621937]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281661.921193]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281665.770556]
~~TIME~~ write DWARF table [1560281665.850885692]
~~TIME~~ insert DWARF table in binary [1560281665.862589666]
~~TIME~~ finish [1560281665.868782569]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281665.876417111]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281667.595955]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281671.422615]
~~TIME~~ write DWARF table [1560281671.497403523]
~~TIME~~ insert DWARF table in binary [1560281671.508706242]
~~TIME~~ finish [1560281671.514655055]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281671.522799979]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281673.236881]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281677.068214]
~~TIME~~ write DWARF table [1560281677.144708401]
~~TIME~~ insert DWARF table in binary [1560281677.156426917]
~~TIME~~ finish [1560281677.162055972]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281677.169161587]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281678.846489]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281682.689488]
~~TIME~~ write DWARF table [1560281682.766973939]
~~TIME~~ insert DWARF table in binary [1560281682.779102853]
~~TIME~~ finish [1560281682.784977218]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281380.093826129]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281381.763351]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281385.498015]
~~TIME~~ write DWARF table [1560281385.572400948]
~~TIME~~ insert DWARF table in binary [1560281385.583685788]
~~TIME~~ finish [1560281385.589498738]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281682.792107470]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281684.555952]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281688.483822]
~~TIME~~ write DWARF table [1560281688.566549168]
~~TIME~~ insert DWARF table in binary [1560281688.577849551]
~~TIME~~ finish [1560281688.584042058]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281688.591104005]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281690.343004]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281694.166833]
~~TIME~~ write DWARF table [1560281694.244294706]
~~TIME~~ insert DWARF table in binary [1560281694.255690745]
~~TIME~~ finish [1560281694.261542741]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281694.268521021]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281695.970790]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281699.773256]
~~TIME~~ write DWARF table [1560281699.851669704]
~~TIME~~ insert DWARF table in binary [1560281699.862957961]
~~TIME~~ finish [1560281699.868946538]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281699.876018462]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281701.555552]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281705.359769]
~~TIME~~ write DWARF table [1560281705.438836361]
~~TIME~~ insert DWARF table in binary [1560281705.449901062]
~~TIME~~ finish [1560281705.455699971]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281705.462707981]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281707.161891]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281710.976875]
~~TIME~~ write DWARF table [1560281711.054804750]
~~TIME~~ insert DWARF table in binary [1560281711.066129181]
~~TIME~~ finish [1560281711.071915568]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281711.078756377]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281712.793332]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281716.603913]
~~TIME~~ write DWARF table [1560281716.681998348]
~~TIME~~ insert DWARF table in binary [1560281716.693000987]
~~TIME~~ finish [1560281716.698746947]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281716.705768202]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281718.408417]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281722.199916]
~~TIME~~ write DWARF table [1560281722.278341424]
~~TIME~~ insert DWARF table in binary [1560281722.289950974]
~~TIME~~ finish [1560281722.295614193]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281722.302938675]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281724.019906]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281727.818378]
~~TIME~~ write DWARF table [1560281727.896434043]
~~TIME~~ insert DWARF table in binary [1560281727.908040590]
~~TIME~~ finish [1560281727.914143694]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281727.921485453]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281729.643277]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281733.522134]
~~TIME~~ write DWARF table [1560281733.600269951]
~~TIME~~ insert DWARF table in binary [1560281733.611825891]
~~TIME~~ finish [1560281733.617754705]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281733.624971005]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281735.333951]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281739.184344]
~~TIME~~ write DWARF table [1560281739.262949665]
~~TIME~~ insert DWARF table in binary [1560281739.274598825]
~~TIME~~ finish [1560281739.280273078]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281385.596669206]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281387.251200]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281390.972639]
~~TIME~~ write DWARF table [1560281391.047662639]
~~TIME~~ insert DWARF table in binary [1560281391.059052779]
~~TIME~~ finish [1560281391.065676545]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281739.287695942]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281740.978973]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281744.847234]
~~TIME~~ write DWARF table [1560281744.927978297]
~~TIME~~ insert DWARF table in binary [1560281744.940719583]
~~TIME~~ finish [1560281744.946752331]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281744.954579472]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281746.682138]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281750.522105]
~~TIME~~ write DWARF table [1560281750.602778209]
~~TIME~~ insert DWARF table in binary [1560281750.614846932]
~~TIME~~ finish [1560281750.620911704]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281750.628476959]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281752.343418]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281756.237907]
~~TIME~~ write DWARF table [1560281756.313944672]
~~TIME~~ insert DWARF table in binary [1560281756.324979209]
~~TIME~~ finish [1560281756.331067672]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281756.338470628]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281758.021831]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281761.827206]
~~TIME~~ write DWARF table [1560281761.904278245]
~~TIME~~ insert DWARF table in binary [1560281761.915408038]
~~TIME~~ finish [1560281761.921150883]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281761.928171682]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281763.599057]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281767.343438]
~~TIME~~ write DWARF table [1560281767.420649405]
~~TIME~~ insert DWARF table in binary [1560281767.431930532]
~~TIME~~ finish [1560281767.437950564]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281767.445159598]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281769.131012]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281772.950977]
~~TIME~~ write DWARF table [1560281773.029300260]
~~TIME~~ insert DWARF table in binary [1560281773.039981177]
~~TIME~~ finish [1560281773.046507308]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281773.053742710]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281774.748767]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281778.589723]
~~TIME~~ write DWARF table [1560281778.668136696]
~~TIME~~ insert DWARF table in binary [1560281778.679957952]
~~TIME~~ finish [1560281778.686137709]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281778.693446122]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281780.378745]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281784.164560]
~~TIME~~ write DWARF table [1560281784.248686914]
~~TIME~~ insert DWARF table in binary [1560281784.260316811]
~~TIME~~ finish [1560281784.266611065]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281784.274244300]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281786.003399]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281789.913242]
~~TIME~~ write DWARF table [1560281789.994962065]
~~TIME~~ insert DWARF table in binary [1560281790.007310687]
~~TIME~~ finish [1560281790.014187406]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281790.021770481]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281791.713735]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281795.574480]
~~TIME~~ write DWARF table [1560281795.652362063]
~~TIME~~ insert DWARF table in binary [1560281795.663603160]
~~TIME~~ finish [1560281795.669516505]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281391.073169865]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281392.729434]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281396.525864]
~~TIME~~ write DWARF table [1560281396.600197987]
~~TIME~~ insert DWARF table in binary [1560281396.610767833]
~~TIME~~ finish [1560281396.616673666]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281795.677006751]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281797.401543]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281801.344199]
~~TIME~~ write DWARF table [1560281801.426612052]
~~TIME~~ insert DWARF table in binary [1560281801.437998229]
~~TIME~~ finish [1560281801.443770551]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281801.450766939]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281803.133499]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281806.963258]
~~TIME~~ write DWARF table [1560281807.041364608]
~~TIME~~ insert DWARF table in binary [1560281807.053430877]
~~TIME~~ finish [1560281807.059385675]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281807.066221342]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281808.791336]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281812.661063]
~~TIME~~ write DWARF table [1560281812.739063572]
~~TIME~~ insert DWARF table in binary [1560281812.751132139]
~~TIME~~ finish [1560281812.757100139]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281812.764205971]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281814.485782]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281818.291314]
~~TIME~~ write DWARF table [1560281818.376718864]
~~TIME~~ insert DWARF table in binary [1560281818.388885777]
~~TIME~~ finish [1560281818.395267156]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281818.402576590]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281820.122247]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281823.961845]
~~TIME~~ write DWARF table [1560281824.041678818]
~~TIME~~ insert DWARF table in binary [1560281824.052989819]
~~TIME~~ finish [1560281824.058496955]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281824.066276222]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281825.765969]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281829.581084]
~~TIME~~ write DWARF table [1560281829.659083783]
~~TIME~~ insert DWARF table in binary [1560281829.670821075]
~~TIME~~ finish [1560281829.676904987]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281829.684229248]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281831.453497]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281835.309865]
~~TIME~~ write DWARF table [1560281835.390893865]
~~TIME~~ insert DWARF table in binary [1560281835.402781422]
~~TIME~~ finish [1560281835.408856801]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281835.416543530]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281837.138709]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281840.996064]
~~TIME~~ write DWARF table [1560281841.074905005]
~~TIME~~ insert DWARF table in binary [1560281841.086515142]
~~TIME~~ finish [1560281841.092233637]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281841.099485624]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281842.838761]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281847.064341]
~~TIME~~ write DWARF table [1560281847.153114835]
~~TIME~~ insert DWARF table in binary [1560281847.169424188]
~~TIME~~ finish [1560281847.176612205]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281847.185386747]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281849.034031]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281853.078455]
~~TIME~~ write DWARF table [1560281853.158705750]
~~TIME~~ insert DWARF table in binary [1560281853.169899899]
~~TIME~~ finish [1560281853.175985918]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281396.623630093]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281398.293475]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281402.044330]
~~TIME~~ write DWARF table [1560281402.118645992]
~~TIME~~ insert DWARF table in binary [1560281402.130006316]
~~TIME~~ finish [1560281402.135684495]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281853.183419518]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281854.941444]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281858.908625]
~~TIME~~ write DWARF table [1560281858.986787735]
~~TIME~~ insert DWARF table in binary [1560281858.998057427]
~~TIME~~ finish [1560281859.004142454]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281859.011375920]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281860.703972]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281864.529240]
~~TIME~~ write DWARF table [1560281864.609882622]
~~TIME~~ insert DWARF table in binary [1560281864.621368424]
~~TIME~~ finish [1560281864.627576519]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281864.634380793]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281866.337475]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281870.221456]
~~TIME~~ write DWARF table [1560281870.298562862]
~~TIME~~ insert DWARF table in binary [1560281870.310101110]
~~TIME~~ finish [1560281870.316054950]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281870.323399006]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281872.006645]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281875.802025]
~~TIME~~ write DWARF table [1560281875.878508377]
~~TIME~~ insert DWARF table in binary [1560281875.889961885]
~~TIME~~ finish [1560281875.895813992]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281875.902943945]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281877.600531]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281881.465943]
~~TIME~~ write DWARF table [1560281881.543861099]
~~TIME~~ insert DWARF table in binary [1560281881.555185743]
~~TIME~~ finish [1560281881.561385147]

View File

@ -0,0 +1,10 @@
~~TIME~~ bap startup [1560281881.568424471]
x86 MOV with offset instructions will not lifted due to unknown llvm version 7.1
~~TIME~~ dwarfsynth generation [1560281883.243641]
Found inconsistency (0x40d198 <000b5136>): (RSP + (16); u) -- (RSP + (8); u)
Inconsistent TId 000b5136 in subroutine x2nrealloc, skipping.
~~TIME~~ dwarfsynth cleaning [1560281887.023648]
~~TIME~~ write DWARF table [1560281887.101276144]
~~TIME~~ insert DWARF table in binary [1560281887.112740123]
~~TIME~~ finish [1560281887.118947911]

Some files were not shown because too many files have changed in this diff Show More