Home
last modified time | relevance | path

Searched refs:js_frame (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/debug/
Ddebug-frames.cc19 JavaScriptFrame* js_frame = in FrameInspector() local
21 DCHECK(js_frame || frame->is_wasm()); in FrameInspector()
22 has_adapted_arguments_ = js_frame && js_frame->has_adapted_arguments(); in FrameInspector()
29 DCHECK(js_frame != nullptr); in FrameInspector()
31 if (js_frame->LookupCode()->is_turbofanned() && in FrameInspector()
32 js_frame->function()->shared()->asm_function()) { in FrameInspector()
38 js_frame, inlined_frame_index, isolate)); in FrameInspector()
Ddebug.cc989 JavaScriptFrame* js_frame = JavaScriptFrame::cast(frame); in PrepareStep() local
990 DCHECK(js_frame->function()->IsJSFunction()); in PrepareStep()
999 BreakLocation location = BreakLocation::FromFrame(debug_info, js_frame); in PrepareStep()
/external/v8/src/
Disolate.cc460 JavaScriptFrame* js_frame = JavaScriptFrame::cast(frame); in CaptureSimpleStackTrace() local
464 js_frame->Summarize(&frames); in CaptureSimpleStackTrace()
1243 OptimizedFrame* js_frame = static_cast<OptimizedFrame*>(frame); in Throw() local
1245 offset = js_frame->LookupExceptionHandlerInTable(&stack_slots, nullptr); in Throw()
1274 InterpretedFrame* js_frame = static_cast<InterpretedFrame*>(frame); in Throw() local
1275 int register_slots = js_frame->GetBytecodeArray()->register_count(); in Throw()
1277 offset = js_frame->LookupExceptionHandlerInTable(&context_reg, nullptr); in Throw()
1292 context = Context::cast(js_frame->ReadInterpreterRegister(context_reg)); in Throw()
1293 js_frame->PatchBytecodeOffset(static_cast<int>(offset)); in Throw()
1306 JavaScriptFrame* js_frame = static_cast<JavaScriptFrame*>(frame); in Throw() local
[all …]