1 //===-- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp --*- C++ -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains support for writing Microsoft CodeView debug info.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "CodeViewDebug.h"
15 #include "llvm/ADT/TinyPtrVector.h"
16 #include "llvm/DebugInfo/CodeView/CodeView.h"
17 #include "llvm/DebugInfo/CodeView/FieldListRecordBuilder.h"
18 #include "llvm/DebugInfo/CodeView/Line.h"
19 #include "llvm/DebugInfo/CodeView/SymbolRecord.h"
20 #include "llvm/DebugInfo/CodeView/TypeDumper.h"
21 #include "llvm/DebugInfo/CodeView/TypeIndex.h"
22 #include "llvm/DebugInfo/CodeView/TypeRecord.h"
23 #include "llvm/MC/MCExpr.h"
24 #include "llvm/MC/MCSectionCOFF.h"
25 #include "llvm/MC/MCSymbol.h"
26 #include "llvm/Support/COFF.h"
27 #include "llvm/Support/ScopedPrinter.h"
28 #include "llvm/Target/TargetFrameLowering.h"
29 #include "llvm/Target/TargetRegisterInfo.h"
30 #include "llvm/Target/TargetSubtargetInfo.h"
31 
32 using namespace llvm;
33 using namespace llvm::codeview;
34 
35 CodeViewDebug::CodeViewDebug(AsmPrinter *AP)
36     : DebugHandlerBase(AP), OS(*Asm->OutStreamer), CurFn(nullptr) {
37   // If module doesn't have named metadata anchors or COFF debug section
38   // is not available, skip any debug info related stuff.
39   if (!MMI->getModule()->getNamedMetadata("llvm.dbg.cu") ||
40       !AP->getObjFileLowering().getCOFFDebugSymbolsSection()) {
41     Asm = nullptr;
42     return;
43   }
44 
45   // Tell MMI that we have debug info.
46   MMI->setDebugInfoAvailability(true);
47 }
48 
49 StringRef CodeViewDebug::getFullFilepath(const DIFile *File) {
50   std::string &Filepath = FileToFilepathMap[File];
51   if (!Filepath.empty())
52     return Filepath;
53 
54   StringRef Dir = File->getDirectory(), Filename = File->getFilename();
55 
56   // Clang emits directory and relative filename info into the IR, but CodeView
57   // operates on full paths.  We could change Clang to emit full paths too, but
58   // that would increase the IR size and probably not needed for other users.
59   // For now, just concatenate and canonicalize the path here.
60   if (Filename.find(':') == 1)
61     Filepath = Filename;
62   else
63     Filepath = (Dir + "\\" + Filename).str();
64 
65   // Canonicalize the path.  We have to do it textually because we may no longer
66   // have access the file in the filesystem.
67   // First, replace all slashes with backslashes.
68   std::replace(Filepath.begin(), Filepath.end(), '/', '\\');
69 
70   // Remove all "\.\" with "\".
71   size_t Cursor = 0;
72   while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos)
73     Filepath.erase(Cursor, 2);
74 
75   // Replace all "\XXX\..\" with "\".  Don't try too hard though as the original
76   // path should be well-formatted, e.g. start with a drive letter, etc.
77   Cursor = 0;
78   while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) {
79     // Something's wrong if the path starts with "\..\", abort.
80     if (Cursor == 0)
81       break;
82 
83     size_t PrevSlash = Filepath.rfind('\\', Cursor - 1);
84     if (PrevSlash == std::string::npos)
85       // Something's wrong, abort.
86       break;
87 
88     Filepath.erase(PrevSlash, Cursor + 3 - PrevSlash);
89     // The next ".." might be following the one we've just erased.
90     Cursor = PrevSlash;
91   }
92 
93   // Remove all duplicate backslashes.
94   Cursor = 0;
95   while ((Cursor = Filepath.find("\\\\", Cursor)) != std::string::npos)
96     Filepath.erase(Cursor, 1);
97 
98   return Filepath;
99 }
100 
101 unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) {
102   unsigned NextId = FileIdMap.size() + 1;
103   auto Insertion = FileIdMap.insert(std::make_pair(F, NextId));
104   if (Insertion.second) {
105     // We have to compute the full filepath and emit a .cv_file directive.
106     StringRef FullPath = getFullFilepath(F);
107     NextId = OS.EmitCVFileDirective(NextId, FullPath);
108     assert(NextId == FileIdMap.size() && ".cv_file directive failed");
109   }
110   return Insertion.first->second;
111 }
112 
113 CodeViewDebug::InlineSite &
114 CodeViewDebug::getInlineSite(const DILocation *InlinedAt,
115                              const DISubprogram *Inlinee) {
116   auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()});
117   InlineSite *Site = &SiteInsertion.first->second;
118   if (SiteInsertion.second) {
119     Site->SiteFuncId = NextFuncId++;
120     Site->Inlinee = Inlinee;
121     InlinedSubprograms.insert(Inlinee);
122     getFuncIdForSubprogram(Inlinee);
123   }
124   return *Site;
125 }
126 
127 static const DISubprogram *getQualifiedNameComponents(
128     const DIScope *Scope, SmallVectorImpl<StringRef> &QualifiedNameComponents) {
129   const DISubprogram *ClosestSubprogram = nullptr;
130   while (Scope != nullptr) {
131     if (ClosestSubprogram == nullptr)
132       ClosestSubprogram = dyn_cast<DISubprogram>(Scope);
133     StringRef ScopeName = Scope->getName();
134     if (!ScopeName.empty())
135       QualifiedNameComponents.push_back(ScopeName);
136     Scope = Scope->getScope().resolve();
137   }
138   return ClosestSubprogram;
139 }
140 
141 static std::string getQualifiedName(ArrayRef<StringRef> QualifiedNameComponents,
142                                     StringRef TypeName) {
143   std::string FullyQualifiedName;
144   for (StringRef QualifiedNameComponent : reverse(QualifiedNameComponents)) {
145     FullyQualifiedName.append(QualifiedNameComponent);
146     FullyQualifiedName.append("::");
147   }
148   FullyQualifiedName.append(TypeName);
149   return FullyQualifiedName;
150 }
151 
152 static std::string getFullyQualifiedName(const DIScope *Scope, StringRef Name) {
153   SmallVector<StringRef, 5> QualifiedNameComponents;
154   getQualifiedNameComponents(Scope, QualifiedNameComponents);
155   return getQualifiedName(QualifiedNameComponents, Name);
156 }
157 
158 TypeIndex CodeViewDebug::getScopeIndex(const DIScope *Scope) {
159   // No scope means global scope and that uses the zero index.
160   if (!Scope || isa<DIFile>(Scope))
161     return TypeIndex();
162 
163   assert(!isa<DIType>(Scope) && "shouldn't make a namespace scope for a type");
164 
165   // Check if we've already translated this scope.
166   auto I = TypeIndices.find({Scope, nullptr});
167   if (I != TypeIndices.end())
168     return I->second;
169 
170   // Build the fully qualified name of the scope.
171   std::string ScopeName =
172       getFullyQualifiedName(Scope->getScope().resolve(), Scope->getName());
173   TypeIndex TI =
174       TypeTable.writeStringId(StringIdRecord(TypeIndex(), ScopeName));
175   return recordTypeIndexForDINode(Scope, TI);
176 }
177 
178 TypeIndex CodeViewDebug::getFuncIdForSubprogram(const DISubprogram *SP) {
179   // It's possible to ask for the FuncId of a function which doesn't have a
180   // subprogram: inlining a function with debug info into a function with none.
181   if (!SP)
182     return TypeIndex::None();
183 
184   // Check if we've already translated this subprogram.
185   auto I = TypeIndices.find({SP, nullptr});
186   if (I != TypeIndices.end())
187     return I->second;
188 
189   // The display name includes function template arguments. Drop them to match
190   // MSVC.
191   StringRef DisplayName = SP->getDisplayName().split('<').first;
192 
193   const DIScope *Scope = SP->getScope().resolve();
194   TypeIndex TI;
195   if (const auto *Class = dyn_cast_or_null<DICompositeType>(Scope)) {
196     // If the scope is a DICompositeType, then this must be a method. Member
197     // function types take some special handling, and require access to the
198     // subprogram.
199     TypeIndex ClassType = getTypeIndex(Class);
200     MemberFuncIdRecord MFuncId(ClassType, getMemberFunctionType(SP, Class),
201                                DisplayName);
202     TI = TypeTable.writeMemberFuncId(MFuncId);
203   } else {
204     // Otherwise, this must be a free function.
205     TypeIndex ParentScope = getScopeIndex(Scope);
206     FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName);
207     TI = TypeTable.writeFuncId(FuncId);
208   }
209 
210   return recordTypeIndexForDINode(SP, TI);
211 }
212 
213 TypeIndex CodeViewDebug::getMemberFunctionType(const DISubprogram *SP,
214                                                const DICompositeType *Class) {
215   // Key the MemberFunctionRecord into the map as {SP, Class}. It won't collide
216   // with the MemberFuncIdRecord, which is keyed in as {SP, nullptr}.
217   auto I = TypeIndices.find({SP, nullptr});
218   if (I != TypeIndices.end())
219     return I->second;
220 
221   // FIXME: Get the ThisAdjustment off of SP when it is available.
222   TypeIndex TI =
223       lowerTypeMemberFunction(SP->getType(), Class, /*ThisAdjustment=*/0);
224 
225   return recordTypeIndexForDINode(SP, TI, Class);
226 }
227 
228 TypeIndex CodeViewDebug::recordTypeIndexForDINode(const DINode *Node, TypeIndex TI,
229                                              const DIType *ClassTy) {
230   auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI});
231   (void)InsertResult;
232   assert(InsertResult.second && "DINode was already assigned a type index");
233   return TI;
234 }
235 
236 unsigned CodeViewDebug::getPointerSizeInBytes() {
237   return MMI->getModule()->getDataLayout().getPointerSizeInBits() / 8;
238 }
239 
240 void CodeViewDebug::recordLocalVariable(LocalVariable &&Var,
241                                         const DILocation *InlinedAt) {
242   if (InlinedAt) {
243     // This variable was inlined. Associate it with the InlineSite.
244     const DISubprogram *Inlinee = Var.DIVar->getScope()->getSubprogram();
245     InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
246     Site.InlinedLocals.emplace_back(Var);
247   } else {
248     // This variable goes in the main ProcSym.
249     CurFn->Locals.emplace_back(Var);
250   }
251 }
252 
253 static void addLocIfNotPresent(SmallVectorImpl<const DILocation *> &Locs,
254                                const DILocation *Loc) {
255   auto B = Locs.begin(), E = Locs.end();
256   if (std::find(B, E, Loc) == E)
257     Locs.push_back(Loc);
258 }
259 
260 void CodeViewDebug::maybeRecordLocation(const DebugLoc &DL,
261                                         const MachineFunction *MF) {
262   // Skip this instruction if it has the same location as the previous one.
263   if (DL == CurFn->LastLoc)
264     return;
265 
266   const DIScope *Scope = DL.get()->getScope();
267   if (!Scope)
268     return;
269 
270   // Skip this line if it is longer than the maximum we can record.
271   LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
272   if (LI.getStartLine() != DL.getLine() || LI.isAlwaysStepInto() ||
273       LI.isNeverStepInto())
274     return;
275 
276   ColumnInfo CI(DL.getCol(), /*EndColumn=*/0);
277   if (CI.getStartColumn() != DL.getCol())
278     return;
279 
280   if (!CurFn->HaveLineInfo)
281     CurFn->HaveLineInfo = true;
282   unsigned FileId = 0;
283   if (CurFn->LastLoc.get() && CurFn->LastLoc->getFile() == DL->getFile())
284     FileId = CurFn->LastFileId;
285   else
286     FileId = CurFn->LastFileId = maybeRecordFile(DL->getFile());
287   CurFn->LastLoc = DL;
288 
289   unsigned FuncId = CurFn->FuncId;
290   if (const DILocation *SiteLoc = DL->getInlinedAt()) {
291     const DILocation *Loc = DL.get();
292 
293     // If this location was actually inlined from somewhere else, give it the ID
294     // of the inline call site.
295     FuncId =
296         getInlineSite(SiteLoc, Loc->getScope()->getSubprogram()).SiteFuncId;
297 
298     // Ensure we have links in the tree of inline call sites.
299     bool FirstLoc = true;
300     while ((SiteLoc = Loc->getInlinedAt())) {
301       InlineSite &Site =
302           getInlineSite(SiteLoc, Loc->getScope()->getSubprogram());
303       if (!FirstLoc)
304         addLocIfNotPresent(Site.ChildSites, Loc);
305       FirstLoc = false;
306       Loc = SiteLoc;
307     }
308     addLocIfNotPresent(CurFn->ChildSites, Loc);
309   }
310 
311   OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
312                         /*PrologueEnd=*/false,
313                         /*IsStmt=*/false, DL->getFilename());
314 }
315 
316 void CodeViewDebug::emitCodeViewMagicVersion() {
317   OS.EmitValueToAlignment(4);
318   OS.AddComment("Debug section magic");
319   OS.EmitIntValue(COFF::DEBUG_SECTION_MAGIC, 4);
320 }
321 
322 void CodeViewDebug::endModule() {
323   if (!Asm || !MMI->hasDebugInfo())
324     return;
325 
326   assert(Asm != nullptr);
327 
328   // The COFF .debug$S section consists of several subsections, each starting
329   // with a 4-byte control code (e.g. 0xF1, 0xF2, etc) and then a 4-byte length
330   // of the payload followed by the payload itself.  The subsections are 4-byte
331   // aligned.
332 
333   // Use the generic .debug$S section, and make a subsection for all the inlined
334   // subprograms.
335   switchToDebugSectionForSymbol(nullptr);
336   emitInlineeLinesSubsection();
337 
338   // Emit per-function debug information.
339   for (auto &P : FnDebugInfo)
340     if (!P.first->isDeclarationForLinker())
341       emitDebugInfoForFunction(P.first, P.second);
342 
343   // Emit global variable debug information.
344   setCurrentSubprogram(nullptr);
345   emitDebugInfoForGlobals();
346 
347   // Emit retained types.
348   emitDebugInfoForRetainedTypes();
349 
350   // Switch back to the generic .debug$S section after potentially processing
351   // comdat symbol sections.
352   switchToDebugSectionForSymbol(nullptr);
353 
354   // Emit UDT records for any types used by global variables.
355   if (!GlobalUDTs.empty()) {
356     MCSymbol *SymbolsEnd = beginCVSubsection(ModuleSubstreamKind::Symbols);
357     emitDebugInfoForUDTs(GlobalUDTs);
358     endCVSubsection(SymbolsEnd);
359   }
360 
361   // This subsection holds a file index to offset in string table table.
362   OS.AddComment("File index to string table offset subsection");
363   OS.EmitCVFileChecksumsDirective();
364 
365   // This subsection holds the string table.
366   OS.AddComment("String table");
367   OS.EmitCVStringTableDirective();
368 
369   // Emit type information last, so that any types we translate while emitting
370   // function info are included.
371   emitTypeInformation();
372 
373   clear();
374 }
375 
376 static void emitNullTerminatedSymbolName(MCStreamer &OS, StringRef S) {
377   // Microsoft's linker seems to have trouble with symbol names longer than
378   // 0xffd8 bytes.
379   S = S.substr(0, 0xffd8);
380   SmallString<32> NullTerminatedString(S);
381   NullTerminatedString.push_back('\0');
382   OS.EmitBytes(NullTerminatedString);
383 }
384 
385 void CodeViewDebug::emitTypeInformation() {
386   // Do nothing if we have no debug info or if no non-trivial types were emitted
387   // to TypeTable during codegen.
388   NamedMDNode *CU_Nodes = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
389   if (!CU_Nodes)
390     return;
391   if (TypeTable.empty())
392     return;
393 
394   // Start the .debug$T section with 0x4.
395   OS.SwitchSection(Asm->getObjFileLowering().getCOFFDebugTypesSection());
396   emitCodeViewMagicVersion();
397 
398   SmallString<8> CommentPrefix;
399   if (OS.isVerboseAsm()) {
400     CommentPrefix += '\t';
401     CommentPrefix += Asm->MAI->getCommentString();
402     CommentPrefix += ' ';
403   }
404 
405   CVTypeDumper CVTD(nullptr, /*PrintRecordBytes=*/false);
406   TypeTable.ForEachRecord(
407       [&](TypeIndex Index, StringRef Record) {
408         if (OS.isVerboseAsm()) {
409           // Emit a block comment describing the type record for readability.
410           SmallString<512> CommentBlock;
411           raw_svector_ostream CommentOS(CommentBlock);
412           ScopedPrinter SP(CommentOS);
413           SP.setPrefix(CommentPrefix);
414           CVTD.setPrinter(&SP);
415           Error EC = CVTD.dump({Record.bytes_begin(), Record.bytes_end()});
416           assert(!EC && "produced malformed type record");
417           consumeError(std::move(EC));
418           // emitRawComment will insert its own tab and comment string before
419           // the first line, so strip off our first one. It also prints its own
420           // newline.
421           OS.emitRawComment(
422               CommentOS.str().drop_front(CommentPrefix.size() - 1).rtrim());
423         }
424         OS.EmitBinaryData(Record);
425       });
426 }
427 
428 void CodeViewDebug::emitInlineeLinesSubsection() {
429   if (InlinedSubprograms.empty())
430     return;
431 
432   OS.AddComment("Inlinee lines subsection");
433   MCSymbol *InlineEnd = beginCVSubsection(ModuleSubstreamKind::InlineeLines);
434 
435   // We don't provide any extra file info.
436   // FIXME: Find out if debuggers use this info.
437   OS.AddComment("Inlinee lines signature");
438   OS.EmitIntValue(unsigned(InlineeLinesSignature::Normal), 4);
439 
440   for (const DISubprogram *SP : InlinedSubprograms) {
441     assert(TypeIndices.count({SP, nullptr}));
442     TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}];
443 
444     OS.AddBlankLine();
445     unsigned FileId = maybeRecordFile(SP->getFile());
446     OS.AddComment("Inlined function " + SP->getDisplayName() + " starts at " +
447                   SP->getFilename() + Twine(':') + Twine(SP->getLine()));
448     OS.AddBlankLine();
449     // The filechecksum table uses 8 byte entries for now, and file ids start at
450     // 1.
451     unsigned FileOffset = (FileId - 1) * 8;
452     OS.AddComment("Type index of inlined function");
453     OS.EmitIntValue(InlineeIdx.getIndex(), 4);
454     OS.AddComment("Offset into filechecksum table");
455     OS.EmitIntValue(FileOffset, 4);
456     OS.AddComment("Starting line number");
457     OS.EmitIntValue(SP->getLine(), 4);
458   }
459 
460   endCVSubsection(InlineEnd);
461 }
462 
463 void CodeViewDebug::collectInlineSiteChildren(
464     SmallVectorImpl<unsigned> &Children, const FunctionInfo &FI,
465     const InlineSite &Site) {
466   for (const DILocation *ChildSiteLoc : Site.ChildSites) {
467     auto I = FI.InlineSites.find(ChildSiteLoc);
468     const InlineSite &ChildSite = I->second;
469     Children.push_back(ChildSite.SiteFuncId);
470     collectInlineSiteChildren(Children, FI, ChildSite);
471   }
472 }
473 
474 void CodeViewDebug::emitInlinedCallSite(const FunctionInfo &FI,
475                                         const DILocation *InlinedAt,
476                                         const InlineSite &Site) {
477   MCSymbol *InlineBegin = MMI->getContext().createTempSymbol(),
478            *InlineEnd = MMI->getContext().createTempSymbol();
479 
480   assert(TypeIndices.count({Site.Inlinee, nullptr}));
481   TypeIndex InlineeIdx = TypeIndices[{Site.Inlinee, nullptr}];
482 
483   // SymbolRecord
484   OS.AddComment("Record length");
485   OS.emitAbsoluteSymbolDiff(InlineEnd, InlineBegin, 2);   // RecordLength
486   OS.EmitLabel(InlineBegin);
487   OS.AddComment("Record kind: S_INLINESITE");
488   OS.EmitIntValue(SymbolKind::S_INLINESITE, 2); // RecordKind
489 
490   OS.AddComment("PtrParent");
491   OS.EmitIntValue(0, 4);
492   OS.AddComment("PtrEnd");
493   OS.EmitIntValue(0, 4);
494   OS.AddComment("Inlinee type index");
495   OS.EmitIntValue(InlineeIdx.getIndex(), 4);
496 
497   unsigned FileId = maybeRecordFile(Site.Inlinee->getFile());
498   unsigned StartLineNum = Site.Inlinee->getLine();
499   SmallVector<unsigned, 3> SecondaryFuncIds;
500   collectInlineSiteChildren(SecondaryFuncIds, FI, Site);
501 
502   OS.EmitCVInlineLinetableDirective(Site.SiteFuncId, FileId, StartLineNum,
503                                     FI.Begin, FI.End, SecondaryFuncIds);
504 
505   OS.EmitLabel(InlineEnd);
506 
507   emitLocalVariableList(Site.InlinedLocals);
508 
509   // Recurse on child inlined call sites before closing the scope.
510   for (const DILocation *ChildSite : Site.ChildSites) {
511     auto I = FI.InlineSites.find(ChildSite);
512     assert(I != FI.InlineSites.end() &&
513            "child site not in function inline site map");
514     emitInlinedCallSite(FI, ChildSite, I->second);
515   }
516 
517   // Close the scope.
518   OS.AddComment("Record length");
519   OS.EmitIntValue(2, 2);                                  // RecordLength
520   OS.AddComment("Record kind: S_INLINESITE_END");
521   OS.EmitIntValue(SymbolKind::S_INLINESITE_END, 2); // RecordKind
522 }
523 
524 void CodeViewDebug::switchToDebugSectionForSymbol(const MCSymbol *GVSym) {
525   // If we have a symbol, it may be in a section that is COMDAT. If so, find the
526   // comdat key. A section may be comdat because of -ffunction-sections or
527   // because it is comdat in the IR.
528   MCSectionCOFF *GVSec =
529       GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr;
530   const MCSymbol *KeySym = GVSec ? GVSec->getCOMDATSymbol() : nullptr;
531 
532   MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
533       Asm->getObjFileLowering().getCOFFDebugSymbolsSection());
534   DebugSec = OS.getContext().getAssociativeCOFFSection(DebugSec, KeySym);
535 
536   OS.SwitchSection(DebugSec);
537 
538   // Emit the magic version number if this is the first time we've switched to
539   // this section.
540   if (ComdatDebugSections.insert(DebugSec).second)
541     emitCodeViewMagicVersion();
542 }
543 
544 void CodeViewDebug::emitDebugInfoForFunction(const Function *GV,
545                                              FunctionInfo &FI) {
546   // For each function there is a separate subsection
547   // which holds the PC to file:line table.
548   const MCSymbol *Fn = Asm->getSymbol(GV);
549   assert(Fn);
550 
551   // Switch to the to a comdat section, if appropriate.
552   switchToDebugSectionForSymbol(Fn);
553 
554   std::string FuncName;
555   auto *SP = GV->getSubprogram();
556   setCurrentSubprogram(SP);
557 
558   // If we have a display name, build the fully qualified name by walking the
559   // chain of scopes.
560   if (SP != nullptr && !SP->getDisplayName().empty())
561     FuncName =
562         getFullyQualifiedName(SP->getScope().resolve(), SP->getDisplayName());
563 
564   // If our DISubprogram name is empty, use the mangled name.
565   if (FuncName.empty())
566     FuncName = GlobalValue::getRealLinkageName(GV->getName());
567 
568   // Emit a symbol subsection, required by VS2012+ to find function boundaries.
569   OS.AddComment("Symbol subsection for " + Twine(FuncName));
570   MCSymbol *SymbolsEnd = beginCVSubsection(ModuleSubstreamKind::Symbols);
571   {
572     MCSymbol *ProcRecordBegin = MMI->getContext().createTempSymbol(),
573              *ProcRecordEnd = MMI->getContext().createTempSymbol();
574     OS.AddComment("Record length");
575     OS.emitAbsoluteSymbolDiff(ProcRecordEnd, ProcRecordBegin, 2);
576     OS.EmitLabel(ProcRecordBegin);
577 
578     OS.AddComment("Record kind: S_GPROC32_ID");
579     OS.EmitIntValue(unsigned(SymbolKind::S_GPROC32_ID), 2);
580 
581     // These fields are filled in by tools like CVPACK which run after the fact.
582     OS.AddComment("PtrParent");
583     OS.EmitIntValue(0, 4);
584     OS.AddComment("PtrEnd");
585     OS.EmitIntValue(0, 4);
586     OS.AddComment("PtrNext");
587     OS.EmitIntValue(0, 4);
588     // This is the important bit that tells the debugger where the function
589     // code is located and what's its size:
590     OS.AddComment("Code size");
591     OS.emitAbsoluteSymbolDiff(FI.End, Fn, 4);
592     OS.AddComment("Offset after prologue");
593     OS.EmitIntValue(0, 4);
594     OS.AddComment("Offset before epilogue");
595     OS.EmitIntValue(0, 4);
596     OS.AddComment("Function type index");
597     OS.EmitIntValue(getFuncIdForSubprogram(GV->getSubprogram()).getIndex(), 4);
598     OS.AddComment("Function section relative address");
599     OS.EmitCOFFSecRel32(Fn);
600     OS.AddComment("Function section index");
601     OS.EmitCOFFSectionIndex(Fn);
602     OS.AddComment("Flags");
603     OS.EmitIntValue(0, 1);
604     // Emit the function display name as a null-terminated string.
605     OS.AddComment("Function name");
606     // Truncate the name so we won't overflow the record length field.
607     emitNullTerminatedSymbolName(OS, FuncName);
608     OS.EmitLabel(ProcRecordEnd);
609 
610     emitLocalVariableList(FI.Locals);
611 
612     // Emit inlined call site information. Only emit functions inlined directly
613     // into the parent function. We'll emit the other sites recursively as part
614     // of their parent inline site.
615     for (const DILocation *InlinedAt : FI.ChildSites) {
616       auto I = FI.InlineSites.find(InlinedAt);
617       assert(I != FI.InlineSites.end() &&
618              "child site not in function inline site map");
619       emitInlinedCallSite(FI, InlinedAt, I->second);
620     }
621 
622     if (SP != nullptr)
623       emitDebugInfoForUDTs(LocalUDTs);
624 
625     // We're done with this function.
626     OS.AddComment("Record length");
627     OS.EmitIntValue(0x0002, 2);
628     OS.AddComment("Record kind: S_PROC_ID_END");
629     OS.EmitIntValue(unsigned(SymbolKind::S_PROC_ID_END), 2);
630   }
631   endCVSubsection(SymbolsEnd);
632 
633   // We have an assembler directive that takes care of the whole line table.
634   OS.EmitCVLinetableDirective(FI.FuncId, Fn, FI.End);
635 }
636 
637 CodeViewDebug::LocalVarDefRange
638 CodeViewDebug::createDefRangeMem(uint16_t CVRegister, int Offset) {
639   LocalVarDefRange DR;
640   DR.InMemory = -1;
641   DR.DataOffset = Offset;
642   assert(DR.DataOffset == Offset && "truncation");
643   DR.StructOffset = 0;
644   DR.CVRegister = CVRegister;
645   return DR;
646 }
647 
648 CodeViewDebug::LocalVarDefRange
649 CodeViewDebug::createDefRangeReg(uint16_t CVRegister) {
650   LocalVarDefRange DR;
651   DR.InMemory = 0;
652   DR.DataOffset = 0;
653   DR.StructOffset = 0;
654   DR.CVRegister = CVRegister;
655   return DR;
656 }
657 
658 void CodeViewDebug::collectVariableInfoFromMMITable(
659     DenseSet<InlinedVariable> &Processed) {
660   const TargetSubtargetInfo &TSI = Asm->MF->getSubtarget();
661   const TargetFrameLowering *TFI = TSI.getFrameLowering();
662   const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
663 
664   for (const MachineModuleInfo::VariableDbgInfo &VI :
665        MMI->getVariableDbgInfo()) {
666     if (!VI.Var)
667       continue;
668     assert(VI.Var->isValidLocationForIntrinsic(VI.Loc) &&
669            "Expected inlined-at fields to agree");
670 
671     Processed.insert(InlinedVariable(VI.Var, VI.Loc->getInlinedAt()));
672     LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc);
673 
674     // If variable scope is not found then skip this variable.
675     if (!Scope)
676       continue;
677 
678     // Get the frame register used and the offset.
679     unsigned FrameReg = 0;
680     int FrameOffset = TFI->getFrameIndexReference(*Asm->MF, VI.Slot, FrameReg);
681     uint16_t CVReg = TRI->getCodeViewRegNum(FrameReg);
682 
683     // Calculate the label ranges.
684     LocalVarDefRange DefRange = createDefRangeMem(CVReg, FrameOffset);
685     for (const InsnRange &Range : Scope->getRanges()) {
686       const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
687       const MCSymbol *End = getLabelAfterInsn(Range.second);
688       End = End ? End : Asm->getFunctionEnd();
689       DefRange.Ranges.emplace_back(Begin, End);
690     }
691 
692     LocalVariable Var;
693     Var.DIVar = VI.Var;
694     Var.DefRanges.emplace_back(std::move(DefRange));
695     recordLocalVariable(std::move(Var), VI.Loc->getInlinedAt());
696   }
697 }
698 
699 void CodeViewDebug::collectVariableInfo(const DISubprogram *SP) {
700   DenseSet<InlinedVariable> Processed;
701   // Grab the variable info that was squirreled away in the MMI side-table.
702   collectVariableInfoFromMMITable(Processed);
703 
704   const TargetRegisterInfo *TRI = Asm->MF->getSubtarget().getRegisterInfo();
705 
706   for (const auto &I : DbgValues) {
707     InlinedVariable IV = I.first;
708     if (Processed.count(IV))
709       continue;
710     const DILocalVariable *DIVar = IV.first;
711     const DILocation *InlinedAt = IV.second;
712 
713     // Instruction ranges, specifying where IV is accessible.
714     const auto &Ranges = I.second;
715 
716     LexicalScope *Scope = nullptr;
717     if (InlinedAt)
718       Scope = LScopes.findInlinedScope(DIVar->getScope(), InlinedAt);
719     else
720       Scope = LScopes.findLexicalScope(DIVar->getScope());
721     // If variable scope is not found then skip this variable.
722     if (!Scope)
723       continue;
724 
725     LocalVariable Var;
726     Var.DIVar = DIVar;
727 
728     // Calculate the definition ranges.
729     for (auto I = Ranges.begin(), E = Ranges.end(); I != E; ++I) {
730       const InsnRange &Range = *I;
731       const MachineInstr *DVInst = Range.first;
732       assert(DVInst->isDebugValue() && "Invalid History entry");
733       const DIExpression *DIExpr = DVInst->getDebugExpression();
734 
735       // Bail if there is a complex DWARF expression for now.
736       if (DIExpr && DIExpr->getNumElements() > 0)
737         continue;
738 
739       // Bail if operand 0 is not a valid register. This means the variable is a
740       // simple constant, or is described by a complex expression.
741       // FIXME: Find a way to represent constant variables, since they are
742       // relatively common.
743       unsigned Reg =
744           DVInst->getOperand(0).isReg() ? DVInst->getOperand(0).getReg() : 0;
745       if (Reg == 0)
746         continue;
747 
748       // Handle the two cases we can handle: indirect in memory and in register.
749       bool IsIndirect = DVInst->getOperand(1).isImm();
750       unsigned CVReg = TRI->getCodeViewRegNum(DVInst->getOperand(0).getReg());
751       {
752         LocalVarDefRange DefRange;
753         if (IsIndirect) {
754           int64_t Offset = DVInst->getOperand(1).getImm();
755           DefRange = createDefRangeMem(CVReg, Offset);
756         } else {
757           DefRange = createDefRangeReg(CVReg);
758         }
759         if (Var.DefRanges.empty() ||
760             Var.DefRanges.back().isDifferentLocation(DefRange)) {
761           Var.DefRanges.emplace_back(std::move(DefRange));
762         }
763       }
764 
765       // Compute the label range.
766       const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
767       const MCSymbol *End = getLabelAfterInsn(Range.second);
768       if (!End) {
769         if (std::next(I) != E)
770           End = getLabelBeforeInsn(std::next(I)->first);
771         else
772           End = Asm->getFunctionEnd();
773       }
774 
775       // If the last range end is our begin, just extend the last range.
776       // Otherwise make a new range.
777       SmallVectorImpl<std::pair<const MCSymbol *, const MCSymbol *>> &Ranges =
778           Var.DefRanges.back().Ranges;
779       if (!Ranges.empty() && Ranges.back().second == Begin)
780         Ranges.back().second = End;
781       else
782         Ranges.emplace_back(Begin, End);
783 
784       // FIXME: Do more range combining.
785     }
786 
787     recordLocalVariable(std::move(Var), InlinedAt);
788   }
789 }
790 
791 void CodeViewDebug::beginFunction(const MachineFunction *MF) {
792   assert(!CurFn && "Can't process two functions at once!");
793 
794   if (!Asm || !MMI->hasDebugInfo())
795     return;
796 
797   DebugHandlerBase::beginFunction(MF);
798 
799   const Function *GV = MF->getFunction();
800   assert(FnDebugInfo.count(GV) == false);
801   CurFn = &FnDebugInfo[GV];
802   CurFn->FuncId = NextFuncId++;
803   CurFn->Begin = Asm->getFunctionBegin();
804 
805   // Find the end of the function prolog.  First known non-DBG_VALUE and
806   // non-frame setup location marks the beginning of the function body.
807   // FIXME: is there a simpler a way to do this? Can we just search
808   // for the first instruction of the function, not the last of the prolog?
809   DebugLoc PrologEndLoc;
810   bool EmptyPrologue = true;
811   for (const auto &MBB : *MF) {
812     for (const auto &MI : MBB) {
813       if (!MI.isDebugValue() && !MI.getFlag(MachineInstr::FrameSetup) &&
814           MI.getDebugLoc()) {
815         PrologEndLoc = MI.getDebugLoc();
816         break;
817       } else if (!MI.isDebugValue()) {
818         EmptyPrologue = false;
819       }
820     }
821   }
822 
823   // Record beginning of function if we have a non-empty prologue.
824   if (PrologEndLoc && !EmptyPrologue) {
825     DebugLoc FnStartDL = PrologEndLoc.getFnDebugLoc();
826     maybeRecordLocation(FnStartDL, MF);
827   }
828 }
829 
830 void CodeViewDebug::addToUDTs(const DIType *Ty, TypeIndex TI) {
831   SmallVector<StringRef, 5> QualifiedNameComponents;
832   const DISubprogram *ClosestSubprogram = getQualifiedNameComponents(
833       Ty->getScope().resolve(), QualifiedNameComponents);
834 
835   std::string FullyQualifiedName =
836       getQualifiedName(QualifiedNameComponents, Ty->getName());
837 
838   if (ClosestSubprogram == nullptr)
839     GlobalUDTs.emplace_back(std::move(FullyQualifiedName), TI);
840   else if (ClosestSubprogram == CurrentSubprogram)
841     LocalUDTs.emplace_back(std::move(FullyQualifiedName), TI);
842 
843   // TODO: What if the ClosestSubprogram is neither null or the current
844   // subprogram?  Currently, the UDT just gets dropped on the floor.
845   //
846   // The current behavior is not desirable.  To get maximal fidelity, we would
847   // need to perform all type translation before beginning emission of .debug$S
848   // and then make LocalUDTs a member of FunctionInfo
849 }
850 
851 TypeIndex CodeViewDebug::lowerType(const DIType *Ty, const DIType *ClassTy) {
852   // Generic dispatch for lowering an unknown type.
853   switch (Ty->getTag()) {
854   case dwarf::DW_TAG_array_type:
855     return lowerTypeArray(cast<DICompositeType>(Ty));
856   case dwarf::DW_TAG_typedef:
857     return lowerTypeAlias(cast<DIDerivedType>(Ty));
858   case dwarf::DW_TAG_base_type:
859     return lowerTypeBasic(cast<DIBasicType>(Ty));
860   case dwarf::DW_TAG_pointer_type:
861   case dwarf::DW_TAG_reference_type:
862   case dwarf::DW_TAG_rvalue_reference_type:
863     return lowerTypePointer(cast<DIDerivedType>(Ty));
864   case dwarf::DW_TAG_ptr_to_member_type:
865     return lowerTypeMemberPointer(cast<DIDerivedType>(Ty));
866   case dwarf::DW_TAG_const_type:
867   case dwarf::DW_TAG_volatile_type:
868     return lowerTypeModifier(cast<DIDerivedType>(Ty));
869   case dwarf::DW_TAG_subroutine_type:
870     if (ClassTy) {
871       // The member function type of a member function pointer has no
872       // ThisAdjustment.
873       return lowerTypeMemberFunction(cast<DISubroutineType>(Ty), ClassTy,
874                                      /*ThisAdjustment=*/0);
875     }
876     return lowerTypeFunction(cast<DISubroutineType>(Ty));
877   case dwarf::DW_TAG_enumeration_type:
878     return lowerTypeEnum(cast<DICompositeType>(Ty));
879   case dwarf::DW_TAG_class_type:
880   case dwarf::DW_TAG_structure_type:
881     return lowerTypeClass(cast<DICompositeType>(Ty));
882   case dwarf::DW_TAG_union_type:
883     return lowerTypeUnion(cast<DICompositeType>(Ty));
884   default:
885     // Use the null type index.
886     return TypeIndex();
887   }
888 }
889 
890 TypeIndex CodeViewDebug::lowerTypeAlias(const DIDerivedType *Ty) {
891   DITypeRef UnderlyingTypeRef = Ty->getBaseType();
892   TypeIndex UnderlyingTypeIndex = getTypeIndex(UnderlyingTypeRef);
893   StringRef TypeName = Ty->getName();
894 
895   addToUDTs(Ty, UnderlyingTypeIndex);
896 
897   if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::Int32Long) &&
898       TypeName == "HRESULT")
899     return TypeIndex(SimpleTypeKind::HResult);
900   if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::UInt16Short) &&
901       TypeName == "wchar_t")
902     return TypeIndex(SimpleTypeKind::WideCharacter);
903 
904   return UnderlyingTypeIndex;
905 }
906 
907 TypeIndex CodeViewDebug::lowerTypeArray(const DICompositeType *Ty) {
908   DITypeRef ElementTypeRef = Ty->getBaseType();
909   TypeIndex ElementTypeIndex = getTypeIndex(ElementTypeRef);
910   // IndexType is size_t, which depends on the bitness of the target.
911   TypeIndex IndexType = Asm->MAI->getPointerSize() == 8
912                             ? TypeIndex(SimpleTypeKind::UInt64Quad)
913                             : TypeIndex(SimpleTypeKind::UInt32Long);
914   assert(ElementTypeRef.resolve());
915   uint64_t ElementSize = ElementTypeRef.resolve()->getSizeInBits() / 8;
916 
917   bool UndefinedSubrange = false;
918 
919   // FIXME:
920   // There is a bug in the front-end where an array of a structure, which was
921   // declared as incomplete structure first, ends up not getting a size assigned
922   // to it. (PR28303)
923   // Example:
924   //   struct A(*p)[3];
925   //   struct A { int f; } a[3];
926   //
927   // This needs to be fixed in the front-end, but in the meantime we don't want
928   // to trigger an assertion because of this.
929   if (Ty->getSizeInBits() == 0) {
930     UndefinedSubrange = true;
931   }
932 
933   // Add subranges to array type.
934   DINodeArray Elements = Ty->getElements();
935   for (int i = Elements.size() - 1; i >= 0; --i) {
936     const DINode *Element = Elements[i];
937     assert(Element->getTag() == dwarf::DW_TAG_subrange_type);
938 
939     const DISubrange *Subrange = cast<DISubrange>(Element);
940     assert(Subrange->getLowerBound() == 0 &&
941            "codeview doesn't support subranges with lower bounds");
942     int64_t Count = Subrange->getCount();
943 
944     // Variable Length Array (VLA) has Count equal to '-1'.
945     // Replace with Count '1', assume it is the minimum VLA length.
946     // FIXME: Make front-end support VLA subrange and emit LF_DIMVARLU.
947     if (Count == -1) {
948       Count = 1;
949       UndefinedSubrange = true;
950     }
951 
952     StringRef Name = (i == 0) ? Ty->getName() : "";
953     // Update the element size and element type index for subsequent subranges.
954     ElementSize *= Count;
955     ElementTypeIndex = TypeTable.writeArray(
956         ArrayRecord(ElementTypeIndex, IndexType, ElementSize, Name));
957   }
958 
959   (void)UndefinedSubrange;
960   assert(UndefinedSubrange || ElementSize == (Ty->getSizeInBits() / 8));
961 
962   return ElementTypeIndex;
963 }
964 
965 TypeIndex CodeViewDebug::lowerTypeBasic(const DIBasicType *Ty) {
966   TypeIndex Index;
967   dwarf::TypeKind Kind;
968   uint32_t ByteSize;
969 
970   Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
971   ByteSize = Ty->getSizeInBits() / 8;
972 
973   SimpleTypeKind STK = SimpleTypeKind::None;
974   switch (Kind) {
975   case dwarf::DW_ATE_address:
976     // FIXME: Translate
977     break;
978   case dwarf::DW_ATE_boolean:
979     switch (ByteSize) {
980     case 1:  STK = SimpleTypeKind::Boolean8;   break;
981     case 2:  STK = SimpleTypeKind::Boolean16;  break;
982     case 4:  STK = SimpleTypeKind::Boolean32;  break;
983     case 8:  STK = SimpleTypeKind::Boolean64;  break;
984     case 16: STK = SimpleTypeKind::Boolean128; break;
985     }
986     break;
987   case dwarf::DW_ATE_complex_float:
988     switch (ByteSize) {
989     case 2:  STK = SimpleTypeKind::Complex16;  break;
990     case 4:  STK = SimpleTypeKind::Complex32;  break;
991     case 8:  STK = SimpleTypeKind::Complex64;  break;
992     case 10: STK = SimpleTypeKind::Complex80;  break;
993     case 16: STK = SimpleTypeKind::Complex128; break;
994     }
995     break;
996   case dwarf::DW_ATE_float:
997     switch (ByteSize) {
998     case 2:  STK = SimpleTypeKind::Float16;  break;
999     case 4:  STK = SimpleTypeKind::Float32;  break;
1000     case 6:  STK = SimpleTypeKind::Float48;  break;
1001     case 8:  STK = SimpleTypeKind::Float64;  break;
1002     case 10: STK = SimpleTypeKind::Float80;  break;
1003     case 16: STK = SimpleTypeKind::Float128; break;
1004     }
1005     break;
1006   case dwarf::DW_ATE_signed:
1007     switch (ByteSize) {
1008     case 1:  STK = SimpleTypeKind::SByte;      break;
1009     case 2:  STK = SimpleTypeKind::Int16Short; break;
1010     case 4:  STK = SimpleTypeKind::Int32;      break;
1011     case 8:  STK = SimpleTypeKind::Int64Quad;  break;
1012     case 16: STK = SimpleTypeKind::Int128Oct;  break;
1013     }
1014     break;
1015   case dwarf::DW_ATE_unsigned:
1016     switch (ByteSize) {
1017     case 1:  STK = SimpleTypeKind::Byte;        break;
1018     case 2:  STK = SimpleTypeKind::UInt16Short; break;
1019     case 4:  STK = SimpleTypeKind::UInt32;      break;
1020     case 8:  STK = SimpleTypeKind::UInt64Quad;  break;
1021     case 16: STK = SimpleTypeKind::UInt128Oct;  break;
1022     }
1023     break;
1024   case dwarf::DW_ATE_UTF:
1025     switch (ByteSize) {
1026     case 2: STK = SimpleTypeKind::Character16; break;
1027     case 4: STK = SimpleTypeKind::Character32; break;
1028     }
1029     break;
1030   case dwarf::DW_ATE_signed_char:
1031     if (ByteSize == 1)
1032       STK = SimpleTypeKind::SignedCharacter;
1033     break;
1034   case dwarf::DW_ATE_unsigned_char:
1035     if (ByteSize == 1)
1036       STK = SimpleTypeKind::UnsignedCharacter;
1037     break;
1038   default:
1039     break;
1040   }
1041 
1042   // Apply some fixups based on the source-level type name.
1043   if (STK == SimpleTypeKind::Int32 && Ty->getName() == "long int")
1044     STK = SimpleTypeKind::Int32Long;
1045   if (STK == SimpleTypeKind::UInt32 && Ty->getName() == "long unsigned int")
1046     STK = SimpleTypeKind::UInt32Long;
1047   if (STK == SimpleTypeKind::UInt16Short &&
1048       (Ty->getName() == "wchar_t" || Ty->getName() == "__wchar_t"))
1049     STK = SimpleTypeKind::WideCharacter;
1050   if ((STK == SimpleTypeKind::SignedCharacter ||
1051        STK == SimpleTypeKind::UnsignedCharacter) &&
1052       Ty->getName() == "char")
1053     STK = SimpleTypeKind::NarrowCharacter;
1054 
1055   return TypeIndex(STK);
1056 }
1057 
1058 TypeIndex CodeViewDebug::lowerTypePointer(const DIDerivedType *Ty) {
1059   TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType());
1060 
1061   // While processing the type being pointed to it is possible we already
1062   // created this pointer type.  If so, we check here and return the existing
1063   // pointer type.
1064   auto I = TypeIndices.find({Ty, nullptr});
1065   if (I != TypeIndices.end())
1066     return I->second;
1067 
1068   // Pointers to simple types can use SimpleTypeMode, rather than having a
1069   // dedicated pointer type record.
1070   if (PointeeTI.isSimple() &&
1071       PointeeTI.getSimpleMode() == SimpleTypeMode::Direct &&
1072       Ty->getTag() == dwarf::DW_TAG_pointer_type) {
1073     SimpleTypeMode Mode = Ty->getSizeInBits() == 64
1074                               ? SimpleTypeMode::NearPointer64
1075                               : SimpleTypeMode::NearPointer32;
1076     return TypeIndex(PointeeTI.getSimpleKind(), Mode);
1077   }
1078 
1079   PointerKind PK =
1080       Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32;
1081   PointerMode PM = PointerMode::Pointer;
1082   switch (Ty->getTag()) {
1083   default: llvm_unreachable("not a pointer tag type");
1084   case dwarf::DW_TAG_pointer_type:
1085     PM = PointerMode::Pointer;
1086     break;
1087   case dwarf::DW_TAG_reference_type:
1088     PM = PointerMode::LValueReference;
1089     break;
1090   case dwarf::DW_TAG_rvalue_reference_type:
1091     PM = PointerMode::RValueReference;
1092     break;
1093   }
1094   // FIXME: MSVC folds qualifiers into PointerOptions in the context of a method
1095   // 'this' pointer, but not normal contexts. Figure out what we're supposed to
1096   // do.
1097   PointerOptions PO = PointerOptions::None;
1098   PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8);
1099   return TypeTable.writePointer(PR);
1100 }
1101 
1102 static PointerToMemberRepresentation
1103 translatePtrToMemberRep(unsigned SizeInBytes, bool IsPMF, unsigned Flags) {
1104   // SizeInBytes being zero generally implies that the member pointer type was
1105   // incomplete, which can happen if it is part of a function prototype. In this
1106   // case, use the unknown model instead of the general model.
1107   if (IsPMF) {
1108     switch (Flags & DINode::FlagPtrToMemberRep) {
1109     case 0:
1110       return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1111                               : PointerToMemberRepresentation::GeneralFunction;
1112     case DINode::FlagSingleInheritance:
1113       return PointerToMemberRepresentation::SingleInheritanceFunction;
1114     case DINode::FlagMultipleInheritance:
1115       return PointerToMemberRepresentation::MultipleInheritanceFunction;
1116     case DINode::FlagVirtualInheritance:
1117       return PointerToMemberRepresentation::VirtualInheritanceFunction;
1118     }
1119   } else {
1120     switch (Flags & DINode::FlagPtrToMemberRep) {
1121     case 0:
1122       return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1123                               : PointerToMemberRepresentation::GeneralData;
1124     case DINode::FlagSingleInheritance:
1125       return PointerToMemberRepresentation::SingleInheritanceData;
1126     case DINode::FlagMultipleInheritance:
1127       return PointerToMemberRepresentation::MultipleInheritanceData;
1128     case DINode::FlagVirtualInheritance:
1129       return PointerToMemberRepresentation::VirtualInheritanceData;
1130     }
1131   }
1132   llvm_unreachable("invalid ptr to member representation");
1133 }
1134 
1135 TypeIndex CodeViewDebug::lowerTypeMemberPointer(const DIDerivedType *Ty) {
1136   assert(Ty->getTag() == dwarf::DW_TAG_ptr_to_member_type);
1137   TypeIndex ClassTI = getTypeIndex(Ty->getClassType());
1138   TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType(), Ty->getClassType());
1139   PointerKind PK = Asm->MAI->getPointerSize() == 8 ? PointerKind::Near64
1140                                                    : PointerKind::Near32;
1141   bool IsPMF = isa<DISubroutineType>(Ty->getBaseType());
1142   PointerMode PM = IsPMF ? PointerMode::PointerToMemberFunction
1143                          : PointerMode::PointerToDataMember;
1144   PointerOptions PO = PointerOptions::None; // FIXME
1145   assert(Ty->getSizeInBits() / 8 <= 0xff && "pointer size too big");
1146   uint8_t SizeInBytes = Ty->getSizeInBits() / 8;
1147   MemberPointerInfo MPI(
1148       ClassTI, translatePtrToMemberRep(SizeInBytes, IsPMF, Ty->getFlags()));
1149   PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI);
1150   return TypeTable.writePointer(PR);
1151 }
1152 
1153 /// Given a DWARF calling convention, get the CodeView equivalent. If we don't
1154 /// have a translation, use the NearC convention.
1155 static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) {
1156   switch (DwarfCC) {
1157   case dwarf::DW_CC_normal:             return CallingConvention::NearC;
1158   case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast;
1159   case dwarf::DW_CC_BORLAND_thiscall:   return CallingConvention::ThisCall;
1160   case dwarf::DW_CC_BORLAND_stdcall:    return CallingConvention::NearStdCall;
1161   case dwarf::DW_CC_BORLAND_pascal:     return CallingConvention::NearPascal;
1162   case dwarf::DW_CC_LLVM_vectorcall:    return CallingConvention::NearVector;
1163   }
1164   return CallingConvention::NearC;
1165 }
1166 
1167 TypeIndex CodeViewDebug::lowerTypeModifier(const DIDerivedType *Ty) {
1168   ModifierOptions Mods = ModifierOptions::None;
1169   bool IsModifier = true;
1170   const DIType *BaseTy = Ty;
1171   while (IsModifier && BaseTy) {
1172     // FIXME: Need to add DWARF tag for __unaligned.
1173     switch (BaseTy->getTag()) {
1174     case dwarf::DW_TAG_const_type:
1175       Mods |= ModifierOptions::Const;
1176       break;
1177     case dwarf::DW_TAG_volatile_type:
1178       Mods |= ModifierOptions::Volatile;
1179       break;
1180     default:
1181       IsModifier = false;
1182       break;
1183     }
1184     if (IsModifier)
1185       BaseTy = cast<DIDerivedType>(BaseTy)->getBaseType().resolve();
1186   }
1187   TypeIndex ModifiedTI = getTypeIndex(BaseTy);
1188 
1189   // While processing the type being pointed to, it is possible we already
1190   // created this modifier type.  If so, we check here and return the existing
1191   // modifier type.
1192   auto I = TypeIndices.find({Ty, nullptr});
1193   if (I != TypeIndices.end())
1194     return I->second;
1195 
1196   ModifierRecord MR(ModifiedTI, Mods);
1197   return TypeTable.writeModifier(MR);
1198 }
1199 
1200 TypeIndex CodeViewDebug::lowerTypeFunction(const DISubroutineType *Ty) {
1201   SmallVector<TypeIndex, 8> ReturnAndArgTypeIndices;
1202   for (DITypeRef ArgTypeRef : Ty->getTypeArray())
1203     ReturnAndArgTypeIndices.push_back(getTypeIndex(ArgTypeRef));
1204 
1205   TypeIndex ReturnTypeIndex = TypeIndex::Void();
1206   ArrayRef<TypeIndex> ArgTypeIndices = None;
1207   if (!ReturnAndArgTypeIndices.empty()) {
1208     auto ReturnAndArgTypesRef = makeArrayRef(ReturnAndArgTypeIndices);
1209     ReturnTypeIndex = ReturnAndArgTypesRef.front();
1210     ArgTypeIndices = ReturnAndArgTypesRef.drop_front();
1211   }
1212 
1213   ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
1214   TypeIndex ArgListIndex = TypeTable.writeArgList(ArgListRec);
1215 
1216   CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1217 
1218   ProcedureRecord Procedure(ReturnTypeIndex, CC, FunctionOptions::None,
1219                             ArgTypeIndices.size(), ArgListIndex);
1220   return TypeTable.writeProcedure(Procedure);
1221 }
1222 
1223 TypeIndex CodeViewDebug::lowerTypeMemberFunction(const DISubroutineType *Ty,
1224                                                  const DIType *ClassTy,
1225                                                  int ThisAdjustment) {
1226   // Lower the containing class type.
1227   TypeIndex ClassType = getTypeIndex(ClassTy);
1228 
1229   SmallVector<TypeIndex, 8> ReturnAndArgTypeIndices;
1230   for (DITypeRef ArgTypeRef : Ty->getTypeArray())
1231     ReturnAndArgTypeIndices.push_back(getTypeIndex(ArgTypeRef));
1232 
1233   TypeIndex ReturnTypeIndex = TypeIndex::Void();
1234   ArrayRef<TypeIndex> ArgTypeIndices = None;
1235   if (!ReturnAndArgTypeIndices.empty()) {
1236     auto ReturnAndArgTypesRef = makeArrayRef(ReturnAndArgTypeIndices);
1237     ReturnTypeIndex = ReturnAndArgTypesRef.front();
1238     ArgTypeIndices = ReturnAndArgTypesRef.drop_front();
1239   }
1240   TypeIndex ThisTypeIndex = TypeIndex::Void();
1241   if (!ArgTypeIndices.empty()) {
1242     ThisTypeIndex = ArgTypeIndices.front();
1243     ArgTypeIndices = ArgTypeIndices.drop_front();
1244   }
1245 
1246   ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
1247   TypeIndex ArgListIndex = TypeTable.writeArgList(ArgListRec);
1248 
1249   CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1250 
1251   // TODO: Need to use the correct values for:
1252   //       FunctionOptions
1253   //       ThisPointerAdjustment.
1254   TypeIndex TI = TypeTable.writeMemberFunction(MemberFunctionRecord(
1255       ReturnTypeIndex, ClassType, ThisTypeIndex, CC, FunctionOptions::None,
1256       ArgTypeIndices.size(), ArgListIndex, ThisAdjustment));
1257 
1258   return TI;
1259 }
1260 
1261 static MemberAccess translateAccessFlags(unsigned RecordTag, unsigned Flags) {
1262   switch (Flags & DINode::FlagAccessibility) {
1263   case DINode::FlagPrivate:   return MemberAccess::Private;
1264   case DINode::FlagPublic:    return MemberAccess::Public;
1265   case DINode::FlagProtected: return MemberAccess::Protected;
1266   case 0:
1267     // If there was no explicit access control, provide the default for the tag.
1268     return RecordTag == dwarf::DW_TAG_class_type ? MemberAccess::Private
1269                                                  : MemberAccess::Public;
1270   }
1271   llvm_unreachable("access flags are exclusive");
1272 }
1273 
1274 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) {
1275   if (SP->isArtificial())
1276     return MethodOptions::CompilerGenerated;
1277 
1278   // FIXME: Handle other MethodOptions.
1279 
1280   return MethodOptions::None;
1281 }
1282 
1283 static MethodKind translateMethodKindFlags(const DISubprogram *SP,
1284                                            bool Introduced) {
1285   switch (SP->getVirtuality()) {
1286   case dwarf::DW_VIRTUALITY_none:
1287     break;
1288   case dwarf::DW_VIRTUALITY_virtual:
1289     return Introduced ? MethodKind::IntroducingVirtual : MethodKind::Virtual;
1290   case dwarf::DW_VIRTUALITY_pure_virtual:
1291     return Introduced ? MethodKind::PureIntroducingVirtual
1292                       : MethodKind::PureVirtual;
1293   default:
1294     llvm_unreachable("unhandled virtuality case");
1295   }
1296 
1297   // FIXME: Get Clang to mark DISubprogram as static and do something with it.
1298 
1299   return MethodKind::Vanilla;
1300 }
1301 
1302 static TypeRecordKind getRecordKind(const DICompositeType *Ty) {
1303   switch (Ty->getTag()) {
1304   case dwarf::DW_TAG_class_type:     return TypeRecordKind::Class;
1305   case dwarf::DW_TAG_structure_type: return TypeRecordKind::Struct;
1306   }
1307   llvm_unreachable("unexpected tag");
1308 }
1309 
1310 /// Return the HasUniqueName option if it should be present in ClassOptions, or
1311 /// None otherwise.
1312 static ClassOptions getRecordUniqueNameOption(const DICompositeType *Ty) {
1313   // MSVC always sets this flag now, even for local types. Clang doesn't always
1314   // appear to give every type a linkage name, which may be problematic for us.
1315   // FIXME: Investigate the consequences of not following them here.
1316   return !Ty->getIdentifier().empty() ? ClassOptions::HasUniqueName
1317                                       : ClassOptions::None;
1318 }
1319 
1320 TypeIndex CodeViewDebug::lowerTypeEnum(const DICompositeType *Ty) {
1321   ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
1322   TypeIndex FTI;
1323   unsigned EnumeratorCount = 0;
1324 
1325   if (Ty->isForwardDecl()) {
1326     CO |= ClassOptions::ForwardReference;
1327   } else {
1328     FieldListRecordBuilder Fields;
1329     for (const DINode *Element : Ty->getElements()) {
1330       // We assume that the frontend provides all members in source declaration
1331       // order, which is what MSVC does.
1332       if (auto *Enumerator = dyn_cast_or_null<DIEnumerator>(Element)) {
1333         Fields.writeEnumerator(EnumeratorRecord(
1334             MemberAccess::Public, APSInt::getUnsigned(Enumerator->getValue()),
1335             Enumerator->getName()));
1336         EnumeratorCount++;
1337       }
1338     }
1339     FTI = TypeTable.writeFieldList(Fields);
1340   }
1341 
1342   std::string FullName =
1343       getFullyQualifiedName(Ty->getScope().resolve(), Ty->getName());
1344 
1345   return TypeTable.writeEnum(EnumRecord(EnumeratorCount, CO, FTI, FullName,
1346                                         Ty->getIdentifier(),
1347                                         getTypeIndex(Ty->getBaseType())));
1348 }
1349 
1350 //===----------------------------------------------------------------------===//
1351 // ClassInfo
1352 //===----------------------------------------------------------------------===//
1353 
1354 struct llvm::ClassInfo {
1355   struct MemberInfo {
1356     const DIDerivedType *MemberTypeNode;
1357     unsigned BaseOffset;
1358   };
1359   // [MemberInfo]
1360   typedef std::vector<MemberInfo> MemberList;
1361 
1362   typedef TinyPtrVector<const DISubprogram *> MethodsList;
1363   // MethodName -> MethodsList
1364   typedef MapVector<MDString *, MethodsList> MethodsMap;
1365 
1366   /// Base classes.
1367   std::vector<const DIDerivedType *> Inheritance;
1368 
1369   /// Direct members.
1370   MemberList Members;
1371   // Direct overloaded methods gathered by name.
1372   MethodsMap Methods;
1373 };
1374 
1375 void CodeViewDebug::clear() {
1376   assert(CurFn == nullptr);
1377   FileIdMap.clear();
1378   FnDebugInfo.clear();
1379   FileToFilepathMap.clear();
1380   LocalUDTs.clear();
1381   GlobalUDTs.clear();
1382   TypeIndices.clear();
1383   CompleteTypeIndices.clear();
1384 }
1385 
1386 void CodeViewDebug::collectMemberInfo(ClassInfo &Info,
1387                                       const DIDerivedType *DDTy) {
1388   if (!DDTy->getName().empty()) {
1389     Info.Members.push_back({DDTy, 0});
1390     return;
1391   }
1392   // An unnamed member must represent a nested struct or union. Add all the
1393   // indirect fields to the current record.
1394   assert((DDTy->getOffsetInBits() % 8) == 0 && "Unnamed bitfield member!");
1395   unsigned Offset = DDTy->getOffsetInBits() / 8;
1396   const DIType *Ty = DDTy->getBaseType().resolve();
1397   const DICompositeType *DCTy = cast<DICompositeType>(Ty);
1398   ClassInfo NestedInfo = collectClassInfo(DCTy);
1399   for (const ClassInfo::MemberInfo &IndirectField : NestedInfo.Members)
1400     Info.Members.push_back(
1401         {IndirectField.MemberTypeNode, IndirectField.BaseOffset + Offset});
1402 }
1403 
1404 ClassInfo CodeViewDebug::collectClassInfo(const DICompositeType *Ty) {
1405   ClassInfo Info;
1406   // Add elements to structure type.
1407   DINodeArray Elements = Ty->getElements();
1408   for (auto *Element : Elements) {
1409     // We assume that the frontend provides all members in source declaration
1410     // order, which is what MSVC does.
1411     if (!Element)
1412       continue;
1413     if (auto *SP = dyn_cast<DISubprogram>(Element)) {
1414       Info.Methods[SP->getRawName()].push_back(SP);
1415     } else if (auto *DDTy = dyn_cast<DIDerivedType>(Element)) {
1416       if (DDTy->getTag() == dwarf::DW_TAG_member) {
1417         collectMemberInfo(Info, DDTy);
1418       } else if (DDTy->getTag() == dwarf::DW_TAG_inheritance) {
1419         Info.Inheritance.push_back(DDTy);
1420       } else if (DDTy->getTag() == dwarf::DW_TAG_friend) {
1421         // Ignore friend members. It appears that MSVC emitted info about
1422         // friends in the past, but modern versions do not.
1423       }
1424       // FIXME: Get Clang to emit function virtual table here and handle it.
1425       // FIXME: Get clang to emit nested types here and do something with
1426       // them.
1427     }
1428     // Skip other unrecognized kinds of elements.
1429   }
1430   return Info;
1431 }
1432 
1433 TypeIndex CodeViewDebug::lowerTypeClass(const DICompositeType *Ty) {
1434   // First, construct the forward decl.  Don't look into Ty to compute the
1435   // forward decl options, since it might not be available in all TUs.
1436   TypeRecordKind Kind = getRecordKind(Ty);
1437   ClassOptions CO =
1438       ClassOptions::ForwardReference | getRecordUniqueNameOption(Ty);
1439   std::string FullName =
1440       getFullyQualifiedName(Ty->getScope().resolve(), Ty->getName());
1441   TypeIndex FwdDeclTI = TypeTable.writeClass(ClassRecord(
1442       Kind, 0, CO, HfaKind::None, WindowsRTClassKind::None, TypeIndex(),
1443       TypeIndex(), TypeIndex(), 0, FullName, Ty->getIdentifier()));
1444   if (!Ty->isForwardDecl())
1445     DeferredCompleteTypes.push_back(Ty);
1446   return FwdDeclTI;
1447 }
1448 
1449 TypeIndex CodeViewDebug::lowerCompleteTypeClass(const DICompositeType *Ty) {
1450   // Construct the field list and complete type record.
1451   TypeRecordKind Kind = getRecordKind(Ty);
1452   // FIXME: Other ClassOptions, like ContainsNestedClass and NestedClass.
1453   ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
1454   TypeIndex FieldTI;
1455   TypeIndex VShapeTI;
1456   unsigned FieldCount;
1457   std::tie(FieldTI, VShapeTI, FieldCount) = lowerRecordFieldList(Ty);
1458 
1459   std::string FullName =
1460       getFullyQualifiedName(Ty->getScope().resolve(), Ty->getName());
1461 
1462   uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
1463 
1464   TypeIndex ClassTI = TypeTable.writeClass(ClassRecord(
1465       Kind, FieldCount, CO, HfaKind::None, WindowsRTClassKind::None, FieldTI,
1466       TypeIndex(), VShapeTI, SizeInBytes, FullName, Ty->getIdentifier()));
1467 
1468   TypeTable.writeUdtSourceLine(UdtSourceLineRecord(
1469       ClassTI, TypeTable.writeStringId(StringIdRecord(
1470                    TypeIndex(0x0), getFullFilepath(Ty->getFile()))),
1471       Ty->getLine()));
1472 
1473   addToUDTs(Ty, ClassTI);
1474 
1475   return ClassTI;
1476 }
1477 
1478 TypeIndex CodeViewDebug::lowerTypeUnion(const DICompositeType *Ty) {
1479   ClassOptions CO =
1480       ClassOptions::ForwardReference | getRecordUniqueNameOption(Ty);
1481   std::string FullName =
1482       getFullyQualifiedName(Ty->getScope().resolve(), Ty->getName());
1483   TypeIndex FwdDeclTI =
1484       TypeTable.writeUnion(UnionRecord(0, CO, HfaKind::None, TypeIndex(), 0,
1485                                        FullName, Ty->getIdentifier()));
1486   if (!Ty->isForwardDecl())
1487     DeferredCompleteTypes.push_back(Ty);
1488   return FwdDeclTI;
1489 }
1490 
1491 TypeIndex CodeViewDebug::lowerCompleteTypeUnion(const DICompositeType *Ty) {
1492   ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
1493   TypeIndex FieldTI;
1494   unsigned FieldCount;
1495   std::tie(FieldTI, std::ignore, FieldCount) = lowerRecordFieldList(Ty);
1496   uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
1497   std::string FullName =
1498       getFullyQualifiedName(Ty->getScope().resolve(), Ty->getName());
1499 
1500   TypeIndex UnionTI = TypeTable.writeUnion(
1501       UnionRecord(FieldCount, CO, HfaKind::None, FieldTI, SizeInBytes, FullName,
1502                   Ty->getIdentifier()));
1503 
1504   TypeTable.writeUdtSourceLine(UdtSourceLineRecord(
1505       UnionTI, TypeTable.writeStringId(StringIdRecord(
1506                    TypeIndex(0x0), getFullFilepath(Ty->getFile()))),
1507       Ty->getLine()));
1508 
1509   addToUDTs(Ty, UnionTI);
1510 
1511   return UnionTI;
1512 }
1513 
1514 std::tuple<TypeIndex, TypeIndex, unsigned>
1515 CodeViewDebug::lowerRecordFieldList(const DICompositeType *Ty) {
1516   // Manually count members. MSVC appears to count everything that generates a
1517   // field list record. Each individual overload in a method overload group
1518   // contributes to this count, even though the overload group is a single field
1519   // list record.
1520   unsigned MemberCount = 0;
1521   ClassInfo Info = collectClassInfo(Ty);
1522   FieldListRecordBuilder Fields;
1523 
1524   // Create base classes.
1525   for (const DIDerivedType *I : Info.Inheritance) {
1526     if (I->getFlags() & DINode::FlagVirtual) {
1527       // Virtual base.
1528       // FIXME: Emit VBPtrOffset when the frontend provides it.
1529       unsigned VBPtrOffset = 0;
1530       // FIXME: Despite the accessor name, the offset is really in bytes.
1531       unsigned VBTableIndex = I->getOffsetInBits() / 4;
1532       Fields.writeVirtualBaseClass(VirtualBaseClassRecord(
1533           translateAccessFlags(Ty->getTag(), I->getFlags()),
1534           getTypeIndex(I->getBaseType()), getVBPTypeIndex(), VBPtrOffset,
1535           VBTableIndex));
1536     } else {
1537       assert(I->getOffsetInBits() % 8 == 0 &&
1538              "bases must be on byte boundaries");
1539       Fields.writeBaseClass(BaseClassRecord(
1540           translateAccessFlags(Ty->getTag(), I->getFlags()),
1541           getTypeIndex(I->getBaseType()), I->getOffsetInBits() / 8));
1542     }
1543   }
1544 
1545   // Create members.
1546   for (ClassInfo::MemberInfo &MemberInfo : Info.Members) {
1547     const DIDerivedType *Member = MemberInfo.MemberTypeNode;
1548     TypeIndex MemberBaseType = getTypeIndex(Member->getBaseType());
1549 
1550     if (Member->isStaticMember()) {
1551       Fields.writeStaticDataMember(StaticDataMemberRecord(
1552           translateAccessFlags(Ty->getTag(), Member->getFlags()),
1553           MemberBaseType, Member->getName()));
1554       MemberCount++;
1555       continue;
1556     }
1557 
1558     uint64_t OffsetInBytes = MemberInfo.BaseOffset;
1559 
1560     // FIXME: Handle bitfield type memeber.
1561     OffsetInBytes += Member->getOffsetInBits() / 8;
1562 
1563     Fields.writeDataMember(
1564         DataMemberRecord(translateAccessFlags(Ty->getTag(), Member->getFlags()),
1565                          MemberBaseType, OffsetInBytes, Member->getName()));
1566     MemberCount++;
1567   }
1568 
1569   // Create methods
1570   for (auto &MethodItr : Info.Methods) {
1571     StringRef Name = MethodItr.first->getString();
1572 
1573     std::vector<OneMethodRecord> Methods;
1574     for (const DISubprogram *SP : MethodItr.second) {
1575       TypeIndex MethodType = getMemberFunctionType(SP, Ty);
1576       bool Introduced = SP->getFlags() & DINode::FlagIntroducedVirtual;
1577 
1578       unsigned VFTableOffset = -1;
1579       if (Introduced)
1580         VFTableOffset = SP->getVirtualIndex() * getPointerSizeInBytes();
1581 
1582       Methods.push_back(
1583           OneMethodRecord(MethodType, translateMethodKindFlags(SP, Introduced),
1584                           translateMethodOptionFlags(SP),
1585                           translateAccessFlags(Ty->getTag(), SP->getFlags()),
1586                           VFTableOffset, Name));
1587       MemberCount++;
1588     }
1589     assert(Methods.size() > 0 && "Empty methods map entry");
1590     if (Methods.size() == 1)
1591       Fields.writeOneMethod(Methods[0]);
1592     else {
1593       TypeIndex MethodList =
1594           TypeTable.writeMethodOverloadList(MethodOverloadListRecord(Methods));
1595       Fields.writeOverloadedMethod(
1596           OverloadedMethodRecord(Methods.size(), MethodList, Name));
1597     }
1598   }
1599   TypeIndex FieldTI = TypeTable.writeFieldList(Fields);
1600   return std::make_tuple(FieldTI, TypeIndex(), MemberCount);
1601 }
1602 
1603 TypeIndex CodeViewDebug::getVBPTypeIndex() {
1604   if (!VBPType.getIndex()) {
1605     // Make a 'const int *' type.
1606     ModifierRecord MR(TypeIndex::Int32(), ModifierOptions::Const);
1607     TypeIndex ModifiedTI = TypeTable.writeModifier(MR);
1608 
1609     PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
1610                                                   : PointerKind::Near32;
1611     PointerMode PM = PointerMode::Pointer;
1612     PointerOptions PO = PointerOptions::None;
1613     PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes());
1614 
1615     VBPType = TypeTable.writePointer(PR);
1616   }
1617 
1618   return VBPType;
1619 }
1620 
1621 struct CodeViewDebug::TypeLoweringScope {
1622   TypeLoweringScope(CodeViewDebug &CVD) : CVD(CVD) { ++CVD.TypeEmissionLevel; }
1623   ~TypeLoweringScope() {
1624     // Don't decrement TypeEmissionLevel until after emitting deferred types, so
1625     // inner TypeLoweringScopes don't attempt to emit deferred types.
1626     if (CVD.TypeEmissionLevel == 1)
1627       CVD.emitDeferredCompleteTypes();
1628     --CVD.TypeEmissionLevel;
1629   }
1630   CodeViewDebug &CVD;
1631 };
1632 
1633 TypeIndex CodeViewDebug::getTypeIndex(DITypeRef TypeRef, DITypeRef ClassTyRef) {
1634   const DIType *Ty = TypeRef.resolve();
1635   const DIType *ClassTy = ClassTyRef.resolve();
1636 
1637   // The null DIType is the void type. Don't try to hash it.
1638   if (!Ty)
1639     return TypeIndex::Void();
1640 
1641   // Check if we've already translated this type. Don't try to do a
1642   // get-or-create style insertion that caches the hash lookup across the
1643   // lowerType call. It will update the TypeIndices map.
1644   auto I = TypeIndices.find({Ty, ClassTy});
1645   if (I != TypeIndices.end())
1646     return I->second;
1647 
1648   TypeIndex TI;
1649   {
1650     TypeLoweringScope S(*this);
1651     TI = lowerType(Ty, ClassTy);
1652     recordTypeIndexForDINode(Ty, TI, ClassTy);
1653   }
1654 
1655   return TI;
1656 }
1657 
1658 TypeIndex CodeViewDebug::getCompleteTypeIndex(DITypeRef TypeRef) {
1659   const DIType *Ty = TypeRef.resolve();
1660 
1661   // The null DIType is the void type. Don't try to hash it.
1662   if (!Ty)
1663     return TypeIndex::Void();
1664 
1665   // If this is a non-record type, the complete type index is the same as the
1666   // normal type index. Just call getTypeIndex.
1667   switch (Ty->getTag()) {
1668   case dwarf::DW_TAG_class_type:
1669   case dwarf::DW_TAG_structure_type:
1670   case dwarf::DW_TAG_union_type:
1671     break;
1672   default:
1673     return getTypeIndex(Ty);
1674   }
1675 
1676   // Check if we've already translated the complete record type.  Lowering a
1677   // complete type should never trigger lowering another complete type, so we
1678   // can reuse the hash table lookup result.
1679   const auto *CTy = cast<DICompositeType>(Ty);
1680   auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
1681   if (!InsertResult.second)
1682     return InsertResult.first->second;
1683 
1684   TypeLoweringScope S(*this);
1685 
1686   // Make sure the forward declaration is emitted first. It's unclear if this
1687   // is necessary, but MSVC does it, and we should follow suit until we can show
1688   // otherwise.
1689   TypeIndex FwdDeclTI = getTypeIndex(CTy);
1690 
1691   // Just use the forward decl if we don't have complete type info. This might
1692   // happen if the frontend is using modules and expects the complete definition
1693   // to be emitted elsewhere.
1694   if (CTy->isForwardDecl())
1695     return FwdDeclTI;
1696 
1697   TypeIndex TI;
1698   switch (CTy->getTag()) {
1699   case dwarf::DW_TAG_class_type:
1700   case dwarf::DW_TAG_structure_type:
1701     TI = lowerCompleteTypeClass(CTy);
1702     break;
1703   case dwarf::DW_TAG_union_type:
1704     TI = lowerCompleteTypeUnion(CTy);
1705     break;
1706   default:
1707     llvm_unreachable("not a record");
1708   }
1709 
1710   InsertResult.first->second = TI;
1711   return TI;
1712 }
1713 
1714 /// Emit all the deferred complete record types. Try to do this in FIFO order,
1715 /// and do this until fixpoint, as each complete record type typically references
1716 /// many other record types.
1717 void CodeViewDebug::emitDeferredCompleteTypes() {
1718   SmallVector<const DICompositeType *, 4> TypesToEmit;
1719   while (!DeferredCompleteTypes.empty()) {
1720     std::swap(DeferredCompleteTypes, TypesToEmit);
1721     for (const DICompositeType *RecordTy : TypesToEmit)
1722       getCompleteTypeIndex(RecordTy);
1723     TypesToEmit.clear();
1724   }
1725 }
1726 
1727 void CodeViewDebug::emitLocalVariableList(ArrayRef<LocalVariable> Locals) {
1728   // Get the sorted list of parameters and emit them first.
1729   SmallVector<const LocalVariable *, 6> Params;
1730   for (const LocalVariable &L : Locals)
1731     if (L.DIVar->isParameter())
1732       Params.push_back(&L);
1733   std::sort(Params.begin(), Params.end(),
1734             [](const LocalVariable *L, const LocalVariable *R) {
1735               return L->DIVar->getArg() < R->DIVar->getArg();
1736             });
1737   for (const LocalVariable *L : Params)
1738     emitLocalVariable(*L);
1739 
1740   // Next emit all non-parameters in the order that we found them.
1741   for (const LocalVariable &L : Locals)
1742     if (!L.DIVar->isParameter())
1743       emitLocalVariable(L);
1744 }
1745 
1746 void CodeViewDebug::emitLocalVariable(const LocalVariable &Var) {
1747   // LocalSym record, see SymbolRecord.h for more info.
1748   MCSymbol *LocalBegin = MMI->getContext().createTempSymbol(),
1749            *LocalEnd = MMI->getContext().createTempSymbol();
1750   OS.AddComment("Record length");
1751   OS.emitAbsoluteSymbolDiff(LocalEnd, LocalBegin, 2);
1752   OS.EmitLabel(LocalBegin);
1753 
1754   OS.AddComment("Record kind: S_LOCAL");
1755   OS.EmitIntValue(unsigned(SymbolKind::S_LOCAL), 2);
1756 
1757   LocalSymFlags Flags = LocalSymFlags::None;
1758   if (Var.DIVar->isParameter())
1759     Flags |= LocalSymFlags::IsParameter;
1760   if (Var.DefRanges.empty())
1761     Flags |= LocalSymFlags::IsOptimizedOut;
1762 
1763   OS.AddComment("TypeIndex");
1764   TypeIndex TI = getCompleteTypeIndex(Var.DIVar->getType());
1765   OS.EmitIntValue(TI.getIndex(), 4);
1766   OS.AddComment("Flags");
1767   OS.EmitIntValue(static_cast<uint16_t>(Flags), 2);
1768   // Truncate the name so we won't overflow the record length field.
1769   emitNullTerminatedSymbolName(OS, Var.DIVar->getName());
1770   OS.EmitLabel(LocalEnd);
1771 
1772   // Calculate the on disk prefix of the appropriate def range record. The
1773   // records and on disk formats are described in SymbolRecords.h. BytePrefix
1774   // should be big enough to hold all forms without memory allocation.
1775   SmallString<20> BytePrefix;
1776   for (const LocalVarDefRange &DefRange : Var.DefRanges) {
1777     BytePrefix.clear();
1778     // FIXME: Handle bitpieces.
1779     if (DefRange.StructOffset != 0)
1780       continue;
1781 
1782     if (DefRange.InMemory) {
1783       DefRangeRegisterRelSym Sym(DefRange.CVRegister, 0, DefRange.DataOffset, 0,
1784                                  0, 0, ArrayRef<LocalVariableAddrGap>());
1785       ulittle16_t SymKind = ulittle16_t(S_DEFRANGE_REGISTER_REL);
1786       BytePrefix +=
1787           StringRef(reinterpret_cast<const char *>(&SymKind), sizeof(SymKind));
1788       BytePrefix +=
1789           StringRef(reinterpret_cast<const char *>(&Sym.Header),
1790                     sizeof(Sym.Header) - sizeof(LocalVariableAddrRange));
1791     } else {
1792       assert(DefRange.DataOffset == 0 && "unexpected offset into register");
1793       // Unclear what matters here.
1794       DefRangeRegisterSym Sym(DefRange.CVRegister, 0, 0, 0, 0,
1795                               ArrayRef<LocalVariableAddrGap>());
1796       ulittle16_t SymKind = ulittle16_t(S_DEFRANGE_REGISTER);
1797       BytePrefix +=
1798           StringRef(reinterpret_cast<const char *>(&SymKind), sizeof(SymKind));
1799       BytePrefix +=
1800           StringRef(reinterpret_cast<const char *>(&Sym.Header),
1801                     sizeof(Sym.Header) - sizeof(LocalVariableAddrRange));
1802     }
1803     OS.EmitCVDefRangeDirective(DefRange.Ranges, BytePrefix);
1804   }
1805 }
1806 
1807 void CodeViewDebug::endFunction(const MachineFunction *MF) {
1808   if (!Asm || !CurFn)  // We haven't created any debug info for this function.
1809     return;
1810 
1811   const Function *GV = MF->getFunction();
1812   assert(FnDebugInfo.count(GV));
1813   assert(CurFn == &FnDebugInfo[GV]);
1814 
1815   collectVariableInfo(GV->getSubprogram());
1816 
1817   DebugHandlerBase::endFunction(MF);
1818 
1819   // Don't emit anything if we don't have any line tables.
1820   if (!CurFn->HaveLineInfo) {
1821     FnDebugInfo.erase(GV);
1822     CurFn = nullptr;
1823     return;
1824   }
1825 
1826   CurFn->End = Asm->getFunctionEnd();
1827 
1828   CurFn = nullptr;
1829 }
1830 
1831 void CodeViewDebug::beginInstruction(const MachineInstr *MI) {
1832   DebugHandlerBase::beginInstruction(MI);
1833 
1834   // Ignore DBG_VALUE locations and function prologue.
1835   if (!Asm || MI->isDebugValue() || MI->getFlag(MachineInstr::FrameSetup))
1836     return;
1837   DebugLoc DL = MI->getDebugLoc();
1838   if (DL == PrevInstLoc || !DL)
1839     return;
1840   maybeRecordLocation(DL, Asm->MF);
1841 }
1842 
1843 MCSymbol *CodeViewDebug::beginCVSubsection(ModuleSubstreamKind Kind) {
1844   MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
1845            *EndLabel = MMI->getContext().createTempSymbol();
1846   OS.EmitIntValue(unsigned(Kind), 4);
1847   OS.AddComment("Subsection size");
1848   OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 4);
1849   OS.EmitLabel(BeginLabel);
1850   return EndLabel;
1851 }
1852 
1853 void CodeViewDebug::endCVSubsection(MCSymbol *EndLabel) {
1854   OS.EmitLabel(EndLabel);
1855   // Every subsection must be aligned to a 4-byte boundary.
1856   OS.EmitValueToAlignment(4);
1857 }
1858 
1859 void CodeViewDebug::emitDebugInfoForUDTs(
1860     ArrayRef<std::pair<std::string, TypeIndex>> UDTs) {
1861   for (const std::pair<std::string, codeview::TypeIndex> &UDT : UDTs) {
1862     MCSymbol *UDTRecordBegin = MMI->getContext().createTempSymbol(),
1863              *UDTRecordEnd = MMI->getContext().createTempSymbol();
1864     OS.AddComment("Record length");
1865     OS.emitAbsoluteSymbolDiff(UDTRecordEnd, UDTRecordBegin, 2);
1866     OS.EmitLabel(UDTRecordBegin);
1867 
1868     OS.AddComment("Record kind: S_UDT");
1869     OS.EmitIntValue(unsigned(SymbolKind::S_UDT), 2);
1870 
1871     OS.AddComment("Type");
1872     OS.EmitIntValue(UDT.second.getIndex(), 4);
1873 
1874     emitNullTerminatedSymbolName(OS, UDT.first);
1875     OS.EmitLabel(UDTRecordEnd);
1876   }
1877 }
1878 
1879 void CodeViewDebug::emitDebugInfoForGlobals() {
1880   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
1881   for (const MDNode *Node : CUs->operands()) {
1882     const auto *CU = cast<DICompileUnit>(Node);
1883 
1884     // First, emit all globals that are not in a comdat in a single symbol
1885     // substream. MSVC doesn't like it if the substream is empty, so only open
1886     // it if we have at least one global to emit.
1887     switchToDebugSectionForSymbol(nullptr);
1888     MCSymbol *EndLabel = nullptr;
1889     for (const DIGlobalVariable *G : CU->getGlobalVariables()) {
1890       if (const auto *GV = dyn_cast_or_null<GlobalVariable>(G->getVariable())) {
1891         if (!GV->hasComdat() && !GV->isDeclarationForLinker()) {
1892           if (!EndLabel) {
1893             OS.AddComment("Symbol subsection for globals");
1894             EndLabel = beginCVSubsection(ModuleSubstreamKind::Symbols);
1895           }
1896           emitDebugInfoForGlobal(G, Asm->getSymbol(GV));
1897         }
1898       }
1899     }
1900     if (EndLabel)
1901       endCVSubsection(EndLabel);
1902 
1903     // Second, emit each global that is in a comdat into its own .debug$S
1904     // section along with its own symbol substream.
1905     for (const DIGlobalVariable *G : CU->getGlobalVariables()) {
1906       if (const auto *GV = dyn_cast_or_null<GlobalVariable>(G->getVariable())) {
1907         if (GV->hasComdat()) {
1908           MCSymbol *GVSym = Asm->getSymbol(GV);
1909           OS.AddComment("Symbol subsection for " +
1910                         Twine(GlobalValue::getRealLinkageName(GV->getName())));
1911           switchToDebugSectionForSymbol(GVSym);
1912           EndLabel = beginCVSubsection(ModuleSubstreamKind::Symbols);
1913           emitDebugInfoForGlobal(G, GVSym);
1914           endCVSubsection(EndLabel);
1915         }
1916       }
1917     }
1918   }
1919 }
1920 
1921 void CodeViewDebug::emitDebugInfoForRetainedTypes() {
1922   NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
1923   for (const MDNode *Node : CUs->operands()) {
1924     for (auto *Ty : cast<DICompileUnit>(Node)->getRetainedTypes()) {
1925       if (DIType *RT = dyn_cast<DIType>(Ty)) {
1926         getTypeIndex(RT);
1927         // FIXME: Add to global/local DTU list.
1928       }
1929     }
1930   }
1931 }
1932 
1933 void CodeViewDebug::emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
1934                                            MCSymbol *GVSym) {
1935   // DataSym record, see SymbolRecord.h for more info.
1936   // FIXME: Thread local data, etc
1937   MCSymbol *DataBegin = MMI->getContext().createTempSymbol(),
1938            *DataEnd = MMI->getContext().createTempSymbol();
1939   OS.AddComment("Record length");
1940   OS.emitAbsoluteSymbolDiff(DataEnd, DataBegin, 2);
1941   OS.EmitLabel(DataBegin);
1942   OS.AddComment("Record kind: S_GDATA32");
1943   OS.EmitIntValue(unsigned(SymbolKind::S_GDATA32), 2);
1944   OS.AddComment("Type");
1945   OS.EmitIntValue(getCompleteTypeIndex(DIGV->getType()).getIndex(), 4);
1946   OS.AddComment("DataOffset");
1947   OS.EmitCOFFSecRel32(GVSym);
1948   OS.AddComment("Segment");
1949   OS.EmitCOFFSectionIndex(GVSym);
1950   OS.AddComment("Name");
1951   emitNullTerminatedSymbolName(OS, DIGV->getName());
1952   OS.EmitLabel(DataEnd);
1953 }
1954