LLDB mainline
UnwindTable.cpp
Go to the documentation of this file.
1//===-- UnwindTable.cpp ---------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11#include <cstdio>
12#include <optional>
13
14#include "lldb/Core/Module.h"
15#include "lldb/Core/Section.h"
24
25// There is one UnwindTable object per ObjectFile. It contains a list of Unwind
26// objects -- one per function, populated lazily -- for the ObjectFile. Each
27// Unwind object has multiple UnwindPlans for different scenarios.
28
29using namespace lldb;
30using namespace lldb_private;
31
36
37// We can't do some of this initialization when the ObjectFile is running its
38// ctor; delay doing it until needed for something.
41 return;
42
43 std::lock_guard<std::mutex> guard(m_mutex);
44
45 if (m_scanned_all_unwind_sources) // check again once we've acquired the lock
46 return;
47
48 ObjectFile *object_file = m_module.GetObjectFile();
49 if (!object_file)
50 return;
51
53
56
57 SectionList *sl = m_module.GetSectionList();
58 if (!sl)
59 return;
60
62 if (!m_eh_frame_up && sect)
63 m_eh_frame_up = std::make_unique<DWARFCallFrameInfo>(
64 *object_file, sect, DWARFCallFrameInfo::EH);
65
67 if (!m_debug_frame_up && sect)
68 m_debug_frame_up = std::make_unique<DWARFCallFrameInfo>(
69 *object_file, sect, DWARFCallFrameInfo::DWARF);
70
72 if (!m_compact_unwind_up && sect)
74 std::make_unique<CompactUnwindInfo>(*object_file, sect);
75
77 if (!m_arm_unwind_up && sect) {
78 SectionSP sect_extab = sl->FindSectionByType(eSectionTypeARMextab, true);
79 if (sect_extab.get()) {
81 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab);
82 }
83 }
84}
85
87 std::lock_guard<std::mutex> guard(m_mutex);
89 m_unwinds.clear();
90}
91
93
95 const SymbolContext &sc) {
96 AddressRange range;
97
98 // First check the unwind info from the object file plugin
100 m_object_file_unwind_up->GetAddressRange(addr, range))
101 return {range};
102
103 // Check the symbol context
104 AddressRanges result;
105 for (size_t idx = 0;
106 sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, idx,
107 false, range) &&
108 range.GetBaseAddress().IsValid();
109 ++idx)
110 result.push_back(range);
111 if (!result.empty())
112 return result;
113
114 // Does the eh_frame unwind info has a function bounds for this addr?
115 if (m_eh_frame_up && m_eh_frame_up->GetAddressRange(addr, range))
116 return {range};
117
118 // Try debug_frame as well
119 if (m_debug_frame_up && m_debug_frame_up->GetAddressRange(addr, range))
120 return {range};
121
122 return {};
123}
124
126 const SymbolContext &sc) {
127 if (Address result = sc.GetFunctionOrSymbolAddress(); result.IsValid())
128 return result;
129 return addr;
130}
131
134 const SymbolContext &sc) {
135 Initialize();
136
137 std::lock_guard<std::mutex> guard(m_mutex);
138
139 // There is an UnwindTable per object file, so we can safely use file handles
140 addr_t file_addr = addr.GetFileAddress();
141 iterator insert_pos = m_unwinds.upper_bound(file_addr);
142 if (insert_pos != m_unwinds.begin()) {
143 auto pos = std::prev(insert_pos);
144 if (pos->second->ContainsAddress(addr))
145 return pos->second;
146 }
147
148 Address start_addr = GetFunctionOrSymbolAddress(addr, sc);
149 AddressRanges ranges = GetAddressRanges(addr, sc);
150 if (ranges.empty())
151 return nullptr;
152
153 auto func_unwinder_sp =
154 std::make_shared<FuncUnwinders>(*this, start_addr, ranges);
155 for (const AddressRange &range : ranges)
156 m_unwinds.emplace_hint(insert_pos, range.GetBaseAddress().GetFileAddress(),
157 func_unwinder_sp);
158 return func_unwinder_sp;
159}
160
161// Ignore any existing FuncUnwinders for this function, create a new one and
162// don't add it to the UnwindTable. This is intended for use by target modules
163// show-unwind where we want to create new UnwindPlans, not re-use existing
164// ones.
166 const Address &addr, const SymbolContext &sc) {
167 Initialize();
168
169 Address start_addr = GetFunctionOrSymbolAddress(addr, sc);
170 AddressRanges ranges = GetAddressRanges(addr, sc);
171 if (ranges.empty())
172 return nullptr;
173
174 return std::make_shared<FuncUnwinders>(*this, start_addr, std::move(ranges));
175}
176
178 std::lock_guard<std::mutex> guard(m_mutex);
179 s.Format("UnwindTable for '{0}':\n", m_module.GetFileSpec());
180 const_iterator begin = m_unwinds.begin();
181 const_iterator end = m_unwinds.end();
182 for (const_iterator pos = begin; pos != end; ++pos) {
183 s.Printf("[%u] 0x%16.16" PRIx64 "\n", (unsigned)std::distance(begin, pos),
184 pos->first);
185 }
186 s.EOL();
187}
188
193
198
203
208
213
214SymbolFile *UnwindTable::GetSymbolFile() { return m_module.GetSymbolFile(); }
215
216ArchSpec UnwindTable::GetArchitecture() { return m_module.GetArchitecture(); }
217
219 if (ObjectFile *object_file = m_module.GetObjectFile())
220 return object_file->AllowAssemblyEmulationUnwindPlans();
221 return false;
222}
static Address GetFunctionOrSymbolAddress(const Address &addr, const SymbolContext &sc)
A section + offset based address range class.
Address & GetBaseAddress()
Get accessor for the base address of the range.
A section + offset based address class.
Definition Address.h:62
lldb::addr_t GetFileAddress() const
Get the file address.
Definition Address.cpp:281
bool IsValid() const
Check if the object state is valid.
Definition Address.h:355
An architecture specification class.
Definition ArchSpec.h:31
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:90
A plug-in interface definition class for object file parsers.
Definition ObjectFile.h:45
virtual std::unique_ptr< CallFrameInfo > CreateCallFrameInfo()
Creates a plugin-specific call frame info.
lldb::SectionSP FindSectionByType(lldb::SectionType sect_type, bool check_children, size_t start_idx=0) const
Definition Section.cpp:598
A stream class that can stream formatted output to a file.
Definition Stream.h:28
void Format(const char *format, Args &&... args)
Definition Stream.h:352
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
size_t EOL()
Output and End of Line character to the stream.
Definition Stream.cpp:155
Defines a symbol context baton that can be handed other debug core functions.
bool GetAddressRange(uint32_t scope, uint32_t range_idx, bool use_inline_block_range, AddressRange &range) const
Get the address range contained within a symbol context.
Address GetFunctionOrSymbolAddress() const
Get the address of the function or symbol represented by this symbol context.
Provides public interface for all SymbolFiles.
Definition SymbolFile.h:51
AddressRanges GetAddressRanges(const Address &addr, const SymbolContext &sc)
lldb_private::DWARFCallFrameInfo * GetEHFrameInfo()
std::unique_ptr< DWARFCallFrameInfo > m_debug_frame_up
Definition UnwindTable.h:87
std::unique_ptr< CallFrameInfo > m_object_file_unwind_up
Definition UnwindTable.h:85
ArmUnwindInfo * GetArmUnwindInfo()
std::unique_ptr< DWARFCallFrameInfo > m_eh_frame_up
Definition UnwindTable.h:86
UnwindTable(Module &module)
Create an Unwind table using the data in the given module.
std::unique_ptr< CompactUnwindInfo > m_compact_unwind_up
Definition UnwindTable.h:88
collection::const_iterator const_iterator
Definition UnwindTable.h:73
lldb::FuncUnwindersSP GetFuncUnwindersContainingAddress(const Address &addr, const SymbolContext &sc)
void ModuleWasUpdated()
Called after an ObjectFile/SymbolFile has been added to a Module to add any new unwind sections that ...
lldb_private::DWARFCallFrameInfo * GetDebugFrameInfo()
lldb::FuncUnwindersSP GetUncachedFuncUnwindersContainingAddress(const Address &addr, const SymbolContext &sc)
lldb_private::CompactUnwindInfo * GetCompactUnwindInfo()
lldb_private::CallFrameInfo * GetObjectFileUnwindInfo()
collection::iterator iterator
Definition UnwindTable.h:72
std::unique_ptr< ArmUnwindInfo > m_arm_unwind_up
Definition UnwindTable.h:89
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::FuncUnwinders > FuncUnwindersSP
std::shared_ptr< lldb_private::Section > SectionSP
uint64_t addr_t
Definition lldb-types.h:80
@ eSectionTypeDWARFDebugFrame
@ eSectionTypeARMextab
@ eSectionTypeCompactUnwind
compact unwind section in Mach-O, __TEXT,__unwind_info
@ eSectionTypeEHFrame
@ eSectionTypeARMexidx