xref: /freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp (revision 2eb4d8dc723da3cf7d735a3226ae49da4c8c5dbc)
1 //===-- SymbolFileDWARF.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 
9 #include "SymbolFileDWARF.h"
10 
11 #include "llvm/ADT/Optional.h"
12 #include "llvm/Support/Casting.h"
13 #include "llvm/Support/Threading.h"
14 
15 #include "lldb/Core/Module.h"
16 #include "lldb/Core/ModuleList.h"
17 #include "lldb/Core/ModuleSpec.h"
18 #include "lldb/Core/PluginManager.h"
19 #include "lldb/Core/Section.h"
20 #include "lldb/Core/StreamFile.h"
21 #include "lldb/Core/Value.h"
22 #include "lldb/Utility/ArchSpec.h"
23 #include "lldb/Utility/RegularExpression.h"
24 #include "lldb/Utility/Scalar.h"
25 #include "lldb/Utility/StreamString.h"
26 #include "lldb/Utility/Timer.h"
27 
28 #include "Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h"
29 #include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
30 
31 #include "lldb/Host/FileSystem.h"
32 #include "lldb/Host/Host.h"
33 
34 #include "lldb/Interpreter/OptionValueFileSpecList.h"
35 #include "lldb/Interpreter/OptionValueProperties.h"
36 
37 #include "Plugins/ExpressionParser/Clang/ClangUtil.h"
38 #include "Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h"
39 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
40 #include "lldb/Symbol/Block.h"
41 #include "lldb/Symbol/CompileUnit.h"
42 #include "lldb/Symbol/CompilerDecl.h"
43 #include "lldb/Symbol/CompilerDeclContext.h"
44 #include "lldb/Symbol/DebugMacros.h"
45 #include "lldb/Symbol/LineTable.h"
46 #include "lldb/Symbol/LocateSymbolFile.h"
47 #include "lldb/Symbol/ObjectFile.h"
48 #include "lldb/Symbol/SymbolFile.h"
49 #include "lldb/Symbol/TypeMap.h"
50 #include "lldb/Symbol/TypeSystem.h"
51 #include "lldb/Symbol/VariableList.h"
52 
53 #include "lldb/Target/Language.h"
54 #include "lldb/Target/Target.h"
55 
56 #include "AppleDWARFIndex.h"
57 #include "DWARFASTParser.h"
58 #include "DWARFASTParserClang.h"
59 #include "DWARFCompileUnit.h"
60 #include "DWARFDebugAbbrev.h"
61 #include "DWARFDebugAranges.h"
62 #include "DWARFDebugInfo.h"
63 #include "DWARFDebugMacro.h"
64 #include "DWARFDebugRanges.h"
65 #include "DWARFDeclContext.h"
66 #include "DWARFFormValue.h"
67 #include "DWARFTypeUnit.h"
68 #include "DWARFUnit.h"
69 #include "DebugNamesDWARFIndex.h"
70 #include "LogChannelDWARF.h"
71 #include "ManualDWARFIndex.h"
72 #include "SymbolFileDWARFDebugMap.h"
73 #include "SymbolFileDWARFDwo.h"
74 
75 #include "llvm/DebugInfo/DWARF/DWARFContext.h"
76 #include "llvm/Support/FileSystem.h"
77 
78 #include <algorithm>
79 #include <map>
80 #include <memory>
81 
82 #include <ctype.h>
83 #include <string.h>
84 
85 //#define ENABLE_DEBUG_PRINTF // COMMENT OUT THIS LINE PRIOR TO CHECKIN
86 
87 #ifdef ENABLE_DEBUG_PRINTF
88 #include <stdio.h>
89 #define DEBUG_PRINTF(fmt, ...) printf(fmt, __VA_ARGS__)
90 #else
91 #define DEBUG_PRINTF(fmt, ...)
92 #endif
93 
94 using namespace lldb;
95 using namespace lldb_private;
96 
97 LLDB_PLUGIN_DEFINE(SymbolFileDWARF)
98 
99 char SymbolFileDWARF::ID;
100 
101 // static inline bool
102 // child_requires_parent_class_union_or_struct_to_be_completed (dw_tag_t tag)
103 //{
104 //    switch (tag)
105 //    {
106 //    default:
107 //        break;
108 //    case DW_TAG_subprogram:
109 //    case DW_TAG_inlined_subroutine:
110 //    case DW_TAG_class_type:
111 //    case DW_TAG_structure_type:
112 //    case DW_TAG_union_type:
113 //        return true;
114 //    }
115 //    return false;
116 //}
117 //
118 
119 namespace {
120 
121 #define LLDB_PROPERTIES_symbolfiledwarf
122 #include "SymbolFileDWARFProperties.inc"
123 
124 enum {
125 #define LLDB_PROPERTIES_symbolfiledwarf
126 #include "SymbolFileDWARFPropertiesEnum.inc"
127 };
128 
129 class PluginProperties : public Properties {
130 public:
131   static ConstString GetSettingName() {
132     return SymbolFileDWARF::GetPluginNameStatic();
133   }
134 
135   PluginProperties() {
136     m_collection_sp = std::make_shared<OptionValueProperties>(GetSettingName());
137     m_collection_sp->Initialize(g_symbolfiledwarf_properties);
138   }
139 
140   bool IgnoreFileIndexes() const {
141     return m_collection_sp->GetPropertyAtIndexAsBoolean(
142         nullptr, ePropertyIgnoreIndexes, false);
143   }
144 };
145 
146 typedef std::shared_ptr<PluginProperties> SymbolFileDWARFPropertiesSP;
147 
148 static const SymbolFileDWARFPropertiesSP &GetGlobalPluginProperties() {
149   static const auto g_settings_sp(std::make_shared<PluginProperties>());
150   return g_settings_sp;
151 }
152 
153 } // namespace
154 
155 static const llvm::DWARFDebugLine::LineTable *
156 ParseLLVMLineTable(lldb_private::DWARFContext &context,
157                    llvm::DWARFDebugLine &line, dw_offset_t line_offset,
158                    dw_offset_t unit_offset) {
159   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
160 
161   llvm::DWARFDataExtractor data = context.getOrLoadLineData().GetAsLLVM();
162   llvm::DWARFContext &ctx = context.GetAsLLVM();
163   llvm::Expected<const llvm::DWARFDebugLine::LineTable *> line_table =
164       line.getOrParseLineTable(
165           data, line_offset, ctx, nullptr, [&](llvm::Error e) {
166             LLDB_LOG_ERROR(
167                 log, std::move(e),
168                 "SymbolFileDWARF::ParseLineTable failed to parse: {0}");
169           });
170 
171   if (!line_table) {
172     LLDB_LOG_ERROR(log, line_table.takeError(),
173                    "SymbolFileDWARF::ParseLineTable failed to parse: {0}");
174     return nullptr;
175   }
176   return *line_table;
177 }
178 
179 static bool ParseLLVMLineTablePrologue(lldb_private::DWARFContext &context,
180                                        llvm::DWARFDebugLine::Prologue &prologue,
181                                        dw_offset_t line_offset,
182                                        dw_offset_t unit_offset) {
183   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
184   bool success = true;
185   llvm::DWARFDataExtractor data = context.getOrLoadLineData().GetAsLLVM();
186   llvm::DWARFContext &ctx = context.GetAsLLVM();
187   uint64_t offset = line_offset;
188   llvm::Error error = prologue.parse(
189       data, &offset,
190       [&](llvm::Error e) {
191         success = false;
192         LLDB_LOG_ERROR(log, std::move(e),
193                        "SymbolFileDWARF::ParseSupportFiles failed to parse "
194                        "line table prologue: {0}");
195       },
196       ctx, nullptr);
197   if (error) {
198     LLDB_LOG_ERROR(log, std::move(error),
199                    "SymbolFileDWARF::ParseSupportFiles failed to parse line "
200                    "table prologue: {0}");
201     return false;
202   }
203   return success;
204 }
205 
206 static llvm::Optional<std::string>
207 GetFileByIndex(const llvm::DWARFDebugLine::Prologue &prologue, size_t idx,
208                llvm::StringRef compile_dir, FileSpec::Style style) {
209   // Try to get an absolute path first.
210   std::string abs_path;
211   auto absolute = llvm::DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath;
212   if (prologue.getFileNameByIndex(idx, compile_dir, absolute, abs_path, style))
213     return std::move(abs_path);
214 
215   // Otherwise ask for a relative path.
216   std::string rel_path;
217   auto relative = llvm::DILineInfoSpecifier::FileLineInfoKind::RawValue;
218   if (!prologue.getFileNameByIndex(idx, compile_dir, relative, rel_path, style))
219     return {};
220   return std::move(rel_path);
221 }
222 
223 static FileSpecList
224 ParseSupportFilesFromPrologue(const lldb::ModuleSP &module,
225                               const llvm::DWARFDebugLine::Prologue &prologue,
226                               FileSpec::Style style,
227                               llvm::StringRef compile_dir = {}) {
228   FileSpecList support_files;
229   size_t first_file = 0;
230   if (prologue.getVersion() <= 4) {
231     // File index 0 is not valid before DWARF v5. Add a dummy entry to ensure
232     // support file list indices match those we get from the debug info and line
233     // tables.
234     support_files.Append(FileSpec());
235     first_file = 1;
236   }
237 
238   const size_t number_of_files = prologue.FileNames.size();
239   for (size_t idx = first_file; idx <= number_of_files; ++idx) {
240     std::string remapped_file;
241     if (auto file_path = GetFileByIndex(prologue, idx, compile_dir, style))
242       if (!module->RemapSourceFile(llvm::StringRef(*file_path), remapped_file))
243         remapped_file = std::move(*file_path);
244 
245     // Unconditionally add an entry, so the indices match up.
246     support_files.EmplaceBack(remapped_file, style);
247   }
248 
249   return support_files;
250 }
251 
252 void SymbolFileDWARF::Initialize() {
253   LogChannelDWARF::Initialize();
254   PluginManager::RegisterPlugin(GetPluginNameStatic(),
255                                 GetPluginDescriptionStatic(), CreateInstance,
256                                 DebuggerInitialize);
257   SymbolFileDWARFDebugMap::Initialize();
258 }
259 
260 void SymbolFileDWARF::DebuggerInitialize(Debugger &debugger) {
261   if (!PluginManager::GetSettingForSymbolFilePlugin(
262           debugger, PluginProperties::GetSettingName())) {
263     const bool is_global_setting = true;
264     PluginManager::CreateSettingForSymbolFilePlugin(
265         debugger, GetGlobalPluginProperties()->GetValueProperties(),
266         ConstString("Properties for the dwarf symbol-file plug-in."),
267         is_global_setting);
268   }
269 }
270 
271 void SymbolFileDWARF::Terminate() {
272   SymbolFileDWARFDebugMap::Terminate();
273   PluginManager::UnregisterPlugin(CreateInstance);
274   LogChannelDWARF::Terminate();
275 }
276 
277 lldb_private::ConstString SymbolFileDWARF::GetPluginNameStatic() {
278   static ConstString g_name("dwarf");
279   return g_name;
280 }
281 
282 const char *SymbolFileDWARF::GetPluginDescriptionStatic() {
283   return "DWARF and DWARF3 debug symbol file reader.";
284 }
285 
286 SymbolFile *SymbolFileDWARF::CreateInstance(ObjectFileSP objfile_sp) {
287   return new SymbolFileDWARF(std::move(objfile_sp),
288                              /*dwo_section_list*/ nullptr);
289 }
290 
291 TypeList &SymbolFileDWARF::GetTypeList() {
292   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
293   if (SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile())
294     return debug_map_symfile->GetTypeList();
295   return SymbolFile::GetTypeList();
296 }
297 void SymbolFileDWARF::GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset,
298                                dw_offset_t max_die_offset, uint32_t type_mask,
299                                TypeSet &type_set) {
300   if (die) {
301     const dw_offset_t die_offset = die.GetOffset();
302 
303     if (die_offset >= max_die_offset)
304       return;
305 
306     if (die_offset >= min_die_offset) {
307       const dw_tag_t tag = die.Tag();
308 
309       bool add_type = false;
310 
311       switch (tag) {
312       case DW_TAG_array_type:
313         add_type = (type_mask & eTypeClassArray) != 0;
314         break;
315       case DW_TAG_unspecified_type:
316       case DW_TAG_base_type:
317         add_type = (type_mask & eTypeClassBuiltin) != 0;
318         break;
319       case DW_TAG_class_type:
320         add_type = (type_mask & eTypeClassClass) != 0;
321         break;
322       case DW_TAG_structure_type:
323         add_type = (type_mask & eTypeClassStruct) != 0;
324         break;
325       case DW_TAG_union_type:
326         add_type = (type_mask & eTypeClassUnion) != 0;
327         break;
328       case DW_TAG_enumeration_type:
329         add_type = (type_mask & eTypeClassEnumeration) != 0;
330         break;
331       case DW_TAG_subroutine_type:
332       case DW_TAG_subprogram:
333       case DW_TAG_inlined_subroutine:
334         add_type = (type_mask & eTypeClassFunction) != 0;
335         break;
336       case DW_TAG_pointer_type:
337         add_type = (type_mask & eTypeClassPointer) != 0;
338         break;
339       case DW_TAG_rvalue_reference_type:
340       case DW_TAG_reference_type:
341         add_type = (type_mask & eTypeClassReference) != 0;
342         break;
343       case DW_TAG_typedef:
344         add_type = (type_mask & eTypeClassTypedef) != 0;
345         break;
346       case DW_TAG_ptr_to_member_type:
347         add_type = (type_mask & eTypeClassMemberPointer) != 0;
348         break;
349       default:
350         break;
351       }
352 
353       if (add_type) {
354         const bool assert_not_being_parsed = true;
355         Type *type = ResolveTypeUID(die, assert_not_being_parsed);
356         if (type)
357           type_set.insert(type);
358       }
359     }
360 
361     for (DWARFDIE child_die = die.GetFirstChild(); child_die.IsValid();
362          child_die = child_die.GetSibling()) {
363       GetTypes(child_die, min_die_offset, max_die_offset, type_mask, type_set);
364     }
365   }
366 }
367 
368 void SymbolFileDWARF::GetTypes(SymbolContextScope *sc_scope,
369                                TypeClass type_mask, TypeList &type_list)
370 
371 {
372   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
373   TypeSet type_set;
374 
375   CompileUnit *comp_unit = nullptr;
376   if (sc_scope)
377     comp_unit = sc_scope->CalculateSymbolContextCompileUnit();
378 
379   const auto &get = [&](DWARFUnit *unit) {
380     if (!unit)
381       return;
382     unit = &unit->GetNonSkeletonUnit();
383     GetTypes(unit->DIE(), unit->GetOffset(), unit->GetNextUnitOffset(),
384              type_mask, type_set);
385   };
386   if (comp_unit) {
387     get(GetDWARFCompileUnit(comp_unit));
388   } else {
389     DWARFDebugInfo &info = DebugInfo();
390     const size_t num_cus = info.GetNumUnits();
391     for (size_t cu_idx = 0; cu_idx < num_cus; ++cu_idx)
392       get(info.GetUnitAtIndex(cu_idx));
393   }
394 
395   std::set<CompilerType> compiler_type_set;
396   for (Type *type : type_set) {
397     CompilerType compiler_type = type->GetForwardCompilerType();
398     if (compiler_type_set.find(compiler_type) == compiler_type_set.end()) {
399       compiler_type_set.insert(compiler_type);
400       type_list.Insert(type->shared_from_this());
401     }
402   }
403 }
404 
405 // Gets the first parent that is a lexical block, function or inlined
406 // subroutine, or compile unit.
407 DWARFDIE
408 SymbolFileDWARF::GetParentSymbolContextDIE(const DWARFDIE &child_die) {
409   DWARFDIE die;
410   for (die = child_die.GetParent(); die; die = die.GetParent()) {
411     dw_tag_t tag = die.Tag();
412 
413     switch (tag) {
414     case DW_TAG_compile_unit:
415     case DW_TAG_partial_unit:
416     case DW_TAG_subprogram:
417     case DW_TAG_inlined_subroutine:
418     case DW_TAG_lexical_block:
419       return die;
420     default:
421       break;
422     }
423   }
424   return DWARFDIE();
425 }
426 
427 SymbolFileDWARF::SymbolFileDWARF(ObjectFileSP objfile_sp,
428                                  SectionList *dwo_section_list)
429     : SymbolFile(std::move(objfile_sp)),
430       UserID(0x7fffffff00000000), // Used by SymbolFileDWARFDebugMap to
431                                   // when this class parses .o files to
432                                   // contain the .o file index/ID
433       m_debug_map_module_wp(), m_debug_map_symfile(nullptr),
434       m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list),
435       m_fetched_external_modules(false),
436       m_supports_DW_AT_APPLE_objc_complete_type(eLazyBoolCalculate) {}
437 
438 SymbolFileDWARF::~SymbolFileDWARF() {}
439 
440 static ConstString GetDWARFMachOSegmentName() {
441   static ConstString g_dwarf_section_name("__DWARF");
442   return g_dwarf_section_name;
443 }
444 
445 UniqueDWARFASTTypeMap &SymbolFileDWARF::GetUniqueDWARFASTTypeMap() {
446   SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile();
447   if (debug_map_symfile)
448     return debug_map_symfile->GetUniqueDWARFASTTypeMap();
449   else
450     return m_unique_ast_type_map;
451 }
452 
453 llvm::Expected<TypeSystem &>
454 SymbolFileDWARF::GetTypeSystemForLanguage(LanguageType language) {
455   if (SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile())
456     return debug_map_symfile->GetTypeSystemForLanguage(language);
457 
458   auto type_system_or_err =
459       m_objfile_sp->GetModule()->GetTypeSystemForLanguage(language);
460   if (type_system_or_err) {
461     type_system_or_err->SetSymbolFile(this);
462   }
463   return type_system_or_err;
464 }
465 
466 void SymbolFileDWARF::InitializeObject() {
467   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
468 
469   if (!GetGlobalPluginProperties()->IgnoreFileIndexes()) {
470     DWARFDataExtractor apple_names, apple_namespaces, apple_types, apple_objc;
471     LoadSectionData(eSectionTypeDWARFAppleNames, apple_names);
472     LoadSectionData(eSectionTypeDWARFAppleNamespaces, apple_namespaces);
473     LoadSectionData(eSectionTypeDWARFAppleTypes, apple_types);
474     LoadSectionData(eSectionTypeDWARFAppleObjC, apple_objc);
475 
476     m_index = AppleDWARFIndex::Create(
477         *GetObjectFile()->GetModule(), apple_names, apple_namespaces,
478         apple_types, apple_objc, m_context.getOrLoadStrData());
479 
480     if (m_index)
481       return;
482 
483     DWARFDataExtractor debug_names;
484     LoadSectionData(eSectionTypeDWARFDebugNames, debug_names);
485     if (debug_names.GetByteSize() > 0) {
486       llvm::Expected<std::unique_ptr<DebugNamesDWARFIndex>> index_or =
487           DebugNamesDWARFIndex::Create(*GetObjectFile()->GetModule(),
488                                        debug_names,
489                                        m_context.getOrLoadStrData(), *this);
490       if (index_or) {
491         m_index = std::move(*index_or);
492         return;
493       }
494       LLDB_LOG_ERROR(log, index_or.takeError(),
495                      "Unable to read .debug_names data: {0}");
496     }
497   }
498 
499   m_index =
500       std::make_unique<ManualDWARFIndex>(*GetObjectFile()->GetModule(), *this);
501 }
502 
503 bool SymbolFileDWARF::SupportedVersion(uint16_t version) {
504   return version >= 2 && version <= 5;
505 }
506 
507 uint32_t SymbolFileDWARF::CalculateAbilities() {
508   uint32_t abilities = 0;
509   if (m_objfile_sp != nullptr) {
510     const Section *section = nullptr;
511     const SectionList *section_list = m_objfile_sp->GetSectionList();
512     if (section_list == nullptr)
513       return 0;
514 
515     uint64_t debug_abbrev_file_size = 0;
516     uint64_t debug_info_file_size = 0;
517     uint64_t debug_line_file_size = 0;
518 
519     section = section_list->FindSectionByName(GetDWARFMachOSegmentName()).get();
520 
521     if (section)
522       section_list = &section->GetChildren();
523 
524     section =
525         section_list->FindSectionByType(eSectionTypeDWARFDebugInfo, true).get();
526     if (section != nullptr) {
527       debug_info_file_size = section->GetFileSize();
528 
529       section =
530           section_list->FindSectionByType(eSectionTypeDWARFDebugAbbrev, true)
531               .get();
532       if (section)
533         debug_abbrev_file_size = section->GetFileSize();
534 
535       DWARFDebugAbbrev *abbrev = DebugAbbrev();
536       if (abbrev) {
537         std::set<dw_form_t> invalid_forms;
538         abbrev->GetUnsupportedForms(invalid_forms);
539         if (!invalid_forms.empty()) {
540           StreamString error;
541           error.Printf("unsupported DW_FORM value%s:",
542                        invalid_forms.size() > 1 ? "s" : "");
543           for (auto form : invalid_forms)
544             error.Printf(" %#x", form);
545           m_objfile_sp->GetModule()->ReportWarning(
546               "%s", error.GetString().str().c_str());
547           return 0;
548         }
549       }
550 
551       section =
552           section_list->FindSectionByType(eSectionTypeDWARFDebugLine, true)
553               .get();
554       if (section)
555         debug_line_file_size = section->GetFileSize();
556     } else {
557       const char *symfile_dir_cstr =
558           m_objfile_sp->GetFileSpec().GetDirectory().GetCString();
559       if (symfile_dir_cstr) {
560         if (strcasestr(symfile_dir_cstr, ".dsym")) {
561           if (m_objfile_sp->GetType() == ObjectFile::eTypeDebugInfo) {
562             // We have a dSYM file that didn't have a any debug info. If the
563             // string table has a size of 1, then it was made from an
564             // executable with no debug info, or from an executable that was
565             // stripped.
566             section =
567                 section_list->FindSectionByType(eSectionTypeDWARFDebugStr, true)
568                     .get();
569             if (section && section->GetFileSize() == 1) {
570               m_objfile_sp->GetModule()->ReportWarning(
571                   "empty dSYM file detected, dSYM was created with an "
572                   "executable with no debug info.");
573             }
574           }
575         }
576       }
577     }
578 
579     if (debug_abbrev_file_size > 0 && debug_info_file_size > 0)
580       abilities |= CompileUnits | Functions | Blocks | GlobalVariables |
581                    LocalVariables | VariableTypes;
582 
583     if (debug_line_file_size > 0)
584       abilities |= LineTables;
585   }
586   return abilities;
587 }
588 
589 void SymbolFileDWARF::LoadSectionData(lldb::SectionType sect_type,
590                                       DWARFDataExtractor &data) {
591   ModuleSP module_sp(m_objfile_sp->GetModule());
592   const SectionList *section_list = module_sp->GetSectionList();
593   if (!section_list)
594     return;
595 
596   SectionSP section_sp(section_list->FindSectionByType(sect_type, true));
597   if (!section_sp)
598     return;
599 
600   data.Clear();
601   m_objfile_sp->ReadSectionData(section_sp.get(), data);
602 }
603 
604 DWARFDebugAbbrev *SymbolFileDWARF::DebugAbbrev() {
605   if (m_abbr)
606     return m_abbr.get();
607 
608   const DWARFDataExtractor &debug_abbrev_data = m_context.getOrLoadAbbrevData();
609   if (debug_abbrev_data.GetByteSize() == 0)
610     return nullptr;
611 
612   auto abbr = std::make_unique<DWARFDebugAbbrev>();
613   llvm::Error error = abbr->parse(debug_abbrev_data);
614   if (error) {
615     Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
616     LLDB_LOG_ERROR(log, std::move(error),
617                    "Unable to read .debug_abbrev section: {0}");
618     return nullptr;
619   }
620 
621   m_abbr = std::move(abbr);
622   return m_abbr.get();
623 }
624 
625 DWARFDebugInfo &SymbolFileDWARF::DebugInfo() {
626   llvm::call_once(m_info_once_flag, [&] {
627     LLDB_SCOPED_TIMERF("%s this = %p", LLVM_PRETTY_FUNCTION,
628                        static_cast<void *>(this));
629     m_info = std::make_unique<DWARFDebugInfo>(*this, m_context);
630   });
631   return *m_info;
632 }
633 
634 DWARFCompileUnit *SymbolFileDWARF::GetDWARFCompileUnit(CompileUnit *comp_unit) {
635   if (!comp_unit)
636     return nullptr;
637 
638   // The compile unit ID is the index of the DWARF unit.
639   DWARFUnit *dwarf_cu = DebugInfo().GetUnitAtIndex(comp_unit->GetID());
640   if (dwarf_cu && dwarf_cu->GetUserData() == nullptr)
641     dwarf_cu->SetUserData(comp_unit);
642 
643   // It must be DWARFCompileUnit when it created a CompileUnit.
644   return llvm::cast_or_null<DWARFCompileUnit>(dwarf_cu);
645 }
646 
647 DWARFDebugRanges *SymbolFileDWARF::GetDebugRanges() {
648   if (!m_ranges) {
649     LLDB_SCOPED_TIMERF("%s this = %p", LLVM_PRETTY_FUNCTION,
650                        static_cast<void *>(this));
651 
652     if (m_context.getOrLoadRangesData().GetByteSize() > 0)
653       m_ranges = std::make_unique<DWARFDebugRanges>();
654 
655     if (m_ranges)
656       m_ranges->Extract(m_context);
657   }
658   return m_ranges.get();
659 }
660 
661 /// Make an absolute path out of \p file_spec and remap it using the
662 /// module's source remapping dictionary.
663 static void MakeAbsoluteAndRemap(FileSpec &file_spec, DWARFUnit &dwarf_cu,
664                                  const ModuleSP &module_sp) {
665   if (!file_spec)
666     return;
667   // If we have a full path to the compile unit, we don't need to
668   // resolve the file.  This can be expensive e.g. when the source
669   // files are NFS mounted.
670   file_spec.MakeAbsolute(dwarf_cu.GetCompilationDirectory());
671 
672   std::string remapped_file;
673   if (module_sp->RemapSourceFile(file_spec.GetPath(), remapped_file))
674     file_spec.SetFile(remapped_file, FileSpec::Style::native);
675 }
676 
677 lldb::CompUnitSP SymbolFileDWARF::ParseCompileUnit(DWARFCompileUnit &dwarf_cu) {
678   CompUnitSP cu_sp;
679   CompileUnit *comp_unit = (CompileUnit *)dwarf_cu.GetUserData();
680   if (comp_unit) {
681     // We already parsed this compile unit, had out a shared pointer to it
682     cu_sp = comp_unit->shared_from_this();
683   } else {
684     if (dwarf_cu.GetOffset() == 0 && GetDebugMapSymfile()) {
685       // Let the debug map create the compile unit
686       cu_sp = m_debug_map_symfile->GetCompileUnit(this);
687       dwarf_cu.SetUserData(cu_sp.get());
688     } else {
689       ModuleSP module_sp(m_objfile_sp->GetModule());
690       if (module_sp) {
691         const DWARFBaseDIE cu_die =
692             dwarf_cu.GetNonSkeletonUnit().GetUnitDIEOnly();
693         if (cu_die) {
694           FileSpec cu_file_spec(cu_die.GetName(), dwarf_cu.GetPathStyle());
695           MakeAbsoluteAndRemap(cu_file_spec, dwarf_cu, module_sp);
696 
697           LanguageType cu_language = SymbolFileDWARF::LanguageTypeFromDWARF(
698               cu_die.GetAttributeValueAsUnsigned(DW_AT_language, 0));
699 
700           bool is_optimized = dwarf_cu.GetNonSkeletonUnit().GetIsOptimized();
701           BuildCuTranslationTable();
702           cu_sp = std::make_shared<CompileUnit>(
703               module_sp, &dwarf_cu, cu_file_spec,
704               *GetDWARFUnitIndex(dwarf_cu.GetID()), cu_language,
705               is_optimized ? eLazyBoolYes : eLazyBoolNo);
706 
707           dwarf_cu.SetUserData(cu_sp.get());
708 
709           SetCompileUnitAtIndex(dwarf_cu.GetID(), cu_sp);
710         }
711       }
712     }
713   }
714   return cu_sp;
715 }
716 
717 void SymbolFileDWARF::BuildCuTranslationTable() {
718   if (!m_lldb_cu_to_dwarf_unit.empty())
719     return;
720 
721   DWARFDebugInfo &info = DebugInfo();
722   if (!info.ContainsTypeUnits()) {
723     // We can use a 1-to-1 mapping. No need to build a translation table.
724     return;
725   }
726   for (uint32_t i = 0, num = info.GetNumUnits(); i < num; ++i) {
727     if (auto *cu = llvm::dyn_cast<DWARFCompileUnit>(info.GetUnitAtIndex(i))) {
728       cu->SetID(m_lldb_cu_to_dwarf_unit.size());
729       m_lldb_cu_to_dwarf_unit.push_back(i);
730     }
731   }
732 }
733 
734 llvm::Optional<uint32_t> SymbolFileDWARF::GetDWARFUnitIndex(uint32_t cu_idx) {
735   BuildCuTranslationTable();
736   if (m_lldb_cu_to_dwarf_unit.empty())
737     return cu_idx;
738   if (cu_idx >= m_lldb_cu_to_dwarf_unit.size())
739     return llvm::None;
740   return m_lldb_cu_to_dwarf_unit[cu_idx];
741 }
742 
743 uint32_t SymbolFileDWARF::CalculateNumCompileUnits() {
744   BuildCuTranslationTable();
745   return m_lldb_cu_to_dwarf_unit.empty() ? DebugInfo().GetNumUnits()
746                                          : m_lldb_cu_to_dwarf_unit.size();
747 }
748 
749 CompUnitSP SymbolFileDWARF::ParseCompileUnitAtIndex(uint32_t cu_idx) {
750   ASSERT_MODULE_LOCK(this);
751   if (llvm::Optional<uint32_t> dwarf_idx = GetDWARFUnitIndex(cu_idx)) {
752     if (auto *dwarf_cu = llvm::cast_or_null<DWARFCompileUnit>(
753             DebugInfo().GetUnitAtIndex(*dwarf_idx)))
754       return ParseCompileUnit(*dwarf_cu);
755   }
756   return {};
757 }
758 
759 Function *SymbolFileDWARF::ParseFunction(CompileUnit &comp_unit,
760                                          const DWARFDIE &die) {
761   ASSERT_MODULE_LOCK(this);
762   if (!die.IsValid())
763     return nullptr;
764 
765   auto type_system_or_err = GetTypeSystemForLanguage(GetLanguage(*die.GetCU()));
766   if (auto err = type_system_or_err.takeError()) {
767     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
768                    std::move(err), "Unable to parse function");
769     return nullptr;
770   }
771   DWARFASTParser *dwarf_ast = type_system_or_err->GetDWARFParser();
772   if (!dwarf_ast)
773     return nullptr;
774 
775   return dwarf_ast->ParseFunctionFromDWARF(comp_unit, die);
776 }
777 
778 lldb::addr_t SymbolFileDWARF::FixupAddress(lldb::addr_t file_addr) {
779   SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile();
780   if (debug_map_symfile)
781     return debug_map_symfile->LinkOSOFileAddress(this, file_addr);
782   return file_addr;
783 }
784 
785 bool SymbolFileDWARF::FixupAddress(Address &addr) {
786   SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile();
787   if (debug_map_symfile) {
788     return debug_map_symfile->LinkOSOAddress(addr);
789   }
790   // This is a normal DWARF file, no address fixups need to happen
791   return true;
792 }
793 lldb::LanguageType SymbolFileDWARF::ParseLanguage(CompileUnit &comp_unit) {
794   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
795   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
796   if (dwarf_cu)
797     return GetLanguage(*dwarf_cu);
798   else
799     return eLanguageTypeUnknown;
800 }
801 
802 XcodeSDK SymbolFileDWARF::ParseXcodeSDK(CompileUnit &comp_unit) {
803   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
804   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
805   if (!dwarf_cu)
806     return {};
807   const DWARFBaseDIE cu_die = dwarf_cu->GetNonSkeletonUnit().GetUnitDIEOnly();
808   if (!cu_die)
809     return {};
810   const char *sdk = cu_die.GetAttributeValueAsString(DW_AT_APPLE_sdk, nullptr);
811   if (!sdk)
812     return {};
813   const char *sysroot =
814       cu_die.GetAttributeValueAsString(DW_AT_LLVM_sysroot, "");
815   // Register the sysroot path remapping with the module belonging to
816   // the CU as well as the one belonging to the symbol file. The two
817   // would be different if this is an OSO object and module is the
818   // corresponding debug map, in which case both should be updated.
819   ModuleSP module_sp = comp_unit.GetModule();
820   if (module_sp)
821     module_sp->RegisterXcodeSDK(sdk, sysroot);
822 
823   ModuleSP local_module_sp = m_objfile_sp->GetModule();
824   if (local_module_sp && local_module_sp != module_sp)
825     local_module_sp->RegisterXcodeSDK(sdk, sysroot);
826 
827   return {sdk};
828 }
829 
830 size_t SymbolFileDWARF::ParseFunctions(CompileUnit &comp_unit) {
831   LLDB_SCOPED_TIMER();
832   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
833   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
834   if (!dwarf_cu)
835     return 0;
836 
837   size_t functions_added = 0;
838   dwarf_cu = &dwarf_cu->GetNonSkeletonUnit();
839   for (DWARFDebugInfoEntry &entry : dwarf_cu->dies()) {
840     if (entry.Tag() != DW_TAG_subprogram)
841       continue;
842 
843     DWARFDIE die(dwarf_cu, &entry);
844     if (comp_unit.FindFunctionByUID(die.GetID()))
845       continue;
846     if (ParseFunction(comp_unit, die))
847       ++functions_added;
848   }
849   // FixupTypes();
850   return functions_added;
851 }
852 
853 bool SymbolFileDWARF::ForEachExternalModule(
854     CompileUnit &comp_unit,
855     llvm::DenseSet<lldb_private::SymbolFile *> &visited_symbol_files,
856     llvm::function_ref<bool(Module &)> lambda) {
857   // Only visit each symbol file once.
858   if (!visited_symbol_files.insert(this).second)
859     return false;
860 
861   UpdateExternalModuleListIfNeeded();
862   for (auto &p : m_external_type_modules) {
863     ModuleSP module = p.second;
864     if (!module)
865       continue;
866 
867     // Invoke the action and potentially early-exit.
868     if (lambda(*module))
869       return true;
870 
871     for (std::size_t i = 0; i < module->GetNumCompileUnits(); ++i) {
872       auto cu = module->GetCompileUnitAtIndex(i);
873       bool early_exit = cu->ForEachExternalModule(visited_symbol_files, lambda);
874       if (early_exit)
875         return true;
876     }
877   }
878   return false;
879 }
880 
881 bool SymbolFileDWARF::ParseSupportFiles(CompileUnit &comp_unit,
882                                         FileSpecList &support_files) {
883   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
884   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
885   if (!dwarf_cu)
886     return false;
887 
888   dw_offset_t offset = dwarf_cu->GetLineTableOffset();
889   if (offset == DW_INVALID_OFFSET)
890     return false;
891 
892   llvm::DWARFDebugLine::Prologue prologue;
893   if (!ParseLLVMLineTablePrologue(m_context, prologue, offset,
894                                   dwarf_cu->GetOffset()))
895     return false;
896 
897   comp_unit.SetSupportFiles(ParseSupportFilesFromPrologue(
898       comp_unit.GetModule(), prologue, dwarf_cu->GetPathStyle(),
899       dwarf_cu->GetCompilationDirectory().GetCString()));
900 
901   return true;
902 }
903 
904 FileSpec SymbolFileDWARF::GetFile(DWARFUnit &unit, size_t file_idx) {
905   if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit)) {
906     if (CompileUnit *lldb_cu = GetCompUnitForDWARFCompUnit(*dwarf_cu))
907       return lldb_cu->GetSupportFiles().GetFileSpecAtIndex(file_idx);
908     return FileSpec();
909   }
910 
911   auto &tu = llvm::cast<DWARFTypeUnit>(unit);
912   return GetTypeUnitSupportFiles(tu).GetFileSpecAtIndex(file_idx);
913 }
914 
915 const FileSpecList &
916 SymbolFileDWARF::GetTypeUnitSupportFiles(DWARFTypeUnit &tu) {
917   static FileSpecList empty_list;
918 
919   dw_offset_t offset = tu.GetLineTableOffset();
920   if (offset == DW_INVALID_OFFSET ||
921       offset == llvm::DenseMapInfo<dw_offset_t>::getEmptyKey() ||
922       offset == llvm::DenseMapInfo<dw_offset_t>::getTombstoneKey())
923     return empty_list;
924 
925   // Many type units can share a line table, so parse the support file list
926   // once, and cache it based on the offset field.
927   auto iter_bool = m_type_unit_support_files.try_emplace(offset);
928   FileSpecList &list = iter_bool.first->second;
929   if (iter_bool.second) {
930     uint64_t line_table_offset = offset;
931     llvm::DWARFDataExtractor data = m_context.getOrLoadLineData().GetAsLLVM();
932     llvm::DWARFContext &ctx = m_context.GetAsLLVM();
933     llvm::DWARFDebugLine::Prologue prologue;
934     auto report = [](llvm::Error error) {
935       Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
936       LLDB_LOG_ERROR(log, std::move(error),
937                      "SymbolFileDWARF::GetTypeUnitSupportFiles failed to parse "
938                      "the line table prologue");
939     };
940     llvm::Error error = prologue.parse(data, &line_table_offset, report, ctx);
941     if (error) {
942       report(std::move(error));
943     } else {
944       list = ParseSupportFilesFromPrologue(GetObjectFile()->GetModule(),
945                                            prologue, tu.GetPathStyle());
946     }
947   }
948   return list;
949 }
950 
951 bool SymbolFileDWARF::ParseIsOptimized(CompileUnit &comp_unit) {
952   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
953   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
954   if (dwarf_cu)
955     return dwarf_cu->GetIsOptimized();
956   return false;
957 }
958 
959 bool SymbolFileDWARF::ParseImportedModules(
960     const lldb_private::SymbolContext &sc,
961     std::vector<SourceModule> &imported_modules) {
962   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
963   assert(sc.comp_unit);
964   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(sc.comp_unit);
965   if (!dwarf_cu)
966     return false;
967   if (!ClangModulesDeclVendor::LanguageSupportsClangModules(
968           sc.comp_unit->GetLanguage()))
969     return false;
970   UpdateExternalModuleListIfNeeded();
971 
972   const DWARFDIE die = dwarf_cu->DIE();
973   if (!die)
974     return false;
975 
976   for (DWARFDIE child_die = die.GetFirstChild(); child_die;
977        child_die = child_die.GetSibling()) {
978     if (child_die.Tag() != DW_TAG_imported_declaration)
979       continue;
980 
981     DWARFDIE module_die = child_die.GetReferencedDIE(DW_AT_import);
982     if (module_die.Tag() != DW_TAG_module)
983       continue;
984 
985     if (const char *name =
986             module_die.GetAttributeValueAsString(DW_AT_name, nullptr)) {
987       SourceModule module;
988       module.path.push_back(ConstString(name));
989 
990       DWARFDIE parent_die = module_die;
991       while ((parent_die = parent_die.GetParent())) {
992         if (parent_die.Tag() != DW_TAG_module)
993           break;
994         if (const char *name =
995                 parent_die.GetAttributeValueAsString(DW_AT_name, nullptr))
996           module.path.push_back(ConstString(name));
997       }
998       std::reverse(module.path.begin(), module.path.end());
999       if (const char *include_path = module_die.GetAttributeValueAsString(
1000               DW_AT_LLVM_include_path, nullptr)) {
1001         FileSpec include_spec(include_path, dwarf_cu->GetPathStyle());
1002         MakeAbsoluteAndRemap(include_spec, *dwarf_cu, m_objfile_sp->GetModule());
1003         module.search_path = ConstString(include_spec.GetPath());
1004       }
1005       if (const char *sysroot = dwarf_cu->DIE().GetAttributeValueAsString(
1006               DW_AT_LLVM_sysroot, nullptr))
1007         module.sysroot = ConstString(sysroot);
1008       imported_modules.push_back(module);
1009     }
1010   }
1011   return true;
1012 }
1013 
1014 bool SymbolFileDWARF::ParseLineTable(CompileUnit &comp_unit) {
1015   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1016   if (comp_unit.GetLineTable() != nullptr)
1017     return true;
1018 
1019   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
1020   if (!dwarf_cu)
1021     return false;
1022 
1023   dw_offset_t offset = dwarf_cu->GetLineTableOffset();
1024   if (offset == DW_INVALID_OFFSET)
1025     return false;
1026 
1027   llvm::DWARFDebugLine line;
1028   const llvm::DWARFDebugLine::LineTable *line_table =
1029       ParseLLVMLineTable(m_context, line, offset, dwarf_cu->GetOffset());
1030 
1031   if (!line_table)
1032     return false;
1033 
1034   // FIXME: Rather than parsing the whole line table and then copying it over
1035   // into LLDB, we should explore using a callback to populate the line table
1036   // while we parse to reduce memory usage.
1037   std::vector<std::unique_ptr<LineSequence>> sequences;
1038   // The Sequences view contains only valid line sequences. Don't iterate over
1039   // the Rows directly.
1040   for (const llvm::DWARFDebugLine::Sequence &seq : line_table->Sequences) {
1041     std::unique_ptr<LineSequence> sequence =
1042         LineTable::CreateLineSequenceContainer();
1043     for (unsigned idx = seq.FirstRowIndex; idx < seq.LastRowIndex; ++idx) {
1044       const llvm::DWARFDebugLine::Row &row = line_table->Rows[idx];
1045       LineTable::AppendLineEntryToSequence(
1046           sequence.get(), row.Address.Address, row.Line, row.Column, row.File,
1047           row.IsStmt, row.BasicBlock, row.PrologueEnd, row.EpilogueBegin,
1048           row.EndSequence);
1049     }
1050     sequences.push_back(std::move(sequence));
1051   }
1052 
1053   std::unique_ptr<LineTable> line_table_up =
1054       std::make_unique<LineTable>(&comp_unit, std::move(sequences));
1055 
1056   if (SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile()) {
1057     // We have an object file that has a line table with addresses that are not
1058     // linked. We need to link the line table and convert the addresses that
1059     // are relative to the .o file into addresses for the main executable.
1060     comp_unit.SetLineTable(
1061         debug_map_symfile->LinkOSOLineTable(this, line_table_up.get()));
1062   } else {
1063     comp_unit.SetLineTable(line_table_up.release());
1064   }
1065 
1066   return true;
1067 }
1068 
1069 lldb_private::DebugMacrosSP
1070 SymbolFileDWARF::ParseDebugMacros(lldb::offset_t *offset) {
1071   auto iter = m_debug_macros_map.find(*offset);
1072   if (iter != m_debug_macros_map.end())
1073     return iter->second;
1074 
1075   const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData();
1076   if (debug_macro_data.GetByteSize() == 0)
1077     return DebugMacrosSP();
1078 
1079   lldb_private::DebugMacrosSP debug_macros_sp(new lldb_private::DebugMacros());
1080   m_debug_macros_map[*offset] = debug_macros_sp;
1081 
1082   const DWARFDebugMacroHeader &header =
1083       DWARFDebugMacroHeader::ParseHeader(debug_macro_data, offset);
1084   DWARFDebugMacroEntry::ReadMacroEntries(
1085       debug_macro_data, m_context.getOrLoadStrData(), header.OffsetIs64Bit(),
1086       offset, this, debug_macros_sp);
1087 
1088   return debug_macros_sp;
1089 }
1090 
1091 bool SymbolFileDWARF::ParseDebugMacros(CompileUnit &comp_unit) {
1092   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1093 
1094   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
1095   if (dwarf_cu == nullptr)
1096     return false;
1097 
1098   const DWARFBaseDIE dwarf_cu_die = dwarf_cu->GetUnitDIEOnly();
1099   if (!dwarf_cu_die)
1100     return false;
1101 
1102   lldb::offset_t sect_offset =
1103       dwarf_cu_die.GetAttributeValueAsUnsigned(DW_AT_macros, DW_INVALID_OFFSET);
1104   if (sect_offset == DW_INVALID_OFFSET)
1105     sect_offset = dwarf_cu_die.GetAttributeValueAsUnsigned(DW_AT_GNU_macros,
1106                                                            DW_INVALID_OFFSET);
1107   if (sect_offset == DW_INVALID_OFFSET)
1108     return false;
1109 
1110   comp_unit.SetDebugMacros(ParseDebugMacros(&sect_offset));
1111 
1112   return true;
1113 }
1114 
1115 size_t SymbolFileDWARF::ParseBlocksRecursive(
1116     lldb_private::CompileUnit &comp_unit, Block *parent_block,
1117     const DWARFDIE &orig_die, addr_t subprogram_low_pc, uint32_t depth) {
1118   size_t blocks_added = 0;
1119   DWARFDIE die = orig_die;
1120   while (die) {
1121     dw_tag_t tag = die.Tag();
1122 
1123     switch (tag) {
1124     case DW_TAG_inlined_subroutine:
1125     case DW_TAG_subprogram:
1126     case DW_TAG_lexical_block: {
1127       Block *block = nullptr;
1128       if (tag == DW_TAG_subprogram) {
1129         // Skip any DW_TAG_subprogram DIEs that are inside of a normal or
1130         // inlined functions. These will be parsed on their own as separate
1131         // entities.
1132 
1133         if (depth > 0)
1134           break;
1135 
1136         block = parent_block;
1137       } else {
1138         BlockSP block_sp(new Block(die.GetID()));
1139         parent_block->AddChild(block_sp);
1140         block = block_sp.get();
1141       }
1142       DWARFRangeList ranges;
1143       const char *name = nullptr;
1144       const char *mangled_name = nullptr;
1145 
1146       int decl_file = 0;
1147       int decl_line = 0;
1148       int decl_column = 0;
1149       int call_file = 0;
1150       int call_line = 0;
1151       int call_column = 0;
1152       if (die.GetDIENamesAndRanges(name, mangled_name, ranges, decl_file,
1153                                    decl_line, decl_column, call_file, call_line,
1154                                    call_column, nullptr)) {
1155         if (tag == DW_TAG_subprogram) {
1156           assert(subprogram_low_pc == LLDB_INVALID_ADDRESS);
1157           subprogram_low_pc = ranges.GetMinRangeBase(0);
1158         } else if (tag == DW_TAG_inlined_subroutine) {
1159           // We get called here for inlined subroutines in two ways. The first
1160           // time is when we are making the Function object for this inlined
1161           // concrete instance.  Since we're creating a top level block at
1162           // here, the subprogram_low_pc will be LLDB_INVALID_ADDRESS.  So we
1163           // need to adjust the containing address. The second time is when we
1164           // are parsing the blocks inside the function that contains the
1165           // inlined concrete instance.  Since these will be blocks inside the
1166           // containing "real" function the offset will be for that function.
1167           if (subprogram_low_pc == LLDB_INVALID_ADDRESS) {
1168             subprogram_low_pc = ranges.GetMinRangeBase(0);
1169           }
1170         }
1171 
1172         const size_t num_ranges = ranges.GetSize();
1173         for (size_t i = 0; i < num_ranges; ++i) {
1174           const DWARFRangeList::Entry &range = ranges.GetEntryRef(i);
1175           const addr_t range_base = range.GetRangeBase();
1176           if (range_base >= subprogram_low_pc)
1177             block->AddRange(Block::Range(range_base - subprogram_low_pc,
1178                                          range.GetByteSize()));
1179           else {
1180             GetObjectFile()->GetModule()->ReportError(
1181                 "0x%8.8" PRIx64 ": adding range [0x%" PRIx64 "-0x%" PRIx64
1182                 ") which has a base that is less than the function's low PC "
1183                 "0x%" PRIx64 ". Please file a bug and attach the file at the "
1184                 "start of this error message",
1185                 block->GetID(), range_base, range.GetRangeEnd(),
1186                 subprogram_low_pc);
1187           }
1188         }
1189         block->FinalizeRanges();
1190 
1191         if (tag != DW_TAG_subprogram &&
1192             (name != nullptr || mangled_name != nullptr)) {
1193           std::unique_ptr<Declaration> decl_up;
1194           if (decl_file != 0 || decl_line != 0 || decl_column != 0)
1195             decl_up = std::make_unique<Declaration>(
1196                 comp_unit.GetSupportFiles().GetFileSpecAtIndex(decl_file),
1197                 decl_line, decl_column);
1198 
1199           std::unique_ptr<Declaration> call_up;
1200           if (call_file != 0 || call_line != 0 || call_column != 0)
1201             call_up = std::make_unique<Declaration>(
1202                 comp_unit.GetSupportFiles().GetFileSpecAtIndex(call_file),
1203                 call_line, call_column);
1204 
1205           block->SetInlinedFunctionInfo(name, mangled_name, decl_up.get(),
1206                                         call_up.get());
1207         }
1208 
1209         ++blocks_added;
1210 
1211         if (die.HasChildren()) {
1212           blocks_added +=
1213               ParseBlocksRecursive(comp_unit, block, die.GetFirstChild(),
1214                                    subprogram_low_pc, depth + 1);
1215         }
1216       }
1217     } break;
1218     default:
1219       break;
1220     }
1221 
1222     // Only parse siblings of the block if we are not at depth zero. A depth of
1223     // zero indicates we are currently parsing the top level DW_TAG_subprogram
1224     // DIE
1225 
1226     if (depth == 0)
1227       die.Clear();
1228     else
1229       die = die.GetSibling();
1230   }
1231   return blocks_added;
1232 }
1233 
1234 bool SymbolFileDWARF::ClassOrStructIsVirtual(const DWARFDIE &parent_die) {
1235   if (parent_die) {
1236     for (DWARFDIE die = parent_die.GetFirstChild(); die;
1237          die = die.GetSibling()) {
1238       dw_tag_t tag = die.Tag();
1239       bool check_virtuality = false;
1240       switch (tag) {
1241       case DW_TAG_inheritance:
1242       case DW_TAG_subprogram:
1243         check_virtuality = true;
1244         break;
1245       default:
1246         break;
1247       }
1248       if (check_virtuality) {
1249         if (die.GetAttributeValueAsUnsigned(DW_AT_virtuality, 0) != 0)
1250           return true;
1251       }
1252     }
1253   }
1254   return false;
1255 }
1256 
1257 void SymbolFileDWARF::ParseDeclsForContext(CompilerDeclContext decl_ctx) {
1258   auto *type_system = decl_ctx.GetTypeSystem();
1259   if (type_system != nullptr)
1260     type_system->GetDWARFParser()->EnsureAllDIEsInDeclContextHaveBeenParsed(
1261         decl_ctx);
1262 }
1263 
1264 user_id_t SymbolFileDWARF::GetUID(DIERef ref) {
1265   if (GetDebugMapSymfile())
1266     return GetID() | ref.die_offset();
1267 
1268   lldbassert(GetDwoNum().getValueOr(0) <= 0x3fffffff);
1269   return user_id_t(GetDwoNum().getValueOr(0)) << 32 | ref.die_offset() |
1270          lldb::user_id_t(GetDwoNum().hasValue()) << 62 |
1271          lldb::user_id_t(ref.section() == DIERef::Section::DebugTypes) << 63;
1272 }
1273 
1274 llvm::Optional<SymbolFileDWARF::DecodedUID>
1275 SymbolFileDWARF::DecodeUID(lldb::user_id_t uid) {
1276   // This method can be called without going through the symbol vendor so we
1277   // need to lock the module.
1278   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1279   // Anytime we get a "lldb::user_id_t" from an lldb_private::SymbolFile API we
1280   // must make sure we use the correct DWARF file when resolving things. On
1281   // MacOSX, when using SymbolFileDWARFDebugMap, we will use multiple
1282   // SymbolFileDWARF classes, one for each .o file. We can often end up with
1283   // references to other DWARF objects and we must be ready to receive a
1284   // "lldb::user_id_t" that specifies a DIE from another SymbolFileDWARF
1285   // instance.
1286   if (SymbolFileDWARFDebugMap *debug_map = GetDebugMapSymfile()) {
1287     SymbolFileDWARF *dwarf = debug_map->GetSymbolFileByOSOIndex(
1288         debug_map->GetOSOIndexFromUserID(uid));
1289     return DecodedUID{
1290         *dwarf, {llvm::None, DIERef::Section::DebugInfo, dw_offset_t(uid)}};
1291   }
1292   dw_offset_t die_offset = uid;
1293   if (die_offset == DW_INVALID_OFFSET)
1294     return llvm::None;
1295 
1296   DIERef::Section section =
1297       uid >> 63 ? DIERef::Section::DebugTypes : DIERef::Section::DebugInfo;
1298 
1299   llvm::Optional<uint32_t> dwo_num;
1300   bool dwo_valid = uid >> 62 & 1;
1301   if (dwo_valid)
1302     dwo_num = uid >> 32 & 0x3fffffff;
1303 
1304   return DecodedUID{*this, {dwo_num, section, die_offset}};
1305 }
1306 
1307 DWARFDIE
1308 SymbolFileDWARF::GetDIE(lldb::user_id_t uid) {
1309   // This method can be called without going through the symbol vendor so we
1310   // need to lock the module.
1311   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1312 
1313   llvm::Optional<DecodedUID> decoded = DecodeUID(uid);
1314 
1315   if (decoded)
1316     return decoded->dwarf.GetDIE(decoded->ref);
1317 
1318   return DWARFDIE();
1319 }
1320 
1321 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) {
1322   // This method can be called without going through the symbol vendor so we
1323   // need to lock the module.
1324   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1325   // Anytime we have a lldb::user_id_t, we must get the DIE by calling
1326   // SymbolFileDWARF::GetDIE(). See comments inside the
1327   // SymbolFileDWARF::GetDIE() for details.
1328   if (DWARFDIE die = GetDIE(type_uid))
1329     return GetDecl(die);
1330   return CompilerDecl();
1331 }
1332 
1333 CompilerDeclContext
1334 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) {
1335   // This method can be called without going through the symbol vendor so we
1336   // need to lock the module.
1337   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1338   // Anytime we have a lldb::user_id_t, we must get the DIE by calling
1339   // SymbolFileDWARF::GetDIE(). See comments inside the
1340   // SymbolFileDWARF::GetDIE() for details.
1341   if (DWARFDIE die = GetDIE(type_uid))
1342     return GetDeclContext(die);
1343   return CompilerDeclContext();
1344 }
1345 
1346 CompilerDeclContext
1347 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) {
1348   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1349   // Anytime we have a lldb::user_id_t, we must get the DIE by calling
1350   // SymbolFileDWARF::GetDIE(). See comments inside the
1351   // SymbolFileDWARF::GetDIE() for details.
1352   if (DWARFDIE die = GetDIE(type_uid))
1353     return GetContainingDeclContext(die);
1354   return CompilerDeclContext();
1355 }
1356 
1357 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) {
1358   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1359   // Anytime we have a lldb::user_id_t, we must get the DIE by calling
1360   // SymbolFileDWARF::GetDIE(). See comments inside the
1361   // SymbolFileDWARF::GetDIE() for details.
1362   if (DWARFDIE type_die = GetDIE(type_uid))
1363     return type_die.ResolveType();
1364   else
1365     return nullptr;
1366 }
1367 
1368 llvm::Optional<SymbolFile::ArrayInfo>
1369 SymbolFileDWARF::GetDynamicArrayInfoForUID(
1370     lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) {
1371   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1372   if (DWARFDIE type_die = GetDIE(type_uid))
1373     return DWARFASTParser::ParseChildArrayInfo(type_die, exe_ctx);
1374   else
1375     return llvm::None;
1376 }
1377 
1378 Type *SymbolFileDWARF::ResolveTypeUID(const DIERef &die_ref) {
1379   return ResolveType(GetDIE(die_ref), true);
1380 }
1381 
1382 Type *SymbolFileDWARF::ResolveTypeUID(const DWARFDIE &die,
1383                                       bool assert_not_being_parsed) {
1384   if (die) {
1385     Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO));
1386     if (log)
1387       GetObjectFile()->GetModule()->LogMessage(
1388           log, "SymbolFileDWARF::ResolveTypeUID (die = 0x%8.8x) %s '%s'",
1389           die.GetOffset(), die.GetTagAsCString(), die.GetName());
1390 
1391     // We might be coming in in the middle of a type tree (a class within a
1392     // class, an enum within a class), so parse any needed parent DIEs before
1393     // we get to this one...
1394     DWARFDIE decl_ctx_die = GetDeclContextDIEContainingDIE(die);
1395     if (decl_ctx_die) {
1396       if (log) {
1397         switch (decl_ctx_die.Tag()) {
1398         case DW_TAG_structure_type:
1399         case DW_TAG_union_type:
1400         case DW_TAG_class_type: {
1401           // Get the type, which could be a forward declaration
1402           if (log)
1403             GetObjectFile()->GetModule()->LogMessage(
1404                 log,
1405                 "SymbolFileDWARF::ResolveTypeUID (die = 0x%8.8x) %s '%s' "
1406                 "resolve parent forward type for 0x%8.8x",
1407                 die.GetOffset(), die.GetTagAsCString(), die.GetName(),
1408                 decl_ctx_die.GetOffset());
1409         } break;
1410 
1411         default:
1412           break;
1413         }
1414       }
1415     }
1416     return ResolveType(die);
1417   }
1418   return nullptr;
1419 }
1420 
1421 // This function is used when SymbolFileDWARFDebugMap owns a bunch of
1422 // SymbolFileDWARF objects to detect if this DWARF file is the one that can
1423 // resolve a compiler_type.
1424 bool SymbolFileDWARF::HasForwardDeclForClangType(
1425     const CompilerType &compiler_type) {
1426   CompilerType compiler_type_no_qualifiers =
1427       ClangUtil::RemoveFastQualifiers(compiler_type);
1428   if (GetForwardDeclClangTypeToDie().count(
1429           compiler_type_no_qualifiers.GetOpaqueQualType())) {
1430     return true;
1431   }
1432   TypeSystem *type_system = compiler_type.GetTypeSystem();
1433 
1434   TypeSystemClang *clang_type_system =
1435       llvm::dyn_cast_or_null<TypeSystemClang>(type_system);
1436   if (!clang_type_system)
1437     return false;
1438   DWARFASTParserClang *ast_parser =
1439       static_cast<DWARFASTParserClang *>(clang_type_system->GetDWARFParser());
1440   return ast_parser->GetClangASTImporter().CanImport(compiler_type);
1441 }
1442 
1443 bool SymbolFileDWARF::CompleteType(CompilerType &compiler_type) {
1444   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1445 
1446   TypeSystemClang *clang_type_system =
1447       llvm::dyn_cast_or_null<TypeSystemClang>(compiler_type.GetTypeSystem());
1448   if (clang_type_system) {
1449     DWARFASTParserClang *ast_parser =
1450         static_cast<DWARFASTParserClang *>(clang_type_system->GetDWARFParser());
1451     if (ast_parser &&
1452         ast_parser->GetClangASTImporter().CanImport(compiler_type))
1453       return ast_parser->GetClangASTImporter().CompleteType(compiler_type);
1454   }
1455 
1456   // We have a struct/union/class/enum that needs to be fully resolved.
1457   CompilerType compiler_type_no_qualifiers =
1458       ClangUtil::RemoveFastQualifiers(compiler_type);
1459   auto die_it = GetForwardDeclClangTypeToDie().find(
1460       compiler_type_no_qualifiers.GetOpaqueQualType());
1461   if (die_it == GetForwardDeclClangTypeToDie().end()) {
1462     // We have already resolved this type...
1463     return true;
1464   }
1465 
1466   DWARFDIE dwarf_die = GetDIE(die_it->getSecond());
1467   if (dwarf_die) {
1468     // Once we start resolving this type, remove it from the forward
1469     // declaration map in case anyone child members or other types require this
1470     // type to get resolved. The type will get resolved when all of the calls
1471     // to SymbolFileDWARF::ResolveClangOpaqueTypeDefinition are done.
1472     GetForwardDeclClangTypeToDie().erase(die_it);
1473 
1474     Type *type = GetDIEToType().lookup(dwarf_die.GetDIE());
1475 
1476     Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_DEBUG_INFO |
1477                                           DWARF_LOG_TYPE_COMPLETION));
1478     if (log)
1479       GetObjectFile()->GetModule()->LogMessageVerboseBacktrace(
1480           log, "0x%8.8" PRIx64 ": %s '%s' resolving forward declaration...",
1481           dwarf_die.GetID(), dwarf_die.GetTagAsCString(),
1482           type->GetName().AsCString());
1483     assert(compiler_type);
1484     if (DWARFASTParser *dwarf_ast = GetDWARFParser(*dwarf_die.GetCU()))
1485       return dwarf_ast->CompleteTypeFromDWARF(dwarf_die, type, compiler_type);
1486   }
1487   return false;
1488 }
1489 
1490 Type *SymbolFileDWARF::ResolveType(const DWARFDIE &die,
1491                                    bool assert_not_being_parsed,
1492                                    bool resolve_function_context) {
1493   if (die) {
1494     Type *type = GetTypeForDIE(die, resolve_function_context).get();
1495 
1496     if (assert_not_being_parsed) {
1497       if (type != DIE_IS_BEING_PARSED)
1498         return type;
1499 
1500       GetObjectFile()->GetModule()->ReportError(
1501           "Parsing a die that is being parsed die: 0x%8.8x: %s %s",
1502           die.GetOffset(), die.GetTagAsCString(), die.GetName());
1503 
1504     } else
1505       return type;
1506   }
1507   return nullptr;
1508 }
1509 
1510 CompileUnit *
1511 SymbolFileDWARF::GetCompUnitForDWARFCompUnit(DWARFCompileUnit &dwarf_cu) {
1512   if (dwarf_cu.IsDWOUnit()) {
1513     DWARFCompileUnit *non_dwo_cu =
1514         static_cast<DWARFCompileUnit *>(dwarf_cu.GetUserData());
1515     assert(non_dwo_cu);
1516     return non_dwo_cu->GetSymbolFileDWARF().GetCompUnitForDWARFCompUnit(
1517         *non_dwo_cu);
1518   }
1519   // Check if the symbol vendor already knows about this compile unit?
1520   if (dwarf_cu.GetUserData() == nullptr) {
1521     // The symbol vendor doesn't know about this compile unit, we need to parse
1522     // and add it to the symbol vendor object.
1523     return ParseCompileUnit(dwarf_cu).get();
1524   }
1525   return static_cast<CompileUnit *>(dwarf_cu.GetUserData());
1526 }
1527 
1528 void SymbolFileDWARF::GetObjCMethods(
1529     ConstString class_name, llvm::function_ref<bool(DWARFDIE die)> callback) {
1530   m_index->GetObjCMethods(class_name, callback);
1531 }
1532 
1533 bool SymbolFileDWARF::GetFunction(const DWARFDIE &die, SymbolContext &sc) {
1534   sc.Clear(false);
1535 
1536   if (die && llvm::isa<DWARFCompileUnit>(die.GetCU())) {
1537     // Check if the symbol vendor already knows about this compile unit?
1538     sc.comp_unit =
1539         GetCompUnitForDWARFCompUnit(llvm::cast<DWARFCompileUnit>(*die.GetCU()));
1540 
1541     sc.function = sc.comp_unit->FindFunctionByUID(die.GetID()).get();
1542     if (sc.function == nullptr)
1543       sc.function = ParseFunction(*sc.comp_unit, die);
1544 
1545     if (sc.function) {
1546       sc.module_sp = sc.function->CalculateSymbolContextModule();
1547       return true;
1548     }
1549   }
1550 
1551   return false;
1552 }
1553 
1554 lldb::ModuleSP SymbolFileDWARF::GetExternalModule(ConstString name) {
1555   UpdateExternalModuleListIfNeeded();
1556   const auto &pos = m_external_type_modules.find(name);
1557   if (pos != m_external_type_modules.end())
1558     return pos->second;
1559   else
1560     return lldb::ModuleSP();
1561 }
1562 
1563 DWARFDIE
1564 SymbolFileDWARF::GetDIE(const DIERef &die_ref) {
1565   if (die_ref.dwo_num()) {
1566     SymbolFileDWARF *dwarf = *die_ref.dwo_num() == 0x3fffffff
1567                                  ? m_dwp_symfile.get()
1568                                  : this->DebugInfo()
1569                                        .GetUnitAtIndex(*die_ref.dwo_num())
1570                                        ->GetDwoSymbolFile();
1571     return dwarf->DebugInfo().GetDIE(die_ref);
1572   }
1573 
1574   return DebugInfo().GetDIE(die_ref);
1575 }
1576 
1577 /// Return the DW_AT_(GNU_)dwo_name.
1578 static const char *GetDWOName(DWARFCompileUnit &dwarf_cu,
1579                               const DWARFDebugInfoEntry &cu_die) {
1580   const char *dwo_name =
1581       cu_die.GetAttributeValueAsString(&dwarf_cu, DW_AT_GNU_dwo_name, nullptr);
1582   if (!dwo_name)
1583     dwo_name =
1584         cu_die.GetAttributeValueAsString(&dwarf_cu, DW_AT_dwo_name, nullptr);
1585   return dwo_name;
1586 }
1587 
1588 /// Return the DW_AT_(GNU_)dwo_id.
1589 /// FIXME: Technically 0 is a valid hash.
1590 static uint64_t GetDWOId(DWARFCompileUnit &dwarf_cu,
1591                          const DWARFDebugInfoEntry &cu_die) {
1592   uint64_t dwo_id =
1593       cu_die.GetAttributeValueAsUnsigned(&dwarf_cu, DW_AT_GNU_dwo_id, 0);
1594   if (!dwo_id)
1595     dwo_id = cu_die.GetAttributeValueAsUnsigned(&dwarf_cu, DW_AT_dwo_id, 0);
1596   return dwo_id;
1597 }
1598 
1599 llvm::Optional<uint64_t> SymbolFileDWARF::GetDWOId() {
1600   if (GetNumCompileUnits() == 1) {
1601     if (auto comp_unit = GetCompileUnitAtIndex(0))
1602       if (DWARFCompileUnit *cu = GetDWARFCompileUnit(comp_unit.get()))
1603         if (DWARFDebugInfoEntry *cu_die = cu->DIE().GetDIE())
1604           if (uint64_t dwo_id = ::GetDWOId(*cu, *cu_die))
1605             return dwo_id;
1606   }
1607   return {};
1608 }
1609 
1610 std::shared_ptr<SymbolFileDWARFDwo>
1611 SymbolFileDWARF::GetDwoSymbolFileForCompileUnit(
1612     DWARFUnit &unit, const DWARFDebugInfoEntry &cu_die) {
1613   // If this is a Darwin-style debug map (non-.dSYM) symbol file,
1614   // never attempt to load ELF-style DWO files since the -gmodules
1615   // support uses the same DWO machanism to specify full debug info
1616   // files for modules. This is handled in
1617   // UpdateExternalModuleListIfNeeded().
1618   if (GetDebugMapSymfile())
1619     return nullptr;
1620 
1621   DWARFCompileUnit *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit);
1622   // Only compile units can be split into two parts.
1623   if (!dwarf_cu)
1624     return nullptr;
1625 
1626   const char *dwo_name = GetDWOName(*dwarf_cu, cu_die);
1627   if (!dwo_name)
1628     return nullptr;
1629 
1630   if (std::shared_ptr<SymbolFileDWARFDwo> dwp_sp = GetDwpSymbolFile())
1631     return dwp_sp;
1632 
1633   FileSpec dwo_file(dwo_name);
1634   FileSystem::Instance().Resolve(dwo_file);
1635   if (dwo_file.IsRelative()) {
1636     const char *comp_dir =
1637         cu_die.GetAttributeValueAsString(dwarf_cu, DW_AT_comp_dir, nullptr);
1638     if (!comp_dir)
1639       return nullptr;
1640 
1641     dwo_file.SetFile(comp_dir, FileSpec::Style::native);
1642     FileSystem::Instance().Resolve(dwo_file);
1643     dwo_file.AppendPathComponent(dwo_name);
1644   }
1645 
1646   if (!FileSystem::Instance().Exists(dwo_file))
1647     return nullptr;
1648 
1649   const lldb::offset_t file_offset = 0;
1650   DataBufferSP dwo_file_data_sp;
1651   lldb::offset_t dwo_file_data_offset = 0;
1652   ObjectFileSP dwo_obj_file = ObjectFile::FindPlugin(
1653       GetObjectFile()->GetModule(), &dwo_file, file_offset,
1654       FileSystem::Instance().GetByteSize(dwo_file), dwo_file_data_sp,
1655       dwo_file_data_offset);
1656   if (dwo_obj_file == nullptr)
1657     return nullptr;
1658 
1659   return std::make_shared<SymbolFileDWARFDwo>(*this, dwo_obj_file,
1660                                               dwarf_cu->GetID());
1661 }
1662 
1663 void SymbolFileDWARF::UpdateExternalModuleListIfNeeded() {
1664   if (m_fetched_external_modules)
1665     return;
1666   m_fetched_external_modules = true;
1667   DWARFDebugInfo &debug_info = DebugInfo();
1668 
1669   // Follow DWO skeleton unit breadcrumbs.
1670   const uint32_t num_compile_units = GetNumCompileUnits();
1671   for (uint32_t cu_idx = 0; cu_idx < num_compile_units; ++cu_idx) {
1672     auto *dwarf_cu =
1673         llvm::dyn_cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(cu_idx));
1674     if (!dwarf_cu)
1675       continue;
1676 
1677     const DWARFBaseDIE die = dwarf_cu->GetUnitDIEOnly();
1678     if (!die || die.HasChildren() || !die.GetDIE())
1679       continue;
1680 
1681     const char *name = die.GetAttributeValueAsString(DW_AT_name, nullptr);
1682     if (!name)
1683       continue;
1684 
1685     ConstString const_name(name);
1686     ModuleSP &module_sp = m_external_type_modules[const_name];
1687     if (module_sp)
1688       continue;
1689 
1690     const char *dwo_path = GetDWOName(*dwarf_cu, *die.GetDIE());
1691     if (!dwo_path)
1692       continue;
1693 
1694     ModuleSpec dwo_module_spec;
1695     dwo_module_spec.GetFileSpec().SetFile(dwo_path, FileSpec::Style::native);
1696     if (dwo_module_spec.GetFileSpec().IsRelative()) {
1697       const char *comp_dir =
1698           die.GetAttributeValueAsString(DW_AT_comp_dir, nullptr);
1699       if (comp_dir) {
1700         dwo_module_spec.GetFileSpec().SetFile(comp_dir,
1701                                               FileSpec::Style::native);
1702         FileSystem::Instance().Resolve(dwo_module_spec.GetFileSpec());
1703         dwo_module_spec.GetFileSpec().AppendPathComponent(dwo_path);
1704       }
1705     }
1706     dwo_module_spec.GetArchitecture() =
1707         m_objfile_sp->GetModule()->GetArchitecture();
1708 
1709     // When LLDB loads "external" modules it looks at the presence of
1710     // DW_AT_dwo_name. However, when the already created module
1711     // (corresponding to .dwo itself) is being processed, it will see
1712     // the presence of DW_AT_dwo_name (which contains the name of dwo
1713     // file) and will try to call ModuleList::GetSharedModule
1714     // again. In some cases (i.e., for empty files) Clang 4.0
1715     // generates a *.dwo file which has DW_AT_dwo_name, but no
1716     // DW_AT_comp_dir. In this case the method
1717     // ModuleList::GetSharedModule will fail and the warning will be
1718     // printed. However, as one can notice in this case we don't
1719     // actually need to try to load the already loaded module
1720     // (corresponding to .dwo) so we simply skip it.
1721     if (m_objfile_sp->GetFileSpec().GetFileNameExtension() == ".dwo" &&
1722         llvm::StringRef(m_objfile_sp->GetFileSpec().GetPath())
1723             .endswith(dwo_module_spec.GetFileSpec().GetPath())) {
1724       continue;
1725     }
1726 
1727     Status error = ModuleList::GetSharedModule(dwo_module_spec, module_sp,
1728                                                nullptr, nullptr, nullptr);
1729     if (!module_sp) {
1730       GetObjectFile()->GetModule()->ReportWarning(
1731           "0x%8.8x: unable to locate module needed for external types: "
1732           "%s\nerror: %s\nDebugging will be degraded due to missing "
1733           "types. Rebuilding the project will regenerate the needed "
1734           "module files.",
1735           die.GetOffset(), dwo_module_spec.GetFileSpec().GetPath().c_str(),
1736           error.AsCString("unknown error"));
1737       continue;
1738     }
1739 
1740     // Verify the DWO hash.
1741     // FIXME: Technically "0" is a valid hash.
1742     uint64_t dwo_id = ::GetDWOId(*dwarf_cu, *die.GetDIE());
1743     if (!dwo_id)
1744       continue;
1745 
1746     auto *dwo_symfile =
1747         llvm::dyn_cast_or_null<SymbolFileDWARF>(module_sp->GetSymbolFile());
1748     if (!dwo_symfile)
1749       continue;
1750     llvm::Optional<uint64_t> dwo_dwo_id = dwo_symfile->GetDWOId();
1751     if (!dwo_dwo_id)
1752       continue;
1753 
1754     if (dwo_id != dwo_dwo_id) {
1755       GetObjectFile()->GetModule()->ReportWarning(
1756           "0x%8.8x: Module %s is out-of-date (hash mismatch). Type information "
1757           "from this module may be incomplete or inconsistent with the rest of "
1758           "the program. Rebuilding the project will regenerate the needed "
1759           "module files.",
1760           die.GetOffset(), dwo_module_spec.GetFileSpec().GetPath().c_str());
1761     }
1762   }
1763 }
1764 
1765 SymbolFileDWARF::GlobalVariableMap &SymbolFileDWARF::GetGlobalAranges() {
1766   if (!m_global_aranges_up) {
1767     m_global_aranges_up = std::make_unique<GlobalVariableMap>();
1768 
1769     ModuleSP module_sp = GetObjectFile()->GetModule();
1770     if (module_sp) {
1771       const size_t num_cus = module_sp->GetNumCompileUnits();
1772       for (size_t i = 0; i < num_cus; ++i) {
1773         CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(i);
1774         if (cu_sp) {
1775           VariableListSP globals_sp = cu_sp->GetVariableList(true);
1776           if (globals_sp) {
1777             const size_t num_globals = globals_sp->GetSize();
1778             for (size_t g = 0; g < num_globals; ++g) {
1779               VariableSP var_sp = globals_sp->GetVariableAtIndex(g);
1780               if (var_sp && !var_sp->GetLocationIsConstantValueData()) {
1781                 const DWARFExpression &location = var_sp->LocationExpression();
1782                 Value location_result;
1783                 Status error;
1784                 if (location.Evaluate(nullptr, LLDB_INVALID_ADDRESS, nullptr,
1785                                       nullptr, location_result, &error)) {
1786                   if (location_result.GetValueType() ==
1787                       Value::eValueTypeFileAddress) {
1788                     lldb::addr_t file_addr =
1789                         location_result.GetScalar().ULongLong();
1790                     lldb::addr_t byte_size = 1;
1791                     if (var_sp->GetType())
1792                       byte_size =
1793                           var_sp->GetType()->GetByteSize(nullptr).getValueOr(0);
1794                     m_global_aranges_up->Append(GlobalVariableMap::Entry(
1795                         file_addr, byte_size, var_sp.get()));
1796                   }
1797                 }
1798               }
1799             }
1800           }
1801         }
1802       }
1803     }
1804     m_global_aranges_up->Sort();
1805   }
1806   return *m_global_aranges_up;
1807 }
1808 
1809 void SymbolFileDWARF::ResolveFunctionAndBlock(lldb::addr_t file_vm_addr,
1810                                               bool lookup_block,
1811                                               SymbolContext &sc) {
1812   assert(sc.comp_unit);
1813   DWARFCompileUnit &cu =
1814       GetDWARFCompileUnit(sc.comp_unit)->GetNonSkeletonUnit();
1815   DWARFDIE function_die = cu.LookupAddress(file_vm_addr);
1816   DWARFDIE block_die;
1817   if (function_die) {
1818     sc.function = sc.comp_unit->FindFunctionByUID(function_die.GetID()).get();
1819     if (sc.function == nullptr)
1820       sc.function = ParseFunction(*sc.comp_unit, function_die);
1821 
1822     if (sc.function && lookup_block)
1823       block_die = function_die.LookupDeepestBlock(file_vm_addr);
1824   }
1825 
1826   if (!sc.function || ! lookup_block)
1827     return;
1828 
1829   Block &block = sc.function->GetBlock(true);
1830   if (block_die)
1831     sc.block = block.FindBlockByID(block_die.GetID());
1832   else
1833     sc.block = block.FindBlockByID(function_die.GetID());
1834 }
1835 
1836 uint32_t SymbolFileDWARF::ResolveSymbolContext(const Address &so_addr,
1837                                                SymbolContextItem resolve_scope,
1838                                                SymbolContext &sc) {
1839   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1840   LLDB_SCOPED_TIMERF("SymbolFileDWARF::"
1841                      "ResolveSymbolContext (so_addr = { "
1842                      "section = %p, offset = 0x%" PRIx64
1843                      " }, resolve_scope = 0x%8.8x)",
1844                      static_cast<void *>(so_addr.GetSection().get()),
1845                      so_addr.GetOffset(), resolve_scope);
1846   uint32_t resolved = 0;
1847   if (resolve_scope &
1848       (eSymbolContextCompUnit | eSymbolContextFunction | eSymbolContextBlock |
1849        eSymbolContextLineEntry | eSymbolContextVariable)) {
1850     lldb::addr_t file_vm_addr = so_addr.GetFileAddress();
1851 
1852     DWARFDebugInfo &debug_info = DebugInfo();
1853     llvm::Expected<DWARFDebugAranges &> aranges =
1854         debug_info.GetCompileUnitAranges();
1855     if (!aranges) {
1856       Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
1857       LLDB_LOG_ERROR(log, aranges.takeError(),
1858                      "SymbolFileDWARF::ResolveSymbolContext failed to get cu "
1859                      "aranges.  {0}");
1860       return 0;
1861     }
1862 
1863     const dw_offset_t cu_offset = aranges->FindAddress(file_vm_addr);
1864     if (cu_offset == DW_INVALID_OFFSET) {
1865       // Global variables are not in the compile unit address ranges. The only
1866       // way to currently find global variables is to iterate over the
1867       // .debug_pubnames or the __apple_names table and find all items in there
1868       // that point to DW_TAG_variable DIEs and then find the address that
1869       // matches.
1870       if (resolve_scope & eSymbolContextVariable) {
1871         GlobalVariableMap &map = GetGlobalAranges();
1872         const GlobalVariableMap::Entry *entry =
1873             map.FindEntryThatContains(file_vm_addr);
1874         if (entry && entry->data) {
1875           Variable *variable = entry->data;
1876           SymbolContextScope *scc = variable->GetSymbolContextScope();
1877           if (scc) {
1878             scc->CalculateSymbolContext(&sc);
1879             sc.variable = variable;
1880           }
1881           return sc.GetResolvedMask();
1882         }
1883       }
1884     } else {
1885       uint32_t cu_idx = DW_INVALID_INDEX;
1886       if (auto *dwarf_cu = llvm::dyn_cast_or_null<DWARFCompileUnit>(
1887               debug_info.GetUnitAtOffset(DIERef::Section::DebugInfo, cu_offset,
1888                                          &cu_idx))) {
1889         sc.comp_unit = GetCompUnitForDWARFCompUnit(*dwarf_cu);
1890         if (sc.comp_unit) {
1891           resolved |= eSymbolContextCompUnit;
1892 
1893           bool force_check_line_table = false;
1894           if (resolve_scope & (eSymbolContextFunction | eSymbolContextBlock)) {
1895             ResolveFunctionAndBlock(file_vm_addr,
1896                                     resolve_scope & eSymbolContextBlock, sc);
1897             if (sc.function)
1898               resolved |= eSymbolContextFunction;
1899             else {
1900               // We might have had a compile unit that had discontiguous address
1901               // ranges where the gaps are symbols that don't have any debug
1902               // info. Discontiguous compile unit address ranges should only
1903               // happen when there aren't other functions from other compile
1904               // units in these gaps. This helps keep the size of the aranges
1905               // down.
1906               force_check_line_table = true;
1907             }
1908             if (sc.block)
1909               resolved |= eSymbolContextBlock;
1910           }
1911 
1912           if ((resolve_scope & eSymbolContextLineEntry) ||
1913               force_check_line_table) {
1914             LineTable *line_table = sc.comp_unit->GetLineTable();
1915             if (line_table != nullptr) {
1916               // And address that makes it into this function should be in terms
1917               // of this debug file if there is no debug map, or it will be an
1918               // address in the .o file which needs to be fixed up to be in
1919               // terms of the debug map executable. Either way, calling
1920               // FixupAddress() will work for us.
1921               Address exe_so_addr(so_addr);
1922               if (FixupAddress(exe_so_addr)) {
1923                 if (line_table->FindLineEntryByAddress(exe_so_addr,
1924                                                        sc.line_entry)) {
1925                   resolved |= eSymbolContextLineEntry;
1926                 }
1927               }
1928             }
1929           }
1930 
1931           if (force_check_line_table && !(resolved & eSymbolContextLineEntry)) {
1932             // We might have had a compile unit that had discontiguous address
1933             // ranges where the gaps are symbols that don't have any debug info.
1934             // Discontiguous compile unit address ranges should only happen when
1935             // there aren't other functions from other compile units in these
1936             // gaps. This helps keep the size of the aranges down.
1937             sc.comp_unit = nullptr;
1938             resolved &= ~eSymbolContextCompUnit;
1939           }
1940         } else {
1941           GetObjectFile()->GetModule()->ReportWarning(
1942               "0x%8.8x: compile unit %u failed to create a valid "
1943               "lldb_private::CompileUnit class.",
1944               cu_offset, cu_idx);
1945         }
1946       }
1947     }
1948   }
1949   return resolved;
1950 }
1951 
1952 uint32_t SymbolFileDWARF::ResolveSymbolContext(const FileSpec &file_spec,
1953                                                uint32_t line,
1954                                                bool check_inlines,
1955                                                SymbolContextItem resolve_scope,
1956                                                SymbolContextList &sc_list) {
1957   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1958   const uint32_t prev_size = sc_list.GetSize();
1959   if (resolve_scope & eSymbolContextCompUnit) {
1960     for (uint32_t cu_idx = 0, num_cus = GetNumCompileUnits(); cu_idx < num_cus;
1961          ++cu_idx) {
1962       CompileUnit *dc_cu = ParseCompileUnitAtIndex(cu_idx).get();
1963       if (!dc_cu)
1964         continue;
1965 
1966       bool file_spec_matches_cu_file_spec =
1967           FileSpec::Match(file_spec, dc_cu->GetPrimaryFile());
1968       if (check_inlines || file_spec_matches_cu_file_spec) {
1969         SymbolContext sc(m_objfile_sp->GetModule());
1970         sc.comp_unit = dc_cu;
1971         uint32_t file_idx = UINT32_MAX;
1972 
1973         // If we are looking for inline functions only and we don't find it
1974         // in the support files, we are done.
1975         if (check_inlines) {
1976           file_idx =
1977               sc.comp_unit->GetSupportFiles().FindFileIndex(1, file_spec, true);
1978           if (file_idx == UINT32_MAX)
1979             continue;
1980         }
1981 
1982         if (line != 0) {
1983           LineTable *line_table = sc.comp_unit->GetLineTable();
1984 
1985           if (line_table != nullptr && line != 0) {
1986             // We will have already looked up the file index if we are
1987             // searching for inline entries.
1988             if (!check_inlines)
1989               file_idx = sc.comp_unit->GetSupportFiles().FindFileIndex(
1990                   1, file_spec, true);
1991 
1992             if (file_idx != UINT32_MAX) {
1993               uint32_t found_line;
1994               uint32_t line_idx = line_table->FindLineEntryIndexByFileIndex(
1995                   0, file_idx, line, false, &sc.line_entry);
1996               found_line = sc.line_entry.line;
1997 
1998               while (line_idx != UINT32_MAX) {
1999                 sc.function = nullptr;
2000                 sc.block = nullptr;
2001                 if (resolve_scope &
2002                     (eSymbolContextFunction | eSymbolContextBlock)) {
2003                   const lldb::addr_t file_vm_addr =
2004                       sc.line_entry.range.GetBaseAddress().GetFileAddress();
2005                   if (file_vm_addr != LLDB_INVALID_ADDRESS) {
2006                     ResolveFunctionAndBlock(
2007                         file_vm_addr, resolve_scope & eSymbolContextBlock, sc);
2008                   }
2009                 }
2010 
2011                 sc_list.Append(sc);
2012                 line_idx = line_table->FindLineEntryIndexByFileIndex(
2013                     line_idx + 1, file_idx, found_line, true, &sc.line_entry);
2014               }
2015             }
2016           } else if (file_spec_matches_cu_file_spec && !check_inlines) {
2017             // only append the context if we aren't looking for inline call
2018             // sites by file and line and if the file spec matches that of
2019             // the compile unit
2020             sc_list.Append(sc);
2021           }
2022         } else if (file_spec_matches_cu_file_spec && !check_inlines) {
2023           // only append the context if we aren't looking for inline call
2024           // sites by file and line and if the file spec matches that of
2025           // the compile unit
2026           sc_list.Append(sc);
2027         }
2028 
2029         if (!check_inlines)
2030           break;
2031       }
2032     }
2033   }
2034   return sc_list.GetSize() - prev_size;
2035 }
2036 
2037 void SymbolFileDWARF::PreloadSymbols() {
2038   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2039   m_index->Preload();
2040 }
2041 
2042 std::recursive_mutex &SymbolFileDWARF::GetModuleMutex() const {
2043   lldb::ModuleSP module_sp(m_debug_map_module_wp.lock());
2044   if (module_sp)
2045     return module_sp->GetMutex();
2046   return GetObjectFile()->GetModule()->GetMutex();
2047 }
2048 
2049 bool SymbolFileDWARF::DeclContextMatchesThisSymbolFile(
2050     const lldb_private::CompilerDeclContext &decl_ctx) {
2051   if (!decl_ctx.IsValid()) {
2052     // Invalid namespace decl which means we aren't matching only things in
2053     // this symbol file, so return true to indicate it matches this symbol
2054     // file.
2055     return true;
2056   }
2057 
2058   TypeSystem *decl_ctx_type_system = decl_ctx.GetTypeSystem();
2059   auto type_system_or_err = GetTypeSystemForLanguage(
2060       decl_ctx_type_system->GetMinimumLanguage(nullptr));
2061   if (auto err = type_system_or_err.takeError()) {
2062     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
2063                    std::move(err),
2064                    "Unable to match namespace decl using TypeSystem");
2065     return false;
2066   }
2067 
2068   if (decl_ctx_type_system == &type_system_or_err.get())
2069     return true; // The type systems match, return true
2070 
2071   // The namespace AST was valid, and it does not match...
2072   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2073 
2074   if (log)
2075     GetObjectFile()->GetModule()->LogMessage(
2076         log, "Valid namespace does not match symbol file");
2077 
2078   return false;
2079 }
2080 
2081 void SymbolFileDWARF::FindGlobalVariables(
2082     ConstString name, const CompilerDeclContext &parent_decl_ctx,
2083     uint32_t max_matches, VariableList &variables) {
2084   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2085   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2086 
2087   if (log)
2088     GetObjectFile()->GetModule()->LogMessage(
2089         log,
2090         "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", "
2091         "parent_decl_ctx=%p, max_matches=%u, variables)",
2092         name.GetCString(), static_cast<const void *>(&parent_decl_ctx),
2093         max_matches);
2094 
2095   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
2096     return;
2097 
2098   // Remember how many variables are in the list before we search.
2099   const uint32_t original_size = variables.GetSize();
2100 
2101   llvm::StringRef basename;
2102   llvm::StringRef context;
2103   bool name_is_mangled = (bool)Mangled(name);
2104 
2105   if (!CPlusPlusLanguage::ExtractContextAndIdentifier(name.GetCString(),
2106                                                       context, basename))
2107     basename = name.GetStringRef();
2108 
2109   // Loop invariant: Variables up to this index have been checked for context
2110   // matches.
2111   uint32_t pruned_idx = original_size;
2112 
2113   SymbolContext sc;
2114   m_index->GetGlobalVariables(ConstString(basename), [&](DWARFDIE die) {
2115     if (!sc.module_sp)
2116       sc.module_sp = m_objfile_sp->GetModule();
2117     assert(sc.module_sp);
2118 
2119     if (die.Tag() != DW_TAG_variable)
2120       return true;
2121 
2122     auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU());
2123     if (!dwarf_cu)
2124       return true;
2125     sc.comp_unit = GetCompUnitForDWARFCompUnit(*dwarf_cu);
2126 
2127     if (parent_decl_ctx) {
2128       if (DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU())) {
2129         CompilerDeclContext actual_parent_decl_ctx =
2130             dwarf_ast->GetDeclContextContainingUIDFromDWARF(die);
2131         if (!actual_parent_decl_ctx ||
2132             actual_parent_decl_ctx != parent_decl_ctx)
2133           return true;
2134       }
2135     }
2136 
2137     ParseVariables(sc, die, LLDB_INVALID_ADDRESS, false, false, &variables);
2138     while (pruned_idx < variables.GetSize()) {
2139       VariableSP var_sp = variables.GetVariableAtIndex(pruned_idx);
2140       if (name_is_mangled ||
2141           var_sp->GetName().GetStringRef().contains(name.GetStringRef()))
2142         ++pruned_idx;
2143       else
2144         variables.RemoveVariableAtIndex(pruned_idx);
2145     }
2146 
2147     return variables.GetSize() - original_size < max_matches;
2148   });
2149 
2150   // Return the number of variable that were appended to the list
2151   const uint32_t num_matches = variables.GetSize() - original_size;
2152   if (log && num_matches > 0) {
2153     GetObjectFile()->GetModule()->LogMessage(
2154         log,
2155         "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", "
2156         "parent_decl_ctx=%p, max_matches=%u, variables) => %u",
2157         name.GetCString(), static_cast<const void *>(&parent_decl_ctx),
2158         max_matches, num_matches);
2159   }
2160 }
2161 
2162 void SymbolFileDWARF::FindGlobalVariables(const RegularExpression &regex,
2163                                           uint32_t max_matches,
2164                                           VariableList &variables) {
2165   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2166   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2167 
2168   if (log) {
2169     GetObjectFile()->GetModule()->LogMessage(
2170         log,
2171         "SymbolFileDWARF::FindGlobalVariables (regex=\"%s\", "
2172         "max_matches=%u, variables)",
2173         regex.GetText().str().c_str(), max_matches);
2174   }
2175 
2176   // Remember how many variables are in the list before we search.
2177   const uint32_t original_size = variables.GetSize();
2178 
2179   SymbolContext sc;
2180   m_index->GetGlobalVariables(regex, [&](DWARFDIE die) {
2181     if (!sc.module_sp)
2182       sc.module_sp = m_objfile_sp->GetModule();
2183     assert(sc.module_sp);
2184 
2185     DWARFCompileUnit *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU());
2186     if (!dwarf_cu)
2187       return true;
2188     sc.comp_unit = GetCompUnitForDWARFCompUnit(*dwarf_cu);
2189 
2190     ParseVariables(sc, die, LLDB_INVALID_ADDRESS, false, false, &variables);
2191 
2192     return variables.GetSize() - original_size < max_matches;
2193   });
2194 }
2195 
2196 bool SymbolFileDWARF::ResolveFunction(const DWARFDIE &orig_die,
2197                                       bool include_inlines,
2198                                       SymbolContextList &sc_list) {
2199   SymbolContext sc;
2200 
2201   if (!orig_die)
2202     return false;
2203 
2204   // If we were passed a die that is not a function, just return false...
2205   if (!(orig_die.Tag() == DW_TAG_subprogram ||
2206         (include_inlines && orig_die.Tag() == DW_TAG_inlined_subroutine)))
2207     return false;
2208 
2209   DWARFDIE die = orig_die;
2210   DWARFDIE inlined_die;
2211   if (die.Tag() == DW_TAG_inlined_subroutine) {
2212     inlined_die = die;
2213 
2214     while (true) {
2215       die = die.GetParent();
2216 
2217       if (die) {
2218         if (die.Tag() == DW_TAG_subprogram)
2219           break;
2220       } else
2221         break;
2222     }
2223   }
2224   assert(die && die.Tag() == DW_TAG_subprogram);
2225   if (GetFunction(die, sc)) {
2226     Address addr;
2227     // Parse all blocks if needed
2228     if (inlined_die) {
2229       Block &function_block = sc.function->GetBlock(true);
2230       sc.block = function_block.FindBlockByID(inlined_die.GetID());
2231       if (sc.block == nullptr)
2232         sc.block = function_block.FindBlockByID(inlined_die.GetOffset());
2233       if (sc.block == nullptr || !sc.block->GetStartAddress(addr))
2234         addr.Clear();
2235     } else {
2236       sc.block = nullptr;
2237       addr = sc.function->GetAddressRange().GetBaseAddress();
2238     }
2239 
2240 
2241     if (auto section_sp = addr.GetSection()) {
2242       if (section_sp->GetPermissions() & ePermissionsExecutable) {
2243         sc_list.Append(sc);
2244         return true;
2245       }
2246     }
2247   }
2248 
2249   return false;
2250 }
2251 
2252 bool SymbolFileDWARF::DIEInDeclContext(const CompilerDeclContext &decl_ctx,
2253                                        const DWARFDIE &die) {
2254   // If we have no parent decl context to match this DIE matches, and if the
2255   // parent decl context isn't valid, we aren't trying to look for any
2256   // particular decl context so any die matches.
2257   if (!decl_ctx.IsValid())
2258     return true;
2259 
2260   if (die) {
2261     if (DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU())) {
2262       if (CompilerDeclContext actual_decl_ctx =
2263               dwarf_ast->GetDeclContextContainingUIDFromDWARF(die))
2264         return decl_ctx.IsContainedInLookup(actual_decl_ctx);
2265     }
2266   }
2267   return false;
2268 }
2269 
2270 void SymbolFileDWARF::FindFunctions(ConstString name,
2271                                     const CompilerDeclContext &parent_decl_ctx,
2272                                     FunctionNameType name_type_mask,
2273                                     bool include_inlines,
2274                                     SymbolContextList &sc_list) {
2275   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2276   LLDB_SCOPED_TIMERF("SymbolFileDWARF::FindFunctions (name = '%s')",
2277                      name.AsCString());
2278 
2279   // eFunctionNameTypeAuto should be pre-resolved by a call to
2280   // Module::LookupInfo::LookupInfo()
2281   assert((name_type_mask & eFunctionNameTypeAuto) == 0);
2282 
2283   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2284 
2285   if (log) {
2286     GetObjectFile()->GetModule()->LogMessage(
2287         log,
2288         "SymbolFileDWARF::FindFunctions (name=\"%s\", name_type_mask=0x%x, sc_list)",
2289         name.GetCString(), name_type_mask);
2290   }
2291 
2292   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
2293     return;
2294 
2295   // If name is empty then we won't find anything.
2296   if (name.IsEmpty())
2297     return;
2298 
2299   // Remember how many sc_list are in the list before we search in case we are
2300   // appending the results to a variable list.
2301 
2302   const uint32_t original_size = sc_list.GetSize();
2303 
2304   llvm::DenseSet<const DWARFDebugInfoEntry *> resolved_dies;
2305 
2306   m_index->GetFunctions(name, *this, parent_decl_ctx, name_type_mask,
2307                         [&](DWARFDIE die) {
2308                           if (resolved_dies.insert(die.GetDIE()).second)
2309                             ResolveFunction(die, include_inlines, sc_list);
2310                           return true;
2311                         });
2312 
2313   // Return the number of variable that were appended to the list
2314   const uint32_t num_matches = sc_list.GetSize() - original_size;
2315 
2316   if (log && num_matches > 0) {
2317     GetObjectFile()->GetModule()->LogMessage(
2318         log,
2319         "SymbolFileDWARF::FindFunctions (name=\"%s\", "
2320         "name_type_mask=0x%x, include_inlines=%d, sc_list) => %u",
2321         name.GetCString(), name_type_mask, include_inlines,
2322         num_matches);
2323   }
2324 }
2325 
2326 void SymbolFileDWARF::FindFunctions(const RegularExpression &regex,
2327                                     bool include_inlines,
2328                                     SymbolContextList &sc_list) {
2329   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2330   LLDB_SCOPED_TIMERF("SymbolFileDWARF::FindFunctions (regex = '%s')",
2331                      regex.GetText().str().c_str());
2332 
2333   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2334 
2335   if (log) {
2336     GetObjectFile()->GetModule()->LogMessage(
2337         log, "SymbolFileDWARF::FindFunctions (regex=\"%s\", sc_list)",
2338         regex.GetText().str().c_str());
2339   }
2340 
2341   llvm::DenseSet<const DWARFDebugInfoEntry *> resolved_dies;
2342   m_index->GetFunctions(regex, [&](DWARFDIE die) {
2343     if (resolved_dies.insert(die.GetDIE()).second)
2344       ResolveFunction(die, include_inlines, sc_list);
2345     return true;
2346   });
2347 }
2348 
2349 void SymbolFileDWARF::GetMangledNamesForFunction(
2350     const std::string &scope_qualified_name,
2351     std::vector<ConstString> &mangled_names) {
2352   DWARFDebugInfo &info = DebugInfo();
2353   uint32_t num_comp_units = info.GetNumUnits();
2354   for (uint32_t i = 0; i < num_comp_units; i++) {
2355     DWARFUnit *cu = info.GetUnitAtIndex(i);
2356     if (cu == nullptr)
2357       continue;
2358 
2359     SymbolFileDWARFDwo *dwo = cu->GetDwoSymbolFile();
2360     if (dwo)
2361       dwo->GetMangledNamesForFunction(scope_qualified_name, mangled_names);
2362   }
2363 
2364   for (DIERef die_ref :
2365        m_function_scope_qualified_name_map.lookup(scope_qualified_name)) {
2366     DWARFDIE die = GetDIE(die_ref);
2367     mangled_names.push_back(ConstString(die.GetMangledName()));
2368   }
2369 }
2370 
2371 void SymbolFileDWARF::FindTypes(
2372     ConstString name, const CompilerDeclContext &parent_decl_ctx,
2373     uint32_t max_matches,
2374     llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
2375     TypeMap &types) {
2376   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2377   // Make sure we haven't already searched this SymbolFile before.
2378   if (!searched_symbol_files.insert(this).second)
2379     return;
2380 
2381   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2382 
2383   if (log) {
2384     if (parent_decl_ctx)
2385       GetObjectFile()->GetModule()->LogMessage(
2386           log,
2387           "SymbolFileDWARF::FindTypes (sc, name=\"%s\", parent_decl_ctx = "
2388           "%p (\"%s\"), max_matches=%u, type_list)",
2389           name.GetCString(), static_cast<const void *>(&parent_decl_ctx),
2390           parent_decl_ctx.GetName().AsCString("<NULL>"), max_matches);
2391     else
2392       GetObjectFile()->GetModule()->LogMessage(
2393           log,
2394           "SymbolFileDWARF::FindTypes (sc, name=\"%s\", parent_decl_ctx = "
2395           "NULL, max_matches=%u, type_list)",
2396           name.GetCString(), max_matches);
2397   }
2398 
2399   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
2400     return;
2401 
2402   m_index->GetTypes(name, [&](DWARFDIE die) {
2403     if (!DIEInDeclContext(parent_decl_ctx, die))
2404       return true; // The containing decl contexts don't match
2405 
2406     Type *matching_type = ResolveType(die, true, true);
2407     if (!matching_type)
2408       return true;
2409 
2410     // We found a type pointer, now find the shared pointer form our type
2411     // list
2412     types.InsertUnique(matching_type->shared_from_this());
2413     return types.GetSize() < max_matches;
2414   });
2415 
2416   // Next search through the reachable Clang modules. This only applies for
2417   // DWARF objects compiled with -gmodules that haven't been processed by
2418   // dsymutil.
2419   if (types.GetSize() < max_matches) {
2420     UpdateExternalModuleListIfNeeded();
2421 
2422     for (const auto &pair : m_external_type_modules)
2423       if (ModuleSP external_module_sp = pair.second)
2424         if (SymbolFile *sym_file = external_module_sp->GetSymbolFile())
2425           sym_file->FindTypes(name, parent_decl_ctx, max_matches,
2426                               searched_symbol_files, types);
2427   }
2428 
2429   if (log && types.GetSize()) {
2430     if (parent_decl_ctx) {
2431       GetObjectFile()->GetModule()->LogMessage(
2432           log,
2433           "SymbolFileDWARF::FindTypes (sc, name=\"%s\", parent_decl_ctx "
2434           "= %p (\"%s\"), max_matches=%u, type_list) => %u",
2435           name.GetCString(), static_cast<const void *>(&parent_decl_ctx),
2436           parent_decl_ctx.GetName().AsCString("<NULL>"), max_matches,
2437           types.GetSize());
2438     } else {
2439       GetObjectFile()->GetModule()->LogMessage(
2440           log,
2441           "SymbolFileDWARF::FindTypes (sc, name=\"%s\", parent_decl_ctx "
2442           "= NULL, max_matches=%u, type_list) => %u",
2443           name.GetCString(), max_matches, types.GetSize());
2444     }
2445   }
2446 }
2447 
2448 void SymbolFileDWARF::FindTypes(
2449     llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
2450     llvm::DenseSet<SymbolFile *> &searched_symbol_files, TypeMap &types) {
2451   // Make sure we haven't already searched this SymbolFile before.
2452   if (!searched_symbol_files.insert(this).second)
2453     return;
2454 
2455   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2456   if (pattern.empty())
2457     return;
2458 
2459   ConstString name = pattern.back().name;
2460 
2461   if (!name)
2462     return;
2463 
2464   m_index->GetTypes(name, [&](DWARFDIE die) {
2465     if (!languages[GetLanguage(*die.GetCU())])
2466       return true;
2467 
2468     llvm::SmallVector<CompilerContext, 4> die_context;
2469     die.GetDeclContext(die_context);
2470     if (!contextMatches(die_context, pattern))
2471       return true;
2472 
2473     if (Type *matching_type = ResolveType(die, true, true)) {
2474       // We found a type pointer, now find the shared pointer form our type
2475       // list.
2476       types.InsertUnique(matching_type->shared_from_this());
2477     }
2478     return true;
2479   });
2480 
2481   // Next search through the reachable Clang modules. This only applies for
2482   // DWARF objects compiled with -gmodules that haven't been processed by
2483   // dsymutil.
2484   UpdateExternalModuleListIfNeeded();
2485 
2486   for (const auto &pair : m_external_type_modules)
2487     if (ModuleSP external_module_sp = pair.second)
2488       external_module_sp->FindTypes(pattern, languages, searched_symbol_files,
2489                                     types);
2490 }
2491 
2492 CompilerDeclContext
2493 SymbolFileDWARF::FindNamespace(ConstString name,
2494                                const CompilerDeclContext &parent_decl_ctx) {
2495   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
2496   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
2497 
2498   if (log) {
2499     GetObjectFile()->GetModule()->LogMessage(
2500         log, "SymbolFileDWARF::FindNamespace (sc, name=\"%s\")",
2501         name.GetCString());
2502   }
2503 
2504   CompilerDeclContext namespace_decl_ctx;
2505 
2506   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
2507     return namespace_decl_ctx;
2508 
2509   m_index->GetNamespaces(name, [&](DWARFDIE die) {
2510     if (!DIEInDeclContext(parent_decl_ctx, die))
2511       return true; // The containing decl contexts don't match
2512 
2513     DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU());
2514     if (!dwarf_ast)
2515       return true;
2516 
2517     namespace_decl_ctx = dwarf_ast->GetDeclContextForUIDFromDWARF(die);
2518     return !namespace_decl_ctx.IsValid();
2519   });
2520 
2521   if (log && namespace_decl_ctx) {
2522     GetObjectFile()->GetModule()->LogMessage(
2523         log,
2524         "SymbolFileDWARF::FindNamespace (sc, name=\"%s\") => "
2525         "CompilerDeclContext(%p/%p) \"%s\"",
2526         name.GetCString(),
2527         static_cast<const void *>(namespace_decl_ctx.GetTypeSystem()),
2528         static_cast<const void *>(namespace_decl_ctx.GetOpaqueDeclContext()),
2529         namespace_decl_ctx.GetName().AsCString("<NULL>"));
2530   }
2531 
2532   return namespace_decl_ctx;
2533 }
2534 
2535 TypeSP SymbolFileDWARF::GetTypeForDIE(const DWARFDIE &die,
2536                                       bool resolve_function_context) {
2537   TypeSP type_sp;
2538   if (die) {
2539     Type *type_ptr = GetDIEToType().lookup(die.GetDIE());
2540     if (type_ptr == nullptr) {
2541       SymbolContextScope *scope;
2542       if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU()))
2543         scope = GetCompUnitForDWARFCompUnit(*dwarf_cu);
2544       else
2545         scope = GetObjectFile()->GetModule().get();
2546       assert(scope);
2547       SymbolContext sc(scope);
2548       const DWARFDebugInfoEntry *parent_die = die.GetParent().GetDIE();
2549       while (parent_die != nullptr) {
2550         if (parent_die->Tag() == DW_TAG_subprogram)
2551           break;
2552         parent_die = parent_die->GetParent();
2553       }
2554       SymbolContext sc_backup = sc;
2555       if (resolve_function_context && parent_die != nullptr &&
2556           !GetFunction(DWARFDIE(die.GetCU(), parent_die), sc))
2557         sc = sc_backup;
2558 
2559       type_sp = ParseType(sc, die, nullptr);
2560     } else if (type_ptr != DIE_IS_BEING_PARSED) {
2561       // Grab the existing type from the master types lists
2562       type_sp = type_ptr->shared_from_this();
2563     }
2564   }
2565   return type_sp;
2566 }
2567 
2568 DWARFDIE
2569 SymbolFileDWARF::GetDeclContextDIEContainingDIE(const DWARFDIE &orig_die) {
2570   if (orig_die) {
2571     DWARFDIE die = orig_die;
2572 
2573     while (die) {
2574       // If this is the original DIE that we are searching for a declaration
2575       // for, then don't look in the cache as we don't want our own decl
2576       // context to be our decl context...
2577       if (orig_die != die) {
2578         switch (die.Tag()) {
2579         case DW_TAG_compile_unit:
2580         case DW_TAG_partial_unit:
2581         case DW_TAG_namespace:
2582         case DW_TAG_structure_type:
2583         case DW_TAG_union_type:
2584         case DW_TAG_class_type:
2585         case DW_TAG_lexical_block:
2586         case DW_TAG_subprogram:
2587           return die;
2588         case DW_TAG_inlined_subroutine: {
2589           DWARFDIE abs_die = die.GetReferencedDIE(DW_AT_abstract_origin);
2590           if (abs_die) {
2591             return abs_die;
2592           }
2593           break;
2594         }
2595         default:
2596           break;
2597         }
2598       }
2599 
2600       DWARFDIE spec_die = die.GetReferencedDIE(DW_AT_specification);
2601       if (spec_die) {
2602         DWARFDIE decl_ctx_die = GetDeclContextDIEContainingDIE(spec_die);
2603         if (decl_ctx_die)
2604           return decl_ctx_die;
2605       }
2606 
2607       DWARFDIE abs_die = die.GetReferencedDIE(DW_AT_abstract_origin);
2608       if (abs_die) {
2609         DWARFDIE decl_ctx_die = GetDeclContextDIEContainingDIE(abs_die);
2610         if (decl_ctx_die)
2611           return decl_ctx_die;
2612       }
2613 
2614       die = die.GetParent();
2615     }
2616   }
2617   return DWARFDIE();
2618 }
2619 
2620 Symbol *SymbolFileDWARF::GetObjCClassSymbol(ConstString objc_class_name) {
2621   Symbol *objc_class_symbol = nullptr;
2622   if (m_objfile_sp) {
2623     Symtab *symtab = m_objfile_sp->GetSymtab();
2624     if (symtab) {
2625       objc_class_symbol = symtab->FindFirstSymbolWithNameAndType(
2626           objc_class_name, eSymbolTypeObjCClass, Symtab::eDebugNo,
2627           Symtab::eVisibilityAny);
2628     }
2629   }
2630   return objc_class_symbol;
2631 }
2632 
2633 // Some compilers don't emit the DW_AT_APPLE_objc_complete_type attribute. If
2634 // they don't then we can end up looking through all class types for a complete
2635 // type and never find the full definition. We need to know if this attribute
2636 // is supported, so we determine this here and cache th result. We also need to
2637 // worry about the debug map
2638 // DWARF file
2639 // if we are doing darwin DWARF in .o file debugging.
2640 bool SymbolFileDWARF::Supports_DW_AT_APPLE_objc_complete_type(DWARFUnit *cu) {
2641   if (m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolCalculate) {
2642     m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolNo;
2643     if (cu && cu->Supports_DW_AT_APPLE_objc_complete_type())
2644       m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolYes;
2645     else {
2646       DWARFDebugInfo &debug_info = DebugInfo();
2647       const uint32_t num_compile_units = GetNumCompileUnits();
2648       for (uint32_t cu_idx = 0; cu_idx < num_compile_units; ++cu_idx) {
2649         DWARFUnit *dwarf_cu = debug_info.GetUnitAtIndex(cu_idx);
2650         if (dwarf_cu != cu &&
2651             dwarf_cu->Supports_DW_AT_APPLE_objc_complete_type()) {
2652           m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolYes;
2653           break;
2654         }
2655       }
2656     }
2657     if (m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolNo &&
2658         GetDebugMapSymfile())
2659       return m_debug_map_symfile->Supports_DW_AT_APPLE_objc_complete_type(this);
2660   }
2661   return m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolYes;
2662 }
2663 
2664 // This function can be used when a DIE is found that is a forward declaration
2665 // DIE and we want to try and find a type that has the complete definition.
2666 TypeSP SymbolFileDWARF::FindCompleteObjCDefinitionTypeForDIE(
2667     const DWARFDIE &die, ConstString type_name, bool must_be_implementation) {
2668 
2669   TypeSP type_sp;
2670 
2671   if (!type_name || (must_be_implementation && !GetObjCClassSymbol(type_name)))
2672     return type_sp;
2673 
2674   m_index->GetCompleteObjCClass(
2675       type_name, must_be_implementation, [&](DWARFDIE type_die) {
2676         bool try_resolving_type = false;
2677 
2678         // Don't try and resolve the DIE we are looking for with the DIE
2679         // itself!
2680         if (type_die != die) {
2681           switch (type_die.Tag()) {
2682           case DW_TAG_class_type:
2683           case DW_TAG_structure_type:
2684             try_resolving_type = true;
2685             break;
2686           default:
2687             break;
2688           }
2689         }
2690         if (!try_resolving_type)
2691           return true;
2692 
2693         if (must_be_implementation &&
2694             type_die.Supports_DW_AT_APPLE_objc_complete_type())
2695           try_resolving_type = type_die.GetAttributeValueAsUnsigned(
2696               DW_AT_APPLE_objc_complete_type, 0);
2697         if (!try_resolving_type)
2698           return true;
2699 
2700         Type *resolved_type = ResolveType(type_die, false, true);
2701         if (!resolved_type || resolved_type == DIE_IS_BEING_PARSED)
2702           return true;
2703 
2704         DEBUG_PRINTF(
2705             "resolved 0x%8.8" PRIx64 " from %s to 0x%8.8" PRIx64
2706             " (cu 0x%8.8" PRIx64 ")\n",
2707             die.GetID(),
2708             m_objfile_sp->GetFileSpec().GetFilename().AsCString("<Unknown>"),
2709             type_die.GetID(), type_cu->GetID());
2710 
2711         if (die)
2712           GetDIEToType()[die.GetDIE()] = resolved_type;
2713         type_sp = resolved_type->shared_from_this();
2714         return false;
2715       });
2716   return type_sp;
2717 }
2718 
2719 // This function helps to ensure that the declaration contexts match for two
2720 // different DIEs. Often times debug information will refer to a forward
2721 // declaration of a type (the equivalent of "struct my_struct;". There will
2722 // often be a declaration of that type elsewhere that has the full definition.
2723 // When we go looking for the full type "my_struct", we will find one or more
2724 // matches in the accelerator tables and we will then need to make sure the
2725 // type was in the same declaration context as the original DIE. This function
2726 // can efficiently compare two DIEs and will return true when the declaration
2727 // context matches, and false when they don't.
2728 bool SymbolFileDWARF::DIEDeclContextsMatch(const DWARFDIE &die1,
2729                                            const DWARFDIE &die2) {
2730   if (die1 == die2)
2731     return true;
2732 
2733   std::vector<DWARFDIE> decl_ctx_1;
2734   std::vector<DWARFDIE> decl_ctx_2;
2735   // The declaration DIE stack is a stack of the declaration context DIEs all
2736   // the way back to the compile unit. If a type "T" is declared inside a class
2737   // "B", and class "B" is declared inside a class "A" and class "A" is in a
2738   // namespace "lldb", and the namespace is in a compile unit, there will be a
2739   // stack of DIEs:
2740   //
2741   //   [0] DW_TAG_class_type for "B"
2742   //   [1] DW_TAG_class_type for "A"
2743   //   [2] DW_TAG_namespace  for "lldb"
2744   //   [3] DW_TAG_compile_unit or DW_TAG_partial_unit for the source file.
2745   //
2746   // We grab both contexts and make sure that everything matches all the way
2747   // back to the compiler unit.
2748 
2749   // First lets grab the decl contexts for both DIEs
2750   decl_ctx_1 = die1.GetDeclContextDIEs();
2751   decl_ctx_2 = die2.GetDeclContextDIEs();
2752   // Make sure the context arrays have the same size, otherwise we are done
2753   const size_t count1 = decl_ctx_1.size();
2754   const size_t count2 = decl_ctx_2.size();
2755   if (count1 != count2)
2756     return false;
2757 
2758   // Make sure the DW_TAG values match all the way back up the compile unit. If
2759   // they don't, then we are done.
2760   DWARFDIE decl_ctx_die1;
2761   DWARFDIE decl_ctx_die2;
2762   size_t i;
2763   for (i = 0; i < count1; i++) {
2764     decl_ctx_die1 = decl_ctx_1[i];
2765     decl_ctx_die2 = decl_ctx_2[i];
2766     if (decl_ctx_die1.Tag() != decl_ctx_die2.Tag())
2767       return false;
2768   }
2769 #ifndef NDEBUG
2770 
2771   // Make sure the top item in the decl context die array is always
2772   // DW_TAG_compile_unit or DW_TAG_partial_unit. If it isn't then
2773   // something went wrong in the DWARFDIE::GetDeclContextDIEs()
2774   // function.
2775   dw_tag_t cu_tag = decl_ctx_1[count1 - 1].Tag();
2776   UNUSED_IF_ASSERT_DISABLED(cu_tag);
2777   assert(cu_tag == DW_TAG_compile_unit || cu_tag == DW_TAG_partial_unit);
2778 
2779 #endif
2780   // Always skip the compile unit when comparing by only iterating up to "count
2781   // - 1". Here we compare the names as we go.
2782   for (i = 0; i < count1 - 1; i++) {
2783     decl_ctx_die1 = decl_ctx_1[i];
2784     decl_ctx_die2 = decl_ctx_2[i];
2785     const char *name1 = decl_ctx_die1.GetName();
2786     const char *name2 = decl_ctx_die2.GetName();
2787     // If the string was from a DW_FORM_strp, then the pointer will often be
2788     // the same!
2789     if (name1 == name2)
2790       continue;
2791 
2792     // Name pointers are not equal, so only compare the strings if both are not
2793     // NULL.
2794     if (name1 && name2) {
2795       // If the strings don't compare, we are done...
2796       if (strcmp(name1, name2) != 0)
2797         return false;
2798     } else {
2799       // One name was NULL while the other wasn't
2800       return false;
2801     }
2802   }
2803   // We made it through all of the checks and the declaration contexts are
2804   // equal.
2805   return true;
2806 }
2807 
2808 TypeSP SymbolFileDWARF::FindDefinitionTypeForDWARFDeclContext(
2809     const DWARFDeclContext &dwarf_decl_ctx) {
2810   TypeSP type_sp;
2811 
2812   const uint32_t dwarf_decl_ctx_count = dwarf_decl_ctx.GetSize();
2813   if (dwarf_decl_ctx_count > 0) {
2814     const ConstString type_name(dwarf_decl_ctx[0].name);
2815     const dw_tag_t tag = dwarf_decl_ctx[0].tag;
2816 
2817     if (type_name) {
2818       Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION |
2819                                             DWARF_LOG_LOOKUPS));
2820       if (log) {
2821         GetObjectFile()->GetModule()->LogMessage(
2822             log,
2823             "SymbolFileDWARF::FindDefinitionTypeForDWARFDeclContext(tag=%"
2824             "s, qualified-name='%s')",
2825             DW_TAG_value_to_name(dwarf_decl_ctx[0].tag),
2826             dwarf_decl_ctx.GetQualifiedName());
2827       }
2828 
2829       // Get the type system that we are looking to find a type for. We will
2830       // use this to ensure any matches we find are in a language that this
2831       // type system supports
2832       const LanguageType language = dwarf_decl_ctx.GetLanguage();
2833       TypeSystem *type_system = nullptr;
2834       if (language != eLanguageTypeUnknown) {
2835         auto type_system_or_err = GetTypeSystemForLanguage(language);
2836         if (auto err = type_system_or_err.takeError()) {
2837           LLDB_LOG_ERROR(
2838               lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
2839               std::move(err), "Cannot get TypeSystem for language {}",
2840               Language::GetNameForLanguageType(language));
2841         } else {
2842           type_system = &type_system_or_err.get();
2843         }
2844       }
2845 
2846       m_index->GetTypes(dwarf_decl_ctx, [&](DWARFDIE type_die) {
2847         // Make sure type_die's langauge matches the type system we are
2848         // looking for. We don't want to find a "Foo" type from Java if we
2849         // are looking for a "Foo" type for C, C++, ObjC, or ObjC++.
2850         if (type_system &&
2851             !type_system->SupportsLanguage(GetLanguage(*type_die.GetCU())))
2852           return true;
2853         bool try_resolving_type = false;
2854 
2855         // Don't try and resolve the DIE we are looking for with the DIE
2856         // itself!
2857         const dw_tag_t type_tag = type_die.Tag();
2858         // Make sure the tags match
2859         if (type_tag == tag) {
2860           // The tags match, lets try resolving this type
2861           try_resolving_type = true;
2862         } else {
2863           // The tags don't match, but we need to watch our for a forward
2864           // declaration for a struct and ("struct foo") ends up being a
2865           // class ("class foo { ... };") or vice versa.
2866           switch (type_tag) {
2867           case DW_TAG_class_type:
2868             // We had a "class foo", see if we ended up with a "struct foo
2869             // { ... };"
2870             try_resolving_type = (tag == DW_TAG_structure_type);
2871             break;
2872           case DW_TAG_structure_type:
2873             // We had a "struct foo", see if we ended up with a "class foo
2874             // { ... };"
2875             try_resolving_type = (tag == DW_TAG_class_type);
2876             break;
2877           default:
2878             // Tags don't match, don't event try to resolve using this type
2879             // whose name matches....
2880             break;
2881           }
2882         }
2883 
2884         if (!try_resolving_type) {
2885           if (log) {
2886             std::string qualified_name;
2887             type_die.GetQualifiedName(qualified_name);
2888             GetObjectFile()->GetModule()->LogMessage(
2889                 log,
2890                 "SymbolFileDWARF::"
2891                 "FindDefinitionTypeForDWARFDeclContext(tag=%s, "
2892                 "qualified-name='%s') ignoring die=0x%8.8x (%s)",
2893                 DW_TAG_value_to_name(dwarf_decl_ctx[0].tag),
2894                 dwarf_decl_ctx.GetQualifiedName(), type_die.GetOffset(),
2895                 qualified_name.c_str());
2896           }
2897           return true;
2898         }
2899 
2900         DWARFDeclContext type_dwarf_decl_ctx = GetDWARFDeclContext(type_die);
2901 
2902         if (log) {
2903           GetObjectFile()->GetModule()->LogMessage(
2904               log,
2905               "SymbolFileDWARF::"
2906               "FindDefinitionTypeForDWARFDeclContext(tag=%s, "
2907               "qualified-name='%s') trying die=0x%8.8x (%s)",
2908               DW_TAG_value_to_name(dwarf_decl_ctx[0].tag),
2909               dwarf_decl_ctx.GetQualifiedName(), type_die.GetOffset(),
2910               type_dwarf_decl_ctx.GetQualifiedName());
2911         }
2912 
2913         // Make sure the decl contexts match all the way up
2914         if (dwarf_decl_ctx != type_dwarf_decl_ctx)
2915           return true;
2916 
2917         Type *resolved_type = ResolveType(type_die, false);
2918         if (!resolved_type || resolved_type == DIE_IS_BEING_PARSED)
2919           return true;
2920 
2921         type_sp = resolved_type->shared_from_this();
2922         return false;
2923       });
2924     }
2925   }
2926   return type_sp;
2927 }
2928 
2929 TypeSP SymbolFileDWARF::ParseType(const SymbolContext &sc, const DWARFDIE &die,
2930                                   bool *type_is_new_ptr) {
2931   if (!die)
2932     return {};
2933 
2934   auto type_system_or_err = GetTypeSystemForLanguage(GetLanguage(*die.GetCU()));
2935   if (auto err = type_system_or_err.takeError()) {
2936     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
2937                    std::move(err), "Unable to parse type");
2938     return {};
2939   }
2940 
2941   DWARFASTParser *dwarf_ast = type_system_or_err->GetDWARFParser();
2942   if (!dwarf_ast)
2943     return {};
2944 
2945   TypeSP type_sp = dwarf_ast->ParseTypeFromDWARF(sc, die, type_is_new_ptr);
2946   if (type_sp) {
2947     GetTypeList().Insert(type_sp);
2948 
2949     if (die.Tag() == DW_TAG_subprogram) {
2950       std::string scope_qualified_name(GetDeclContextForUID(die.GetID())
2951                                            .GetScopeQualifiedName()
2952                                            .AsCString(""));
2953       if (scope_qualified_name.size()) {
2954         m_function_scope_qualified_name_map[scope_qualified_name].insert(
2955             *die.GetDIERef());
2956       }
2957     }
2958   }
2959 
2960   return type_sp;
2961 }
2962 
2963 size_t SymbolFileDWARF::ParseTypes(const SymbolContext &sc,
2964                                    const DWARFDIE &orig_die,
2965                                    bool parse_siblings, bool parse_children) {
2966   size_t types_added = 0;
2967   DWARFDIE die = orig_die;
2968 
2969   while (die) {
2970     const dw_tag_t tag = die.Tag();
2971     bool type_is_new = false;
2972 
2973     Tag dwarf_tag = static_cast<Tag>(tag);
2974 
2975     // TODO: Currently ParseTypeFromDWARF(...) which is called by ParseType(...)
2976     // does not handle DW_TAG_subrange_type. It is not clear if this is a bug or
2977     // not.
2978     if (isType(dwarf_tag) && tag != DW_TAG_subrange_type)
2979       ParseType(sc, die, &type_is_new);
2980 
2981     if (type_is_new)
2982       ++types_added;
2983 
2984     if (parse_children && die.HasChildren()) {
2985       if (die.Tag() == DW_TAG_subprogram) {
2986         SymbolContext child_sc(sc);
2987         child_sc.function = sc.comp_unit->FindFunctionByUID(die.GetID()).get();
2988         types_added += ParseTypes(child_sc, die.GetFirstChild(), true, true);
2989       } else
2990         types_added += ParseTypes(sc, die.GetFirstChild(), true, true);
2991     }
2992 
2993     if (parse_siblings)
2994       die = die.GetSibling();
2995     else
2996       die.Clear();
2997   }
2998   return types_added;
2999 }
3000 
3001 size_t SymbolFileDWARF::ParseBlocksRecursive(Function &func) {
3002   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
3003   CompileUnit *comp_unit = func.GetCompileUnit();
3004   lldbassert(comp_unit);
3005 
3006   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(comp_unit);
3007   if (!dwarf_cu)
3008     return 0;
3009 
3010   size_t functions_added = 0;
3011   const dw_offset_t function_die_offset = func.GetID();
3012   DWARFDIE function_die =
3013       dwarf_cu->GetNonSkeletonUnit().GetDIE(function_die_offset);
3014   if (function_die) {
3015     ParseBlocksRecursive(*comp_unit, &func.GetBlock(false), function_die,
3016                          LLDB_INVALID_ADDRESS, 0);
3017   }
3018 
3019   return functions_added;
3020 }
3021 
3022 size_t SymbolFileDWARF::ParseTypes(CompileUnit &comp_unit) {
3023   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
3024   size_t types_added = 0;
3025   DWARFUnit *dwarf_cu = GetDWARFCompileUnit(&comp_unit);
3026   if (dwarf_cu) {
3027     DWARFDIE dwarf_cu_die = dwarf_cu->DIE();
3028     if (dwarf_cu_die && dwarf_cu_die.HasChildren()) {
3029       SymbolContext sc;
3030       sc.comp_unit = &comp_unit;
3031       types_added = ParseTypes(sc, dwarf_cu_die.GetFirstChild(), true, true);
3032     }
3033   }
3034 
3035   return types_added;
3036 }
3037 
3038 size_t SymbolFileDWARF::ParseVariablesForContext(const SymbolContext &sc) {
3039   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
3040   if (sc.comp_unit != nullptr) {
3041     if (sc.function) {
3042       DWARFDIE function_die = GetDIE(sc.function->GetID());
3043 
3044       dw_addr_t func_lo_pc = LLDB_INVALID_ADDRESS;
3045       DWARFRangeList ranges;
3046       if (function_die.GetDIE()->GetAttributeAddressRanges(
3047               function_die.GetCU(), ranges,
3048               /*check_hi_lo_pc=*/true))
3049         func_lo_pc = ranges.GetMinRangeBase(0);
3050       if (func_lo_pc != LLDB_INVALID_ADDRESS) {
3051         const size_t num_variables = ParseVariables(
3052             sc, function_die.GetFirstChild(), func_lo_pc, true, true);
3053 
3054         // Let all blocks know they have parse all their variables
3055         sc.function->GetBlock(false).SetDidParseVariables(true, true);
3056         return num_variables;
3057       }
3058     } else if (sc.comp_unit) {
3059       DWARFUnit *dwarf_cu = DebugInfo().GetUnitAtIndex(sc.comp_unit->GetID());
3060 
3061       if (dwarf_cu == nullptr)
3062         return 0;
3063 
3064       uint32_t vars_added = 0;
3065       VariableListSP variables(sc.comp_unit->GetVariableList(false));
3066 
3067       if (variables.get() == nullptr) {
3068         variables = std::make_shared<VariableList>();
3069         sc.comp_unit->SetVariableList(variables);
3070 
3071         m_index->GetGlobalVariables(
3072             dwarf_cu->GetNonSkeletonUnit(), [&](DWARFDIE die) {
3073               VariableSP var_sp(
3074                   ParseVariableDIE(sc, die, LLDB_INVALID_ADDRESS));
3075               if (var_sp) {
3076                 variables->AddVariableIfUnique(var_sp);
3077                 ++vars_added;
3078               }
3079               return true;
3080             });
3081       }
3082       return vars_added;
3083     }
3084   }
3085   return 0;
3086 }
3087 
3088 VariableSP SymbolFileDWARF::ParseVariableDIE(const SymbolContext &sc,
3089                                              const DWARFDIE &die,
3090                                              const lldb::addr_t func_low_pc) {
3091   if (die.GetDWARF() != this)
3092     return die.GetDWARF()->ParseVariableDIE(sc, die, func_low_pc);
3093 
3094   if (!die)
3095     return nullptr;
3096 
3097   if (VariableSP var_sp = GetDIEToVariable()[die.GetDIE()])
3098     return var_sp; // Already been parsed!
3099 
3100   const dw_tag_t tag = die.Tag();
3101   ModuleSP module = GetObjectFile()->GetModule();
3102 
3103   if (tag != DW_TAG_variable && tag != DW_TAG_constant &&
3104       (tag != DW_TAG_formal_parameter || !sc.function))
3105     return nullptr;
3106 
3107   DWARFAttributes attributes;
3108   const size_t num_attributes = die.GetAttributes(attributes);
3109   DWARFDIE spec_die;
3110   VariableSP var_sp;
3111   const char *name = nullptr;
3112   const char *mangled = nullptr;
3113   Declaration decl;
3114   DWARFFormValue type_die_form;
3115   DWARFExpression location;
3116   bool is_external = false;
3117   bool is_artificial = false;
3118   DWARFFormValue const_value_form, location_form;
3119   Variable::RangeList scope_ranges;
3120 
3121   for (size_t i = 0; i < num_attributes; ++i) {
3122     dw_attr_t attr = attributes.AttributeAtIndex(i);
3123     DWARFFormValue form_value;
3124 
3125     if (!attributes.ExtractFormValueAtIndex(i, form_value))
3126       continue;
3127     switch (attr) {
3128     case DW_AT_decl_file:
3129       decl.SetFile(sc.comp_unit->GetSupportFiles().GetFileSpecAtIndex(
3130           form_value.Unsigned()));
3131       break;
3132     case DW_AT_decl_line:
3133       decl.SetLine(form_value.Unsigned());
3134       break;
3135     case DW_AT_decl_column:
3136       decl.SetColumn(form_value.Unsigned());
3137       break;
3138     case DW_AT_name:
3139       name = form_value.AsCString();
3140       break;
3141     case DW_AT_linkage_name:
3142     case DW_AT_MIPS_linkage_name:
3143       mangled = form_value.AsCString();
3144       break;
3145     case DW_AT_type:
3146       type_die_form = form_value;
3147       break;
3148     case DW_AT_external:
3149       is_external = form_value.Boolean();
3150       break;
3151     case DW_AT_const_value:
3152       const_value_form = form_value;
3153       break;
3154     case DW_AT_location:
3155       location_form = form_value;
3156       break;
3157     case DW_AT_specification:
3158       spec_die = form_value.Reference();
3159       break;
3160     case DW_AT_start_scope:
3161       // TODO: Implement this.
3162       break;
3163     case DW_AT_artificial:
3164       is_artificial = form_value.Boolean();
3165       break;
3166     case DW_AT_declaration:
3167     case DW_AT_description:
3168     case DW_AT_endianity:
3169     case DW_AT_segment:
3170     case DW_AT_visibility:
3171     default:
3172     case DW_AT_abstract_origin:
3173     case DW_AT_sibling:
3174       break;
3175     }
3176   }
3177 
3178   // Prefer DW_AT_location over DW_AT_const_value. Both can be emitted e.g.
3179   // for static constexpr member variables -- DW_AT_const_value will be
3180   // present in the class declaration and DW_AT_location in the DIE defining
3181   // the member.
3182   bool location_is_const_value_data = false;
3183   bool has_explicit_location = false;
3184   bool use_type_size_for_value = false;
3185   if (location_form.IsValid()) {
3186     has_explicit_location = true;
3187     if (DWARFFormValue::IsBlockForm(location_form.Form())) {
3188       const DWARFDataExtractor &data = die.GetData();
3189 
3190       uint32_t block_offset = location_form.BlockData() - data.GetDataStart();
3191       uint32_t block_length = location_form.Unsigned();
3192       location = DWARFExpression(
3193           module, DataExtractor(data, block_offset, block_length), die.GetCU());
3194     } else {
3195       DataExtractor data = die.GetCU()->GetLocationData();
3196       dw_offset_t offset = location_form.Unsigned();
3197       if (location_form.Form() == DW_FORM_loclistx)
3198         offset = die.GetCU()->GetLoclistOffset(offset).getValueOr(-1);
3199       if (data.ValidOffset(offset)) {
3200         data = DataExtractor(data, offset, data.GetByteSize() - offset);
3201         location = DWARFExpression(module, data, die.GetCU());
3202         assert(func_low_pc != LLDB_INVALID_ADDRESS);
3203         location.SetLocationListAddresses(
3204             location_form.GetUnit()->GetBaseAddress(), func_low_pc);
3205       }
3206     }
3207   } else if (const_value_form.IsValid()) {
3208     location_is_const_value_data = true;
3209     // The constant value will be either a block, a data value or a
3210     // string.
3211     const DWARFDataExtractor &debug_info_data = die.GetData();
3212     if (DWARFFormValue::IsBlockForm(const_value_form.Form())) {
3213       // Retrieve the value as a block expression.
3214       uint32_t block_offset =
3215           const_value_form.BlockData() - debug_info_data.GetDataStart();
3216       uint32_t block_length = const_value_form.Unsigned();
3217       location = DWARFExpression(
3218           module, DataExtractor(debug_info_data, block_offset, block_length),
3219           die.GetCU());
3220     } else if (DWARFFormValue::IsDataForm(const_value_form.Form())) {
3221       // Constant value size does not have to match the size of the
3222       // variable. We will fetch the size of the type after we create
3223       // it.
3224       use_type_size_for_value = true;
3225     } else if (const char *str = const_value_form.AsCString()) {
3226       uint32_t string_length = strlen(str) + 1;
3227       location = DWARFExpression(
3228           module,
3229           DataExtractor(str, string_length, die.GetCU()->GetByteOrder(),
3230                         die.GetCU()->GetAddressByteSize()),
3231           die.GetCU());
3232     }
3233   }
3234 
3235   const DWARFDIE parent_context_die = GetDeclContextDIEContainingDIE(die);
3236   const dw_tag_t parent_tag = die.GetParent().Tag();
3237   bool is_static_member = (parent_tag == DW_TAG_compile_unit ||
3238                            parent_tag == DW_TAG_partial_unit) &&
3239                           (parent_context_die.Tag() == DW_TAG_class_type ||
3240                            parent_context_die.Tag() == DW_TAG_structure_type);
3241 
3242   ValueType scope = eValueTypeInvalid;
3243 
3244   const DWARFDIE sc_parent_die = GetParentSymbolContextDIE(die);
3245   SymbolContextScope *symbol_context_scope = nullptr;
3246 
3247   bool has_explicit_mangled = mangled != nullptr;
3248   if (!mangled) {
3249     // LLDB relies on the mangled name (DW_TAG_linkage_name or
3250     // DW_AT_MIPS_linkage_name) to generate fully qualified names
3251     // of global variables with commands like "frame var j". For
3252     // example, if j were an int variable holding a value 4 and
3253     // declared in a namespace B which in turn is contained in a
3254     // namespace A, the command "frame var j" returns
3255     //   "(int) A::B::j = 4".
3256     // If the compiler does not emit a linkage name, we should be
3257     // able to generate a fully qualified name from the
3258     // declaration context.
3259     if ((parent_tag == DW_TAG_compile_unit ||
3260          parent_tag == DW_TAG_partial_unit) &&
3261         Language::LanguageIsCPlusPlus(GetLanguage(*die.GetCU())))
3262       mangled =
3263           GetDWARFDeclContext(die).GetQualifiedNameAsConstString().GetCString();
3264   }
3265 
3266   if (tag == DW_TAG_formal_parameter)
3267     scope = eValueTypeVariableArgument;
3268   else {
3269     // DWARF doesn't specify if a DW_TAG_variable is a local, global
3270     // or static variable, so we have to do a little digging:
3271     // 1) DW_AT_linkage_name implies static lifetime (but may be missing)
3272     // 2) An empty DW_AT_location is an (optimized-out) static lifetime var.
3273     // 3) DW_AT_location containing a DW_OP_addr implies static lifetime.
3274     // Clang likes to combine small global variables into the same symbol
3275     // with locations like: DW_OP_addr(0x1000), DW_OP_constu(2), DW_OP_plus
3276     // so we need to look through the whole expression.
3277     bool is_static_lifetime =
3278         has_explicit_mangled || (has_explicit_location && !location.IsValid());
3279     // Check if the location has a DW_OP_addr with any address value...
3280     lldb::addr_t location_DW_OP_addr = LLDB_INVALID_ADDRESS;
3281     if (!location_is_const_value_data) {
3282       bool op_error = false;
3283       location_DW_OP_addr = location.GetLocation_DW_OP_addr(0, op_error);
3284       if (op_error) {
3285         StreamString strm;
3286         location.DumpLocationForAddress(&strm, eDescriptionLevelFull, 0, 0,
3287                                         nullptr);
3288         GetObjectFile()->GetModule()->ReportError(
3289             "0x%8.8x: %s has an invalid location: %s", die.GetOffset(),
3290             die.GetTagAsCString(), strm.GetData());
3291       }
3292       if (location_DW_OP_addr != LLDB_INVALID_ADDRESS)
3293         is_static_lifetime = true;
3294     }
3295     SymbolFileDWARFDebugMap *debug_map_symfile = GetDebugMapSymfile();
3296     if (debug_map_symfile)
3297       // Set the module of the expression to the linked module
3298       // instead of the oject file so the relocated address can be
3299       // found there.
3300       location.SetModule(debug_map_symfile->GetObjectFile()->GetModule());
3301 
3302     if (is_static_lifetime) {
3303       if (is_external)
3304         scope = eValueTypeVariableGlobal;
3305       else
3306         scope = eValueTypeVariableStatic;
3307 
3308       if (debug_map_symfile) {
3309         // When leaving the DWARF in the .o files on darwin, when we have a
3310         // global variable that wasn't initialized, the .o file might not
3311         // have allocated a virtual address for the global variable. In
3312         // this case it will have created a symbol for the global variable
3313         // that is undefined/data and external and the value will be the
3314         // byte size of the variable. When we do the address map in
3315         // SymbolFileDWARFDebugMap we rely on having an address, we need to
3316         // do some magic here so we can get the correct address for our
3317         // global variable. The address for all of these entries will be
3318         // zero, and there will be an undefined symbol in this object file,
3319         // and the executable will have a matching symbol with a good
3320         // address. So here we dig up the correct address and replace it in
3321         // the location for the variable, and set the variable's symbol
3322         // context scope to be that of the main executable so the file
3323         // address will resolve correctly.
3324         bool linked_oso_file_addr = false;
3325         if (is_external && location_DW_OP_addr == 0) {
3326           // we have a possible uninitialized extern global
3327           ConstString const_name(mangled ? mangled : name);
3328           ObjectFile *debug_map_objfile = debug_map_symfile->GetObjectFile();
3329           if (debug_map_objfile) {
3330             Symtab *debug_map_symtab = debug_map_objfile->GetSymtab();
3331             if (debug_map_symtab) {
3332               Symbol *exe_symbol =
3333                   debug_map_symtab->FindFirstSymbolWithNameAndType(
3334                       const_name, eSymbolTypeData, Symtab::eDebugYes,
3335                       Symtab::eVisibilityExtern);
3336               if (exe_symbol) {
3337                 if (exe_symbol->ValueIsAddress()) {
3338                   const addr_t exe_file_addr =
3339                       exe_symbol->GetAddressRef().GetFileAddress();
3340                   if (exe_file_addr != LLDB_INVALID_ADDRESS) {
3341                     if (location.Update_DW_OP_addr(exe_file_addr)) {
3342                       linked_oso_file_addr = true;
3343                       symbol_context_scope = exe_symbol;
3344                     }
3345                   }
3346                 }
3347               }
3348             }
3349           }
3350         }
3351 
3352         if (!linked_oso_file_addr) {
3353           // The DW_OP_addr is not zero, but it contains a .o file address
3354           // which needs to be linked up correctly.
3355           const lldb::addr_t exe_file_addr =
3356               debug_map_symfile->LinkOSOFileAddress(this, location_DW_OP_addr);
3357           if (exe_file_addr != LLDB_INVALID_ADDRESS) {
3358             // Update the file address for this variable
3359             location.Update_DW_OP_addr(exe_file_addr);
3360           } else {
3361             // Variable didn't make it into the final executable
3362             return var_sp;
3363           }
3364         }
3365       }
3366     } else {
3367       if (location_is_const_value_data &&
3368           die.GetDIE()->IsGlobalOrStaticScopeVariable())
3369         scope = eValueTypeVariableStatic;
3370       else {
3371         scope = eValueTypeVariableLocal;
3372         if (debug_map_symfile) {
3373           // We need to check for TLS addresses that we need to fixup
3374           if (location.ContainsThreadLocalStorage()) {
3375             location.LinkThreadLocalStorage(
3376                 debug_map_symfile->GetObjectFile()->GetModule(),
3377                 [this, debug_map_symfile](
3378                     lldb::addr_t unlinked_file_addr) -> lldb::addr_t {
3379                   return debug_map_symfile->LinkOSOFileAddress(
3380                       this, unlinked_file_addr);
3381                 });
3382             scope = eValueTypeVariableThreadLocal;
3383           }
3384         }
3385       }
3386     }
3387   }
3388 
3389   if (symbol_context_scope == nullptr) {
3390     switch (parent_tag) {
3391     case DW_TAG_subprogram:
3392     case DW_TAG_inlined_subroutine:
3393     case DW_TAG_lexical_block:
3394       if (sc.function) {
3395         symbol_context_scope =
3396             sc.function->GetBlock(true).FindBlockByID(sc_parent_die.GetID());
3397         if (symbol_context_scope == nullptr)
3398           symbol_context_scope = sc.function;
3399       }
3400       break;
3401 
3402     default:
3403       symbol_context_scope = sc.comp_unit;
3404       break;
3405     }
3406   }
3407 
3408   if (symbol_context_scope) {
3409     auto type_sp = std::make_shared<SymbolFileType>(
3410         *this, GetUID(type_die_form.Reference()));
3411 
3412     if (use_type_size_for_value && type_sp->GetType())
3413       location.UpdateValue(
3414           const_value_form.Unsigned(),
3415           type_sp->GetType()->GetByteSize(nullptr).getValueOr(0),
3416           die.GetCU()->GetAddressByteSize());
3417 
3418     var_sp = std::make_shared<Variable>(
3419         die.GetID(), name, mangled, type_sp, scope, symbol_context_scope,
3420         scope_ranges, &decl, location, is_external, is_artificial,
3421         location_is_const_value_data, is_static_member);
3422   } else {
3423     // Not ready to parse this variable yet. It might be a global or static
3424     // variable that is in a function scope and the function in the symbol
3425     // context wasn't filled in yet
3426     return var_sp;
3427   }
3428   // Cache var_sp even if NULL (the variable was just a specification or was
3429   // missing vital information to be able to be displayed in the debugger
3430   // (missing location due to optimization, etc)) so we don't re-parse this
3431   // DIE over and over later...
3432   GetDIEToVariable()[die.GetDIE()] = var_sp;
3433   if (spec_die)
3434     GetDIEToVariable()[spec_die.GetDIE()] = var_sp;
3435 
3436   return var_sp;
3437 }
3438 
3439 DWARFDIE
3440 SymbolFileDWARF::FindBlockContainingSpecification(
3441     const DIERef &func_die_ref, dw_offset_t spec_block_die_offset) {
3442   // Give the concrete function die specified by "func_die_offset", find the
3443   // concrete block whose DW_AT_specification or DW_AT_abstract_origin points
3444   // to "spec_block_die_offset"
3445   return FindBlockContainingSpecification(DebugInfo().GetDIE(func_die_ref),
3446                                           spec_block_die_offset);
3447 }
3448 
3449 DWARFDIE
3450 SymbolFileDWARF::FindBlockContainingSpecification(
3451     const DWARFDIE &die, dw_offset_t spec_block_die_offset) {
3452   if (die) {
3453     switch (die.Tag()) {
3454     case DW_TAG_subprogram:
3455     case DW_TAG_inlined_subroutine:
3456     case DW_TAG_lexical_block: {
3457       if (die.GetReferencedDIE(DW_AT_specification).GetOffset() ==
3458           spec_block_die_offset)
3459         return die;
3460 
3461       if (die.GetReferencedDIE(DW_AT_abstract_origin).GetOffset() ==
3462           spec_block_die_offset)
3463         return die;
3464     } break;
3465     default:
3466       break;
3467     }
3468 
3469     // Give the concrete function die specified by "func_die_offset", find the
3470     // concrete block whose DW_AT_specification or DW_AT_abstract_origin points
3471     // to "spec_block_die_offset"
3472     for (DWARFDIE child_die = die.GetFirstChild(); child_die;
3473          child_die = child_die.GetSibling()) {
3474       DWARFDIE result_die =
3475           FindBlockContainingSpecification(child_die, spec_block_die_offset);
3476       if (result_die)
3477         return result_die;
3478     }
3479   }
3480 
3481   return DWARFDIE();
3482 }
3483 
3484 size_t SymbolFileDWARF::ParseVariables(const SymbolContext &sc,
3485                                        const DWARFDIE &orig_die,
3486                                        const lldb::addr_t func_low_pc,
3487                                        bool parse_siblings, bool parse_children,
3488                                        VariableList *cc_variable_list) {
3489   if (!orig_die)
3490     return 0;
3491 
3492   VariableListSP variable_list_sp;
3493 
3494   size_t vars_added = 0;
3495   DWARFDIE die = orig_die;
3496   while (die) {
3497     dw_tag_t tag = die.Tag();
3498 
3499     // Check to see if we have already parsed this variable or constant?
3500     VariableSP var_sp = GetDIEToVariable()[die.GetDIE()];
3501     if (var_sp) {
3502       if (cc_variable_list)
3503         cc_variable_list->AddVariableIfUnique(var_sp);
3504     } else {
3505       // We haven't already parsed it, lets do that now.
3506       if ((tag == DW_TAG_variable) || (tag == DW_TAG_constant) ||
3507           (tag == DW_TAG_formal_parameter && sc.function)) {
3508         if (variable_list_sp.get() == nullptr) {
3509           DWARFDIE sc_parent_die = GetParentSymbolContextDIE(orig_die);
3510           dw_tag_t parent_tag = sc_parent_die.Tag();
3511           switch (parent_tag) {
3512           case DW_TAG_compile_unit:
3513           case DW_TAG_partial_unit:
3514             if (sc.comp_unit != nullptr) {
3515               variable_list_sp = sc.comp_unit->GetVariableList(false);
3516               if (variable_list_sp.get() == nullptr) {
3517                 variable_list_sp = std::make_shared<VariableList>();
3518               }
3519             } else {
3520               GetObjectFile()->GetModule()->ReportError(
3521                   "parent 0x%8.8" PRIx64 " %s with no valid compile unit in "
3522                   "symbol context for 0x%8.8" PRIx64 " %s.\n",
3523                   sc_parent_die.GetID(), sc_parent_die.GetTagAsCString(),
3524                   orig_die.GetID(), orig_die.GetTagAsCString());
3525             }
3526             break;
3527 
3528           case DW_TAG_subprogram:
3529           case DW_TAG_inlined_subroutine:
3530           case DW_TAG_lexical_block:
3531             if (sc.function != nullptr) {
3532               // Check to see if we already have parsed the variables for the
3533               // given scope
3534 
3535               Block *block = sc.function->GetBlock(true).FindBlockByID(
3536                   sc_parent_die.GetID());
3537               if (block == nullptr) {
3538                 // This must be a specification or abstract origin with a
3539                 // concrete block counterpart in the current function. We need
3540                 // to find the concrete block so we can correctly add the
3541                 // variable to it
3542                 const DWARFDIE concrete_block_die =
3543                     FindBlockContainingSpecification(
3544                         GetDIE(sc.function->GetID()),
3545                         sc_parent_die.GetOffset());
3546                 if (concrete_block_die)
3547                   block = sc.function->GetBlock(true).FindBlockByID(
3548                       concrete_block_die.GetID());
3549               }
3550 
3551               if (block != nullptr) {
3552                 const bool can_create = false;
3553                 variable_list_sp = block->GetBlockVariableList(can_create);
3554                 if (variable_list_sp.get() == nullptr) {
3555                   variable_list_sp = std::make_shared<VariableList>();
3556                   block->SetVariableList(variable_list_sp);
3557                 }
3558               }
3559             }
3560             break;
3561 
3562           default:
3563             GetObjectFile()->GetModule()->ReportError(
3564                 "didn't find appropriate parent DIE for variable list for "
3565                 "0x%8.8" PRIx64 " %s.\n",
3566                 orig_die.GetID(), orig_die.GetTagAsCString());
3567             break;
3568           }
3569         }
3570 
3571         if (variable_list_sp) {
3572           VariableSP var_sp(ParseVariableDIE(sc, die, func_low_pc));
3573           if (var_sp) {
3574             variable_list_sp->AddVariableIfUnique(var_sp);
3575             if (cc_variable_list)
3576               cc_variable_list->AddVariableIfUnique(var_sp);
3577             ++vars_added;
3578           }
3579         }
3580       }
3581     }
3582 
3583     bool skip_children = (sc.function == nullptr && tag == DW_TAG_subprogram);
3584 
3585     if (!skip_children && parse_children && die.HasChildren()) {
3586       vars_added += ParseVariables(sc, die.GetFirstChild(), func_low_pc, true,
3587                                    true, cc_variable_list);
3588     }
3589 
3590     if (parse_siblings)
3591       die = die.GetSibling();
3592     else
3593       die.Clear();
3594   }
3595   return vars_added;
3596 }
3597 
3598 /// Collect call site parameters in a DW_TAG_call_site DIE.
3599 static CallSiteParameterArray
3600 CollectCallSiteParameters(ModuleSP module, DWARFDIE call_site_die) {
3601   CallSiteParameterArray parameters;
3602   for (DWARFDIE child = call_site_die.GetFirstChild(); child.IsValid();
3603        child = child.GetSibling()) {
3604     if (child.Tag() != DW_TAG_call_site_parameter &&
3605         child.Tag() != DW_TAG_GNU_call_site_parameter)
3606       continue;
3607 
3608     llvm::Optional<DWARFExpression> LocationInCallee;
3609     llvm::Optional<DWARFExpression> LocationInCaller;
3610 
3611     DWARFAttributes attributes;
3612     const size_t num_attributes = child.GetAttributes(attributes);
3613 
3614     // Parse the location at index \p attr_index within this call site parameter
3615     // DIE, or return None on failure.
3616     auto parse_simple_location =
3617         [&](int attr_index) -> llvm::Optional<DWARFExpression> {
3618       DWARFFormValue form_value;
3619       if (!attributes.ExtractFormValueAtIndex(attr_index, form_value))
3620         return {};
3621       if (!DWARFFormValue::IsBlockForm(form_value.Form()))
3622         return {};
3623       auto data = child.GetData();
3624       uint32_t block_offset = form_value.BlockData() - data.GetDataStart();
3625       uint32_t block_length = form_value.Unsigned();
3626       return DWARFExpression(module,
3627                              DataExtractor(data, block_offset, block_length),
3628                              child.GetCU());
3629     };
3630 
3631     for (size_t i = 0; i < num_attributes; ++i) {
3632       dw_attr_t attr = attributes.AttributeAtIndex(i);
3633       if (attr == DW_AT_location)
3634         LocationInCallee = parse_simple_location(i);
3635       if (attr == DW_AT_call_value || attr == DW_AT_GNU_call_site_value)
3636         LocationInCaller = parse_simple_location(i);
3637     }
3638 
3639     if (LocationInCallee && LocationInCaller) {
3640       CallSiteParameter param = {*LocationInCallee, *LocationInCaller};
3641       parameters.push_back(param);
3642     }
3643   }
3644   return parameters;
3645 }
3646 
3647 /// Collect call graph edges present in a function DIE.
3648 std::vector<std::unique_ptr<lldb_private::CallEdge>>
3649 SymbolFileDWARF::CollectCallEdges(ModuleSP module, DWARFDIE function_die) {
3650   // Check if the function has a supported call site-related attribute.
3651   // TODO: In the future it may be worthwhile to support call_all_source_calls.
3652   bool has_call_edges =
3653       function_die.GetAttributeValueAsUnsigned(DW_AT_call_all_calls, 0) ||
3654       function_die.GetAttributeValueAsUnsigned(DW_AT_GNU_all_call_sites, 0);
3655   if (!has_call_edges)
3656     return {};
3657 
3658   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
3659   LLDB_LOG(log, "CollectCallEdges: Found call site info in {0}",
3660            function_die.GetPubname());
3661 
3662   // Scan the DIE for TAG_call_site entries.
3663   // TODO: A recursive scan of all blocks in the subprogram is needed in order
3664   // to be DWARF5-compliant. This may need to be done lazily to be performant.
3665   // For now, assume that all entries are nested directly under the subprogram
3666   // (this is the kind of DWARF LLVM produces) and parse them eagerly.
3667   std::vector<std::unique_ptr<CallEdge>> call_edges;
3668   for (DWARFDIE child = function_die.GetFirstChild(); child.IsValid();
3669        child = child.GetSibling()) {
3670     if (child.Tag() != DW_TAG_call_site && child.Tag() != DW_TAG_GNU_call_site)
3671       continue;
3672 
3673     llvm::Optional<DWARFDIE> call_origin;
3674     llvm::Optional<DWARFExpression> call_target;
3675     addr_t return_pc = LLDB_INVALID_ADDRESS;
3676     addr_t call_inst_pc = LLDB_INVALID_ADDRESS;
3677     addr_t low_pc = LLDB_INVALID_ADDRESS;
3678     bool tail_call = false;
3679 
3680     // Second DW_AT_low_pc may come from DW_TAG_subprogram referenced by
3681     // DW_TAG_GNU_call_site's DW_AT_abstract_origin overwriting our 'low_pc'.
3682     // So do not inherit attributes from DW_AT_abstract_origin.
3683     DWARFAttributes attributes;
3684     const size_t num_attributes =
3685         child.GetAttributes(attributes, DWARFDIE::Recurse::no);
3686     for (size_t i = 0; i < num_attributes; ++i) {
3687       DWARFFormValue form_value;
3688       if (!attributes.ExtractFormValueAtIndex(i, form_value)) {
3689         LLDB_LOG(log, "CollectCallEdges: Could not extract TAG_call_site form");
3690         break;
3691       }
3692 
3693       dw_attr_t attr = attributes.AttributeAtIndex(i);
3694 
3695       if (attr == DW_AT_call_tail_call || attr == DW_AT_GNU_tail_call)
3696         tail_call = form_value.Boolean();
3697 
3698       // Extract DW_AT_call_origin (the call target's DIE).
3699       if (attr == DW_AT_call_origin || attr == DW_AT_abstract_origin) {
3700         call_origin = form_value.Reference();
3701         if (!call_origin->IsValid()) {
3702           LLDB_LOG(log, "CollectCallEdges: Invalid call origin in {0}",
3703                    function_die.GetPubname());
3704           break;
3705         }
3706       }
3707 
3708       if (attr == DW_AT_low_pc)
3709         low_pc = form_value.Address();
3710 
3711       // Extract DW_AT_call_return_pc (the PC the call returns to) if it's
3712       // available. It should only ever be unavailable for tail call edges, in
3713       // which case use LLDB_INVALID_ADDRESS.
3714       if (attr == DW_AT_call_return_pc)
3715         return_pc = form_value.Address();
3716 
3717       // Extract DW_AT_call_pc (the PC at the call/branch instruction). It
3718       // should only ever be unavailable for non-tail calls, in which case use
3719       // LLDB_INVALID_ADDRESS.
3720       if (attr == DW_AT_call_pc)
3721         call_inst_pc = form_value.Address();
3722 
3723       // Extract DW_AT_call_target (the location of the address of the indirect
3724       // call).
3725       if (attr == DW_AT_call_target || attr == DW_AT_GNU_call_site_target) {
3726         if (!DWARFFormValue::IsBlockForm(form_value.Form())) {
3727           LLDB_LOG(log,
3728                    "CollectCallEdges: AT_call_target does not have block form");
3729           break;
3730         }
3731 
3732         auto data = child.GetData();
3733         uint32_t block_offset = form_value.BlockData() - data.GetDataStart();
3734         uint32_t block_length = form_value.Unsigned();
3735         call_target = DWARFExpression(
3736             module, DataExtractor(data, block_offset, block_length),
3737             child.GetCU());
3738       }
3739     }
3740     if (!call_origin && !call_target) {
3741       LLDB_LOG(log, "CollectCallEdges: call site without any call target");
3742       continue;
3743     }
3744 
3745     addr_t caller_address;
3746     CallEdge::AddrType caller_address_type;
3747     if (return_pc != LLDB_INVALID_ADDRESS) {
3748       caller_address = return_pc;
3749       caller_address_type = CallEdge::AddrType::AfterCall;
3750     } else if (low_pc != LLDB_INVALID_ADDRESS) {
3751       caller_address = low_pc;
3752       caller_address_type = CallEdge::AddrType::AfterCall;
3753     } else if (call_inst_pc != LLDB_INVALID_ADDRESS) {
3754       caller_address = call_inst_pc;
3755       caller_address_type = CallEdge::AddrType::Call;
3756     } else {
3757       LLDB_LOG(log, "CollectCallEdges: No caller address");
3758       continue;
3759     }
3760     // Adjust any PC forms. It needs to be fixed up if the main executable
3761     // contains a debug map (i.e. pointers to object files), because we need a
3762     // file address relative to the executable's text section.
3763     caller_address = FixupAddress(caller_address);
3764 
3765     // Extract call site parameters.
3766     CallSiteParameterArray parameters =
3767         CollectCallSiteParameters(module, child);
3768 
3769     std::unique_ptr<CallEdge> edge;
3770     if (call_origin) {
3771       LLDB_LOG(log,
3772                "CollectCallEdges: Found call origin: {0} (retn-PC: {1:x}) "
3773                "(call-PC: {2:x})",
3774                call_origin->GetPubname(), return_pc, call_inst_pc);
3775       edge = std::make_unique<DirectCallEdge>(
3776           call_origin->GetMangledName(), caller_address_type, caller_address,
3777           tail_call, std::move(parameters));
3778     } else {
3779       if (log) {
3780         StreamString call_target_desc;
3781         call_target->GetDescription(&call_target_desc, eDescriptionLevelBrief,
3782                                     LLDB_INVALID_ADDRESS, nullptr);
3783         LLDB_LOG(log, "CollectCallEdges: Found indirect call target: {0}",
3784                  call_target_desc.GetString());
3785       }
3786       edge = std::make_unique<IndirectCallEdge>(
3787           *call_target, caller_address_type, caller_address, tail_call,
3788           std::move(parameters));
3789     }
3790 
3791     if (log && parameters.size()) {
3792       for (const CallSiteParameter &param : parameters) {
3793         StreamString callee_loc_desc, caller_loc_desc;
3794         param.LocationInCallee.GetDescription(&callee_loc_desc,
3795                                               eDescriptionLevelBrief,
3796                                               LLDB_INVALID_ADDRESS, nullptr);
3797         param.LocationInCaller.GetDescription(&caller_loc_desc,
3798                                               eDescriptionLevelBrief,
3799                                               LLDB_INVALID_ADDRESS, nullptr);
3800         LLDB_LOG(log, "CollectCallEdges: \tparam: {0} => {1}",
3801                  callee_loc_desc.GetString(), caller_loc_desc.GetString());
3802       }
3803     }
3804 
3805     call_edges.push_back(std::move(edge));
3806   }
3807   return call_edges;
3808 }
3809 
3810 std::vector<std::unique_ptr<lldb_private::CallEdge>>
3811 SymbolFileDWARF::ParseCallEdgesInFunction(UserID func_id) {
3812   // ParseCallEdgesInFunction must be called at the behest of an exclusively
3813   // locked lldb::Function instance. Storage for parsed call edges is owned by
3814   // the lldb::Function instance: locking at the SymbolFile level would be too
3815   // late, because the act of storing results from ParseCallEdgesInFunction
3816   // would be racy.
3817   DWARFDIE func_die = GetDIE(func_id.GetID());
3818   if (func_die.IsValid())
3819     return CollectCallEdges(GetObjectFile()->GetModule(), func_die);
3820   return {};
3821 }
3822 
3823 // PluginInterface protocol
3824 ConstString SymbolFileDWARF::GetPluginName() { return GetPluginNameStatic(); }
3825 
3826 uint32_t SymbolFileDWARF::GetPluginVersion() { return 1; }
3827 
3828 void SymbolFileDWARF::Dump(lldb_private::Stream &s) {
3829   SymbolFile::Dump(s);
3830   m_index->Dump(s);
3831 }
3832 
3833 void SymbolFileDWARF::DumpClangAST(Stream &s) {
3834   auto ts_or_err = GetTypeSystemForLanguage(eLanguageTypeC_plus_plus);
3835   if (!ts_or_err)
3836     return;
3837   TypeSystemClang *clang =
3838       llvm::dyn_cast_or_null<TypeSystemClang>(&ts_or_err.get());
3839   if (!clang)
3840     return;
3841   clang->Dump(s);
3842 }
3843 
3844 SymbolFileDWARFDebugMap *SymbolFileDWARF::GetDebugMapSymfile() {
3845   if (m_debug_map_symfile == nullptr && !m_debug_map_module_wp.expired()) {
3846     lldb::ModuleSP module_sp(m_debug_map_module_wp.lock());
3847     if (module_sp) {
3848       m_debug_map_symfile =
3849           static_cast<SymbolFileDWARFDebugMap *>(module_sp->GetSymbolFile());
3850     }
3851   }
3852   return m_debug_map_symfile;
3853 }
3854 
3855 const std::shared_ptr<SymbolFileDWARFDwo> &SymbolFileDWARF::GetDwpSymbolFile() {
3856   llvm::call_once(m_dwp_symfile_once_flag, [this]() {
3857     ModuleSpec module_spec;
3858     module_spec.GetFileSpec() = m_objfile_sp->GetFileSpec();
3859     module_spec.GetSymbolFileSpec() =
3860         FileSpec(m_objfile_sp->GetModule()->GetFileSpec().GetPath() + ".dwp");
3861 
3862     FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths();
3863     FileSpec dwp_filespec =
3864         Symbols::LocateExecutableSymbolFile(module_spec, search_paths);
3865     if (FileSystem::Instance().Exists(dwp_filespec)) {
3866       DataBufferSP dwp_file_data_sp;
3867       lldb::offset_t dwp_file_data_offset = 0;
3868       ObjectFileSP dwp_obj_file = ObjectFile::FindPlugin(
3869           GetObjectFile()->GetModule(), &dwp_filespec, 0,
3870           FileSystem::Instance().GetByteSize(dwp_filespec), dwp_file_data_sp,
3871           dwp_file_data_offset);
3872       if (!dwp_obj_file)
3873         return;
3874       m_dwp_symfile =
3875           std::make_shared<SymbolFileDWARFDwo>(*this, dwp_obj_file, 0x3fffffff);
3876     }
3877   });
3878   return m_dwp_symfile;
3879 }
3880 
3881 llvm::Expected<TypeSystem &> SymbolFileDWARF::GetTypeSystem(DWARFUnit &unit) {
3882   return unit.GetSymbolFileDWARF().GetTypeSystemForLanguage(GetLanguage(unit));
3883 }
3884 
3885 DWARFASTParser *SymbolFileDWARF::GetDWARFParser(DWARFUnit &unit) {
3886   auto type_system_or_err = GetTypeSystem(unit);
3887   if (auto err = type_system_or_err.takeError()) {
3888     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
3889                    std::move(err), "Unable to get DWARFASTParser");
3890     return nullptr;
3891   }
3892   return type_system_or_err->GetDWARFParser();
3893 }
3894 
3895 CompilerDecl SymbolFileDWARF::GetDecl(const DWARFDIE &die) {
3896   if (DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU()))
3897     return dwarf_ast->GetDeclForUIDFromDWARF(die);
3898   return CompilerDecl();
3899 }
3900 
3901 CompilerDeclContext SymbolFileDWARF::GetDeclContext(const DWARFDIE &die) {
3902   if (DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU()))
3903     return dwarf_ast->GetDeclContextForUIDFromDWARF(die);
3904   return CompilerDeclContext();
3905 }
3906 
3907 CompilerDeclContext
3908 SymbolFileDWARF::GetContainingDeclContext(const DWARFDIE &die) {
3909   if (DWARFASTParser *dwarf_ast = GetDWARFParser(*die.GetCU()))
3910     return dwarf_ast->GetDeclContextContainingUIDFromDWARF(die);
3911   return CompilerDeclContext();
3912 }
3913 
3914 DWARFDeclContext SymbolFileDWARF::GetDWARFDeclContext(const DWARFDIE &die) {
3915   if (!die.IsValid())
3916     return {};
3917   DWARFDeclContext dwarf_decl_ctx =
3918       die.GetDIE()->GetDWARFDeclContext(die.GetCU());
3919   dwarf_decl_ctx.SetLanguage(GetLanguage(*die.GetCU()));
3920   return dwarf_decl_ctx;
3921 }
3922 
3923 LanguageType SymbolFileDWARF::LanguageTypeFromDWARF(uint64_t val) {
3924   // Note: user languages between lo_user and hi_user must be handled
3925   // explicitly here.
3926   switch (val) {
3927   case DW_LANG_Mips_Assembler:
3928     return eLanguageTypeMipsAssembler;
3929   case DW_LANG_GOOGLE_RenderScript:
3930     return eLanguageTypeExtRenderScript;
3931   default:
3932     return static_cast<LanguageType>(val);
3933   }
3934 }
3935 
3936 LanguageType SymbolFileDWARF::GetLanguage(DWARFUnit &unit) {
3937   return LanguageTypeFromDWARF(unit.GetDWARFLanguageType());
3938 }
3939