Searched refs:next_frame (Results 51 - 56 of 56) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp335 /// Given that \p next_frame will be appended to the frame list, synthesize
336 /// tail call frames between the current end of the list and \p next_frame.
337 /// If any frames are added, adjust the frame index of \p next_frame.
346 /// | next_frame |
350 void StackFrameList::SynthesizeTailCallFrames(StackFrame &next_frame) { argument
351 TargetSP target_sp = next_frame.CalculateTarget();
355 lldb::RegisterContextSP next_reg_ctx_sp = next_frame.GetRegisterContext();
364 // Find the functions prev_frame and next_frame are stopped in. The function
373 next_frame.GetSymbolContext(eSymbolContextFunction).function;
379 // Try to find the unique sequence of (tail) calls which led from next_frame
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.h30 RegisterContextLLDB(lldb_private::Thread &thread, const SharedPtr &next_frame,
H A DRegisterContextLLDB.cpp53 const SharedPtr &next_frame,
76 if (IsFrameZero() || next_frame->m_frame_type == eTrapHandlerFrame ||
77 next_frame->m_frame_type == eDebuggerFrame) {
608 RegisterContextLLDB::SharedPtr next_frame = GetNextFrame(); local
609 if (next_frame) {
610 RegisterContextLLDB::SharedPtr next_next_frame = next_frame->GetNextFrame();
52 RegisterContextLLDB(Thread &thread, const SharedPtr &next_frame, SymbolContext &sym_ctx, uint32_t frame_number, UnwindLLDB &unwind_lldb) argument
/freebsd-11-stable/contrib/gdb/gdb/
H A Dframe.h251 extern CORE_ADDR frame_unwind_address_in_block (struct frame_info *next_frame);
H A Dgdbarch.h1754 typedef CORE_ADDR (gdbarch_unwind_pc_ftype) (struct gdbarch *gdbarch, struct frame_info *next_frame);
1755 extern CORE_ADDR gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame);
1760 typedef CORE_ADDR (gdbarch_unwind_sp_ftype) (struct gdbarch *gdbarch, struct frame_info *next_frame);
1761 extern CORE_ADDR gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame);
H A Dgdbarch.c4589 gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame) argument
4595 return gdbarch->unwind_pc (gdbarch, next_frame);
4613 gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame) argument
4619 return gdbarch->unwind_sp (gdbarch, next_frame);

Completed in 207 milliseconds

123