Home
last modified time | relevance | path

Searched refs:frame_idx (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOut.cpp38 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 DStackFrameList.cpp317 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 DThread.cpp289 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 DThreadPlanStepUntil.cpp29 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 DStackFrame.cpp57 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 DHistoryUnwind.cpp55 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 DHistoryUnwind.h32 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp274 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 DCommandObjectThread.cpp1570 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 Dsanitizer_stack_store.h56 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 DThreadPlanStepOut.h25 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 DUnwind.h50 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 DThread.h446 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 DThreadPlanStepUntil.h35 uint32_t frame_idx = 0);
57 bool stop_others, uint32_t frame_idx, Status &status);
H A DStackFrame.h109 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 DUnwindLLDB.h78 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp165 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 DSBThread.h183 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5056 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 DSBFrame.cpp300 uint32_t frame_idx = UINT32_MAX; in GetFrameID() local
307 frame_idx = frame->GetFrameIndex(); in GetFrameID()
309 return frame_idx; in GetFrameID()