blob: fa6ace8c3bb9054b83fa8c4439de34d2f9346143 [file] [log] [blame]
Eugene Zelenko0af149a2015-10-19 18:52:10 +00001//===-- SymbolFileDWARFDebugMap.cpp -----------------------------*- C++ -*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +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
10#include "SymbolFileDWARFDebugMap.h"
11
Enrico Granatac76e60b2013-06-27 01:43:09 +000012#include "DWARFDebugAranges.h"
13
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014#include "lldb/Core/Module.h"
15#include "lldb/Core/ModuleList.h"
16#include "lldb/Core/PluginManager.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include "lldb/Core/RangeMap.h"
Greg Clayton1f746072012-08-29 21:13:06 +000018#include "lldb/Core/Section.h"
Pavel Labath1408bf72016-11-01 16:11:14 +000019#include "lldb/Host/FileSystem.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000020#include "lldb/Utility/RegularExpression.h"
Pavel Labath38d06322017-06-29 14:32:17 +000021#include "lldb/Utility/Timer.h"
Greg Clayton9422dd62013-03-04 21:46:16 +000022
23//#define DEBUG_OSO_DMAP // DO NOT CHECKIN WITH THIS NOT COMMENTED OUT
Greg Clayton1f746072012-08-29 21:13:06 +000024#if defined(DEBUG_OSO_DMAP)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000025#include "lldb/Core/StreamFile.h"
Greg Clayton1f746072012-08-29 21:13:06 +000026#endif
Greg Clayton6beaaa62011-01-17 03:46:26 +000027
Greg Clayton1f746072012-08-29 21:13:06 +000028#include "lldb/Symbol/CompileUnit.h"
Greg Clayton9422dd62013-03-04 21:46:16 +000029#include "lldb/Symbol/LineTable.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Symbol/ObjectFile.h"
31#include "lldb/Symbol/SymbolVendor.h"
Ravitheja Addepally40697302015-10-08 09:45:41 +000032#include "lldb/Symbol/TypeMap.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000033#include "lldb/Symbol/VariableList.h"
Pavel Labath7e2cfbf2016-11-09 09:59:18 +000034#include "llvm/Support/ScopedPrinter.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
Sean Callanan60217122012-04-13 00:10:03 +000036#include "LogChannelDWARF.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037#include "SymbolFileDWARF.h"
38
39using namespace lldb;
40using namespace lldb_private;
41
Kate Stoneb9c1b512016-09-06 20:57:50 +000042// Subclass lldb_private::Module so we can intercept the
Adrian Prantl05097242018-04-30 16:49:04 +000043// "Module::GetObjectFile()" (so we can fixup the object file sections) and
44// also for "Module::GetSymbolVendor()" (so we can fixup the symbol file id.
Greg Clayton1f746072012-08-29 21:13:06 +000045
Greg Clayton9422dd62013-03-04 21:46:16 +000046const SymbolFileDWARFDebugMap::FileRangeMap &
Kate Stoneb9c1b512016-09-06 20:57:50 +000047SymbolFileDWARFDebugMap::CompileUnitInfo::GetFileRangeMap(
48 SymbolFileDWARFDebugMap *exe_symfile) {
49 if (file_range_map_valid)
Greg Clayton9422dd62013-03-04 21:46:16 +000050 return file_range_map;
Kate Stoneb9c1b512016-09-06 20:57:50 +000051
52 file_range_map_valid = true;
53
54 Module *oso_module = exe_symfile->GetModuleByCompUnitInfo(this);
55 if (!oso_module)
56 return file_range_map;
57
58 ObjectFile *oso_objfile = oso_module->GetObjectFile();
59 if (!oso_objfile)
60 return file_range_map;
61
62 Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP));
63 if (log) {
64 ConstString object_name(oso_module->GetObjectName());
65 log->Printf(
66 "%p: SymbolFileDWARFDebugMap::CompileUnitInfo::GetFileRangeMap ('%s')",
67 static_cast<void *>(this),
68 oso_module->GetSpecificationDescription().c_str());
69 }
70
71 std::vector<SymbolFileDWARFDebugMap::CompileUnitInfo *> cu_infos;
72 if (exe_symfile->GetCompUnitInfosForModule(oso_module, cu_infos)) {
73 for (auto comp_unit_info : cu_infos) {
74 Symtab *exe_symtab = exe_symfile->GetObjectFile()->GetSymtab();
75 ModuleSP oso_module_sp(oso_objfile->GetModule());
76 Symtab *oso_symtab = oso_objfile->GetSymtab();
77
78 /// const uint32_t fun_resolve_flags = SymbolContext::Module |
79 /// eSymbolContextCompUnit | eSymbolContextFunction;
80 // SectionList *oso_sections = oso_objfile->Sections();
Adrian Prantl05097242018-04-30 16:49:04 +000081 // Now we need to make sections that map from zero based object file
82 // addresses to where things ended up in the main executable.
Kate Stoneb9c1b512016-09-06 20:57:50 +000083
84 assert(comp_unit_info->first_symbol_index != UINT32_MAX);
85 // End index is one past the last valid symbol index
86 const uint32_t oso_end_idx = comp_unit_info->last_symbol_index + 1;
87 for (uint32_t idx = comp_unit_info->first_symbol_index +
88 2; // Skip the N_SO and N_OSO
Jonas Devlieghere010b56b2018-11-27 15:25:58 +000089 idx < oso_end_idx; ++idx) {
Kate Stoneb9c1b512016-09-06 20:57:50 +000090 Symbol *exe_symbol = exe_symtab->SymbolAtIndex(idx);
91 if (exe_symbol) {
92 if (exe_symbol->IsDebug() == false)
93 continue;
94
95 switch (exe_symbol->GetType()) {
96 default:
97 break;
98
99 case eSymbolTypeCode: {
Adrian Prantl05097242018-04-30 16:49:04 +0000100 // For each N_FUN, or function that we run into in the debug map we
101 // make a new section that we add to the sections found in the .o
102 // file. This new section has the file address set to what the
Kate Stoneb9c1b512016-09-06 20:57:50 +0000103 // addresses are in the .o file, and the load address is adjusted
104 // to match where it ended up in the final executable! We do this
105 // before we parse any dwarf info so that when it goes get parsed
106 // all section/offset addresses that get registered will resolve
107 // correctly to the new addresses in the main executable.
108
109 // First we find the original symbol in the .o file's symbol table
110 Symbol *oso_fun_symbol = oso_symtab->FindFirstSymbolWithNameAndType(
111 exe_symbol->GetMangled().GetName(lldb::eLanguageTypeUnknown,
112 Mangled::ePreferMangled),
113 eSymbolTypeCode, Symtab::eDebugNo, Symtab::eVisibilityAny);
114 if (oso_fun_symbol) {
115 // Add the inverse OSO file address to debug map entry mapping
116 exe_symfile->AddOSOFileRange(
117 this, exe_symbol->GetAddressRef().GetFileAddress(),
118 exe_symbol->GetByteSize(),
119 oso_fun_symbol->GetAddressRef().GetFileAddress(),
120 oso_fun_symbol->GetByteSize());
121 }
122 } break;
123
124 case eSymbolTypeData: {
Adrian Prantl05097242018-04-30 16:49:04 +0000125 // For each N_GSYM we remap the address for the global by making a
126 // new section that we add to the sections found in the .o file.
127 // This new section has the file address set to what the addresses
128 // are in the .o file, and the load address is adjusted to match
129 // where it ended up in the final executable! We do this before we
130 // parse any dwarf info so that when it goes get parsed all
131 // section/offset addresses that get registered will resolve
Kate Stoneb9c1b512016-09-06 20:57:50 +0000132 // correctly to the new addresses in the main executable. We
133 // initially set the section size to be 1 byte, but will need to
134 // fix up these addresses further after all globals have been
135 // parsed to span the gaps, or we can find the global variable
136 // sizes from the DWARF info as we are parsing.
137
Adrian Prantl05097242018-04-30 16:49:04 +0000138 // Next we find the non-stab entry that corresponds to the N_GSYM
139 // in the .o file
Kate Stoneb9c1b512016-09-06 20:57:50 +0000140 Symbol *oso_gsym_symbol =
141 oso_symtab->FindFirstSymbolWithNameAndType(
142 exe_symbol->GetMangled().GetName(lldb::eLanguageTypeUnknown,
143 Mangled::ePreferMangled),
144 eSymbolTypeData, Symtab::eDebugNo, Symtab::eVisibilityAny);
145 if (exe_symbol && oso_gsym_symbol && exe_symbol->ValueIsAddress() &&
146 oso_gsym_symbol->ValueIsAddress()) {
147 // Add the inverse OSO file address to debug map entry mapping
148 exe_symfile->AddOSOFileRange(
149 this, exe_symbol->GetAddressRef().GetFileAddress(),
150 exe_symbol->GetByteSize(),
151 oso_gsym_symbol->GetAddressRef().GetFileAddress(),
152 oso_gsym_symbol->GetByteSize());
153 }
154 } break;
155 }
156 }
157 }
158
159 exe_symfile->FinalizeOSOFileRanges(this);
160 // We don't need the symbols anymore for the .o files
161 oso_objfile->ClearSymtab();
162 }
163 }
164 return file_range_map;
Greg Clayton9422dd62013-03-04 21:46:16 +0000165}
166
Kate Stoneb9c1b512016-09-06 20:57:50 +0000167class DebugMapModule : public Module {
Greg Clayton1f746072012-08-29 21:13:06 +0000168public:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000169 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx,
170 const FileSpec &file_spec, const ArchSpec &arch,
171 const ConstString *object_name, off_t object_offset,
Pavel Labath7e2cfbf2016-11-09 09:59:18 +0000172 const llvm::sys::TimePoint<> object_mod_time)
173 : Module(file_spec, arch, object_name, object_offset, object_mod_time),
Kate Stoneb9c1b512016-09-06 20:57:50 +0000174 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {}
Greg Clayton1f746072012-08-29 21:13:06 +0000175
Kate Stoneb9c1b512016-09-06 20:57:50 +0000176 ~DebugMapModule() override = default;
Greg Clayton9ba42d12012-10-08 22:48:57 +0000177
Kate Stoneb9c1b512016-09-06 20:57:50 +0000178 SymbolVendor *
179 GetSymbolVendor(bool can_create = true,
180 lldb_private::Stream *feedback_strm = NULL) override {
181 // Scope for locker
182 if (m_symfile_ap.get() || can_create == false)
183 return m_symfile_ap.get();
Greg Clayton1f746072012-08-29 21:13:06 +0000184
Kate Stoneb9c1b512016-09-06 20:57:50 +0000185 ModuleSP exe_module_sp(m_exe_module_wp.lock());
186 if (exe_module_sp) {
187 // Now get the object file outside of a locking scope
188 ObjectFile *oso_objfile = GetObjectFile();
189 if (oso_objfile) {
190 std::lock_guard<std::recursive_mutex> guard(m_mutex);
191 SymbolVendor *symbol_vendor =
192 Module::GetSymbolVendor(can_create, feedback_strm);
193 if (symbol_vendor) {
Adrian Prantl05097242018-04-30 16:49:04 +0000194 // Set a pointer to this class to set our OSO DWARF file know that
195 // the DWARF is being used along with a debug map and that it will
196 // have the remapped sections that we do below.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000197 SymbolFileDWARF *oso_symfile =
198 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(
199 symbol_vendor->GetSymbolFile());
Greg Clayton1f746072012-08-29 21:13:06 +0000200
Kate Stoneb9c1b512016-09-06 20:57:50 +0000201 if (!oso_symfile)
202 return NULL;
203
204 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile();
205 SymbolVendor *exe_sym_vendor = exe_module_sp->GetSymbolVendor();
206
207 if (exe_objfile && exe_sym_vendor) {
208 oso_symfile->SetDebugMapModule(exe_module_sp);
209 // Set the ID of the symbol file DWARF to the index of the OSO
210 // shifted left by 32 bits to provide a unique prefix for any
211 // UserID's that get created in the symbol file.
212 oso_symfile->SetID(((uint64_t)m_cu_idx + 1ull) << 32ull);
213 }
214 return symbol_vendor;
Greg Clayton1f746072012-08-29 21:13:06 +0000215 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000216 }
Greg Clayton1f746072012-08-29 21:13:06 +0000217 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000218 return NULL;
219 }
Greg Clayton1f746072012-08-29 21:13:06 +0000220
221protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000222 ModuleWP m_exe_module_wp;
223 const uint32_t m_cu_idx;
Greg Clayton1f746072012-08-29 21:13:06 +0000224};
225
Kate Stoneb9c1b512016-09-06 20:57:50 +0000226void SymbolFileDWARFDebugMap::Initialize() {
227 PluginManager::RegisterPlugin(GetPluginNameStatic(),
228 GetPluginDescriptionStatic(), CreateInstance);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000229}
230
Kate Stoneb9c1b512016-09-06 20:57:50 +0000231void SymbolFileDWARFDebugMap::Terminate() {
232 PluginManager::UnregisterPlugin(CreateInstance);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000233}
234
Kate Stoneb9c1b512016-09-06 20:57:50 +0000235lldb_private::ConstString SymbolFileDWARFDebugMap::GetPluginNameStatic() {
236 static ConstString g_name("dwarf-debugmap");
237 return g_name;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000238}
239
Kate Stoneb9c1b512016-09-06 20:57:50 +0000240const char *SymbolFileDWARFDebugMap::GetPluginDescriptionStatic() {
241 return "DWARF and DWARF3 debug symbol file reader (debug map).";
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000242}
243
Kate Stoneb9c1b512016-09-06 20:57:50 +0000244SymbolFile *SymbolFileDWARFDebugMap::CreateInstance(ObjectFile *obj_file) {
245 return new SymbolFileDWARFDebugMap(obj_file);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000246}
247
Kate Stoneb9c1b512016-09-06 20:57:50 +0000248SymbolFileDWARFDebugMap::SymbolFileDWARFDebugMap(ObjectFile *ofile)
249 : SymbolFile(ofile), m_flags(), m_compile_unit_infos(), m_func_indexes(),
250 m_glob_indexes(),
251 m_supports_DW_AT_APPLE_objc_complete_type(eLazyBoolCalculate) {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000252
Kate Stoneb9c1b512016-09-06 20:57:50 +0000253SymbolFileDWARFDebugMap::~SymbolFileDWARFDebugMap() {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000254
Kate Stoneb9c1b512016-09-06 20:57:50 +0000255void SymbolFileDWARFDebugMap::InitializeObject() {}
Greg Clayton2d95dc9b2010-11-10 04:57:04 +0000256
Kate Stoneb9c1b512016-09-06 20:57:50 +0000257void SymbolFileDWARFDebugMap::InitOSO() {
258 if (m_flags.test(kHaveInitializedOSOs))
259 return;
Greg Clayton3046e662013-07-10 01:23:25 +0000260
Kate Stoneb9c1b512016-09-06 20:57:50 +0000261 m_flags.set(kHaveInitializedOSOs);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000262
Kate Stoneb9c1b512016-09-06 20:57:50 +0000263 // If the object file has been stripped, there is no sense in looking further
264 // as all of the debug symbols for the debug map will not be available
265 if (m_obj_file->IsStripped())
266 return;
Sean Callanan60217122012-04-13 00:10:03 +0000267
Kate Stoneb9c1b512016-09-06 20:57:50 +0000268 // Also make sure the file type is some sort of executable. Core files, debug
269 // info files (dSYM), object files (.o files), and stub libraries all can
270 switch (m_obj_file->GetType()) {
271 case ObjectFile::eTypeInvalid:
272 case ObjectFile::eTypeCoreFile:
273 case ObjectFile::eTypeDebugInfo:
274 case ObjectFile::eTypeObjectFile:
275 case ObjectFile::eTypeStubLibrary:
276 case ObjectFile::eTypeUnknown:
277 case ObjectFile::eTypeJIT:
278 return;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000279
Kate Stoneb9c1b512016-09-06 20:57:50 +0000280 case ObjectFile::eTypeExecutable:
281 case ObjectFile::eTypeDynamicLinker:
282 case ObjectFile::eTypeSharedLibrary:
283 break;
284 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000285
Kate Stoneb9c1b512016-09-06 20:57:50 +0000286 // In order to get the abilities of this plug-in, we look at the list of
287 // N_OSO entries (object files) from the symbol table and make sure that
Adrian Prantl05097242018-04-30 16:49:04 +0000288 // these files exist and also contain valid DWARF. If we get any of that then
289 // we return the abilities of the first N_OSO's DWARF.
Greg Clayton16b2d2b2011-01-20 06:08:59 +0000290
Kate Stoneb9c1b512016-09-06 20:57:50 +0000291 Symtab *symtab = m_obj_file->GetSymtab();
292 if (symtab) {
293 Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP));
Greg Clayton16b2d2b2011-01-20 06:08:59 +0000294
Kate Stoneb9c1b512016-09-06 20:57:50 +0000295 std::vector<uint32_t> oso_indexes;
296 // When a mach-o symbol is encoded, the n_type field is encoded in bits
297 // 23:16, and the n_desc field is encoded in bits 15:0.
298 //
Adrian Prantl05097242018-04-30 16:49:04 +0000299 // To find all N_OSO entries that are part of the DWARF + debug map we find
300 // only object file symbols with the flags value as follows: bits 23:16 ==
301 // 0x66 (N_OSO) bits 15: 0 == 0x0001 (specifies this is a debug map object
302 // file)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000303 const uint32_t k_oso_symbol_flags_value = 0x660001u;
Greg Clayton9422dd62013-03-04 21:46:16 +0000304
Kate Stoneb9c1b512016-09-06 20:57:50 +0000305 const uint32_t oso_index_count =
306 symtab->AppendSymbolIndexesWithTypeAndFlagsValue(
307 eSymbolTypeObjectFile, k_oso_symbol_flags_value, oso_indexes);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000308
Kate Stoneb9c1b512016-09-06 20:57:50 +0000309 if (oso_index_count > 0) {
310 symtab->AppendSymbolIndexesWithType(eSymbolTypeCode, Symtab::eDebugYes,
311 Symtab::eVisibilityAny,
312 m_func_indexes);
313 symtab->AppendSymbolIndexesWithType(eSymbolTypeData, Symtab::eDebugYes,
314 Symtab::eVisibilityAny,
315 m_glob_indexes);
316
317 symtab->SortSymbolIndexesByValue(m_func_indexes, true);
318 symtab->SortSymbolIndexesByValue(m_glob_indexes, true);
319
320 for (uint32_t sym_idx : m_func_indexes) {
321 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx);
322 lldb::addr_t file_addr = symbol->GetAddressRef().GetFileAddress();
323 lldb::addr_t byte_size = symbol->GetByteSize();
324 DebugMap::Entry debug_map_entry(
325 file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS));
326 m_debug_map.Append(debug_map_entry);
327 }
328 for (uint32_t sym_idx : m_glob_indexes) {
329 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx);
330 lldb::addr_t file_addr = symbol->GetAddressRef().GetFileAddress();
331 lldb::addr_t byte_size = symbol->GetByteSize();
332 DebugMap::Entry debug_map_entry(
333 file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS));
334 m_debug_map.Append(debug_map_entry);
335 }
336 m_debug_map.Sort();
337
338 m_compile_unit_infos.resize(oso_index_count);
339
340 for (uint32_t i = 0; i < oso_index_count; ++i) {
341 const uint32_t so_idx = oso_indexes[i] - 1;
342 const uint32_t oso_idx = oso_indexes[i];
343 const Symbol *so_symbol = symtab->SymbolAtIndex(so_idx);
344 const Symbol *oso_symbol = symtab->SymbolAtIndex(oso_idx);
345 if (so_symbol && oso_symbol &&
346 so_symbol->GetType() == eSymbolTypeSourceFile &&
347 oso_symbol->GetType() == eSymbolTypeObjectFile) {
348 m_compile_unit_infos[i].so_file.SetFile(
Jonas Devlieghere8f3be7a2018-11-01 21:05:36 +0000349 so_symbol->GetName().AsCString(), FileSpec::Style::native);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000350 m_compile_unit_infos[i].oso_path = oso_symbol->GetName();
Pavel Labath7e2cfbf2016-11-09 09:59:18 +0000351 m_compile_unit_infos[i].oso_mod_time =
352 llvm::sys::toTimePoint(oso_symbol->GetIntegerValue(0));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000353 uint32_t sibling_idx = so_symbol->GetSiblingIndex();
354 // The sibling index can't be less that or equal to the current index
355 // "i"
356 if (sibling_idx == UINT32_MAX) {
357 m_obj_file->GetModule()->ReportError(
358 "N_SO in symbol with UID %u has invalid sibling in debug map, "
359 "please file a bug and attach the binary listed in this error",
360 so_symbol->GetID());
361 } else {
362 const Symbol *last_symbol = symtab->SymbolAtIndex(sibling_idx - 1);
363 m_compile_unit_infos[i].first_symbol_index = so_idx;
364 m_compile_unit_infos[i].last_symbol_index = sibling_idx - 1;
365 m_compile_unit_infos[i].first_symbol_id = so_symbol->GetID();
366 m_compile_unit_infos[i].last_symbol_id = last_symbol->GetID();
367
368 if (log)
369 log->Printf("Initialized OSO 0x%8.8x: file=%s", i,
370 oso_symbol->GetName().GetCString());
371 }
372 } else {
373 if (oso_symbol == NULL)
374 m_obj_file->GetModule()->ReportError(
375 "N_OSO symbol[%u] can't be found, please file a bug and attach "
376 "the binary listed in this error",
377 oso_idx);
378 else if (so_symbol == NULL)
379 m_obj_file->GetModule()->ReportError(
380 "N_SO not found for N_OSO symbol[%u], please file a bug and "
381 "attach the binary listed in this error",
382 oso_idx);
383 else if (so_symbol->GetType() != eSymbolTypeSourceFile)
384 m_obj_file->GetModule()->ReportError(
385 "N_SO has incorrect symbol type (%u) for N_OSO symbol[%u], "
386 "please file a bug and attach the binary listed in this error",
387 so_symbol->GetType(), oso_idx);
388 else if (oso_symbol->GetType() != eSymbolTypeSourceFile)
389 m_obj_file->GetModule()->ReportError(
390 "N_OSO has incorrect symbol type (%u) for N_OSO symbol[%u], "
391 "please file a bug and attach the binary listed in this error",
392 oso_symbol->GetType(), oso_idx);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000393 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000394 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000395 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000396 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000397}
398
Kate Stoneb9c1b512016-09-06 20:57:50 +0000399Module *SymbolFileDWARFDebugMap::GetModuleByOSOIndex(uint32_t oso_idx) {
400 const uint32_t cu_count = GetNumCompileUnits();
401 if (oso_idx < cu_count)
402 return GetModuleByCompUnitInfo(&m_compile_unit_infos[oso_idx]);
403 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000404}
405
Kate Stoneb9c1b512016-09-06 20:57:50 +0000406Module *SymbolFileDWARFDebugMap::GetModuleByCompUnitInfo(
407 CompileUnitInfo *comp_unit_info) {
408 if (!comp_unit_info->oso_sp) {
James Y Knight9c2d5202018-06-02 02:44:10 +0000409 auto pos = m_oso_map.find(
410 {comp_unit_info->oso_path, comp_unit_info->oso_mod_time});
Kate Stoneb9c1b512016-09-06 20:57:50 +0000411 if (pos != m_oso_map.end()) {
412 comp_unit_info->oso_sp = pos->second;
413 } else {
414 ObjectFile *obj_file = GetObjectFile();
415 comp_unit_info->oso_sp.reset(new OSOInfo());
James Y Knight9c2d5202018-06-02 02:44:10 +0000416 m_oso_map[{comp_unit_info->oso_path, comp_unit_info->oso_mod_time}] =
417 comp_unit_info->oso_sp;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000418 const char *oso_path = comp_unit_info->oso_path.GetCString();
Jonas Devlieghere8f3be7a2018-11-01 21:05:36 +0000419 FileSpec oso_file(oso_path);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000420 ConstString oso_object;
Jonas Devliegheredbd7fab2018-11-01 17:09:25 +0000421 if (FileSystem::Instance().Exists(oso_file)) {
Jonas Devlieghere010b56b2018-11-27 15:25:58 +0000422 // The modification time returned by the FS can have a higher precision
423 // than the one from the CU.
424 auto oso_mod_time = std::chrono::time_point_cast<std::chrono::seconds>(
425 FileSystem::Instance().GetModificationTime(oso_file));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000426 if (oso_mod_time != comp_unit_info->oso_mod_time) {
427 obj_file->GetModule()->ReportError(
428 "debug map object file '%s' has changed (actual time is "
Pavel Labath7e2cfbf2016-11-09 09:59:18 +0000429 "%s, debug map time is %s"
Kate Stoneb9c1b512016-09-06 20:57:50 +0000430 ") since this executable was linked, file will be ignored",
Pavel Labath7e2cfbf2016-11-09 09:59:18 +0000431 oso_file.GetPath().c_str(), llvm::to_string(oso_mod_time).c_str(),
432 llvm::to_string(comp_unit_info->oso_mod_time).c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000433 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000434 }
Greg Clayton57abc5d2013-05-10 21:47:16 +0000435
Kate Stoneb9c1b512016-09-06 20:57:50 +0000436 } else {
437 const bool must_exist = true;
Greg Clayton906ba472013-02-06 00:38:25 +0000438
Kate Stoneb9c1b512016-09-06 20:57:50 +0000439 if (!ObjectFile::SplitArchivePathWithObject(oso_path, oso_file,
440 oso_object, must_exist)) {
441 return NULL;
Greg Clayton906ba472013-02-06 00:38:25 +0000442 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000443 }
Adrian Prantl05097242018-04-30 16:49:04 +0000444 // Always create a new module for .o files. Why? Because we use the debug
445 // map, to add new sections to each .o file and even though a .o file
446 // might not have changed, the sections that get added to the .o file can
447 // change.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000448 ArchSpec oso_arch;
449 // Only adopt the architecture from the module (not the vendor or OS)
Adrian Prantl05097242018-04-30 16:49:04 +0000450 // since .o files for "i386-apple-ios" will historically show up as "i386
451 // -apple-macosx" due to the lack of a LC_VERSION_MIN_MACOSX or
452 // LC_VERSION_MIN_IPHONEOS load command...
Kate Stoneb9c1b512016-09-06 20:57:50 +0000453 oso_arch.SetTriple(m_obj_file->GetModule()
454 ->GetArchitecture()
455 .GetTriple()
456 .getArchName()
457 .str()
458 .c_str());
459 comp_unit_info->oso_sp->module_sp.reset(new DebugMapModule(
460 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file,
461 oso_arch, oso_object ? &oso_object : NULL, 0,
Pavel Labath7e2cfbf2016-11-09 09:59:18 +0000462 oso_object ? comp_unit_info->oso_mod_time
463 : llvm::sys::TimePoint<>()));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000464 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000465 }
466 if (comp_unit_info->oso_sp)
467 return comp_unit_info->oso_sp->module_sp.get();
468 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000469}
470
Kate Stoneb9c1b512016-09-06 20:57:50 +0000471bool SymbolFileDWARFDebugMap::GetFileSpecForSO(uint32_t oso_idx,
472 FileSpec &file_spec) {
473 if (oso_idx < m_compile_unit_infos.size()) {
474 if (m_compile_unit_infos[oso_idx].so_file) {
475 file_spec = m_compile_unit_infos[oso_idx].so_file;
476 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000477 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000478 }
479 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000480}
481
Kate Stoneb9c1b512016-09-06 20:57:50 +0000482ObjectFile *SymbolFileDWARFDebugMap::GetObjectFileByOSOIndex(uint32_t oso_idx) {
483 Module *oso_module = GetModuleByOSOIndex(oso_idx);
484 if (oso_module)
485 return oso_module->GetObjectFile();
486 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000487}
488
489SymbolFileDWARF *
Kate Stoneb9c1b512016-09-06 20:57:50 +0000490SymbolFileDWARFDebugMap::GetSymbolFile(const SymbolContext &sc) {
491 CompileUnitInfo *comp_unit_info = GetCompUnitInfo(sc);
492 if (comp_unit_info)
493 return GetSymbolFileByCompUnitInfo(comp_unit_info);
494 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000495}
496
Kate Stoneb9c1b512016-09-06 20:57:50 +0000497ObjectFile *SymbolFileDWARFDebugMap::GetObjectFileByCompUnitInfo(
498 CompileUnitInfo *comp_unit_info) {
499 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info);
500 if (oso_module)
501 return oso_module->GetObjectFile();
502 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000503}
504
Kate Stoneb9c1b512016-09-06 20:57:50 +0000505uint32_t SymbolFileDWARFDebugMap::GetCompUnitInfoIndex(
506 const CompileUnitInfo *comp_unit_info) {
507 if (!m_compile_unit_infos.empty()) {
508 const CompileUnitInfo *first_comp_unit_info = &m_compile_unit_infos.front();
509 const CompileUnitInfo *last_comp_unit_info = &m_compile_unit_infos.back();
510 if (first_comp_unit_info <= comp_unit_info &&
511 comp_unit_info <= last_comp_unit_info)
512 return comp_unit_info - first_comp_unit_info;
513 }
514 return UINT32_MAX;
515}
516
517SymbolFileDWARF *
518SymbolFileDWARFDebugMap::GetSymbolFileByOSOIndex(uint32_t oso_idx) {
Adrian Prantleca07c52018-11-05 20:49:07 +0000519 unsigned size = m_compile_unit_infos.size();
520 if (oso_idx < size)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000521 return GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[oso_idx]);
522 return NULL;
523}
524
525SymbolFileDWARF *
526SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file) {
527 if (sym_file &&
528 sym_file->GetPluginName() == SymbolFileDWARF::GetPluginNameStatic())
529 return (SymbolFileDWARF *)sym_file;
530 return NULL;
531}
532
533SymbolFileDWARF *SymbolFileDWARFDebugMap::GetSymbolFileByCompUnitInfo(
534 CompileUnitInfo *comp_unit_info) {
535 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info);
536 if (oso_module) {
537 SymbolVendor *sym_vendor = oso_module->GetSymbolVendor();
538 if (sym_vendor)
539 return GetSymbolFileAsSymbolFileDWARF(sym_vendor->GetSymbolFile());
540 }
541 return NULL;
542}
543
544uint32_t SymbolFileDWARFDebugMap::CalculateAbilities() {
545 // In order to get the abilities of this plug-in, we look at the list of
546 // N_OSO entries (object files) from the symbol table and make sure that
Adrian Prantl05097242018-04-30 16:49:04 +0000547 // these files exist and also contain valid DWARF. If we get any of that then
548 // we return the abilities of the first N_OSO's DWARF.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000549
550 const uint32_t oso_index_count = GetNumCompileUnits();
551 if (oso_index_count > 0) {
552 InitOSO();
553 if (!m_compile_unit_infos.empty()) {
554 return SymbolFile::CompileUnits | SymbolFile::Functions |
555 SymbolFile::Blocks | SymbolFile::GlobalVariables |
556 SymbolFile::LocalVariables | SymbolFile::VariableTypes |
557 SymbolFile::LineTables;
Greg Clayton81c22f62011-10-19 18:09:39 +0000558 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000559 }
560 return 0;
Greg Clayton81c22f62011-10-19 18:09:39 +0000561}
562
Kate Stoneb9c1b512016-09-06 20:57:50 +0000563uint32_t SymbolFileDWARFDebugMap::GetNumCompileUnits() {
564 InitOSO();
565 return m_compile_unit_infos.size();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000566}
567
Kate Stoneb9c1b512016-09-06 20:57:50 +0000568CompUnitSP SymbolFileDWARFDebugMap::ParseCompileUnitAtIndex(uint32_t cu_idx) {
569 CompUnitSP comp_unit_sp;
570 const uint32_t cu_count = GetNumCompileUnits();
Greg Clayton57abc5d2013-05-10 21:47:16 +0000571
Kate Stoneb9c1b512016-09-06 20:57:50 +0000572 if (cu_idx < cu_count) {
573 Module *oso_module = GetModuleByCompUnitInfo(&m_compile_unit_infos[cu_idx]);
574 if (oso_module) {
575 FileSpec so_file_spec;
576 if (GetFileSpecForSO(cu_idx, so_file_spec)) {
Adrian Prantl05097242018-04-30 16:49:04 +0000577 // User zero as the ID to match the compile unit at offset zero in each
578 // .o file since each .o file can only have one compile unit for now.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000579 lldb::user_id_t cu_id = 0;
580 m_compile_unit_infos[cu_idx].compile_unit_sp.reset(
581 new CompileUnit(m_obj_file->GetModule(), NULL, so_file_spec, cu_id,
582 eLanguageTypeUnknown, eLazyBoolCalculate));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000583
Kate Stoneb9c1b512016-09-06 20:57:50 +0000584 if (m_compile_unit_infos[cu_idx].compile_unit_sp) {
585 // Let our symbol vendor know about this compile unit
586 m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex(
587 cu_idx, m_compile_unit_infos[cu_idx].compile_unit_sp);
Greg Clayton3046e662013-07-10 01:23:25 +0000588 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000589 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000590 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000591 comp_unit_sp = m_compile_unit_infos[cu_idx].compile_unit_sp;
592 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000593
Kate Stoneb9c1b512016-09-06 20:57:50 +0000594 return comp_unit_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000595}
596
597SymbolFileDWARFDebugMap::CompileUnitInfo *
Kate Stoneb9c1b512016-09-06 20:57:50 +0000598SymbolFileDWARFDebugMap::GetCompUnitInfo(const SymbolContext &sc) {
599 const uint32_t cu_count = GetNumCompileUnits();
600 for (uint32_t i = 0; i < cu_count; ++i) {
601 if (sc.comp_unit == m_compile_unit_infos[i].compile_unit_sp.get())
602 return &m_compile_unit_infos[i];
603 }
604 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000605}
606
Kate Stoneb9c1b512016-09-06 20:57:50 +0000607size_t SymbolFileDWARFDebugMap::GetCompUnitInfosForModule(
608 const lldb_private::Module *module,
609 std::vector<CompileUnitInfo *> &cu_infos) {
610 const uint32_t cu_count = GetNumCompileUnits();
611 for (uint32_t i = 0; i < cu_count; ++i) {
612 if (module == GetModuleByCompUnitInfo(&m_compile_unit_infos[i]))
613 cu_infos.push_back(&m_compile_unit_infos[i]);
614 }
615 return cu_infos.size();
Greg Clayton1f746072012-08-29 21:13:06 +0000616}
617
618lldb::LanguageType
Kate Stoneb9c1b512016-09-06 20:57:50 +0000619SymbolFileDWARFDebugMap::ParseCompileUnitLanguage(const SymbolContext &sc) {
620 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
621 if (oso_dwarf)
622 return oso_dwarf->ParseCompileUnitLanguage(sc);
623 return eLanguageTypeUnknown;
Greg Clayton1f746072012-08-29 21:13:06 +0000624}
625
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000626size_t
Kate Stoneb9c1b512016-09-06 20:57:50 +0000627SymbolFileDWARFDebugMap::ParseCompileUnitFunctions(const SymbolContext &sc) {
628 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
629 if (oso_dwarf)
630 return oso_dwarf->ParseCompileUnitFunctions(sc);
631 return 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000632}
633
Kate Stoneb9c1b512016-09-06 20:57:50 +0000634bool SymbolFileDWARFDebugMap::ParseCompileUnitLineTable(
635 const SymbolContext &sc) {
636 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
637 if (oso_dwarf)
638 return oso_dwarf->ParseCompileUnitLineTable(sc);
639 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000640}
641
Kate Stoneb9c1b512016-09-06 20:57:50 +0000642bool SymbolFileDWARFDebugMap::ParseCompileUnitDebugMacros(
643 const SymbolContext &sc) {
644 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
645 if (oso_dwarf)
646 return oso_dwarf->ParseCompileUnitDebugMacros(sc);
647 return false;
Siva Chandrad8335e92015-12-16 00:22:08 +0000648}
649
Kate Stoneb9c1b512016-09-06 20:57:50 +0000650bool SymbolFileDWARFDebugMap::ParseCompileUnitSupportFiles(
651 const SymbolContext &sc, FileSpecList &support_files) {
652 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
653 if (oso_dwarf)
654 return oso_dwarf->ParseCompileUnitSupportFiles(sc, support_files);
655 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000656}
657
Kate Stoneb9c1b512016-09-06 20:57:50 +0000658bool SymbolFileDWARFDebugMap::ParseCompileUnitIsOptimized(
659 const lldb_private::SymbolContext &sc) {
660 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
661 if (oso_dwarf)
662 return oso_dwarf->ParseCompileUnitIsOptimized(sc);
663 return false;
Greg Claytonad2b63c2016-07-05 23:01:20 +0000664}
665
Kate Stoneb9c1b512016-09-06 20:57:50 +0000666bool SymbolFileDWARFDebugMap::ParseImportedModules(
667 const SymbolContext &sc, std::vector<ConstString> &imported_modules) {
668 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
669 if (oso_dwarf)
670 return oso_dwarf->ParseImportedModules(sc, imported_modules);
671 return false;
672}
673
674size_t SymbolFileDWARFDebugMap::ParseFunctionBlocks(const SymbolContext &sc) {
675 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
676 if (oso_dwarf)
677 return oso_dwarf->ParseFunctionBlocks(sc);
678 return 0;
679}
680
681size_t SymbolFileDWARFDebugMap::ParseTypes(const SymbolContext &sc) {
682 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
683 if (oso_dwarf)
684 return oso_dwarf->ParseTypes(sc);
685 return 0;
Sean Callananf0c5aeb2015-04-20 16:31:29 +0000686}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000687
688size_t
Kate Stoneb9c1b512016-09-06 20:57:50 +0000689SymbolFileDWARFDebugMap::ParseVariablesForContext(const SymbolContext &sc) {
690 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc);
691 if (oso_dwarf)
692 return oso_dwarf->ParseVariablesForContext(sc);
693 return 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000694}
695
Kate Stoneb9c1b512016-09-06 20:57:50 +0000696Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) {
697 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid);
698 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
699 if (oso_dwarf)
700 return oso_dwarf->ResolveTypeUID(type_uid);
701 return NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000702}
703
Adrian Prantleca07c52018-11-05 20:49:07 +0000704llvm::Optional<SymbolFile::ArrayInfo>
705SymbolFileDWARFDebugMap::GetDynamicArrayInfoForUID(
706 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) {
707 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid);
708 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
709 if (oso_dwarf)
710 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx);
711 return llvm::None;
712}
713
Kate Stoneb9c1b512016-09-06 20:57:50 +0000714bool SymbolFileDWARFDebugMap::CompleteType(CompilerType &compiler_type) {
715 bool success = false;
716 if (compiler_type) {
717 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
718 if (oso_dwarf->HasForwardDeclForClangType(compiler_type)) {
719 oso_dwarf->CompleteType(compiler_type);
720 success = true;
721 return true;
722 }
723 return false;
724 });
725 }
726 return success;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000727}
728
Zachary Turner991e4452018-10-25 20:45:19 +0000729uint32_t
730SymbolFileDWARFDebugMap::ResolveSymbolContext(const Address &exe_so_addr,
731 SymbolContextItem resolve_scope,
732 SymbolContext &sc) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000733 uint32_t resolved_flags = 0;
734 Symtab *symtab = m_obj_file->GetSymtab();
735 if (symtab) {
736 const addr_t exe_file_addr = exe_so_addr.GetFileAddress();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000737
Kate Stoneb9c1b512016-09-06 20:57:50 +0000738 const DebugMap::Entry *debug_map_entry =
739 m_debug_map.FindEntryThatContains(exe_file_addr);
740 if (debug_map_entry) {
741
742 sc.symbol =
743 symtab->SymbolAtIndex(debug_map_entry->data.GetExeSymbolIndex());
744
745 if (sc.symbol != NULL) {
746 resolved_flags |= eSymbolContextSymbol;
747
748 uint32_t oso_idx = 0;
749 CompileUnitInfo *comp_unit_info =
750 GetCompileUnitInfoForSymbolWithID(sc.symbol->GetID(), &oso_idx);
751 if (comp_unit_info) {
752 comp_unit_info->GetFileRangeMap(this);
753 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info);
754 if (oso_module) {
755 lldb::addr_t oso_file_addr =
756 exe_file_addr - debug_map_entry->GetRangeBase() +
757 debug_map_entry->data.GetOSOFileAddress();
758 Address oso_so_addr;
759 if (oso_module->ResolveFileAddress(oso_file_addr, oso_so_addr)) {
760 resolved_flags |=
761 oso_module->GetSymbolVendor()->ResolveSymbolContext(
762 oso_so_addr, resolve_scope, sc);
Greg Clayton6dc8d582015-08-18 22:32:36 +0000763 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000764 }
765 }
766 }
Greg Clayton6dc8d582015-08-18 22:32:36 +0000767 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000768 }
769 return resolved_flags;
Greg Clayton1be10fc2010-09-29 01:12:09 +0000770}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000771
Kate Stoneb9c1b512016-09-06 20:57:50 +0000772uint32_t SymbolFileDWARFDebugMap::ResolveSymbolContext(
773 const FileSpec &file_spec, uint32_t line, bool check_inlines,
Zachary Turner991e4452018-10-25 20:45:19 +0000774 SymbolContextItem resolve_scope, SymbolContextList &sc_list) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000775 const uint32_t initial = sc_list.GetSize();
776 const uint32_t cu_count = GetNumCompileUnits();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000777
Kate Stoneb9c1b512016-09-06 20:57:50 +0000778 for (uint32_t i = 0; i < cu_count; ++i) {
Adrian Prantl05097242018-04-30 16:49:04 +0000779 // If we are checking for inlines, then we need to look through all compile
780 // units no matter if "file_spec" matches.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000781 bool resolve = check_inlines;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000782
Kate Stoneb9c1b512016-09-06 20:57:50 +0000783 if (!resolve) {
784 FileSpec so_file_spec;
785 if (GetFileSpecForSO(i, so_file_spec)) {
786 // Match the full path if the incoming file_spec has a directory (not
787 // just a basename)
788 const bool full_match = (bool)file_spec.GetDirectory();
789 resolve = FileSpec::Equal(file_spec, so_file_spec, full_match);
790 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000791 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000792 if (resolve) {
793 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(i);
794 if (oso_dwarf)
795 oso_dwarf->ResolveSymbolContext(file_spec, line, check_inlines,
796 resolve_scope, sc_list);
797 }
798 }
799 return sc_list.GetSize() - initial;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000800}
801
Kate Stoneb9c1b512016-09-06 20:57:50 +0000802uint32_t SymbolFileDWARFDebugMap::PrivateFindGlobalVariables(
803 const ConstString &name, const CompilerDeclContext *parent_decl_ctx,
804 const std::vector<uint32_t>
805 &indexes, // Indexes into the symbol table that match "name"
Jonas Devlieghere010b56b2018-11-27 15:25:58 +0000806 uint32_t max_matches, VariableList &variables) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000807 const uint32_t original_size = variables.GetSize();
808 const size_t match_count = indexes.size();
809 for (size_t i = 0; i < match_count; ++i) {
810 uint32_t oso_idx;
811 CompileUnitInfo *comp_unit_info =
812 GetCompileUnitInfoForSymbolWithIndex(indexes[i], &oso_idx);
813 if (comp_unit_info) {
814 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
815 if (oso_dwarf) {
Pavel Labath34cda142018-05-31 09:46:26 +0000816 if (oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches,
817 variables))
Kate Stoneb9c1b512016-09-06 20:57:50 +0000818 if (variables.GetSize() > max_matches)
819 break;
820 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000821 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000822 }
823 return variables.GetSize() - original_size;
824}
825
826uint32_t SymbolFileDWARFDebugMap::FindGlobalVariables(
827 const ConstString &name, const CompilerDeclContext *parent_decl_ctx,
Pavel Labath34cda142018-05-31 09:46:26 +0000828 uint32_t max_matches, VariableList &variables) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000829
Pavel Labath34cda142018-05-31 09:46:26 +0000830 // Remember how many variables are in the list before we search.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000831 const uint32_t original_size = variables.GetSize();
832
833 uint32_t total_matches = 0;
834
835 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
836 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables(
Pavel Labath34cda142018-05-31 09:46:26 +0000837 name, parent_decl_ctx, max_matches, variables);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000838 if (oso_matches > 0) {
839 total_matches += oso_matches;
840
841 // Are we getting all matches?
842 if (max_matches == UINT32_MAX)
843 return false; // Yep, continue getting everything
844
845 // If we have found enough matches, lets get out
846 if (max_matches >= total_matches)
847 return true;
848
Adrian Prantl05097242018-04-30 16:49:04 +0000849 // Update the max matches for any subsequent calls to find globals in any
850 // other object files with DWARF
Kate Stoneb9c1b512016-09-06 20:57:50 +0000851 max_matches -= oso_matches;
852 }
853
854 return false;
855 });
856
857 // Return the number of variable that were appended to the list
858 return variables.GetSize() - original_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000859}
860
861uint32_t
Kate Stoneb9c1b512016-09-06 20:57:50 +0000862SymbolFileDWARFDebugMap::FindGlobalVariables(const RegularExpression &regex,
Pavel Labath34cda142018-05-31 09:46:26 +0000863 uint32_t max_matches,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000864 VariableList &variables) {
Pavel Labath34cda142018-05-31 09:46:26 +0000865 // Remember how many variables are in the list before we search.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000866 const uint32_t original_size = variables.GetSize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000867
Kate Stoneb9c1b512016-09-06 20:57:50 +0000868 uint32_t total_matches = 0;
869 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
870 const uint32_t oso_matches =
Pavel Labath34cda142018-05-31 09:46:26 +0000871 oso_dwarf->FindGlobalVariables(regex, max_matches, variables);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000872 if (oso_matches > 0) {
873 total_matches += oso_matches;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000874
Kate Stoneb9c1b512016-09-06 20:57:50 +0000875 // Are we getting all matches?
876 if (max_matches == UINT32_MAX)
877 return false; // Yep, continue getting everything
Sean Callanan0dc848c2015-04-01 20:43:23 +0000878
Kate Stoneb9c1b512016-09-06 20:57:50 +0000879 // If we have found enough matches, lets get out
880 if (max_matches >= total_matches)
881 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000882
Adrian Prantl05097242018-04-30 16:49:04 +0000883 // Update the max matches for any subsequent calls to find globals in any
884 // other object files with DWARF
Kate Stoneb9c1b512016-09-06 20:57:50 +0000885 max_matches -= oso_matches;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000886 }
887
Kate Stoneb9c1b512016-09-06 20:57:50 +0000888 return false;
889 });
890
891 // Return the number of variable that were appended to the list
892 return variables.GetSize() - original_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000893}
894
Kate Stoneb9c1b512016-09-06 20:57:50 +0000895int SymbolFileDWARFDebugMap::SymbolContainsSymbolWithIndex(
896 uint32_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info) {
897 const uint32_t symbol_idx = *symbol_idx_ptr;
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000898
Kate Stoneb9c1b512016-09-06 20:57:50 +0000899 if (symbol_idx < comp_unit_info->first_symbol_index)
900 return -1;
901
902 if (symbol_idx <= comp_unit_info->last_symbol_index)
903 return 0;
904
905 return 1;
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000906}
907
Kate Stoneb9c1b512016-09-06 20:57:50 +0000908int SymbolFileDWARFDebugMap::SymbolContainsSymbolWithID(
909 user_id_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info) {
910 const user_id_t symbol_id = *symbol_idx_ptr;
911
912 if (symbol_id < comp_unit_info->first_symbol_id)
913 return -1;
914
915 if (symbol_id <= comp_unit_info->last_symbol_id)
916 return 0;
917
918 return 1;
Greg Clayton3ef3fc62010-08-17 23:16:15 +0000919}
920
Kate Stoneb9c1b512016-09-06 20:57:50 +0000921SymbolFileDWARFDebugMap::CompileUnitInfo *
922SymbolFileDWARFDebugMap::GetCompileUnitInfoForSymbolWithIndex(
923 uint32_t symbol_idx, uint32_t *oso_idx_ptr) {
924 const uint32_t oso_index_count = m_compile_unit_infos.size();
925 CompileUnitInfo *comp_unit_info = NULL;
926 if (oso_index_count) {
927 comp_unit_info = (CompileUnitInfo *)bsearch(
928 &symbol_idx, &m_compile_unit_infos[0], m_compile_unit_infos.size(),
929 sizeof(CompileUnitInfo),
930 (ComparisonFunction)SymbolContainsSymbolWithIndex);
931 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000932
Kate Stoneb9c1b512016-09-06 20:57:50 +0000933 if (oso_idx_ptr) {
934 if (comp_unit_info != NULL)
935 *oso_idx_ptr = comp_unit_info - &m_compile_unit_infos[0];
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000936 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000937 *oso_idx_ptr = UINT32_MAX;
938 }
939 return comp_unit_info;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000940}
941
Kate Stoneb9c1b512016-09-06 20:57:50 +0000942SymbolFileDWARFDebugMap::CompileUnitInfo *
943SymbolFileDWARFDebugMap::GetCompileUnitInfoForSymbolWithID(
944 user_id_t symbol_id, uint32_t *oso_idx_ptr) {
945 const uint32_t oso_index_count = m_compile_unit_infos.size();
946 CompileUnitInfo *comp_unit_info = NULL;
947 if (oso_index_count) {
948 comp_unit_info = (CompileUnitInfo *)::bsearch(
949 &symbol_id, &m_compile_unit_infos[0], m_compile_unit_infos.size(),
950 sizeof(CompileUnitInfo),
951 (ComparisonFunction)SymbolContainsSymbolWithID);
952 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000953
Kate Stoneb9c1b512016-09-06 20:57:50 +0000954 if (oso_idx_ptr) {
955 if (comp_unit_info != NULL)
956 *oso_idx_ptr = comp_unit_info - &m_compile_unit_infos[0];
Greg Clayton57a6b992010-08-17 00:35:34 +0000957 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000958 *oso_idx_ptr = UINT32_MAX;
959 }
960 return comp_unit_info;
961}
Greg Clayton57a6b992010-08-17 00:35:34 +0000962
Kate Stoneb9c1b512016-09-06 20:57:50 +0000963static void RemoveFunctionsWithModuleNotEqualTo(const ModuleSP &module_sp,
964 SymbolContextList &sc_list,
965 uint32_t start_idx) {
Adrian Prantl05097242018-04-30 16:49:04 +0000966 // We found functions in .o files. Not all functions in the .o files will
967 // have made it into the final output file. The ones that did make it into
968 // the final output file will have a section whose module matches the module
969 // from the ObjectFile for this SymbolFile. When the modules don't match,
970 // then we have something that was in a .o file, but doesn't map to anything
971 // in the final executable.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000972 uint32_t i = start_idx;
973 while (i < sc_list.GetSize()) {
974 SymbolContext sc;
975 sc_list.GetContextAtIndex(i, sc);
976 if (sc.function) {
977 const SectionSP section_sp(
978 sc.function->GetAddressRange().GetBaseAddress().GetSection());
979 if (section_sp->GetModule() != module_sp) {
980 sc_list.RemoveContextAtIndex(i);
981 continue;
982 }
983 }
984 ++i;
985 }
986}
987
988uint32_t SymbolFileDWARFDebugMap::FindFunctions(
989 const ConstString &name, const CompilerDeclContext *parent_decl_ctx,
Zachary Turner117b1fa2018-10-25 20:45:40 +0000990 FunctionNameType name_type_mask, bool include_inlines, bool append,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000991 SymbolContextList &sc_list) {
Pavel Labathf9d16472017-05-15 13:02:37 +0000992 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
993 Timer scoped_timer(func_cat,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000994 "SymbolFileDWARFDebugMap::FindFunctions (name = %s)",
995 name.GetCString());
996
997 uint32_t initial_size = 0;
998 if (append)
999 initial_size = sc_list.GetSize();
1000 else
1001 sc_list.Clear();
1002
1003 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1004 uint32_t sc_idx = sc_list.GetSize();
1005 if (oso_dwarf->FindFunctions(name, parent_decl_ctx, name_type_mask,
1006 include_inlines, true, sc_list)) {
1007 RemoveFunctionsWithModuleNotEqualTo(m_obj_file->GetModule(), sc_list,
1008 sc_idx);
1009 }
1010 return false;
1011 });
1012
1013 return sc_list.GetSize() - initial_size;
1014}
1015
1016uint32_t SymbolFileDWARFDebugMap::FindFunctions(const RegularExpression &regex,
1017 bool include_inlines,
1018 bool append,
1019 SymbolContextList &sc_list) {
Pavel Labathf9d16472017-05-15 13:02:37 +00001020 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
1021 Timer scoped_timer(func_cat,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001022 "SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')",
Zachary Turner95eae422016-09-21 16:01:28 +00001023 regex.GetText().str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001024
1025 uint32_t initial_size = 0;
1026 if (append)
1027 initial_size = sc_list.GetSize();
1028 else
1029 sc_list.Clear();
1030
1031 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1032 uint32_t sc_idx = sc_list.GetSize();
1033
1034 if (oso_dwarf->FindFunctions(regex, include_inlines, true, sc_list)) {
1035 RemoveFunctionsWithModuleNotEqualTo(m_obj_file->GetModule(), sc_list,
1036 sc_idx);
1037 }
1038 return false;
1039 });
1040
1041 return sc_list.GetSize() - initial_size;
1042}
1043
1044size_t SymbolFileDWARFDebugMap::GetTypes(SymbolContextScope *sc_scope,
Zachary Turner117b1fa2018-10-25 20:45:40 +00001045 lldb::TypeClass type_mask,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001046 TypeList &type_list) {
Pavel Labathf9d16472017-05-15 13:02:37 +00001047 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
1048 Timer scoped_timer(func_cat,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001049 "SymbolFileDWARFDebugMap::GetTypes (type_mask = 0x%8.8x)",
1050 type_mask);
1051
1052 uint32_t initial_size = type_list.GetSize();
1053 SymbolFileDWARF *oso_dwarf = NULL;
1054 if (sc_scope) {
1055 SymbolContext sc;
1056 sc_scope->CalculateSymbolContext(&sc);
1057
1058 CompileUnitInfo *cu_info = GetCompUnitInfo(sc);
1059 if (cu_info) {
1060 oso_dwarf = GetSymbolFileByCompUnitInfo(cu_info);
1061 if (oso_dwarf)
1062 oso_dwarf->GetTypes(sc_scope, type_mask, type_list);
1063 }
1064 } else {
Sean Callanan0dc848c2015-04-01 20:43:23 +00001065 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001066 oso_dwarf->GetTypes(sc_scope, type_mask, type_list);
1067 return false;
Sean Callanan0dc848c2015-04-01 20:43:23 +00001068 });
Kate Stoneb9c1b512016-09-06 20:57:50 +00001069 }
1070 return type_list.GetSize() - initial_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001071}
1072
Vedant Kumar4b36f792018-10-05 23:23:15 +00001073std::vector<lldb_private::CallEdge>
1074SymbolFileDWARFDebugMap::ParseCallEdgesInFunction(UserID func_id) {
1075 uint32_t oso_idx = GetOSOIndexFromUserID(func_id.GetID());
1076 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
1077 if (oso_dwarf)
1078 return oso_dwarf->ParseCallEdgesInFunction(func_id);
1079 return {};
1080}
1081
Kate Stoneb9c1b512016-09-06 20:57:50 +00001082TypeSP SymbolFileDWARFDebugMap::FindDefinitionTypeForDWARFDeclContext(
1083 const DWARFDeclContext &die_decl_ctx) {
1084 TypeSP type_sp;
1085 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1086 type_sp = oso_dwarf->FindDefinitionTypeForDWARFDeclContext(die_decl_ctx);
1087 return ((bool)type_sp);
1088 });
1089 return type_sp;
Greg Claytonf02500c2013-06-18 22:51:05 +00001090}
1091
Kate Stoneb9c1b512016-09-06 20:57:50 +00001092bool SymbolFileDWARFDebugMap::Supports_DW_AT_APPLE_objc_complete_type(
1093 SymbolFileDWARF *skip_dwarf_oso) {
1094 if (m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolCalculate) {
1095 m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolNo;
Sean Callanan0dc848c2015-04-01 20:43:23 +00001096 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001097 if (skip_dwarf_oso != oso_dwarf &&
1098 oso_dwarf->Supports_DW_AT_APPLE_objc_complete_type(NULL)) {
1099 m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolYes;
1100 return true;
1101 }
1102 return false;
Sean Callanan0dc848c2015-04-01 20:43:23 +00001103 });
Kate Stoneb9c1b512016-09-06 20:57:50 +00001104 }
1105 return m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolYes;
Greg Clayton2ccf8cf2010-11-07 21:02:03 +00001106}
Greg Claytonb0b9fe62010-08-03 00:35:52 +00001107
Kate Stoneb9c1b512016-09-06 20:57:50 +00001108TypeSP SymbolFileDWARFDebugMap::FindCompleteObjCDefinitionTypeForDIE(
1109 const DWARFDIE &die, const ConstString &type_name,
1110 bool must_be_implementation) {
Adrian Prantl4e8be2c2018-06-13 16:21:24 +00001111 // If we have a debug map, we will have an Objective-C symbol whose name is
Kate Stoneb9c1b512016-09-06 20:57:50 +00001112 // the type name and whose type is eSymbolTypeObjCClass. If we can find that
1113 // symbol and find its containing parent, we can locate the .o file that will
1114 // contain the implementation definition since it will be scoped inside the
Adrian Prantl05097242018-04-30 16:49:04 +00001115 // N_SO and we can then locate the SymbolFileDWARF that corresponds to that
1116 // N_SO.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001117 SymbolFileDWARF *oso_dwarf = NULL;
1118 TypeSP type_sp;
1119 ObjectFile *module_objfile = m_obj_file->GetModule()->GetObjectFile();
1120 if (module_objfile) {
1121 Symtab *symtab = module_objfile->GetSymtab();
1122 if (symtab) {
1123 Symbol *objc_class_symbol = symtab->FindFirstSymbolWithNameAndType(
1124 type_name, eSymbolTypeObjCClass, Symtab::eDebugAny,
1125 Symtab::eVisibilityAny);
1126 if (objc_class_symbol) {
1127 // Get the N_SO symbol that contains the objective C class symbol as
Adrian Prantl05097242018-04-30 16:49:04 +00001128 // this should be the .o file that contains the real definition...
Kate Stoneb9c1b512016-09-06 20:57:50 +00001129 const Symbol *source_file_symbol = symtab->GetParent(objc_class_symbol);
Greg Claytonc7f03b62012-01-12 04:33:28 +00001130
Kate Stoneb9c1b512016-09-06 20:57:50 +00001131 if (source_file_symbol &&
1132 source_file_symbol->GetType() == eSymbolTypeSourceFile) {
1133 const uint32_t source_file_symbol_idx =
1134 symtab->GetIndexForSymbol(source_file_symbol);
1135 if (source_file_symbol_idx != UINT32_MAX) {
1136 CompileUnitInfo *compile_unit_info =
1137 GetCompileUnitInfoForSymbolWithIndex(source_file_symbol_idx,
1138 NULL);
1139 if (compile_unit_info) {
1140 oso_dwarf = GetSymbolFileByCompUnitInfo(compile_unit_info);
1141 if (oso_dwarf) {
1142 TypeSP type_sp(oso_dwarf->FindCompleteObjCDefinitionTypeForDIE(
1143 die, type_name, must_be_implementation));
1144 if (type_sp) {
1145 return type_sp;
Greg Claytonbc63aac2015-02-25 22:41:34 +00001146 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001147 }
Greg Claytonbc63aac2015-02-25 22:41:34 +00001148 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001149 }
Greg Claytonbc63aac2015-02-25 22:41:34 +00001150 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001151 }
Greg Clayton901c5ca2011-12-03 04:40:03 +00001152 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001153 }
Greg Claytonbc63aac2015-02-25 22:41:34 +00001154
Kate Stoneb9c1b512016-09-06 20:57:50 +00001155 // Only search all .o files for the definition if we don't need the
Adrian Prantl05097242018-04-30 16:49:04 +00001156 // implementation because otherwise, with a valid debug map we should have
1157 // the ObjC class symbol and the code above should have found it.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001158 if (must_be_implementation == false) {
1159 TypeSP type_sp;
1160
1161 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1162 type_sp = oso_dwarf->FindCompleteObjCDefinitionTypeForDIE(
1163 die, type_name, must_be_implementation);
1164 return (bool)type_sp;
1165 });
1166
1167 return type_sp;
1168 }
1169 return TypeSP();
Greg Clayton901c5ca2011-12-03 04:40:03 +00001170}
1171
Kate Stoneb9c1b512016-09-06 20:57:50 +00001172uint32_t SymbolFileDWARFDebugMap::FindTypes(
1173 const SymbolContext &sc, const ConstString &name,
1174 const CompilerDeclContext *parent_decl_ctx, bool append,
Greg Claytonae088e52016-02-10 21:28:13 +00001175 uint32_t max_matches,
1176 llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001177 TypeMap &types) {
1178 if (!append)
1179 types.Clear();
Greg Clayton6dbd3982010-09-15 05:51:24 +00001180
Kate Stoneb9c1b512016-09-06 20:57:50 +00001181 const uint32_t initial_types_size = types.GetSize();
1182 SymbolFileDWARF *oso_dwarf;
Greg Clayton6dbd3982010-09-15 05:51:24 +00001183
Kate Stoneb9c1b512016-09-06 20:57:50 +00001184 if (sc.comp_unit) {
1185 oso_dwarf = GetSymbolFile(sc);
1186 if (oso_dwarf)
1187 return oso_dwarf->FindTypes(sc, name, parent_decl_ctx, append,
1188 max_matches, searched_symbol_files, types);
1189 } else {
1190 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1191 oso_dwarf->FindTypes(sc, name, parent_decl_ctx, append, max_matches,
1192 searched_symbol_files, types);
1193 if (types.GetSize() >= max_matches)
1194 return true;
1195 else
1196 return false;
1197 });
1198 }
Greg Clayton6dbd3982010-09-15 05:51:24 +00001199
Kate Stoneb9c1b512016-09-06 20:57:50 +00001200 return types.GetSize() - initial_types_size;
Greg Claytonb0b9fe62010-08-03 00:35:52 +00001201}
1202
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001203//
Kate Stoneb9c1b512016-09-06 20:57:50 +00001204// uint32_t
1205// SymbolFileDWARFDebugMap::FindTypes (const SymbolContext& sc, const
1206// RegularExpression& regex, bool append, uint32_t max_matches, Type::Encoding
1207// encoding, lldb::user_id_t udt_uid, TypeList& types)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001208//{
1209// SymbolFileDWARF *oso_dwarf = GetSymbolFile (sc);
1210// if (oso_dwarf)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001211// return oso_dwarf->FindTypes (sc, regex, append, max_matches, encoding,
1212// udt_uid, types);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001213// return 0;
1214//}
1215
Kate Stoneb9c1b512016-09-06 20:57:50 +00001216CompilerDeclContext SymbolFileDWARFDebugMap::FindNamespace(
1217 const lldb_private::SymbolContext &sc,
1218 const lldb_private::ConstString &name,
1219 const CompilerDeclContext *parent_decl_ctx) {
1220 CompilerDeclContext matching_namespace;
1221 SymbolFileDWARF *oso_dwarf;
Greg Clayton96d7d742010-11-10 23:42:09 +00001222
Kate Stoneb9c1b512016-09-06 20:57:50 +00001223 if (sc.comp_unit) {
1224 oso_dwarf = GetSymbolFile(sc);
1225 if (oso_dwarf)
1226 matching_namespace = oso_dwarf->FindNamespace(sc, name, parent_decl_ctx);
1227 } else {
1228 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1229 matching_namespace = oso_dwarf->FindNamespace(sc, name, parent_decl_ctx);
Greg Clayton96d7d742010-11-10 23:42:09 +00001230
Kate Stoneb9c1b512016-09-06 20:57:50 +00001231 return (bool)matching_namespace;
1232 });
1233 }
Greg Clayton96d7d742010-11-10 23:42:09 +00001234
Kate Stoneb9c1b512016-09-06 20:57:50 +00001235 return matching_namespace;
Greg Clayton96d7d742010-11-10 23:42:09 +00001236}
1237
Zachary Turner49110232018-11-05 17:40:28 +00001238void SymbolFileDWARFDebugMap::DumpClangAST(Stream &s) {
1239 ForEachSymbolFile([&s](SymbolFileDWARF *oso_dwarf) -> bool {
1240 oso_dwarf->DumpClangAST(s);
1241 return true;
1242 });
1243}
1244
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001245//------------------------------------------------------------------
1246// PluginInterface protocol
1247//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +00001248lldb_private::ConstString SymbolFileDWARFDebugMap::GetPluginName() {
1249 return GetPluginNameStatic();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001250}
1251
Kate Stoneb9c1b512016-09-06 20:57:50 +00001252uint32_t SymbolFileDWARFDebugMap::GetPluginVersion() { return 1; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001253
Greg Clayton1f746072012-08-29 21:13:06 +00001254lldb::CompUnitSP
Kate Stoneb9c1b512016-09-06 20:57:50 +00001255SymbolFileDWARFDebugMap::GetCompileUnit(SymbolFileDWARF *oso_dwarf) {
1256 if (oso_dwarf) {
1257 const uint32_t cu_count = GetNumCompileUnits();
1258 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) {
1259 SymbolFileDWARF *oso_symfile =
1260 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]);
1261 if (oso_symfile == oso_dwarf) {
1262 if (!m_compile_unit_infos[cu_idx].compile_unit_sp)
1263 m_compile_unit_infos[cu_idx].compile_unit_sp =
1264 ParseCompileUnitAtIndex(cu_idx);
Greg Clayton1f746072012-08-29 21:13:06 +00001265
Kate Stoneb9c1b512016-09-06 20:57:50 +00001266 return m_compile_unit_infos[cu_idx].compile_unit_sp;
1267 }
Greg Clayton1f746072012-08-29 21:13:06 +00001268 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001269 }
David Blaikiea322f362017-01-06 00:38:06 +00001270 llvm_unreachable("this shouldn't happen");
Greg Clayton1f746072012-08-29 21:13:06 +00001271}
1272
Greg Clayton9422dd62013-03-04 21:46:16 +00001273SymbolFileDWARFDebugMap::CompileUnitInfo *
Kate Stoneb9c1b512016-09-06 20:57:50 +00001274SymbolFileDWARFDebugMap::GetCompileUnitInfo(SymbolFileDWARF *oso_dwarf) {
1275 if (oso_dwarf) {
1276 const uint32_t cu_count = GetNumCompileUnits();
1277 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) {
1278 SymbolFileDWARF *oso_symfile =
1279 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]);
1280 if (oso_symfile == oso_dwarf) {
1281 return &m_compile_unit_infos[cu_idx];
1282 }
Greg Clayton9422dd62013-03-04 21:46:16 +00001283 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001284 }
1285 return NULL;
Greg Clayton9422dd62013-03-04 21:46:16 +00001286}
1287
Kate Stoneb9c1b512016-09-06 20:57:50 +00001288void SymbolFileDWARFDebugMap::SetCompileUnit(SymbolFileDWARF *oso_dwarf,
1289 const CompUnitSP &cu_sp) {
1290 if (oso_dwarf) {
1291 const uint32_t cu_count = GetNumCompileUnits();
1292 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) {
1293 SymbolFileDWARF *oso_symfile =
1294 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]);
1295 if (oso_symfile == oso_dwarf) {
1296 if (m_compile_unit_infos[cu_idx].compile_unit_sp) {
1297 assert(m_compile_unit_infos[cu_idx].compile_unit_sp.get() ==
1298 cu_sp.get());
1299 } else {
1300 m_compile_unit_infos[cu_idx].compile_unit_sp = cu_sp;
1301 m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex(
1302 cu_idx, cu_sp);
Greg Clayton450e3f32010-10-12 02:24:53 +00001303 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001304 }
Greg Clayton450e3f32010-10-12 02:24:53 +00001305 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001306 }
Greg Clayton450e3f32010-10-12 02:24:53 +00001307}
1308
Greg Clayton99558cc42015-08-24 23:46:31 +00001309CompilerDeclContext
Kate Stoneb9c1b512016-09-06 20:57:50 +00001310SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) {
1311 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid);
1312 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
1313 if (oso_dwarf)
1314 return oso_dwarf->GetDeclContextForUID(type_uid);
1315 return CompilerDeclContext();
Greg Clayton81c22f62011-10-19 18:09:39 +00001316}
1317
Greg Clayton99558cc42015-08-24 23:46:31 +00001318CompilerDeclContext
Kate Stoneb9c1b512016-09-06 20:57:50 +00001319SymbolFileDWARFDebugMap::GetDeclContextContainingUID(lldb::user_id_t type_uid) {
1320 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid);
1321 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx);
1322 if (oso_dwarf)
1323 return oso_dwarf->GetDeclContextContainingUID(type_uid);
1324 return CompilerDeclContext();
Greg Clayton81c22f62011-10-19 18:09:39 +00001325}
1326
Kate Stoneb9c1b512016-09-06 20:57:50 +00001327void SymbolFileDWARFDebugMap::ParseDeclsForContext(
1328 lldb_private::CompilerDeclContext decl_ctx) {
1329 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool {
1330 oso_dwarf->ParseDeclsForContext(decl_ctx);
1331 return true; // Keep iterating
1332 });
Greg Clayton2bd8e7b2015-10-07 22:07:33 +00001333}
1334
Kate Stoneb9c1b512016-09-06 20:57:50 +00001335bool SymbolFileDWARFDebugMap::AddOSOFileRange(CompileUnitInfo *cu_info,
1336 lldb::addr_t exe_file_addr,
1337 lldb::addr_t exe_byte_size,
1338 lldb::addr_t oso_file_addr,
1339 lldb::addr_t oso_byte_size) {
1340 const uint32_t debug_map_idx =
1341 m_debug_map.FindEntryIndexThatContains(exe_file_addr);
1342 if (debug_map_idx != UINT32_MAX) {
1343 DebugMap::Entry *debug_map_entry =
1344 m_debug_map.FindEntryThatContains(exe_file_addr);
1345 debug_map_entry->data.SetOSOFileAddress(oso_file_addr);
1346 addr_t range_size = std::min<addr_t>(exe_byte_size, oso_byte_size);
1347 if (range_size == 0) {
1348 range_size = std::max<addr_t>(exe_byte_size, oso_byte_size);
1349 if (range_size == 0)
1350 range_size = 1;
Greg Clayton9422dd62013-03-04 21:46:16 +00001351 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001352 cu_info->file_range_map.Append(
1353 FileRangeMap::Entry(oso_file_addr, range_size, exe_file_addr));
1354 return true;
1355 }
1356 return false;
Greg Clayton9422dd62013-03-04 21:46:16 +00001357}
1358
Kate Stoneb9c1b512016-09-06 20:57:50 +00001359void SymbolFileDWARFDebugMap::FinalizeOSOFileRanges(CompileUnitInfo *cu_info) {
1360 cu_info->file_range_map.Sort();
Greg Clayton9422dd62013-03-04 21:46:16 +00001361#if defined(DEBUG_OSO_DMAP)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001362 const FileRangeMap &oso_file_range_map = cu_info->GetFileRangeMap(this);
1363 const size_t n = oso_file_range_map.GetSize();
1364 printf("SymbolFileDWARFDebugMap::FinalizeOSOFileRanges (cu_info = %p) %s\n",
1365 cu_info, cu_info->oso_sp->module_sp->GetFileSpec().GetPath().c_str());
1366 for (size_t i = 0; i < n; ++i) {
1367 const FileRangeMap::Entry &entry = oso_file_range_map.GetEntryRef(i);
1368 printf("oso [0x%16.16" PRIx64 " - 0x%16.16" PRIx64
1369 ") ==> exe [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")\n",
1370 entry.GetRangeBase(), entry.GetRangeEnd(), entry.data,
1371 entry.data + entry.GetByteSize());
1372 }
Greg Clayton9422dd62013-03-04 21:46:16 +00001373#endif
1374}
1375
1376lldb::addr_t
Kate Stoneb9c1b512016-09-06 20:57:50 +00001377SymbolFileDWARFDebugMap::LinkOSOFileAddress(SymbolFileDWARF *oso_symfile,
1378 lldb::addr_t oso_file_addr) {
1379 CompileUnitInfo *cu_info = GetCompileUnitInfo(oso_symfile);
1380 if (cu_info) {
1381 const FileRangeMap::Entry *oso_range_entry =
1382 cu_info->GetFileRangeMap(this).FindEntryThatContains(oso_file_addr);
1383 if (oso_range_entry) {
1384 const DebugMap::Entry *debug_map_entry =
1385 m_debug_map.FindEntryThatContains(oso_range_entry->data);
1386 if (debug_map_entry) {
1387 const lldb::addr_t offset =
1388 oso_file_addr - oso_range_entry->GetRangeBase();
1389 const lldb::addr_t exe_file_addr =
1390 debug_map_entry->GetRangeBase() + offset;
1391 return exe_file_addr;
1392 }
Greg Clayton9422dd62013-03-04 21:46:16 +00001393 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001394 }
1395 return LLDB_INVALID_ADDRESS;
Greg Clayton9422dd62013-03-04 21:46:16 +00001396}
1397
Kate Stoneb9c1b512016-09-06 20:57:50 +00001398bool SymbolFileDWARFDebugMap::LinkOSOAddress(Address &addr) {
1399 // Make sure this address hasn't been fixed already
1400 Module *exe_module = GetObjectFile()->GetModule().get();
1401 Module *addr_module = addr.GetModule().get();
1402 if (addr_module == exe_module)
1403 return true; // Address is already in terms of the main executable module
Greg Clayton9422dd62013-03-04 21:46:16 +00001404
Kate Stoneb9c1b512016-09-06 20:57:50 +00001405 CompileUnitInfo *cu_info = GetCompileUnitInfo(GetSymbolFileAsSymbolFileDWARF(
1406 addr_module->GetSymbolVendor()->GetSymbolFile()));
1407 if (cu_info) {
1408 const lldb::addr_t oso_file_addr = addr.GetFileAddress();
1409 const FileRangeMap::Entry *oso_range_entry =
1410 cu_info->GetFileRangeMap(this).FindEntryThatContains(oso_file_addr);
1411 if (oso_range_entry) {
1412 const DebugMap::Entry *debug_map_entry =
1413 m_debug_map.FindEntryThatContains(oso_range_entry->data);
1414 if (debug_map_entry) {
1415 const lldb::addr_t offset =
1416 oso_file_addr - oso_range_entry->GetRangeBase();
1417 const lldb::addr_t exe_file_addr =
1418 debug_map_entry->GetRangeBase() + offset;
1419 return exe_module->ResolveFileAddress(exe_file_addr, addr);
1420 }
Greg Clayton9422dd62013-03-04 21:46:16 +00001421 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001422 }
1423 return true;
Greg Clayton9422dd62013-03-04 21:46:16 +00001424}
1425
Kate Stoneb9c1b512016-09-06 20:57:50 +00001426LineTable *SymbolFileDWARFDebugMap::LinkOSOLineTable(SymbolFileDWARF *oso_dwarf,
1427 LineTable *line_table) {
1428 CompileUnitInfo *cu_info = GetCompileUnitInfo(oso_dwarf);
1429 if (cu_info)
1430 return line_table->LinkLineTable(cu_info->GetFileRangeMap(this));
1431 return NULL;
Greg Clayton9422dd62013-03-04 21:46:16 +00001432}
1433
Enrico Granatac76e60b2013-06-27 01:43:09 +00001434size_t
Kate Stoneb9c1b512016-09-06 20:57:50 +00001435SymbolFileDWARFDebugMap::AddOSOARanges(SymbolFileDWARF *dwarf2Data,
1436 DWARFDebugAranges *debug_aranges) {
1437 size_t num_line_entries_added = 0;
1438 if (debug_aranges && dwarf2Data) {
1439 CompileUnitInfo *compile_unit_info = GetCompileUnitInfo(dwarf2Data);
1440 if (compile_unit_info) {
1441 const FileRangeMap &file_range_map =
1442 compile_unit_info->GetFileRangeMap(this);
1443 for (size_t idx = 0; idx < file_range_map.GetSize(); idx++) {
1444 const FileRangeMap::Entry *entry = file_range_map.GetEntryAtIndex(idx);
1445 if (entry) {
1446 debug_aranges->AppendRange(dwarf2Data->GetID(), entry->GetRangeBase(),
1447 entry->GetRangeEnd());
1448 num_line_entries_added++;
Enrico Granatac76e60b2013-06-27 01:43:09 +00001449 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001450 }
Enrico Granatac76e60b2013-06-27 01:43:09 +00001451 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001452 }
1453 return num_line_entries_added;
Enrico Granatac76e60b2013-06-27 01:43:09 +00001454}