Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/debug/
Ddebug-stack-trace-iterator.cc37 inlined_frame_index_ = static_cast<int>(frames.size()); in DebugStackTraceIterator()
48 --inlined_frame_index_; in Advance()
49 for (; inlined_frame_index_ >= 0; --inlined_frame_index_) { in Advance()
51 if (FrameSummary::Get(iterator_.frame(), inlined_frame_index_) in Advance()
57 if (inlined_frame_index_ >= 0) { in Advance()
59 iterator_.frame(), inlined_frame_index_, isolate_)); in Advance()
68 inlined_frame_index_ = static_cast<int>(frames.size()); in Advance()
178 inlined_frame_index_, Utils::OpenHandle(*source), in Evaluate()
Ddebug-frames.h48 int inlined_frame_index() const { return inlined_frame_index_; } in inlined_frame_index()
55 int inlined_frame_index_; variable
Ddebug-stack-trace-iterator.h41 int inlined_frame_index_; variable
Ddebug-frames.cc21 inlined_frame_index_(inlined_frame_index), in FrameInspector()
/third_party/node/deps/v8/src/builtins/
Daccessors.cc555 : isolate_(isolate), frame_iterator_(isolate), inlined_frame_index_(-1) { in FrameFunctionIterator()
595 if (inlined_frame_index_ == 0) return function_; in MaterializeFunction()
602 translated_values.GetFrameFromJSFrameIndex(inlined_frame_index_); in MaterializeFunction()
618 if (inlined_frame_index_ <= 0) { in next()
622 inlined_frame_index_ = -1; in next()
625 if (inlined_frame_index_ == -1) return MaybeHandle<JSFunction>(); in next()
628 --inlined_frame_index_; in next()
630 frames_[inlined_frame_index_].AsJavaScript().function(); in next()
637 DCHECK_EQ(-1, inlined_frame_index_); in GetFrames()
641 inlined_frame_index_ = static_cast<int>(frames_.size()); in GetFrames()
[all …]