Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-debug.cc506 FrameInspector frame_inspector(it.frame(), inlined_frame_index, isolate); in RUNTIME_FUNCTION() local
517 if (frame_inspector.summary().IsWasm()) { in RUNTIME_FUNCTION()
526 Handle<String> func_name = frame_inspector.summary().FunctionName(); in RUNTIME_FUNCTION()
531 Script::GetWrapper(frame_inspector.GetScript()); in RUNTIME_FUNCTION()
541 int position = frame_inspector.summary().SourcePosition(); in RUNTIME_FUNCTION()
564 int position = frame_inspector.GetSourcePosition(); in RUNTIME_FUNCTION()
570 bool constructor = frame_inspector.IsConstructor(); in RUNTIME_FUNCTION()
574 Handle<JSFunction>::cast(frame_inspector.GetFunction()); in RUNTIME_FUNCTION()
581 Handle<Object> maybe_context = frame_inspector.GetContext(); in RUNTIME_FUNCTION()
602 frame_inspector.GetExpression(scope_info->StackLocalIndex(i)); in RUNTIME_FUNCTION()
[all …]
/external/v8/src/debug/
Ddebug-evaluate.cc125 FrameInspector frame_inspector(frame, inlined_jsframe_index, isolate); in ContextBuilder() local
126 Handle<JSFunction> local_function = frame_inspector.GetFunction(); in ContextBuilder()
149 for (ScopeIterator it(isolate, &frame_inspector, option); !it.Done(); in ContextBuilder()
160 frame_inspector.MaterializeStackLocals(materialized, local_function); in ContextBuilder()
185 frame_inspector.MaterializeStackLocals(materialized, in ContextBuilder()
Ddebug-scopes.cc22 ScopeIterator::ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector, in ScopeIterator() argument
25 frame_inspector_(frame_inspector), in ScopeIterator()
28 if (!frame_inspector->GetContext()->IsContext()) { in ScopeIterator()
33 context_ = Handle<Context>::cast(frame_inspector->GetContext()); in ScopeIterator()
36 DCHECK(frame_inspector->GetScript()->type() != Script::TYPE_WASM); in ScopeIterator()
Ddebug-scopes.h44 ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector,