xref: /llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp (revision 987b969babe10ffb85d9f81e7449d005707109eb)
1 //===- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.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 // This file contains support for writing Microsoft CodeView debug info.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "CodeViewDebug.h"
14 #include "DwarfExpression.h"
15 #include "llvm/ADT/APSInt.h"
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/DenseSet.h"
19 #include "llvm/ADT/MapVector.h"
20 #include "llvm/ADT/None.h"
21 #include "llvm/ADT/Optional.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/SmallString.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/ADT/StringRef.h"
26 #include "llvm/ADT/TinyPtrVector.h"
27 #include "llvm/ADT/Triple.h"
28 #include "llvm/ADT/Twine.h"
29 #include "llvm/BinaryFormat/COFF.h"
30 #include "llvm/BinaryFormat/Dwarf.h"
31 #include "llvm/CodeGen/AsmPrinter.h"
32 #include "llvm/CodeGen/LexicalScopes.h"
33 #include "llvm/CodeGen/MachineFrameInfo.h"
34 #include "llvm/CodeGen/MachineFunction.h"
35 #include "llvm/CodeGen/MachineInstr.h"
36 #include "llvm/CodeGen/MachineModuleInfo.h"
37 #include "llvm/CodeGen/MachineOperand.h"
38 #include "llvm/CodeGen/TargetFrameLowering.h"
39 #include "llvm/CodeGen/TargetRegisterInfo.h"
40 #include "llvm/CodeGen/TargetSubtargetInfo.h"
41 #include "llvm/Config/llvm-config.h"
42 #include "llvm/DebugInfo/CodeView/CVTypeVisitor.h"
43 #include "llvm/DebugInfo/CodeView/CodeView.h"
44 #include "llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h"
45 #include "llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h"
46 #include "llvm/DebugInfo/CodeView/EnumTables.h"
47 #include "llvm/DebugInfo/CodeView/Line.h"
48 #include "llvm/DebugInfo/CodeView/SymbolRecord.h"
49 #include "llvm/DebugInfo/CodeView/TypeDumpVisitor.h"
50 #include "llvm/DebugInfo/CodeView/TypeIndex.h"
51 #include "llvm/DebugInfo/CodeView/TypeRecord.h"
52 #include "llvm/DebugInfo/CodeView/TypeTableCollection.h"
53 #include "llvm/IR/Constants.h"
54 #include "llvm/IR/DataLayout.h"
55 #include "llvm/IR/DebugInfoMetadata.h"
56 #include "llvm/IR/DebugLoc.h"
57 #include "llvm/IR/Function.h"
58 #include "llvm/IR/GlobalValue.h"
59 #include "llvm/IR/GlobalVariable.h"
60 #include "llvm/IR/Metadata.h"
61 #include "llvm/IR/Module.h"
62 #include "llvm/MC/MCAsmInfo.h"
63 #include "llvm/MC/MCContext.h"
64 #include "llvm/MC/MCSectionCOFF.h"
65 #include "llvm/MC/MCStreamer.h"
66 #include "llvm/MC/MCSymbol.h"
67 #include "llvm/Support/BinaryByteStream.h"
68 #include "llvm/Support/BinaryStreamReader.h"
69 #include "llvm/Support/Casting.h"
70 #include "llvm/Support/CommandLine.h"
71 #include "llvm/Support/Compiler.h"
72 #include "llvm/Support/Endian.h"
73 #include "llvm/Support/Error.h"
74 #include "llvm/Support/ErrorHandling.h"
75 #include "llvm/Support/FormatVariadic.h"
76 #include "llvm/Support/Path.h"
77 #include "llvm/Support/SMLoc.h"
78 #include "llvm/Support/ScopedPrinter.h"
79 #include "llvm/Target/TargetLoweringObjectFile.h"
80 #include "llvm/Target/TargetMachine.h"
81 #include <algorithm>
82 #include <cassert>
83 #include <cctype>
84 #include <cstddef>
85 #include <cstdint>
86 #include <iterator>
87 #include <limits>
88 #include <string>
89 #include <utility>
90 #include <vector>
91 
92 using namespace llvm;
93 using namespace llvm::codeview;
94 
95 static CPUType mapArchToCVCPUType(Triple::ArchType Type) {
96   switch (Type) {
97   case Triple::ArchType::x86:
98     return CPUType::Pentium3;
99   case Triple::ArchType::x86_64:
100     return CPUType::X64;
101   case Triple::ArchType::thumb:
102     return CPUType::Thumb;
103   case Triple::ArchType::aarch64:
104     return CPUType::ARM64;
105   default:
106     report_fatal_error("target architecture doesn't map to a CodeView CPUType");
107   }
108 }
109 
110 CodeViewDebug::CodeViewDebug(AsmPrinter *AP)
111     : DebugHandlerBase(AP), OS(*Asm->OutStreamer), TypeTable(Allocator) {
112   // If module doesn't have named metadata anchors or COFF debug section
113   // is not available, skip any debug info related stuff.
114   if (!MMI->getModule()->getNamedMetadata("llvm.dbg.cu") ||
115       !AP->getObjFileLowering().getCOFFDebugSymbolsSection()) {
116     Asm = nullptr;
117     MMI->setDebugInfoAvailability(false);
118     return;
119   }
120   // Tell MMI that we have debug info.
121   MMI->setDebugInfoAvailability(true);
122 
123   TheCPU =
124       mapArchToCVCPUType(Triple(MMI->getModule()->getTargetTriple()).getArch());
125 
126   collectGlobalVariableInfo();
127 
128   // Check if we should emit type record hashes.
129   ConstantInt *GH = mdconst::extract_or_null<ConstantInt>(
130       MMI->getModule()->getModuleFlag("CodeViewGHash"));
131   EmitDebugGlobalHashes = GH && !GH->isZero();
132 }
133 
134 StringRef CodeViewDebug::getFullFilepath(const DIFile *File) {
135   std::string &Filepath = FileToFilepathMap[File];
136   if (!Filepath.empty())
137     return Filepath;
138 
139   StringRef Dir = File->getDirectory(), Filename = File->getFilename();
140 
141   // If this is a Unix-style path, just use it as is. Don't try to canonicalize
142   // it textually because one of the path components could be a symlink.
143   if (Dir.startswith("/") || Filename.startswith("/")) {
144     if (llvm::sys::path::is_absolute(Filename, llvm::sys::path::Style::posix))
145       return Filename;
146     Filepath = Dir;
147     if (Dir.back() != '/')
148       Filepath += '/';
149     Filepath += Filename;
150     return Filepath;
151   }
152 
153   // Clang emits directory and relative filename info into the IR, but CodeView
154   // operates on full paths.  We could change Clang to emit full paths too, but
155   // that would increase the IR size and probably not needed for other users.
156   // For now, just concatenate and canonicalize the path here.
157   if (Filename.find(':') == 1)
158     Filepath = Filename;
159   else
160     Filepath = (Dir + "\\" + Filename).str();
161 
162   // Canonicalize the path.  We have to do it textually because we may no longer
163   // have access the file in the filesystem.
164   // First, replace all slashes with backslashes.
165   std::replace(Filepath.begin(), Filepath.end(), '/', '\\');
166 
167   // Remove all "\.\" with "\".
168   size_t Cursor = 0;
169   while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos)
170     Filepath.erase(Cursor, 2);
171 
172   // Replace all "\XXX\..\" with "\".  Don't try too hard though as the original
173   // path should be well-formatted, e.g. start with a drive letter, etc.
174   Cursor = 0;
175   while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) {
176     // Something's wrong if the path starts with "\..\", abort.
177     if (Cursor == 0)
178       break;
179 
180     size_t PrevSlash = Filepath.rfind('\\', Cursor - 1);
181     if (PrevSlash == std::string::npos)
182       // Something's wrong, abort.
183       break;
184 
185     Filepath.erase(PrevSlash, Cursor + 3 - PrevSlash);
186     // The next ".." might be following the one we've just erased.
187     Cursor = PrevSlash;
188   }
189 
190   // Remove all duplicate backslashes.
191   Cursor = 0;
192   while ((Cursor = Filepath.find("\\\\", Cursor)) != std::string::npos)
193     Filepath.erase(Cursor, 1);
194 
195   return Filepath;
196 }
197 
198 unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) {
199   StringRef FullPath = getFullFilepath(F);
200   unsigned NextId = FileIdMap.size() + 1;
201   auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId));
202   if (Insertion.second) {
203     // We have to compute the full filepath and emit a .cv_file directive.
204     ArrayRef<uint8_t> ChecksumAsBytes;
205     FileChecksumKind CSKind = FileChecksumKind::None;
206     if (F->getChecksum()) {
207       std::string Checksum = fromHex(F->getChecksum()->Value);
208       void *CKMem = OS.getContext().allocate(Checksum.size(), 1);
209       memcpy(CKMem, Checksum.data(), Checksum.size());
210       ChecksumAsBytes = ArrayRef<uint8_t>(
211           reinterpret_cast<const uint8_t *>(CKMem), Checksum.size());
212       switch (F->getChecksum()->Kind) {
213       case DIFile::CSK_MD5:  CSKind = FileChecksumKind::MD5; break;
214       case DIFile::CSK_SHA1: CSKind = FileChecksumKind::SHA1; break;
215       }
216     }
217     bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes,
218                                           static_cast<unsigned>(CSKind));
219     (void)Success;
220     assert(Success && ".cv_file directive failed");
221   }
222   return Insertion.first->second;
223 }
224 
225 CodeViewDebug::InlineSite &
226 CodeViewDebug::getInlineSite(const DILocation *InlinedAt,
227                              const DISubprogram *Inlinee) {
228   auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()});
229   InlineSite *Site = &SiteInsertion.first->second;
230   if (SiteInsertion.second) {
231     unsigned ParentFuncId = CurFn->FuncId;
232     if (const DILocation *OuterIA = InlinedAt->getInlinedAt())
233       ParentFuncId =
234           getInlineSite(OuterIA, InlinedAt->getScope()->getSubprogram())
235               .SiteFuncId;
236 
237     Site->SiteFuncId = NextFuncId++;
238     OS.EmitCVInlineSiteIdDirective(
239         Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()),
240         InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc());
241     Site->Inlinee = Inlinee;
242     InlinedSubprograms.insert(Inlinee);
243     getFuncIdForSubprogram(Inlinee);
244   }
245   return *Site;
246 }
247 
248 static StringRef getPrettyScopeName(const DIScope *Scope) {
249   StringRef ScopeName = Scope->getName();
250   if (!ScopeName.empty())
251     return ScopeName;
252 
253   switch (Scope->getTag()) {
254   case dwarf::DW_TAG_enumeration_type:
255   case dwarf::DW_TAG_class_type:
256   case dwarf::DW_TAG_structure_type:
257   case dwarf::DW_TAG_union_type:
258     return "<unnamed-tag>";
259   case dwarf::DW_TAG_namespace:
260     return "`anonymous namespace'";
261   }
262 
263   return StringRef();
264 }
265 
266 static const DISubprogram *getQualifiedNameComponents(
267     const DIScope *Scope, SmallVectorImpl<StringRef> &QualifiedNameComponents) {
268   const DISubprogram *ClosestSubprogram = nullptr;
269   while (Scope != nullptr) {
270     if (ClosestSubprogram == nullptr)
271       ClosestSubprogram = dyn_cast<DISubprogram>(Scope);
272     StringRef ScopeName = getPrettyScopeName(Scope);
273     if (!ScopeName.empty())
274       QualifiedNameComponents.push_back(ScopeName);
275     Scope = Scope->getScope().resolve();
276   }
277   return ClosestSubprogram;
278 }
279 
280 static std::string getQualifiedName(ArrayRef<StringRef> QualifiedNameComponents,
281                                     StringRef TypeName) {
282   std::string FullyQualifiedName;
283   for (StringRef QualifiedNameComponent :
284        llvm::reverse(QualifiedNameComponents)) {
285     FullyQualifiedName.append(QualifiedNameComponent);
286     FullyQualifiedName.append("::");
287   }
288   FullyQualifiedName.append(TypeName);
289   return FullyQualifiedName;
290 }
291 
292 static std::string getFullyQualifiedName(const DIScope *Scope, StringRef Name) {
293   SmallVector<StringRef, 5> QualifiedNameComponents;
294   getQualifiedNameComponents(Scope, QualifiedNameComponents);
295   return getQualifiedName(QualifiedNameComponents, Name);
296 }
297 
298 struct CodeViewDebug::TypeLoweringScope {
299   TypeLoweringScope(CodeViewDebug &CVD) : CVD(CVD) { ++CVD.TypeEmissionLevel; }
300   ~TypeLoweringScope() {
301     // Don't decrement TypeEmissionLevel until after emitting deferred types, so
302     // inner TypeLoweringScopes don't attempt to emit deferred types.
303     if (CVD.TypeEmissionLevel == 1)
304       CVD.emitDeferredCompleteTypes();
305     --CVD.TypeEmissionLevel;
306   }
307   CodeViewDebug &CVD;
308 };
309 
310 static std::string getFullyQualifiedName(const DIScope *Ty) {
311   const DIScope *Scope = Ty->getScope().resolve();
312   return getFullyQualifiedName(Scope, getPrettyScopeName(Ty));
313 }
314 
315 TypeIndex CodeViewDebug::getScopeIndex(const DIScope *Scope) {
316   // No scope means global scope and that uses the zero index.
317   if (!Scope || isa<DIFile>(Scope))
318     return TypeIndex();
319 
320   assert(!isa<DIType>(Scope) && "shouldn't make a namespace scope for a type");
321 
322   // Check if we've already translated this scope.
323   auto I = TypeIndices.find({Scope, nullptr});
324   if (I != TypeIndices.end())
325     return I->second;
326 
327   // Build the fully qualified name of the scope.
328   std::string ScopeName = getFullyQualifiedName(Scope);
329   StringIdRecord SID(TypeIndex(), ScopeName);
330   auto TI = TypeTable.writeLeafType(SID);
331   return recordTypeIndexForDINode(Scope, TI);
332 }
333 
334 TypeIndex CodeViewDebug::getFuncIdForSubprogram(const DISubprogram *SP) {
335   assert(SP);
336 
337   // Check if we've already translated this subprogram.
338   auto I = TypeIndices.find({SP, nullptr});
339   if (I != TypeIndices.end())
340     return I->second;
341 
342   // The display name includes function template arguments. Drop them to match
343   // MSVC.
344   StringRef DisplayName = SP->getName().split('<').first;
345 
346   const DIScope *Scope = SP->getScope().resolve();
347   TypeIndex TI;
348   if (const auto *Class = dyn_cast_or_null<DICompositeType>(Scope)) {
349     // If the scope is a DICompositeType, then this must be a method. Member
350     // function types take some special handling, and require access to the
351     // subprogram.
352     TypeIndex ClassType = getTypeIndex(Class);
353     MemberFuncIdRecord MFuncId(ClassType, getMemberFunctionType(SP, Class),
354                                DisplayName);
355     TI = TypeTable.writeLeafType(MFuncId);
356   } else {
357     // Otherwise, this must be a free function.
358     TypeIndex ParentScope = getScopeIndex(Scope);
359     FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName);
360     TI = TypeTable.writeLeafType(FuncId);
361   }
362 
363   return recordTypeIndexForDINode(SP, TI);
364 }
365 
366 static bool isNonTrivial(const DICompositeType *DCTy) {
367   return ((DCTy->getFlags() & DINode::FlagNonTrivial) == DINode::FlagNonTrivial);
368 }
369 
370 static FunctionOptions
371 getFunctionOptions(const DISubroutineType *Ty,
372                    const DICompositeType *ClassTy = nullptr,
373                    StringRef SPName = StringRef("")) {
374   FunctionOptions FO = FunctionOptions::None;
375   const DIType *ReturnTy = nullptr;
376   if (auto TypeArray = Ty->getTypeArray()) {
377     if (TypeArray.size())
378       ReturnTy = TypeArray[0].resolve();
379   }
380 
381   if (auto *ReturnDCTy = dyn_cast_or_null<DICompositeType>(ReturnTy)) {
382     if (isNonTrivial(ReturnDCTy))
383       FO |= FunctionOptions::CxxReturnUdt;
384   }
385 
386   // DISubroutineType is unnamed. Use DISubprogram's i.e. SPName in comparison.
387   if (ClassTy && isNonTrivial(ClassTy) && SPName == ClassTy->getName()) {
388     FO |= FunctionOptions::Constructor;
389 
390   // TODO: put the FunctionOptions::ConstructorWithVirtualBases flag.
391 
392   }
393   return FO;
394 }
395 
396 TypeIndex CodeViewDebug::getMemberFunctionType(const DISubprogram *SP,
397                                                const DICompositeType *Class) {
398   // Always use the method declaration as the key for the function type. The
399   // method declaration contains the this adjustment.
400   if (SP->getDeclaration())
401     SP = SP->getDeclaration();
402   assert(!SP->getDeclaration() && "should use declaration as key");
403 
404   // Key the MemberFunctionRecord into the map as {SP, Class}. It won't collide
405   // with the MemberFuncIdRecord, which is keyed in as {SP, nullptr}.
406   auto I = TypeIndices.find({SP, Class});
407   if (I != TypeIndices.end())
408     return I->second;
409 
410   // Make sure complete type info for the class is emitted *after* the member
411   // function type, as the complete class type is likely to reference this
412   // member function type.
413   TypeLoweringScope S(*this);
414   const bool IsStaticMethod = (SP->getFlags() & DINode::FlagStaticMember) != 0;
415 
416   FunctionOptions FO = getFunctionOptions(SP->getType(), Class, SP->getName());
417   TypeIndex TI = lowerTypeMemberFunction(
418       SP->getType(), Class, SP->getThisAdjustment(), IsStaticMethod, FO);
419   return recordTypeIndexForDINode(SP, TI, Class);
420 }
421 
422 TypeIndex CodeViewDebug::recordTypeIndexForDINode(const DINode *Node,
423                                                   TypeIndex TI,
424                                                   const DIType *ClassTy) {
425   auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI});
426   (void)InsertResult;
427   assert(InsertResult.second && "DINode was already assigned a type index");
428   return TI;
429 }
430 
431 unsigned CodeViewDebug::getPointerSizeInBytes() {
432   return MMI->getModule()->getDataLayout().getPointerSizeInBits() / 8;
433 }
434 
435 void CodeViewDebug::recordLocalVariable(LocalVariable &&Var,
436                                         const LexicalScope *LS) {
437   if (const DILocation *InlinedAt = LS->getInlinedAt()) {
438     // This variable was inlined. Associate it with the InlineSite.
439     const DISubprogram *Inlinee = Var.DIVar->getScope()->getSubprogram();
440     InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
441     Site.InlinedLocals.emplace_back(Var);
442   } else {
443     // This variable goes into the corresponding lexical scope.
444     ScopeVariables[LS].emplace_back(Var);
445   }
446 }
447 
448 static void addLocIfNotPresent(SmallVectorImpl<const DILocation *> &Locs,
449                                const DILocation *Loc) {
450   auto B = Locs.begin(), E = Locs.end();
451   if (std::find(B, E, Loc) == E)
452     Locs.push_back(Loc);
453 }
454 
455 void CodeViewDebug::maybeRecordLocation(const DebugLoc &DL,
456                                         const MachineFunction *MF) {
457   // Skip this instruction if it has the same location as the previous one.
458   if (!DL || DL == PrevInstLoc)
459     return;
460 
461   const DIScope *Scope = DL.get()->getScope();
462   if (!Scope)
463     return;
464 
465   // Skip this line if it is longer than the maximum we can record.
466   LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
467   if (LI.getStartLine() != DL.getLine() || LI.isAlwaysStepInto() ||
468       LI.isNeverStepInto())
469     return;
470 
471   ColumnInfo CI(DL.getCol(), /*EndColumn=*/0);
472   if (CI.getStartColumn() != DL.getCol())
473     return;
474 
475   if (!CurFn->HaveLineInfo)
476     CurFn->HaveLineInfo = true;
477   unsigned FileId = 0;
478   if (PrevInstLoc.get() && PrevInstLoc->getFile() == DL->getFile())
479     FileId = CurFn->LastFileId;
480   else
481     FileId = CurFn->LastFileId = maybeRecordFile(DL->getFile());
482   PrevInstLoc = DL;
483 
484   unsigned FuncId = CurFn->FuncId;
485   if (const DILocation *SiteLoc = DL->getInlinedAt()) {
486     const DILocation *Loc = DL.get();
487 
488     // If this location was actually inlined from somewhere else, give it the ID
489     // of the inline call site.
490     FuncId =
491         getInlineSite(SiteLoc, Loc->getScope()->getSubprogram()).SiteFuncId;
492 
493     // Ensure we have links in the tree of inline call sites.
494     bool FirstLoc = true;
495     while ((SiteLoc = Loc->getInlinedAt())) {
496       InlineSite &Site =
497           getInlineSite(SiteLoc, Loc->getScope()->getSubprogram());
498       if (!FirstLoc)
499         addLocIfNotPresent(Site.ChildSites, Loc);
500       FirstLoc = false;
501       Loc = SiteLoc;
502     }
503     addLocIfNotPresent(CurFn->ChildSites, Loc);
504   }
505 
506   OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
507                         /*PrologueEnd=*/false, /*IsStmt=*/false,
508                         DL->getFilename(), SMLoc());
509 }
510 
511 void CodeViewDebug::emitCodeViewMagicVersion() {
512   OS.EmitValueToAlignment(4);
513   OS.AddComment("Debug section magic");
514   OS.EmitIntValue(COFF::DEBUG_SECTION_MAGIC, 4);
515 }
516 
517 void CodeViewDebug::endModule() {
518   if (!Asm || !MMI->hasDebugInfo())
519     return;
520 
521   assert(Asm != nullptr);
522 
523   // The COFF .debug$S section consists of several subsections, each starting
524   // with a 4-byte control code (e.g. 0xF1, 0xF2, etc) and then a 4-byte length
525   // of the payload followed by the payload itself.  The subsections are 4-byte
526   // aligned.
527 
528   // Use the generic .debug$S section, and make a subsection for all the inlined
529   // subprograms.
530   switchToDebugSectionForSymbol(nullptr);
531 
532   MCSymbol *CompilerInfo = beginCVSubsection(DebugSubsectionKind::Symbols);
533   emitCompilerInformation();
534   endCVSubsection(CompilerInfo);
535 
536   emitInlineeLinesSubsection();
537 
538   // Emit per-function debug information.
539   for (auto &P : FnDebugInfo)
540     if (!P.first->isDeclarationForLinker())
541       emitDebugInfoForFunction(P.first, *P.second);
542 
543   // Emit global variable debug information.
544   setCurrentSubprogram(nullptr);
545   emitDebugInfoForGlobals();
546 
547   // Emit retained types.
548   emitDebugInfoForRetainedTypes();
549 
550   // Switch back to the generic .debug$S section after potentially processing
551   // comdat symbol sections.
552   switchToDebugSectionForSymbol(nullptr);
553 
554   // Emit UDT records for any types used by global variables.
555   if (!GlobalUDTs.empty()) {
556     MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
557     emitDebugInfoForUDTs(GlobalUDTs);
558     endCVSubsection(SymbolsEnd);
559   }
560 
561   // This subsection holds a file index to offset in string table table.
562   OS.AddComment("File index to string table offset subsection");
563   OS.EmitCVFileChecksumsDirective();
564 
565   // This subsection holds the string table.
566   OS.AddComment("String table");
567   OS.EmitCVStringTableDirective();
568 
569   // Emit S_BUILDINFO, which points to LF_BUILDINFO. Put this in its own symbol
570   // subsection in the generic .debug$S section at the end. There is no
571   // particular reason for this ordering other than to match MSVC.
572   emitBuildInfo();
573 
574   // Emit type information and hashes last, so that any types we translate while
575   // emitting function info are included.
576   emitTypeInformation();
577 
578   if (EmitDebugGlobalHashes)
579     emitTypeGlobalHashes();
580 
581   clear();
582 }
583 
584 static void emitNullTerminatedSymbolName(MCStreamer &OS, StringRef S,
585     unsigned MaxFixedRecordLength = 0xF00) {
586   // The maximum CV record length is 0xFF00. Most of the strings we emit appear
587   // after a fixed length portion of the record. The fixed length portion should
588   // always be less than 0xF00 (3840) bytes, so truncate the string so that the
589   // overall record size is less than the maximum allowed.
590   SmallString<32> NullTerminatedString(
591       S.take_front(MaxRecordLength - MaxFixedRecordLength - 1));
592   NullTerminatedString.push_back('\0');
593   OS.EmitBytes(NullTerminatedString);
594 }
595 
596 void CodeViewDebug::emitTypeInformation() {
597   if (TypeTable.empty())
598     return;
599 
600   // Start the .debug$T or .debug$P section with 0x4.
601   OS.SwitchSection(Asm->getObjFileLowering().getCOFFDebugTypesSection());
602   emitCodeViewMagicVersion();
603 
604   SmallString<8> CommentPrefix;
605   if (OS.isVerboseAsm()) {
606     CommentPrefix += '\t';
607     CommentPrefix += Asm->MAI->getCommentString();
608     CommentPrefix += ' ';
609   }
610 
611   TypeTableCollection Table(TypeTable.records());
612   Optional<TypeIndex> B = Table.getFirst();
613   while (B) {
614     // This will fail if the record data is invalid.
615     CVType Record = Table.getType(*B);
616 
617     if (OS.isVerboseAsm()) {
618       // Emit a block comment describing the type record for readability.
619       SmallString<512> CommentBlock;
620       raw_svector_ostream CommentOS(CommentBlock);
621       ScopedPrinter SP(CommentOS);
622       SP.setPrefix(CommentPrefix);
623       TypeDumpVisitor TDV(Table, &SP, false);
624 
625       Error E = codeview::visitTypeRecord(Record, *B, TDV);
626       if (E) {
627         logAllUnhandledErrors(std::move(E), errs(), "error: ");
628         llvm_unreachable("produced malformed type record");
629       }
630       // emitRawComment will insert its own tab and comment string before
631       // the first line, so strip off our first one. It also prints its own
632       // newline.
633       OS.emitRawComment(
634           CommentOS.str().drop_front(CommentPrefix.size() - 1).rtrim());
635     }
636     OS.EmitBinaryData(Record.str_data());
637     B = Table.getNext(*B);
638   }
639 }
640 
641 void CodeViewDebug::emitTypeGlobalHashes() {
642   if (TypeTable.empty())
643     return;
644 
645   // Start the .debug$H section with the version and hash algorithm, currently
646   // hardcoded to version 0, SHA1.
647   OS.SwitchSection(Asm->getObjFileLowering().getCOFFGlobalTypeHashesSection());
648 
649   OS.EmitValueToAlignment(4);
650   OS.AddComment("Magic");
651   OS.EmitIntValue(COFF::DEBUG_HASHES_SECTION_MAGIC, 4);
652   OS.AddComment("Section Version");
653   OS.EmitIntValue(0, 2);
654   OS.AddComment("Hash Algorithm");
655   OS.EmitIntValue(uint16_t(GlobalTypeHashAlg::SHA1_8), 2);
656 
657   TypeIndex TI(TypeIndex::FirstNonSimpleIndex);
658   for (const auto &GHR : TypeTable.hashes()) {
659     if (OS.isVerboseAsm()) {
660       // Emit an EOL-comment describing which TypeIndex this hash corresponds
661       // to, as well as the stringified SHA1 hash.
662       SmallString<32> Comment;
663       raw_svector_ostream CommentOS(Comment);
664       CommentOS << formatv("{0:X+} [{1}]", TI.getIndex(), GHR);
665       OS.AddComment(Comment);
666       ++TI;
667     }
668     assert(GHR.Hash.size() == 8);
669     StringRef S(reinterpret_cast<const char *>(GHR.Hash.data()),
670                 GHR.Hash.size());
671     OS.EmitBinaryData(S);
672   }
673 }
674 
675 static SourceLanguage MapDWLangToCVLang(unsigned DWLang) {
676   switch (DWLang) {
677   case dwarf::DW_LANG_C:
678   case dwarf::DW_LANG_C89:
679   case dwarf::DW_LANG_C99:
680   case dwarf::DW_LANG_C11:
681   case dwarf::DW_LANG_ObjC:
682     return SourceLanguage::C;
683   case dwarf::DW_LANG_C_plus_plus:
684   case dwarf::DW_LANG_C_plus_plus_03:
685   case dwarf::DW_LANG_C_plus_plus_11:
686   case dwarf::DW_LANG_C_plus_plus_14:
687     return SourceLanguage::Cpp;
688   case dwarf::DW_LANG_Fortran77:
689   case dwarf::DW_LANG_Fortran90:
690   case dwarf::DW_LANG_Fortran03:
691   case dwarf::DW_LANG_Fortran08:
692     return SourceLanguage::Fortran;
693   case dwarf::DW_LANG_Pascal83:
694     return SourceLanguage::Pascal;
695   case dwarf::DW_LANG_Cobol74:
696   case dwarf::DW_LANG_Cobol85:
697     return SourceLanguage::Cobol;
698   case dwarf::DW_LANG_Java:
699     return SourceLanguage::Java;
700   case dwarf::DW_LANG_D:
701     return SourceLanguage::D;
702   case dwarf::DW_LANG_Swift:
703     return SourceLanguage::Swift;
704   default:
705     // There's no CodeView representation for this language, and CV doesn't
706     // have an "unknown" option for the language field, so we'll use MASM,
707     // as it's very low level.
708     return SourceLanguage::Masm;
709   }
710 }
711 
712 namespace {
713 struct Version {
714   int Part[4];
715 };
716 } // end anonymous namespace
717 
718 // Takes a StringRef like "clang 4.0.0.0 (other nonsense 123)" and parses out
719 // the version number.
720 static Version parseVersion(StringRef Name) {
721   Version V = {{0}};
722   int N = 0;
723   for (const char C : Name) {
724     if (isdigit(C)) {
725       V.Part[N] *= 10;
726       V.Part[N] += C - '0';
727     } else if (C == '.') {
728       ++N;
729       if (N >= 4)
730         return V;
731     } else if (N > 0)
732       return V;
733   }
734   return V;
735 }
736 
737 void CodeViewDebug::emitCompilerInformation() {
738   MCSymbol *CompilerEnd = beginSymbolRecord(SymbolKind::S_COMPILE3);
739   uint32_t Flags = 0;
740 
741   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
742   const MDNode *Node = *CUs->operands().begin();
743   const auto *CU = cast<DICompileUnit>(Node);
744 
745   // The low byte of the flags indicates the source language.
746   Flags = MapDWLangToCVLang(CU->getSourceLanguage());
747   // TODO:  Figure out which other flags need to be set.
748 
749   OS.AddComment("Flags and language");
750   OS.EmitIntValue(Flags, 4);
751 
752   OS.AddComment("CPUType");
753   OS.EmitIntValue(static_cast<uint64_t>(TheCPU), 2);
754 
755   StringRef CompilerVersion = CU->getProducer();
756   Version FrontVer = parseVersion(CompilerVersion);
757   OS.AddComment("Frontend version");
758   for (int N = 0; N < 4; ++N)
759     OS.EmitIntValue(FrontVer.Part[N], 2);
760 
761   // Some Microsoft tools, like Binscope, expect a backend version number of at
762   // least 8.something, so we'll coerce the LLVM version into a form that
763   // guarantees it'll be big enough without really lying about the version.
764   int Major = 1000 * LLVM_VERSION_MAJOR +
765               10 * LLVM_VERSION_MINOR +
766               LLVM_VERSION_PATCH;
767   // Clamp it for builds that use unusually large version numbers.
768   Major = std::min<int>(Major, std::numeric_limits<uint16_t>::max());
769   Version BackVer = {{ Major, 0, 0, 0 }};
770   OS.AddComment("Backend version");
771   for (int N = 0; N < 4; ++N)
772     OS.EmitIntValue(BackVer.Part[N], 2);
773 
774   OS.AddComment("Null-terminated compiler version string");
775   emitNullTerminatedSymbolName(OS, CompilerVersion);
776 
777   endSymbolRecord(CompilerEnd);
778 }
779 
780 static TypeIndex getStringIdTypeIdx(GlobalTypeTableBuilder &TypeTable,
781                                     StringRef S) {
782   StringIdRecord SIR(TypeIndex(0x0), S);
783   return TypeTable.writeLeafType(SIR);
784 }
785 
786 void CodeViewDebug::emitBuildInfo() {
787   // First, make LF_BUILDINFO. It's a sequence of strings with various bits of
788   // build info. The known prefix is:
789   // - Absolute path of current directory
790   // - Compiler path
791   // - Main source file path, relative to CWD or absolute
792   // - Type server PDB file
793   // - Canonical compiler command line
794   // If frontend and backend compilation are separated (think llc or LTO), it's
795   // not clear if the compiler path should refer to the executable for the
796   // frontend or the backend. Leave it blank for now.
797   TypeIndex BuildInfoArgs[BuildInfoRecord::MaxArgs] = {};
798   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
799   const MDNode *Node = *CUs->operands().begin(); // FIXME: Multiple CUs.
800   const auto *CU = cast<DICompileUnit>(Node);
801   const DIFile *MainSourceFile = CU->getFile();
802   BuildInfoArgs[BuildInfoRecord::CurrentDirectory] =
803       getStringIdTypeIdx(TypeTable, MainSourceFile->getDirectory());
804   BuildInfoArgs[BuildInfoRecord::SourceFile] =
805       getStringIdTypeIdx(TypeTable, MainSourceFile->getFilename());
806   // FIXME: Path to compiler and command line. PDB is intentionally blank unless
807   // we implement /Zi type servers.
808   BuildInfoRecord BIR(BuildInfoArgs);
809   TypeIndex BuildInfoIndex = TypeTable.writeLeafType(BIR);
810 
811   // Make a new .debug$S subsection for the S_BUILDINFO record, which points
812   // from the module symbols into the type stream.
813   MCSymbol *BISubsecEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
814   MCSymbol *BIEnd = beginSymbolRecord(SymbolKind::S_BUILDINFO);
815   OS.AddComment("LF_BUILDINFO index");
816   OS.EmitIntValue(BuildInfoIndex.getIndex(), 4);
817   endSymbolRecord(BIEnd);
818   endCVSubsection(BISubsecEnd);
819 }
820 
821 void CodeViewDebug::emitInlineeLinesSubsection() {
822   if (InlinedSubprograms.empty())
823     return;
824 
825   OS.AddComment("Inlinee lines subsection");
826   MCSymbol *InlineEnd = beginCVSubsection(DebugSubsectionKind::InlineeLines);
827 
828   // We emit the checksum info for files.  This is used by debuggers to
829   // determine if a pdb matches the source before loading it.  Visual Studio,
830   // for instance, will display a warning that the breakpoints are not valid if
831   // the pdb does not match the source.
832   OS.AddComment("Inlinee lines signature");
833   OS.EmitIntValue(unsigned(InlineeLinesSignature::Normal), 4);
834 
835   for (const DISubprogram *SP : InlinedSubprograms) {
836     assert(TypeIndices.count({SP, nullptr}));
837     TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}];
838 
839     OS.AddBlankLine();
840     unsigned FileId = maybeRecordFile(SP->getFile());
841     OS.AddComment("Inlined function " + SP->getName() + " starts at " +
842                   SP->getFilename() + Twine(':') + Twine(SP->getLine()));
843     OS.AddBlankLine();
844     OS.AddComment("Type index of inlined function");
845     OS.EmitIntValue(InlineeIdx.getIndex(), 4);
846     OS.AddComment("Offset into filechecksum table");
847     OS.EmitCVFileChecksumOffsetDirective(FileId);
848     OS.AddComment("Starting line number");
849     OS.EmitIntValue(SP->getLine(), 4);
850   }
851 
852   endCVSubsection(InlineEnd);
853 }
854 
855 void CodeViewDebug::emitInlinedCallSite(const FunctionInfo &FI,
856                                         const DILocation *InlinedAt,
857                                         const InlineSite &Site) {
858   assert(TypeIndices.count({Site.Inlinee, nullptr}));
859   TypeIndex InlineeIdx = TypeIndices[{Site.Inlinee, nullptr}];
860 
861   // SymbolRecord
862   MCSymbol *InlineEnd = beginSymbolRecord(SymbolKind::S_INLINESITE);
863 
864   OS.AddComment("PtrParent");
865   OS.EmitIntValue(0, 4);
866   OS.AddComment("PtrEnd");
867   OS.EmitIntValue(0, 4);
868   OS.AddComment("Inlinee type index");
869   OS.EmitIntValue(InlineeIdx.getIndex(), 4);
870 
871   unsigned FileId = maybeRecordFile(Site.Inlinee->getFile());
872   unsigned StartLineNum = Site.Inlinee->getLine();
873 
874   OS.EmitCVInlineLinetableDirective(Site.SiteFuncId, FileId, StartLineNum,
875                                     FI.Begin, FI.End);
876 
877   endSymbolRecord(InlineEnd);
878 
879   emitLocalVariableList(FI, Site.InlinedLocals);
880 
881   // Recurse on child inlined call sites before closing the scope.
882   for (const DILocation *ChildSite : Site.ChildSites) {
883     auto I = FI.InlineSites.find(ChildSite);
884     assert(I != FI.InlineSites.end() &&
885            "child site not in function inline site map");
886     emitInlinedCallSite(FI, ChildSite, I->second);
887   }
888 
889   // Close the scope.
890   emitEndSymbolRecord(SymbolKind::S_INLINESITE_END);
891 }
892 
893 void CodeViewDebug::switchToDebugSectionForSymbol(const MCSymbol *GVSym) {
894   // If we have a symbol, it may be in a section that is COMDAT. If so, find the
895   // comdat key. A section may be comdat because of -ffunction-sections or
896   // because it is comdat in the IR.
897   MCSectionCOFF *GVSec =
898       GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr;
899   const MCSymbol *KeySym = GVSec ? GVSec->getCOMDATSymbol() : nullptr;
900 
901   MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
902       Asm->getObjFileLowering().getCOFFDebugSymbolsSection());
903   DebugSec = OS.getContext().getAssociativeCOFFSection(DebugSec, KeySym);
904 
905   OS.SwitchSection(DebugSec);
906 
907   // Emit the magic version number if this is the first time we've switched to
908   // this section.
909   if (ComdatDebugSections.insert(DebugSec).second)
910     emitCodeViewMagicVersion();
911 }
912 
913 // Emit an S_THUNK32/S_END symbol pair for a thunk routine.
914 // The only supported thunk ordinal is currently the standard type.
915 void CodeViewDebug::emitDebugInfoForThunk(const Function *GV,
916                                           FunctionInfo &FI,
917                                           const MCSymbol *Fn) {
918   std::string FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName());
919   const ThunkOrdinal ordinal = ThunkOrdinal::Standard; // Only supported kind.
920 
921   OS.AddComment("Symbol subsection for " + Twine(FuncName));
922   MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
923 
924   // Emit S_THUNK32
925   MCSymbol *ThunkRecordEnd = beginSymbolRecord(SymbolKind::S_THUNK32);
926   OS.AddComment("PtrParent");
927   OS.EmitIntValue(0, 4);
928   OS.AddComment("PtrEnd");
929   OS.EmitIntValue(0, 4);
930   OS.AddComment("PtrNext");
931   OS.EmitIntValue(0, 4);
932   OS.AddComment("Thunk section relative address");
933   OS.EmitCOFFSecRel32(Fn, /*Offset=*/0);
934   OS.AddComment("Thunk section index");
935   OS.EmitCOFFSectionIndex(Fn);
936   OS.AddComment("Code size");
937   OS.emitAbsoluteSymbolDiff(FI.End, Fn, 2);
938   OS.AddComment("Ordinal");
939   OS.EmitIntValue(unsigned(ordinal), 1);
940   OS.AddComment("Function name");
941   emitNullTerminatedSymbolName(OS, FuncName);
942   // Additional fields specific to the thunk ordinal would go here.
943   endSymbolRecord(ThunkRecordEnd);
944 
945   // Local variables/inlined routines are purposely omitted here.  The point of
946   // marking this as a thunk is so Visual Studio will NOT stop in this routine.
947 
948   // Emit S_PROC_ID_END
949   emitEndSymbolRecord(SymbolKind::S_PROC_ID_END);
950 
951   endCVSubsection(SymbolsEnd);
952 }
953 
954 void CodeViewDebug::emitDebugInfoForFunction(const Function *GV,
955                                              FunctionInfo &FI) {
956   // For each function there is a separate subsection which holds the PC to
957   // file:line table.
958   const MCSymbol *Fn = Asm->getSymbol(GV);
959   assert(Fn);
960 
961   // Switch to the to a comdat section, if appropriate.
962   switchToDebugSectionForSymbol(Fn);
963 
964   std::string FuncName;
965   auto *SP = GV->getSubprogram();
966   assert(SP);
967   setCurrentSubprogram(SP);
968 
969   if (SP->isThunk()) {
970     emitDebugInfoForThunk(GV, FI, Fn);
971     return;
972   }
973 
974   // If we have a display name, build the fully qualified name by walking the
975   // chain of scopes.
976   if (!SP->getName().empty())
977     FuncName =
978         getFullyQualifiedName(SP->getScope().resolve(), SP->getName());
979 
980   // If our DISubprogram name is empty, use the mangled name.
981   if (FuncName.empty())
982     FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName());
983 
984   // Emit FPO data, but only on 32-bit x86. No other platforms use it.
985   if (Triple(MMI->getModule()->getTargetTriple()).getArch() == Triple::x86)
986     OS.EmitCVFPOData(Fn);
987 
988   // Emit a symbol subsection, required by VS2012+ to find function boundaries.
989   OS.AddComment("Symbol subsection for " + Twine(FuncName));
990   MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
991   {
992     SymbolKind ProcKind = GV->hasLocalLinkage() ? SymbolKind::S_LPROC32_ID
993                                                 : SymbolKind::S_GPROC32_ID;
994     MCSymbol *ProcRecordEnd = beginSymbolRecord(ProcKind);
995 
996     // These fields are filled in by tools like CVPACK which run after the fact.
997     OS.AddComment("PtrParent");
998     OS.EmitIntValue(0, 4);
999     OS.AddComment("PtrEnd");
1000     OS.EmitIntValue(0, 4);
1001     OS.AddComment("PtrNext");
1002     OS.EmitIntValue(0, 4);
1003     // This is the important bit that tells the debugger where the function
1004     // code is located and what's its size:
1005     OS.AddComment("Code size");
1006     OS.emitAbsoluteSymbolDiff(FI.End, Fn, 4);
1007     OS.AddComment("Offset after prologue");
1008     OS.EmitIntValue(0, 4);
1009     OS.AddComment("Offset before epilogue");
1010     OS.EmitIntValue(0, 4);
1011     OS.AddComment("Function type index");
1012     OS.EmitIntValue(getFuncIdForSubprogram(GV->getSubprogram()).getIndex(), 4);
1013     OS.AddComment("Function section relative address");
1014     OS.EmitCOFFSecRel32(Fn, /*Offset=*/0);
1015     OS.AddComment("Function section index");
1016     OS.EmitCOFFSectionIndex(Fn);
1017     OS.AddComment("Flags");
1018     OS.EmitIntValue(0, 1);
1019     // Emit the function display name as a null-terminated string.
1020     OS.AddComment("Function name");
1021     // Truncate the name so we won't overflow the record length field.
1022     emitNullTerminatedSymbolName(OS, FuncName);
1023     endSymbolRecord(ProcRecordEnd);
1024 
1025     MCSymbol *FrameProcEnd = beginSymbolRecord(SymbolKind::S_FRAMEPROC);
1026     // Subtract out the CSR size since MSVC excludes that and we include it.
1027     OS.AddComment("FrameSize");
1028     OS.EmitIntValue(FI.FrameSize - FI.CSRSize, 4);
1029     OS.AddComment("Padding");
1030     OS.EmitIntValue(0, 4);
1031     OS.AddComment("Offset of padding");
1032     OS.EmitIntValue(0, 4);
1033     OS.AddComment("Bytes of callee saved registers");
1034     OS.EmitIntValue(FI.CSRSize, 4);
1035     OS.AddComment("Exception handler offset");
1036     OS.EmitIntValue(0, 4);
1037     OS.AddComment("Exception handler section");
1038     OS.EmitIntValue(0, 2);
1039     OS.AddComment("Flags (defines frame register)");
1040     OS.EmitIntValue(uint32_t(FI.FrameProcOpts), 4);
1041     endSymbolRecord(FrameProcEnd);
1042 
1043     emitLocalVariableList(FI, FI.Locals);
1044     emitGlobalVariableList(FI.Globals);
1045     emitLexicalBlockList(FI.ChildBlocks, FI);
1046 
1047     // Emit inlined call site information. Only emit functions inlined directly
1048     // into the parent function. We'll emit the other sites recursively as part
1049     // of their parent inline site.
1050     for (const DILocation *InlinedAt : FI.ChildSites) {
1051       auto I = FI.InlineSites.find(InlinedAt);
1052       assert(I != FI.InlineSites.end() &&
1053              "child site not in function inline site map");
1054       emitInlinedCallSite(FI, InlinedAt, I->second);
1055     }
1056 
1057     for (auto Annot : FI.Annotations) {
1058       MCSymbol *Label = Annot.first;
1059       MDTuple *Strs = cast<MDTuple>(Annot.second);
1060       MCSymbol *AnnotEnd = beginSymbolRecord(SymbolKind::S_ANNOTATION);
1061       OS.EmitCOFFSecRel32(Label, /*Offset=*/0);
1062       // FIXME: Make sure we don't overflow the max record size.
1063       OS.EmitCOFFSectionIndex(Label);
1064       OS.EmitIntValue(Strs->getNumOperands(), 2);
1065       for (Metadata *MD : Strs->operands()) {
1066         // MDStrings are null terminated, so we can do EmitBytes and get the
1067         // nice .asciz directive.
1068         StringRef Str = cast<MDString>(MD)->getString();
1069         assert(Str.data()[Str.size()] == '\0' && "non-nullterminated MDString");
1070         OS.EmitBytes(StringRef(Str.data(), Str.size() + 1));
1071       }
1072       endSymbolRecord(AnnotEnd);
1073     }
1074 
1075     for (auto HeapAllocSite : FI.HeapAllocSites) {
1076       MCSymbol *BeginLabel = std::get<0>(HeapAllocSite);
1077       MCSymbol *EndLabel = std::get<1>(HeapAllocSite);
1078 
1079       // The labels might not be defined if the instruction was replaced
1080       // somewhere in the codegen pipeline.
1081       if (!BeginLabel->isDefined() || !EndLabel->isDefined())
1082         continue;
1083 
1084       DIType *DITy = std::get<2>(HeapAllocSite);
1085       MCSymbol *HeapAllocEnd = beginSymbolRecord(SymbolKind::S_HEAPALLOCSITE);
1086       OS.AddComment("Call site offset");
1087       OS.EmitCOFFSecRel32(BeginLabel, /*Offset=*/0);
1088       OS.AddComment("Call site section index");
1089       OS.EmitCOFFSectionIndex(BeginLabel);
1090       OS.AddComment("Call instruction length");
1091       OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 2);
1092       OS.AddComment("Type index");
1093       OS.EmitIntValue(getCompleteTypeIndex(DITy).getIndex(), 4);
1094       endSymbolRecord(HeapAllocEnd);
1095     }
1096 
1097     if (SP != nullptr)
1098       emitDebugInfoForUDTs(LocalUDTs);
1099 
1100     // We're done with this function.
1101     emitEndSymbolRecord(SymbolKind::S_PROC_ID_END);
1102   }
1103   endCVSubsection(SymbolsEnd);
1104 
1105   // We have an assembler directive that takes care of the whole line table.
1106   OS.EmitCVLinetableDirective(FI.FuncId, Fn, FI.End);
1107 }
1108 
1109 CodeViewDebug::LocalVarDefRange
1110 CodeViewDebug::createDefRangeMem(uint16_t CVRegister, int Offset) {
1111   LocalVarDefRange DR;
1112   DR.InMemory = -1;
1113   DR.DataOffset = Offset;
1114   assert(DR.DataOffset == Offset && "truncation");
1115   DR.IsSubfield = 0;
1116   DR.StructOffset = 0;
1117   DR.CVRegister = CVRegister;
1118   return DR;
1119 }
1120 
1121 void CodeViewDebug::collectVariableInfoFromMFTable(
1122     DenseSet<InlinedEntity> &Processed) {
1123   const MachineFunction &MF = *Asm->MF;
1124   const TargetSubtargetInfo &TSI = MF.getSubtarget();
1125   const TargetFrameLowering *TFI = TSI.getFrameLowering();
1126   const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1127 
1128   for (const MachineFunction::VariableDbgInfo &VI : MF.getVariableDbgInfo()) {
1129     if (!VI.Var)
1130       continue;
1131     assert(VI.Var->isValidLocationForIntrinsic(VI.Loc) &&
1132            "Expected inlined-at fields to agree");
1133 
1134     Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt()));
1135     LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc);
1136 
1137     // If variable scope is not found then skip this variable.
1138     if (!Scope)
1139       continue;
1140 
1141     // If the variable has an attached offset expression, extract it.
1142     // FIXME: Try to handle DW_OP_deref as well.
1143     int64_t ExprOffset = 0;
1144     if (VI.Expr)
1145       if (!VI.Expr->extractIfOffset(ExprOffset))
1146         continue;
1147 
1148     // Get the frame register used and the offset.
1149     unsigned FrameReg = 0;
1150     int FrameOffset = TFI->getFrameIndexReference(*Asm->MF, VI.Slot, FrameReg);
1151     uint16_t CVReg = TRI->getCodeViewRegNum(FrameReg);
1152 
1153     // Calculate the label ranges.
1154     LocalVarDefRange DefRange =
1155         createDefRangeMem(CVReg, FrameOffset + ExprOffset);
1156     for (const InsnRange &Range : Scope->getRanges()) {
1157       const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
1158       const MCSymbol *End = getLabelAfterInsn(Range.second);
1159       End = End ? End : Asm->getFunctionEnd();
1160       DefRange.Ranges.emplace_back(Begin, End);
1161     }
1162 
1163     LocalVariable Var;
1164     Var.DIVar = VI.Var;
1165     Var.DefRanges.emplace_back(std::move(DefRange));
1166     recordLocalVariable(std::move(Var), Scope);
1167   }
1168 }
1169 
1170 static bool canUseReferenceType(const DbgVariableLocation &Loc) {
1171   return !Loc.LoadChain.empty() && Loc.LoadChain.back() == 0;
1172 }
1173 
1174 static bool needsReferenceType(const DbgVariableLocation &Loc) {
1175   return Loc.LoadChain.size() == 2 && Loc.LoadChain.back() == 0;
1176 }
1177 
1178 void CodeViewDebug::calculateRanges(
1179     LocalVariable &Var, const DbgValueHistoryMap::Entries &Entries) {
1180   const TargetRegisterInfo *TRI = Asm->MF->getSubtarget().getRegisterInfo();
1181 
1182   // Calculate the definition ranges.
1183   for (auto I = Entries.begin(), E = Entries.end(); I != E; ++I) {
1184     const auto &Entry = *I;
1185     if (!Entry.isDbgValue())
1186       continue;
1187     const MachineInstr *DVInst = Entry.getInstr();
1188     assert(DVInst->isDebugValue() && "Invalid History entry");
1189     // FIXME: Find a way to represent constant variables, since they are
1190     // relatively common.
1191     Optional<DbgVariableLocation> Location =
1192         DbgVariableLocation::extractFromMachineInstruction(*DVInst);
1193     if (!Location)
1194       continue;
1195 
1196     // CodeView can only express variables in register and variables in memory
1197     // at a constant offset from a register. However, for variables passed
1198     // indirectly by pointer, it is common for that pointer to be spilled to a
1199     // stack location. For the special case of one offseted load followed by a
1200     // zero offset load (a pointer spilled to the stack), we change the type of
1201     // the local variable from a value type to a reference type. This tricks the
1202     // debugger into doing the load for us.
1203     if (Var.UseReferenceType) {
1204       // We're using a reference type. Drop the last zero offset load.
1205       if (canUseReferenceType(*Location))
1206         Location->LoadChain.pop_back();
1207       else
1208         continue;
1209     } else if (needsReferenceType(*Location)) {
1210       // This location can't be expressed without switching to a reference type.
1211       // Start over using that.
1212       Var.UseReferenceType = true;
1213       Var.DefRanges.clear();
1214       calculateRanges(Var, Entries);
1215       return;
1216     }
1217 
1218     // We can only handle a register or an offseted load of a register.
1219     if (Location->Register == 0 || Location->LoadChain.size() > 1)
1220       continue;
1221     {
1222       LocalVarDefRange DR;
1223       DR.CVRegister = TRI->getCodeViewRegNum(Location->Register);
1224       DR.InMemory = !Location->LoadChain.empty();
1225       DR.DataOffset =
1226           !Location->LoadChain.empty() ? Location->LoadChain.back() : 0;
1227       if (Location->FragmentInfo) {
1228         DR.IsSubfield = true;
1229         DR.StructOffset = Location->FragmentInfo->OffsetInBits / 8;
1230       } else {
1231         DR.IsSubfield = false;
1232         DR.StructOffset = 0;
1233       }
1234 
1235       if (Var.DefRanges.empty() ||
1236           Var.DefRanges.back().isDifferentLocation(DR)) {
1237         Var.DefRanges.emplace_back(std::move(DR));
1238       }
1239     }
1240 
1241     // Compute the label range.
1242     const MCSymbol *Begin = getLabelBeforeInsn(Entry.getInstr());
1243     const MCSymbol *End;
1244     if (Entry.getEndIndex() != DbgValueHistoryMap::NoEntry) {
1245       auto &EndingEntry = Entries[Entry.getEndIndex()];
1246       End = EndingEntry.isDbgValue()
1247                 ? getLabelBeforeInsn(EndingEntry.getInstr())
1248                 : getLabelAfterInsn(EndingEntry.getInstr());
1249     } else
1250       End = Asm->getFunctionEnd();
1251 
1252     // If the last range end is our begin, just extend the last range.
1253     // Otherwise make a new range.
1254     SmallVectorImpl<std::pair<const MCSymbol *, const MCSymbol *>> &R =
1255         Var.DefRanges.back().Ranges;
1256     if (!R.empty() && R.back().second == Begin)
1257       R.back().second = End;
1258     else
1259       R.emplace_back(Begin, End);
1260 
1261     // FIXME: Do more range combining.
1262   }
1263 }
1264 
1265 void CodeViewDebug::collectVariableInfo(const DISubprogram *SP) {
1266   DenseSet<InlinedEntity> Processed;
1267   // Grab the variable info that was squirreled away in the MMI side-table.
1268   collectVariableInfoFromMFTable(Processed);
1269 
1270   for (const auto &I : DbgValues) {
1271     InlinedEntity IV = I.first;
1272     if (Processed.count(IV))
1273       continue;
1274     const DILocalVariable *DIVar = cast<DILocalVariable>(IV.first);
1275     const DILocation *InlinedAt = IV.second;
1276 
1277     // Instruction ranges, specifying where IV is accessible.
1278     const auto &Entries = I.second;
1279 
1280     LexicalScope *Scope = nullptr;
1281     if (InlinedAt)
1282       Scope = LScopes.findInlinedScope(DIVar->getScope(), InlinedAt);
1283     else
1284       Scope = LScopes.findLexicalScope(DIVar->getScope());
1285     // If variable scope is not found then skip this variable.
1286     if (!Scope)
1287       continue;
1288 
1289     LocalVariable Var;
1290     Var.DIVar = DIVar;
1291 
1292     calculateRanges(Var, Entries);
1293     recordLocalVariable(std::move(Var), Scope);
1294   }
1295 }
1296 
1297 void CodeViewDebug::beginFunctionImpl(const MachineFunction *MF) {
1298   const TargetSubtargetInfo &TSI = MF->getSubtarget();
1299   const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1300   const MachineFrameInfo &MFI = MF->getFrameInfo();
1301   const Function &GV = MF->getFunction();
1302   auto Insertion = FnDebugInfo.insert({&GV, llvm::make_unique<FunctionInfo>()});
1303   assert(Insertion.second && "function already has info");
1304   CurFn = Insertion.first->second.get();
1305   CurFn->FuncId = NextFuncId++;
1306   CurFn->Begin = Asm->getFunctionBegin();
1307 
1308   // The S_FRAMEPROC record reports the stack size, and how many bytes of
1309   // callee-saved registers were used. For targets that don't use a PUSH
1310   // instruction (AArch64), this will be zero.
1311   CurFn->CSRSize = MFI.getCVBytesOfCalleeSavedRegisters();
1312   CurFn->FrameSize = MFI.getStackSize();
1313   CurFn->OffsetAdjustment = MFI.getOffsetAdjustment();
1314   CurFn->HasStackRealignment = TRI->needsStackRealignment(*MF);
1315 
1316   // For this function S_FRAMEPROC record, figure out which codeview register
1317   // will be the frame pointer.
1318   CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::None; // None.
1319   CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::None; // None.
1320   if (CurFn->FrameSize > 0) {
1321     if (!TSI.getFrameLowering()->hasFP(*MF)) {
1322       CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::StackPtr;
1323       CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::StackPtr;
1324     } else {
1325       // If there is an FP, parameters are always relative to it.
1326       CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::FramePtr;
1327       if (CurFn->HasStackRealignment) {
1328         // If the stack needs realignment, locals are relative to SP or VFRAME.
1329         CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::StackPtr;
1330       } else {
1331         // Otherwise, locals are relative to EBP, and we probably have VLAs or
1332         // other stack adjustments.
1333         CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::FramePtr;
1334       }
1335     }
1336   }
1337 
1338   // Compute other frame procedure options.
1339   FrameProcedureOptions FPO = FrameProcedureOptions::None;
1340   if (MFI.hasVarSizedObjects())
1341     FPO |= FrameProcedureOptions::HasAlloca;
1342   if (MF->exposesReturnsTwice())
1343     FPO |= FrameProcedureOptions::HasSetJmp;
1344   // FIXME: Set HasLongJmp if we ever track that info.
1345   if (MF->hasInlineAsm())
1346     FPO |= FrameProcedureOptions::HasInlineAssembly;
1347   if (GV.hasPersonalityFn()) {
1348     if (isAsynchronousEHPersonality(
1349             classifyEHPersonality(GV.getPersonalityFn())))
1350       FPO |= FrameProcedureOptions::HasStructuredExceptionHandling;
1351     else
1352       FPO |= FrameProcedureOptions::HasExceptionHandling;
1353   }
1354   if (GV.hasFnAttribute(Attribute::InlineHint))
1355     FPO |= FrameProcedureOptions::MarkedInline;
1356   if (GV.hasFnAttribute(Attribute::Naked))
1357     FPO |= FrameProcedureOptions::Naked;
1358   if (MFI.hasStackProtectorIndex())
1359     FPO |= FrameProcedureOptions::SecurityChecks;
1360   FPO |= FrameProcedureOptions(uint32_t(CurFn->EncodedLocalFramePtrReg) << 14U);
1361   FPO |= FrameProcedureOptions(uint32_t(CurFn->EncodedParamFramePtrReg) << 16U);
1362   if (Asm->TM.getOptLevel() != CodeGenOpt::None &&
1363       !GV.hasOptSize() && !GV.hasOptNone())
1364     FPO |= FrameProcedureOptions::OptimizedForSpeed;
1365   // FIXME: Set GuardCfg when it is implemented.
1366   CurFn->FrameProcOpts = FPO;
1367 
1368   OS.EmitCVFuncIdDirective(CurFn->FuncId);
1369 
1370   // Find the end of the function prolog.  First known non-DBG_VALUE and
1371   // non-frame setup location marks the beginning of the function body.
1372   // FIXME: is there a simpler a way to do this? Can we just search
1373   // for the first instruction of the function, not the last of the prolog?
1374   DebugLoc PrologEndLoc;
1375   bool EmptyPrologue = true;
1376   for (const auto &MBB : *MF) {
1377     for (const auto &MI : MBB) {
1378       if (!MI.isMetaInstruction() && !MI.getFlag(MachineInstr::FrameSetup) &&
1379           MI.getDebugLoc()) {
1380         PrologEndLoc = MI.getDebugLoc();
1381         break;
1382       } else if (!MI.isMetaInstruction()) {
1383         EmptyPrologue = false;
1384       }
1385     }
1386   }
1387 
1388   // Record beginning of function if we have a non-empty prologue.
1389   if (PrologEndLoc && !EmptyPrologue) {
1390     DebugLoc FnStartDL = PrologEndLoc.getFnDebugLoc();
1391     maybeRecordLocation(FnStartDL, MF);
1392   }
1393 }
1394 
1395 static bool shouldEmitUdt(const DIType *T) {
1396   if (!T)
1397     return false;
1398 
1399   // MSVC does not emit UDTs for typedefs that are scoped to classes.
1400   if (T->getTag() == dwarf::DW_TAG_typedef) {
1401     if (DIScope *Scope = T->getScope().resolve()) {
1402       switch (Scope->getTag()) {
1403       case dwarf::DW_TAG_structure_type:
1404       case dwarf::DW_TAG_class_type:
1405       case dwarf::DW_TAG_union_type:
1406         return false;
1407       }
1408     }
1409   }
1410 
1411   while (true) {
1412     if (!T || T->isForwardDecl())
1413       return false;
1414 
1415     const DIDerivedType *DT = dyn_cast<DIDerivedType>(T);
1416     if (!DT)
1417       return true;
1418     T = DT->getBaseType().resolve();
1419   }
1420   return true;
1421 }
1422 
1423 void CodeViewDebug::addToUDTs(const DIType *Ty) {
1424   // Don't record empty UDTs.
1425   if (Ty->getName().empty())
1426     return;
1427   if (!shouldEmitUdt(Ty))
1428     return;
1429 
1430   SmallVector<StringRef, 5> QualifiedNameComponents;
1431   const DISubprogram *ClosestSubprogram = getQualifiedNameComponents(
1432       Ty->getScope().resolve(), QualifiedNameComponents);
1433 
1434   std::string FullyQualifiedName =
1435       getQualifiedName(QualifiedNameComponents, getPrettyScopeName(Ty));
1436 
1437   if (ClosestSubprogram == nullptr) {
1438     GlobalUDTs.emplace_back(std::move(FullyQualifiedName), Ty);
1439   } else if (ClosestSubprogram == CurrentSubprogram) {
1440     LocalUDTs.emplace_back(std::move(FullyQualifiedName), Ty);
1441   }
1442 
1443   // TODO: What if the ClosestSubprogram is neither null or the current
1444   // subprogram?  Currently, the UDT just gets dropped on the floor.
1445   //
1446   // The current behavior is not desirable.  To get maximal fidelity, we would
1447   // need to perform all type translation before beginning emission of .debug$S
1448   // and then make LocalUDTs a member of FunctionInfo
1449 }
1450 
1451 TypeIndex CodeViewDebug::lowerType(const DIType *Ty, const DIType *ClassTy) {
1452   // Generic dispatch for lowering an unknown type.
1453   switch (Ty->getTag()) {
1454   case dwarf::DW_TAG_array_type:
1455     return lowerTypeArray(cast<DICompositeType>(Ty));
1456   case dwarf::DW_TAG_typedef:
1457     return lowerTypeAlias(cast<DIDerivedType>(Ty));
1458   case dwarf::DW_TAG_base_type:
1459     return lowerTypeBasic(cast<DIBasicType>(Ty));
1460   case dwarf::DW_TAG_pointer_type:
1461     if (cast<DIDerivedType>(Ty)->getName() == "__vtbl_ptr_type")
1462       return lowerTypeVFTableShape(cast<DIDerivedType>(Ty));
1463     LLVM_FALLTHROUGH;
1464   case dwarf::DW_TAG_reference_type:
1465   case dwarf::DW_TAG_rvalue_reference_type:
1466     return lowerTypePointer(cast<DIDerivedType>(Ty));
1467   case dwarf::DW_TAG_ptr_to_member_type:
1468     return lowerTypeMemberPointer(cast<DIDerivedType>(Ty));
1469   case dwarf::DW_TAG_restrict_type:
1470   case dwarf::DW_TAG_const_type:
1471   case dwarf::DW_TAG_volatile_type:
1472   // TODO: add support for DW_TAG_atomic_type here
1473     return lowerTypeModifier(cast<DIDerivedType>(Ty));
1474   case dwarf::DW_TAG_subroutine_type:
1475     if (ClassTy) {
1476       // The member function type of a member function pointer has no
1477       // ThisAdjustment.
1478       return lowerTypeMemberFunction(cast<DISubroutineType>(Ty), ClassTy,
1479                                      /*ThisAdjustment=*/0,
1480                                      /*IsStaticMethod=*/false);
1481     }
1482     return lowerTypeFunction(cast<DISubroutineType>(Ty));
1483   case dwarf::DW_TAG_enumeration_type:
1484     return lowerTypeEnum(cast<DICompositeType>(Ty));
1485   case dwarf::DW_TAG_class_type:
1486   case dwarf::DW_TAG_structure_type:
1487     return lowerTypeClass(cast<DICompositeType>(Ty));
1488   case dwarf::DW_TAG_union_type:
1489     return lowerTypeUnion(cast<DICompositeType>(Ty));
1490   case dwarf::DW_TAG_unspecified_type:
1491     if (Ty->getName() == "decltype(nullptr)")
1492       return TypeIndex::NullptrT();
1493     return TypeIndex::None();
1494   default:
1495     // Use the null type index.
1496     return TypeIndex();
1497   }
1498 }
1499 
1500 TypeIndex CodeViewDebug::lowerTypeAlias(const DIDerivedType *Ty) {
1501   DITypeRef UnderlyingTypeRef = Ty->getBaseType();
1502   TypeIndex UnderlyingTypeIndex = getTypeIndex(UnderlyingTypeRef);
1503   StringRef TypeName = Ty->getName();
1504 
1505   addToUDTs(Ty);
1506 
1507   if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::Int32Long) &&
1508       TypeName == "HRESULT")
1509     return TypeIndex(SimpleTypeKind::HResult);
1510   if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::UInt16Short) &&
1511       TypeName == "wchar_t")
1512     return TypeIndex(SimpleTypeKind::WideCharacter);
1513 
1514   return UnderlyingTypeIndex;
1515 }
1516 
1517 TypeIndex CodeViewDebug::lowerTypeArray(const DICompositeType *Ty) {
1518   DITypeRef ElementTypeRef = Ty->getBaseType();
1519   TypeIndex ElementTypeIndex = getTypeIndex(ElementTypeRef);
1520   // IndexType is size_t, which depends on the bitness of the target.
1521   TypeIndex IndexType = getPointerSizeInBytes() == 8
1522                             ? TypeIndex(SimpleTypeKind::UInt64Quad)
1523                             : TypeIndex(SimpleTypeKind::UInt32Long);
1524 
1525   uint64_t ElementSize = getBaseTypeSize(ElementTypeRef) / 8;
1526 
1527   // Add subranges to array type.
1528   DINodeArray Elements = Ty->getElements();
1529   for (int i = Elements.size() - 1; i >= 0; --i) {
1530     const DINode *Element = Elements[i];
1531     assert(Element->getTag() == dwarf::DW_TAG_subrange_type);
1532 
1533     const DISubrange *Subrange = cast<DISubrange>(Element);
1534     assert(Subrange->getLowerBound() == 0 &&
1535            "codeview doesn't support subranges with lower bounds");
1536     int64_t Count = -1;
1537     if (auto *CI = Subrange->getCount().dyn_cast<ConstantInt*>())
1538       Count = CI->getSExtValue();
1539 
1540     // Forward declarations of arrays without a size and VLAs use a count of -1.
1541     // Emit a count of zero in these cases to match what MSVC does for arrays
1542     // without a size. MSVC doesn't support VLAs, so it's not clear what we
1543     // should do for them even if we could distinguish them.
1544     if (Count == -1)
1545       Count = 0;
1546 
1547     // Update the element size and element type index for subsequent subranges.
1548     ElementSize *= Count;
1549 
1550     // If this is the outermost array, use the size from the array. It will be
1551     // more accurate if we had a VLA or an incomplete element type size.
1552     uint64_t ArraySize =
1553         (i == 0 && ElementSize == 0) ? Ty->getSizeInBits() / 8 : ElementSize;
1554 
1555     StringRef Name = (i == 0) ? Ty->getName() : "";
1556     ArrayRecord AR(ElementTypeIndex, IndexType, ArraySize, Name);
1557     ElementTypeIndex = TypeTable.writeLeafType(AR);
1558   }
1559 
1560   return ElementTypeIndex;
1561 }
1562 
1563 TypeIndex CodeViewDebug::lowerTypeBasic(const DIBasicType *Ty) {
1564   TypeIndex Index;
1565   dwarf::TypeKind Kind;
1566   uint32_t ByteSize;
1567 
1568   Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
1569   ByteSize = Ty->getSizeInBits() / 8;
1570 
1571   SimpleTypeKind STK = SimpleTypeKind::None;
1572   switch (Kind) {
1573   case dwarf::DW_ATE_address:
1574     // FIXME: Translate
1575     break;
1576   case dwarf::DW_ATE_boolean:
1577     switch (ByteSize) {
1578     case 1:  STK = SimpleTypeKind::Boolean8;   break;
1579     case 2:  STK = SimpleTypeKind::Boolean16;  break;
1580     case 4:  STK = SimpleTypeKind::Boolean32;  break;
1581     case 8:  STK = SimpleTypeKind::Boolean64;  break;
1582     case 16: STK = SimpleTypeKind::Boolean128; break;
1583     }
1584     break;
1585   case dwarf::DW_ATE_complex_float:
1586     switch (ByteSize) {
1587     case 2:  STK = SimpleTypeKind::Complex16;  break;
1588     case 4:  STK = SimpleTypeKind::Complex32;  break;
1589     case 8:  STK = SimpleTypeKind::Complex64;  break;
1590     case 10: STK = SimpleTypeKind::Complex80;  break;
1591     case 16: STK = SimpleTypeKind::Complex128; break;
1592     }
1593     break;
1594   case dwarf::DW_ATE_float:
1595     switch (ByteSize) {
1596     case 2:  STK = SimpleTypeKind::Float16;  break;
1597     case 4:  STK = SimpleTypeKind::Float32;  break;
1598     case 6:  STK = SimpleTypeKind::Float48;  break;
1599     case 8:  STK = SimpleTypeKind::Float64;  break;
1600     case 10: STK = SimpleTypeKind::Float80;  break;
1601     case 16: STK = SimpleTypeKind::Float128; break;
1602     }
1603     break;
1604   case dwarf::DW_ATE_signed:
1605     switch (ByteSize) {
1606     case 1:  STK = SimpleTypeKind::SignedCharacter; break;
1607     case 2:  STK = SimpleTypeKind::Int16Short;      break;
1608     case 4:  STK = SimpleTypeKind::Int32;           break;
1609     case 8:  STK = SimpleTypeKind::Int64Quad;       break;
1610     case 16: STK = SimpleTypeKind::Int128Oct;       break;
1611     }
1612     break;
1613   case dwarf::DW_ATE_unsigned:
1614     switch (ByteSize) {
1615     case 1:  STK = SimpleTypeKind::UnsignedCharacter; break;
1616     case 2:  STK = SimpleTypeKind::UInt16Short;       break;
1617     case 4:  STK = SimpleTypeKind::UInt32;            break;
1618     case 8:  STK = SimpleTypeKind::UInt64Quad;        break;
1619     case 16: STK = SimpleTypeKind::UInt128Oct;        break;
1620     }
1621     break;
1622   case dwarf::DW_ATE_UTF:
1623     switch (ByteSize) {
1624     case 2: STK = SimpleTypeKind::Character16; break;
1625     case 4: STK = SimpleTypeKind::Character32; break;
1626     }
1627     break;
1628   case dwarf::DW_ATE_signed_char:
1629     if (ByteSize == 1)
1630       STK = SimpleTypeKind::SignedCharacter;
1631     break;
1632   case dwarf::DW_ATE_unsigned_char:
1633     if (ByteSize == 1)
1634       STK = SimpleTypeKind::UnsignedCharacter;
1635     break;
1636   default:
1637     break;
1638   }
1639 
1640   // Apply some fixups based on the source-level type name.
1641   if (STK == SimpleTypeKind::Int32 && Ty->getName() == "long int")
1642     STK = SimpleTypeKind::Int32Long;
1643   if (STK == SimpleTypeKind::UInt32 && Ty->getName() == "long unsigned int")
1644     STK = SimpleTypeKind::UInt32Long;
1645   if (STK == SimpleTypeKind::UInt16Short &&
1646       (Ty->getName() == "wchar_t" || Ty->getName() == "__wchar_t"))
1647     STK = SimpleTypeKind::WideCharacter;
1648   if ((STK == SimpleTypeKind::SignedCharacter ||
1649        STK == SimpleTypeKind::UnsignedCharacter) &&
1650       Ty->getName() == "char")
1651     STK = SimpleTypeKind::NarrowCharacter;
1652 
1653   return TypeIndex(STK);
1654 }
1655 
1656 TypeIndex CodeViewDebug::lowerTypePointer(const DIDerivedType *Ty,
1657                                           PointerOptions PO) {
1658   TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType());
1659 
1660   // Pointers to simple types without any options can use SimpleTypeMode, rather
1661   // than having a dedicated pointer type record.
1662   if (PointeeTI.isSimple() && PO == PointerOptions::None &&
1663       PointeeTI.getSimpleMode() == SimpleTypeMode::Direct &&
1664       Ty->getTag() == dwarf::DW_TAG_pointer_type) {
1665     SimpleTypeMode Mode = Ty->getSizeInBits() == 64
1666                               ? SimpleTypeMode::NearPointer64
1667                               : SimpleTypeMode::NearPointer32;
1668     return TypeIndex(PointeeTI.getSimpleKind(), Mode);
1669   }
1670 
1671   PointerKind PK =
1672       Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32;
1673   PointerMode PM = PointerMode::Pointer;
1674   switch (Ty->getTag()) {
1675   default: llvm_unreachable("not a pointer tag type");
1676   case dwarf::DW_TAG_pointer_type:
1677     PM = PointerMode::Pointer;
1678     break;
1679   case dwarf::DW_TAG_reference_type:
1680     PM = PointerMode::LValueReference;
1681     break;
1682   case dwarf::DW_TAG_rvalue_reference_type:
1683     PM = PointerMode::RValueReference;
1684     break;
1685   }
1686 
1687   if (Ty->isObjectPointer())
1688     PO |= PointerOptions::Const;
1689 
1690   PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8);
1691   return TypeTable.writeLeafType(PR);
1692 }
1693 
1694 static PointerToMemberRepresentation
1695 translatePtrToMemberRep(unsigned SizeInBytes, bool IsPMF, unsigned Flags) {
1696   // SizeInBytes being zero generally implies that the member pointer type was
1697   // incomplete, which can happen if it is part of a function prototype. In this
1698   // case, use the unknown model instead of the general model.
1699   if (IsPMF) {
1700     switch (Flags & DINode::FlagPtrToMemberRep) {
1701     case 0:
1702       return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1703                               : PointerToMemberRepresentation::GeneralFunction;
1704     case DINode::FlagSingleInheritance:
1705       return PointerToMemberRepresentation::SingleInheritanceFunction;
1706     case DINode::FlagMultipleInheritance:
1707       return PointerToMemberRepresentation::MultipleInheritanceFunction;
1708     case DINode::FlagVirtualInheritance:
1709       return PointerToMemberRepresentation::VirtualInheritanceFunction;
1710     }
1711   } else {
1712     switch (Flags & DINode::FlagPtrToMemberRep) {
1713     case 0:
1714       return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1715                               : PointerToMemberRepresentation::GeneralData;
1716     case DINode::FlagSingleInheritance:
1717       return PointerToMemberRepresentation::SingleInheritanceData;
1718     case DINode::FlagMultipleInheritance:
1719       return PointerToMemberRepresentation::MultipleInheritanceData;
1720     case DINode::FlagVirtualInheritance:
1721       return PointerToMemberRepresentation::VirtualInheritanceData;
1722     }
1723   }
1724   llvm_unreachable("invalid ptr to member representation");
1725 }
1726 
1727 TypeIndex CodeViewDebug::lowerTypeMemberPointer(const DIDerivedType *Ty,
1728                                                 PointerOptions PO) {
1729   assert(Ty->getTag() == dwarf::DW_TAG_ptr_to_member_type);
1730   TypeIndex ClassTI = getTypeIndex(Ty->getClassType());
1731   TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType(), Ty->getClassType());
1732   PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
1733                                                 : PointerKind::Near32;
1734   bool IsPMF = isa<DISubroutineType>(Ty->getBaseType());
1735   PointerMode PM = IsPMF ? PointerMode::PointerToMemberFunction
1736                          : PointerMode::PointerToDataMember;
1737 
1738   assert(Ty->getSizeInBits() / 8 <= 0xff && "pointer size too big");
1739   uint8_t SizeInBytes = Ty->getSizeInBits() / 8;
1740   MemberPointerInfo MPI(
1741       ClassTI, translatePtrToMemberRep(SizeInBytes, IsPMF, Ty->getFlags()));
1742   PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI);
1743   return TypeTable.writeLeafType(PR);
1744 }
1745 
1746 /// Given a DWARF calling convention, get the CodeView equivalent. If we don't
1747 /// have a translation, use the NearC convention.
1748 static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) {
1749   switch (DwarfCC) {
1750   case dwarf::DW_CC_normal:             return CallingConvention::NearC;
1751   case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast;
1752   case dwarf::DW_CC_BORLAND_thiscall:   return CallingConvention::ThisCall;
1753   case dwarf::DW_CC_BORLAND_stdcall:    return CallingConvention::NearStdCall;
1754   case dwarf::DW_CC_BORLAND_pascal:     return CallingConvention::NearPascal;
1755   case dwarf::DW_CC_LLVM_vectorcall:    return CallingConvention::NearVector;
1756   }
1757   return CallingConvention::NearC;
1758 }
1759 
1760 TypeIndex CodeViewDebug::lowerTypeModifier(const DIDerivedType *Ty) {
1761   ModifierOptions Mods = ModifierOptions::None;
1762   PointerOptions PO = PointerOptions::None;
1763   bool IsModifier = true;
1764   const DIType *BaseTy = Ty;
1765   while (IsModifier && BaseTy) {
1766     // FIXME: Need to add DWARF tags for __unaligned and _Atomic
1767     switch (BaseTy->getTag()) {
1768     case dwarf::DW_TAG_const_type:
1769       Mods |= ModifierOptions::Const;
1770       PO |= PointerOptions::Const;
1771       break;
1772     case dwarf::DW_TAG_volatile_type:
1773       Mods |= ModifierOptions::Volatile;
1774       PO |= PointerOptions::Volatile;
1775       break;
1776     case dwarf::DW_TAG_restrict_type:
1777       // Only pointer types be marked with __restrict. There is no known flag
1778       // for __restrict in LF_MODIFIER records.
1779       PO |= PointerOptions::Restrict;
1780       break;
1781     default:
1782       IsModifier = false;
1783       break;
1784     }
1785     if (IsModifier)
1786       BaseTy = cast<DIDerivedType>(BaseTy)->getBaseType().resolve();
1787   }
1788 
1789   // Check if the inner type will use an LF_POINTER record. If so, the
1790   // qualifiers will go in the LF_POINTER record. This comes up for types like
1791   // 'int *const' and 'int *__restrict', not the more common cases like 'const
1792   // char *'.
1793   if (BaseTy) {
1794     switch (BaseTy->getTag()) {
1795     case dwarf::DW_TAG_pointer_type:
1796     case dwarf::DW_TAG_reference_type:
1797     case dwarf::DW_TAG_rvalue_reference_type:
1798       return lowerTypePointer(cast<DIDerivedType>(BaseTy), PO);
1799     case dwarf::DW_TAG_ptr_to_member_type:
1800       return lowerTypeMemberPointer(cast<DIDerivedType>(BaseTy), PO);
1801     default:
1802       break;
1803     }
1804   }
1805 
1806   TypeIndex ModifiedTI = getTypeIndex(BaseTy);
1807 
1808   // Return the base type index if there aren't any modifiers. For example, the
1809   // metadata could contain restrict wrappers around non-pointer types.
1810   if (Mods == ModifierOptions::None)
1811     return ModifiedTI;
1812 
1813   ModifierRecord MR(ModifiedTI, Mods);
1814   return TypeTable.writeLeafType(MR);
1815 }
1816 
1817 TypeIndex CodeViewDebug::lowerTypeFunction(const DISubroutineType *Ty) {
1818   SmallVector<TypeIndex, 8> ReturnAndArgTypeIndices;
1819   for (DITypeRef ArgTypeRef : Ty->getTypeArray())
1820     ReturnAndArgTypeIndices.push_back(getTypeIndex(ArgTypeRef));
1821 
1822   // MSVC uses type none for variadic argument.
1823   if (ReturnAndArgTypeIndices.size() > 1 &&
1824       ReturnAndArgTypeIndices.back() == TypeIndex::Void()) {
1825     ReturnAndArgTypeIndices.back() = TypeIndex::None();
1826   }
1827   TypeIndex ReturnTypeIndex = TypeIndex::Void();
1828   ArrayRef<TypeIndex> ArgTypeIndices = None;
1829   if (!ReturnAndArgTypeIndices.empty()) {
1830     auto ReturnAndArgTypesRef = makeArrayRef(ReturnAndArgTypeIndices);
1831     ReturnTypeIndex = ReturnAndArgTypesRef.front();
1832     ArgTypeIndices = ReturnAndArgTypesRef.drop_front();
1833   }
1834 
1835   ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
1836   TypeIndex ArgListIndex = TypeTable.writeLeafType(ArgListRec);
1837 
1838   CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1839 
1840   FunctionOptions FO = getFunctionOptions(Ty);
1841   ProcedureRecord Procedure(ReturnTypeIndex, CC, FO, ArgTypeIndices.size(),
1842                             ArgListIndex);
1843   return TypeTable.writeLeafType(Procedure);
1844 }
1845 
1846 TypeIndex CodeViewDebug::lowerTypeMemberFunction(const DISubroutineType *Ty,
1847                                                  const DIType *ClassTy,
1848                                                  int ThisAdjustment,
1849                                                  bool IsStaticMethod,
1850                                                  FunctionOptions FO) {
1851   // Lower the containing class type.
1852   TypeIndex ClassType = getTypeIndex(ClassTy);
1853 
1854   DITypeRefArray ReturnAndArgs = Ty->getTypeArray();
1855 
1856   unsigned Index = 0;
1857   SmallVector<TypeIndex, 8> ArgTypeIndices;
1858   TypeIndex ReturnTypeIndex = TypeIndex::Void();
1859   if (ReturnAndArgs.size() > Index) {
1860     ReturnTypeIndex = getTypeIndex(ReturnAndArgs[Index++]);
1861   }
1862 
1863   // If the first argument is a pointer type and this isn't a static method,
1864   // treat it as the special 'this' parameter, which is encoded separately from
1865   // the arguments.
1866   TypeIndex ThisTypeIndex;
1867   if (!IsStaticMethod && ReturnAndArgs.size() > Index) {
1868     if (const DIDerivedType *PtrTy =
1869             dyn_cast_or_null<DIDerivedType>(ReturnAndArgs[Index].resolve())) {
1870       if (PtrTy->getTag() == dwarf::DW_TAG_pointer_type) {
1871         ThisTypeIndex = getTypeIndexForThisPtr(PtrTy, Ty);
1872         Index++;
1873       }
1874     }
1875   }
1876 
1877   while (Index < ReturnAndArgs.size())
1878     ArgTypeIndices.push_back(getTypeIndex(ReturnAndArgs[Index++]));
1879 
1880   // MSVC uses type none for variadic argument.
1881   if (!ArgTypeIndices.empty() && ArgTypeIndices.back() == TypeIndex::Void())
1882     ArgTypeIndices.back() = TypeIndex::None();
1883 
1884   ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
1885   TypeIndex ArgListIndex = TypeTable.writeLeafType(ArgListRec);
1886 
1887   CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1888 
1889   MemberFunctionRecord MFR(ReturnTypeIndex, ClassType, ThisTypeIndex, CC, FO,
1890                            ArgTypeIndices.size(), ArgListIndex, ThisAdjustment);
1891   return TypeTable.writeLeafType(MFR);
1892 }
1893 
1894 TypeIndex CodeViewDebug::lowerTypeVFTableShape(const DIDerivedType *Ty) {
1895   unsigned VSlotCount =
1896       Ty->getSizeInBits() / (8 * Asm->MAI->getCodePointerSize());
1897   SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near);
1898 
1899   VFTableShapeRecord VFTSR(Slots);
1900   return TypeTable.writeLeafType(VFTSR);
1901 }
1902 
1903 static MemberAccess translateAccessFlags(unsigned RecordTag, unsigned Flags) {
1904   switch (Flags & DINode::FlagAccessibility) {
1905   case DINode::FlagPrivate:   return MemberAccess::Private;
1906   case DINode::FlagPublic:    return MemberAccess::Public;
1907   case DINode::FlagProtected: return MemberAccess::Protected;
1908   case 0:
1909     // If there was no explicit access control, provide the default for the tag.
1910     return RecordTag == dwarf::DW_TAG_class_type ? MemberAccess::Private
1911                                                  : MemberAccess::Public;
1912   }
1913   llvm_unreachable("access flags are exclusive");
1914 }
1915 
1916 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) {
1917   if (SP->isArtificial())
1918     return MethodOptions::CompilerGenerated;
1919 
1920   // FIXME: Handle other MethodOptions.
1921 
1922   return MethodOptions::None;
1923 }
1924 
1925 static MethodKind translateMethodKindFlags(const DISubprogram *SP,
1926                                            bool Introduced) {
1927   if (SP->getFlags() & DINode::FlagStaticMember)
1928     return MethodKind::Static;
1929 
1930   switch (SP->getVirtuality()) {
1931   case dwarf::DW_VIRTUALITY_none:
1932     break;
1933   case dwarf::DW_VIRTUALITY_virtual:
1934     return Introduced ? MethodKind::IntroducingVirtual : MethodKind::Virtual;
1935   case dwarf::DW_VIRTUALITY_pure_virtual:
1936     return Introduced ? MethodKind::PureIntroducingVirtual
1937                       : MethodKind::PureVirtual;
1938   default:
1939     llvm_unreachable("unhandled virtuality case");
1940   }
1941 
1942   return MethodKind::Vanilla;
1943 }
1944 
1945 static TypeRecordKind getRecordKind(const DICompositeType *Ty) {
1946   switch (Ty->getTag()) {
1947   case dwarf::DW_TAG_class_type:     return TypeRecordKind::Class;
1948   case dwarf::DW_TAG_structure_type: return TypeRecordKind::Struct;
1949   }
1950   llvm_unreachable("unexpected tag");
1951 }
1952 
1953 /// Return ClassOptions that should be present on both the forward declaration
1954 /// and the defintion of a tag type.
1955 static ClassOptions getCommonClassOptions(const DICompositeType *Ty) {
1956   ClassOptions CO = ClassOptions::None;
1957 
1958   // MSVC always sets this flag, even for local types. Clang doesn't always
1959   // appear to give every type a linkage name, which may be problematic for us.
1960   // FIXME: Investigate the consequences of not following them here.
1961   if (!Ty->getIdentifier().empty())
1962     CO |= ClassOptions::HasUniqueName;
1963 
1964   // Put the Nested flag on a type if it appears immediately inside a tag type.
1965   // Do not walk the scope chain. Do not attempt to compute ContainsNestedClass
1966   // here. That flag is only set on definitions, and not forward declarations.
1967   const DIScope *ImmediateScope = Ty->getScope().resolve();
1968   if (ImmediateScope && isa<DICompositeType>(ImmediateScope))
1969     CO |= ClassOptions::Nested;
1970 
1971   // Put the Scoped flag on function-local types. MSVC puts this flag for enum
1972   // type only when it has an immediate function scope. Clang never puts enums
1973   // inside DILexicalBlock scopes. Enum types, as generated by clang, are
1974   // always in function, class, or file scopes.
1975   if (Ty->getTag() == dwarf::DW_TAG_enumeration_type) {
1976     if (ImmediateScope && isa<DISubprogram>(ImmediateScope))
1977       CO |= ClassOptions::Scoped;
1978   } else {
1979     for (const DIScope *Scope = ImmediateScope; Scope != nullptr;
1980          Scope = Scope->getScope().resolve()) {
1981       if (isa<DISubprogram>(Scope)) {
1982         CO |= ClassOptions::Scoped;
1983         break;
1984       }
1985     }
1986   }
1987 
1988   return CO;
1989 }
1990 
1991 void CodeViewDebug::addUDTSrcLine(const DIType *Ty, TypeIndex TI) {
1992   switch (Ty->getTag()) {
1993   case dwarf::DW_TAG_class_type:
1994   case dwarf::DW_TAG_structure_type:
1995   case dwarf::DW_TAG_union_type:
1996   case dwarf::DW_TAG_enumeration_type:
1997     break;
1998   default:
1999     return;
2000   }
2001 
2002   if (const auto *File = Ty->getFile()) {
2003     StringIdRecord SIDR(TypeIndex(0x0), getFullFilepath(File));
2004     TypeIndex SIDI = TypeTable.writeLeafType(SIDR);
2005 
2006     UdtSourceLineRecord USLR(TI, SIDI, Ty->getLine());
2007     TypeTable.writeLeafType(USLR);
2008   }
2009 }
2010 
2011 TypeIndex CodeViewDebug::lowerTypeEnum(const DICompositeType *Ty) {
2012   ClassOptions CO = getCommonClassOptions(Ty);
2013   TypeIndex FTI;
2014   unsigned EnumeratorCount = 0;
2015 
2016   if (Ty->isForwardDecl()) {
2017     CO |= ClassOptions::ForwardReference;
2018   } else {
2019     ContinuationRecordBuilder ContinuationBuilder;
2020     ContinuationBuilder.begin(ContinuationRecordKind::FieldList);
2021     for (const DINode *Element : Ty->getElements()) {
2022       // We assume that the frontend provides all members in source declaration
2023       // order, which is what MSVC does.
2024       if (auto *Enumerator = dyn_cast_or_null<DIEnumerator>(Element)) {
2025         EnumeratorRecord ER(MemberAccess::Public,
2026                             APSInt::getUnsigned(Enumerator->getValue()),
2027                             Enumerator->getName());
2028         ContinuationBuilder.writeMemberType(ER);
2029         EnumeratorCount++;
2030       }
2031     }
2032     FTI = TypeTable.insertRecord(ContinuationBuilder);
2033   }
2034 
2035   std::string FullName = getFullyQualifiedName(Ty);
2036 
2037   EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(),
2038                 getTypeIndex(Ty->getBaseType()));
2039   TypeIndex EnumTI = TypeTable.writeLeafType(ER);
2040 
2041   addUDTSrcLine(Ty, EnumTI);
2042 
2043   return EnumTI;
2044 }
2045 
2046 //===----------------------------------------------------------------------===//
2047 // ClassInfo
2048 //===----------------------------------------------------------------------===//
2049 
2050 struct llvm::ClassInfo {
2051   struct MemberInfo {
2052     const DIDerivedType *MemberTypeNode;
2053     uint64_t BaseOffset;
2054   };
2055   // [MemberInfo]
2056   using MemberList = std::vector<MemberInfo>;
2057 
2058   using MethodsList = TinyPtrVector<const DISubprogram *>;
2059   // MethodName -> MethodsList
2060   using MethodsMap = MapVector<MDString *, MethodsList>;
2061 
2062   /// Base classes.
2063   std::vector<const DIDerivedType *> Inheritance;
2064 
2065   /// Direct members.
2066   MemberList Members;
2067   // Direct overloaded methods gathered by name.
2068   MethodsMap Methods;
2069 
2070   TypeIndex VShapeTI;
2071 
2072   std::vector<const DIType *> NestedTypes;
2073 };
2074 
2075 void CodeViewDebug::clear() {
2076   assert(CurFn == nullptr);
2077   FileIdMap.clear();
2078   FnDebugInfo.clear();
2079   FileToFilepathMap.clear();
2080   LocalUDTs.clear();
2081   GlobalUDTs.clear();
2082   TypeIndices.clear();
2083   CompleteTypeIndices.clear();
2084   ScopeGlobals.clear();
2085 }
2086 
2087 void CodeViewDebug::collectMemberInfo(ClassInfo &Info,
2088                                       const DIDerivedType *DDTy) {
2089   if (!DDTy->getName().empty()) {
2090     Info.Members.push_back({DDTy, 0});
2091     return;
2092   }
2093 
2094   // An unnamed member may represent a nested struct or union. Attempt to
2095   // interpret the unnamed member as a DICompositeType possibly wrapped in
2096   // qualifier types. Add all the indirect fields to the current record if that
2097   // succeeds, and drop the member if that fails.
2098   assert((DDTy->getOffsetInBits() % 8) == 0 && "Unnamed bitfield member!");
2099   uint64_t Offset = DDTy->getOffsetInBits();
2100   const DIType *Ty = DDTy->getBaseType().resolve();
2101   bool FullyResolved = false;
2102   while (!FullyResolved) {
2103     switch (Ty->getTag()) {
2104     case dwarf::DW_TAG_const_type:
2105     case dwarf::DW_TAG_volatile_type:
2106       // FIXME: we should apply the qualifier types to the indirect fields
2107       // rather than dropping them.
2108       Ty = cast<DIDerivedType>(Ty)->getBaseType().resolve();
2109       break;
2110     default:
2111       FullyResolved = true;
2112       break;
2113     }
2114   }
2115 
2116   const DICompositeType *DCTy = dyn_cast<DICompositeType>(Ty);
2117   if (!DCTy)
2118     return;
2119 
2120   ClassInfo NestedInfo = collectClassInfo(DCTy);
2121   for (const ClassInfo::MemberInfo &IndirectField : NestedInfo.Members)
2122     Info.Members.push_back(
2123         {IndirectField.MemberTypeNode, IndirectField.BaseOffset + Offset});
2124 }
2125 
2126 ClassInfo CodeViewDebug::collectClassInfo(const DICompositeType *Ty) {
2127   ClassInfo Info;
2128   // Add elements to structure type.
2129   DINodeArray Elements = Ty->getElements();
2130   for (auto *Element : Elements) {
2131     // We assume that the frontend provides all members in source declaration
2132     // order, which is what MSVC does.
2133     if (!Element)
2134       continue;
2135     if (auto *SP = dyn_cast<DISubprogram>(Element)) {
2136       Info.Methods[SP->getRawName()].push_back(SP);
2137     } else if (auto *DDTy = dyn_cast<DIDerivedType>(Element)) {
2138       if (DDTy->getTag() == dwarf::DW_TAG_member) {
2139         collectMemberInfo(Info, DDTy);
2140       } else if (DDTy->getTag() == dwarf::DW_TAG_inheritance) {
2141         Info.Inheritance.push_back(DDTy);
2142       } else if (DDTy->getTag() == dwarf::DW_TAG_pointer_type &&
2143                  DDTy->getName() == "__vtbl_ptr_type") {
2144         Info.VShapeTI = getTypeIndex(DDTy);
2145       } else if (DDTy->getTag() == dwarf::DW_TAG_typedef) {
2146         Info.NestedTypes.push_back(DDTy);
2147       } else if (DDTy->getTag() == dwarf::DW_TAG_friend) {
2148         // Ignore friend members. It appears that MSVC emitted info about
2149         // friends in the past, but modern versions do not.
2150       }
2151     } else if (auto *Composite = dyn_cast<DICompositeType>(Element)) {
2152       Info.NestedTypes.push_back(Composite);
2153     }
2154     // Skip other unrecognized kinds of elements.
2155   }
2156   return Info;
2157 }
2158 
2159 static bool shouldAlwaysEmitCompleteClassType(const DICompositeType *Ty) {
2160   // This routine is used by lowerTypeClass and lowerTypeUnion to determine
2161   // if a complete type should be emitted instead of a forward reference.
2162   return Ty->getName().empty() && Ty->getIdentifier().empty() &&
2163       !Ty->isForwardDecl();
2164 }
2165 
2166 TypeIndex CodeViewDebug::lowerTypeClass(const DICompositeType *Ty) {
2167   // Emit the complete type for unnamed structs.  C++ classes with methods
2168   // which have a circular reference back to the class type are expected to
2169   // be named by the front-end and should not be "unnamed".  C unnamed
2170   // structs should not have circular references.
2171   if (shouldAlwaysEmitCompleteClassType(Ty)) {
2172     // If this unnamed complete type is already in the process of being defined
2173     // then the description of the type is malformed and cannot be emitted
2174     // into CodeView correctly so report a fatal error.
2175     auto I = CompleteTypeIndices.find(Ty);
2176     if (I != CompleteTypeIndices.end() && I->second == TypeIndex())
2177       report_fatal_error("cannot debug circular reference to unnamed type");
2178     return getCompleteTypeIndex(Ty);
2179   }
2180 
2181   // First, construct the forward decl.  Don't look into Ty to compute the
2182   // forward decl options, since it might not be available in all TUs.
2183   TypeRecordKind Kind = getRecordKind(Ty);
2184   ClassOptions CO =
2185       ClassOptions::ForwardReference | getCommonClassOptions(Ty);
2186   std::string FullName = getFullyQualifiedName(Ty);
2187   ClassRecord CR(Kind, 0, CO, TypeIndex(), TypeIndex(), TypeIndex(), 0,
2188                  FullName, Ty->getIdentifier());
2189   TypeIndex FwdDeclTI = TypeTable.writeLeafType(CR);
2190   if (!Ty->isForwardDecl())
2191     DeferredCompleteTypes.push_back(Ty);
2192   return FwdDeclTI;
2193 }
2194 
2195 TypeIndex CodeViewDebug::lowerCompleteTypeClass(const DICompositeType *Ty) {
2196   // Construct the field list and complete type record.
2197   TypeRecordKind Kind = getRecordKind(Ty);
2198   ClassOptions CO = getCommonClassOptions(Ty);
2199   TypeIndex FieldTI;
2200   TypeIndex VShapeTI;
2201   unsigned FieldCount;
2202   bool ContainsNestedClass;
2203   std::tie(FieldTI, VShapeTI, FieldCount, ContainsNestedClass) =
2204       lowerRecordFieldList(Ty);
2205 
2206   if (ContainsNestedClass)
2207     CO |= ClassOptions::ContainsNestedClass;
2208 
2209   // MSVC appears to set this flag by searching any destructor or method with
2210   // FunctionOptions::Constructor among the emitted members. Clang AST has all
2211   // the members, however special member functions are not yet emitted into
2212   // debug information. For now checking a class's non-triviality seems enough.
2213   // FIXME: not true for a nested unnamed struct.
2214   if (isNonTrivial(Ty))
2215     CO |= ClassOptions::HasConstructorOrDestructor;
2216 
2217   std::string FullName = getFullyQualifiedName(Ty);
2218 
2219   uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
2220 
2221   ClassRecord CR(Kind, FieldCount, CO, FieldTI, TypeIndex(), VShapeTI,
2222                  SizeInBytes, FullName, Ty->getIdentifier());
2223   TypeIndex ClassTI = TypeTable.writeLeafType(CR);
2224 
2225   addUDTSrcLine(Ty, ClassTI);
2226 
2227   addToUDTs(Ty);
2228 
2229   return ClassTI;
2230 }
2231 
2232 TypeIndex CodeViewDebug::lowerTypeUnion(const DICompositeType *Ty) {
2233   // Emit the complete type for unnamed unions.
2234   if (shouldAlwaysEmitCompleteClassType(Ty))
2235     return getCompleteTypeIndex(Ty);
2236 
2237   ClassOptions CO =
2238       ClassOptions::ForwardReference | getCommonClassOptions(Ty);
2239   std::string FullName = getFullyQualifiedName(Ty);
2240   UnionRecord UR(0, CO, TypeIndex(), 0, FullName, Ty->getIdentifier());
2241   TypeIndex FwdDeclTI = TypeTable.writeLeafType(UR);
2242   if (!Ty->isForwardDecl())
2243     DeferredCompleteTypes.push_back(Ty);
2244   return FwdDeclTI;
2245 }
2246 
2247 TypeIndex CodeViewDebug::lowerCompleteTypeUnion(const DICompositeType *Ty) {
2248   ClassOptions CO = ClassOptions::Sealed | getCommonClassOptions(Ty);
2249   TypeIndex FieldTI;
2250   unsigned FieldCount;
2251   bool ContainsNestedClass;
2252   std::tie(FieldTI, std::ignore, FieldCount, ContainsNestedClass) =
2253       lowerRecordFieldList(Ty);
2254 
2255   if (ContainsNestedClass)
2256     CO |= ClassOptions::ContainsNestedClass;
2257 
2258   uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
2259   std::string FullName = getFullyQualifiedName(Ty);
2260 
2261   UnionRecord UR(FieldCount, CO, FieldTI, SizeInBytes, FullName,
2262                  Ty->getIdentifier());
2263   TypeIndex UnionTI = TypeTable.writeLeafType(UR);
2264 
2265   addUDTSrcLine(Ty, UnionTI);
2266 
2267   addToUDTs(Ty);
2268 
2269   return UnionTI;
2270 }
2271 
2272 std::tuple<TypeIndex, TypeIndex, unsigned, bool>
2273 CodeViewDebug::lowerRecordFieldList(const DICompositeType *Ty) {
2274   // Manually count members. MSVC appears to count everything that generates a
2275   // field list record. Each individual overload in a method overload group
2276   // contributes to this count, even though the overload group is a single field
2277   // list record.
2278   unsigned MemberCount = 0;
2279   ClassInfo Info = collectClassInfo(Ty);
2280   ContinuationRecordBuilder ContinuationBuilder;
2281   ContinuationBuilder.begin(ContinuationRecordKind::FieldList);
2282 
2283   // Create base classes.
2284   for (const DIDerivedType *I : Info.Inheritance) {
2285     if (I->getFlags() & DINode::FlagVirtual) {
2286       // Virtual base.
2287       unsigned VBPtrOffset = I->getVBPtrOffset();
2288       // FIXME: Despite the accessor name, the offset is really in bytes.
2289       unsigned VBTableIndex = I->getOffsetInBits() / 4;
2290       auto RecordKind = (I->getFlags() & DINode::FlagIndirectVirtualBase) == DINode::FlagIndirectVirtualBase
2291                             ? TypeRecordKind::IndirectVirtualBaseClass
2292                             : TypeRecordKind::VirtualBaseClass;
2293       VirtualBaseClassRecord VBCR(
2294           RecordKind, translateAccessFlags(Ty->getTag(), I->getFlags()),
2295           getTypeIndex(I->getBaseType()), getVBPTypeIndex(), VBPtrOffset,
2296           VBTableIndex);
2297 
2298       ContinuationBuilder.writeMemberType(VBCR);
2299       MemberCount++;
2300     } else {
2301       assert(I->getOffsetInBits() % 8 == 0 &&
2302              "bases must be on byte boundaries");
2303       BaseClassRecord BCR(translateAccessFlags(Ty->getTag(), I->getFlags()),
2304                           getTypeIndex(I->getBaseType()),
2305                           I->getOffsetInBits() / 8);
2306       ContinuationBuilder.writeMemberType(BCR);
2307       MemberCount++;
2308     }
2309   }
2310 
2311   // Create members.
2312   for (ClassInfo::MemberInfo &MemberInfo : Info.Members) {
2313     const DIDerivedType *Member = MemberInfo.MemberTypeNode;
2314     TypeIndex MemberBaseType = getTypeIndex(Member->getBaseType());
2315     StringRef MemberName = Member->getName();
2316     MemberAccess Access =
2317         translateAccessFlags(Ty->getTag(), Member->getFlags());
2318 
2319     if (Member->isStaticMember()) {
2320       StaticDataMemberRecord SDMR(Access, MemberBaseType, MemberName);
2321       ContinuationBuilder.writeMemberType(SDMR);
2322       MemberCount++;
2323       continue;
2324     }
2325 
2326     // Virtual function pointer member.
2327     if ((Member->getFlags() & DINode::FlagArtificial) &&
2328         Member->getName().startswith("_vptr$")) {
2329       VFPtrRecord VFPR(getTypeIndex(Member->getBaseType()));
2330       ContinuationBuilder.writeMemberType(VFPR);
2331       MemberCount++;
2332       continue;
2333     }
2334 
2335     // Data member.
2336     uint64_t MemberOffsetInBits =
2337         Member->getOffsetInBits() + MemberInfo.BaseOffset;
2338     if (Member->isBitField()) {
2339       uint64_t StartBitOffset = MemberOffsetInBits;
2340       if (const auto *CI =
2341               dyn_cast_or_null<ConstantInt>(Member->getStorageOffsetInBits())) {
2342         MemberOffsetInBits = CI->getZExtValue() + MemberInfo.BaseOffset;
2343       }
2344       StartBitOffset -= MemberOffsetInBits;
2345       BitFieldRecord BFR(MemberBaseType, Member->getSizeInBits(),
2346                          StartBitOffset);
2347       MemberBaseType = TypeTable.writeLeafType(BFR);
2348     }
2349     uint64_t MemberOffsetInBytes = MemberOffsetInBits / 8;
2350     DataMemberRecord DMR(Access, MemberBaseType, MemberOffsetInBytes,
2351                          MemberName);
2352     ContinuationBuilder.writeMemberType(DMR);
2353     MemberCount++;
2354   }
2355 
2356   // Create methods
2357   for (auto &MethodItr : Info.Methods) {
2358     StringRef Name = MethodItr.first->getString();
2359 
2360     std::vector<OneMethodRecord> Methods;
2361     for (const DISubprogram *SP : MethodItr.second) {
2362       TypeIndex MethodType = getMemberFunctionType(SP, Ty);
2363       bool Introduced = SP->getFlags() & DINode::FlagIntroducedVirtual;
2364 
2365       unsigned VFTableOffset = -1;
2366       if (Introduced)
2367         VFTableOffset = SP->getVirtualIndex() * getPointerSizeInBytes();
2368 
2369       Methods.push_back(OneMethodRecord(
2370           MethodType, translateAccessFlags(Ty->getTag(), SP->getFlags()),
2371           translateMethodKindFlags(SP, Introduced),
2372           translateMethodOptionFlags(SP), VFTableOffset, Name));
2373       MemberCount++;
2374     }
2375     assert(!Methods.empty() && "Empty methods map entry");
2376     if (Methods.size() == 1)
2377       ContinuationBuilder.writeMemberType(Methods[0]);
2378     else {
2379       // FIXME: Make this use its own ContinuationBuilder so that
2380       // MethodOverloadList can be split correctly.
2381       MethodOverloadListRecord MOLR(Methods);
2382       TypeIndex MethodList = TypeTable.writeLeafType(MOLR);
2383 
2384       OverloadedMethodRecord OMR(Methods.size(), MethodList, Name);
2385       ContinuationBuilder.writeMemberType(OMR);
2386     }
2387   }
2388 
2389   // Create nested classes.
2390   for (const DIType *Nested : Info.NestedTypes) {
2391     NestedTypeRecord R(getTypeIndex(DITypeRef(Nested)), Nested->getName());
2392     ContinuationBuilder.writeMemberType(R);
2393     MemberCount++;
2394   }
2395 
2396   TypeIndex FieldTI = TypeTable.insertRecord(ContinuationBuilder);
2397   return std::make_tuple(FieldTI, Info.VShapeTI, MemberCount,
2398                          !Info.NestedTypes.empty());
2399 }
2400 
2401 TypeIndex CodeViewDebug::getVBPTypeIndex() {
2402   if (!VBPType.getIndex()) {
2403     // Make a 'const int *' type.
2404     ModifierRecord MR(TypeIndex::Int32(), ModifierOptions::Const);
2405     TypeIndex ModifiedTI = TypeTable.writeLeafType(MR);
2406 
2407     PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
2408                                                   : PointerKind::Near32;
2409     PointerMode PM = PointerMode::Pointer;
2410     PointerOptions PO = PointerOptions::None;
2411     PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes());
2412     VBPType = TypeTable.writeLeafType(PR);
2413   }
2414 
2415   return VBPType;
2416 }
2417 
2418 TypeIndex CodeViewDebug::getTypeIndex(DITypeRef TypeRef, DITypeRef ClassTyRef) {
2419   const DIType *Ty = TypeRef.resolve();
2420   const DIType *ClassTy = ClassTyRef.resolve();
2421 
2422   // The null DIType is the void type. Don't try to hash it.
2423   if (!Ty)
2424     return TypeIndex::Void();
2425 
2426   // Check if we've already translated this type. Don't try to do a
2427   // get-or-create style insertion that caches the hash lookup across the
2428   // lowerType call. It will update the TypeIndices map.
2429   auto I = TypeIndices.find({Ty, ClassTy});
2430   if (I != TypeIndices.end())
2431     return I->second;
2432 
2433   TypeLoweringScope S(*this);
2434   TypeIndex TI = lowerType(Ty, ClassTy);
2435   return recordTypeIndexForDINode(Ty, TI, ClassTy);
2436 }
2437 
2438 codeview::TypeIndex
2439 CodeViewDebug::getTypeIndexForThisPtr(const DIDerivedType *PtrTy,
2440                                       const DISubroutineType *SubroutineTy) {
2441   assert(PtrTy->getTag() == dwarf::DW_TAG_pointer_type &&
2442          "this type must be a pointer type");
2443 
2444   PointerOptions Options = PointerOptions::None;
2445   if (SubroutineTy->getFlags() & DINode::DIFlags::FlagLValueReference)
2446     Options = PointerOptions::LValueRefThisPointer;
2447   else if (SubroutineTy->getFlags() & DINode::DIFlags::FlagRValueReference)
2448     Options = PointerOptions::RValueRefThisPointer;
2449 
2450   // Check if we've already translated this type.  If there is no ref qualifier
2451   // on the function then we look up this pointer type with no associated class
2452   // so that the TypeIndex for the this pointer can be shared with the type
2453   // index for other pointers to this class type.  If there is a ref qualifier
2454   // then we lookup the pointer using the subroutine as the parent type.
2455   auto I = TypeIndices.find({PtrTy, SubroutineTy});
2456   if (I != TypeIndices.end())
2457     return I->second;
2458 
2459   TypeLoweringScope S(*this);
2460   TypeIndex TI = lowerTypePointer(PtrTy, Options);
2461   return recordTypeIndexForDINode(PtrTy, TI, SubroutineTy);
2462 }
2463 
2464 TypeIndex CodeViewDebug::getTypeIndexForReferenceTo(DITypeRef TypeRef) {
2465   DIType *Ty = TypeRef.resolve();
2466   PointerRecord PR(getTypeIndex(Ty),
2467                    getPointerSizeInBytes() == 8 ? PointerKind::Near64
2468                                                 : PointerKind::Near32,
2469                    PointerMode::LValueReference, PointerOptions::None,
2470                    Ty->getSizeInBits() / 8);
2471   return TypeTable.writeLeafType(PR);
2472 }
2473 
2474 TypeIndex CodeViewDebug::getCompleteTypeIndex(DITypeRef TypeRef) {
2475   const DIType *Ty = TypeRef.resolve();
2476 
2477   // The null DIType is the void type. Don't try to hash it.
2478   if (!Ty)
2479     return TypeIndex::Void();
2480 
2481   // Look through typedefs when getting the complete type index. Call
2482   // getTypeIndex on the typdef to ensure that any UDTs are accumulated and are
2483   // emitted only once.
2484   if (Ty->getTag() == dwarf::DW_TAG_typedef)
2485     (void)getTypeIndex(Ty);
2486   while (Ty->getTag() == dwarf::DW_TAG_typedef)
2487     Ty = cast<DIDerivedType>(Ty)->getBaseType().resolve();
2488 
2489   // If this is a non-record type, the complete type index is the same as the
2490   // normal type index. Just call getTypeIndex.
2491   switch (Ty->getTag()) {
2492   case dwarf::DW_TAG_class_type:
2493   case dwarf::DW_TAG_structure_type:
2494   case dwarf::DW_TAG_union_type:
2495     break;
2496   default:
2497     return getTypeIndex(Ty);
2498   }
2499 
2500   const auto *CTy = cast<DICompositeType>(Ty);
2501 
2502   TypeLoweringScope S(*this);
2503 
2504   // Make sure the forward declaration is emitted first. It's unclear if this
2505   // is necessary, but MSVC does it, and we should follow suit until we can show
2506   // otherwise.
2507   // We only emit a forward declaration for named types.
2508   if (!CTy->getName().empty() || !CTy->getIdentifier().empty()) {
2509     TypeIndex FwdDeclTI = getTypeIndex(CTy);
2510 
2511     // Just use the forward decl if we don't have complete type info. This
2512     // might happen if the frontend is using modules and expects the complete
2513     // definition to be emitted elsewhere.
2514     if (CTy->isForwardDecl())
2515       return FwdDeclTI;
2516   }
2517 
2518   // Check if we've already translated the complete record type.
2519   // Insert the type with a null TypeIndex to signify that the type is currently
2520   // being lowered.
2521   auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
2522   if (!InsertResult.second)
2523     return InsertResult.first->second;
2524 
2525   TypeIndex TI;
2526   switch (CTy->getTag()) {
2527   case dwarf::DW_TAG_class_type:
2528   case dwarf::DW_TAG_structure_type:
2529     TI = lowerCompleteTypeClass(CTy);
2530     break;
2531   case dwarf::DW_TAG_union_type:
2532     TI = lowerCompleteTypeUnion(CTy);
2533     break;
2534   default:
2535     llvm_unreachable("not a record");
2536   }
2537 
2538   // Update the type index associated with this CompositeType.  This cannot
2539   // use the 'InsertResult' iterator above because it is potentially
2540   // invalidated by map insertions which can occur while lowering the class
2541   // type above.
2542   CompleteTypeIndices[CTy] = TI;
2543   return TI;
2544 }
2545 
2546 /// Emit all the deferred complete record types. Try to do this in FIFO order,
2547 /// and do this until fixpoint, as each complete record type typically
2548 /// references
2549 /// many other record types.
2550 void CodeViewDebug::emitDeferredCompleteTypes() {
2551   SmallVector<const DICompositeType *, 4> TypesToEmit;
2552   while (!DeferredCompleteTypes.empty()) {
2553     std::swap(DeferredCompleteTypes, TypesToEmit);
2554     for (const DICompositeType *RecordTy : TypesToEmit)
2555       getCompleteTypeIndex(RecordTy);
2556     TypesToEmit.clear();
2557   }
2558 }
2559 
2560 void CodeViewDebug::emitLocalVariableList(const FunctionInfo &FI,
2561                                           ArrayRef<LocalVariable> Locals) {
2562   // Get the sorted list of parameters and emit them first.
2563   SmallVector<const LocalVariable *, 6> Params;
2564   for (const LocalVariable &L : Locals)
2565     if (L.DIVar->isParameter())
2566       Params.push_back(&L);
2567   llvm::sort(Params, [](const LocalVariable *L, const LocalVariable *R) {
2568     return L->DIVar->getArg() < R->DIVar->getArg();
2569   });
2570   for (const LocalVariable *L : Params)
2571     emitLocalVariable(FI, *L);
2572 
2573   // Next emit all non-parameters in the order that we found them.
2574   for (const LocalVariable &L : Locals)
2575     if (!L.DIVar->isParameter())
2576       emitLocalVariable(FI, L);
2577 }
2578 
2579 /// Only call this on endian-specific types like ulittle16_t and little32_t, or
2580 /// structs composed of them.
2581 template <typename T>
2582 static void copyBytesForDefRange(SmallString<20> &BytePrefix,
2583                                  SymbolKind SymKind, const T &DefRangeHeader) {
2584   BytePrefix.resize(2 + sizeof(T));
2585   ulittle16_t SymKindLE = ulittle16_t(SymKind);
2586   memcpy(&BytePrefix[0], &SymKindLE, 2);
2587   memcpy(&BytePrefix[2], &DefRangeHeader, sizeof(T));
2588 }
2589 
2590 void CodeViewDebug::emitLocalVariable(const FunctionInfo &FI,
2591                                       const LocalVariable &Var) {
2592   // LocalSym record, see SymbolRecord.h for more info.
2593   MCSymbol *LocalEnd = beginSymbolRecord(SymbolKind::S_LOCAL);
2594 
2595   LocalSymFlags Flags = LocalSymFlags::None;
2596   if (Var.DIVar->isParameter())
2597     Flags |= LocalSymFlags::IsParameter;
2598   if (Var.DefRanges.empty())
2599     Flags |= LocalSymFlags::IsOptimizedOut;
2600 
2601   OS.AddComment("TypeIndex");
2602   TypeIndex TI = Var.UseReferenceType
2603                      ? getTypeIndexForReferenceTo(Var.DIVar->getType())
2604                      : getCompleteTypeIndex(Var.DIVar->getType());
2605   OS.EmitIntValue(TI.getIndex(), 4);
2606   OS.AddComment("Flags");
2607   OS.EmitIntValue(static_cast<uint16_t>(Flags), 2);
2608   // Truncate the name so we won't overflow the record length field.
2609   emitNullTerminatedSymbolName(OS, Var.DIVar->getName());
2610   endSymbolRecord(LocalEnd);
2611 
2612   // Calculate the on disk prefix of the appropriate def range record. The
2613   // records and on disk formats are described in SymbolRecords.h. BytePrefix
2614   // should be big enough to hold all forms without memory allocation.
2615   SmallString<20> BytePrefix;
2616   for (const LocalVarDefRange &DefRange : Var.DefRanges) {
2617     BytePrefix.clear();
2618     if (DefRange.InMemory) {
2619       int Offset = DefRange.DataOffset;
2620       unsigned Reg = DefRange.CVRegister;
2621 
2622       // 32-bit x86 call sequences often use PUSH instructions, which disrupt
2623       // ESP-relative offsets. Use the virtual frame pointer, VFRAME or $T0,
2624       // instead. In frames without stack realignment, $T0 will be the CFA.
2625       if (RegisterId(Reg) == RegisterId::ESP) {
2626         Reg = unsigned(RegisterId::VFRAME);
2627         Offset += FI.OffsetAdjustment;
2628       }
2629 
2630       // If we can use the chosen frame pointer for the frame and this isn't a
2631       // sliced aggregate, use the smaller S_DEFRANGE_FRAMEPOINTER_REL record.
2632       // Otherwise, use S_DEFRANGE_REGISTER_REL.
2633       EncodedFramePtrReg EncFP = encodeFramePtrReg(RegisterId(Reg), TheCPU);
2634       if (!DefRange.IsSubfield && EncFP != EncodedFramePtrReg::None &&
2635           (bool(Flags & LocalSymFlags::IsParameter)
2636                ? (EncFP == FI.EncodedParamFramePtrReg)
2637                : (EncFP == FI.EncodedLocalFramePtrReg))) {
2638         little32_t FPOffset = little32_t(Offset);
2639         copyBytesForDefRange(BytePrefix, S_DEFRANGE_FRAMEPOINTER_REL, FPOffset);
2640       } else {
2641         uint16_t RegRelFlags = 0;
2642         if (DefRange.IsSubfield) {
2643           RegRelFlags = DefRangeRegisterRelSym::IsSubfieldFlag |
2644                         (DefRange.StructOffset
2645                          << DefRangeRegisterRelSym::OffsetInParentShift);
2646         }
2647         DefRangeRegisterRelSym::Header DRHdr;
2648         DRHdr.Register = Reg;
2649         DRHdr.Flags = RegRelFlags;
2650         DRHdr.BasePointerOffset = Offset;
2651         copyBytesForDefRange(BytePrefix, S_DEFRANGE_REGISTER_REL, DRHdr);
2652       }
2653     } else {
2654       assert(DefRange.DataOffset == 0 && "unexpected offset into register");
2655       if (DefRange.IsSubfield) {
2656         DefRangeSubfieldRegisterSym::Header DRHdr;
2657         DRHdr.Register = DefRange.CVRegister;
2658         DRHdr.MayHaveNoName = 0;
2659         DRHdr.OffsetInParent = DefRange.StructOffset;
2660         copyBytesForDefRange(BytePrefix, S_DEFRANGE_SUBFIELD_REGISTER, DRHdr);
2661       } else {
2662         DefRangeRegisterSym::Header DRHdr;
2663         DRHdr.Register = DefRange.CVRegister;
2664         DRHdr.MayHaveNoName = 0;
2665         copyBytesForDefRange(BytePrefix, S_DEFRANGE_REGISTER, DRHdr);
2666       }
2667     }
2668     OS.EmitCVDefRangeDirective(DefRange.Ranges, BytePrefix);
2669   }
2670 }
2671 
2672 void CodeViewDebug::emitLexicalBlockList(ArrayRef<LexicalBlock *> Blocks,
2673                                          const FunctionInfo& FI) {
2674   for (LexicalBlock *Block : Blocks)
2675     emitLexicalBlock(*Block, FI);
2676 }
2677 
2678 /// Emit an S_BLOCK32 and S_END record pair delimiting the contents of a
2679 /// lexical block scope.
2680 void CodeViewDebug::emitLexicalBlock(const LexicalBlock &Block,
2681                                      const FunctionInfo& FI) {
2682   MCSymbol *RecordEnd = beginSymbolRecord(SymbolKind::S_BLOCK32);
2683   OS.AddComment("PtrParent");
2684   OS.EmitIntValue(0, 4);                                  // PtrParent
2685   OS.AddComment("PtrEnd");
2686   OS.EmitIntValue(0, 4);                                  // PtrEnd
2687   OS.AddComment("Code size");
2688   OS.emitAbsoluteSymbolDiff(Block.End, Block.Begin, 4);   // Code Size
2689   OS.AddComment("Function section relative address");
2690   OS.EmitCOFFSecRel32(Block.Begin, /*Offset=*/0);         // Func Offset
2691   OS.AddComment("Function section index");
2692   OS.EmitCOFFSectionIndex(FI.Begin);                      // Func Symbol
2693   OS.AddComment("Lexical block name");
2694   emitNullTerminatedSymbolName(OS, Block.Name);           // Name
2695   endSymbolRecord(RecordEnd);
2696 
2697   // Emit variables local to this lexical block.
2698   emitLocalVariableList(FI, Block.Locals);
2699   emitGlobalVariableList(Block.Globals);
2700 
2701   // Emit lexical blocks contained within this block.
2702   emitLexicalBlockList(Block.Children, FI);
2703 
2704   // Close the lexical block scope.
2705   emitEndSymbolRecord(SymbolKind::S_END);
2706 }
2707 
2708 /// Convenience routine for collecting lexical block information for a list
2709 /// of lexical scopes.
2710 void CodeViewDebug::collectLexicalBlockInfo(
2711         SmallVectorImpl<LexicalScope *> &Scopes,
2712         SmallVectorImpl<LexicalBlock *> &Blocks,
2713         SmallVectorImpl<LocalVariable> &Locals,
2714         SmallVectorImpl<CVGlobalVariable> &Globals) {
2715   for (LexicalScope *Scope : Scopes)
2716     collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals);
2717 }
2718 
2719 /// Populate the lexical blocks and local variable lists of the parent with
2720 /// information about the specified lexical scope.
2721 void CodeViewDebug::collectLexicalBlockInfo(
2722     LexicalScope &Scope,
2723     SmallVectorImpl<LexicalBlock *> &ParentBlocks,
2724     SmallVectorImpl<LocalVariable> &ParentLocals,
2725     SmallVectorImpl<CVGlobalVariable> &ParentGlobals) {
2726   if (Scope.isAbstractScope())
2727     return;
2728 
2729   // Gather information about the lexical scope including local variables,
2730   // global variables, and address ranges.
2731   bool IgnoreScope = false;
2732   auto LI = ScopeVariables.find(&Scope);
2733   SmallVectorImpl<LocalVariable> *Locals =
2734       LI != ScopeVariables.end() ? &LI->second : nullptr;
2735   auto GI = ScopeGlobals.find(Scope.getScopeNode());
2736   SmallVectorImpl<CVGlobalVariable> *Globals =
2737       GI != ScopeGlobals.end() ? GI->second.get() : nullptr;
2738   const DILexicalBlock *DILB = dyn_cast<DILexicalBlock>(Scope.getScopeNode());
2739   const SmallVectorImpl<InsnRange> &Ranges = Scope.getRanges();
2740 
2741   // Ignore lexical scopes which do not contain variables.
2742   if (!Locals && !Globals)
2743     IgnoreScope = true;
2744 
2745   // Ignore lexical scopes which are not lexical blocks.
2746   if (!DILB)
2747     IgnoreScope = true;
2748 
2749   // Ignore scopes which have too many address ranges to represent in the
2750   // current CodeView format or do not have a valid address range.
2751   //
2752   // For lexical scopes with multiple address ranges you may be tempted to
2753   // construct a single range covering every instruction where the block is
2754   // live and everything in between.  Unfortunately, Visual Studio only
2755   // displays variables from the first matching lexical block scope.  If the
2756   // first lexical block contains exception handling code or cold code which
2757   // is moved to the bottom of the routine creating a single range covering
2758   // nearly the entire routine, then it will hide all other lexical blocks
2759   // and the variables they contain.
2760   if (Ranges.size() != 1 || !getLabelAfterInsn(Ranges.front().second))
2761     IgnoreScope = true;
2762 
2763   if (IgnoreScope) {
2764     // This scope can be safely ignored and eliminating it will reduce the
2765     // size of the debug information. Be sure to collect any variable and scope
2766     // information from the this scope or any of its children and collapse them
2767     // into the parent scope.
2768     if (Locals)
2769       ParentLocals.append(Locals->begin(), Locals->end());
2770     if (Globals)
2771       ParentGlobals.append(Globals->begin(), Globals->end());
2772     collectLexicalBlockInfo(Scope.getChildren(),
2773                             ParentBlocks,
2774                             ParentLocals,
2775                             ParentGlobals);
2776     return;
2777   }
2778 
2779   // Create a new CodeView lexical block for this lexical scope.  If we've
2780   // seen this DILexicalBlock before then the scope tree is malformed and
2781   // we can handle this gracefully by not processing it a second time.
2782   auto BlockInsertion = CurFn->LexicalBlocks.insert({DILB, LexicalBlock()});
2783   if (!BlockInsertion.second)
2784     return;
2785 
2786   // Create a lexical block containing the variables and collect the the
2787   // lexical block information for the children.
2788   const InsnRange &Range = Ranges.front();
2789   assert(Range.first && Range.second);
2790   LexicalBlock &Block = BlockInsertion.first->second;
2791   Block.Begin = getLabelBeforeInsn(Range.first);
2792   Block.End = getLabelAfterInsn(Range.second);
2793   assert(Block.Begin && "missing label for scope begin");
2794   assert(Block.End && "missing label for scope end");
2795   Block.Name = DILB->getName();
2796   if (Locals)
2797     Block.Locals = std::move(*Locals);
2798   if (Globals)
2799     Block.Globals = std::move(*Globals);
2800   ParentBlocks.push_back(&Block);
2801   collectLexicalBlockInfo(Scope.getChildren(),
2802                           Block.Children,
2803                           Block.Locals,
2804                           Block.Globals);
2805 }
2806 
2807 void CodeViewDebug::endFunctionImpl(const MachineFunction *MF) {
2808   const Function &GV = MF->getFunction();
2809   assert(FnDebugInfo.count(&GV));
2810   assert(CurFn == FnDebugInfo[&GV].get());
2811 
2812   collectVariableInfo(GV.getSubprogram());
2813 
2814   // Build the lexical block structure to emit for this routine.
2815   if (LexicalScope *CFS = LScopes.getCurrentFunctionScope())
2816     collectLexicalBlockInfo(*CFS,
2817                             CurFn->ChildBlocks,
2818                             CurFn->Locals,
2819                             CurFn->Globals);
2820 
2821   // Clear the scope and variable information from the map which will not be
2822   // valid after we have finished processing this routine.  This also prepares
2823   // the map for the subsequent routine.
2824   ScopeVariables.clear();
2825 
2826   // Don't emit anything if we don't have any line tables.
2827   // Thunks are compiler-generated and probably won't have source correlation.
2828   if (!CurFn->HaveLineInfo && !GV.getSubprogram()->isThunk()) {
2829     FnDebugInfo.erase(&GV);
2830     CurFn = nullptr;
2831     return;
2832   }
2833 
2834   CurFn->Annotations = MF->getCodeViewAnnotations();
2835   CurFn->HeapAllocSites = MF->getCodeViewHeapAllocSites();
2836 
2837   CurFn->End = Asm->getFunctionEnd();
2838 
2839   CurFn = nullptr;
2840 }
2841 
2842 void CodeViewDebug::beginInstruction(const MachineInstr *MI) {
2843   DebugHandlerBase::beginInstruction(MI);
2844 
2845   // Ignore DBG_VALUE and DBG_LABEL locations and function prologue.
2846   if (!Asm || !CurFn || MI->isDebugInstr() ||
2847       MI->getFlag(MachineInstr::FrameSetup))
2848     return;
2849 
2850   // If the first instruction of a new MBB has no location, find the first
2851   // instruction with a location and use that.
2852   DebugLoc DL = MI->getDebugLoc();
2853   if (!DL && MI->getParent() != PrevInstBB) {
2854     for (const auto &NextMI : *MI->getParent()) {
2855       if (NextMI.isDebugInstr())
2856         continue;
2857       DL = NextMI.getDebugLoc();
2858       if (DL)
2859         break;
2860     }
2861   }
2862   PrevInstBB = MI->getParent();
2863 
2864   // If we still don't have a debug location, don't record a location.
2865   if (!DL)
2866     return;
2867 
2868   maybeRecordLocation(DL, Asm->MF);
2869 }
2870 
2871 MCSymbol *CodeViewDebug::beginCVSubsection(DebugSubsectionKind Kind) {
2872   MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
2873            *EndLabel = MMI->getContext().createTempSymbol();
2874   OS.EmitIntValue(unsigned(Kind), 4);
2875   OS.AddComment("Subsection size");
2876   OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 4);
2877   OS.EmitLabel(BeginLabel);
2878   return EndLabel;
2879 }
2880 
2881 void CodeViewDebug::endCVSubsection(MCSymbol *EndLabel) {
2882   OS.EmitLabel(EndLabel);
2883   // Every subsection must be aligned to a 4-byte boundary.
2884   OS.EmitValueToAlignment(4);
2885 }
2886 
2887 static StringRef getSymbolName(SymbolKind SymKind) {
2888   for (const EnumEntry<SymbolKind> &EE : getSymbolTypeNames())
2889     if (EE.Value == SymKind)
2890       return EE.Name;
2891   return "";
2892 }
2893 
2894 MCSymbol *CodeViewDebug::beginSymbolRecord(SymbolKind SymKind) {
2895   MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
2896            *EndLabel = MMI->getContext().createTempSymbol();
2897   OS.AddComment("Record length");
2898   OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 2);
2899   OS.EmitLabel(BeginLabel);
2900   if (OS.isVerboseAsm())
2901     OS.AddComment("Record kind: " + getSymbolName(SymKind));
2902   OS.EmitIntValue(unsigned(SymKind), 2);
2903   return EndLabel;
2904 }
2905 
2906 void CodeViewDebug::endSymbolRecord(MCSymbol *SymEnd) {
2907   // MSVC does not pad out symbol records to four bytes, but LLVM does to avoid
2908   // an extra copy of every symbol record in LLD. This increases object file
2909   // size by less than 1% in the clang build, and is compatible with the Visual
2910   // C++ linker.
2911   OS.EmitValueToAlignment(4);
2912   OS.EmitLabel(SymEnd);
2913 }
2914 
2915 void CodeViewDebug::emitEndSymbolRecord(SymbolKind EndKind) {
2916   OS.AddComment("Record length");
2917   OS.EmitIntValue(2, 2);
2918   if (OS.isVerboseAsm())
2919     OS.AddComment("Record kind: " + getSymbolName(EndKind));
2920   OS.EmitIntValue(unsigned(EndKind), 2); // Record Kind
2921 }
2922 
2923 void CodeViewDebug::emitDebugInfoForUDTs(
2924     ArrayRef<std::pair<std::string, const DIType *>> UDTs) {
2925   for (const auto &UDT : UDTs) {
2926     const DIType *T = UDT.second;
2927     assert(shouldEmitUdt(T));
2928 
2929     MCSymbol *UDTRecordEnd = beginSymbolRecord(SymbolKind::S_UDT);
2930     OS.AddComment("Type");
2931     OS.EmitIntValue(getCompleteTypeIndex(T).getIndex(), 4);
2932     emitNullTerminatedSymbolName(OS, UDT.first);
2933     endSymbolRecord(UDTRecordEnd);
2934   }
2935 }
2936 
2937 void CodeViewDebug::collectGlobalVariableInfo() {
2938   DenseMap<const DIGlobalVariableExpression *, const GlobalVariable *>
2939       GlobalMap;
2940   for (const GlobalVariable &GV : MMI->getModule()->globals()) {
2941     SmallVector<DIGlobalVariableExpression *, 1> GVEs;
2942     GV.getDebugInfo(GVEs);
2943     for (const auto *GVE : GVEs)
2944       GlobalMap[GVE] = &GV;
2945   }
2946 
2947   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
2948   for (const MDNode *Node : CUs->operands()) {
2949     const auto *CU = cast<DICompileUnit>(Node);
2950     for (const auto *GVE : CU->getGlobalVariables()) {
2951       const auto *GV = GlobalMap.lookup(GVE);
2952       if (!GV || GV->isDeclarationForLinker())
2953         continue;
2954       const DIGlobalVariable *DIGV = GVE->getVariable();
2955       DIScope *Scope = DIGV->getScope();
2956       SmallVector<CVGlobalVariable, 1> *VariableList;
2957       if (Scope && isa<DILocalScope>(Scope)) {
2958         // Locate a global variable list for this scope, creating one if
2959         // necessary.
2960         auto Insertion = ScopeGlobals.insert(
2961             {Scope, std::unique_ptr<GlobalVariableList>()});
2962         if (Insertion.second)
2963           Insertion.first->second = llvm::make_unique<GlobalVariableList>();
2964         VariableList = Insertion.first->second.get();
2965       } else if (GV->hasComdat())
2966         // Emit this global variable into a COMDAT section.
2967         VariableList = &ComdatVariables;
2968       else
2969         // Emit this globla variable in a single global symbol section.
2970         VariableList = &GlobalVariables;
2971       CVGlobalVariable CVGV = {DIGV, GV};
2972       VariableList->emplace_back(std::move(CVGV));
2973     }
2974   }
2975 }
2976 
2977 void CodeViewDebug::emitDebugInfoForGlobals() {
2978   // First, emit all globals that are not in a comdat in a single symbol
2979   // substream. MSVC doesn't like it if the substream is empty, so only open
2980   // it if we have at least one global to emit.
2981   switchToDebugSectionForSymbol(nullptr);
2982   if (!GlobalVariables.empty()) {
2983     OS.AddComment("Symbol subsection for globals");
2984     MCSymbol *EndLabel = beginCVSubsection(DebugSubsectionKind::Symbols);
2985     emitGlobalVariableList(GlobalVariables);
2986     endCVSubsection(EndLabel);
2987   }
2988 
2989   // Second, emit each global that is in a comdat into its own .debug$S
2990   // section along with its own symbol substream.
2991   for (const CVGlobalVariable &CVGV : ComdatVariables) {
2992     MCSymbol *GVSym = Asm->getSymbol(CVGV.GV);
2993     OS.AddComment("Symbol subsection for " +
2994             Twine(GlobalValue::dropLLVMManglingEscape(CVGV.GV->getName())));
2995     switchToDebugSectionForSymbol(GVSym);
2996     MCSymbol *EndLabel = beginCVSubsection(DebugSubsectionKind::Symbols);
2997     // FIXME: emitDebugInfoForGlobal() doesn't handle DIExpressions.
2998     emitDebugInfoForGlobal(CVGV.DIGV, CVGV.GV, GVSym);
2999     endCVSubsection(EndLabel);
3000   }
3001 }
3002 
3003 void CodeViewDebug::emitDebugInfoForRetainedTypes() {
3004   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
3005   for (const MDNode *Node : CUs->operands()) {
3006     for (auto *Ty : cast<DICompileUnit>(Node)->getRetainedTypes()) {
3007       if (DIType *RT = dyn_cast<DIType>(Ty)) {
3008         getTypeIndex(RT);
3009         // FIXME: Add to global/local DTU list.
3010       }
3011     }
3012   }
3013 }
3014 
3015 // Emit each global variable in the specified array.
3016 void CodeViewDebug::emitGlobalVariableList(ArrayRef<CVGlobalVariable> Globals) {
3017   for (const CVGlobalVariable &CVGV : Globals) {
3018     MCSymbol *GVSym = Asm->getSymbol(CVGV.GV);
3019     // FIXME: emitDebugInfoForGlobal() doesn't handle DIExpressions.
3020     emitDebugInfoForGlobal(CVGV.DIGV, CVGV.GV, GVSym);
3021   }
3022 }
3023 
3024 void CodeViewDebug::emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
3025                                            const GlobalVariable *GV,
3026                                            MCSymbol *GVSym) {
3027   // DataSym record, see SymbolRecord.h for more info. Thread local data
3028   // happens to have the same format as global data.
3029   SymbolKind DataSym = GV->isThreadLocal()
3030                            ? (DIGV->isLocalToUnit() ? SymbolKind::S_LTHREAD32
3031                                                     : SymbolKind::S_GTHREAD32)
3032                            : (DIGV->isLocalToUnit() ? SymbolKind::S_LDATA32
3033                                                     : SymbolKind::S_GDATA32);
3034   MCSymbol *DataEnd = beginSymbolRecord(DataSym);
3035   OS.AddComment("Type");
3036   OS.EmitIntValue(getCompleteTypeIndex(DIGV->getType()).getIndex(), 4);
3037   OS.AddComment("DataOffset");
3038   OS.EmitCOFFSecRel32(GVSym, /*Offset=*/0);
3039   OS.AddComment("Segment");
3040   OS.EmitCOFFSectionIndex(GVSym);
3041   OS.AddComment("Name");
3042   const unsigned LengthOfDataRecord = 12;
3043   emitNullTerminatedSymbolName(OS, DIGV->getName(), LengthOfDataRecord);
3044   endSymbolRecord(DataEnd);
3045 }
3046