29#include "llvm/ADT/ScopeExit.h"
30#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/Support/ConvertUTF.h"
43 bool show_inline_frames,
66 :
StackFrameList(thread, prev_frames_sp, show_inline_frames, provider_id),
80 size_t num_synthetic_frames = 0;
82 if (f && f->IsSynthetic())
83 num_synthetic_frames++;
87 for (uint32_t idx =
m_frames.size(); idx <= end_idx; idx++) {
88 if (allow_interrupt &&
89 m_thread.GetProcess()->GetTarget().GetDebugger().InterruptRequested())
100 auto clear_active_frames =
101 llvm::scope_exit([&]() {
m_thread.PopProviderFrameList(); });
102 auto frame_or_err =
m_provider->GetFrameAtIndex(idx);
107 "Frame provider reached end at index {0}: {1}", idx);
112 if (frame_sp->IsSynthetic())
113 frame_sp->GetStackID().SetCFA(num_synthetic_frames++,
144 "GetCurrentInlinedDepth: invalidating current inlined depth.\n");
161 auto inline_depth = stop_info_sp->GetSuggestedStackFrameIndex(inlined);
170 "ResetCurrentInlinedDepth: setting inlined "
171 "depth: %d 0x%" PRIx64
".\n",
178 log,
"ResetCurrentInlinedDepth: Invalidating current inlined depth.\n");
186 if (current_inlined_depth > 0) {
206 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
236 "FindInterveningFrames: found call with retn-PC = {0:x}",
237 edge->GetReturnPCAddress(begin, target));
241 "No call edge outgoing from {0} with retn-PC == {1:x}",
252 if (first_callee == &end) {
254 log,
"Not searching further, first callee is {0} (retn-PC: {1:x})",
265 llvm::SmallPtrSet<Function *, 2> visited_nodes = {};
266 bool ambiguous =
false;
274 : end(end), images(images), target(target), context(context) {}
278 dfs(first_edge, first_callee);
280 path = std::move(solution_path);
285 if (&callee == end) {
286 if (solution_path.empty())
287 solution_path = active_path;
297 if (!visited_nodes.insert(&callee).second) {
305 Function *next_callee = edge->GetCallee(images, context);
309 std::tie(active_path.back().address_type, active_path.back().address) =
310 edge->GetCallerAddress(callee, target);
312 dfs(*edge, *next_callee);
316 active_path.pop_back();
320 DFS(&end, images, target, exe_ctx).search(*first_edge, *first_callee, path);
349 if (!next_reg_ctx_sp)
361 LLDB_LOG(log,
"SynthesizeTailCallFrames: can't find previous function");
367 LLDB_LOG(log,
"SynthesizeTailCallFrames: can't find next function");
374 addr_t return_pc = next_reg_ctx_sp->GetPC();
375 Target &target = *target_sp.get();
383 for (
auto calleeInfo : llvm::reverse(path)) {
385 uint32_t frame_idx =
m_frames.size();
388 bool cfa_is_valid =
false;
392 const bool artificial =
true;
393 const bool behaves_like_zeroth_frame =
397 auto synth_frame = std::make_shared<StackFrame>(
398 m_thread.shared_from_this(), frame_idx, concrete_frame_idx, cfa,
400 behaves_like_zeroth_frame, &sc);
414 frame_sp->GetSymbolContext(eSymbolContextBlock | eSymbolContextFunction);
415 if (!unwind_sc.
block)
419 uint32_t concrete_frame_idx = frame_sp->GetConcreteFrameIndex();
420 Address curr_frame_address(frame_sp->GetFrameCodeAddressForSymbolication());
424 uint32_t num_inlined_frames = 0;
427 next_frame_address)) {
429 StackFrameSP inline_frame_sp = std::make_shared<StackFrame>(
431 frame_sp->GetRegisterContextSP(), cfa, next_frame_address,
432 false, &next_frame_sc);
435 m_frames.push_back(inline_frame_sp);
436 unwind_sc = next_frame_sc;
437 curr_frame_address = next_frame_address;
438 ++num_inlined_frames;
441 return num_inlined_frames;
448 std::unique_lock<std::shared_mutex> guard(
m_list_mutex);
455 bool was_interrupted =
false;
472#if defined(DEBUG_STACK_FRAMES)
473 s.PutCString(
"\n\nNew frames:\n");
477 return was_interrupted;
481 assert(
m_thread.IsValid() &&
"Expected valid thread");
482 assert(
m_frames.size() <= end_idx &&
"Expected there to be frames to fill");
490 if (num_frames <= end_idx + 1) {
503 bool was_interrupted =
false;
505#if defined(DEBUG_STACK_FRAMES)
514 uint32_t inlined_depth = 0;
519 end_idx += inlined_depth;
529 bool behaves_like_zeroth_frame = (idx == 0);
538 idx, cfa,
pc, behaves_like_zeroth_frame);
543 cfa = reg_ctx_sp->GetSP();
544 pc = reg_ctx_sp->GetPC();
547 unwind_frame_sp = std::make_shared<StackFrame>(
549 cfa,
pc, behaves_like_zeroth_frame,
nullptr);
551 m_frames.push_back(unwind_frame_sp);
555 cfa = unwind_frame_sp->m_id.GetCallFrameAddressWithoutMetadata();
560 if (allow_interrupt &&
563 was_interrupted =
true;
574 const bool cfa_is_valid =
true;
575 unwind_frame_sp = std::make_shared<StackFrame>(
586 m_frames.push_back(unwind_frame_sp);
589 assert(unwind_frame_sp);
591 }
while (
m_frames.size() - 1 < end_idx);
598#if defined(DEBUG_STACK_FRAMES)
600 prev_frames->
Dump(&s);
602 curr_frames->
Dump(&s);
605 size_t curr_frame_num, prev_frame_num;
607 for (curr_frame_num = curr_frames->
m_frames.size(),
608 prev_frame_num = prev_frames->
m_frames.size();
609 curr_frame_num > 0 && prev_frame_num > 0;
610 --curr_frame_num, --prev_frame_num) {
611 const size_t curr_frame_idx = curr_frame_num - 1;
612 const size_t prev_frame_idx = prev_frame_num - 1;
616#if defined(DEBUG_STACK_FRAMES)
617 s.
Printf(
"\n\nCurr frame #%u ", curr_frame_idx);
619 curr_frame_sp->Dump(&s,
true,
false);
622 s.
Printf(
"\nPrev frame #%u ", prev_frame_idx);
624 prev_frame_sp->Dump(&s,
true,
false);
632 if (curr_frame ==
nullptr || prev_frame ==
nullptr)
643 m_frames[curr_frame_idx] = prev_frame_sp;
645#if defined(DEBUG_STACK_FRAMES)
646 s.
Printf(
"\n Copying previous frame to current frame");
654 return was_interrupted;
665 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
675 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
678 for (pos = begin; pos != end; ++pos) {
680 s->
Printf(
"%p: ",
static_cast<void *
>(frame));
685 s->
Printf(
"frame #%u", (uint32_t)std::distance(begin, pos));
693 uint32_t original_idx = idx;
699 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
703 idx += inlined_depth;
717 LLDB_LOG(log,
"GetFrameAtIndex was interrupted");
722 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
725 }
else if (original_idx == 0) {
733 assert(!
m_thread.IsValid() &&
"A valid thread has no frames.");
752 uint32_t frame_idx = unwind_idx;
755 if (frame_sp->GetFrameIndex() == unwind_idx)
764 return stack_sp->GetStackID() < stack_id;
771 uint32_t frame_idx = 0;
775 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
777 collection::const_iterator pos =
779 if (pos !=
m_frames.end() && (*pos)->GetStackID() == stack_id)
785 if (frame_sp && frame_sp->GetStackID() == stack_id)
794 std::unique_lock<std::shared_mutex> guard(
m_list_mutex);
809 if (
m_thread.GetProcess()->CurrentThreadPosesAsPrivateStateThread())
817 LLDB_LOG(log,
"Failed to construct Frame #0");
823 if (recognized_frame_sp) {
825 recognized_frame_sp->GetMostRelevantFrame()) {
826 LLDB_LOG(log,
"Found most relevant frame at index {0}",
827 most_relevant_frame_sp->GetFrameIndex());
832 LLDB_LOG(log,
"Frame #0 not recognized");
837 uint32_t stack_idx = 0;
838 bool found_relevant =
false;
843 bool inlined =
false;
844 std::optional<uint32_t> stack_opt =
845 stop_info_sp->GetSuggestedStackFrameIndex(inlined);
847 stack_idx = *stack_opt;
848 found_relevant =
true;
854 LLDB_LOG(log,
"Stop info suggested relevant frame {0} but it didn't exist",
856 else if (found_relevant)
857 LLDB_LOG(log,
"Setting selected frame from stop info to {0}", stack_idx);
864 LLDB_LOG(log,
"No relevant frame!");
876 if (!select_most_relevant)
885 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
886 std::lock_guard<std::recursive_mutex> selected_frame_guard(
894 for (pos = begin; pos != end; ++pos) {
895 if (pos->get() == frame) {
918 m_thread.GetProcess()->GetThreadList().GetSelectedThread()->GetID()) {
922 SymbolContext sc = frame_sp->GetSymbolContext(eSymbolContextLineEntry);
924 m_thread.CalculateTarget()->GetSourceManager().SetDefaultFileAndLine(
938 std::unique_lock<std::shared_mutex> guard(
m_list_mutex);
941 std::lock_guard<std::recursive_mutex> selected_frame_guard(
948 std::shared_lock<std::shared_mutex> guard(
m_list_mutex);
954 for (pos = begin; pos != end; ++pos) {
955 if (pos->get() == stack_frame_ptr) {
968 return frame_sp->IsHidden();
978 return frame_sp->IsHidden();
983 bool show_hidden_marker) {
985 if (frame_sp == selected_frame_sp)
986 return show_unicode_marker ?
" * " :
"* ";
987 if (!show_unicode_marker)
990 return reinterpret_cast<const char *
>(u8
"﹉ ");
992 return reinterpret_cast<const char *
>(u8
"﹍ ");
997 uint32_t num_frames,
bool show_frame_info,
998 uint32_t num_frames_with_source,
999 bool show_unique,
bool show_hidden,
1000 bool show_hidden_marker,
1001 bool show_selected_frame) {
1002 size_t num_frames_displayed = 0;
1004 if (num_frames == 0)
1008 uint32_t frame_idx = 0;
1009 uint32_t last_frame;
1015 last_frame = first_frame + num_frames;
1021 for (frame_idx = first_frame; frame_idx < last_frame; ++frame_idx) {
1026 if (show_selected_frame)
1027 marker =
GetFrameMarker(frame_sp, selected_frame_sp, show_hidden_marker);
1030 show_hidden_marker);
1033 if (!show_hidden && frame_sp != selected_frame_sp && frame_sp->IsHidden())
1040 dbg,
"Interrupted dumping stack for thread {0:x} with {1} shown.",
1041 m_thread.GetID(), num_frames_displayed))
1044 if (!frame_sp->GetStatus(strm, show_frame_info,
1045 num_frames_with_source > (first_frame - frame_idx),
1046 show_unique, marker))
1048 ++num_frames_displayed;
1052 return num_frames_displayed;
#define INTERRUPT_REQUESTED(debugger,...)
This handy define will keep you from having to generate a report for the interruption by hand.
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF_VERBOSE(log,...)
#define LLDB_LOG_ERROR(log, error,...)
#define LLDB_LOG_VERBOSE(log,...)
static void FindInterveningFrames(Function &begin, Function &end, ExecutionContext &exe_ctx, Target &target, addr_t return_pc, CallSequence &path, ModuleList &images, Log *log)
Find the unique path through the call graph from begin (with return PC return_pc) to end.
static bool CompareStackID(const StackFrameSP &stack_sp, const StackID &stack_id)
std::vector< CallDescriptor > CallSequence
A section + offset based address class.
Represent a call made within a Function.
virtual Function * GetCallee(ModuleList &images, ExecutionContext &exe_ctx)=0
Get the callee's definition.
A class to manage flag bits.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
void SetFramePtr(StackFrame *frame)
Set accessor to set only the frame shared pointer from a frame pointer.
A class that describes a function.
CallEdge * GetCallEdgeForReturnAddress(lldb::addr_t return_pc, Target &target)
Get the outgoing call edge from this function which has the given return address return_pc,...
llvm::ArrayRef< std::unique_ptr< CallEdge > > GetCallEdges()
Get the outgoing call edges from this function, sorted by their return PC addresses (in increasing or...
void CalculateSymbolContext(SymbolContext *sc) override
Reconstruct the object's symbol context into sc.
llvm::ArrayRef< std::unique_ptr< CallEdge > > GetTailCallingEdges()
Get the outgoing tail-calling edges from this function.
ConstString GetDisplayName() const
A collection class for Module objects.
lldb::frame_list_id_t m_identifier
Unique identifier for this frame list instance.
lldb::frame_list_id_t GetIdentifier() const
Get the unique identifier for this frame list.
StackFrameList(Thread &thread, const lldb::StackFrameListSP &prev_frames_sp, bool show_inline_frames, lldb::frame_list_id_t provider_id=0)
lldb::addr_t m_current_inlined_pc
The program counter value at the currently selected synthetic activation.
collection m_frames
A cache of frames.
lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id)
Retrieve the stack frame with the given ID stack_id.
lldb::StackFrameSP GetFrameWithConcreteFrameIndex(uint32_t unwind_idx)
Get the first concrete frame with index greater than or equal to idx.
bool GetFramesUpTo(uint32_t end_idx, InterruptionControl allow_interrupt)
Ensures that frames up to (and including) end_idx are realized in the StackFrameList.
void ClearSelectedFrameIndex()
Resets the selected frame index of this object.
void ResetCurrentInlinedDepth()
uint32_t SynthesizeInlineFrames(lldb::StackFrameSP frame_sp, lldb::addr_t cfa)
Synthesize inline frames for frame_sp by walking the inlined scope chain via GetParentOfInlinedScope ...
std::recursive_mutex m_selected_frame_mutex
Protect access to m_selected_frame_idx.
void Clear()
Clear the cache of frames.
lldb::StackFrameSP GetFrameAtIndex(uint32_t idx)
Get the frame at index idx. Invisible frames cannot be indexed.
bool GetAllFramesFetched() const
std::optional< uint32_t > m_selected_frame_idx
The currently selected frame.
lldb::StackFrameListSP m_prev_frames_sp
The old stack frame list.
uint32_t m_concrete_frames_fetched
The number of concrete frames fetched while filling the frame list.
virtual ~StackFrameList()
void FetchOnlyConcreteFramesUpTo(uint32_t end_idx)
Thread & m_thread
The thread this frame list describes.
void SelectMostRelevantFrame()
Calls into the stack frame recognizers and stop info to set the most relevant frame.
const bool m_show_inlined_frames
Whether or not to show synthetic (inline) frames. Immutable.
std::mutex m_inlined_depth_mutex
bool SetFrameAtIndex(uint32_t idx, lldb::StackFrameSP &frame_sp)
Use this API to build a stack frame list (used for scripted threads, for instance....
uint32_t m_current_inlined_depth
The number of synthetic function activations (invisible frames) expanded from the concrete frame #0 a...
void SetDefaultFileAndLineToSelectedFrame()
If the currently selected frame comes from the currently selected thread, point the default file and ...
uint32_t GetVisibleStackFrameIndex(uint32_t idx)
If the current inline depth (i.e the number of invisible frames) is valid, subtract it from idx.
bool IsNextFrameHidden(lldb_private::StackFrame &frame)
Returns true if the next frame is hidden.
bool DecrementCurrentInlinedDepth()
uint32_t GetNumFrames(bool can_create=true)
Get the number of visible frames.
virtual bool FetchFramesUpTo(uint32_t end_idx, InterruptionControl allow_interrupt)
Returns true if fetching frames was interrupted, false otherwise.
collection::const_iterator const_iterator
void SynthesizeTailCallFrames(StackFrame &next_frame)
Given that next_frame will be appended to the frame list, synthesize tail call frames between the cur...
std::string GetFrameMarker(lldb::StackFrameSP frame_sp, lldb::StackFrameSP selected_frame_sp, bool show_hidden_marker)
Returns the stack frame marker depending on if frame_sp:
void SetAllFramesFetched()
void SetCurrentInlinedDepth(uint32_t new_depth)
Thread & GetThread() const
Get the thread associated with this frame list.
uint32_t GetSelectedFrameIndex(SelectMostRelevant select_most_relevant_frame)
Get the currently selected frame index.
std::shared_mutex m_list_mutex
A mutex for this frame list.
uint32_t SetSelectedFrame(lldb_private::StackFrame *frame)
Mark a stack frame as the currently selected frame and return its index.
size_t GetStatus(Stream &strm, uint32_t first_frame, uint32_t num_frames, bool show_frame_info, uint32_t num_frames_with_source, bool show_unique=false, bool show_hidden=false, bool show_hidden_marker=true, bool show_selected_frame=false)
void CalculateCurrentInlinedDepth()
Calculate and set the current inline depth.
lldb::StackFrameSP GetStackFrameSPForStackFramePtr(StackFrame *stack_frame_ptr)
If stack_frame_ptr is contained in this StackFrameList, return its wrapping shared pointer.
bool WereAllFramesFetched() const
Returns whether we have currently fetched all the frames of a stack.
uint32_t GetCurrentInlinedDepth()
bool IsPreviousFrameHidden(lldb_private::StackFrame &frame)
Returns true if the previous frame is hidden.
bool SetSelectedFrameByIndex(uint32_t idx)
Mark a stack frame as the currently selected frame using the frame index idx.
This base class provides an interface to stack frames.
void UpdatePreviousFrameFromCurrentFrame(StackFrame &curr_frame)
void SetFrameIndex(uint32_t index)
Set this frame's frame index.
virtual uint32_t GetConcreteFrameIndex()
Query this frame to find what frame it is in this Thread's StackFrameList, not counting inlined frame...
virtual lldb::RegisterContextSP GetRegisterContext()
Get the RegisterContext for this frame, if possible.
@ Regular
A regular stack frame with access to registers and local variables.
virtual StackID & GetStackID()
virtual const SymbolContext & GetSymbolContext(lldb::SymbolContextItem resolve_scope)
Provide a SymbolContext for this StackFrame's current pc value.
virtual uint32_t GetFrameIndex() const
Query this frame to find what frame it is in this Thread's StackFrameList.
virtual void DumpUsingSettingsFormat(Stream *strm, bool show_unique=false, const llvm::StringRef frame_marker="")
Print a description for this frame using the frame-format formatter settings.
lldb::TargetSP CalculateTarget() override
A stream class that can stream formatted output to a file.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
size_t EOL()
Output and End of Line character to the stream.
void IndentLess(unsigned amount=2)
Decrement the current indentation level.
Defines a symbol context baton that can be handed other debug core functions.
Function * function
The Function for a given query.
bool GetParentOfInlinedScope(const Address &curr_frame_pc, SymbolContext &next_frame_sc, Address &inlined_frame_addr) const
Find the block containing the inlined block that contains this block.
Block * block
The Block for a given query.
LineEntry line_entry
The LineEntry for a given query.
lldb::SyntheticFrameProviderSP m_provider
The provider that transforms the input frames.
bool FetchFramesUpTo(uint32_t end_idx, InterruptionControl allow_interrupt) override
Override FetchFramesUpTo to lazily return frames from the provider or from the actual stack frame lis...
lldb::StackFrameListSP m_input_frames
The input stack frame list that the provider transforms.
SyntheticStackFrameList(Thread &thread, lldb::StackFrameListSP input_frames, const lldb::StackFrameListSP &prev_frames_sp, bool show_inline_frames, lldb::SyntheticFrameProviderSP provider_sp, uint64_t provider_id)
static bool SupportsUnicode()
Returns whether or not the current terminal supports Unicode rendering.
bool GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, lldb::addr_t &pc, bool &behaves_like_zeroth_frame)
uint32_t GetFramesUpTo(uint32_t end_idx)
#define LLDB_INVALID_ADDRESS
@ DoNoSelectMostRelevantFrame
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
std::shared_ptr< lldb_private::SyntheticFrameProvider > SyntheticFrameProviderSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::RecognizedStackFrame > RecognizedStackFrameSP
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
std::shared_ptr< lldb_private::StackFrameList > StackFrameListSP
A sequence of calls that comprise some portion of a backtrace.
CallEdge::AddrType address_type
uint32_t line
The source line number, or LLDB_INVALID_LINE_NUMBER if there is no line number information.
const FileSpec & GetFile() const
Helper to access the file.
SupportFileNSP file_sp
The source file, possibly mapped by the target.source-map setting.
void ApplyFileMappings(lldb::TargetSP target_sp)
Apply file mappings from target.source-map to the LineEntry's file.