Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DUnwindLLDB.cpp27 : Unwind(thread), m_frames(), m_unwind_complete(false), in UnwindLLDB()
57 if ((m_frames.size() % FRAME_COUNT) == 0) { in DoGetFrameCount()
68 return m_frames.size(); in DoGetFrameCount()
72 if (m_frames.size() > 0) in AddFirstFrame()
97 m_frames.push_back(first_cursor_sp); in AddFirstFrame()
115 assert(m_frames.size() != 0 && in GetOneMoreFrame()
125 CursorSP prev_frame = m_frames.back(); in GetOneMoreFrame()
126 uint32_t cur_idx = m_frames.size(); in GetOneMoreFrame()
303 assert(m_frames.size() == 1 && "No. of cursor frames are not 1"); in UpdateUnwindPlanForFirstFrameIfInvalid()
315 for (uint32_t i = 1; i < m_frames.size(); i++) in UpdateUnwindPlanForFirstFrameIfInvalid()
[all …]
H A DStackFrameList.cpp41 : m_thread(thread), m_prev_frames_sp(prev_frames_sp), m_mutex(), m_frames(), in StackFrameList()
90 if (m_frames.empty()) in ResetCurrentInlinedDepth()
92 if (!m_frames[0]->IsInlined()) { in ResetCurrentInlinedDepth()
109 Block *block_ptr = m_frames[0]->GetFrameBlock(); in ResetCurrentInlinedDepth()
230 assert(m_frames.size() <= end_idx && "Expected there to be frames to fill"); in GetOnlyConcreteFramesUpTo()
243 m_frames.resize(num_frames); in GetOnlyConcreteFramesUpTo()
372 if (m_frames.empty()) in SynthesizeTailCallFrames()
385 StackFrame &prev_frame = *m_frames.back().get(); in SynthesizeTailCallFrames()
416 uint32_t frame_idx = m_frames.size(); in SynthesizeTailCallFrames()
431 m_frames.push_back(synth_frame); in SynthesizeTailCallFrames()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnwindLLDB.h68 m_frames.clear(); in DoClear()
130 std::vector<CursorSP> m_frames; variable
H A DStackFrameList.h149 collection m_frames; variable