Home
last modified time | relevance | path

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

/external/v8/src/debug/
Ddebug-frames.cc33 JavaScriptFrame* js_frame = in FrameInspector() local
35 DCHECK(js_frame || frame->is_wasm()); in FrameInspector()
36 has_adapted_arguments_ = js_frame && js_frame->has_adapted_arguments(); in FrameInspector()
42 DCHECK_NOT_NULL(js_frame); in FrameInspector()
44 js_frame, inlined_frame_index, isolate)); in FrameInspector()
Ddebug.cc1051 JavaScriptFrame* js_frame = JavaScriptFrame::cast(frame); in PrepareStep() local
1052 DCHECK(js_frame->function().IsJSFunction()); in PrepareStep()
1063 location = BreakLocation::FromFrame(debug_info, js_frame); in PrepareStep()
/external/v8/src/execution/
Disolate.cc1809 OptimizedFrame* js_frame = static_cast<OptimizedFrame*>(frame); in ThrowInternal() local
1811 int offset = js_frame->LookupExceptionHandlerInTable(nullptr, nullptr); in ThrowInternal()
1864 InterpretedFrame* js_frame = static_cast<InterpretedFrame*>(frame); in ThrowInternal() local
1866 js_frame->GetBytecodeArray().register_count()); in ThrowInternal()
1869 js_frame->LookupExceptionHandlerInTable(&context_reg, nullptr); in ThrowInternal()
1885 Context::cast(js_frame->ReadInterpreterRegister(context_reg)); in ThrowInternal()
1886 js_frame->PatchBytecodeOffset(static_cast<int>(offset)); in ThrowInternal()
1905 JavaScriptBuiltinContinuationWithCatchFrame* js_frame = in ThrowInternal() local
1907 js_frame->SetException(exception); in ThrowInternal()
1910 Address return_sp = js_frame->fp() - js_frame->GetSPToFPDelta(); in ThrowInternal()
[all …]
Dframes.cc201 JavaScriptFrame* js_frame = static_cast<JavaScriptFrame*>(frame); in IsValidFrame() local
202 if (!js_frame->function().IsJSFunction()) return false; in IsValidFrame()
203 return js_frame->function().shared().IsSubjectToDebugging(); in IsValidFrame()
/external/v8/src/objects/
Dobjects.cc145 JavaScriptFrame* js_frame = static_cast<JavaScriptFrame*>(it.frame()); in GetShouldThrow() local
147 js_frame->GetFunctions(&functions); in GetShouldThrow()