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

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

Issue 2629823003: [wasm] Implement frame inspection for interpreted frames (Closed)
Patch Set: Document that the forward declaration is only needed for VS 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
« src/wasm/wasm-interpreter.cc ('K') | « src/wasm/wasm-objects.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/wasm-objects.cc
diff --git a/src/wasm/wasm-objects.cc b/src/wasm/wasm-objects.cc
index 4779d88d678b500a6b55fa291fde79be8597da77..af6a446dcc896cea32364f9e5e4fefc384e329c1 100644
--- a/src/wasm/wasm-objects.cc
+++ b/src/wasm/wasm-objects.cc
@@ -1119,6 +1119,26 @@ bool WasmCompiledModule::SetBreakPoint(
return true;
}
+BreakLocation WasmCompiledModule::GetBreakLocation(int position) {
+ DCHECK_LE(0, position);
+ DCHECK_GT(module_bytes()->length(), position);
+ uint8_t opcode = module_bytes()->GetChars()[position];
+ DebugBreakType type;
+ switch (opcode) {
+ case kExprReturn:
+ type = DEBUG_BREAK_SLOT_AT_RETURN;
+ break;
+ case kExprCallFunction:
+ case kExprCallIndirect:
+ type = DEBUG_BREAK_SLOT_AT_CALL;
+ break;
+ default:
+ type = DEBUG_BREAK_SLOT;
+ break;
+ }
+ return BreakLocation(Handle<AbstractCode>::null(), type, position, position);
+}
+
MaybeHandle<FixedArray> WasmCompiledModule::CheckBreakPoints(
const BreakLocation& location) {
Isolate* isolate = GetIsolate();
« src/wasm/wasm-interpreter.cc ('K') | « src/wasm/wasm-objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698