Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-debug.cc510 FrameInspector frame_inspector(it.frame(), inlined_jsframe_index, isolate); in RUNTIME_FUNCTION() local
523 int position = frame_inspector.GetSourcePosition(); in RUNTIME_FUNCTION()
526 bool constructor = frame_inspector.IsConstructor(); in RUNTIME_FUNCTION()
529 Handle<JSFunction> function(JSFunction::cast(frame_inspector.GetFunction())); in RUNTIME_FUNCTION()
553 locals->set(local * 2 + 1, frame_inspector.GetExpression(i)); in RUNTIME_FUNCTION()
559 Context::cast(frame_inspector.GetContext())->declaration_context()); in RUNTIME_FUNCTION()
619 frame_inspector.SetArgumentsFrame(it.frame()); in RUNTIME_FUNCTION()
625 if (argument_count < frame_inspector.GetParametersCount()) { in RUNTIME_FUNCTION()
626 argument_count = frame_inspector.GetParametersCount(); in RUNTIME_FUNCTION()
638 details->set(kFrameDetailsFunctionIndex, frame_inspector.GetFunction()); in RUNTIME_FUNCTION()
[all …]
/external/v8/src/debug/
Ddebug-evaluate.cc129 FrameInspector frame_inspector(frame, inlined_jsframe_index, isolate); in ContextBuilder() local
131 handle(JSFunction::cast(frame_inspector.GetFunction())); in ContextBuilder()
160 for (ScopeIterator it(isolate, &frame_inspector, option); in ContextBuilder()
176 frame_inspector.MaterializeStackLocals(materialized_function, in ContextBuilder()
205 frame_inspector.MaterializeStackLocals(materialized_object, in ContextBuilder()
Ddebug-scopes.cc17 ScopeIterator::ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector, in ScopeIterator() argument
20 frame_inspector_(frame_inspector), in ScopeIterator()
25 if (!frame_inspector->GetContext()->IsContext() || in ScopeIterator()
26 !frame_inspector->GetFunction()->IsJSFunction()) { in ScopeIterator()
31 context_ = Handle<Context>(Context::cast(frame_inspector->GetContext())); in ScopeIterator()
Ddebug-scopes.h38 ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector,