blob: 7f98eaca2521486db94f7e1af9e73e530bdd7035 [file] [log] [blame]
Greg Claytondc5eb692011-04-25 18:36:36 +00001//===-- UnwindTable.cpp -----------------------------------------*- C++ -*-===//
Jason Molendafbcb7f22010-09-10 07:49:16 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Greg Claytona51ed9b2010-09-23 01:09:21 +000010#include "lldb/Symbol/UnwindTable.h"
Jason Molendafbcb7f22010-09-10 07:49:16 +000011
Greg Claytona51ed9b2010-09-23 01:09:21 +000012#include <stdio.h>
13
Greg Claytona51ed9b2010-09-23 01:09:21 +000014#include "lldb/Core/Module.h"
15#include "lldb/Core/Section.h"
Tamas Berghammer648f3c72015-09-30 13:50:14 +000016#include "lldb/Symbol/ArmUnwindInfo.h"
Jason Molendae589e7e2014-12-08 03:09:00 +000017#include "lldb/Symbol/CompactUnwindInfo.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000018#include "lldb/Symbol/DWARFCallFrameInfo.h"
19#include "lldb/Symbol/FuncUnwinders.h"
20#include "lldb/Symbol/ObjectFile.h"
21#include "lldb/Symbol/SymbolContext.h"
Jason Molendafbcb7f22010-09-10 07:49:16 +000022
Adrian Prantl05097242018-04-30 16:49:04 +000023// There is one UnwindTable object per ObjectFile. It contains a list of Unwind
24// objects -- one per function, populated lazily -- for the ObjectFile. Each
25// Unwind object has multiple UnwindPlans for different scenarios.
Jason Molendafbcb7f22010-09-10 07:49:16 +000026
27using namespace lldb;
28using namespace lldb_private;
29
Saleem Abdulrasoolbb19a132016-05-19 05:13:57 +000030UnwindTable::UnwindTable(ObjectFile &objfile)
Kate Stoneb9c1b512016-09-06 20:57:50 +000031 : m_object_file(objfile), m_unwinds(), m_initialized(false), m_mutex(),
32 m_eh_frame_up(), m_compact_unwind_up(), m_arm_unwind_up() {}
Jason Molendafbcb7f22010-09-10 07:49:16 +000033
Kate Stoneb9c1b512016-09-06 20:57:50 +000034// We can't do some of this initialization when the ObjectFile is running its
Adrian Prantl05097242018-04-30 16:49:04 +000035// ctor; delay doing it until needed for something.
Jason Molendafbcb7f22010-09-10 07:49:16 +000036
Kate Stoneb9c1b512016-09-06 20:57:50 +000037void UnwindTable::Initialize() {
38 if (m_initialized)
39 return;
Jason Molendafbcb7f22010-09-10 07:49:16 +000040
Kate Stoneb9c1b512016-09-06 20:57:50 +000041 std::lock_guard<std::mutex> guard(m_mutex);
Jason Molenda5cba5692014-06-18 23:32:53 +000042
Kate Stoneb9c1b512016-09-06 20:57:50 +000043 if (m_initialized) // check again once we've acquired the lock
44 return;
Pavel Labathcdda23e2017-06-27 11:16:26 +000045 m_initialized = true;
Jason Molenda5cba5692014-06-18 23:32:53 +000046
Kate Stoneb9c1b512016-09-06 20:57:50 +000047 SectionList *sl = m_object_file.GetSectionList();
Pavel Labathcdda23e2017-06-27 11:16:26 +000048 if (!sl)
49 return;
50
51 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true);
52 if (sect.get()) {
Pavel Labath3f2a0812017-06-28 09:09:19 +000053 m_eh_frame_up.reset(
54 new DWARFCallFrameInfo(m_object_file, sect, DWARFCallFrameInfo::EH));
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 }
56
Pavel Labathcdda23e2017-06-27 11:16:26 +000057 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true);
58 if (sect) {
59 m_debug_frame_up.reset(
Pavel Labath3f2a0812017-06-28 09:09:19 +000060 new DWARFCallFrameInfo(m_object_file, sect, DWARFCallFrameInfo::DWARF));
Pavel Labathcdda23e2017-06-27 11:16:26 +000061 }
62
63 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true);
64 if (sect) {
65 m_compact_unwind_up.reset(new CompactUnwindInfo(m_object_file, sect));
66 }
67
68 sect = sl->FindSectionByType(eSectionTypeARMexidx, true);
69 if (sect) {
70 SectionSP sect_extab = sl->FindSectionByType(eSectionTypeARMextab, true);
71 if (sect_extab.get()) {
72 m_arm_unwind_up.reset(new ArmUnwindInfo(m_object_file, sect, sect_extab));
73 }
74 }
Jason Molendafbcb7f22010-09-10 07:49:16 +000075}
76
Kate Stoneb9c1b512016-09-06 20:57:50 +000077UnwindTable::~UnwindTable() {}
Jason Molendafbcb7f22010-09-10 07:49:16 +000078
Pavel Labathcdda23e2017-06-27 11:16:26 +000079llvm::Optional<AddressRange> UnwindTable::GetAddressRange(const Address &addr,
80 SymbolContext &sc) {
81 AddressRange range;
82
83 // First check the symbol context
84 if (sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0,
85 false, range) &&
86 range.GetBaseAddress().IsValid())
87 return range;
88
89 // Does the eh_frame unwind info has a function bounds for this addr?
90 if (m_eh_frame_up && m_eh_frame_up->GetAddressRange(addr, range))
91 return range;
92
93 // Try debug_frame as well
94 if (m_debug_frame_up && m_debug_frame_up->GetAddressRange(addr, range))
95 return range;
96
97 return llvm::None;
98}
99
Jason Molendafbcb7f22010-09-10 07:49:16 +0000100FuncUnwindersSP
Kate Stoneb9c1b512016-09-06 20:57:50 +0000101UnwindTable::GetFuncUnwindersContainingAddress(const Address &addr,
102 SymbolContext &sc) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000103 Initialize();
Jason Molendafbcb7f22010-09-10 07:49:16 +0000104
Kate Stoneb9c1b512016-09-06 20:57:50 +0000105 std::lock_guard<std::mutex> guard(m_mutex);
Jason Molenda5cba5692014-06-18 23:32:53 +0000106
Kate Stoneb9c1b512016-09-06 20:57:50 +0000107 // There is an UnwindTable per object file, so we can safely use file handles
108 addr_t file_addr = addr.GetFileAddress();
109 iterator end = m_unwinds.end();
110 iterator insert_pos = end;
111 if (!m_unwinds.empty()) {
112 insert_pos = m_unwinds.lower_bound(file_addr);
113 iterator pos = insert_pos;
114 if ((pos == m_unwinds.end()) ||
115 (pos != m_unwinds.begin() &&
116 pos->second->GetFunctionStartAddress() != addr))
117 --pos;
Jason Molendafbcb7f22010-09-10 07:49:16 +0000118
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119 if (pos->second->ContainsAddress(addr))
120 return pos->second;
121 }
122
Pavel Labathcdda23e2017-06-27 11:16:26 +0000123 auto range_or = GetAddressRange(addr, sc);
124 if (!range_or)
125 return nullptr;
Jason Molendafbcb7f22010-09-10 07:49:16 +0000126
Pavel Labathcdda23e2017-06-27 11:16:26 +0000127 FuncUnwindersSP func_unwinder_sp(new FuncUnwinders(*this, *range_or));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128 m_unwinds.insert(insert_pos,
Pavel Labathcdda23e2017-06-27 11:16:26 +0000129 std::make_pair(range_or->GetBaseAddress().GetFileAddress(),
Kate Stoneb9c1b512016-09-06 20:57:50 +0000130 func_unwinder_sp));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000131 return func_unwinder_sp;
Greg Claytonb0848c52011-01-08 00:05:12 +0000132}
133
Kate Stoneb9c1b512016-09-06 20:57:50 +0000134// Ignore any existing FuncUnwinders for this function, create a new one and
Adrian Prantl05097242018-04-30 16:49:04 +0000135// don't add it to the UnwindTable. This is intended for use by target modules
136// show-unwind where we want to create new UnwindPlans, not re-use existing
137// ones.
Jason Molenda380241a2012-07-12 00:20:07 +0000138FuncUnwindersSP
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139UnwindTable::GetUncachedFuncUnwindersContainingAddress(const Address &addr,
140 SymbolContext &sc) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 Initialize();
Jason Molenda380241a2012-07-12 00:20:07 +0000142
Pavel Labathcdda23e2017-06-27 11:16:26 +0000143 auto range_or = GetAddressRange(addr, sc);
144 if (!range_or)
145 return nullptr;
Jason Molenda380241a2012-07-12 00:20:07 +0000146
Pavel Labathcdda23e2017-06-27 11:16:26 +0000147 return std::make_shared<FuncUnwinders>(*this, *range_or);
Jason Molenda380241a2012-07-12 00:20:07 +0000148}
149
Kate Stoneb9c1b512016-09-06 20:57:50 +0000150void UnwindTable::Dump(Stream &s) {
151 std::lock_guard<std::mutex> guard(m_mutex);
152 s.Printf("UnwindTable for '%s':\n",
153 m_object_file.GetFileSpec().GetPath().c_str());
154 const_iterator begin = m_unwinds.begin();
155 const_iterator end = m_unwinds.end();
156 for (const_iterator pos = begin; pos != end; ++pos) {
157 s.Printf("[%u] 0x%16.16" PRIx64 "\n", (unsigned)std::distance(begin, pos),
158 pos->first);
159 }
160 s.EOL();
Jason Molendafbcb7f22010-09-10 07:49:16 +0000161}
162
Kate Stoneb9c1b512016-09-06 20:57:50 +0000163DWARFCallFrameInfo *UnwindTable::GetEHFrameInfo() {
164 Initialize();
165 return m_eh_frame_up.get();
Jason Molendafbcb7f22010-09-10 07:49:16 +0000166}
Jason Molendaab35aa92014-05-23 01:48:10 +0000167
Pavel Labathcdda23e2017-06-27 11:16:26 +0000168DWARFCallFrameInfo *UnwindTable::GetDebugFrameInfo() {
169 Initialize();
170 return m_debug_frame_up.get();
171}
172
Kate Stoneb9c1b512016-09-06 20:57:50 +0000173CompactUnwindInfo *UnwindTable::GetCompactUnwindInfo() {
174 Initialize();
175 return m_compact_unwind_up.get();
Tamas Berghammer648f3c72015-09-30 13:50:14 +0000176}
177
Kate Stoneb9c1b512016-09-06 20:57:50 +0000178ArmUnwindInfo *UnwindTable::GetArmUnwindInfo() {
179 Initialize();
180 return m_arm_unwind_up.get();
Jason Molendae589e7e2014-12-08 03:09:00 +0000181}
182
Kate Stoneb9c1b512016-09-06 20:57:50 +0000183bool UnwindTable::GetArchitecture(lldb_private::ArchSpec &arch) {
184 return m_object_file.GetArchitecture(arch);
Jason Molendaab35aa92014-05-23 01:48:10 +0000185}
Jason Molenda955dcf22016-05-04 03:09:40 +0000186
Kate Stoneb9c1b512016-09-06 20:57:50 +0000187bool UnwindTable::GetAllowAssemblyEmulationUnwindPlans() {
188 return m_object_file.AllowAssemblyEmulationUnwindPlans();
Jason Molenda955dcf22016-05-04 03:09:40 +0000189}