Searched refs:m_frames (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | UnwindLLDB.cpp | 27 : 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() 298 assert(m_frames.size() == 1 && "No. of cursor frames are not 1"); in UpdateUnwindPlanForFirstFrameIfInvalid() 310 for (uint32_t i = 1; i < m_frames.size(); i++) in UpdateUnwindPlanForFirstFrameIfInvalid() [all …]
|
| H A D | StackFrameList.cpp | 39 : m_thread(thread), m_prev_frames_sp(prev_frames_sp), m_mutex(), m_frames(), in StackFrameList() 88 if (m_frames.empty()) in ResetCurrentInlinedDepth() 90 if (!m_frames[0]->IsInlined()) { in ResetCurrentInlinedDepth() 107 Block *block_ptr = m_frames[0]->GetFrameBlock(); in ResetCurrentInlinedDepth() 227 assert(m_frames.size() <= end_idx && "Expected there to be frames to fill"); in GetOnlyConcreteFramesUpTo() 240 m_frames.resize(num_frames); in GetOnlyConcreteFramesUpTo() 369 if (m_frames.empty()) in SynthesizeTailCallFrames() 382 StackFrame &prev_frame = *m_frames.back().get(); in SynthesizeTailCallFrames() 413 uint32_t frame_idx = m_frames.size(); in SynthesizeTailCallFrames() 428 m_frames.push_back(synth_frame); in SynthesizeTailCallFrames() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | UnwindLLDB.h | 68 m_frames.clear(); in DoClear() 130 std::vector<CursorSP> m_frames; variable
|
| H A D | StackFrameList.h | 135 collection m_frames; variable
|
| /openbsd-src/gnu/llvm/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 152 : m_string_sp(string_sp), m_frames(frames.begin(), frames.end()), in FDEvent() 161 Frames &GetFrames() { return m_frames; } in GetFrames() 163 const Frames &GetFrames() const { return m_frames; } in GetFrames() 180 Frames m_frames; member in fd_interposing::FDEvent 420 if (!m_frames.empty()) in Dump() 421 ::backtrace_symbols_fd(m_frames.data(), m_frames.size(), log_fd); in Dump()
|