xref: /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp (revision 1165fc9a526630487a1feb63daef65c5aee1a583)
1 //===-- SymbolFilePDB.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 "SymbolFilePDB.h"
10 
11 #include "PDBASTParser.h"
12 #include "PDBLocationToDWARFExpression.h"
13 
14 #include "clang/Lex/Lexer.h"
15 
16 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
17 #include "lldb/Core/Module.h"
18 #include "lldb/Core/PluginManager.h"
19 #include "lldb/Symbol/CompileUnit.h"
20 #include "lldb/Symbol/LineTable.h"
21 #include "lldb/Symbol/ObjectFile.h"
22 #include "lldb/Symbol/SymbolContext.h"
23 #include "lldb/Symbol/SymbolVendor.h"
24 #include "lldb/Symbol/TypeList.h"
25 #include "lldb/Symbol/TypeMap.h"
26 #include "lldb/Symbol/Variable.h"
27 #include "lldb/Utility/Log.h"
28 #include "lldb/Utility/RegularExpression.h"
29 
30 #include "llvm/DebugInfo/PDB/GenericError.h"
31 #include "llvm/DebugInfo/PDB/IPDBDataStream.h"
32 #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
33 #include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
34 #include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
35 #include "llvm/DebugInfo/PDB/IPDBSourceFile.h"
36 #include "llvm/DebugInfo/PDB/IPDBTable.h"
37 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
38 #include "llvm/DebugInfo/PDB/PDBSymbolBlock.h"
39 #include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
40 #include "llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h"
41 #include "llvm/DebugInfo/PDB/PDBSymbolData.h"
42 #include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
43 #include "llvm/DebugInfo/PDB/PDBSymbolFunc.h"
44 #include "llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h"
45 #include "llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h"
46 #include "llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h"
47 #include "llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h"
48 #include "llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h"
49 #include "llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h"
50 
51 #include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
52 #include "Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h"
53 #include "Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h"
54 
55 #if defined(_WIN32)
56 #include "llvm/Config/config.h"
57 #endif
58 
59 using namespace lldb;
60 using namespace lldb_private;
61 using namespace llvm::pdb;
62 
63 LLDB_PLUGIN_DEFINE(SymbolFilePDB)
64 
65 char SymbolFilePDB::ID;
66 
67 namespace {
68 lldb::LanguageType TranslateLanguage(PDB_Lang lang) {
69   switch (lang) {
70   case PDB_Lang::Cpp:
71     return lldb::LanguageType::eLanguageTypeC_plus_plus;
72   case PDB_Lang::C:
73     return lldb::LanguageType::eLanguageTypeC;
74   case PDB_Lang::Swift:
75     return lldb::LanguageType::eLanguageTypeSwift;
76   default:
77     return lldb::LanguageType::eLanguageTypeUnknown;
78   }
79 }
80 
81 bool ShouldAddLine(uint32_t requested_line, uint32_t actual_line,
82                    uint32_t addr_length) {
83   return ((requested_line == 0 || actual_line == requested_line) &&
84           addr_length > 0);
85 }
86 } // namespace
87 
88 static bool ShouldUseNativeReader() {
89 #if defined(_WIN32)
90 #if LLVM_ENABLE_DIA_SDK
91   llvm::StringRef use_native = ::getenv("LLDB_USE_NATIVE_PDB_READER");
92   if (!use_native.equals_insensitive("on") &&
93       !use_native.equals_insensitive("yes") &&
94       !use_native.equals_insensitive("1") &&
95       !use_native.equals_insensitive("true"))
96     return false;
97 #endif
98 #endif
99   return true;
100 }
101 
102 void SymbolFilePDB::Initialize() {
103   if (ShouldUseNativeReader()) {
104     npdb::SymbolFileNativePDB::Initialize();
105   } else {
106     PluginManager::RegisterPlugin(GetPluginNameStatic(),
107                                   GetPluginDescriptionStatic(), CreateInstance,
108                                   DebuggerInitialize);
109   }
110 }
111 
112 void SymbolFilePDB::Terminate() {
113   if (ShouldUseNativeReader()) {
114     npdb::SymbolFileNativePDB::Terminate();
115   } else {
116     PluginManager::UnregisterPlugin(CreateInstance);
117   }
118 }
119 
120 void SymbolFilePDB::DebuggerInitialize(lldb_private::Debugger &debugger) {}
121 
122 llvm::StringRef SymbolFilePDB::GetPluginDescriptionStatic() {
123   return "Microsoft PDB debug symbol file reader.";
124 }
125 
126 lldb_private::SymbolFile *
127 SymbolFilePDB::CreateInstance(ObjectFileSP objfile_sp) {
128   return new SymbolFilePDB(std::move(objfile_sp));
129 }
130 
131 SymbolFilePDB::SymbolFilePDB(lldb::ObjectFileSP objfile_sp)
132     : SymbolFile(std::move(objfile_sp)), m_session_up(), m_global_scope_up() {}
133 
134 SymbolFilePDB::~SymbolFilePDB() = default;
135 
136 uint32_t SymbolFilePDB::CalculateAbilities() {
137   uint32_t abilities = 0;
138   if (!m_objfile_sp)
139     return 0;
140 
141   if (!m_session_up) {
142     // Lazily load and match the PDB file, but only do this once.
143     std::string exePath = m_objfile_sp->GetFileSpec().GetPath();
144     auto error = loadDataForEXE(PDB_ReaderType::DIA, llvm::StringRef(exePath),
145                                 m_session_up);
146     if (error) {
147       llvm::consumeError(std::move(error));
148       auto module_sp = m_objfile_sp->GetModule();
149       if (!module_sp)
150         return 0;
151       // See if any symbol file is specified through `--symfile` option.
152       FileSpec symfile = module_sp->GetSymbolFileFileSpec();
153       if (!symfile)
154         return 0;
155       error = loadDataForPDB(PDB_ReaderType::DIA,
156                              llvm::StringRef(symfile.GetPath()), m_session_up);
157       if (error) {
158         llvm::consumeError(std::move(error));
159         return 0;
160       }
161     }
162   }
163   if (!m_session_up)
164     return 0;
165 
166   auto enum_tables_up = m_session_up->getEnumTables();
167   if (!enum_tables_up)
168     return 0;
169   while (auto table_up = enum_tables_up->getNext()) {
170     if (table_up->getItemCount() == 0)
171       continue;
172     auto type = table_up->getTableType();
173     switch (type) {
174     case PDB_TableType::Symbols:
175       // This table represents a store of symbols with types listed in
176       // PDBSym_Type
177       abilities |= (CompileUnits | Functions | Blocks | GlobalVariables |
178                     LocalVariables | VariableTypes);
179       break;
180     case PDB_TableType::LineNumbers:
181       abilities |= LineTables;
182       break;
183     default:
184       break;
185     }
186   }
187   return abilities;
188 }
189 
190 void SymbolFilePDB::InitializeObject() {
191   lldb::addr_t obj_load_address =
192       m_objfile_sp->GetBaseAddress().GetFileAddress();
193   lldbassert(obj_load_address && obj_load_address != LLDB_INVALID_ADDRESS);
194   m_session_up->setLoadAddress(obj_load_address);
195   if (!m_global_scope_up)
196     m_global_scope_up = m_session_up->getGlobalScope();
197   lldbassert(m_global_scope_up.get());
198 }
199 
200 uint32_t SymbolFilePDB::CalculateNumCompileUnits() {
201   auto compilands = m_global_scope_up->findAllChildren<PDBSymbolCompiland>();
202   if (!compilands)
203     return 0;
204 
205   // The linker could link *.dll (compiland language = LINK), or import
206   // *.dll. For example, a compiland with name `Import:KERNEL32.dll` could be
207   // found as a child of the global scope (PDB executable). Usually, such
208   // compilands contain `thunk` symbols in which we are not interested for
209   // now. However we still count them in the compiland list. If we perform
210   // any compiland related activity, like finding symbols through
211   // llvm::pdb::IPDBSession methods, such compilands will all be searched
212   // automatically no matter whether we include them or not.
213   uint32_t compile_unit_count = compilands->getChildCount();
214 
215   // The linker can inject an additional "dummy" compilation unit into the
216   // PDB. Ignore this special compile unit for our purposes, if it is there.
217   // It is always the last one.
218   auto last_compiland_up = compilands->getChildAtIndex(compile_unit_count - 1);
219   lldbassert(last_compiland_up.get());
220   std::string name = last_compiland_up->getName();
221   if (name == "* Linker *")
222     --compile_unit_count;
223   return compile_unit_count;
224 }
225 
226 void SymbolFilePDB::GetCompileUnitIndex(
227     const llvm::pdb::PDBSymbolCompiland &pdb_compiland, uint32_t &index) {
228   auto results_up = m_global_scope_up->findAllChildren<PDBSymbolCompiland>();
229   if (!results_up)
230     return;
231   auto uid = pdb_compiland.getSymIndexId();
232   for (uint32_t cu_idx = 0; cu_idx < GetNumCompileUnits(); ++cu_idx) {
233     auto compiland_up = results_up->getChildAtIndex(cu_idx);
234     if (!compiland_up)
235       continue;
236     if (compiland_up->getSymIndexId() == uid) {
237       index = cu_idx;
238       return;
239     }
240   }
241   index = UINT32_MAX;
242 }
243 
244 std::unique_ptr<llvm::pdb::PDBSymbolCompiland>
245 SymbolFilePDB::GetPDBCompilandByUID(uint32_t uid) {
246   return m_session_up->getConcreteSymbolById<PDBSymbolCompiland>(uid);
247 }
248 
249 lldb::CompUnitSP SymbolFilePDB::ParseCompileUnitAtIndex(uint32_t index) {
250   if (index >= GetNumCompileUnits())
251     return CompUnitSP();
252 
253   // Assuming we always retrieve same compilands listed in same order through
254   // `PDBSymbolExe::findAllChildren` method, otherwise using `index` to get a
255   // compile unit makes no sense.
256   auto results = m_global_scope_up->findAllChildren<PDBSymbolCompiland>();
257   if (!results)
258     return CompUnitSP();
259   auto compiland_up = results->getChildAtIndex(index);
260   if (!compiland_up)
261     return CompUnitSP();
262   return ParseCompileUnitForUID(compiland_up->getSymIndexId(), index);
263 }
264 
265 lldb::LanguageType SymbolFilePDB::ParseLanguage(CompileUnit &comp_unit) {
266   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
267   auto compiland_up = GetPDBCompilandByUID(comp_unit.GetID());
268   if (!compiland_up)
269     return lldb::eLanguageTypeUnknown;
270   auto details = compiland_up->findOneChild<PDBSymbolCompilandDetails>();
271   if (!details)
272     return lldb::eLanguageTypeUnknown;
273   return TranslateLanguage(details->getLanguage());
274 }
275 
276 lldb_private::Function *
277 SymbolFilePDB::ParseCompileUnitFunctionForPDBFunc(const PDBSymbolFunc &pdb_func,
278                                                   CompileUnit &comp_unit) {
279   if (FunctionSP result = comp_unit.FindFunctionByUID(pdb_func.getSymIndexId()))
280     return result.get();
281 
282   auto file_vm_addr = pdb_func.getVirtualAddress();
283   if (file_vm_addr == LLDB_INVALID_ADDRESS || file_vm_addr == 0)
284     return nullptr;
285 
286   auto func_length = pdb_func.getLength();
287   AddressRange func_range =
288       AddressRange(file_vm_addr, func_length,
289                    GetObjectFile()->GetModule()->GetSectionList());
290   if (!func_range.GetBaseAddress().IsValid())
291     return nullptr;
292 
293   lldb_private::Type *func_type = ResolveTypeUID(pdb_func.getSymIndexId());
294   if (!func_type)
295     return nullptr;
296 
297   user_id_t func_type_uid = pdb_func.getSignatureId();
298 
299   Mangled mangled = GetMangledForPDBFunc(pdb_func);
300 
301   FunctionSP func_sp =
302       std::make_shared<Function>(&comp_unit, pdb_func.getSymIndexId(),
303                                  func_type_uid, mangled, func_type, func_range);
304 
305   comp_unit.AddFunction(func_sp);
306 
307   LanguageType lang = ParseLanguage(comp_unit);
308   auto type_system_or_err = GetTypeSystemForLanguage(lang);
309   if (auto err = type_system_or_err.takeError()) {
310     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
311                    std::move(err), "Unable to parse PDBFunc");
312     return nullptr;
313   }
314 
315   TypeSystemClang *clang_type_system =
316     llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
317   if (!clang_type_system)
318     return nullptr;
319   clang_type_system->GetPDBParser()->GetDeclForSymbol(pdb_func);
320 
321   return func_sp.get();
322 }
323 
324 size_t SymbolFilePDB::ParseFunctions(CompileUnit &comp_unit) {
325   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
326   size_t func_added = 0;
327   auto compiland_up = GetPDBCompilandByUID(comp_unit.GetID());
328   if (!compiland_up)
329     return 0;
330   auto results_up = compiland_up->findAllChildren<PDBSymbolFunc>();
331   if (!results_up)
332     return 0;
333   while (auto pdb_func_up = results_up->getNext()) {
334     auto func_sp = comp_unit.FindFunctionByUID(pdb_func_up->getSymIndexId());
335     if (!func_sp) {
336       if (ParseCompileUnitFunctionForPDBFunc(*pdb_func_up, comp_unit))
337         ++func_added;
338     }
339   }
340   return func_added;
341 }
342 
343 bool SymbolFilePDB::ParseLineTable(CompileUnit &comp_unit) {
344   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
345   if (comp_unit.GetLineTable())
346     return true;
347   return ParseCompileUnitLineTable(comp_unit, 0);
348 }
349 
350 bool SymbolFilePDB::ParseDebugMacros(CompileUnit &comp_unit) {
351   // PDB doesn't contain information about macros
352   return false;
353 }
354 
355 bool SymbolFilePDB::ParseSupportFiles(
356     CompileUnit &comp_unit, lldb_private::FileSpecList &support_files) {
357 
358   // In theory this is unnecessary work for us, because all of this information
359   // is easily (and quickly) accessible from DebugInfoPDB, so caching it a
360   // second time seems like a waste.  Unfortunately, there's no good way around
361   // this short of a moderate refactor since SymbolVendor depends on being able
362   // to cache this list.
363   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
364   auto compiland_up = GetPDBCompilandByUID(comp_unit.GetID());
365   if (!compiland_up)
366     return false;
367   auto files = m_session_up->getSourceFilesForCompiland(*compiland_up);
368   if (!files || files->getChildCount() == 0)
369     return false;
370 
371   while (auto file = files->getNext()) {
372     FileSpec spec(file->getFileName(), FileSpec::Style::windows);
373     support_files.AppendIfUnique(spec);
374   }
375 
376   return true;
377 }
378 
379 bool SymbolFilePDB::ParseImportedModules(
380     const lldb_private::SymbolContext &sc,
381     std::vector<SourceModule> &imported_modules) {
382   // PDB does not yet support module debug info
383   return false;
384 }
385 
386 static size_t ParseFunctionBlocksForPDBSymbol(
387     uint64_t func_file_vm_addr, const llvm::pdb::PDBSymbol *pdb_symbol,
388     lldb_private::Block *parent_block, bool is_top_parent) {
389   assert(pdb_symbol && parent_block);
390 
391   size_t num_added = 0;
392   switch (pdb_symbol->getSymTag()) {
393   case PDB_SymType::Block:
394   case PDB_SymType::Function: {
395     Block *block = nullptr;
396     auto &raw_sym = pdb_symbol->getRawSymbol();
397     if (auto *pdb_func = llvm::dyn_cast<PDBSymbolFunc>(pdb_symbol)) {
398       if (pdb_func->hasNoInlineAttribute())
399         break;
400       if (is_top_parent)
401         block = parent_block;
402       else
403         break;
404     } else if (llvm::isa<PDBSymbolBlock>(pdb_symbol)) {
405       auto uid = pdb_symbol->getSymIndexId();
406       if (parent_block->FindBlockByID(uid))
407         break;
408       if (raw_sym.getVirtualAddress() < func_file_vm_addr)
409         break;
410 
411       auto block_sp = std::make_shared<Block>(pdb_symbol->getSymIndexId());
412       parent_block->AddChild(block_sp);
413       block = block_sp.get();
414     } else
415       llvm_unreachable("Unexpected PDB symbol!");
416 
417     block->AddRange(Block::Range(
418         raw_sym.getVirtualAddress() - func_file_vm_addr, raw_sym.getLength()));
419     block->FinalizeRanges();
420     ++num_added;
421 
422     auto results_up = pdb_symbol->findAllChildren();
423     if (!results_up)
424       break;
425     while (auto symbol_up = results_up->getNext()) {
426       num_added += ParseFunctionBlocksForPDBSymbol(
427           func_file_vm_addr, symbol_up.get(), block, false);
428     }
429   } break;
430   default:
431     break;
432   }
433   return num_added;
434 }
435 
436 size_t SymbolFilePDB::ParseBlocksRecursive(Function &func) {
437   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
438   size_t num_added = 0;
439   auto uid = func.GetID();
440   auto pdb_func_up = m_session_up->getConcreteSymbolById<PDBSymbolFunc>(uid);
441   if (!pdb_func_up)
442     return 0;
443   Block &parent_block = func.GetBlock(false);
444   num_added = ParseFunctionBlocksForPDBSymbol(
445       pdb_func_up->getVirtualAddress(), pdb_func_up.get(), &parent_block, true);
446   return num_added;
447 }
448 
449 size_t SymbolFilePDB::ParseTypes(CompileUnit &comp_unit) {
450   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
451 
452   size_t num_added = 0;
453   auto compiland = GetPDBCompilandByUID(comp_unit.GetID());
454   if (!compiland)
455     return 0;
456 
457   auto ParseTypesByTagFn = [&num_added, this](const PDBSymbol &raw_sym) {
458     std::unique_ptr<IPDBEnumSymbols> results;
459     PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef,
460                                     PDB_SymType::UDT};
461     for (auto tag : tags_to_search) {
462       results = raw_sym.findAllChildren(tag);
463       if (!results || results->getChildCount() == 0)
464         continue;
465       while (auto symbol = results->getNext()) {
466         switch (symbol->getSymTag()) {
467         case PDB_SymType::Enum:
468         case PDB_SymType::UDT:
469         case PDB_SymType::Typedef:
470           break;
471         default:
472           continue;
473         }
474 
475         // This should cause the type to get cached and stored in the `m_types`
476         // lookup.
477         if (auto type = ResolveTypeUID(symbol->getSymIndexId())) {
478           // Resolve the type completely to avoid a completion
479           // (and so a list change, which causes an iterators invalidation)
480           // during a TypeList dumping
481           type->GetFullCompilerType();
482           ++num_added;
483         }
484       }
485     }
486   };
487 
488   ParseTypesByTagFn(*compiland);
489 
490   // Also parse global types particularly coming from this compiland.
491   // Unfortunately, PDB has no compiland information for each global type. We
492   // have to parse them all. But ensure we only do this once.
493   static bool parse_all_global_types = false;
494   if (!parse_all_global_types) {
495     ParseTypesByTagFn(*m_global_scope_up);
496     parse_all_global_types = true;
497   }
498   return num_added;
499 }
500 
501 size_t
502 SymbolFilePDB::ParseVariablesForContext(const lldb_private::SymbolContext &sc) {
503   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
504   if (!sc.comp_unit)
505     return 0;
506 
507   size_t num_added = 0;
508   if (sc.function) {
509     auto pdb_func = m_session_up->getConcreteSymbolById<PDBSymbolFunc>(
510         sc.function->GetID());
511     if (!pdb_func)
512       return 0;
513 
514     num_added += ParseVariables(sc, *pdb_func);
515     sc.function->GetBlock(false).SetDidParseVariables(true, true);
516   } else if (sc.comp_unit) {
517     auto compiland = GetPDBCompilandByUID(sc.comp_unit->GetID());
518     if (!compiland)
519       return 0;
520 
521     if (sc.comp_unit->GetVariableList(false))
522       return 0;
523 
524     auto results = m_global_scope_up->findAllChildren<PDBSymbolData>();
525     if (results && results->getChildCount()) {
526       while (auto result = results->getNext()) {
527         auto cu_id = GetCompilandId(*result);
528         // FIXME: We are not able to determine variable's compile unit.
529         if (cu_id == 0)
530           continue;
531 
532         if (cu_id == sc.comp_unit->GetID())
533           num_added += ParseVariables(sc, *result);
534       }
535     }
536 
537     // FIXME: A `file static` or `global constant` variable appears both in
538     // compiland's children and global scope's children with unexpectedly
539     // different symbol's Id making it ambiguous.
540 
541     // FIXME: 'local constant', for example, const char var[] = "abc", declared
542     // in a function scope, can't be found in PDB.
543 
544     // Parse variables in this compiland.
545     num_added += ParseVariables(sc, *compiland);
546   }
547 
548   return num_added;
549 }
550 
551 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) {
552   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
553   auto find_result = m_types.find(type_uid);
554   if (find_result != m_types.end())
555     return find_result->second.get();
556 
557   auto type_system_or_err =
558       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
559   if (auto err = type_system_or_err.takeError()) {
560     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
561                    std::move(err), "Unable to ResolveTypeUID");
562     return nullptr;
563   }
564 
565   TypeSystemClang *clang_type_system =
566       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
567   if (!clang_type_system)
568     return nullptr;
569   PDBASTParser *pdb = clang_type_system->GetPDBParser();
570   if (!pdb)
571     return nullptr;
572 
573   auto pdb_type = m_session_up->getSymbolById(type_uid);
574   if (pdb_type == nullptr)
575     return nullptr;
576 
577   lldb::TypeSP result = pdb->CreateLLDBTypeFromPDBType(*pdb_type);
578   if (result) {
579     m_types.insert(std::make_pair(type_uid, result));
580     GetTypeList().Insert(result);
581   }
582   return result.get();
583 }
584 
585 llvm::Optional<SymbolFile::ArrayInfo> SymbolFilePDB::GetDynamicArrayInfoForUID(
586     lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) {
587   return llvm::None;
588 }
589 
590 bool SymbolFilePDB::CompleteType(lldb_private::CompilerType &compiler_type) {
591   std::lock_guard<std::recursive_mutex> guard(
592       GetObjectFile()->GetModule()->GetMutex());
593 
594   auto type_system_or_err =
595       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
596   if (auto err = type_system_or_err.takeError()) {
597     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
598                    std::move(err), "Unable to get dynamic array info for UID");
599     return false;
600   }
601 
602   TypeSystemClang *clang_ast_ctx =
603       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
604 
605   if (!clang_ast_ctx)
606     return false;
607 
608   PDBASTParser *pdb = clang_ast_ctx->GetPDBParser();
609   if (!pdb)
610     return false;
611 
612   return pdb->CompleteTypeFromPDB(compiler_type);
613 }
614 
615 lldb_private::CompilerDecl SymbolFilePDB::GetDeclForUID(lldb::user_id_t uid) {
616   auto type_system_or_err =
617       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
618   if (auto err = type_system_or_err.takeError()) {
619     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
620                    std::move(err), "Unable to get decl for UID");
621     return CompilerDecl();
622   }
623 
624   TypeSystemClang *clang_ast_ctx =
625       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
626   if (!clang_ast_ctx)
627     return CompilerDecl();
628 
629   PDBASTParser *pdb = clang_ast_ctx->GetPDBParser();
630   if (!pdb)
631     return CompilerDecl();
632 
633   auto symbol = m_session_up->getSymbolById(uid);
634   if (!symbol)
635     return CompilerDecl();
636 
637   auto decl = pdb->GetDeclForSymbol(*symbol);
638   if (!decl)
639     return CompilerDecl();
640 
641   return clang_ast_ctx->GetCompilerDecl(decl);
642 }
643 
644 lldb_private::CompilerDeclContext
645 SymbolFilePDB::GetDeclContextForUID(lldb::user_id_t uid) {
646   auto type_system_or_err =
647       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
648   if (auto err = type_system_or_err.takeError()) {
649     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
650                    std::move(err), "Unable to get DeclContext for UID");
651     return CompilerDeclContext();
652   }
653 
654   TypeSystemClang *clang_ast_ctx =
655       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
656   if (!clang_ast_ctx)
657     return CompilerDeclContext();
658 
659   PDBASTParser *pdb = clang_ast_ctx->GetPDBParser();
660   if (!pdb)
661     return CompilerDeclContext();
662 
663   auto symbol = m_session_up->getSymbolById(uid);
664   if (!symbol)
665     return CompilerDeclContext();
666 
667   auto decl_context = pdb->GetDeclContextForSymbol(*symbol);
668   if (!decl_context)
669     return GetDeclContextContainingUID(uid);
670 
671   return clang_ast_ctx->CreateDeclContext(decl_context);
672 }
673 
674 lldb_private::CompilerDeclContext
675 SymbolFilePDB::GetDeclContextContainingUID(lldb::user_id_t uid) {
676   auto type_system_or_err =
677       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
678   if (auto err = type_system_or_err.takeError()) {
679     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
680                    std::move(err), "Unable to get DeclContext containing UID");
681     return CompilerDeclContext();
682   }
683 
684   TypeSystemClang *clang_ast_ctx =
685       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
686   if (!clang_ast_ctx)
687     return CompilerDeclContext();
688 
689   PDBASTParser *pdb = clang_ast_ctx->GetPDBParser();
690   if (!pdb)
691     return CompilerDeclContext();
692 
693   auto symbol = m_session_up->getSymbolById(uid);
694   if (!symbol)
695     return CompilerDeclContext();
696 
697   auto decl_context = pdb->GetDeclContextContainingSymbol(*symbol);
698   assert(decl_context);
699 
700   return clang_ast_ctx->CreateDeclContext(decl_context);
701 }
702 
703 void SymbolFilePDB::ParseDeclsForContext(
704     lldb_private::CompilerDeclContext decl_ctx) {
705   auto type_system_or_err =
706       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
707   if (auto err = type_system_or_err.takeError()) {
708     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
709                    std::move(err), "Unable to parse decls for context");
710     return;
711   }
712 
713   TypeSystemClang *clang_ast_ctx =
714       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
715   if (!clang_ast_ctx)
716     return;
717 
718   PDBASTParser *pdb = clang_ast_ctx->GetPDBParser();
719   if (!pdb)
720     return;
721 
722   pdb->ParseDeclsForDeclContext(
723       static_cast<clang::DeclContext *>(decl_ctx.GetOpaqueDeclContext()));
724 }
725 
726 uint32_t
727 SymbolFilePDB::ResolveSymbolContext(const lldb_private::Address &so_addr,
728                                     SymbolContextItem resolve_scope,
729                                     lldb_private::SymbolContext &sc) {
730   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
731   uint32_t resolved_flags = 0;
732   if (resolve_scope & eSymbolContextCompUnit ||
733       resolve_scope & eSymbolContextVariable ||
734       resolve_scope & eSymbolContextFunction ||
735       resolve_scope & eSymbolContextBlock ||
736       resolve_scope & eSymbolContextLineEntry) {
737     auto cu_sp = GetCompileUnitContainsAddress(so_addr);
738     if (!cu_sp) {
739       if (resolved_flags & eSymbolContextVariable) {
740         // TODO: Resolve variables
741       }
742       return 0;
743     }
744     sc.comp_unit = cu_sp.get();
745     resolved_flags |= eSymbolContextCompUnit;
746     lldbassert(sc.module_sp == cu_sp->GetModule());
747   }
748 
749   if (resolve_scope & eSymbolContextFunction ||
750       resolve_scope & eSymbolContextBlock) {
751     addr_t file_vm_addr = so_addr.GetFileAddress();
752     auto symbol_up =
753         m_session_up->findSymbolByAddress(file_vm_addr, PDB_SymType::Function);
754     if (symbol_up) {
755       auto *pdb_func = llvm::dyn_cast<PDBSymbolFunc>(symbol_up.get());
756       assert(pdb_func);
757       auto func_uid = pdb_func->getSymIndexId();
758       sc.function = sc.comp_unit->FindFunctionByUID(func_uid).get();
759       if (sc.function == nullptr)
760         sc.function =
761             ParseCompileUnitFunctionForPDBFunc(*pdb_func, *sc.comp_unit);
762       if (sc.function) {
763         resolved_flags |= eSymbolContextFunction;
764         if (resolve_scope & eSymbolContextBlock) {
765           auto block_symbol = m_session_up->findSymbolByAddress(
766               file_vm_addr, PDB_SymType::Block);
767           auto block_id = block_symbol ? block_symbol->getSymIndexId()
768                                        : sc.function->GetID();
769           sc.block = sc.function->GetBlock(true).FindBlockByID(block_id);
770           if (sc.block)
771             resolved_flags |= eSymbolContextBlock;
772         }
773       }
774     }
775   }
776 
777   if (resolve_scope & eSymbolContextLineEntry) {
778     if (auto *line_table = sc.comp_unit->GetLineTable()) {
779       Address addr(so_addr);
780       if (line_table->FindLineEntryByAddress(addr, sc.line_entry))
781         resolved_flags |= eSymbolContextLineEntry;
782     }
783   }
784 
785   return resolved_flags;
786 }
787 
788 uint32_t SymbolFilePDB::ResolveSymbolContext(
789     const lldb_private::SourceLocationSpec &src_location_spec,
790     SymbolContextItem resolve_scope, lldb_private::SymbolContextList &sc_list) {
791   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
792   const size_t old_size = sc_list.GetSize();
793   const FileSpec &file_spec = src_location_spec.GetFileSpec();
794   const uint32_t line = src_location_spec.GetLine().getValueOr(0);
795   if (resolve_scope & lldb::eSymbolContextCompUnit) {
796     // Locate all compilation units with line numbers referencing the specified
797     // file.  For example, if `file_spec` is <vector>, then this should return
798     // all source files and header files that reference <vector>, either
799     // directly or indirectly.
800     auto compilands = m_session_up->findCompilandsForSourceFile(
801         file_spec.GetPath(), PDB_NameSearchFlags::NS_CaseInsensitive);
802 
803     if (!compilands)
804       return 0;
805 
806     // For each one, either find its previously parsed data or parse it afresh
807     // and add it to the symbol context list.
808     while (auto compiland = compilands->getNext()) {
809       // If we're not checking inlines, then don't add line information for
810       // this file unless the FileSpec matches. For inline functions, we don't
811       // have to match the FileSpec since they could be defined in headers
812       // other than file specified in FileSpec.
813       if (!src_location_spec.GetCheckInlines()) {
814         std::string source_file = compiland->getSourceFileFullPath();
815         if (source_file.empty())
816           continue;
817         FileSpec this_spec(source_file, FileSpec::Style::windows);
818         bool need_full_match = !file_spec.GetDirectory().IsEmpty();
819         if (FileSpec::Compare(file_spec, this_spec, need_full_match) != 0)
820           continue;
821       }
822 
823       SymbolContext sc;
824       auto cu = ParseCompileUnitForUID(compiland->getSymIndexId());
825       if (!cu)
826         continue;
827       sc.comp_unit = cu.get();
828       sc.module_sp = cu->GetModule();
829 
830       // If we were asked to resolve line entries, add all entries to the line
831       // table that match the requested line (or all lines if `line` == 0).
832       if (resolve_scope & (eSymbolContextFunction | eSymbolContextBlock |
833                            eSymbolContextLineEntry)) {
834         bool has_line_table = ParseCompileUnitLineTable(*sc.comp_unit, line);
835 
836         if ((resolve_scope & eSymbolContextLineEntry) && !has_line_table) {
837           // The query asks for line entries, but we can't get them for the
838           // compile unit. This is not normal for `line` = 0. So just assert
839           // it.
840           assert(line && "Couldn't get all line entries!\n");
841 
842           // Current compiland does not have the requested line. Search next.
843           continue;
844         }
845 
846         if (resolve_scope & (eSymbolContextFunction | eSymbolContextBlock)) {
847           if (!has_line_table)
848             continue;
849 
850           auto *line_table = sc.comp_unit->GetLineTable();
851           lldbassert(line_table);
852 
853           uint32_t num_line_entries = line_table->GetSize();
854           // Skip the terminal line entry.
855           --num_line_entries;
856 
857           // If `line `!= 0, see if we can resolve function for each line entry
858           // in the line table.
859           for (uint32_t line_idx = 0; line && line_idx < num_line_entries;
860                ++line_idx) {
861             if (!line_table->GetLineEntryAtIndex(line_idx, sc.line_entry))
862               continue;
863 
864             auto file_vm_addr =
865                 sc.line_entry.range.GetBaseAddress().GetFileAddress();
866             if (file_vm_addr == LLDB_INVALID_ADDRESS || file_vm_addr == 0)
867               continue;
868 
869             auto symbol_up = m_session_up->findSymbolByAddress(
870                 file_vm_addr, PDB_SymType::Function);
871             if (symbol_up) {
872               auto func_uid = symbol_up->getSymIndexId();
873               sc.function = sc.comp_unit->FindFunctionByUID(func_uid).get();
874               if (sc.function == nullptr) {
875                 auto pdb_func = llvm::dyn_cast<PDBSymbolFunc>(symbol_up.get());
876                 assert(pdb_func);
877                 sc.function = ParseCompileUnitFunctionForPDBFunc(*pdb_func,
878                                                                  *sc.comp_unit);
879               }
880               if (sc.function && (resolve_scope & eSymbolContextBlock)) {
881                 Block &block = sc.function->GetBlock(true);
882                 sc.block = block.FindBlockByID(sc.function->GetID());
883               }
884             }
885             sc_list.Append(sc);
886           }
887         } else if (has_line_table) {
888           // We can parse line table for the compile unit. But no query to
889           // resolve function or block. We append `sc` to the list anyway.
890           sc_list.Append(sc);
891         }
892       } else {
893         // No query for line entry, function or block. But we have a valid
894         // compile unit, append `sc` to the list.
895         sc_list.Append(sc);
896       }
897     }
898   }
899   return sc_list.GetSize() - old_size;
900 }
901 
902 std::string SymbolFilePDB::GetMangledForPDBData(const PDBSymbolData &pdb_data) {
903   // Cache public names at first
904   if (m_public_names.empty())
905     if (auto result_up =
906             m_global_scope_up->findAllChildren(PDB_SymType::PublicSymbol))
907       while (auto symbol_up = result_up->getNext())
908         if (auto addr = symbol_up->getRawSymbol().getVirtualAddress())
909           m_public_names[addr] = symbol_up->getRawSymbol().getName();
910 
911   // Look up the name in the cache
912   return m_public_names.lookup(pdb_data.getVirtualAddress());
913 }
914 
915 VariableSP SymbolFilePDB::ParseVariableForPDBData(
916     const lldb_private::SymbolContext &sc,
917     const llvm::pdb::PDBSymbolData &pdb_data) {
918   VariableSP var_sp;
919   uint32_t var_uid = pdb_data.getSymIndexId();
920   auto result = m_variables.find(var_uid);
921   if (result != m_variables.end())
922     return result->second;
923 
924   ValueType scope = eValueTypeInvalid;
925   bool is_static_member = false;
926   bool is_external = false;
927   bool is_artificial = false;
928 
929   switch (pdb_data.getDataKind()) {
930   case PDB_DataKind::Global:
931     scope = eValueTypeVariableGlobal;
932     is_external = true;
933     break;
934   case PDB_DataKind::Local:
935     scope = eValueTypeVariableLocal;
936     break;
937   case PDB_DataKind::FileStatic:
938     scope = eValueTypeVariableStatic;
939     break;
940   case PDB_DataKind::StaticMember:
941     is_static_member = true;
942     scope = eValueTypeVariableStatic;
943     break;
944   case PDB_DataKind::Member:
945     scope = eValueTypeVariableStatic;
946     break;
947   case PDB_DataKind::Param:
948     scope = eValueTypeVariableArgument;
949     break;
950   case PDB_DataKind::Constant:
951     scope = eValueTypeConstResult;
952     break;
953   default:
954     break;
955   }
956 
957   switch (pdb_data.getLocationType()) {
958   case PDB_LocType::TLS:
959     scope = eValueTypeVariableThreadLocal;
960     break;
961   case PDB_LocType::RegRel: {
962     // It is a `this` pointer.
963     if (pdb_data.getDataKind() == PDB_DataKind::ObjectPtr) {
964       scope = eValueTypeVariableArgument;
965       is_artificial = true;
966     }
967   } break;
968   default:
969     break;
970   }
971 
972   Declaration decl;
973   if (!is_artificial && !pdb_data.isCompilerGenerated()) {
974     if (auto lines = pdb_data.getLineNumbers()) {
975       if (auto first_line = lines->getNext()) {
976         uint32_t src_file_id = first_line->getSourceFileId();
977         auto src_file = m_session_up->getSourceFileById(src_file_id);
978         if (src_file) {
979           FileSpec spec(src_file->getFileName());
980           decl.SetFile(spec);
981           decl.SetColumn(first_line->getColumnNumber());
982           decl.SetLine(first_line->getLineNumber());
983         }
984       }
985     }
986   }
987 
988   Variable::RangeList ranges;
989   SymbolContextScope *context_scope = sc.comp_unit;
990   if (scope == eValueTypeVariableLocal || scope == eValueTypeVariableArgument) {
991     if (sc.function) {
992       Block &function_block = sc.function->GetBlock(true);
993       Block *block =
994           function_block.FindBlockByID(pdb_data.getLexicalParentId());
995       if (!block)
996         block = &function_block;
997 
998       context_scope = block;
999 
1000       for (size_t i = 0, num_ranges = block->GetNumRanges(); i < num_ranges;
1001            ++i) {
1002         AddressRange range;
1003         if (!block->GetRangeAtIndex(i, range))
1004           continue;
1005 
1006         ranges.Append(range.GetBaseAddress().GetFileAddress(),
1007                       range.GetByteSize());
1008       }
1009     }
1010   }
1011 
1012   SymbolFileTypeSP type_sp =
1013       std::make_shared<SymbolFileType>(*this, pdb_data.getTypeId());
1014 
1015   auto var_name = pdb_data.getName();
1016   auto mangled = GetMangledForPDBData(pdb_data);
1017   auto mangled_cstr = mangled.empty() ? nullptr : mangled.c_str();
1018 
1019   bool is_constant;
1020   DWARFExpression location = ConvertPDBLocationToDWARFExpression(
1021       GetObjectFile()->GetModule(), pdb_data, ranges, is_constant);
1022 
1023   var_sp = std::make_shared<Variable>(
1024       var_uid, var_name.c_str(), mangled_cstr, type_sp, scope, context_scope,
1025       ranges, &decl, location, is_external, is_artificial, is_constant,
1026       is_static_member);
1027 
1028   m_variables.insert(std::make_pair(var_uid, var_sp));
1029   return var_sp;
1030 }
1031 
1032 size_t
1033 SymbolFilePDB::ParseVariables(const lldb_private::SymbolContext &sc,
1034                               const llvm::pdb::PDBSymbol &pdb_symbol,
1035                               lldb_private::VariableList *variable_list) {
1036   size_t num_added = 0;
1037 
1038   if (auto pdb_data = llvm::dyn_cast<PDBSymbolData>(&pdb_symbol)) {
1039     VariableListSP local_variable_list_sp;
1040 
1041     auto result = m_variables.find(pdb_data->getSymIndexId());
1042     if (result != m_variables.end()) {
1043       if (variable_list)
1044         variable_list->AddVariableIfUnique(result->second);
1045     } else {
1046       // Prepare right VariableList for this variable.
1047       if (auto lexical_parent = pdb_data->getLexicalParent()) {
1048         switch (lexical_parent->getSymTag()) {
1049         case PDB_SymType::Exe:
1050           assert(sc.comp_unit);
1051           LLVM_FALLTHROUGH;
1052         case PDB_SymType::Compiland: {
1053           if (sc.comp_unit) {
1054             local_variable_list_sp = sc.comp_unit->GetVariableList(false);
1055             if (!local_variable_list_sp) {
1056               local_variable_list_sp = std::make_shared<VariableList>();
1057               sc.comp_unit->SetVariableList(local_variable_list_sp);
1058             }
1059           }
1060         } break;
1061         case PDB_SymType::Block:
1062         case PDB_SymType::Function: {
1063           if (sc.function) {
1064             Block *block = sc.function->GetBlock(true).FindBlockByID(
1065                 lexical_parent->getSymIndexId());
1066             if (block) {
1067               local_variable_list_sp = block->GetBlockVariableList(false);
1068               if (!local_variable_list_sp) {
1069                 local_variable_list_sp = std::make_shared<VariableList>();
1070                 block->SetVariableList(local_variable_list_sp);
1071               }
1072             }
1073           }
1074         } break;
1075         default:
1076           break;
1077         }
1078       }
1079 
1080       if (local_variable_list_sp) {
1081         if (auto var_sp = ParseVariableForPDBData(sc, *pdb_data)) {
1082           local_variable_list_sp->AddVariableIfUnique(var_sp);
1083           if (variable_list)
1084             variable_list->AddVariableIfUnique(var_sp);
1085           ++num_added;
1086           PDBASTParser *ast = GetPDBAstParser();
1087           if (ast)
1088             ast->GetDeclForSymbol(*pdb_data);
1089         }
1090       }
1091     }
1092   }
1093 
1094   if (auto results = pdb_symbol.findAllChildren()) {
1095     while (auto result = results->getNext())
1096       num_added += ParseVariables(sc, *result, variable_list);
1097   }
1098 
1099   return num_added;
1100 }
1101 
1102 void SymbolFilePDB::FindGlobalVariables(
1103     lldb_private::ConstString name, const CompilerDeclContext &parent_decl_ctx,
1104     uint32_t max_matches, lldb_private::VariableList &variables) {
1105   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1106   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
1107     return;
1108   if (name.IsEmpty())
1109     return;
1110 
1111   auto results = m_global_scope_up->findAllChildren<PDBSymbolData>();
1112   if (!results)
1113     return;
1114 
1115   uint32_t matches = 0;
1116   size_t old_size = variables.GetSize();
1117   while (auto result = results->getNext()) {
1118     auto pdb_data = llvm::dyn_cast<PDBSymbolData>(result.get());
1119     if (max_matches > 0 && matches >= max_matches)
1120       break;
1121 
1122     SymbolContext sc;
1123     sc.module_sp = m_objfile_sp->GetModule();
1124     lldbassert(sc.module_sp.get());
1125 
1126     if (!name.GetStringRef().equals(
1127             MSVCUndecoratedNameParser::DropScope(pdb_data->getName())))
1128       continue;
1129 
1130     sc.comp_unit = ParseCompileUnitForUID(GetCompilandId(*pdb_data)).get();
1131     // FIXME: We are not able to determine the compile unit.
1132     if (sc.comp_unit == nullptr)
1133       continue;
1134 
1135     if (parent_decl_ctx.IsValid() &&
1136         GetDeclContextContainingUID(result->getSymIndexId()) != parent_decl_ctx)
1137       continue;
1138 
1139     ParseVariables(sc, *pdb_data, &variables);
1140     matches = variables.GetSize() - old_size;
1141   }
1142 }
1143 
1144 void SymbolFilePDB::FindGlobalVariables(
1145     const lldb_private::RegularExpression &regex, uint32_t max_matches,
1146     lldb_private::VariableList &variables) {
1147   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1148   if (!regex.IsValid())
1149     return;
1150   auto results = m_global_scope_up->findAllChildren<PDBSymbolData>();
1151   if (!results)
1152     return;
1153 
1154   uint32_t matches = 0;
1155   size_t old_size = variables.GetSize();
1156   while (auto pdb_data = results->getNext()) {
1157     if (max_matches > 0 && matches >= max_matches)
1158       break;
1159 
1160     auto var_name = pdb_data->getName();
1161     if (var_name.empty())
1162       continue;
1163     if (!regex.Execute(var_name))
1164       continue;
1165     SymbolContext sc;
1166     sc.module_sp = m_objfile_sp->GetModule();
1167     lldbassert(sc.module_sp.get());
1168 
1169     sc.comp_unit = ParseCompileUnitForUID(GetCompilandId(*pdb_data)).get();
1170     // FIXME: We are not able to determine the compile unit.
1171     if (sc.comp_unit == nullptr)
1172       continue;
1173 
1174     ParseVariables(sc, *pdb_data, &variables);
1175     matches = variables.GetSize() - old_size;
1176   }
1177 }
1178 
1179 bool SymbolFilePDB::ResolveFunction(const llvm::pdb::PDBSymbolFunc &pdb_func,
1180                                     bool include_inlines,
1181                                     lldb_private::SymbolContextList &sc_list) {
1182   lldb_private::SymbolContext sc;
1183   sc.comp_unit = ParseCompileUnitForUID(pdb_func.getCompilandId()).get();
1184   if (!sc.comp_unit)
1185     return false;
1186   sc.module_sp = sc.comp_unit->GetModule();
1187   sc.function = ParseCompileUnitFunctionForPDBFunc(pdb_func, *sc.comp_unit);
1188   if (!sc.function)
1189     return false;
1190 
1191   sc_list.Append(sc);
1192   return true;
1193 }
1194 
1195 bool SymbolFilePDB::ResolveFunction(uint32_t uid, bool include_inlines,
1196                                     lldb_private::SymbolContextList &sc_list) {
1197   auto pdb_func_up = m_session_up->getConcreteSymbolById<PDBSymbolFunc>(uid);
1198   if (!pdb_func_up && !(include_inlines && pdb_func_up->hasInlineAttribute()))
1199     return false;
1200   return ResolveFunction(*pdb_func_up, include_inlines, sc_list);
1201 }
1202 
1203 void SymbolFilePDB::CacheFunctionNames() {
1204   if (!m_func_full_names.IsEmpty())
1205     return;
1206 
1207   std::map<uint64_t, uint32_t> addr_ids;
1208 
1209   if (auto results_up = m_global_scope_up->findAllChildren<PDBSymbolFunc>()) {
1210     while (auto pdb_func_up = results_up->getNext()) {
1211       if (pdb_func_up->isCompilerGenerated())
1212         continue;
1213 
1214       auto name = pdb_func_up->getName();
1215       auto demangled_name = pdb_func_up->getUndecoratedName();
1216       if (name.empty() && demangled_name.empty())
1217         continue;
1218 
1219       auto uid = pdb_func_up->getSymIndexId();
1220       if (!demangled_name.empty() && pdb_func_up->getVirtualAddress())
1221         addr_ids.insert(std::make_pair(pdb_func_up->getVirtualAddress(), uid));
1222 
1223       if (auto parent = pdb_func_up->getClassParent()) {
1224 
1225         // PDB have symbols for class/struct methods or static methods in Enum
1226         // Class. We won't bother to check if the parent is UDT or Enum here.
1227         m_func_method_names.Append(ConstString(name), uid);
1228 
1229         // To search a method name, like NS::Class:MemberFunc, LLDB searches
1230         // its base name, i.e. MemberFunc by default. Since PDBSymbolFunc does
1231         // not have information of this, we extract base names and cache them
1232         // by our own effort.
1233         llvm::StringRef basename = MSVCUndecoratedNameParser::DropScope(name);
1234         if (!basename.empty())
1235           m_func_base_names.Append(ConstString(basename), uid);
1236         else {
1237           m_func_base_names.Append(ConstString(name), uid);
1238         }
1239 
1240         if (!demangled_name.empty())
1241           m_func_full_names.Append(ConstString(demangled_name), uid);
1242 
1243       } else {
1244         // Handle not-method symbols.
1245 
1246         // The function name might contain namespace, or its lexical scope.
1247         llvm::StringRef basename = MSVCUndecoratedNameParser::DropScope(name);
1248         if (!basename.empty())
1249           m_func_base_names.Append(ConstString(basename), uid);
1250         else
1251           m_func_base_names.Append(ConstString(name), uid);
1252 
1253         if (name == "main") {
1254           m_func_full_names.Append(ConstString(name), uid);
1255 
1256           if (!demangled_name.empty() && name != demangled_name) {
1257             m_func_full_names.Append(ConstString(demangled_name), uid);
1258             m_func_base_names.Append(ConstString(demangled_name), uid);
1259           }
1260         } else if (!demangled_name.empty()) {
1261           m_func_full_names.Append(ConstString(demangled_name), uid);
1262         } else {
1263           m_func_full_names.Append(ConstString(name), uid);
1264         }
1265       }
1266     }
1267   }
1268 
1269   if (auto results_up =
1270           m_global_scope_up->findAllChildren<PDBSymbolPublicSymbol>()) {
1271     while (auto pub_sym_up = results_up->getNext()) {
1272       if (!pub_sym_up->isFunction())
1273         continue;
1274       auto name = pub_sym_up->getName();
1275       if (name.empty())
1276         continue;
1277 
1278       if (CPlusPlusLanguage::IsCPPMangledName(name.c_str())) {
1279         auto vm_addr = pub_sym_up->getVirtualAddress();
1280 
1281         // PDB public symbol has mangled name for its associated function.
1282         if (vm_addr && addr_ids.find(vm_addr) != addr_ids.end()) {
1283           // Cache mangled name.
1284           m_func_full_names.Append(ConstString(name), addr_ids[vm_addr]);
1285         }
1286       }
1287     }
1288   }
1289   // Sort them before value searching is working properly
1290   m_func_full_names.Sort();
1291   m_func_full_names.SizeToFit();
1292   m_func_method_names.Sort();
1293   m_func_method_names.SizeToFit();
1294   m_func_base_names.Sort();
1295   m_func_base_names.SizeToFit();
1296 }
1297 
1298 void SymbolFilePDB::FindFunctions(
1299     lldb_private::ConstString name,
1300     const lldb_private::CompilerDeclContext &parent_decl_ctx,
1301     FunctionNameType name_type_mask, bool include_inlines,
1302     lldb_private::SymbolContextList &sc_list) {
1303   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1304   lldbassert((name_type_mask & eFunctionNameTypeAuto) == 0);
1305 
1306   if (name_type_mask == eFunctionNameTypeNone)
1307     return;
1308   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
1309     return;
1310   if (name.IsEmpty())
1311     return;
1312 
1313   if (name_type_mask & eFunctionNameTypeFull ||
1314       name_type_mask & eFunctionNameTypeBase ||
1315       name_type_mask & eFunctionNameTypeMethod) {
1316     CacheFunctionNames();
1317 
1318     std::set<uint32_t> resolved_ids;
1319     auto ResolveFn = [this, &name, parent_decl_ctx, include_inlines, &sc_list,
1320                       &resolved_ids](UniqueCStringMap<uint32_t> &Names) {
1321       std::vector<uint32_t> ids;
1322       if (!Names.GetValues(name, ids))
1323         return;
1324 
1325       for (uint32_t id : ids) {
1326         if (resolved_ids.find(id) != resolved_ids.end())
1327           continue;
1328 
1329         if (parent_decl_ctx.IsValid() &&
1330             GetDeclContextContainingUID(id) != parent_decl_ctx)
1331           continue;
1332 
1333         if (ResolveFunction(id, include_inlines, sc_list))
1334           resolved_ids.insert(id);
1335       }
1336     };
1337     if (name_type_mask & eFunctionNameTypeFull) {
1338       ResolveFn(m_func_full_names);
1339       ResolveFn(m_func_base_names);
1340       ResolveFn(m_func_method_names);
1341     }
1342     if (name_type_mask & eFunctionNameTypeBase)
1343       ResolveFn(m_func_base_names);
1344     if (name_type_mask & eFunctionNameTypeMethod)
1345       ResolveFn(m_func_method_names);
1346   }
1347 }
1348 
1349 void SymbolFilePDB::FindFunctions(const lldb_private::RegularExpression &regex,
1350                                   bool include_inlines,
1351                                   lldb_private::SymbolContextList &sc_list) {
1352   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1353   if (!regex.IsValid())
1354     return;
1355 
1356   CacheFunctionNames();
1357 
1358   std::set<uint32_t> resolved_ids;
1359   auto ResolveFn = [&regex, include_inlines, &sc_list, &resolved_ids,
1360                     this](UniqueCStringMap<uint32_t> &Names) {
1361     std::vector<uint32_t> ids;
1362     if (Names.GetValues(regex, ids)) {
1363       for (auto id : ids) {
1364         if (resolved_ids.find(id) == resolved_ids.end())
1365           if (ResolveFunction(id, include_inlines, sc_list))
1366             resolved_ids.insert(id);
1367       }
1368     }
1369   };
1370   ResolveFn(m_func_full_names);
1371   ResolveFn(m_func_base_names);
1372 }
1373 
1374 void SymbolFilePDB::GetMangledNamesForFunction(
1375     const std::string &scope_qualified_name,
1376     std::vector<lldb_private::ConstString> &mangled_names) {}
1377 
1378 void SymbolFilePDB::AddSymbols(lldb_private::Symtab &symtab) {
1379   std::set<lldb::addr_t> sym_addresses;
1380   for (size_t i = 0; i < symtab.GetNumSymbols(); i++)
1381     sym_addresses.insert(symtab.SymbolAtIndex(i)->GetFileAddress());
1382 
1383   auto results = m_global_scope_up->findAllChildren<PDBSymbolPublicSymbol>();
1384   if (!results)
1385     return;
1386 
1387   auto section_list = m_objfile_sp->GetSectionList();
1388   if (!section_list)
1389     return;
1390 
1391   while (auto pub_symbol = results->getNext()) {
1392     auto section_id = pub_symbol->getAddressSection();
1393 
1394     auto section = section_list->FindSectionByID(section_id);
1395     if (!section)
1396       continue;
1397 
1398     auto offset = pub_symbol->getAddressOffset();
1399 
1400     auto file_addr = section->GetFileAddress() + offset;
1401     if (sym_addresses.find(file_addr) != sym_addresses.end())
1402       continue;
1403     sym_addresses.insert(file_addr);
1404 
1405     auto size = pub_symbol->getLength();
1406     symtab.AddSymbol(
1407         Symbol(pub_symbol->getSymIndexId(),   // symID
1408                pub_symbol->getName().c_str(), // name
1409                pub_symbol->isCode() ? eSymbolTypeCode : eSymbolTypeData, // type
1410                true,      // external
1411                false,     // is_debug
1412                false,     // is_trampoline
1413                false,     // is_artificial
1414                section,   // section_sp
1415                offset,    // value
1416                size,      // size
1417                size != 0, // size_is_valid
1418                false,     // contains_linker_annotations
1419                0          // flags
1420                ));
1421   }
1422 
1423   symtab.Finalize();
1424 }
1425 
1426 void SymbolFilePDB::FindTypes(
1427     lldb_private::ConstString name, const CompilerDeclContext &parent_decl_ctx,
1428     uint32_t max_matches,
1429     llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
1430     lldb_private::TypeMap &types) {
1431   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1432   if (!name)
1433     return;
1434   if (!DeclContextMatchesThisSymbolFile(parent_decl_ctx))
1435     return;
1436 
1437   searched_symbol_files.clear();
1438   searched_symbol_files.insert(this);
1439 
1440   // There is an assumption 'name' is not a regex
1441   FindTypesByName(name.GetStringRef(), parent_decl_ctx, max_matches, types);
1442 }
1443 
1444 void SymbolFilePDB::DumpClangAST(Stream &s) {
1445   auto type_system_or_err =
1446       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
1447   if (auto err = type_system_or_err.takeError()) {
1448     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
1449                    std::move(err), "Unable to dump ClangAST");
1450     return;
1451   }
1452 
1453   auto *clang_type_system =
1454       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
1455   if (!clang_type_system)
1456     return;
1457   clang_type_system->Dump(s.AsRawOstream());
1458 }
1459 
1460 void SymbolFilePDB::FindTypesByRegex(
1461     const lldb_private::RegularExpression &regex, uint32_t max_matches,
1462     lldb_private::TypeMap &types) {
1463   // When searching by regex, we need to go out of our way to limit the search
1464   // space as much as possible since this searches EVERYTHING in the PDB,
1465   // manually doing regex comparisons.  PDB library isn't optimized for regex
1466   // searches or searches across multiple symbol types at the same time, so the
1467   // best we can do is to search enums, then typedefs, then classes one by one,
1468   // and do a regex comparison against each of them.
1469   PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef,
1470                                   PDB_SymType::UDT};
1471   std::unique_ptr<IPDBEnumSymbols> results;
1472 
1473   uint32_t matches = 0;
1474 
1475   for (auto tag : tags_to_search) {
1476     results = m_global_scope_up->findAllChildren(tag);
1477     if (!results)
1478       continue;
1479 
1480     while (auto result = results->getNext()) {
1481       if (max_matches > 0 && matches >= max_matches)
1482         break;
1483 
1484       std::string type_name;
1485       if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get()))
1486         type_name = enum_type->getName();
1487       else if (auto typedef_type =
1488                    llvm::dyn_cast<PDBSymbolTypeTypedef>(result.get()))
1489         type_name = typedef_type->getName();
1490       else if (auto class_type = llvm::dyn_cast<PDBSymbolTypeUDT>(result.get()))
1491         type_name = class_type->getName();
1492       else {
1493         // We're looking only for types that have names.  Skip symbols, as well
1494         // as unnamed types such as arrays, pointers, etc.
1495         continue;
1496       }
1497 
1498       if (!regex.Execute(type_name))
1499         continue;
1500 
1501       // This should cause the type to get cached and stored in the `m_types`
1502       // lookup.
1503       if (!ResolveTypeUID(result->getSymIndexId()))
1504         continue;
1505 
1506       auto iter = m_types.find(result->getSymIndexId());
1507       if (iter == m_types.end())
1508         continue;
1509       types.Insert(iter->second);
1510       ++matches;
1511     }
1512   }
1513 }
1514 
1515 void SymbolFilePDB::FindTypesByName(
1516     llvm::StringRef name,
1517     const lldb_private::CompilerDeclContext &parent_decl_ctx,
1518     uint32_t max_matches, lldb_private::TypeMap &types) {
1519   std::unique_ptr<IPDBEnumSymbols> results;
1520   if (name.empty())
1521     return;
1522   results = m_global_scope_up->findAllChildren(PDB_SymType::None);
1523   if (!results)
1524     return;
1525 
1526   uint32_t matches = 0;
1527 
1528   while (auto result = results->getNext()) {
1529     if (max_matches > 0 && matches >= max_matches)
1530       break;
1531 
1532     if (MSVCUndecoratedNameParser::DropScope(
1533             result->getRawSymbol().getName()) != name)
1534       continue;
1535 
1536     switch (result->getSymTag()) {
1537     case PDB_SymType::Enum:
1538     case PDB_SymType::UDT:
1539     case PDB_SymType::Typedef:
1540       break;
1541     default:
1542       // We're looking only for types that have names.  Skip symbols, as well
1543       // as unnamed types such as arrays, pointers, etc.
1544       continue;
1545     }
1546 
1547     // This should cause the type to get cached and stored in the `m_types`
1548     // lookup.
1549     if (!ResolveTypeUID(result->getSymIndexId()))
1550       continue;
1551 
1552     if (parent_decl_ctx.IsValid() &&
1553         GetDeclContextContainingUID(result->getSymIndexId()) != parent_decl_ctx)
1554       continue;
1555 
1556     auto iter = m_types.find(result->getSymIndexId());
1557     if (iter == m_types.end())
1558       continue;
1559     types.Insert(iter->second);
1560     ++matches;
1561   }
1562 }
1563 
1564 void SymbolFilePDB::FindTypes(
1565     llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
1566     llvm::DenseSet<SymbolFile *> &searched_symbol_files,
1567     lldb_private::TypeMap &types) {}
1568 
1569 void SymbolFilePDB::GetTypesForPDBSymbol(const llvm::pdb::PDBSymbol &pdb_symbol,
1570                                          uint32_t type_mask,
1571                                          TypeCollection &type_collection) {
1572   bool can_parse = false;
1573   switch (pdb_symbol.getSymTag()) {
1574   case PDB_SymType::ArrayType:
1575     can_parse = ((type_mask & eTypeClassArray) != 0);
1576     break;
1577   case PDB_SymType::BuiltinType:
1578     can_parse = ((type_mask & eTypeClassBuiltin) != 0);
1579     break;
1580   case PDB_SymType::Enum:
1581     can_parse = ((type_mask & eTypeClassEnumeration) != 0);
1582     break;
1583   case PDB_SymType::Function:
1584   case PDB_SymType::FunctionSig:
1585     can_parse = ((type_mask & eTypeClassFunction) != 0);
1586     break;
1587   case PDB_SymType::PointerType:
1588     can_parse = ((type_mask & (eTypeClassPointer | eTypeClassBlockPointer |
1589                                eTypeClassMemberPointer)) != 0);
1590     break;
1591   case PDB_SymType::Typedef:
1592     can_parse = ((type_mask & eTypeClassTypedef) != 0);
1593     break;
1594   case PDB_SymType::UDT: {
1595     auto *udt = llvm::dyn_cast<PDBSymbolTypeUDT>(&pdb_symbol);
1596     assert(udt);
1597     can_parse = (udt->getUdtKind() != PDB_UdtType::Interface &&
1598                  ((type_mask & (eTypeClassClass | eTypeClassStruct |
1599                                 eTypeClassUnion)) != 0));
1600   } break;
1601   default:
1602     break;
1603   }
1604 
1605   if (can_parse) {
1606     if (auto *type = ResolveTypeUID(pdb_symbol.getSymIndexId())) {
1607       auto result =
1608           std::find(type_collection.begin(), type_collection.end(), type);
1609       if (result == type_collection.end())
1610         type_collection.push_back(type);
1611     }
1612   }
1613 
1614   auto results_up = pdb_symbol.findAllChildren();
1615   while (auto symbol_up = results_up->getNext())
1616     GetTypesForPDBSymbol(*symbol_up, type_mask, type_collection);
1617 }
1618 
1619 void SymbolFilePDB::GetTypes(lldb_private::SymbolContextScope *sc_scope,
1620                              TypeClass type_mask,
1621                              lldb_private::TypeList &type_list) {
1622   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1623   TypeCollection type_collection;
1624   CompileUnit *cu =
1625       sc_scope ? sc_scope->CalculateSymbolContextCompileUnit() : nullptr;
1626   if (cu) {
1627     auto compiland_up = GetPDBCompilandByUID(cu->GetID());
1628     if (!compiland_up)
1629       return;
1630     GetTypesForPDBSymbol(*compiland_up, type_mask, type_collection);
1631   } else {
1632     for (uint32_t cu_idx = 0; cu_idx < GetNumCompileUnits(); ++cu_idx) {
1633       auto cu_sp = ParseCompileUnitAtIndex(cu_idx);
1634       if (cu_sp) {
1635         if (auto compiland_up = GetPDBCompilandByUID(cu_sp->GetID()))
1636           GetTypesForPDBSymbol(*compiland_up, type_mask, type_collection);
1637       }
1638     }
1639   }
1640 
1641   for (auto type : type_collection) {
1642     type->GetForwardCompilerType();
1643     type_list.Insert(type->shared_from_this());
1644   }
1645 }
1646 
1647 llvm::Expected<lldb_private::TypeSystem &>
1648 SymbolFilePDB::GetTypeSystemForLanguage(lldb::LanguageType language) {
1649   auto type_system_or_err =
1650       m_objfile_sp->GetModule()->GetTypeSystemForLanguage(language);
1651   if (type_system_or_err) {
1652     type_system_or_err->SetSymbolFile(this);
1653   }
1654   return type_system_or_err;
1655 }
1656 
1657 PDBASTParser *SymbolFilePDB::GetPDBAstParser() {
1658   auto type_system_or_err =
1659       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
1660   if (auto err = type_system_or_err.takeError()) {
1661     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
1662                    std::move(err), "Unable to get PDB AST parser");
1663     return nullptr;
1664   }
1665 
1666   auto *clang_type_system =
1667       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
1668   if (!clang_type_system)
1669     return nullptr;
1670 
1671   return clang_type_system->GetPDBParser();
1672 }
1673 
1674 lldb_private::CompilerDeclContext
1675 SymbolFilePDB::FindNamespace(lldb_private::ConstString name,
1676                              const CompilerDeclContext &parent_decl_ctx) {
1677   std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
1678   auto type_system_or_err =
1679       GetTypeSystemForLanguage(lldb::eLanguageTypeC_plus_plus);
1680   if (auto err = type_system_or_err.takeError()) {
1681     LLDB_LOG_ERROR(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
1682                    std::move(err), "Unable to find namespace {}",
1683                    name.AsCString());
1684     return CompilerDeclContext();
1685   }
1686 
1687   auto *clang_type_system =
1688       llvm::dyn_cast_or_null<TypeSystemClang>(&type_system_or_err.get());
1689   if (!clang_type_system)
1690     return CompilerDeclContext();
1691 
1692   PDBASTParser *pdb = clang_type_system->GetPDBParser();
1693   if (!pdb)
1694     return CompilerDeclContext();
1695 
1696   clang::DeclContext *decl_context = nullptr;
1697   if (parent_decl_ctx)
1698     decl_context = static_cast<clang::DeclContext *>(
1699         parent_decl_ctx.GetOpaqueDeclContext());
1700 
1701   auto namespace_decl =
1702       pdb->FindNamespaceDecl(decl_context, name.GetStringRef());
1703   if (!namespace_decl)
1704     return CompilerDeclContext();
1705 
1706   return clang_type_system->CreateDeclContext(namespace_decl);
1707 }
1708 
1709 IPDBSession &SymbolFilePDB::GetPDBSession() { return *m_session_up; }
1710 
1711 const IPDBSession &SymbolFilePDB::GetPDBSession() const {
1712   return *m_session_up;
1713 }
1714 
1715 lldb::CompUnitSP SymbolFilePDB::ParseCompileUnitForUID(uint32_t id,
1716                                                        uint32_t index) {
1717   auto found_cu = m_comp_units.find(id);
1718   if (found_cu != m_comp_units.end())
1719     return found_cu->second;
1720 
1721   auto compiland_up = GetPDBCompilandByUID(id);
1722   if (!compiland_up)
1723     return CompUnitSP();
1724 
1725   lldb::LanguageType lang;
1726   auto details = compiland_up->findOneChild<PDBSymbolCompilandDetails>();
1727   if (!details)
1728     lang = lldb::eLanguageTypeC_plus_plus;
1729   else
1730     lang = TranslateLanguage(details->getLanguage());
1731 
1732   if (lang == lldb::LanguageType::eLanguageTypeUnknown)
1733     return CompUnitSP();
1734 
1735   std::string path = compiland_up->getSourceFileFullPath();
1736   if (path.empty())
1737     return CompUnitSP();
1738 
1739   // Don't support optimized code for now, DebugInfoPDB does not return this
1740   // information.
1741   LazyBool optimized = eLazyBoolNo;
1742   auto cu_sp = std::make_shared<CompileUnit>(m_objfile_sp->GetModule(), nullptr,
1743                                              path.c_str(), id, lang, optimized);
1744 
1745   if (!cu_sp)
1746     return CompUnitSP();
1747 
1748   m_comp_units.insert(std::make_pair(id, cu_sp));
1749   if (index == UINT32_MAX)
1750     GetCompileUnitIndex(*compiland_up, index);
1751   lldbassert(index != UINT32_MAX);
1752   SetCompileUnitAtIndex(index, cu_sp);
1753   return cu_sp;
1754 }
1755 
1756 bool SymbolFilePDB::ParseCompileUnitLineTable(CompileUnit &comp_unit,
1757                                               uint32_t match_line) {
1758   auto compiland_up = GetPDBCompilandByUID(comp_unit.GetID());
1759   if (!compiland_up)
1760     return false;
1761 
1762   // LineEntry needs the *index* of the file into the list of support files
1763   // returned by ParseCompileUnitSupportFiles.  But the underlying SDK gives us
1764   // a globally unique idenfitifier in the namespace of the PDB.  So, we have
1765   // to do a mapping so that we can hand out indices.
1766   llvm::DenseMap<uint32_t, uint32_t> index_map;
1767   BuildSupportFileIdToSupportFileIndexMap(*compiland_up, index_map);
1768   auto line_table = std::make_unique<LineTable>(&comp_unit);
1769 
1770   // Find contributions to `compiland` from all source and header files.
1771   auto files = m_session_up->getSourceFilesForCompiland(*compiland_up);
1772   if (!files)
1773     return false;
1774 
1775   // For each source and header file, create a LineSequence for contributions
1776   // to the compiland from that file, and add the sequence.
1777   while (auto file = files->getNext()) {
1778     std::unique_ptr<LineSequence> sequence(
1779         line_table->CreateLineSequenceContainer());
1780     auto lines = m_session_up->findLineNumbers(*compiland_up, *file);
1781     if (!lines)
1782       continue;
1783     int entry_count = lines->getChildCount();
1784 
1785     uint64_t prev_addr;
1786     uint32_t prev_length;
1787     uint32_t prev_line;
1788     uint32_t prev_source_idx;
1789 
1790     for (int i = 0; i < entry_count; ++i) {
1791       auto line = lines->getChildAtIndex(i);
1792 
1793       uint64_t lno = line->getLineNumber();
1794       uint64_t addr = line->getVirtualAddress();
1795       uint32_t length = line->getLength();
1796       uint32_t source_id = line->getSourceFileId();
1797       uint32_t col = line->getColumnNumber();
1798       uint32_t source_idx = index_map[source_id];
1799 
1800       // There was a gap between the current entry and the previous entry if
1801       // the addresses don't perfectly line up.
1802       bool is_gap = (i > 0) && (prev_addr + prev_length < addr);
1803 
1804       // Before inserting the current entry, insert a terminal entry at the end
1805       // of the previous entry's address range if the current entry resulted in
1806       // a gap from the previous entry.
1807       if (is_gap && ShouldAddLine(match_line, prev_line, prev_length)) {
1808         line_table->AppendLineEntryToSequence(
1809             sequence.get(), prev_addr + prev_length, prev_line, 0,
1810             prev_source_idx, false, false, false, false, true);
1811 
1812         line_table->InsertSequence(sequence.get());
1813         sequence = line_table->CreateLineSequenceContainer();
1814       }
1815 
1816       if (ShouldAddLine(match_line, lno, length)) {
1817         bool is_statement = line->isStatement();
1818         bool is_prologue = false;
1819         bool is_epilogue = false;
1820         auto func =
1821             m_session_up->findSymbolByAddress(addr, PDB_SymType::Function);
1822         if (func) {
1823           auto prologue = func->findOneChild<PDBSymbolFuncDebugStart>();
1824           if (prologue)
1825             is_prologue = (addr == prologue->getVirtualAddress());
1826 
1827           auto epilogue = func->findOneChild<PDBSymbolFuncDebugEnd>();
1828           if (epilogue)
1829             is_epilogue = (addr == epilogue->getVirtualAddress());
1830         }
1831 
1832         line_table->AppendLineEntryToSequence(sequence.get(), addr, lno, col,
1833                                               source_idx, is_statement, false,
1834                                               is_prologue, is_epilogue, false);
1835       }
1836 
1837       prev_addr = addr;
1838       prev_length = length;
1839       prev_line = lno;
1840       prev_source_idx = source_idx;
1841     }
1842 
1843     if (entry_count > 0 && ShouldAddLine(match_line, prev_line, prev_length)) {
1844       // The end is always a terminal entry, so insert it regardless.
1845       line_table->AppendLineEntryToSequence(
1846           sequence.get(), prev_addr + prev_length, prev_line, 0,
1847           prev_source_idx, false, false, false, false, true);
1848     }
1849 
1850     line_table->InsertSequence(sequence.get());
1851   }
1852 
1853   if (line_table->GetSize()) {
1854     comp_unit.SetLineTable(line_table.release());
1855     return true;
1856   }
1857   return false;
1858 }
1859 
1860 void SymbolFilePDB::BuildSupportFileIdToSupportFileIndexMap(
1861     const PDBSymbolCompiland &compiland,
1862     llvm::DenseMap<uint32_t, uint32_t> &index_map) const {
1863   // This is a hack, but we need to convert the source id into an index into
1864   // the support files array.  We don't want to do path comparisons to avoid
1865   // basename / full path issues that may or may not even be a problem, so we
1866   // use the globally unique source file identifiers.  Ideally we could use the
1867   // global identifiers everywhere, but LineEntry currently assumes indices.
1868   auto source_files = m_session_up->getSourceFilesForCompiland(compiland);
1869   if (!source_files)
1870     return;
1871 
1872   int index = 0;
1873   while (auto file = source_files->getNext()) {
1874     uint32_t source_id = file->getUniqueId();
1875     index_map[source_id] = index++;
1876   }
1877 }
1878 
1879 lldb::CompUnitSP SymbolFilePDB::GetCompileUnitContainsAddress(
1880     const lldb_private::Address &so_addr) {
1881   lldb::addr_t file_vm_addr = so_addr.GetFileAddress();
1882   if (file_vm_addr == LLDB_INVALID_ADDRESS || file_vm_addr == 0)
1883     return nullptr;
1884 
1885   // If it is a PDB function's vm addr, this is the first sure bet.
1886   if (auto lines =
1887           m_session_up->findLineNumbersByAddress(file_vm_addr, /*Length=*/1)) {
1888     if (auto first_line = lines->getNext())
1889       return ParseCompileUnitForUID(first_line->getCompilandId());
1890   }
1891 
1892   // Otherwise we resort to section contributions.
1893   if (auto sec_contribs = m_session_up->getSectionContribs()) {
1894     while (auto section = sec_contribs->getNext()) {
1895       auto va = section->getVirtualAddress();
1896       if (file_vm_addr >= va && file_vm_addr < va + section->getLength())
1897         return ParseCompileUnitForUID(section->getCompilandId());
1898     }
1899   }
1900   return nullptr;
1901 }
1902 
1903 Mangled
1904 SymbolFilePDB::GetMangledForPDBFunc(const llvm::pdb::PDBSymbolFunc &pdb_func) {
1905   Mangled mangled;
1906   auto func_name = pdb_func.getName();
1907   auto func_undecorated_name = pdb_func.getUndecoratedName();
1908   std::string func_decorated_name;
1909 
1910   // Seek from public symbols for non-static function's decorated name if any.
1911   // For static functions, they don't have undecorated names and aren't exposed
1912   // in Public Symbols either.
1913   if (!func_undecorated_name.empty()) {
1914     auto result_up = m_global_scope_up->findChildren(
1915         PDB_SymType::PublicSymbol, func_undecorated_name,
1916         PDB_NameSearchFlags::NS_UndecoratedName);
1917     if (result_up) {
1918       while (auto symbol_up = result_up->getNext()) {
1919         // For a public symbol, it is unique.
1920         lldbassert(result_up->getChildCount() == 1);
1921         if (auto *pdb_public_sym =
1922                 llvm::dyn_cast_or_null<PDBSymbolPublicSymbol>(
1923                     symbol_up.get())) {
1924           if (pdb_public_sym->isFunction()) {
1925             func_decorated_name = pdb_public_sym->getName();
1926             break;
1927           }
1928         }
1929       }
1930     }
1931   }
1932   if (!func_decorated_name.empty()) {
1933     mangled.SetMangledName(ConstString(func_decorated_name));
1934 
1935     // For MSVC, format of C funciton's decorated name depends on calling
1936     // convention. Unfortunately none of the format is recognized by current
1937     // LLDB. For example, `_purecall` is a __cdecl C function. From PDB,
1938     // `__purecall` is retrieved as both its decorated and undecorated name
1939     // (using PDBSymbolFunc::getUndecoratedName method). However `__purecall`
1940     // string is not treated as mangled in LLDB (neither `?` nor `_Z` prefix).
1941     // Mangled::GetDemangledName method will fail internally and caches an
1942     // empty string as its undecorated name. So we will face a contradiction
1943     // here for the same symbol:
1944     //   non-empty undecorated name from PDB
1945     //   empty undecorated name from LLDB
1946     if (!func_undecorated_name.empty() && mangled.GetDemangledName().IsEmpty())
1947       mangled.SetDemangledName(ConstString(func_undecorated_name));
1948 
1949     // LLDB uses several flags to control how a C++ decorated name is
1950     // undecorated for MSVC. See `safeUndecorateName` in Class Mangled. So the
1951     // yielded name could be different from what we retrieve from
1952     // PDB source unless we also apply same flags in getting undecorated
1953     // name through PDBSymbolFunc::getUndecoratedNameEx method.
1954     if (!func_undecorated_name.empty() &&
1955         mangled.GetDemangledName() != ConstString(func_undecorated_name))
1956       mangled.SetDemangledName(ConstString(func_undecorated_name));
1957   } else if (!func_undecorated_name.empty()) {
1958     mangled.SetDemangledName(ConstString(func_undecorated_name));
1959   } else if (!func_name.empty())
1960     mangled.SetValue(ConstString(func_name), false);
1961 
1962   return mangled;
1963 }
1964 
1965 bool SymbolFilePDB::DeclContextMatchesThisSymbolFile(
1966     const lldb_private::CompilerDeclContext &decl_ctx) {
1967   if (!decl_ctx.IsValid())
1968     return true;
1969 
1970   TypeSystem *decl_ctx_type_system = decl_ctx.GetTypeSystem();
1971   if (!decl_ctx_type_system)
1972     return false;
1973   auto type_system_or_err = GetTypeSystemForLanguage(
1974       decl_ctx_type_system->GetMinimumLanguage(nullptr));
1975   if (auto err = type_system_or_err.takeError()) {
1976     LLDB_LOG_ERROR(
1977         lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS),
1978         std::move(err),
1979         "Unable to determine if DeclContext matches this symbol file");
1980     return false;
1981   }
1982 
1983   if (decl_ctx_type_system == &type_system_or_err.get())
1984     return true; // The type systems match, return true
1985 
1986   return false;
1987 }
1988 
1989 uint32_t SymbolFilePDB::GetCompilandId(const llvm::pdb::PDBSymbolData &data) {
1990   static const auto pred_upper = [](uint32_t lhs, SecContribInfo rhs) {
1991     return lhs < rhs.Offset;
1992   };
1993 
1994   // Cache section contributions
1995   if (m_sec_contribs.empty()) {
1996     if (auto SecContribs = m_session_up->getSectionContribs()) {
1997       while (auto SectionContrib = SecContribs->getNext()) {
1998         auto comp_id = SectionContrib->getCompilandId();
1999         if (!comp_id)
2000           continue;
2001 
2002         auto sec = SectionContrib->getAddressSection();
2003         auto &sec_cs = m_sec_contribs[sec];
2004 
2005         auto offset = SectionContrib->getAddressOffset();
2006         auto it =
2007             std::upper_bound(sec_cs.begin(), sec_cs.end(), offset, pred_upper);
2008 
2009         auto size = SectionContrib->getLength();
2010         sec_cs.insert(it, {offset, size, comp_id});
2011       }
2012     }
2013   }
2014 
2015   // Check by line number
2016   if (auto Lines = data.getLineNumbers()) {
2017     if (auto FirstLine = Lines->getNext())
2018       return FirstLine->getCompilandId();
2019   }
2020 
2021   // Retrieve section + offset
2022   uint32_t DataSection = data.getAddressSection();
2023   uint32_t DataOffset = data.getAddressOffset();
2024   if (DataSection == 0) {
2025     if (auto RVA = data.getRelativeVirtualAddress())
2026       m_session_up->addressForRVA(RVA, DataSection, DataOffset);
2027   }
2028 
2029   if (DataSection) {
2030     // Search by section contributions
2031     auto &sec_cs = m_sec_contribs[DataSection];
2032     auto it =
2033         std::upper_bound(sec_cs.begin(), sec_cs.end(), DataOffset, pred_upper);
2034     if (it != sec_cs.begin()) {
2035       --it;
2036       if (DataOffset < it->Offset + it->Size)
2037         return it->CompilandId;
2038     }
2039   } else {
2040     // Search in lexical tree
2041     auto LexParentId = data.getLexicalParentId();
2042     while (auto LexParent = m_session_up->getSymbolById(LexParentId)) {
2043       if (LexParent->getSymTag() == PDB_SymType::Exe)
2044         break;
2045       if (LexParent->getSymTag() == PDB_SymType::Compiland)
2046         return LexParentId;
2047       LexParentId = LexParent->getRawSymbol().getLexicalParentId();
2048     }
2049   }
2050 
2051   return 0;
2052 }
2053