| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| 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()
|
| D | HistoryUnwind.h | 32 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| 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/src/gnu/llvm/lldb/source/Commands/ |
| D | CommandObjectFrame.cpp | 308 uint32_t frame_idx = UINT32_MAX; in DoExecute() local 311 frame_idx = thread->GetSelectedFrameIndex(); in DoExecute() 312 if (frame_idx == UINT32_MAX) in DoExecute() 313 frame_idx = 0; in DoExecute() 316 if (static_cast<int32_t>(frame_idx) >= in DoExecute() 318 frame_idx += *m_options.relative_frame_offset; in DoExecute() 320 if (frame_idx == 0) { in DoExecute() 326 frame_idx = 0; in DoExecute() 334 if (static_cast<int32_t>(num_frames - frame_idx) > in DoExecute() 336 frame_idx += *m_options.relative_frame_offset; in DoExecute() [all …]
|
| 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/src/gnu/llvm/lldb/source/Target/ |
| 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 …]
|
| 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()
|
| D | Thread.cpp | 284 bool Thread::SetSelectedFrameByIndex(uint32_t frame_idx, bool broadcast) { in SetSelectedFrameByIndex() argument 285 StackFrameSP frame_sp(GetStackFrameList()->GetFrameAtIndex(frame_idx)); in SetSelectedFrameByIndex() 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 1333 report_run_vote, frame_idx, step_out_avoids_code_without_debug_info)); in QueueThreadPlanForStepOut() 1342 uint32_t frame_idx, Status &status, bool continue_to_next_branch) { in QueueThreadPlanForStepOutNoShouldStop() argument 1347 report_run_vote, frame_idx, eLazyBoolNo, continue_to_next_branch, in QueueThreadPlanForStepOutNoShouldStop() 1384 bool stop_other_threads, uint32_t frame_idx, Status &status) { in QueueThreadPlanForStepUntil() argument 1386 *this, address_list, num_addresses, stop_other_threads, frame_idx)); in QueueThreadPlanForStepUntil() [all …]
|
| 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()
|
| 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/src/gnu/llvm/lldb/include/lldb/Target/ |
| 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,
|
| 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);
|
| D | ThreadPlanStepUntil.h | 35 uint32_t frame_idx = 0); 57 bool stop_others, uint32_t frame_idx, Status &status);
|
| 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,
|
| D | ThreadPlanStepOut.h | 22 Vote report_run_vote, uint32_t frame_idx, 80 uint32_t frame_idx, Status &status,
|
| D | UnwindLLDB.h | 75 bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 165 const uint32_t frame_idx = 0; in ShouldStop() local 168 eVoteNoOpinion, frame_idx, status); in ShouldStop()
|
| /openbsd/src/gnu/llvm/lldb/examples/darwin/heap_find/ |
| 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/src/gnu/llvm/lldb/examples/python/ |
| 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/src/gnu/llvm/lldb/include/lldb/API/ |
| D | SBThread.h | 179 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx);
|
| /openbsd/src/gnu/llvm/lldb/source/Core/ |
| D | IOHandlerCursesGUI.cpp | 5030 const uint64_t frame_idx = item.GetIdentifier(); in TreeDelegateDrawTreeItem() local 5031 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_idx); in TreeDelegateDrawTreeItem() 5055 const uint64_t frame_idx = item.GetIdentifier(); in TreeDelegateItemSelected() local 5056 thread->SetSelectedFrameByIndex(frame_idx); in TreeDelegateItemSelected() 6414 uint32_t frame_idx = thread->GetSelectedFrameIndex(); in MenuDelegateAction() local 6415 exe_ctx.GetThreadRef().StepOut(frame_idx); in MenuDelegateAction() 6855 const uint32_t frame_idx = frame_sp->GetFrameIndex(); in WindowDelegateDraw() local 6856 frame_changed = frame_idx != m_frame_idx; in WindowDelegateDraw() 6857 m_frame_idx = frame_idx; in WindowDelegateDraw() 7377 uint32_t frame_idx = thread->GetSelectedFrameIndex(); in WindowDelegateHandleChar() local [all …]
|
| /openbsd/src/gnu/llvm/lldb/bindings/interface/ |
| D | SBThread.i | 337 SetSelectedFrame (uint32_t frame_idx);
|
| /openbsd/src/sys/dev/usb/dwc2/ |
| 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/src/gnu/llvm/lldb/source/API/ |
| 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/src/sys/dev/usb/ |
| 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()
|