You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This flag results in running symex on the asm side first, resulting in
easier debugging when there is an error in symbolically executing the
assembly at all.
Copy file name to clipboardexpand all lines: src/CLI.v
+7
Original file line number
Diff line number
Diff line change
@@ -547,6 +547,10 @@ Module ForExtraction.
547
547
:= ([Arg.long_key "asm-rewriting-passes"],
548
548
Arg.String,
549
549
["A comma-separated list of rewriting passes to enable. Prefix with - to disable a pass. This list only impacts passes listed in --asm-rewriting-pipeline. Default : " ++ (if default_asm_rewriting_passes =? "" then "(none)" else default_asm_rewriting_passes)]%string ++ describe_flag_options "rewriting pass" "Enable all rewriting passes" special_asm_rewriting_pass_flags known_asm_rewriting_pass_flags_with_spec)%list.
["Debug option: If true, the assembly equivalence checker will symex the assembly first, even though this may be more inefficient. This may be useful for having a more concise description of errors in assembly symbolic execution."]).
0 commit comments