[Lldb-commits] [PATCH] D75979: [lldb] Remove unimplemented StackFrame::BehavesLikeZerothFrame
Tatyana Krasnukha via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 16 06:29:38 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG332edcc6bd1d: [lldb] Remove unimplemented StackFrame::BehavesLikeZerothFrame (authored by tatyana-krasnukha).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75979/new/
https://reviews.llvm.org/D75979
Files:
lldb/include/lldb/Target/StackFrame.h
Index: lldb/include/lldb/Target/StackFrame.h
===================================================================
--- lldb/include/lldb/Target/StackFrame.h
+++ lldb/include/lldb/Target/StackFrame.h
@@ -367,12 +367,6 @@
/// may have limited support for inspecting variables.
bool IsArtificial() const;
- /// Query whether this frame behaves like the zeroth frame, in the sense
- /// that its pc value might not immediately follow a call (and thus might
- /// be the first address of its function). True for actual frame zero as
- /// well as any other frame with the same trait.
- bool BehavesLikeZerothFrame() const;
-
/// Query this frame to find what frame it is in this Thread's
/// StackFrameList.
///
@@ -517,6 +511,11 @@
bool m_cfa_is_valid; // Does this frame have a CFA? Different from CFA ==
// LLDB_INVALID_ADDRESS
Kind m_stack_frame_kind;
+
+ // Whether this frame behaves like the zeroth frame, in the sense
+ // that its pc value might not immediately follow a call (and thus might
+ // be the first address of its function). True for actual frame zero as
+ // well as any other frame with the same trait.
bool m_behaves_like_zeroth_frame;
lldb::VariableListSP m_variable_list_sp;
ValueObjectList m_variable_list_value_objects; // Value objects for each
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75979.250550.patch
Type: text/x-patch
Size: 1333 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200316/a6bded0e/attachment.bin>
More information about the lldb-commits
mailing list