Home
last modified time | relevance | path

Searched refs:wasm_frame (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/debug/
Ddebug-frames.cc80 auto wasm_frame = WasmFrame::cast(frame_); in GetFunctionName() local
81 auto wasm_instance = handle(wasm_frame->wasm_instance(), isolate_); in GetFunctionName()
83 wasm_frame->function_index()); in GetFunctionName()
Ddebug.cc1242 WasmFrame* wasm_frame = WasmFrame::cast(frame); in PrepareStep() local
1243 auto* debug_info = wasm_frame->native_module()->GetDebugInfo(); in PrepareStep()
1244 if (debug_info->PrepareStep(wasm_frame)) { in PrepareStep()
1301 WasmFrame* wasm_frame = WasmFrame::cast(frames_it.frame()); in PrepareStep() local
1302 auto* debug_info = wasm_frame->native_module()->GetDebugInfo(); in PrepareStep()
1303 debug_info->PrepareStepOutTo(wasm_frame); in PrepareStep()
/third_party/node/deps/v8/src/wasm/
Dwasm-debug.cc240 auto* wasm_frame = WasmFrame::cast(it.frame()); in DeadBreakpoint() local
241 if (static_cast<int>(wasm_frame->function_index()) != func_index) return 0; in DeadBreakpoint()
242 return DeadBreakpoint(wasm_frame, breakpoints); in DeadBreakpoint()
/third_party/node/deps/v8/src/execution/
Disolate.cc1977 WasmFrame* wasm_frame = static_cast<WasmFrame*>(frame); in ThrowInternal() local
1980 int offset = wasm_frame->LookupExceptionHandlerInTable(); in ThrowInternal()