summaryrefslogtreecommitdiff
path: root/include/lldb/Symbol/UnwindTable.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-12-30 11:55:28 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-12-30 11:55:28 +0000
commite81d9d49145e432d917eea3a70d2ae74dcad1d89 (patch)
tree9ed5e1a91f242e2cb5911577356e487a55c01b78 /include/lldb/Symbol/UnwindTable.h
parent85d8ef8f1f0e0e063a8571944302be2d2026f823 (diff)
Notes
Diffstat (limited to 'include/lldb/Symbol/UnwindTable.h')
-rw-r--r--include/lldb/Symbol/UnwindTable.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/lldb/Symbol/UnwindTable.h b/include/lldb/Symbol/UnwindTable.h
index 38d3ff6dd3c9..f69e4660de24 100644
--- a/include/lldb/Symbol/UnwindTable.h
+++ b/include/lldb/Symbol/UnwindTable.h
@@ -34,6 +34,9 @@ public:
lldb_private::CompactUnwindInfo *
GetCompactUnwindInfo ();
+ ArmUnwindInfo *
+ GetArmUnwindInfo ();
+
lldb::FuncUnwindersSP
GetFuncUnwindersContainingAddress (const Address& addr, SymbolContext &sc);
@@ -65,9 +68,10 @@ private:
bool m_initialized; // delay some initialization until ObjectFile is set up
Mutex m_mutex;
- DWARFCallFrameInfo* m_eh_frame;
- CompactUnwindInfo *m_compact_unwind;
-
+ std::unique_ptr<DWARFCallFrameInfo> m_eh_frame_up;
+ std::unique_ptr<CompactUnwindInfo> m_compact_unwind_up;
+ std::unique_ptr<ArmUnwindInfo> m_arm_unwind_up;
+
DISALLOW_COPY_AND_ASSIGN (UnwindTable);
};