Index: src/flag-definitions.h |
diff --git a/src/flag-definitions.h b/src/flag-definitions.h |
index d860929c8410165deabeb90ae5dfac9e6f97994b..81074b1c8fae3e483ab34f5cf72b66de6512cb52 100644 |
--- a/src/flag-definitions.h |
+++ b/src/flag-definitions.h |
@@ -467,7 +467,9 @@ DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") |
DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") |
DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") |
DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") |
-DEFINE_BOOL(trace_wasm_ast, false, "dump AST after WASM decode") |
+DEFINE_INT(trace_wasm_ast_start, 0, "start function for WASM AST trace") |
+DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace") |
ahaas
2016/03/15 14:24:55
You could add "(exclusive)" to state that this is
titzer
2016/03/15 17:18:04
Done.
|
+DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") |
DEFINE_BOOL(wasm_break_on_decoder_error, false, |
"debug break when wasm decoder encounters an error") |
DEFINE_BOOL(wasm_loop_assignment_analysis, false, |