/openbsd/gnu/llvm/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,
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectFrame.cpp | 308 uint32_t frame_idx = UINT32_MAX; in DoExecute() local 312 if (frame_idx == UINT32_MAX) in DoExecute() 313 frame_idx = 0; in DoExecute() 316 if (static_cast<int32_t>(frame_idx) >= in DoExecute() 320 if (frame_idx == 0) { in DoExecute() 326 frame_idx = 0; in DoExecute() 338 if (frame_idx == num_frames - 1) { in DoExecute() 344 frame_idx = num_frames - 1; in DoExecute() 366 if (frame_idx == UINT32_MAX) { in DoExecute() 367 frame_idx = 0; in DoExecute() [all …]
|
H A D | CommandObjectThread.cpp | 1543 uint32_t frame_idx = frame_sp->GetFrameIndex(); in DoExecute() local 1578 "Error returning from frame %d of thread %d: %s.", frame_idx, in DoExecute()
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | StackFrameList.cpp | 413 uint32_t frame_idx = m_frames.size(); in SynthesizeTailCallFrames() local 425 m_thread.shared_from_this(), frame_idx, concrete_frame_idx, cfa, in SynthesizeTailCallFrames() 722 uint32_t frame_idx = unwind_idx; in GetFrameWithConcreteFrameIndex() local 723 StackFrameSP frame_sp(GetFrameAtIndex(frame_idx)); in GetFrameWithConcreteFrameIndex() 727 frame_sp = GetFrameAtIndex(++frame_idx); in GetFrameWithConcreteFrameIndex() 742 uint32_t frame_idx = 0; in GetFrameWithStackID() local 755 frame_sp = GetFrameAtIndex(frame_idx); in GetFrameWithStackID() 758 frame_idx++; in GetFrameWithStackID() 857 uint32_t frame_idx = 0; in GetStatus() local 876 for (frame_idx = first_frame; frame_idx < last_frame; ++frame_idx) { in GetStatus() [all …]
|
H A D | ThreadPlanStepOut.cpp | 37 Vote report_stop_vote, Vote report_run_vote, uint32_t frame_idx, in ThreadPlanStepOut() argument 53 uint32_t return_frame_index = frame_idx + 1; in ThreadPlanStepOut() 55 StackFrameSP immediate_return_from_sp(thread.GetStackFrameAtIndex(frame_idx)); in ThreadPlanStepOut() 83 if (frame_idx > 0) { in ThreadPlanStepOut() 88 frame_idx - 1, eLazyBoolNo, continue_to_next_branch); in ThreadPlanStepOut()
|
H A D | Thread.cpp | 296 bool Thread::SetSelectedFrameByIndexNoisily(uint32_t frame_idx, in SetSelectedFrameByIndexNoisily() argument 299 bool success = SetSelectedFrameByIndex(frame_idx, broadcast); in SetSelectedFrameByIndexNoisily() 1329 uint32_t frame_idx, Status &status, in QueueThreadPlanForStepOut() argument 1384 bool stop_other_threads, uint32_t frame_idx, Status &status) { in QueueThreadPlanForStepUntil() argument 1456 Status Thread::ReturnFromFrameWithIndex(uint32_t frame_idx, in ReturnFromFrameWithIndex() argument 1459 StackFrameSP frame_sp = GetStackFrameAtIndex(frame_idx); in ReturnFromFrameWithIndex() 1465 frame_idx, GetID()); in ReturnFromFrameWithIndex() 1626 if (frame_idx != LLDB_INVALID_FRAME_ID) { in DumpUsingSettingsFormat() 1627 frame_sp = GetStackFrameAtIndex(frame_idx); in DumpUsingSettingsFormat() 1983 Status Thread::StepOut(uint32_t frame_idx) { in StepOut() argument [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 | 53 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 58 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame() 79 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 84 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame() 105 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame() argument 110 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
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 | 414 Status ReturnFromFrameWithIndex(uint32_t frame_idx, 440 bool SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast = false); 442 bool SetSelectedFrameByIndexNoisily(uint32_t frame_idx, 492 void DumpUsingSettingsFormat(Stream &strm, uint32_t frame_idx, 548 virtual Status StepOut(uint32_t frame_idx = 0); 807 uint32_t frame_idx, Status &status, 871 uint32_t frame_idx, Status &status, bool continue_to_next_branch = false); 927 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 | 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 D | ThreadPlanStepOut.h | 22 Vote report_run_vote, uint32_t frame_idx, 80 uint32_t frame_idx, Status &status,
|
H A D | UnwindLLDB.h | 75 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/lldb/examples/darwin/heap_find/ |
H A D | heap.py | 493 frame_idx = 0 503 (frame_idx, frame)) 504 frame_idx += 1 506 result.AppendMessage(' [%u] 0x%x' % (frame_idx, pc)) 507 frame_idx += 1
|
/openbsd/gnu/llvm/lldb/examples/python/ |
H A D | crashlog.py | 115 for frame_idx, frame in enumerate(self.frames): 117 … this_thread_crashed or options.disassemble_all_threads) and frame_idx < options.disassemble_depth 122 pc = pc if frame_idx == 0 or pc == 0 else pc - 1 129 print('[%3u] %s' % (frame_idx, symbolicated_frame_address)) 926 for (frame_idx, frame) in enumerate(thread.frames): 941 (frame_idx, frame.module.file.basename, frame_pc, frame.name))
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBThread.h | 179 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx);
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 5030 const uint64_t frame_idx = item.GetIdentifier(); in TreeDelegateDrawTreeItem() local 5056 thread->SetSelectedFrameByIndex(frame_idx); in TreeDelegateItemSelected() 6415 exe_ctx.GetThreadRef().StepOut(frame_idx); in MenuDelegateAction() 6856 frame_changed = frame_idx != m_frame_idx; in WindowDelegateDraw() 6857 m_frame_idx = frame_idx; in WindowDelegateDraw() 7378 exe_ctx.GetThreadRef().StepOut(frame_idx); in WindowDelegateHandleChar() 7417 if (frame_idx == UINT32_MAX) in WindowDelegateHandleChar() 7418 frame_idx = 0; in WindowDelegateHandleChar() 7420 ++frame_idx; in WindowDelegateHandleChar() 7421 else if (c == 'd' && frame_idx > 0) in WindowDelegateHandleChar() [all …]
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBThread.i | 337 SetSelectedFrame (uint32_t frame_idx);
|
/openbsd/sys/dev/usb/dwc2/ |
H A D | dwc2_hcdddma.c | 425 STATIC u8 dwc2_frame_to_desc_idx(struct dwc2_qh *qh, u16 frame_idx) in dwc2_frame_to_desc_idx() argument 429 return (frame_idx & ((MAX_DMA_DESC_NUM_HS_ISOC / 8) - 1)) * 8; in dwc2_frame_to_desc_idx() 431 return frame_idx & (MAX_DMA_DESC_NUM_GENERIC - 1); in dwc2_frame_to_desc_idx()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBFrame.cpp | 297 uint32_t frame_idx = UINT32_MAX; in GetFrameID() local 304 frame_idx = frame->GetFrameIndex(); in GetFrameID() 306 return frame_idx; in GetFrameID()
|
/openbsd/sys/dev/usb/ |
H A D | xhci.c | 1031 int trb0_idx, frame_idx = 0, skip_trb = 0; in xhci_event_xfer_isoc() local 1051 frame_idx++; in xhci_event_xfer_isoc() 1063 frame_idx--; in xhci_event_xfer_isoc() 1069 xfer->frlengths[frame_idx] = XHCI_TRB_LEN(letoh32( in xhci_event_xfer_isoc() 1077 xfer->frlengths[frame_idx] += in xhci_event_xfer_isoc() 1080 xfer->actlen += xfer->frlengths[frame_idx]; in xhci_event_xfer_isoc()
|