LLDB mainline
StackFrame.h
Go to the documentation of this file.
1
2//===-- StackFrame.h --------------------------------------------*- C++ -*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_TARGET_STACKFRAME_H
11#define LLDB_TARGET_STACKFRAME_H
12
13#include <memory>
14#include <mutex>
15
16#include "lldb/Utility/Flags.h"
17
21#include "lldb/Target/StackID.h"
22#include "lldb/Utility/Scalar.h"
23#include "lldb/Utility/Status.h"
26#include "lldb/Utility/UserID.h"
28
29namespace lldb_private {
30
31/// \class StackFrame StackFrame.h "lldb/Target/StackFrame.h"
32///
33/// This base class provides an interface to stack frames.
34///
35/// StackFrames may have a Canonical Frame Address (CFA) or not.
36/// A frame may have a plain pc value or it may indicate a specific point in
37/// the debug session so the correct section load list is used for
38/// symbolication.
39///
40/// Local variables may be available, or not. A register context may be
41/// available, or not.
42
44 public std::enable_shared_from_this<StackFrame> {
45public:
46 /// LLVM RTTI support.
47 /// \{
48 static char ID;
49 virtual bool isA(const void *ClassID) const { return ClassID == &ID; }
50 static bool classof(const StackFrame *obj) { return obj->isA(&ID); }
51 /// \}
52
61
62 enum class Kind {
63 /// A regular stack frame with access to registers and local variables.
65
66 /// A historical stack frame -- possibly without CFA or registers or
67 /// local variables.
69
70 /// An synthetic stack frame (e.g. a synthesized result from script
71 /// resource) possibly without support for local variables or register.
73 };
74
75 /// Construct a StackFrame object without supplying a RegisterContextSP.
76 ///
77 /// This is the one constructor that doesn't take a RegisterContext
78 /// parameter. This ctor may be called when creating a history StackFrame;
79 /// these are used if we've collected a stack trace of pc addresses at some
80 /// point in the past. We may only have pc values. We may have a CFA,
81 /// or more likely, we won't.
82 ///
83 /// \param [in] thread_sp
84 /// The Thread that this frame belongs to.
85 ///
86 /// \param [in] frame_idx
87 /// This StackFrame's frame index number in the Thread. If inlined stack
88 /// frames are being created, this may differ from the concrete_frame_idx
89 /// which is the frame index without any inlined stack frames.
90 ///
91 /// \param [in] concrete_frame_idx
92 /// The StackFrame's frame index number in the Thread without any inlined
93 /// stack frames being included in the index.
94 ///
95 /// \param [in] cfa
96 /// The Canonical Frame Address (this terminology from DWARF) for this
97 /// stack frame. The CFA for a stack frame does not change over the
98 /// span of the stack frame's existence. It is often the value of the
99 /// caller's stack pointer before the call instruction into this frame's
100 /// function. It is usually not the same as the frame pointer register's
101 /// value.
102 ///
103 /// \param [in] cfa_is_valid
104 /// A history stack frame may not have a CFA value collected. We want to
105 /// distinguish between "no CFA available" and a CFA of
106 /// LLDB_INVALID_ADDRESS.
107 ///
108 /// \param [in] pc
109 /// The current pc value of this stack frame.
110 ///
111 /// \param [in] sc_ptr
112 /// Optionally seed the StackFrame with the SymbolContext information that
113 /// has
114 /// already been discovered.
115 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
116 lldb::user_id_t concrete_frame_idx, lldb::addr_t cfa,
117 bool cfa_is_valid, lldb::addr_t pc, Kind frame_kind,
118 bool artificial, bool behaves_like_zeroth_frame,
119 const SymbolContext *sc_ptr);
120
121 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
122 lldb::user_id_t concrete_frame_idx,
123 const lldb::RegisterContextSP &reg_context_sp, lldb::addr_t cfa,
124 lldb::addr_t pc, bool behaves_like_zeroth_frame,
125 const SymbolContext *sc_ptr);
126
127 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
128 lldb::user_id_t concrete_frame_idx,
129 const lldb::RegisterContextSP &reg_context_sp, lldb::addr_t cfa,
130 const Address &pc, bool behaves_like_zeroth_frame,
131 const SymbolContext *sc_ptr);
132
133 ~StackFrame() override;
134
135 lldb::ThreadSP GetThread() const { return m_thread_wp.lock(); }
136
137 virtual StackID &GetStackID();
138
139 /// Get an Address for the current pc value in this StackFrame.
140 ///
141 /// May not be the same as the actual PC value for inlined stack frames.
142 ///
143 /// \return
144 /// The Address object set to the current PC value.
145 virtual const Address &GetFrameCodeAddress();
146
147 /// Get the current code Address suitable for symbolication,
148 /// may not be the same as GetFrameCodeAddress().
149 ///
150 /// For a frame in the middle of the stack, the return-pc is the
151 /// current code address, but for symbolication purposes the
152 /// return address after a noreturn call may point to the next
153 /// function, a DWARF location list entry that is a completely
154 /// different code path, or the wrong source line.
155 ///
156 /// The address returned should be used for symbolication (source line,
157 /// block, function, DWARF location entry selection) but should NOT
158 /// be shown to the user. It may not point to an actual instruction
159 /// boundary.
160 ///
161 /// \return
162 /// The Address object set to the current PC value.
164
165 /// Change the pc value for a given thread.
166 ///
167 /// Change the current pc value for the frame on this thread.
168 ///
169 /// \param[in] pc
170 /// The load address that the pc will be set to.
171 ///
172 /// \return
173 /// true if the pc was changed. false if this failed -- possibly
174 /// because this frame is not a live StackFrame.
175 virtual bool ChangePC(lldb::addr_t pc);
176
177 /// Provide a SymbolContext for this StackFrame's current pc value.
178 ///
179 /// The StackFrame maintains this SymbolContext and adds additional
180 /// information to it on an as-needed basis. This helps to avoid different
181 /// functions looking up symbolic information for a given pc value multiple
182 /// times.
183 ///
184 /// \param [in] resolve_scope
185 /// Flags from the SymbolContextItem enumerated type which specify what
186 /// type of symbol context is needed by this caller.
187 ///
188 /// \return
189 /// A SymbolContext reference which includes the types of information
190 /// requested by resolve_scope, if they are available.
191 virtual const SymbolContext &
192 GetSymbolContext(lldb::SymbolContextItem resolve_scope);
193
194 /// Return the Canonical Frame Address (DWARF term) for this frame.
195 ///
196 /// The CFA is typically the value of the stack pointer register before the
197 /// call invocation is made. It will not change during the lifetime of a
198 /// stack frame. It is often not the same thing as the frame pointer
199 /// register value.
200 ///
201 /// Live StackFrames will always have a CFA but other types of frames may
202 /// not be able to supply one.
203 ///
204 /// \param [out] value
205 /// The address of the CFA for this frame, if available.
206 ///
207 /// \return
208 /// If there is an error determining the CFA address, return an error
209 /// explaining the failure. Success otherwise.
210 virtual llvm::Error GetFrameBaseValue(Scalar &value);
211
212 /// Get the DWARFExpressionList corresponding to the Canonical Frame Address.
213 ///
214 /// Often a register (bp), but sometimes a register + offset.
215 ///
216 /// \param [out] error_ptr
217 /// If there is an error determining the CFA address, this may contain a
218 /// string explaining the failure.
219 ///
220 /// \return
221 /// Returns the corresponding DWARF expression, or NULL.
223
224 /// Get the current lexical scope block for this StackFrame, if possible.
225 ///
226 /// If debug information is available for this stack frame, return a pointer
227 /// to the innermost lexical Block that the frame is currently executing.
228 ///
229 /// \return
230 /// A pointer to the current Block. nullptr is returned if this can
231 /// not be provided.
232 virtual Block *GetFrameBlock();
233
234 /// Get the RegisterContext for this frame, if possible.
235 ///
236 /// Returns a shared pointer to the RegisterContext for this stack frame.
237 /// Only a live StackFrame object will be able to return a RegisterContext -
238 /// callers must be prepared for an empty shared pointer being returned.
239 ///
240 /// Even a live StackFrame RegisterContext may not be able to provide all
241 /// registers. Only the currently executing frame (frame 0) can reliably
242 /// provide every register in the register context.
243 ///
244 /// \return
245 /// The RegisterContext shared point for this frame.
247
251
252 /// Retrieve the list of variables whose scope either:
253 /// * contains this StackFrame's pc,
254 /// * is a child of this StackFrame's current scope.
255 ///
256 /// A frame that is not live may return an empty VariableList for a given
257 /// pc value even though variables would be available at this point if it
258 /// were a live stack frame.
259 ///
260 /// \param[in] get_file_globals
261 /// Whether to also retrieve compilation-unit scoped variables
262 /// that are visible to the entire compilation unit (e.g. file
263 /// static in C, globals that are homed in this CU).
264 ///
265 /// \param [out] error_ptr
266 /// If there is an error in the debug information that prevents variables
267 /// from being fetched. \see SymbolFile::GetFrameVariableError() for full
268 /// details.
269 ///
270 /// \return
271 /// A pointer to a list of variables.
272 virtual VariableList *GetVariableList(bool get_file_globals,
273 Status *error_ptr);
274
275 /// Retrieve the list of variables that are in scope at this StackFrame's
276 /// pc.
277 ///
278 /// A frame that is not live may return an empty VariableListSP for a
279 /// given pc value even though variables would be available at this point if
280 /// it were a live stack frame.
281 ///
282 /// \param[in] get_file_globals
283 /// Whether to also retrieve compilation-unit scoped variables
284 /// that are visible to the entire compilation unit (e.g. file
285 /// static in C, globals that are homed in this CU).
286 ///
287 /// \param[in] must_have_valid_location
288 /// Whether to filter variables whose location is not available at this
289 /// StackFrame's pc.
290 /// \return
291 /// A pointer to a list of variables.
293 GetInScopeVariableList(bool get_file_globals,
294 bool must_have_valid_location = false);
295
296 /// Create a ValueObject for a variable name / pathname, possibly including
297 /// simple dereference/child selection syntax.
298 ///
299 /// \param[in] var_expr
300 /// The string specifying a variable to base the VariableObject off
301 /// of.
302 ///
303 /// \param[in] use_dynamic
304 /// Whether the correct dynamic type of an object pointer should be
305 /// determined before creating the object, or if the static type is
306 /// sufficient. One of the DynamicValueType enumerated values.
307 ///
308 /// \param[in] options
309 /// An unsigned integer of flags, values from
310 /// StackFrame::ExpressionPathOption
311 /// enum.
312 /// \param[in] var_sp
313 /// A VariableSP that will be set to the variable described in the
314 /// var_expr path.
315 ///
316 /// \param[in] error
317 /// Record any errors encountered while evaluating var_expr.
318 ///
319 /// \param[in] mode
320 /// Data Inspection Language (DIL) evaluation mode.
321 /// \see lldb::DILMode
322 ///
323 /// \return
324 /// A shared pointer to the ValueObject described by var_expr.
326 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
327 uint32_t options, lldb::VariableSP &var_sp, Status &error,
329
330 /// Determine whether this StackFrame has debug information available or not.
331 ///
332 /// \return
333 /// true if debug information is available for this frame (function,
334 /// compilation unit, block, etc.)
335 virtual bool HasDebugInformation();
336
337 /// Return the disassembly for the instructions of this StackFrame's
338 /// function as a single C string.
339 ///
340 /// \return
341 /// C string with the assembly instructions for this function.
342 virtual const char *Disassemble();
343
344 /// Print a description of this frame using the provided frame format.
345 ///
346 /// \param[out] strm
347 /// The Stream to print the description to.
348 ///
349 /// \param[in] frame_marker
350 /// Optional string that will be prepended to the frame output description.
351 ///
352 /// \return
353 /// \b true if and only if dumping with the given \p format worked.
354 virtual bool DumpUsingFormat(Stream &strm,
356 llvm::StringRef frame_marker = {});
357
358 /// Print a description for this frame using the frame-format formatter
359 /// settings. If the current frame-format settings are invalid, then the
360 /// default formatter will be used (see \a StackFrame::Dump()).
361 ///
362 /// \param [in] strm
363 /// The Stream to print the description to.
364 ///
365 /// \param [in] show_unique
366 /// Whether to print the function arguments or not for backtrace unique.
367 ///
368 /// \param [in] frame_marker
369 /// Optional string that will be prepended to the frame output description.
370 virtual void DumpUsingSettingsFormat(Stream *strm, bool show_unique = false,
371 const llvm::StringRef frame_marker = "");
372
373 /// Print a description for this frame using a default format.
374 ///
375 /// \param [in] strm
376 /// The Stream to print the description to.
377 ///
378 /// \param [in] show_frame_index
379 /// Whether to print the frame number or not.
380 ///
381 /// \param [in] show_fullpaths
382 /// Whether to print the full source paths or just the file base name.
383 virtual void Dump(Stream *strm, bool show_frame_index, bool show_fullpaths);
384
385 /// Print a description of this stack frame and/or the source
386 /// context/assembly for this stack frame.
387 ///
388 /// \param[in] strm
389 /// The Stream to send the output to.
390 ///
391 /// \param[in] show_frame_info
392 /// If true, print the frame info by calling DumpUsingSettingsFormat().
393 ///
394 /// \param[in] show_source
395 /// If true, print source or disassembly as per the user's settings.
396 ///
397 /// \param[in] show_unique
398 /// If true, print using backtrace unique style, without function
399 /// arguments as per the user's settings.
400 ///
401 /// \param[in] frame_marker
402 /// Passed to DumpUsingSettingsFormat() for the frame info printing.
403 ///
404 /// \return
405 /// Returns true if successful.
406 virtual bool GetStatus(Stream &strm, bool show_frame_info, bool show_source,
407 bool show_unique = false,
408 const llvm::StringRef frame_marker = "");
409
410 /// Query whether this frame is a concrete frame on the call stack, or if it
411 /// is an inlined frame derived from the debug information and presented by
412 /// the debugger.
413 ///
414 /// \return
415 /// true if this is an inlined frame.
416 virtual bool IsInlined();
417
418 /// Query whether this frame is synthetic.
419 virtual bool IsSynthetic() const;
420
421 /// Query whether this frame is part of a historical backtrace.
422 virtual bool IsHistorical() const;
423
424 /// Query whether this frame is artificial (e.g a synthesized result of
425 /// inferring missing tail call frames from a backtrace). Artificial frames
426 /// may have limited support for inspecting variables.
427 virtual bool IsArtificial() const;
428
429 /// Query whether this frame should be hidden from backtraces. Frame
430 /// recognizers can customize this behavior and hide distracting
431 /// system implementation details this way.
432 virtual bool IsHidden();
433
434 /// Language plugins can use this API to report language-specific
435 /// runtime information about this compile unit, such as additional
436 /// language version details or feature flags.
438
439 /// Get the frame's demangled name.
440 ///
441 /// /// \return
442 /// A C-String containing the function demangled name. Can be null.
443 virtual const char *GetFunctionName();
444
445 /// Get the frame's demangled display name.
446 ///
447 /// /// \return
448 /// A C-String containing the function demangled display name. Can be null.
449 virtual const char *GetDisplayFunctionName();
450
451 /// Query this frame to find what frame it is in this Thread's
452 /// StackFrameList.
453 ///
454 /// \return
455 /// StackFrame index 0 indicates the currently-executing function. Inline
456 /// frames are included in this frame index count.
457 virtual uint32_t GetFrameIndex() const;
458
459 /// Set this frame's frame index.
460 void SetFrameIndex(uint32_t index) { m_frame_index = index; }
461
462 /// Query this frame to find what frame it is in this Thread's
463 /// StackFrameList, not counting inlined frames.
464 ///
465 /// \return
466 /// StackFrame index 0 indicates the currently-executing function. Inline
467 /// frames are not included in this frame index count; their concrete
468 /// frame index will be the same as the concrete frame that they are
469 /// derived from.
470 virtual uint32_t GetConcreteFrameIndex() { return m_concrete_frame_index; }
471
472 /// Create a ValueObject for a given Variable in this StackFrame.
473 ///
474 /// \param [in] variable_sp
475 /// The Variable to base this ValueObject on
476 ///
477 /// \param [in] use_dynamic
478 /// Whether the correct dynamic type of the variable should be
479 /// determined before creating the ValueObject, or if the static type
480 /// is sufficient. One of the DynamicValueType enumerated values.
481 ///
482 /// \return
483 /// A ValueObject for this variable.
484 virtual lldb::ValueObjectSP
486 lldb::DynamicValueType use_dynamic);
487
488 /// Query this frame to determine what the default language should be when
489 /// parsing expressions given the execution context.
490 ///
491 /// \return The language of the frame if known.
492 virtual SourceLanguage GetLanguage();
493
494 /// Similar to GetLanguage(), but is allowed to take a potentially incorrect
495 /// guess if exact information is not available.
497
498 /// Attempt to econstruct the ValueObject for a given raw address touched by
499 /// the current instruction. The ExpressionPath should indicate how to get
500 /// to this value using "frame variable."
501 ///
502 /// \param [in] addr
503 /// The raw address.
504 ///
505 /// \return
506 /// The ValueObject if found. If valid, it has a valid ExpressionPath.
508
509 /// Attempt to reconstruct the ValueObject for the address contained in a
510 /// given register plus an offset. The ExpressionPath should indicate how
511 /// to get to this value using "frame variable."
512 ///
513 /// \param [in] reg
514 /// The name of the register.
515 ///
516 /// \param [in] offset
517 /// The offset from the register. Particularly important for sp...
518 ///
519 /// \return
520 /// The ValueObject if found. If valid, it has a valid ExpressionPath.
522 int64_t offset);
523
524 /// Attempt to reconstruct the ValueObject for a variable with a given \a name
525 /// from within the current StackFrame, within the current block. The search
526 /// for the variable starts in the deepest block corresponding to the current
527 /// PC in the stack frame and traverse through all parent blocks stopping at
528 /// inlined function boundaries.
529 ///
530 /// \param [in] name
531 /// The name of the variable.
532 ///
533 /// \return
534 /// The ValueObject if found.
536
537 // lldb::ExecutionContextScope pure virtual functions
539
541
543
545
546 void CalculateExecutionContext(ExecutionContext &exe_ctx) override;
547
549
550 /// Get the identifier of the StackFrameList that contains this frame.
551 ///
552 /// Returns the StackFrameList identifier that contains this frame, allowing
553 /// frames to resolve execution contexts without calling
554 /// Thread::GetStackFrameList(), which can cause circular dependencies
555 /// during frame provider initialization.
556 ///
557 /// \return
558 /// The identifier of the containing StackFrameList
562
563protected:
564 friend class BorrowedStackFrame;
565 friend class StackFrameList;
567
568 void SetSymbolContextScope(SymbolContextScope *symbol_scope);
569
571
573
574 bool HasCachedData() const;
575
576 /// For StackFrame and derived classes only.
577 /// \{
583 /// \}
584
585 /// The frame code address (might not be the same as the actual PC
586 /// for inlined frames) as a section/offset address.
593 /// Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
596 /// Is this an artificial stack frame (e.g. a synthesized result of inferring
597 /// missing tail call frames from a backtrace) with limited support for
598 /// local variables. Orthogonal to `StackFrame::Kind`.
600
601 /// Whether this frame behaves like the zeroth frame, in the sense
602 /// that its pc value might not immediately follow a call (and thus might
603 /// be the first address of its function). True for actual frame zero as
604 /// well as any other frame with the same trait.
608 /// Value objects for each variable in m_variable_list_sp.
610 std::optional<lldb::RecognizedStackFrameSP> m_recognized_frame_sp;
612 std::recursive_mutex m_mutex;
613
614private:
615 /// Private methods, called from GetValueForVariableExpressionPath.
616 /// See that method for documentation of parameters and return value.
618 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
619 uint32_t options, lldb::VariableSP &var_sp, Status &error);
620
622 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
623 uint32_t options, lldb::VariableSP &var_sp, Status &error,
625
626 StackFrame(const StackFrame &) = delete;
627 const StackFrame &operator=(const StackFrame &) = delete;
628};
629
630} // namespace lldb_private
631
632#endif // LLDB_TARGET_STACKFRAME_H
static llvm::raw_ostream & error(Stream &strm)
A section + offset based address class.
Definition Address.h:62
A class that describes a single lexical block.
Definition Block.h:41
A uniqued constant string class.
Definition ConstString.h:40
"lldb/Expression/DWARFExpressionList.h" Encapsulates a range map from file address range to a single ...
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A class to manage flags.
Definition Flags.h:22
virtual lldb::ValueObjectSP GetValueForVariableExpressionPath(llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic, uint32_t options, lldb::VariableSP &var_sp, Status &error, lldb::DILMode mode=lldb::eDILModeFull)
Create a ValueObject for a variable name / pathname, possibly including simple dereference/child sele...
void SetSymbolContextScope(SymbolContextScope *symbol_scope)
uint16_t m_frame_recognizer_generation
Definition StackFrame.h:592
lldb::VariableListSP m_variable_list_sp
Definition StackFrame.h:607
void UpdatePreviousFrameFromCurrentFrame(StackFrame &curr_frame)
bool m_artificial
Is this an artificial stack frame (e.g.
Definition StackFrame.h:599
lldb::ThreadSP GetThread() const
Definition StackFrame.h:135
Address m_frame_code_addr
The frame code address (might not be the same as the actual PC for inlined frames) as a section/offse...
Definition StackFrame.h:587
@ eExpressionPathOptionsInspectAnonymousUnions
Definition StackFrame.h:59
@ eExpressionPathOptionsAllowDirectIVarAccess
Definition StackFrame.h:58
@ eExpressionPathOptionsNoSyntheticArrayRange
Definition StackFrame.h:57
virtual const char * GetFunctionName()
Get the frame's demangled name.
virtual bool IsHidden()
Query whether this frame should be hidden from backtraces.
virtual VariableList * GetVariableList(bool get_file_globals, Status *error_ptr)
Retrieve the list of variables whose scope either:
virtual bool IsSynthetic() const
Query whether this frame is synthetic.
virtual DWARFExpressionList * GetFrameBaseExpression(Status *error_ptr)
Get the DWARFExpressionList corresponding to the Canonical Frame Address.
void SetFrameIndex(uint32_t index)
Set this frame's frame index.
Definition StackFrame.h:460
void UpdateCurrentFrameFromPreviousFrame(StackFrame &prev_frame)
const StackFrame & operator=(const StackFrame &)=delete
ValueObjectList m_variable_list_value_objects
Value objects for each variable in m_variable_list_sp.
Definition StackFrame.h:609
bool m_cfa_is_valid
Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
Definition StackFrame.h:594
virtual llvm::Error GetFrameBaseValue(Scalar &value)
Return the Canonical Frame Address (DWARF term) for this frame.
lldb::ThreadWP m_thread_wp
For StackFrame and derived classes only.
Definition StackFrame.h:578
std::optional< lldb::RecognizedStackFrameSP > m_recognized_frame_sp
Definition StackFrame.h:610
virtual bool IsInlined()
Query whether this frame is a concrete frame on the call stack, or if it is an inlined frame derived ...
virtual uint32_t GetConcreteFrameIndex()
Query this frame to find what frame it is in this Thread's StackFrameList, not counting inlined frame...
Definition StackFrame.h:470
lldb::ValueObjectSP DILGetValueForVariableExpressionPath(llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic, uint32_t options, lldb::VariableSP &var_sp, Status &error, lldb::DILMode mode=lldb::eDILModeFull)
static bool classof(const StackFrame *obj)
Definition StackFrame.h:50
virtual SourceLanguage GuessLanguage()
Similar to GetLanguage(), but is allowed to take a potentially incorrect guess if exact information i...
virtual lldb::RegisterContextSP GetRegisterContext()
Get the RegisterContext for this frame, if possible.
lldb::RegisterContextSP m_reg_context_sp
Definition StackFrame.h:581
static char ID
LLVM RTTI support.
Definition StackFrame.h:48
virtual lldb::ValueObjectSP GuessValueForRegisterAndOffset(ConstString reg, int64_t offset)
Attempt to reconstruct the ValueObject for the address contained in a given register plus an offset.
StackFrame(const StackFrame &)=delete
virtual lldb::VariableListSP GetInScopeVariableList(bool get_file_globals, bool must_have_valid_location=false)
Retrieve the list of variables that are in scope at this StackFrame's pc.
friend class BorrowedStackFrame
Definition StackFrame.h:564
virtual StructuredData::ObjectSP GetLanguageSpecificData()
Language plugins can use this API to report language-specific runtime information about this compile ...
virtual Address GetFrameCodeAddressForSymbolication()
Get the current code Address suitable for symbolication, may not be the same as GetFrameCodeAddress()...
@ History
A historical stack frame – possibly without CFA or registers or local variables.
Definition StackFrame.h:68
@ Regular
A regular stack frame with access to registers and local variables.
Definition StackFrame.h:64
@ Synthetic
An synthetic stack frame (e.g.
Definition StackFrame.h:72
friend class SyntheticStackFrameList
Definition StackFrame.h:566
bool m_behaves_like_zeroth_frame
Whether this frame behaves like the zeroth frame, in the sense that its pc value might not immediatel...
Definition StackFrame.h:605
lldb::frame_list_id_t GetContainingStackFrameListIdentifier() const
Get the identifier of the StackFrameList that contains this frame.
Definition StackFrame.h:559
virtual StackID & GetStackID()
virtual lldb::ValueObjectSP GuessValueForAddress(lldb::addr_t addr)
Attempt to econstruct the ValueObject for a given raw address touched by the current instruction.
virtual bool GetStatus(Stream &strm, bool show_frame_info, bool show_source, bool show_unique=false, const llvm::StringRef frame_marker="")
Print a description of this stack frame and/or the source context/assembly for this stack frame.
virtual bool ChangePC(lldb::addr_t pc)
Change the pc value for a given thread.
lldb::ValueObjectSP LegacyGetValueForVariableExpressionPath(llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic, uint32_t options, lldb::VariableSP &var_sp, Status &error)
Private methods, called from GetValueForVariableExpressionPath.
lldb::ThreadSP CalculateThread() override
virtual SourceLanguage GetLanguage()
Query this frame to determine what the default language should be when parsing expressions given the ...
virtual lldb::ValueObjectSP GetValueObjectForFrameVariable(const lldb::VariableSP &variable_sp, lldb::DynamicValueType use_dynamic)
Create a ValueObject for a given Variable in this StackFrame.
StreamString m_disassembly
Definition StackFrame.h:611
lldb::StackFrameSP CalculateStackFrame() override
virtual const SymbolContext & GetSymbolContext(lldb::SymbolContextItem resolve_scope)
Provide a SymbolContext for this StackFrame's current pc value.
virtual const char * GetDisplayFunctionName()
Get the frame's demangled display name.
virtual bool IsHistorical() const
Query whether this frame is part of a historical backtrace.
virtual const char * Disassemble()
Return the disassembly for the instructions of this StackFrame's function as a single C string.
virtual bool IsArtificial() const
Query whether this frame is artificial (e.g a synthesized result of inferring missing tail call frame...
void CalculateExecutionContext(ExecutionContext &exe_ctx) override
Reconstruct the object's execution context into sc.
virtual void Dump(Stream *strm, bool show_frame_index, bool show_fullpaths)
Print a description for this frame using a default format.
virtual uint32_t GetFrameIndex() const
Query this frame to find what frame it is in this Thread's StackFrameList.
virtual bool HasDebugInformation()
Determine whether this StackFrame has debug information available or not.
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.
friend class StackFrameList
Definition StackFrame.h:565
StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, lldb::user_id_t concrete_frame_idx, lldb::addr_t cfa, bool cfa_is_valid, lldb::addr_t pc, Kind frame_kind, bool artificial, bool behaves_like_zeroth_frame, const SymbolContext *sc_ptr)
Construct a StackFrame object without supplying a RegisterContextSP.
virtual Block * GetFrameBlock()
Get the current lexical scope block for this StackFrame, if possible.
virtual bool isA(const void *ClassID) const
Definition StackFrame.h:49
virtual bool DumpUsingFormat(Stream &strm, const lldb_private::FormatEntity::Entry *format, llvm::StringRef frame_marker={})
Print a description of this frame using the provided frame format.
lldb::ProcessSP CalculateProcess() override
lldb::frame_list_id_t m_frame_list_id
Definition StackFrame.h:606
const lldb::RegisterContextSP & GetRegisterContextSP() const
Definition StackFrame.h:248
virtual lldb::RecognizedStackFrameSP GetRecognizedFrame()
std::recursive_mutex m_mutex
Definition StackFrame.h:612
virtual lldb::ValueObjectSP FindVariable(ConstString name)
Attempt to reconstruct the ValueObject for a variable with a given name from within the current Stack...
virtual const Address & GetFrameCodeAddress()
Get an Address for the current pc value in this StackFrame.
lldb::TargetSP CalculateTarget() override
An error handling class.
Definition Status.h:118
A stream class that can stream formatted output to a file.
Definition Stream.h:28
std::shared_ptr< Object > ObjectSP
"lldb/Symbol/SymbolContextScope.h" Inherit from this if your object is part of a symbol context and c...
Defines a symbol context baton that can be handed other debug core functions.
A collection of ValueObject values that.
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::RecognizedStackFrame > RecognizedStackFrameSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::VariableList > VariableListSP
std::shared_ptr< lldb_private::Variable > VariableSP
uint64_t user_id_t
Definition lldb-types.h:82
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Target > TargetSP
std::weak_ptr< lldb_private::Thread > ThreadWP
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
DILMode
Data Inspection Language (DIL) evaluation modes.
@ eDILModeFull
Allowed: everything supported by DIL.
uint32_t frame_list_id_t
Definition lldb-types.h:86
A type-erased pair of llvm::dwarf::SourceLanguageName and version.