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 /// \return
320 /// A shared pointer to the ValueObject described by var_expr.
322 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
323 uint32_t options, lldb::VariableSP &var_sp, Status &error);
324
325 /// Determine whether this StackFrame has debug information available or not.
326 ///
327 /// \return
328 /// true if debug information is available for this frame (function,
329 /// compilation unit, block, etc.)
330 virtual bool HasDebugInformation();
331
332 /// Return the disassembly for the instructions of this StackFrame's
333 /// function as a single C string.
334 ///
335 /// \return
336 /// C string with the assembly instructions for this function.
337 virtual const char *Disassemble();
338
339 /// Print a description of this frame using the provided frame format.
340 ///
341 /// \param[out] strm
342 /// The Stream to print the description to.
343 ///
344 /// \param[in] frame_marker
345 /// Optional string that will be prepended to the frame output description.
346 ///
347 /// \return
348 /// \b true if and only if dumping with the given \p format worked.
349 virtual bool DumpUsingFormat(Stream &strm,
351 llvm::StringRef frame_marker = {});
352
353 /// Print a description for this frame using the frame-format formatter
354 /// settings. If the current frame-format settings are invalid, then the
355 /// default formatter will be used (see \a StackFrame::Dump()).
356 ///
357 /// \param [in] strm
358 /// The Stream to print the description to.
359 ///
360 /// \param [in] show_unique
361 /// Whether to print the function arguments or not for backtrace unique.
362 ///
363 /// \param [in] frame_marker
364 /// Optional string that will be prepended to the frame output description.
365 virtual void DumpUsingSettingsFormat(Stream *strm, bool show_unique = false,
366 const char *frame_marker = nullptr);
367
368 /// Print a description for this frame using a default format.
369 ///
370 /// \param [in] strm
371 /// The Stream to print the description to.
372 ///
373 /// \param [in] show_frame_index
374 /// Whether to print the frame number or not.
375 ///
376 /// \param [in] show_fullpaths
377 /// Whether to print the full source paths or just the file base name.
378 virtual void Dump(Stream *strm, bool show_frame_index, bool show_fullpaths);
379
380 /// Print a description of this stack frame and/or the source
381 /// context/assembly for this stack frame.
382 ///
383 /// \param[in] strm
384 /// The Stream to send the output to.
385 ///
386 /// \param[in] show_frame_info
387 /// If true, print the frame info by calling DumpUsingSettingsFormat().
388 ///
389 /// \param[in] show_source
390 /// If true, print source or disassembly as per the user's settings.
391 ///
392 /// \param[in] show_unique
393 /// If true, print using backtrace unique style, without function
394 /// arguments as per the user's settings.
395 ///
396 /// \param[in] frame_marker
397 /// Passed to DumpUsingSettingsFormat() for the frame info printing.
398 ///
399 /// \return
400 /// Returns true if successful.
401 virtual bool GetStatus(Stream &strm, bool show_frame_info, bool show_source,
402 bool show_unique = false,
403 const char *frame_marker = nullptr);
404
405 /// Query whether this frame is a concrete frame on the call stack, or if it
406 /// is an inlined frame derived from the debug information and presented by
407 /// the debugger.
408 ///
409 /// \return
410 /// true if this is an inlined frame.
411 virtual bool IsInlined();
412
413 /// Query whether this frame is synthetic.
414 virtual bool IsSynthetic() const;
415
416 /// Query whether this frame is part of a historical backtrace.
417 virtual bool IsHistorical() const;
418
419 /// Query whether this frame is artificial (e.g a synthesized result of
420 /// inferring missing tail call frames from a backtrace). Artificial frames
421 /// may have limited support for inspecting variables.
422 virtual bool IsArtificial() const;
423
424 /// Query whether this frame should be hidden from backtraces. Frame
425 /// recognizers can customize this behavior and hide distracting
426 /// system implementation details this way.
427 virtual bool IsHidden();
428
429 /// Language plugins can use this API to report language-specific
430 /// runtime information about this compile unit, such as additional
431 /// language version details or feature flags.
433
434 /// Get the frame's demangled name.
435 ///
436 /// /// \return
437 /// A C-String containing the function demangled name. Can be null.
438 virtual const char *GetFunctionName();
439
440 /// Get the frame's demangled display name.
441 ///
442 /// /// \return
443 /// A C-String containing the function demangled display name. Can be null.
444 virtual const char *GetDisplayFunctionName();
445
446 /// Query this frame to find what frame it is in this Thread's
447 /// StackFrameList.
448 ///
449 /// \return
450 /// StackFrame index 0 indicates the currently-executing function. Inline
451 /// frames are included in this frame index count.
452 virtual uint32_t GetFrameIndex() const;
453
454 /// Set this frame's frame index.
455 void SetFrameIndex(uint32_t index) { m_frame_index = index; }
456
457 /// Query this frame to find what frame it is in this Thread's
458 /// StackFrameList, not counting inlined frames.
459 ///
460 /// \return
461 /// StackFrame index 0 indicates the currently-executing function. Inline
462 /// frames are not included in this frame index count; their concrete
463 /// frame index will be the same as the concrete frame that they are
464 /// derived from.
465 virtual uint32_t GetConcreteFrameIndex() { return m_concrete_frame_index; }
466
467 /// Create a ValueObject for a given Variable in this StackFrame.
468 ///
469 /// \param [in] variable_sp
470 /// The Variable to base this ValueObject on
471 ///
472 /// \param [in] use_dynamic
473 /// Whether the correct dynamic type of the variable should be
474 /// determined before creating the ValueObject, or if the static type
475 /// is sufficient. One of the DynamicValueType enumerated values.
476 ///
477 /// \return
478 /// A ValueObject for this variable.
479 virtual lldb::ValueObjectSP
481 lldb::DynamicValueType use_dynamic);
482
483 /// Query this frame to determine what the default language should be when
484 /// parsing expressions given the execution context.
485 ///
486 /// \return The language of the frame if known.
487 virtual SourceLanguage GetLanguage();
488
489 /// Similar to GetLanguage(), but is allowed to take a potentially incorrect
490 /// guess if exact information is not available.
492
493 /// Attempt to econstruct the ValueObject for a given raw address touched by
494 /// the current instruction. The ExpressionPath should indicate how to get
495 /// to this value using "frame variable."
496 ///
497 /// \param [in] addr
498 /// The raw address.
499 ///
500 /// \return
501 /// The ValueObject if found. If valid, it has a valid ExpressionPath.
503
504 /// Attempt to reconstruct the ValueObject for the address contained in a
505 /// given register plus an offset. The ExpressionPath should indicate how
506 /// to get to this value using "frame variable."
507 ///
508 /// \param [in] reg
509 /// The name of the register.
510 ///
511 /// \param [in] offset
512 /// The offset from the register. Particularly important for sp...
513 ///
514 /// \return
515 /// The ValueObject if found. If valid, it has a valid ExpressionPath.
517 int64_t offset);
518
519 /// Attempt to reconstruct the ValueObject for a variable with a given \a name
520 /// from within the current StackFrame, within the current block. The search
521 /// for the variable starts in the deepest block corresponding to the current
522 /// PC in the stack frame and traverse through all parent blocks stopping at
523 /// inlined function boundaries.
524 ///
525 /// \param [in] name
526 /// The name of the variable.
527 ///
528 /// \return
529 /// The ValueObject if found.
531
532 // lldb::ExecutionContextScope pure virtual functions
534
536
538
540
541 void CalculateExecutionContext(ExecutionContext &exe_ctx) override;
542
544
545 /// Get the StackFrameList that contains this frame.
546 ///
547 /// Returns the StackFrameList that contains this frame, allowing
548 /// frames to resolve execution contexts without calling
549 /// Thread::GetStackFrameList(), which can cause circular dependencies
550 /// during frame provider initialization.
551 ///
552 /// \return
553 /// The StackFrameList that contains this frame, or nullptr if not set.
555 return m_frame_list_wp.lock();
556 }
557
558protected:
559 friend class BorrowedStackFrame;
560 friend class StackFrameList;
562
563 void SetSymbolContextScope(SymbolContextScope *symbol_scope);
564
566
568
569 bool HasCachedData() const;
570
571 /// For StackFrame and derived classes only.
572 /// \{
578 /// \}
579
580 /// The frame code address (might not be the same as the actual PC
581 /// for inlined frames) as a section/offset address.
588 /// Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
591 /// Is this an artificial stack frame (e.g. a synthesized result of inferring
592 /// missing tail call frames from a backtrace) with limited support for
593 /// local variables. Orthogonal to `StackFrame::Kind`.
595
596 /// Whether this frame behaves like the zeroth frame, in the sense
597 /// that its pc value might not immediately follow a call (and thus might
598 /// be the first address of its function). True for actual frame zero as
599 /// well as any other frame with the same trait.
603 /// Value objects for each variable in m_variable_list_sp.
605 std::optional<lldb::RecognizedStackFrameSP> m_recognized_frame_sp;
607 std::recursive_mutex m_mutex;
608
609private:
610 /// Private methods, called from GetValueForVariableExpressionPath.
611 /// See that method for documentation of parameters and return value.
613 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
614 uint32_t options, lldb::VariableSP &var_sp, Status &error);
615
617 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
618 uint32_t options, lldb::VariableSP &var_sp, Status &error);
619
620 StackFrame(const StackFrame &) = delete;
621 const StackFrame &operator=(const StackFrame &) = delete;
622};
623
624} // namespace lldb_private
625
626#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
void SetSymbolContextScope(SymbolContextScope *symbol_scope)
uint16_t m_frame_recognizer_generation
Definition StackFrame.h:587
lldb::VariableListSP m_variable_list_sp
Definition StackFrame.h:601
void UpdatePreviousFrameFromCurrentFrame(StackFrame &curr_frame)
bool m_artificial
Is this an artificial stack frame (e.g.
Definition StackFrame.h:594
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:582
@ 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 lldb::StackFrameListSP GetContainingStackFrameList() const
Get the StackFrameList that contains this frame.
Definition StackFrame.h:554
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:455
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:604
bool m_cfa_is_valid
Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
Definition StackFrame.h:589
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:573
std::optional< lldb::RecognizedStackFrameSP > m_recognized_frame_sp
Definition StackFrame.h:605
virtual void DumpUsingSettingsFormat(Stream *strm, bool show_unique=false, const char *frame_marker=nullptr)
Print a description for this frame using the frame-format formatter settings.
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:465
virtual lldb::ValueObjectSP GetValueForVariableExpressionPath(llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic, uint32_t options, lldb::VariableSP &var_sp, Status &error)
Create a ValueObject for a variable name / pathname, possibly including simple dereference/child sele...
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:576
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.
lldb::StackFrameListWP m_frame_list_wp
Definition StackFrame.h:602
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:559
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
lldb::ValueObjectSP DILGetValueForVariableExpressionPath(llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic, uint32_t options, lldb::VariableSP &var_sp, Status &error)
friend class SyntheticStackFrameList
Definition StackFrame.h:561
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:600
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 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:606
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.
friend class StackFrameList
Definition StackFrame.h:560
virtual bool GetStatus(Stream &strm, bool show_frame_info, bool show_source, bool show_unique=false, const char *frame_marker=nullptr)
Print a description of this stack frame and/or the source context/assembly for this stack frame.
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
const lldb::RegisterContextSP & GetRegisterContextSP() const
Definition StackFrame.h:248
virtual lldb::RecognizedStackFrameSP GetRecognizedFrame()
std::recursive_mutex m_mutex
Definition StackFrame.h:607
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::weak_ptr< lldb_private::StackFrameList > StackFrameListWP
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
std::shared_ptr< lldb_private::StackFrameList > StackFrameListSP
A type-erased pair of llvm::dwarf::SourceLanguageName and version.