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