diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
commit | f3fbd1c0586ff6ec7895991e6c28f61a503c36a8 (patch) | |
tree | 48d008fd3df8c0e73271a4b18474e0aac6dbfe33 /source/Symbol/UnwindTable.cpp | |
parent | 2fc5d2d1dfaf623ce4e24cd8590565902f8c557c (diff) | |
download | src-f3fbd1c0586ff6ec7895991e6c28f61a503c36a8.tar.gz src-f3fbd1c0586ff6ec7895991e6c28f61a503c36a8.zip |
Vendor import of lldb release_39 branch r276489:vendor/lldb/lldb-release_39-r276489
Notes
Notes:
svn path=/vendor/lldb/dist/; revision=303241
svn path=/vendor/lldb/lldb-release_39-r276489/; revision=303242; tag=vendor/lldb/lldb-release_39-r276489
Diffstat (limited to 'source/Symbol/UnwindTable.cpp')
-rw-r--r-- | source/Symbol/UnwindTable.cpp | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/source/Symbol/UnwindTable.cpp b/source/Symbol/UnwindTable.cpp index ac7a9b0fda87..87c18d94b070 100644 --- a/source/Symbol/UnwindTable.cpp +++ b/source/Symbol/UnwindTable.cpp @@ -27,14 +27,14 @@ using namespace lldb; using namespace lldb_private; -UnwindTable::UnwindTable (ObjectFile& objfile) : - m_object_file (objfile), - m_unwinds (), - m_initialized (false), - m_mutex (), - m_eh_frame_up (), - m_compact_unwind_up (), - m_arm_unwind_up () +UnwindTable::UnwindTable(ObjectFile &objfile) + : m_object_file(objfile), + m_unwinds(), + m_initialized(false), + m_mutex(), + m_eh_frame_up(), + m_compact_unwind_up(), + m_arm_unwind_up() { } @@ -47,7 +47,7 @@ UnwindTable::Initialize () if (m_initialized) return; - Mutex::Locker locker(m_mutex); + std::lock_guard<std::mutex> guard(m_mutex); if (m_initialized) // check again once we've acquired the lock return; @@ -90,7 +90,7 @@ UnwindTable::GetFuncUnwindersContainingAddress (const Address& addr, SymbolConte Initialize(); - Mutex::Locker locker(m_mutex); + std::lock_guard<std::mutex> guard(m_mutex); // There is an UnwindTable per object file, so we can safely use file handles addr_t file_addr = addr.GetFileAddress(); @@ -152,7 +152,7 @@ UnwindTable::GetUncachedFuncUnwindersContainingAddress (const Address& addr, Sym void UnwindTable::Dump (Stream &s) { - Mutex::Locker locker(m_mutex); + std::lock_guard<std::mutex> guard(m_mutex); s.Printf("UnwindTable for '%s':\n", m_object_file.GetFileSpec().GetPath().c_str()); const_iterator begin = m_unwinds.begin(); const_iterator end = m_unwinds.end(); @@ -189,3 +189,9 @@ UnwindTable::GetArchitecture (lldb_private::ArchSpec &arch) { return m_object_file.GetArchitecture (arch); } + +bool +UnwindTable::GetAllowAssemblyEmulationUnwindPlans () +{ + return m_object_file.AllowAssemblyEmulationUnwindPlans (); +} |