Home
last modified time | relevance | path

Searched refs:frame_num (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py19 def backtrace_print_frame(target, frame_num, addr, fp): argument
23 if frame_num > 0:
43 … print('%2d: pc==0x%-*x fp==0x%-*x' % (frame_num, addr_width, addr_for_printing, addr_width, fp))
53 …print('%2d: pc==0x%-*x fp==0x%-*x %s' % (frame_num, addr_width, addr_for_printing, addr_width, fp,…
92 frame_num = 1
96 this_module = backtrace_print_frame(target, frame_num, cur_pc, cur_fp)
101 frame_num = frame_num + 1
121 this_module = backtrace_print_frame(target, frame_num, cur_pc, cur_fp)
201 frame_num = 0
205 target, frame_num, frame.GetPC(), frame.GetFP())
[all …]
/llvm-project-15.0.7/lldb/source/Target/
H A DUnwindLLDB.cpp464 UnwindLLDB::GetRegisterContextForFrameNum(uint32_t frame_num) { in GetRegisterContextForFrameNum() argument
466 if (frame_num < m_frames.size()) in GetRegisterContextForFrameNum()
467 reg_ctx_sp = m_frames[frame_num]->reg_ctx_lldb_sp; in GetRegisterContextForFrameNum()
474 int64_t frame_num = starting_frame_num; in SearchForSavedLocationForRegister() local
475 if (static_cast<size_t>(frame_num) >= m_frames.size()) in SearchForSavedLocationForRegister()
483 result = m_frames[frame_num]->reg_ctx_lldb_sp->SavedLocationForRegister( in SearchForSavedLocationForRegister()
487 while (frame_num >= 0) { in SearchForSavedLocationForRegister()
489 result = m_frames[frame_num]->reg_ctx_lldb_sp->SavedLocationForRegister( in SearchForSavedLocationForRegister()
508 frame_num > 0) { in SearchForSavedLocationForRegister()
517 frame_num--; in SearchForSavedLocationForRegister()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DUnwindLLDB.h88 RegisterContextLLDBSP GetRegisterContextForFrameNum(uint32_t frame_num);
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandCompletions.cpp724 const uint32_t frame_num = thread_sp->GetStackFrameCount(); in FrameIndexes() local
725 for (uint32_t i = 0; i < frame_num; ++i) { in FrameIndexes()