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

Unified Diff: src/compiler/x64/code-generator-x64.cc

Issue 2623773004: [wasm] Introduce WasmToInterpreterFrame (Closed)
Patch Set: Replace StackFrame::WASM occurences in platform-specific code Created 3 years, 11 months 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
Index: src/compiler/x64/code-generator-x64.cc
diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
index 33e219e7ed6a519bdd060c18998315df9e16c941..e997039445cf0dc12323073f004818ce04454f85 100644
--- a/src/compiler/x64/code-generator-x64.cc
+++ b/src/compiler/x64/code-generator-x64.cc
@@ -287,7 +287,7 @@ class WasmOutOfLineTrap final : public OutOfLineCode {
gen_->AddProtectedInstruction(pc_, current_pc);
if (frame_elided_) {
- __ EnterFrame(StackFrame::WASM);
+ __ EnterFrame(StackFrame::WASM_COMPILED);
}
wasm::TrapReason trap_id = wasm::kTrapMemOutOfBounds;
@@ -2323,7 +2323,7 @@ void CodeGenerator::AssembleArchTrap(Instruction* instr,
bool old_has_frame = __ has_frame();
if (frame_elided_) {
__ set_has_frame(true);
- __ EnterFrame(StackFrame::WASM);
+ __ EnterFrame(StackFrame::WASM_COMPILED);
}
GenerateCallToTrap(trap_id);
if (frame_elided_) {
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/debug/debug-frames.h » ('j') | src/frames.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698