Searched refs:frame_idx (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryUnwind.cpp53 bool HistoryUnwind::DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, argument
59 if (frame_idx < m_pcs.size()) {
60 cfa = frame_idx;
61 pc = m_pcs[frame_idx];
62 behaves_like_zeroth_frame = (frame_idx == 0);
H A DHistoryUnwind.h31 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
H A DUnwindMacOSXFrameBackchain.h28 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
H A DUnwindLLDB.h75 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnwind.h50 bool GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, argument
53 return DoGetFrameInfoAtIndex(frame_idx, cfa, pc, behaves_like_zeroth_frame);
69 virtual bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
H A DThreadPlanStepUntil.h35 uint32_t frame_idx = 0);
57 bool stop_others, uint32_t frame_idx, Status &status);
H A DThreadPlanStepOut.h22 Vote run_vote, uint32_t frame_idx,
79 bool stop_others, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
H A DStackFrame.h77 /// \param [in] frame_idx
106 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
111 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
117 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
H A DThread.h406 Status ReturnFromFrameWithIndex(uint32_t frame_idx,
432 bool SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast = false);
434 bool SetSelectedFrameByIndexNoisily(uint32_t frame_idx,
466 void DumpUsingSettingsFormat(Stream &strm, uint32_t frame_idx,
778 uint32_t frame_idx, Status &status,
813 /// \param[in] frame_idx
842 uint32_t frame_idx, Status &status, bool continue_to_next_branch = false);
898 bool stop_others, uint32_t frame_idx, Status &status);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp302 uint32_t frame_idx = UINT32_MAX; variable
305 frame_idx = thread->GetSelectedFrameIndex();
306 if (frame_idx == UINT32_MAX)
307 frame_idx = 0;
310 if (static_cast<int32_t>(frame_idx) >=
312 frame_idx += *m_options.relative_frame_offset;
314 if (frame_idx == 0) {
321 frame_idx = 0;
329 if (static_cast<int32_t>(num_frames - frame_idx) >
331 frame_idx
[all...]
H A DCommandObjectThread.cpp1628 uint32_t frame_idx = frame_sp->GetFrameIndex(); variable
1665 "Error returning from frame %d of thread %d: %s.", frame_idx,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp392 uint32_t frame_idx = m_frames.size(); local
402 m_thread.shared_from_this(), frame_idx, concrete_frame_idx, cfa,
721 uint32_t frame_idx = unwind_idx; local
722 StackFrameSP frame_sp(GetFrameAtIndex(frame_idx));
726 frame_sp = GetFrameAtIndex(++frame_idx);
741 uint32_t frame_idx = 0; local
754 frame_sp = GetFrameAtIndex(frame_idx);
757 frame_idx++;
955 uint32_t frame_idx = 0; local
974 for (frame_idx
[all...]
H A DThreadPlanStepUntil.cpp28 uint32_t frame_idx)
39 StackFrameSP frame_sp(m_thread.GetStackFrameAtIndex(frame_idx));
47 StackFrameSP return_frame_sp(m_thread.GetStackFrameAtIndex(frame_idx + 1));
25 ThreadPlanStepUntil(Thread &thread, lldb::addr_t *address_list, size_t num_addresses, bool stop_others, uint32_t frame_idx) argument
H A DThreadPlanStepOut.cpp36 Vote stop_vote, Vote run_vote, uint32_t frame_idx,
52 uint32_t return_frame_index = frame_idx + 1;
56 m_thread.GetStackFrameAtIndex(frame_idx));
84 if (frame_idx > 0) {
89 frame_idx - 1, eLazyBoolNo, continue_to_next_branch);
34 ThreadPlanStepOut( Thread &thread, SymbolContext *context, bool first_insn, bool stop_others, Vote stop_vote, Vote run_vote, uint32_t frame_idx, LazyBool step_out_avoids_code_without_debug_info, bool continue_to_next_branch, bool gather_return_value) argument
H A DThread.cpp314 bool Thread::SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast) { argument
315 StackFrameSP frame_sp(GetStackFrameList()->GetFrameAtIndex(frame_idx));
326 bool Thread::SetSelectedFrameByIndexNoisily(uint32_t frame_idx, argument
329 bool success = SetSelectedFrameByIndex(frame_idx, broadcast);
1423 bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
1427 frame_idx, step_out_avoids_code_without_debug_info));
1435 bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
1441 frame_idx, eLazyBoolNo, continue_to_next_branch, calculate_return_value));
1477 bool stop_other_threads, uint32_t frame_idx, Status &status) {
1479 *this, address_list, num_addresses, stop_other_threads, frame_idx));
1421 QueueThreadPlanForStepOut( bool abort_other_plans, SymbolContext *addr_context, bool first_insn, bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx, Status &status, LazyBool step_out_avoids_code_without_debug_info) argument
1433 QueueThreadPlanForStepOutNoShouldStop( bool abort_other_plans, SymbolContext *addr_context, bool first_insn, bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx, Status &status, bool continue_to_next_branch) argument
1475 QueueThreadPlanForStepUntil( bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses, bool stop_other_threads, uint32_t frame_idx, Status &status) argument
1624 ReturnFromFrameWithIndex(uint32_t frame_idx, lldb::ValueObjectSP return_value_sp, bool broadcast) argument
1785 DumpUsingSettingsFormat(Stream &strm, uint32_t frame_idx, bool stop_format) argument
[all...]
H A DStackFrame.cpp51 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, argument
56 : m_thread_wp(thread_sp), m_frame_index(frame_idx),
77 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, argument
82 : m_thread_wp(thread_sp), m_frame_index(frame_idx),
103 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, argument
108 : m_thread_wp(thread_sp), m_frame_index(frame_idx),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp159 const uint32_t frame_idx = 0; local
162 eVoteNoOpinion, frame_idx, status);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThread.h176 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBThread.i334 SetSelectedFrame (uint32_t frame_idx);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp1841 const uint64_t frame_idx = item.GetIdentifier(); variable
1842 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_idx);
1866 const uint64_t frame_idx = item.GetIdentifier(); variable
1867 thread->SetSelectedFrameByIndex(frame_idx);
3307 const uint32_t frame_idx = frame_sp->GetFrameIndex(); variable
3308 frame_changed = frame_idx != m_frame_idx;
3309 m_frame_idx = frame_idx;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFrame.cpp302 uint32_t frame_idx = UINT32_MAX; local
309 frame_idx = frame->GetFrameIndex();
311 return frame_idx;

Completed in 188 milliseconds