| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepOut.cpp | 38 uint32_t frame_idx = start_frame_idx + 1; in ComputeTargetFrame() local 39 StackFrameSP return_frame_sp = thread.GetStackFrameAtIndex(frame_idx); in ComputeTargetFrame() 46 frame_idx++; in ComputeTargetFrame() 47 return_frame_sp = thread.GetStackFrameAtIndex(frame_idx); in ComputeTargetFrame() 63 Vote report_stop_vote, Vote report_run_vote, uint32_t frame_idx, in ThreadPlanStepOut() argument 79 ComputeTargetFrame(thread, frame_idx, m_stepped_past_frames); in ThreadPlanStepOut() 80 StackFrameSP immediate_return_from_sp(thread.GetStackFrameAtIndex(frame_idx)); in ThreadPlanStepOut() 82 SetupReturnAddress(return_frame_sp, immediate_return_from_sp, frame_idx, in ThreadPlanStepOut() 88 Vote report_run_vote, uint32_t frame_idx, in ThreadPlanStepOut() argument 100 StackFrameSP return_frame_sp = thread.GetStackFrameAtIndex(frame_idx + 1); in ThreadPlanStepOut() [all …]
|
| H A D | StackFrameList.cpp | 317 uint32_t frame_idx = m_frames.size(); in SynthesizeTailCallFrames() local 329 m_thread.shared_from_this(), frame_idx, concrete_frame_idx, cfa, in SynthesizeTailCallFrames() 580 uint32_t frame_idx; in GetNumFrames() local 583 frame_idx = GetVisibleStackFrameIndex(m_frames.size()); in GetNumFrames() 585 return frame_idx; in GetNumFrames() 669 uint32_t frame_idx = unwind_idx; in GetFrameWithConcreteFrameIndex() local 670 StackFrameSP frame_sp(GetFrameAtIndex(frame_idx)); in GetFrameWithConcreteFrameIndex() 674 frame_sp = GetFrameAtIndex(++frame_idx); in GetFrameWithConcreteFrameIndex() 688 uint32_t frame_idx = 0; in GetFrameWithStackID() local 701 frame_sp = GetFrameAtIndex(frame_idx); in GetFrameWithStackID() [all …]
|
| H A D | Thread.cpp | 289 bool Thread::SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast) { in SetSelectedFrameByIndex() argument 290 StackFrameSP frame_sp(GetStackFrameList()->GetFrameAtIndex(frame_idx)); in SetSelectedFrameByIndex() 301 bool Thread::SetSelectedFrameByIndexNoisily(uint32_t frame_idx, in SetSelectedFrameByIndexNoisily() argument 304 bool success = SetSelectedFrameByIndex(frame_idx, broadcast); in SetSelectedFrameByIndexNoisily() 1346 uint32_t frame_idx, Status &status, in QueueThreadPlanForStepOut() argument 1350 report_run_vote, frame_idx, step_out_avoids_code_without_debug_info)); in QueueThreadPlanForStepOut() 1359 uint32_t frame_idx, Status &status, bool continue_to_next_branch) { in QueueThreadPlanForStepOutNoShouldStop() argument 1363 *this, stop_other_threads, report_stop_vote, report_run_vote, frame_idx, in QueueThreadPlanForStepOutNoShouldStop() 1400 bool stop_other_threads, uint32_t frame_idx, Status &status) { in QueueThreadPlanForStepUntil() argument 1402 *this, address_list, num_addresses, stop_other_threads, frame_idx)); in QueueThreadPlanForStepUntil() [all …]
|
| H A D | ThreadPlanStepUntil.cpp | 29 uint32_t frame_idx) in ThreadPlanStepUntil() argument 40 StackFrameSP frame_sp(thread.GetStackFrameAtIndex(frame_idx)); in ThreadPlanStepUntil() 47 StackFrameSP return_frame_sp(thread.GetStackFrameAtIndex(frame_idx + 1)); in ThreadPlanStepUntil()
|
| H A D | StackFrame.cpp | 57 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 62 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame() 83 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 88 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame() 109 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 114 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | HistoryUnwind.cpp | 55 bool HistoryUnwind::DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, in DoGetFrameInfoAtIndex() argument 61 if (frame_idx < m_pcs.size()) { in DoGetFrameInfoAtIndex() 62 cfa = frame_idx; in DoGetFrameInfoAtIndex() 63 pc = m_pcs[frame_idx]; in DoGetFrameInfoAtIndex() 67 behaves_like_zeroth_frame = (frame_idx == 0); in DoGetFrameInfoAtIndex()
|
| H A D | HistoryUnwind.h | 32 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectFrame.cpp | 274 uint32_t frame_idx = UINT32_MAX; in DoExecute() local 277 frame_idx = thread->GetSelectedFrameIndex(SelectMostRelevantFrame); in DoExecute() 278 if (frame_idx == UINT32_MAX) in DoExecute() 279 frame_idx = 0; in DoExecute() 284 uint32_t candidate_idx = frame_idx; in DoExecute() 302 m_options.relative_frame_offset = candidate_idx - frame_idx; in DoExecute() 306 if (static_cast<int32_t>(frame_idx) >= in DoExecute() 308 frame_idx += *m_options.relative_frame_offset; in DoExecute() 310 if (frame_idx == 0) { in DoExecute() 316 frame_idx = 0; in DoExecute() [all …]
|
| H A D | CommandObjectThread.cpp | 1570 uint32_t frame_idx = frame_sp->GetFrameIndex(); in DoExecute() local 1605 "Error returning from frame %d of thread %d: %s.", frame_idx, in DoExecute()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stack_store.h | 56 static constexpr uptr GetBlockIdx(uptr frame_idx) { in GetBlockIdx() argument 57 return frame_idx / kBlockSizeFrames; in GetBlockIdx() 60 static constexpr uptr GetInBlockIdx(uptr frame_idx) { in GetInBlockIdx() argument 61 return frame_idx % kBlockSizeFrames; in GetInBlockIdx()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadPlanStepOut.h | 25 Vote report_run_vote, uint32_t frame_idx, 32 Vote report_run_vote, uint32_t frame_idx, 90 uint32_t frame_idx, Status &status, 97 uint32_t frame_idx, bool continue_to_next_branch);
|
| H A D | Unwind.h | 50 bool GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, in GetFrameInfoAtIndex() argument 53 return DoGetFrameInfoAtIndex(frame_idx, cfa, pc, behaves_like_zeroth_frame); in GetFrameInfoAtIndex() 69 virtual bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
| H A D | Thread.h | 446 Status ReturnFromFrameWithIndex(uint32_t frame_idx, 477 bool SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast = false); 479 bool SetSelectedFrameByIndexNoisily(uint32_t frame_idx, 566 bool DumpUsingFormat(Stream &strm, uint32_t frame_idx, 571 void DumpUsingSettingsFormat(Stream &strm, uint32_t frame_idx, 627 virtual Status StepOut(uint32_t frame_idx = 0); 886 uint32_t frame_idx, Status &status, 950 uint32_t frame_idx, Status &status, bool continue_to_next_branch = false); 1006 bool stop_others, uint32_t frame_idx, Status &status);
|
| H A D | ThreadPlanStepUntil.h | 35 uint32_t frame_idx = 0); 57 bool stop_others, uint32_t frame_idx, Status &status);
|
| H A D | StackFrame.h | 109 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, 114 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, 120 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
|
| H A D | UnwindLLDB.h | 78 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 165 const uint32_t frame_idx = 0; in ShouldStop() local 168 eVoteNoOpinion, frame_idx, status); in ShouldStop()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBThread.h | 183 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx);
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 5056 const uint64_t frame_idx = item.GetIdentifier(); in TreeDelegateDrawTreeItem() local 5057 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_idx); in TreeDelegateDrawTreeItem() 5081 const uint64_t frame_idx = item.GetIdentifier(); in TreeDelegateItemSelected() local 5082 thread->SetSelectedFrameByIndex(frame_idx); in TreeDelegateItemSelected() 6436 uint32_t frame_idx = in MenuDelegateAction() local 6438 exe_ctx.GetThreadRef().StepOut(frame_idx); in MenuDelegateAction() 6877 const uint32_t frame_idx = frame_sp->GetFrameIndex(); in WindowDelegateDraw() local 6878 frame_changed = frame_idx != m_frame_idx; in WindowDelegateDraw() 6879 m_frame_idx = frame_idx; in WindowDelegateDraw() 7385 uint32_t frame_idx = in WindowDelegateHandleChar() local [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBFrame.cpp | 300 uint32_t frame_idx = UINT32_MAX; in GetFrameID() local 307 frame_idx = frame->GetFrameIndex(); in GetFrameID() 309 return frame_idx; in GetFrameID()
|