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

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

Issue 2650943011: [debug] remove StepFrame (Closed)
Patch Set: 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/wasm/wasm-debug.cc
diff --git a/src/wasm/wasm-debug.cc b/src/wasm/wasm-debug.cc
index c4f4c29053e15a63de0f5d79be21bef9d71d7adf..34ee869d006f2ecd23fdb5d8a8233ba4770d495c 100644
--- a/src/wasm/wasm-debug.cc
+++ b/src/wasm/wasm-debug.cc
@@ -174,10 +174,6 @@ class InterpreterHandle {
: WasmInterpreter::BreakFlag::AfterCall);
return thread->Run();
}
- case StepFrame:
- thread->AddBreakFlags(WasmInterpreter::BreakFlag::AfterCall |
- WasmInterpreter::BreakFlag::AfterReturn);
- return thread->Run();
default:
UNREACHABLE();
return WasmInterpreter::STOPPED;
@@ -233,9 +229,6 @@ class InterpreterHandle {
hit_step = thread->GetFrameCount() == last_step_stack_depth_;
break;
}
- case StepFrame:
- hit_step = thread->GetFrameCount() != last_step_stack_depth_;
- break;
default:
UNREACHABLE();
}

Powered by Google App Engine
This is Rietveld 408576698