Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.cpp69 return m_frames.size(); in DoGetFrameCount()
73 if (m_frames.size() > 0) in AddFirstFrame()
316 m_frames.pop_back(); in UpdateUnwindPlanForFirstFrameIfInvalid()
328 if (m_frames.empty()) in AddOneMoreFrame()
358 if (!m_frames[m_frames.size() - 2] in AddOneMoreFrame()
367 m_frames.pop_back(); in AddOneMoreFrame()
388 return m_frames[m_frames.size() - 2]->reg_ctx_lldb_sp->GetCFA( in AddOneMoreFrame()
389 m_frames[m_frames.size() - 2]->cfa); in AddOneMoreFrame()
394 m_frames.pop_back(); in AddOneMoreFrame()
400 if (m_frames.size() == 0) { in DoGetFrameInfoAtIndex()
[all …]
H A DUnwindLLDB.h69 m_frames.clear(); in DoClear()
132 std::vector<CursorSP> m_frames; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrameList.cpp87 if (m_frames.empty()) in ResetCurrentInlinedDepth()
237 m_frames.resize(num_frames); in GetOnlyConcreteFramesUpTo()
455 if (m_frames.empty()) { in GetFramesUpTo()
624 const_iterator pos, begin = m_frames.begin(), end = m_frames.end(); in Dump()
647 if (idx < m_frames.size()) in GetFrameAtIndex()
648 frame_sp = m_frames[idx]; in GetFrameAtIndex()
692 if (m_frames.empty()) { in GetFrameAtIndex()
756 if (idx >= m_frames.size()) in SetFrameAtIndex()
757 m_frames.resize(idx + 1); in SetFrameAtIndex()
817 m_frames.clear(); in Clear()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DSharingPtr.cpp37 std::vector<void *> m_frames; member in Backtrace
40 Backtrace::Backtrace() : m_frames() {} in Backtrace()
48 m_frames.assign(frames + 2, frames + (count - 2)); in GetFrames()
52 if (!m_frames.empty()) in Dump()
53 ::backtrace_symbols_fd(m_frames.data(), m_frames.size(), STDOUT_FILENO); in Dump()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackFrameList.h138 collection m_frames; variable