Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: src/compiler/wasm-compiler.cc

Issue 2520943002: [wasm] Implement official wasm text format (Closed)
Patch Set: Return a value even after UNREACHABLE Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | src/flag-definitions.h » ('j') | src/wasm/s-expr.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/wasm-compiler.cc
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
index eaa5b6fec6e2202b476c299589bb5a6863e24c94..07ed3712981f301fb0aa35e70e841b4b36403b56 100644
--- a/src/compiler/wasm-compiler.cc
+++ b/src/compiler/wasm-compiler.cc
@@ -34,6 +34,7 @@
#include "src/log-inl.h"
#include "src/wasm/ast-decoder.h"
+#include "src/wasm/s-expr.h"
#include "src/wasm/wasm-module.h"
#include "src/wasm/wasm-opcodes.h"
@@ -3357,6 +3358,11 @@ SourcePositionTable* WasmCompilationUnit::BuildGraphForWasmFunction(
OFStream os(stdout);
PrintAst(isolate_->allocator(), body, os, nullptr);
}
+ if (index >= FLAG_trace_wasm_sexpr_start &&
+ index < FLAG_trace_wasm_sexpr_end) {
+ OFStream os(stdout);
+ PrintSExpr(module_env_->module, function_->func_index, os, nullptr);
+ }
if (FLAG_trace_wasm_decode_time) {
*decode_ms = decode_timer.Elapsed().InMillisecondsF();
}
« no previous file with comments | « BUILD.gn ('k') | src/flag-definitions.h » ('j') | src/wasm/s-expr.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698