blob: 60731f1e676c7facf69a2a8084701ad21a38a79f [file] [log] [blame]
Eugene Zelenkofb69e662017-06-06 22:22:41 +00001//===- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp ----------------------===//
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00006//
7//===----------------------------------------------------------------------===//
8//
Reid Kleckner70f5bc92016-01-14 19:25:04 +00009// This file contains support for writing Microsoft CodeView debug info.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000010//
11//===----------------------------------------------------------------------===//
12
Reid Kleckner70f5bc92016-01-14 19:25:04 +000013#include "CodeViewDebug.h"
Adrian Prantl032d2382017-08-01 21:45:24 +000014#include "DwarfExpression.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000015#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"
David Blaikieb3bde2e2017-11-17 01:07:10 +000022#include "llvm/ADT/STLExtras.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000023#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/SmallVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000025#include "llvm/ADT/StringRef.h"
Reid Kleckner156a7232016-06-22 18:31:14 +000026#include "llvm/ADT/TinyPtrVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000027#include "llvm/ADT/Triple.h"
28#include "llvm/ADT/Twine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000029#include "llvm/BinaryFormat/COFF.h"
30#include "llvm/BinaryFormat/Dwarf.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000031#include "llvm/CodeGen/AsmPrinter.h"
32#include "llvm/CodeGen/LexicalScopes.h"
Reid Kleckner9ea2c012018-10-01 21:59:45 +000033#include "llvm/CodeGen/MachineFrameInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000034#include "llvm/CodeGen/MachineFunction.h"
35#include "llvm/CodeGen/MachineInstr.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineOperand.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000038#include "llvm/CodeGen/TargetFrameLowering.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000039#include "llvm/CodeGen/TargetRegisterInfo.h"
40#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000041#include "llvm/Config/llvm-config.h"
Reid Klecknerc92e9462016-07-01 18:05:56 +000042#include "llvm/DebugInfo/CodeView/CVTypeVisitor.h"
Reid Kleckner6b3faef2016-01-13 23:44:57 +000043#include "llvm/DebugInfo/CodeView/CodeView.h"
Zachary Turner6900de12017-11-28 18:33:17 +000044#include "llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h"
Zachary Turner8c099fe2017-05-30 16:36:15 +000045#include "llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h"
Reid Kleckner5bf71d12018-12-14 22:40:28 +000046#include "llvm/DebugInfo/CodeView/EnumTables.h"
Reid Kleckner2214ed82016-01-29 00:49:42 +000047#include "llvm/DebugInfo/CodeView/Line.h"
Reid Kleckner6b3faef2016-01-13 23:44:57 +000048#include "llvm/DebugInfo/CodeView/SymbolRecord.h"
Zachary Turner629cb7d2017-01-11 23:24:22 +000049#include "llvm/DebugInfo/CodeView/TypeDumpVisitor.h"
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000050#include "llvm/DebugInfo/CodeView/TypeIndex.h"
51#include "llvm/DebugInfo/CodeView/TypeRecord.h"
Zachary Turner526f4f22017-05-19 19:26:58 +000052#include "llvm/DebugInfo/CodeView/TypeTableCollection.h"
David Majnemer9319cbc2016-06-30 03:00:20 +000053#include "llvm/IR/Constants.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000054#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"
Reid Kleckner46cb48c2016-07-27 16:03:57 +000062#include "llvm/MC/MCAsmInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000063#include "llvm/MC/MCContext.h"
Reid Kleckner5d122f82016-05-25 23:16:12 +000064#include "llvm/MC/MCSectionCOFF.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000065#include "llvm/MC/MCStreamer.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000066#include "llvm/MC/MCSymbol.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000067#include "llvm/Support/BinaryByteStream.h"
68#include "llvm/Support/BinaryStreamReader.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000069#include "llvm/Support/Casting.h"
Zachary Turner048f8f92017-12-13 22:33:58 +000070#include "llvm/Support/CommandLine.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000071#include "llvm/Support/Compiler.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000072#include "llvm/Support/Endian.h"
73#include "llvm/Support/Error.h"
74#include "llvm/Support/ErrorHandling.h"
Zachary Turner048f8f92017-12-13 22:33:58 +000075#include "llvm/Support/FormatVariadic.h"
Zachary Turner5bba1ca2018-10-12 17:26:19 +000076#include "llvm/Support/Path.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000077#include "llvm/Support/SMLoc.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000078#include "llvm/Support/ScopedPrinter.h"
David Blaikie6054e652018-03-23 23:58:19 +000079#include "llvm/Target/TargetLoweringObjectFile.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000080#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000081#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>
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000091
Reid Klecknerf9c275f2016-02-10 20:55:49 +000092using namespace llvm;
Reid Kleckner6b3faef2016-01-13 23:44:57 +000093using namespace llvm::codeview;
94
Reid Kleckner9ea2c012018-10-01 21:59:45 +000095static 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
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000110CodeViewDebug::CodeViewDebug(AsmPrinter *AP)
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000111 : DebugHandlerBase(AP), OS(*Asm->OutStreamer), TypeTable(Allocator) {
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000112 // 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;
Matthias Braun8763c0c2018-10-31 17:18:41 +0000117 MMI->setDebugInfoAvailability(false);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000118 return;
119 }
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000120 // Tell MMI that we have debug info.
121 MMI->setDebugInfoAvailability(true);
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000122
123 TheCPU =
124 mapArchToCVCPUType(Triple(MMI->getModule()->getTargetTriple()).getArch());
Reid Kleckner75557712018-11-16 18:47:41 +0000125
Brock Wymab17464e2018-12-20 17:33:45 +0000126 collectGlobalVariableInfo();
127
Reid Kleckner75557712018-11-16 18:47:41 +0000128 // 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();
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000132}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000133
Reid Kleckner9533af42016-01-16 00:09:09 +0000134StringRef CodeViewDebug::getFullFilepath(const DIFile *File) {
135 std::string &Filepath = FileToFilepathMap[File];
Reid Kleckner1f11b4e2015-12-02 22:34:30 +0000136 if (!Filepath.empty())
137 return Filepath;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000138
Reid Kleckner9533af42016-01-16 00:09:09 +0000139 StringRef Dir = File->getDirectory(), Filename = File->getFilename();
140
Peter Collingbournecb8a6662018-04-11 18:24:03 +0000141 // 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.
Zachary Turner5bba1ca2018-10-12 17:26:19 +0000143 if (Dir.startswith("/") || Filename.startswith("/")) {
144 if (llvm::sys::path::is_absolute(Filename, llvm::sys::path::Style::posix))
145 return Filename;
Peter Collingbournecb8a6662018-04-11 18:24:03 +0000146 Filepath = Dir;
147 if (Dir.back() != '/')
148 Filepath += '/';
149 Filepath += Filename;
150 return Filepath;
151 }
152
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000153 // 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.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000157 if (Filename.find(':') == 1)
158 Filepath = Filename;
159 else
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000160 Filepath = (Dir + "\\" + Filename).str();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000161
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
Reid Kleckner1f11b4e2015-12-02 22:34:30 +0000195 return Filepath;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000196}
197
Reid Kleckner2214ed82016-01-29 00:49:42 +0000198unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) {
Reid Klecknerbc6f52d2017-10-31 21:52:15 +0000199 StringRef FullPath = getFullFilepath(F);
Reid Kleckner2214ed82016-01-29 00:49:42 +0000200 unsigned NextId = FileIdMap.size() + 1;
Reid Klecknerbc6f52d2017-10-31 21:52:15 +0000201 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId));
Reid Kleckner2214ed82016-01-29 00:49:42 +0000202 if (Insertion.second) {
203 // We have to compute the full filepath and emit a .cv_file directive.
Scott Linder71603842018-02-12 19:45:54 +0000204 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 }
Reid Kleckner26fa1bf2017-09-19 18:14:45 +0000217 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes,
Scott Linder71603842018-02-12 19:45:54 +0000218 static_cast<unsigned>(CSKind));
Reid Klecknera5b1eef2016-08-26 17:58:37 +0000219 (void)Success;
220 assert(Success && ".cv_file directive failed");
Reid Kleckner2214ed82016-01-29 00:49:42 +0000221 }
222 return Insertion.first->second;
223}
224
Reid Kleckner876330d2016-02-12 21:48:30 +0000225CodeViewDebug::InlineSite &
226CodeViewDebug::getInlineSite(const DILocation *InlinedAt,
227 const DISubprogram *Inlinee) {
Reid Klecknerfbd77872016-03-18 18:54:32 +0000228 auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()});
229 InlineSite *Site = &SiteInsertion.first->second;
230 if (SiteInsertion.second) {
Reid Klecknera9f4cc92016-09-07 16:15:31 +0000231 unsigned ParentFuncId = CurFn->FuncId;
232 if (const DILocation *OuterIA = InlinedAt->getInlinedAt())
233 ParentFuncId =
234 getInlineSite(OuterIA, InlinedAt->getScope()->getSubprogram())
235 .SiteFuncId;
236
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000237 Site->SiteFuncId = NextFuncId++;
Reid Klecknera9f4cc92016-09-07 16:15:31 +0000238 OS.EmitCVInlineSiteIdDirective(
239 Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()),
240 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc());
Reid Kleckner876330d2016-02-12 21:48:30 +0000241 Site->Inlinee = Inlinee;
Reid Kleckner2280f932016-05-23 20:23:46 +0000242 InlinedSubprograms.insert(Inlinee);
David Majnemer75c3ebf2016-06-02 17:13:53 +0000243 getFuncIdForSubprogram(Inlinee);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000244 }
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000245 return *Site;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000246}
247
David Majnemer6bdc24e2016-07-01 23:12:45 +0000248static 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
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000266static 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);
David Majnemer6bdc24e2016-07-01 23:12:45 +0000272 StringRef ScopeName = getPrettyScopeName(Scope);
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000273 if (!ScopeName.empty())
274 QualifiedNameComponents.push_back(ScopeName);
275 Scope = Scope->getScope().resolve();
276 }
277 return ClosestSubprogram;
278}
279
280static std::string getQualifiedName(ArrayRef<StringRef> QualifiedNameComponents,
281 StringRef TypeName) {
282 std::string FullyQualifiedName;
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000283 for (StringRef QualifiedNameComponent :
284 llvm::reverse(QualifiedNameComponents)) {
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000285 FullyQualifiedName.append(QualifiedNameComponent);
286 FullyQualifiedName.append("::");
287 }
288 FullyQualifiedName.append(TypeName);
289 return FullyQualifiedName;
290}
291
292static std::string getFullyQualifiedName(const DIScope *Scope, StringRef Name) {
293 SmallVector<StringRef, 5> QualifiedNameComponents;
294 getQualifiedNameComponents(Scope, QualifiedNameComponents);
295 return getQualifiedName(QualifiedNameComponents, Name);
296}
297
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000298struct 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
David Majnemer6bdc24e2016-07-01 23:12:45 +0000310static std::string getFullyQualifiedName(const DIScope *Ty) {
311 const DIScope *Scope = Ty->getScope().resolve();
312 return getFullyQualifiedName(Scope, getPrettyScopeName(Ty));
313}
314
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000315TypeIndex 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.
David Majnemer6bdc24e2016-07-01 23:12:45 +0000328 std::string ScopeName = getFullyQualifiedName(Scope);
Zachary Turner4efa0a42016-11-08 22:24:53 +0000329 StringIdRecord SID(TypeIndex(), ScopeName);
Zachary Turner6900de12017-11-28 18:33:17 +0000330 auto TI = TypeTable.writeLeafType(SID);
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000331 return recordTypeIndexForDINode(Scope, TI);
332}
333
David Majnemer75c3ebf2016-06-02 17:13:53 +0000334TypeIndex CodeViewDebug::getFuncIdForSubprogram(const DISubprogram *SP) {
David Majnemer67f684e2016-07-28 05:03:22 +0000335 assert(SP);
Reid Kleckner2280f932016-05-23 20:23:46 +0000336
David Majnemer75c3ebf2016-06-02 17:13:53 +0000337 // Check if we've already translated this subprogram.
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000338 auto I = TypeIndices.find({SP, nullptr});
David Majnemer75c3ebf2016-06-02 17:13:53 +0000339 if (I != TypeIndices.end())
340 return I->second;
Reid Kleckner2280f932016-05-23 20:23:46 +0000341
Reid Klecknerac945e22016-06-17 16:11:20 +0000342 // The display name includes function template arguments. Drop them to match
343 // MSVC.
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000344 StringRef DisplayName = SP->getName().split('<').first;
David Majnemer75c3ebf2016-06-02 17:13:53 +0000345
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000346 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);
Zachary Turner6900de12017-11-28 18:33:17 +0000355 TI = TypeTable.writeLeafType(MFuncId);
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000356 } else {
357 // Otherwise, this must be a free function.
358 TypeIndex ParentScope = getScopeIndex(Scope);
359 FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName);
Zachary Turner6900de12017-11-28 18:33:17 +0000360 TI = TypeTable.writeLeafType(FuncId);
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000361 }
362
363 return recordTypeIndexForDINode(SP, TI);
Reid Kleckner2280f932016-05-23 20:23:46 +0000364}
365
Aaron Smith802b0332018-10-02 20:21:05 +0000366static bool isTrivial(const DICompositeType *DCTy) {
367 return ((DCTy->getFlags() & DINode::FlagTrivial) == DINode::FlagTrivial);
368}
369
370static FunctionOptions
371getFunctionOptions(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 (!isTrivial(ReturnDCTy))
383 FO |= FunctionOptions::CxxReturnUdt;
384 }
385
386 // DISubroutineType is unnamed. Use DISubprogram's i.e. SPName in comparison.
387 if (ClassTy && !isTrivial(ClassTy) && SPName == ClassTy->getName()) {
388 FO |= FunctionOptions::Constructor;
389
390 // TODO: put the FunctionOptions::ConstructorWithVirtualBases flag.
391
392 }
393 return FO;
394}
395
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000396TypeIndex CodeViewDebug::getMemberFunctionType(const DISubprogram *SP,
397 const DICompositeType *Class) {
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000398 // 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
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000404 // Key the MemberFunctionRecord into the map as {SP, Class}. It won't collide
405 // with the MemberFuncIdRecord, which is keyed in as {SP, nullptr}.
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000406 auto I = TypeIndices.find({SP, Class});
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000407 if (I != TypeIndices.end())
408 return I->second;
409
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000410 // 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);
Adrian McCarthyd91bf392017-09-13 20:53:55 +0000414 const bool IsStaticMethod = (SP->getFlags() & DINode::FlagStaticMember) != 0;
Aaron Smith802b0332018-10-02 20:21:05 +0000415
416 FunctionOptions FO = getFunctionOptions(SP->getType(), Class, SP->getName());
Adrian McCarthyd91bf392017-09-13 20:53:55 +0000417 TypeIndex TI = lowerTypeMemberFunction(
Aaron Smith802b0332018-10-02 20:21:05 +0000418 SP->getType(), Class, SP->getThisAdjustment(), IsStaticMethod, FO);
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000419 return recordTypeIndexForDINode(SP, TI, Class);
420}
421
Amjad Aboudacee5682016-07-12 12:06:34 +0000422TypeIndex CodeViewDebug::recordTypeIndexForDINode(const DINode *Node,
423 TypeIndex TI,
424 const DIType *ClassTy) {
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000425 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI});
Reid Klecknera8d57402016-06-03 15:58:20 +0000426 (void)InsertResult;
427 assert(InsertResult.second && "DINode was already assigned a type index");
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000428 return TI;
Reid Klecknera8d57402016-06-03 15:58:20 +0000429}
430
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000431unsigned CodeViewDebug::getPointerSizeInBytes() {
432 return MMI->getModule()->getDataLayout().getPointerSizeInBits() / 8;
433}
434
Reid Kleckner876330d2016-02-12 21:48:30 +0000435void CodeViewDebug::recordLocalVariable(LocalVariable &&Var,
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000436 const LexicalScope *LS) {
437 if (const DILocation *InlinedAt = LS->getInlinedAt()) {
Reid Kleckner876330d2016-02-12 21:48:30 +0000438 // 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 {
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000443 // This variable goes into the corresponding lexical scope.
444 ScopeVariables[LS].emplace_back(Var);
Reid Kleckner876330d2016-02-12 21:48:30 +0000445 }
446}
447
Reid Kleckner829365a2016-02-11 19:41:47 +0000448static 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
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000455void CodeViewDebug::maybeRecordLocation(const DebugLoc &DL,
Reid Kleckner9533af42016-01-16 00:09:09 +0000456 const MachineFunction *MF) {
457 // Skip this instruction if it has the same location as the previous one.
Reid Kleckner45a74622017-06-30 21:33:44 +0000458 if (!DL || DL == PrevInstLoc)
Reid Kleckner9533af42016-01-16 00:09:09 +0000459 return;
460
461 const DIScope *Scope = DL.get()->getScope();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000462 if (!Scope)
463 return;
Reid Kleckner9533af42016-01-16 00:09:09 +0000464
David Majnemerc3340db2016-01-13 01:05:23 +0000465 // Skip this line if it is longer than the maximum we can record.
Reid Kleckner2214ed82016-01-29 00:49:42 +0000466 LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
467 if (LI.getStartLine() != DL.getLine() || LI.isAlwaysStepInto() ||
468 LI.isNeverStepInto())
David Majnemerc3340db2016-01-13 01:05:23 +0000469 return;
470
Reid Kleckner2214ed82016-01-29 00:49:42 +0000471 ColumnInfo CI(DL.getCol(), /*EndColumn=*/0);
472 if (CI.getStartColumn() != DL.getCol())
473 return;
Reid Kleckner00d96392016-01-29 00:13:28 +0000474
Reid Kleckner2214ed82016-01-29 00:49:42 +0000475 if (!CurFn->HaveLineInfo)
476 CurFn->HaveLineInfo = true;
477 unsigned FileId = 0;
Reid Kleckner45a74622017-06-30 21:33:44 +0000478 if (PrevInstLoc.get() && PrevInstLoc->getFile() == DL->getFile())
Reid Kleckner2214ed82016-01-29 00:49:42 +0000479 FileId = CurFn->LastFileId;
480 else
481 FileId = CurFn->LastFileId = maybeRecordFile(DL->getFile());
Reid Kleckner45a74622017-06-30 21:33:44 +0000482 PrevInstLoc = DL;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000483
484 unsigned FuncId = CurFn->FuncId;
Reid Kleckner876330d2016-02-12 21:48:30 +0000485 if (const DILocation *SiteLoc = DL->getInlinedAt()) {
Reid Kleckner829365a2016-02-11 19:41:47 +0000486 const DILocation *Loc = DL.get();
487
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000488 // If this location was actually inlined from somewhere else, give it the ID
489 // of the inline call site.
Reid Kleckner876330d2016-02-12 21:48:30 +0000490 FuncId =
491 getInlineSite(SiteLoc, Loc->getScope()->getSubprogram()).SiteFuncId;
Reid Kleckner829365a2016-02-11 19:41:47 +0000492
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000493 // Ensure we have links in the tree of inline call sites.
Reid Kleckner829365a2016-02-11 19:41:47 +0000494 bool FirstLoc = true;
495 while ((SiteLoc = Loc->getInlinedAt())) {
Reid Kleckner876330d2016-02-12 21:48:30 +0000496 InlineSite &Site =
497 getInlineSite(SiteLoc, Loc->getScope()->getSubprogram());
Reid Kleckner829365a2016-02-11 19:41:47 +0000498 if (!FirstLoc)
499 addLocIfNotPresent(Site.ChildSites, Loc);
500 FirstLoc = false;
501 Loc = SiteLoc;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000502 }
Reid Kleckner829365a2016-02-11 19:41:47 +0000503 addLocIfNotPresent(CurFn->ChildSites, Loc);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000504 }
505
Reid Klecknerdac21b42016-02-03 21:15:48 +0000506 OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
Reid Klecknera9f4cc92016-09-07 16:15:31 +0000507 /*PrologueEnd=*/false, /*IsStmt=*/false,
508 DL->getFilename(), SMLoc());
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000509}
510
Reid Kleckner5d122f82016-05-25 23:16:12 +0000511void CodeViewDebug::emitCodeViewMagicVersion() {
512 OS.EmitValueToAlignment(4);
513 OS.AddComment("Debug section magic");
514 OS.EmitIntValue(COFF::DEBUG_SECTION_MAGIC, 4);
515}
516
Reid Kleckner70f5bc92016-01-14 19:25:04 +0000517void CodeViewDebug::endModule() {
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000518 if (!Asm || !MMI->hasDebugInfo())
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000519 return;
520
521 assert(Asm != nullptr);
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000522
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
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000528 // Use the generic .debug$S section, and make a subsection for all the inlined
529 // subprograms.
530 switchToDebugSectionForSymbol(nullptr);
Adrian McCarthy4333daa2016-11-02 21:30:35 +0000531
Zachary Turner8c099fe2017-05-30 16:36:15 +0000532 MCSymbol *CompilerInfo = beginCVSubsection(DebugSubsectionKind::Symbols);
Adrian McCarthy4333daa2016-11-02 21:30:35 +0000533 emitCompilerInformation();
534 endCVSubsection(CompilerInfo);
535
Reid Kleckner5d122f82016-05-25 23:16:12 +0000536 emitInlineeLinesSubsection();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000537
Reid Kleckner2214ed82016-01-29 00:49:42 +0000538 // Emit per-function debug information.
539 for (auto &P : FnDebugInfo)
David Majnemer577be0f2016-06-15 00:19:52 +0000540 if (!P.first->isDeclarationForLinker())
Reid Kleckner55baeef2018-03-15 21:12:21 +0000541 emitDebugInfoForFunction(P.first, *P.second);
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000542
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000543 // Emit global variable debug information.
David Majnemer3128b102016-06-15 18:00:01 +0000544 setCurrentSubprogram(nullptr);
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000545 emitDebugInfoForGlobals();
546
Hans Wennborgb510b452016-06-23 16:33:53 +0000547 // Emit retained types.
548 emitDebugInfoForRetainedTypes();
549
Reid Kleckner5d122f82016-05-25 23:16:12 +0000550 // Switch back to the generic .debug$S section after potentially processing
551 // comdat symbol sections.
552 switchToDebugSectionForSymbol(nullptr);
553
David Majnemer3128b102016-06-15 18:00:01 +0000554 // Emit UDT records for any types used by global variables.
555 if (!GlobalUDTs.empty()) {
Zachary Turner8c099fe2017-05-30 16:36:15 +0000556 MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
David Majnemer3128b102016-06-15 18:00:01 +0000557 emitDebugInfoForUDTs(GlobalUDTs);
558 endCVSubsection(SymbolsEnd);
559 }
560
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000561 // This subsection holds a file index to offset in string table table.
Reid Klecknerdac21b42016-02-03 21:15:48 +0000562 OS.AddComment("File index to string table offset subsection");
563 OS.EmitCVFileChecksumsDirective();
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000564
565 // This subsection holds the string table.
Reid Klecknerdac21b42016-02-03 21:15:48 +0000566 OS.AddComment("String table");
567 OS.EmitCVStringTableDirective();
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000568
Reid Kleckner810687c2018-10-12 18:19:06 +0000569 // 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
Zachary Turner048f8f92017-12-13 22:33:58 +0000574 // Emit type information and hashes last, so that any types we translate while
575 // emitting function info are included.
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000576 emitTypeInformation();
577
Zachary Turner048f8f92017-12-13 22:33:58 +0000578 if (EmitDebugGlobalHashes)
579 emitTypeGlobalHashes();
580
Timur Iskhodzhanov2cf8a1d2014-10-10 16:05:32 +0000581 clear();
582}
583
Brock Wyma19e17b32018-02-11 21:26:46 +0000584static void emitNullTerminatedSymbolName(MCStreamer &OS, StringRef S,
585 unsigned MaxFixedRecordLength = 0xF00) {
Reid Klecknerbb96df62016-10-05 22:36:07 +0000586 // 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.
Reid Klecknerbb96df62016-10-05 22:36:07 +0000590 SmallString<32> NullTerminatedString(
591 S.take_front(MaxRecordLength - MaxFixedRecordLength - 1));
David Majnemerb9456a52016-03-14 05:15:09 +0000592 NullTerminatedString.push_back('\0');
593 OS.EmitBytes(NullTerminatedString);
594}
595
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000596void CodeViewDebug::emitTypeInformation() {
Reid Kleckner2280f932016-05-23 20:23:46 +0000597 if (TypeTable.empty())
Reid Klecknerfbd77872016-03-18 18:54:32 +0000598 return;
599
Alexandre Ganead9e96742018-04-09 20:17:56 +0000600 // Start the .debug$T or .debug$P section with 0x4.
Reid Klecknerdac21b42016-02-03 21:15:48 +0000601 OS.SwitchSection(Asm->getObjFileLowering().getCOFFDebugTypesSection());
Reid Kleckner5d122f82016-05-25 23:16:12 +0000602 emitCodeViewMagicVersion();
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000603
Reid Klecknerfbdbe9e2016-05-31 18:45:36 +0000604 SmallString<8> CommentPrefix;
605 if (OS.isVerboseAsm()) {
606 CommentPrefix += '\t';
607 CommentPrefix += Asm->MAI->getCommentString();
608 CommentPrefix += ' ';
609 }
610
Zachary Turner526f4f22017-05-19 19:26:58 +0000611 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
Zachary Turner4efa0a42016-11-08 22:24:53 +0000617 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);
Zachary Turner526f4f22017-05-19 19:26:58 +0000623 TypeDumpVisitor TDV(Table, &SP, false);
624
625 Error E = codeview::visitTypeRecord(Record, *B, TDV);
Zachary Turner4efa0a42016-11-08 22:24:53 +0000626 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());
Zachary Turner4efa0a42016-11-08 22:24:53 +0000635 }
Zachary Turner526f4f22017-05-19 19:26:58 +0000636 OS.EmitBinaryData(Record.str_data());
637 B = Table.getNext(*B);
638 }
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000639}
640
Zachary Turner048f8f92017-12-13 22:33:58 +0000641void 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");
Zachary Turnerc7626662018-05-17 22:55:15 +0000655 OS.EmitIntValue(uint16_t(GlobalTypeHashAlg::SHA1_8), 2);
Zachary Turner048f8f92017-12-13 22:33:58 +0000656
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 }
Zachary Turnerc7626662018-05-17 22:55:15 +0000668 assert(GHR.Hash.size() == 8);
Zachary Turner048f8f92017-12-13 22:33:58 +0000669 StringRef S(reinterpret_cast<const char *>(GHR.Hash.data()),
670 GHR.Hash.size());
671 OS.EmitBinaryData(S);
672 }
673}
674
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000675static 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;
Reid Kleckner898ddf62017-07-24 16:16:42 +0000700 case dwarf::DW_LANG_D:
701 return SourceLanguage::D;
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000702 default:
703 // There's no CodeView representation for this language, and CV doesn't
704 // have an "unknown" option for the language field, so we'll use MASM,
705 // as it's very low level.
706 return SourceLanguage::Masm;
707 }
708}
709
Reid Kleckner7f6b2532017-07-24 16:16:17 +0000710namespace {
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000711struct Version {
712 int Part[4];
713};
Reid Kleckner7f6b2532017-07-24 16:16:17 +0000714} // end anonymous namespace
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000715
716// Takes a StringRef like "clang 4.0.0.0 (other nonsense 123)" and parses out
717// the version number.
718static Version parseVersion(StringRef Name) {
Adrian McCarthyad8ac542016-09-20 17:42:13 +0000719 Version V = {{0}};
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000720 int N = 0;
721 for (const char C : Name) {
722 if (isdigit(C)) {
723 V.Part[N] *= 10;
724 V.Part[N] += C - '0';
725 } else if (C == '.') {
726 ++N;
727 if (N >= 4)
728 return V;
729 } else if (N > 0)
730 return V;
731 }
732 return V;
733}
734
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000735void CodeViewDebug::emitCompilerInformation() {
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000736 MCSymbol *CompilerEnd = beginSymbolRecord(SymbolKind::S_COMPILE3);
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000737 uint32_t Flags = 0;
738
739 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
740 const MDNode *Node = *CUs->operands().begin();
741 const auto *CU = cast<DICompileUnit>(Node);
742
743 // The low byte of the flags indicates the source language.
744 Flags = MapDWLangToCVLang(CU->getSourceLanguage());
745 // TODO: Figure out which other flags need to be set.
746
747 OS.AddComment("Flags and language");
748 OS.EmitIntValue(Flags, 4);
749
750 OS.AddComment("CPUType");
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000751 OS.EmitIntValue(static_cast<uint64_t>(TheCPU), 2);
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000752
753 StringRef CompilerVersion = CU->getProducer();
754 Version FrontVer = parseVersion(CompilerVersion);
755 OS.AddComment("Frontend version");
756 for (int N = 0; N < 4; ++N)
757 OS.EmitIntValue(FrontVer.Part[N], 2);
758
759 // Some Microsoft tools, like Binscope, expect a backend version number of at
760 // least 8.something, so we'll coerce the LLVM version into a form that
761 // guarantees it'll be big enough without really lying about the version.
Adrian McCarthyd1185fc2016-09-29 20:28:25 +0000762 int Major = 1000 * LLVM_VERSION_MAJOR +
763 10 * LLVM_VERSION_MINOR +
764 LLVM_VERSION_PATCH;
765 // Clamp it for builds that use unusually large version numbers.
766 Major = std::min<int>(Major, std::numeric_limits<uint16_t>::max());
767 Version BackVer = {{ Major, 0, 0, 0 }};
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000768 OS.AddComment("Backend version");
769 for (int N = 0; N < 4; ++N)
770 OS.EmitIntValue(BackVer.Part[N], 2);
771
772 OS.AddComment("Null-terminated compiler version string");
773 emitNullTerminatedSymbolName(OS, CompilerVersion);
774
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000775 endSymbolRecord(CompilerEnd);
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000776}
777
Reid Kleckner810687c2018-10-12 18:19:06 +0000778static TypeIndex getStringIdTypeIdx(GlobalTypeTableBuilder &TypeTable,
779 StringRef S) {
780 StringIdRecord SIR(TypeIndex(0x0), S);
781 return TypeTable.writeLeafType(SIR);
782}
783
784void CodeViewDebug::emitBuildInfo() {
785 // First, make LF_BUILDINFO. It's a sequence of strings with various bits of
786 // build info. The known prefix is:
787 // - Absolute path of current directory
788 // - Compiler path
789 // - Main source file path, relative to CWD or absolute
790 // - Type server PDB file
791 // - Canonical compiler command line
792 // If frontend and backend compilation are separated (think llc or LTO), it's
793 // not clear if the compiler path should refer to the executable for the
794 // frontend or the backend. Leave it blank for now.
795 TypeIndex BuildInfoArgs[BuildInfoRecord::MaxArgs] = {};
796 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
797 const MDNode *Node = *CUs->operands().begin(); // FIXME: Multiple CUs.
798 const auto *CU = cast<DICompileUnit>(Node);
799 const DIFile *MainSourceFile = CU->getFile();
800 BuildInfoArgs[BuildInfoRecord::CurrentDirectory] =
801 getStringIdTypeIdx(TypeTable, MainSourceFile->getDirectory());
802 BuildInfoArgs[BuildInfoRecord::SourceFile] =
803 getStringIdTypeIdx(TypeTable, MainSourceFile->getFilename());
804 // FIXME: Path to compiler and command line. PDB is intentionally blank unless
805 // we implement /Zi type servers.
806 BuildInfoRecord BIR(BuildInfoArgs);
807 TypeIndex BuildInfoIndex = TypeTable.writeLeafType(BIR);
808
809 // Make a new .debug$S subsection for the S_BUILDINFO record, which points
810 // from the module symbols into the type stream.
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000811 MCSymbol *BISubsecEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
812 MCSymbol *BIEnd = beginSymbolRecord(SymbolKind::S_BUILDINFO);
Reid Kleckner810687c2018-10-12 18:19:06 +0000813 OS.AddComment("LF_BUILDINFO index");
814 OS.EmitIntValue(BuildInfoIndex.getIndex(), 4);
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000815 endSymbolRecord(BIEnd);
816 endCVSubsection(BISubsecEnd);
Reid Kleckner810687c2018-10-12 18:19:06 +0000817}
818
Reid Kleckner5d122f82016-05-25 23:16:12 +0000819void CodeViewDebug::emitInlineeLinesSubsection() {
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000820 if (InlinedSubprograms.empty())
821 return;
822
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000823 OS.AddComment("Inlinee lines subsection");
Zachary Turner8c099fe2017-05-30 16:36:15 +0000824 MCSymbol *InlineEnd = beginCVSubsection(DebugSubsectionKind::InlineeLines);
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000825
Reid Kleckner26fa1bf2017-09-19 18:14:45 +0000826 // We emit the checksum info for files. This is used by debuggers to
827 // determine if a pdb matches the source before loading it. Visual Studio,
828 // for instance, will display a warning that the breakpoints are not valid if
829 // the pdb does not match the source.
David Majnemer30579ec2016-02-02 23:18:23 +0000830 OS.AddComment("Inlinee lines signature");
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000831 OS.EmitIntValue(unsigned(InlineeLinesSignature::Normal), 4);
832
833 for (const DISubprogram *SP : InlinedSubprograms) {
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000834 assert(TypeIndices.count({SP, nullptr}));
835 TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}];
Reid Kleckner2280f932016-05-23 20:23:46 +0000836
David Majnemer30579ec2016-02-02 23:18:23 +0000837 OS.AddBlankLine();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000838 unsigned FileId = maybeRecordFile(SP->getFile());
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000839 OS.AddComment("Inlined function " + SP->getName() + " starts at " +
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000840 SP->getFilename() + Twine(':') + Twine(SP->getLine()));
David Majnemer30579ec2016-02-02 23:18:23 +0000841 OS.AddBlankLine();
David Majnemer30579ec2016-02-02 23:18:23 +0000842 OS.AddComment("Type index of inlined function");
Reid Kleckner2280f932016-05-23 20:23:46 +0000843 OS.EmitIntValue(InlineeIdx.getIndex(), 4);
David Majnemer30579ec2016-02-02 23:18:23 +0000844 OS.AddComment("Offset into filechecksum table");
Reid Kleckner26fa1bf2017-09-19 18:14:45 +0000845 OS.EmitCVFileChecksumOffsetDirective(FileId);
David Majnemer30579ec2016-02-02 23:18:23 +0000846 OS.AddComment("Starting line number");
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000847 OS.EmitIntValue(SP->getLine(), 4);
848 }
849
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000850 endCVSubsection(InlineEnd);
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000851}
852
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000853void CodeViewDebug::emitInlinedCallSite(const FunctionInfo &FI,
854 const DILocation *InlinedAt,
855 const InlineSite &Site) {
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000856 assert(TypeIndices.count({Site.Inlinee, nullptr}));
857 TypeIndex InlineeIdx = TypeIndices[{Site.Inlinee, nullptr}];
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000858
859 // SymbolRecord
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000860 MCSymbol *InlineEnd = beginSymbolRecord(SymbolKind::S_INLINESITE);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000861
Reid Klecknerdac21b42016-02-03 21:15:48 +0000862 OS.AddComment("PtrParent");
863 OS.EmitIntValue(0, 4);
864 OS.AddComment("PtrEnd");
865 OS.EmitIntValue(0, 4);
866 OS.AddComment("Inlinee type index");
Reid Kleckner2280f932016-05-23 20:23:46 +0000867 OS.EmitIntValue(InlineeIdx.getIndex(), 4);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000868
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000869 unsigned FileId = maybeRecordFile(Site.Inlinee->getFile());
870 unsigned StartLineNum = Site.Inlinee->getLine();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000871
872 OS.EmitCVInlineLinetableDirective(Site.SiteFuncId, FileId, StartLineNum,
Reid Klecknera9f4cc92016-09-07 16:15:31 +0000873 FI.Begin, FI.End);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000874
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000875 endSymbolRecord(InlineEnd);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000876
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000877 emitLocalVariableList(FI, Site.InlinedLocals);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000878
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000879 // Recurse on child inlined call sites before closing the scope.
880 for (const DILocation *ChildSite : Site.ChildSites) {
881 auto I = FI.InlineSites.find(ChildSite);
882 assert(I != FI.InlineSites.end() &&
883 "child site not in function inline site map");
884 emitInlinedCallSite(FI, ChildSite, I->second);
885 }
886
887 // Close the scope.
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000888 emitEndSymbolRecord(SymbolKind::S_INLINESITE_END);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000889}
890
Reid Kleckner5d122f82016-05-25 23:16:12 +0000891void CodeViewDebug::switchToDebugSectionForSymbol(const MCSymbol *GVSym) {
892 // If we have a symbol, it may be in a section that is COMDAT. If so, find the
893 // comdat key. A section may be comdat because of -ffunction-sections or
894 // because it is comdat in the IR.
895 MCSectionCOFF *GVSec =
896 GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr;
897 const MCSymbol *KeySym = GVSec ? GVSec->getCOMDATSymbol() : nullptr;
898
899 MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
900 Asm->getObjFileLowering().getCOFFDebugSymbolsSection());
901 DebugSec = OS.getContext().getAssociativeCOFFSection(DebugSec, KeySym);
902
903 OS.SwitchSection(DebugSec);
904
905 // Emit the magic version number if this is the first time we've switched to
906 // this section.
907 if (ComdatDebugSections.insert(DebugSec).second)
908 emitCodeViewMagicVersion();
909}
910
Brock Wyma94ece8f2018-04-16 16:53:57 +0000911// Emit an S_THUNK32/S_END symbol pair for a thunk routine.
912// The only supported thunk ordinal is currently the standard type.
913void CodeViewDebug::emitDebugInfoForThunk(const Function *GV,
914 FunctionInfo &FI,
915 const MCSymbol *Fn) {
916 std::string FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName());
917 const ThunkOrdinal ordinal = ThunkOrdinal::Standard; // Only supported kind.
918
919 OS.AddComment("Symbol subsection for " + Twine(FuncName));
920 MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
921
922 // Emit S_THUNK32
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000923 MCSymbol *ThunkRecordEnd = beginSymbolRecord(SymbolKind::S_THUNK32);
Brock Wyma94ece8f2018-04-16 16:53:57 +0000924 OS.AddComment("PtrParent");
925 OS.EmitIntValue(0, 4);
926 OS.AddComment("PtrEnd");
927 OS.EmitIntValue(0, 4);
928 OS.AddComment("PtrNext");
929 OS.EmitIntValue(0, 4);
930 OS.AddComment("Thunk section relative address");
931 OS.EmitCOFFSecRel32(Fn, /*Offset=*/0);
932 OS.AddComment("Thunk section index");
933 OS.EmitCOFFSectionIndex(Fn);
934 OS.AddComment("Code size");
935 OS.emitAbsoluteSymbolDiff(FI.End, Fn, 2);
936 OS.AddComment("Ordinal");
937 OS.EmitIntValue(unsigned(ordinal), 1);
938 OS.AddComment("Function name");
939 emitNullTerminatedSymbolName(OS, FuncName);
940 // Additional fields specific to the thunk ordinal would go here.
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000941 endSymbolRecord(ThunkRecordEnd);
Brock Wyma94ece8f2018-04-16 16:53:57 +0000942
943 // Local variables/inlined routines are purposely omitted here. The point of
944 // marking this as a thunk is so Visual Studio will NOT stop in this routine.
945
946 // Emit S_PROC_ID_END
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000947 emitEndSymbolRecord(SymbolKind::S_PROC_ID_END);
Brock Wyma94ece8f2018-04-16 16:53:57 +0000948
949 endCVSubsection(SymbolsEnd);
950}
951
Reid Kleckner2214ed82016-01-29 00:49:42 +0000952void CodeViewDebug::emitDebugInfoForFunction(const Function *GV,
953 FunctionInfo &FI) {
Brock Wyma31cc1eb2018-01-30 13:16:50 +0000954 // For each function there is a separate subsection which holds the PC to
955 // file:line table.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000956 const MCSymbol *Fn = Asm->getSymbol(GV);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000957 assert(Fn);
Timur Iskhodzhanov8499a122014-03-26 09:50:36 +0000958
Reid Kleckner5d122f82016-05-25 23:16:12 +0000959 // Switch to the to a comdat section, if appropriate.
960 switchToDebugSectionForSymbol(Fn);
961
Reid Klecknerac945e22016-06-17 16:11:20 +0000962 std::string FuncName;
David Majnemer3128b102016-06-15 18:00:01 +0000963 auto *SP = GV->getSubprogram();
David Majnemer67f684e2016-07-28 05:03:22 +0000964 assert(SP);
David Majnemer3128b102016-06-15 18:00:01 +0000965 setCurrentSubprogram(SP);
Reid Klecknerac945e22016-06-17 16:11:20 +0000966
Brock Wyma94ece8f2018-04-16 16:53:57 +0000967 if (SP->isThunk()) {
968 emitDebugInfoForThunk(GV, FI, Fn);
969 return;
970 }
971
Reid Klecknerac945e22016-06-17 16:11:20 +0000972 // If we have a display name, build the fully qualified name by walking the
973 // chain of scopes.
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000974 if (!SP->getName().empty())
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000975 FuncName =
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000976 getFullyQualifiedName(SP->getScope().resolve(), SP->getName());
Duncan P. N. Exon Smith23e56ec2015-03-20 19:50:00 +0000977
Reid Kleckner3c0ff982016-01-14 00:12:54 +0000978 // If our DISubprogram name is empty, use the mangled name.
Reid Kleckner72e2ba72016-01-13 19:32:35 +0000979 if (FuncName.empty())
Peter Collingbourne6f0ecca2017-05-16 00:39:01 +0000980 FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName());
Reid Kleckner3c0ff982016-01-14 00:12:54 +0000981
Reid Kleckner9cdd4df2017-10-11 21:24:33 +0000982 // Emit FPO data, but only on 32-bit x86. No other platforms use it.
983 if (Triple(MMI->getModule()->getTargetTriple()).getArch() == Triple::x86)
984 OS.EmitCVFPOData(Fn);
985
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +0000986 // Emit a symbol subsection, required by VS2012+ to find function boundaries.
Reid Klecknerdac21b42016-02-03 21:15:48 +0000987 OS.AddComment("Symbol subsection for " + Twine(FuncName));
Zachary Turner8c099fe2017-05-30 16:36:15 +0000988 MCSymbol *SymbolsEnd = beginCVSubsection(DebugSubsectionKind::Symbols);
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +0000989 {
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000990 SymbolKind ProcKind = GV->hasLocalLinkage() ? SymbolKind::S_LPROC32_ID
991 : SymbolKind::S_GPROC32_ID;
992 MCSymbol *ProcRecordEnd = beginSymbolRecord(ProcKind);
Reid Kleckner6b3faef2016-01-13 23:44:57 +0000993
David Majnemer30579ec2016-02-02 23:18:23 +0000994 // These fields are filled in by tools like CVPACK which run after the fact.
Reid Klecknerdac21b42016-02-03 21:15:48 +0000995 OS.AddComment("PtrParent");
996 OS.EmitIntValue(0, 4);
997 OS.AddComment("PtrEnd");
998 OS.EmitIntValue(0, 4);
999 OS.AddComment("PtrNext");
1000 OS.EmitIntValue(0, 4);
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +00001001 // This is the important bit that tells the debugger where the function
1002 // code is located and what's its size:
Reid Klecknerdac21b42016-02-03 21:15:48 +00001003 OS.AddComment("Code size");
Reid Klecknereb3bcdd2016-02-03 21:24:42 +00001004 OS.emitAbsoluteSymbolDiff(FI.End, Fn, 4);
Reid Klecknerdac21b42016-02-03 21:15:48 +00001005 OS.AddComment("Offset after prologue");
1006 OS.EmitIntValue(0, 4);
1007 OS.AddComment("Offset before epilogue");
1008 OS.EmitIntValue(0, 4);
1009 OS.AddComment("Function type index");
David Majnemer75c3ebf2016-06-02 17:13:53 +00001010 OS.EmitIntValue(getFuncIdForSubprogram(GV->getSubprogram()).getIndex(), 4);
Reid Klecknerdac21b42016-02-03 21:15:48 +00001011 OS.AddComment("Function section relative address");
Keno Fischerf7d84ee2017-01-02 03:00:19 +00001012 OS.EmitCOFFSecRel32(Fn, /*Offset=*/0);
Reid Klecknerdac21b42016-02-03 21:15:48 +00001013 OS.AddComment("Function section index");
1014 OS.EmitCOFFSectionIndex(Fn);
1015 OS.AddComment("Flags");
1016 OS.EmitIntValue(0, 1);
Timur Iskhodzhanova11b32b2014-11-12 20:10:09 +00001017 // Emit the function display name as a null-terminated string.
Reid Klecknerdac21b42016-02-03 21:15:48 +00001018 OS.AddComment("Function name");
David Majnemer12561252016-03-13 10:53:30 +00001019 // Truncate the name so we won't overflow the record length field.
David Majnemerb9456a52016-03-14 05:15:09 +00001020 emitNullTerminatedSymbolName(OS, FuncName);
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001021 endSymbolRecord(ProcRecordEnd);
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +00001022
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001023 MCSymbol *FrameProcEnd = beginSymbolRecord(SymbolKind::S_FRAMEPROC);
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001024 // Subtract out the CSR size since MSVC excludes that and we include it.
1025 OS.AddComment("FrameSize");
1026 OS.EmitIntValue(FI.FrameSize - FI.CSRSize, 4);
1027 OS.AddComment("Padding");
1028 OS.EmitIntValue(0, 4);
1029 OS.AddComment("Offset of padding");
1030 OS.EmitIntValue(0, 4);
1031 OS.AddComment("Bytes of callee saved registers");
1032 OS.EmitIntValue(FI.CSRSize, 4);
1033 OS.AddComment("Exception handler offset");
1034 OS.EmitIntValue(0, 4);
1035 OS.AddComment("Exception handler section");
1036 OS.EmitIntValue(0, 2);
1037 OS.AddComment("Flags (defines frame register)");
1038 OS.EmitIntValue(uint32_t(FI.FrameProcOpts), 4);
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001039 endSymbolRecord(FrameProcEnd);
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001040
1041 emitLocalVariableList(FI, FI.Locals);
Brock Wymab17464e2018-12-20 17:33:45 +00001042 emitGlobalVariableList(FI.Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00001043 emitLexicalBlockList(FI.ChildBlocks, FI);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001044
Reid Klecknerf3b9ba42016-01-29 18:16:43 +00001045 // Emit inlined call site information. Only emit functions inlined directly
1046 // into the parent function. We'll emit the other sites recursively as part
1047 // of their parent inline site.
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001048 for (const DILocation *InlinedAt : FI.ChildSites) {
1049 auto I = FI.InlineSites.find(InlinedAt);
1050 assert(I != FI.InlineSites.end() &&
1051 "child site not in function inline site map");
1052 emitInlinedCallSite(FI, InlinedAt, I->second);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +00001053 }
1054
Reid Klecknere33c94f2017-09-05 20:14:58 +00001055 for (auto Annot : FI.Annotations) {
1056 MCSymbol *Label = Annot.first;
1057 MDTuple *Strs = cast<MDTuple>(Annot.second);
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001058 MCSymbol *AnnotEnd = beginSymbolRecord(SymbolKind::S_ANNOTATION);
Reid Klecknere33c94f2017-09-05 20:14:58 +00001059 OS.EmitCOFFSecRel32(Label, /*Offset=*/0);
1060 // FIXME: Make sure we don't overflow the max record size.
1061 OS.EmitCOFFSectionIndex(Label);
1062 OS.EmitIntValue(Strs->getNumOperands(), 2);
1063 for (Metadata *MD : Strs->operands()) {
1064 // MDStrings are null terminated, so we can do EmitBytes and get the
1065 // nice .asciz directive.
1066 StringRef Str = cast<MDString>(MD)->getString();
1067 assert(Str.data()[Str.size()] == '\0' && "non-nullterminated MDString");
1068 OS.EmitBytes(StringRef(Str.data(), Str.size() + 1));
1069 }
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001070 endSymbolRecord(AnnotEnd);
Reid Klecknere33c94f2017-09-05 20:14:58 +00001071 }
1072
David Majnemer3128b102016-06-15 18:00:01 +00001073 if (SP != nullptr)
1074 emitDebugInfoForUDTs(LocalUDTs);
1075
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +00001076 // We're done with this function.
Reid Kleckner5bf71d12018-12-14 22:40:28 +00001077 emitEndSymbolRecord(SymbolKind::S_PROC_ID_END);
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +00001078 }
Reid Kleckner6f3406d2016-06-07 00:02:03 +00001079 endCVSubsection(SymbolsEnd);
Timur Iskhodzhanov2bc90fd2014-10-24 01:27:45 +00001080
Reid Kleckner2214ed82016-01-29 00:49:42 +00001081 // We have an assembler directive that takes care of the whole line table.
Reid Klecknerdac21b42016-02-03 21:15:48 +00001082 OS.EmitCVLinetableDirective(FI.FuncId, Fn, FI.End);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001083}
1084
Reid Kleckner876330d2016-02-12 21:48:30 +00001085CodeViewDebug::LocalVarDefRange
1086CodeViewDebug::createDefRangeMem(uint16_t CVRegister, int Offset) {
1087 LocalVarDefRange DR;
Aaron Ballmanc6a2f212016-02-16 15:35:51 +00001088 DR.InMemory = -1;
Reid Kleckner876330d2016-02-12 21:48:30 +00001089 DR.DataOffset = Offset;
1090 assert(DR.DataOffset == Offset && "truncation");
Reid Kleckner2b3e6422016-10-05 21:21:33 +00001091 DR.IsSubfield = 0;
Reid Kleckner876330d2016-02-12 21:48:30 +00001092 DR.StructOffset = 0;
1093 DR.CVRegister = CVRegister;
1094 return DR;
1095}
1096
Matthias Braunef331ef2016-11-30 23:48:50 +00001097void CodeViewDebug::collectVariableInfoFromMFTable(
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +00001098 DenseSet<InlinedEntity> &Processed) {
Matthias Braunef331ef2016-11-30 23:48:50 +00001099 const MachineFunction &MF = *Asm->MF;
1100 const TargetSubtargetInfo &TSI = MF.getSubtarget();
Reid Kleckner876330d2016-02-12 21:48:30 +00001101 const TargetFrameLowering *TFI = TSI.getFrameLowering();
1102 const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1103
Matthias Braunef331ef2016-11-30 23:48:50 +00001104 for (const MachineFunction::VariableDbgInfo &VI : MF.getVariableDbgInfo()) {
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001105 if (!VI.Var)
1106 continue;
1107 assert(VI.Var->isValidLocationForIntrinsic(VI.Loc) &&
1108 "Expected inlined-at fields to agree");
1109
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +00001110 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt()));
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001111 LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc);
1112
1113 // If variable scope is not found then skip this variable.
1114 if (!Scope)
1115 continue;
1116
Reid Klecknerb5fced72017-05-09 19:59:29 +00001117 // If the variable has an attached offset expression, extract it.
1118 // FIXME: Try to handle DW_OP_deref as well.
1119 int64_t ExprOffset = 0;
1120 if (VI.Expr)
1121 if (!VI.Expr->extractIfOffset(ExprOffset))
1122 continue;
1123
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001124 // Get the frame register used and the offset.
1125 unsigned FrameReg = 0;
Reid Kleckner876330d2016-02-12 21:48:30 +00001126 int FrameOffset = TFI->getFrameIndexReference(*Asm->MF, VI.Slot, FrameReg);
1127 uint16_t CVReg = TRI->getCodeViewRegNum(FrameReg);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001128
1129 // Calculate the label ranges.
Reid Klecknerb5fced72017-05-09 19:59:29 +00001130 LocalVarDefRange DefRange =
1131 createDefRangeMem(CVReg, FrameOffset + ExprOffset);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001132 for (const InsnRange &Range : Scope->getRanges()) {
1133 const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
1134 const MCSymbol *End = getLabelAfterInsn(Range.second);
Reid Kleckner876330d2016-02-12 21:48:30 +00001135 End = End ? End : Asm->getFunctionEnd();
1136 DefRange.Ranges.emplace_back(Begin, End);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001137 }
1138
Reid Kleckner876330d2016-02-12 21:48:30 +00001139 LocalVariable Var;
1140 Var.DIVar = VI.Var;
1141 Var.DefRanges.emplace_back(std::move(DefRange));
Reid Kleckner5a791ee2018-03-15 21:24:04 +00001142 recordLocalVariable(std::move(Var), Scope);
Reid Kleckner876330d2016-02-12 21:48:30 +00001143 }
1144}
1145
Reid Kleckner08f5fd52017-08-31 15:56:49 +00001146static bool canUseReferenceType(const DbgVariableLocation &Loc) {
1147 return !Loc.LoadChain.empty() && Loc.LoadChain.back() == 0;
1148}
1149
1150static bool needsReferenceType(const DbgVariableLocation &Loc) {
1151 return Loc.LoadChain.size() == 2 && Loc.LoadChain.back() == 0;
1152}
1153
Bob Haarman223303c2017-08-29 20:59:25 +00001154void CodeViewDebug::calculateRanges(
1155 LocalVariable &Var, const DbgValueHistoryMap::InstrRanges &Ranges) {
1156 const TargetRegisterInfo *TRI = Asm->MF->getSubtarget().getRegisterInfo();
1157
Reid Kleckner08f5fd52017-08-31 15:56:49 +00001158 // Calculate the definition ranges.
Bob Haarman223303c2017-08-29 20:59:25 +00001159 for (auto I = Ranges.begin(), E = Ranges.end(); I != E; ++I) {
1160 const InsnRange &Range = *I;
1161 const MachineInstr *DVInst = Range.first;
1162 assert(DVInst->isDebugValue() && "Invalid History entry");
1163 // FIXME: Find a way to represent constant variables, since they are
1164 // relatively common.
Bob Haarman1a4cbbe2017-08-30 17:50:21 +00001165 Optional<DbgVariableLocation> Location =
1166 DbgVariableLocation::extractFromMachineInstruction(*DVInst);
1167 if (!Location)
Bob Haarmana88bce12017-08-29 21:01:55 +00001168 continue;
Bob Haarman223303c2017-08-29 20:59:25 +00001169
Reid Kleckner08f5fd52017-08-31 15:56:49 +00001170 // CodeView can only express variables in register and variables in memory
1171 // at a constant offset from a register. However, for variables passed
1172 // indirectly by pointer, it is common for that pointer to be spilled to a
1173 // stack location. For the special case of one offseted load followed by a
1174 // zero offset load (a pointer spilled to the stack), we change the type of
1175 // the local variable from a value type to a reference type. This tricks the
1176 // debugger into doing the load for us.
1177 if (Var.UseReferenceType) {
1178 // We're using a reference type. Drop the last zero offset load.
1179 if (canUseReferenceType(*Location))
1180 Location->LoadChain.pop_back();
1181 else
1182 continue;
1183 } else if (needsReferenceType(*Location)) {
1184 // This location can't be expressed without switching to a reference type.
1185 // Start over using that.
1186 Var.UseReferenceType = true;
Bob Haarman223303c2017-08-29 20:59:25 +00001187 Var.DefRanges.clear();
1188 calculateRanges(Var, Ranges);
1189 return;
1190 }
1191
Reid Kleckner08f5fd52017-08-31 15:56:49 +00001192 // We can only handle a register or an offseted load of a register.
1193 if (Location->Register == 0 || Location->LoadChain.size() > 1)
Bob Haarman223303c2017-08-29 20:59:25 +00001194 continue;
Bob Haarman223303c2017-08-29 20:59:25 +00001195 {
1196 LocalVarDefRange DR;
Bob Haarman1a4cbbe2017-08-30 17:50:21 +00001197 DR.CVRegister = TRI->getCodeViewRegNum(Location->Register);
Reid Kleckner08f5fd52017-08-31 15:56:49 +00001198 DR.InMemory = !Location->LoadChain.empty();
1199 DR.DataOffset =
1200 !Location->LoadChain.empty() ? Location->LoadChain.back() : 0;
Bob Haarman1a4cbbe2017-08-30 17:50:21 +00001201 if (Location->FragmentInfo) {
Bob Haarman223303c2017-08-29 20:59:25 +00001202 DR.IsSubfield = true;
Bob Haarman1a4cbbe2017-08-30 17:50:21 +00001203 DR.StructOffset = Location->FragmentInfo->OffsetInBits / 8;
Bob Haarman223303c2017-08-29 20:59:25 +00001204 } else {
1205 DR.IsSubfield = false;
1206 DR.StructOffset = 0;
1207 }
1208
1209 if (Var.DefRanges.empty() ||
1210 Var.DefRanges.back().isDifferentLocation(DR)) {
1211 Var.DefRanges.emplace_back(std::move(DR));
1212 }
1213 }
1214
1215 // Compute the label range.
1216 const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
1217 const MCSymbol *End = getLabelAfterInsn(Range.second);
1218 if (!End) {
1219 // This range is valid until the next overlapping bitpiece. In the
1220 // common case, ranges will not be bitpieces, so they will overlap.
1221 auto J = std::next(I);
1222 const DIExpression *DIExpr = DVInst->getDebugExpression();
1223 while (J != E &&
Bjorn Petterssona223f8152018-03-12 18:02:39 +00001224 !DIExpr->fragmentsOverlap(J->first->getDebugExpression()))
Bob Haarman223303c2017-08-29 20:59:25 +00001225 ++J;
1226 if (J != E)
1227 End = getLabelBeforeInsn(J->first);
1228 else
1229 End = Asm->getFunctionEnd();
1230 }
1231
1232 // If the last range end is our begin, just extend the last range.
1233 // Otherwise make a new range.
1234 SmallVectorImpl<std::pair<const MCSymbol *, const MCSymbol *>> &R =
1235 Var.DefRanges.back().Ranges;
1236 if (!R.empty() && R.back().second == Begin)
1237 R.back().second = End;
1238 else
1239 R.emplace_back(Begin, End);
1240
1241 // FIXME: Do more range combining.
1242 }
1243}
1244
Reid Kleckner876330d2016-02-12 21:48:30 +00001245void CodeViewDebug::collectVariableInfo(const DISubprogram *SP) {
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +00001246 DenseSet<InlinedEntity> Processed;
Reid Kleckner876330d2016-02-12 21:48:30 +00001247 // Grab the variable info that was squirreled away in the MMI side-table.
Matthias Braunef331ef2016-11-30 23:48:50 +00001248 collectVariableInfoFromMFTable(Processed);
Reid Kleckner876330d2016-02-12 21:48:30 +00001249
Reid Kleckner876330d2016-02-12 21:48:30 +00001250 for (const auto &I : DbgValues) {
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +00001251 InlinedEntity IV = I.first;
Reid Kleckner876330d2016-02-12 21:48:30 +00001252 if (Processed.count(IV))
1253 continue;
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +00001254 const DILocalVariable *DIVar = cast<DILocalVariable>(IV.first);
Reid Kleckner876330d2016-02-12 21:48:30 +00001255 const DILocation *InlinedAt = IV.second;
1256
1257 // Instruction ranges, specifying where IV is accessible.
1258 const auto &Ranges = I.second;
1259
1260 LexicalScope *Scope = nullptr;
1261 if (InlinedAt)
1262 Scope = LScopes.findInlinedScope(DIVar->getScope(), InlinedAt);
1263 else
1264 Scope = LScopes.findLexicalScope(DIVar->getScope());
1265 // If variable scope is not found then skip this variable.
1266 if (!Scope)
1267 continue;
1268
1269 LocalVariable Var;
1270 Var.DIVar = DIVar;
1271
Bob Haarman223303c2017-08-29 20:59:25 +00001272 calculateRanges(Var, Ranges);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00001273 recordLocalVariable(std::move(Var), Scope);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001274 }
1275}
1276
David Blaikieb2fbb4b2017-02-16 18:48:33 +00001277void CodeViewDebug::beginFunctionImpl(const MachineFunction *MF) {
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001278 const TargetSubtargetInfo &TSI = MF->getSubtarget();
1279 const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1280 const MachineFrameInfo &MFI = MF->getFrameInfo();
Matthias Braunf1caa282017-12-15 22:22:58 +00001281 const Function &GV = MF->getFunction();
Reid Kleckner55baeef2018-03-15 21:12:21 +00001282 auto Insertion = FnDebugInfo.insert({&GV, llvm::make_unique<FunctionInfo>()});
Reid Klecknere9dc30d2018-03-15 21:18:42 +00001283 assert(Insertion.second && "function already has info");
Reid Kleckner55baeef2018-03-15 21:12:21 +00001284 CurFn = Insertion.first->second.get();
Reid Kleckner2214ed82016-01-29 00:49:42 +00001285 CurFn->FuncId = NextFuncId++;
Reid Kleckner1fcd6102016-02-02 17:41:18 +00001286 CurFn->Begin = Asm->getFunctionBegin();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001287
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001288 // The S_FRAMEPROC record reports the stack size, and how many bytes of
1289 // callee-saved registers were used. For targets that don't use a PUSH
1290 // instruction (AArch64), this will be zero.
1291 CurFn->CSRSize = MFI.getCVBytesOfCalleeSavedRegisters();
1292 CurFn->FrameSize = MFI.getStackSize();
Reid Kleckner2bcb2882018-11-03 00:41:52 +00001293 CurFn->OffsetAdjustment = MFI.getOffsetAdjustment();
Reid Klecknerd5e4ec72018-10-02 16:43:52 +00001294 CurFn->HasStackRealignment = TRI->needsStackRealignment(*MF);
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001295
1296 // For this function S_FRAMEPROC record, figure out which codeview register
1297 // will be the frame pointer.
1298 CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::None; // None.
1299 CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::None; // None.
1300 if (CurFn->FrameSize > 0) {
1301 if (!TSI.getFrameLowering()->hasFP(*MF)) {
1302 CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::StackPtr;
1303 CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::StackPtr;
1304 } else {
1305 // If there is an FP, parameters are always relative to it.
1306 CurFn->EncodedParamFramePtrReg = EncodedFramePtrReg::FramePtr;
Reid Klecknerd5e4ec72018-10-02 16:43:52 +00001307 if (CurFn->HasStackRealignment) {
Reid Kleckner9ea2c012018-10-01 21:59:45 +00001308 // If the stack needs realignment, locals are relative to SP or VFRAME.
1309 CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::StackPtr;
1310 } else {
1311 // Otherwise, locals are relative to EBP, and we probably have VLAs or
1312 // other stack adjustments.
1313 CurFn->EncodedLocalFramePtrReg = EncodedFramePtrReg::FramePtr;
1314 }
1315 }
1316 }
1317
1318 // Compute other frame procedure options.
1319 FrameProcedureOptions FPO = FrameProcedureOptions::None;
1320 if (MFI.hasVarSizedObjects())
1321 FPO |= FrameProcedureOptions::HasAlloca;
1322 if (MF->exposesReturnsTwice())
1323 FPO |= FrameProcedureOptions::HasSetJmp;
1324 // FIXME: Set HasLongJmp if we ever track that info.
1325 if (MF->hasInlineAsm())
1326 FPO |= FrameProcedureOptions::HasInlineAssembly;
1327 if (GV.hasPersonalityFn()) {
1328 if (isAsynchronousEHPersonality(
1329 classifyEHPersonality(GV.getPersonalityFn())))
1330 FPO |= FrameProcedureOptions::HasStructuredExceptionHandling;
1331 else
1332 FPO |= FrameProcedureOptions::HasExceptionHandling;
1333 }
1334 if (GV.hasFnAttribute(Attribute::InlineHint))
1335 FPO |= FrameProcedureOptions::MarkedInline;
1336 if (GV.hasFnAttribute(Attribute::Naked))
1337 FPO |= FrameProcedureOptions::Naked;
1338 if (MFI.hasStackProtectorIndex())
1339 FPO |= FrameProcedureOptions::SecurityChecks;
1340 FPO |= FrameProcedureOptions(uint32_t(CurFn->EncodedLocalFramePtrReg) << 14U);
1341 FPO |= FrameProcedureOptions(uint32_t(CurFn->EncodedParamFramePtrReg) << 16U);
1342 if (Asm->TM.getOptLevel() != CodeGenOpt::None && !GV.optForSize() &&
1343 !GV.hasFnAttribute(Attribute::OptimizeNone))
1344 FPO |= FrameProcedureOptions::OptimizedForSpeed;
1345 // FIXME: Set GuardCfg when it is implemented.
1346 CurFn->FrameProcOpts = FPO;
1347
Reid Klecknera9f4cc92016-09-07 16:15:31 +00001348 OS.EmitCVFuncIdDirective(CurFn->FuncId);
1349
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001350 // Find the end of the function prolog. First known non-DBG_VALUE and
1351 // non-frame setup location marks the beginning of the function body.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001352 // FIXME: is there a simpler a way to do this? Can we just search
1353 // for the first instruction of the function, not the last of the prolog?
1354 DebugLoc PrologEndLoc;
1355 bool EmptyPrologue = true;
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001356 for (const auto &MBB : *MF) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001357 for (const auto &MI : MBB) {
Adrian Prantlfb31da12017-05-22 20:47:09 +00001358 if (!MI.isMetaInstruction() && !MI.getFlag(MachineInstr::FrameSetup) &&
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001359 MI.getDebugLoc()) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001360 PrologEndLoc = MI.getDebugLoc();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001361 break;
Adrian Prantlfb31da12017-05-22 20:47:09 +00001362 } else if (!MI.isMetaInstruction()) {
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001363 EmptyPrologue = false;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001364 }
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001365 }
1366 }
Reid Klecknerf9c275f2016-02-10 20:55:49 +00001367
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001368 // Record beginning of function if we have a non-empty prologue.
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +00001369 if (PrologEndLoc && !EmptyPrologue) {
1370 DebugLoc FnStartDL = PrologEndLoc.getFnDebugLoc();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001371 maybeRecordLocation(FnStartDL, MF);
1372 }
1373}
1374
Zachary Turnera7b04172017-08-28 18:49:04 +00001375static bool shouldEmitUdt(const DIType *T) {
Zachary Turner37c74742017-09-05 22:06:39 +00001376 if (!T)
1377 return false;
1378
1379 // MSVC does not emit UDTs for typedefs that are scoped to classes.
1380 if (T->getTag() == dwarf::DW_TAG_typedef) {
1381 if (DIScope *Scope = T->getScope().resolve()) {
1382 switch (Scope->getTag()) {
1383 case dwarf::DW_TAG_structure_type:
1384 case dwarf::DW_TAG_class_type:
1385 case dwarf::DW_TAG_union_type:
1386 return false;
1387 }
1388 }
1389 }
1390
Zachary Turnera7b04172017-08-28 18:49:04 +00001391 while (true) {
1392 if (!T || T->isForwardDecl())
1393 return false;
1394
1395 const DIDerivedType *DT = dyn_cast<DIDerivedType>(T);
1396 if (!DT)
1397 return true;
1398 T = DT->getBaseType().resolve();
1399 }
1400 return true;
1401}
1402
1403void CodeViewDebug::addToUDTs(const DIType *Ty) {
Reid Klecknerad56ea32016-07-01 22:24:51 +00001404 // Don't record empty UDTs.
1405 if (Ty->getName().empty())
1406 return;
Zachary Turnera7b04172017-08-28 18:49:04 +00001407 if (!shouldEmitUdt(Ty))
1408 return;
Reid Klecknerad56ea32016-07-01 22:24:51 +00001409
Hans Wennborg4b63a982016-06-23 22:57:25 +00001410 SmallVector<StringRef, 5> QualifiedNameComponents;
1411 const DISubprogram *ClosestSubprogram = getQualifiedNameComponents(
1412 Ty->getScope().resolve(), QualifiedNameComponents);
1413
1414 std::string FullyQualifiedName =
David Majnemer6bdc24e2016-07-01 23:12:45 +00001415 getQualifiedName(QualifiedNameComponents, getPrettyScopeName(Ty));
Hans Wennborg4b63a982016-06-23 22:57:25 +00001416
Zachary Turnera7b04172017-08-28 18:49:04 +00001417 if (ClosestSubprogram == nullptr) {
1418 GlobalUDTs.emplace_back(std::move(FullyQualifiedName), Ty);
1419 } else if (ClosestSubprogram == CurrentSubprogram) {
1420 LocalUDTs.emplace_back(std::move(FullyQualifiedName), Ty);
1421 }
Hans Wennborg4b63a982016-06-23 22:57:25 +00001422
1423 // TODO: What if the ClosestSubprogram is neither null or the current
1424 // subprogram? Currently, the UDT just gets dropped on the floor.
1425 //
1426 // The current behavior is not desirable. To get maximal fidelity, we would
1427 // need to perform all type translation before beginning emission of .debug$S
1428 // and then make LocalUDTs a member of FunctionInfo
1429}
1430
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001431TypeIndex CodeViewDebug::lowerType(const DIType *Ty, const DIType *ClassTy) {
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001432 // Generic dispatch for lowering an unknown type.
1433 switch (Ty->getTag()) {
Adrian McCarthyf3c3c132016-06-08 18:22:59 +00001434 case dwarf::DW_TAG_array_type:
1435 return lowerTypeArray(cast<DICompositeType>(Ty));
David Majnemerd065e232016-06-02 06:21:37 +00001436 case dwarf::DW_TAG_typedef:
1437 return lowerTypeAlias(cast<DIDerivedType>(Ty));
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001438 case dwarf::DW_TAG_base_type:
1439 return lowerTypeBasic(cast<DIBasicType>(Ty));
1440 case dwarf::DW_TAG_pointer_type:
Reid Kleckner9dac4732016-08-31 15:59:30 +00001441 if (cast<DIDerivedType>(Ty)->getName() == "__vtbl_ptr_type")
1442 return lowerTypeVFTableShape(cast<DIDerivedType>(Ty));
1443 LLVM_FALLTHROUGH;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001444 case dwarf::DW_TAG_reference_type:
1445 case dwarf::DW_TAG_rvalue_reference_type:
1446 return lowerTypePointer(cast<DIDerivedType>(Ty));
1447 case dwarf::DW_TAG_ptr_to_member_type:
1448 return lowerTypeMemberPointer(cast<DIDerivedType>(Ty));
Reid Kleckner3acdc672018-02-27 22:08:15 +00001449 case dwarf::DW_TAG_restrict_type:
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001450 case dwarf::DW_TAG_const_type:
1451 case dwarf::DW_TAG_volatile_type:
Victor Leschuke1156c22016-10-31 19:09:38 +00001452 // TODO: add support for DW_TAG_atomic_type here
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001453 return lowerTypeModifier(cast<DIDerivedType>(Ty));
David Majnemer75c3ebf2016-06-02 17:13:53 +00001454 case dwarf::DW_TAG_subroutine_type:
Reid Kleckner0c5d8742016-06-22 01:32:56 +00001455 if (ClassTy) {
1456 // The member function type of a member function pointer has no
1457 // ThisAdjustment.
1458 return lowerTypeMemberFunction(cast<DISubroutineType>(Ty), ClassTy,
Adrian McCarthyd91bf392017-09-13 20:53:55 +00001459 /*ThisAdjustment=*/0,
1460 /*IsStaticMethod=*/false);
Reid Kleckner0c5d8742016-06-22 01:32:56 +00001461 }
David Majnemer75c3ebf2016-06-02 17:13:53 +00001462 return lowerTypeFunction(cast<DISubroutineType>(Ty));
David Majnemer979cb882016-06-16 21:32:16 +00001463 case dwarf::DW_TAG_enumeration_type:
1464 return lowerTypeEnum(cast<DICompositeType>(Ty));
Reid Klecknera8d57402016-06-03 15:58:20 +00001465 case dwarf::DW_TAG_class_type:
1466 case dwarf::DW_TAG_structure_type:
1467 return lowerTypeClass(cast<DICompositeType>(Ty));
1468 case dwarf::DW_TAG_union_type:
1469 return lowerTypeUnion(cast<DICompositeType>(Ty));
Aaron Smitha73fa2a2018-01-11 06:42:11 +00001470 case dwarf::DW_TAG_unspecified_type:
Zachary Turner56a5a0c2018-11-01 04:02:41 +00001471 if (Ty->getName() == "decltype(nullptr)")
1472 return TypeIndex::NullptrT();
Aaron Smitha73fa2a2018-01-11 06:42:11 +00001473 return TypeIndex::None();
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001474 default:
1475 // Use the null type index.
1476 return TypeIndex();
1477 }
1478}
1479
David Majnemerd065e232016-06-02 06:21:37 +00001480TypeIndex CodeViewDebug::lowerTypeAlias(const DIDerivedType *Ty) {
David Majnemerd065e232016-06-02 06:21:37 +00001481 DITypeRef UnderlyingTypeRef = Ty->getBaseType();
1482 TypeIndex UnderlyingTypeIndex = getTypeIndex(UnderlyingTypeRef);
David Majnemer3128b102016-06-15 18:00:01 +00001483 StringRef TypeName = Ty->getName();
1484
Zachary Turnera7b04172017-08-28 18:49:04 +00001485 addToUDTs(Ty);
David Majnemer3128b102016-06-15 18:00:01 +00001486
David Majnemerd065e232016-06-02 06:21:37 +00001487 if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::Int32Long) &&
David Majnemer3128b102016-06-15 18:00:01 +00001488 TypeName == "HRESULT")
David Majnemerd065e232016-06-02 06:21:37 +00001489 return TypeIndex(SimpleTypeKind::HResult);
David Majnemer8c46a4c2016-06-04 15:40:33 +00001490 if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::UInt16Short) &&
David Majnemer3128b102016-06-15 18:00:01 +00001491 TypeName == "wchar_t")
David Majnemer8c46a4c2016-06-04 15:40:33 +00001492 return TypeIndex(SimpleTypeKind::WideCharacter);
Hans Wennborg4b63a982016-06-23 22:57:25 +00001493
David Majnemerd065e232016-06-02 06:21:37 +00001494 return UnderlyingTypeIndex;
1495}
1496
Adrian McCarthyf3c3c132016-06-08 18:22:59 +00001497TypeIndex CodeViewDebug::lowerTypeArray(const DICompositeType *Ty) {
1498 DITypeRef ElementTypeRef = Ty->getBaseType();
1499 TypeIndex ElementTypeIndex = getTypeIndex(ElementTypeRef);
1500 // IndexType is size_t, which depends on the bitness of the target.
Matt Arsenault41e5ac42018-03-14 00:36:23 +00001501 TypeIndex IndexType = getPointerSizeInBytes() == 8
Adrian McCarthyf3c3c132016-06-08 18:22:59 +00001502 ? TypeIndex(SimpleTypeKind::UInt64Quad)
1503 : TypeIndex(SimpleTypeKind::UInt32Long);
Amjad Aboudacee5682016-07-12 12:06:34 +00001504
1505 uint64_t ElementSize = getBaseTypeSize(ElementTypeRef) / 8;
1506
Amjad Aboudacee5682016-07-12 12:06:34 +00001507 // Add subranges to array type.
1508 DINodeArray Elements = Ty->getElements();
1509 for (int i = Elements.size() - 1; i >= 0; --i) {
1510 const DINode *Element = Elements[i];
1511 assert(Element->getTag() == dwarf::DW_TAG_subrange_type);
1512
1513 const DISubrange *Subrange = cast<DISubrange>(Element);
1514 assert(Subrange->getLowerBound() == 0 &&
1515 "codeview doesn't support subranges with lower bounds");
Sander de Smalenfdf40912018-01-24 09:56:07 +00001516 int64_t Count = -1;
1517 if (auto *CI = Subrange->getCount().dyn_cast<ConstantInt*>())
1518 Count = CI->getSExtValue();
Amjad Aboudacee5682016-07-12 12:06:34 +00001519
Reid Klecknercd7bba02017-09-13 23:30:01 +00001520 // Forward declarations of arrays without a size and VLAs use a count of -1.
1521 // Emit a count of zero in these cases to match what MSVC does for arrays
1522 // without a size. MSVC doesn't support VLAs, so it's not clear what we
1523 // should do for them even if we could distinguish them.
Reid Kleckner6b78e162017-03-24 23:28:42 +00001524 if (Count == -1)
Reid Kleckner89af1122017-09-13 21:54:20 +00001525 Count = 0;
Amjad Aboudacee5682016-07-12 12:06:34 +00001526
Amjad Aboudacee5682016-07-12 12:06:34 +00001527 // Update the element size and element type index for subsequent subranges.
1528 ElementSize *= Count;
Reid Kleckner10762882016-09-09 17:29:36 +00001529
1530 // If this is the outermost array, use the size from the array. It will be
Reid Kleckner6b78e162017-03-24 23:28:42 +00001531 // more accurate if we had a VLA or an incomplete element type size.
Reid Kleckner10762882016-09-09 17:29:36 +00001532 uint64_t ArraySize =
1533 (i == 0 && ElementSize == 0) ? Ty->getSizeInBits() / 8 : ElementSize;
1534
1535 StringRef Name = (i == 0) ? Ty->getName() : "";
Zachary Turner4efa0a42016-11-08 22:24:53 +00001536 ArrayRecord AR(ElementTypeIndex, IndexType, ArraySize, Name);
Zachary Turner6900de12017-11-28 18:33:17 +00001537 ElementTypeIndex = TypeTable.writeLeafType(AR);
Amjad Aboudacee5682016-07-12 12:06:34 +00001538 }
1539
Amjad Aboudacee5682016-07-12 12:06:34 +00001540 return ElementTypeIndex;
Adrian McCarthyf3c3c132016-06-08 18:22:59 +00001541}
1542
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001543TypeIndex CodeViewDebug::lowerTypeBasic(const DIBasicType *Ty) {
1544 TypeIndex Index;
1545 dwarf::TypeKind Kind;
1546 uint32_t ByteSize;
1547
1548 Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
David Majnemerafefa672016-06-02 06:21:42 +00001549 ByteSize = Ty->getSizeInBits() / 8;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001550
1551 SimpleTypeKind STK = SimpleTypeKind::None;
1552 switch (Kind) {
1553 case dwarf::DW_ATE_address:
1554 // FIXME: Translate
1555 break;
1556 case dwarf::DW_ATE_boolean:
1557 switch (ByteSize) {
David Majnemer1c2cb1d2016-06-02 07:02:32 +00001558 case 1: STK = SimpleTypeKind::Boolean8; break;
1559 case 2: STK = SimpleTypeKind::Boolean16; break;
1560 case 4: STK = SimpleTypeKind::Boolean32; break;
1561 case 8: STK = SimpleTypeKind::Boolean64; break;
1562 case 16: STK = SimpleTypeKind::Boolean128; break;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001563 }
1564 break;
1565 case dwarf::DW_ATE_complex_float:
1566 switch (ByteSize) {
David Majnemer1c2cb1d2016-06-02 07:02:32 +00001567 case 2: STK = SimpleTypeKind::Complex16; break;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001568 case 4: STK = SimpleTypeKind::Complex32; break;
1569 case 8: STK = SimpleTypeKind::Complex64; break;
1570 case 10: STK = SimpleTypeKind::Complex80; break;
1571 case 16: STK = SimpleTypeKind::Complex128; break;
1572 }
1573 break;
1574 case dwarf::DW_ATE_float:
1575 switch (ByteSize) {
David Majnemer1c2cb1d2016-06-02 07:02:32 +00001576 case 2: STK = SimpleTypeKind::Float16; break;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001577 case 4: STK = SimpleTypeKind::Float32; break;
1578 case 6: STK = SimpleTypeKind::Float48; break;
1579 case 8: STK = SimpleTypeKind::Float64; break;
1580 case 10: STK = SimpleTypeKind::Float80; break;
1581 case 16: STK = SimpleTypeKind::Float128; break;
1582 }
1583 break;
1584 case dwarf::DW_ATE_signed:
1585 switch (ByteSize) {
Reid Klecknere45b2c72016-09-29 17:55:01 +00001586 case 1: STK = SimpleTypeKind::SignedCharacter; break;
1587 case 2: STK = SimpleTypeKind::Int16Short; break;
1588 case 4: STK = SimpleTypeKind::Int32; break;
1589 case 8: STK = SimpleTypeKind::Int64Quad; break;
1590 case 16: STK = SimpleTypeKind::Int128Oct; break;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001591 }
1592 break;
1593 case dwarf::DW_ATE_unsigned:
1594 switch (ByteSize) {
Reid Klecknere45b2c72016-09-29 17:55:01 +00001595 case 1: STK = SimpleTypeKind::UnsignedCharacter; break;
1596 case 2: STK = SimpleTypeKind::UInt16Short; break;
1597 case 4: STK = SimpleTypeKind::UInt32; break;
1598 case 8: STK = SimpleTypeKind::UInt64Quad; break;
1599 case 16: STK = SimpleTypeKind::UInt128Oct; break;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001600 }
1601 break;
1602 case dwarf::DW_ATE_UTF:
1603 switch (ByteSize) {
1604 case 2: STK = SimpleTypeKind::Character16; break;
1605 case 4: STK = SimpleTypeKind::Character32; break;
1606 }
1607 break;
1608 case dwarf::DW_ATE_signed_char:
1609 if (ByteSize == 1)
1610 STK = SimpleTypeKind::SignedCharacter;
1611 break;
1612 case dwarf::DW_ATE_unsigned_char:
1613 if (ByteSize == 1)
1614 STK = SimpleTypeKind::UnsignedCharacter;
1615 break;
1616 default:
1617 break;
1618 }
1619
1620 // Apply some fixups based on the source-level type name.
1621 if (STK == SimpleTypeKind::Int32 && Ty->getName() == "long int")
1622 STK = SimpleTypeKind::Int32Long;
1623 if (STK == SimpleTypeKind::UInt32 && Ty->getName() == "long unsigned int")
1624 STK = SimpleTypeKind::UInt32Long;
David Majnemer8c46a4c2016-06-04 15:40:33 +00001625 if (STK == SimpleTypeKind::UInt16Short &&
1626 (Ty->getName() == "wchar_t" || Ty->getName() == "__wchar_t"))
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001627 STK = SimpleTypeKind::WideCharacter;
1628 if ((STK == SimpleTypeKind::SignedCharacter ||
1629 STK == SimpleTypeKind::UnsignedCharacter) &&
1630 Ty->getName() == "char")
1631 STK = SimpleTypeKind::NarrowCharacter;
1632
1633 return TypeIndex(STK);
1634}
1635
Reid Kleckner3acdc672018-02-27 22:08:15 +00001636TypeIndex CodeViewDebug::lowerTypePointer(const DIDerivedType *Ty,
1637 PointerOptions PO) {
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001638 TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType());
1639
Reid Kleckner3acdc672018-02-27 22:08:15 +00001640 // Pointers to simple types without any options can use SimpleTypeMode, rather
1641 // than having a dedicated pointer type record.
1642 if (PointeeTI.isSimple() && PO == PointerOptions::None &&
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001643 PointeeTI.getSimpleMode() == SimpleTypeMode::Direct &&
1644 Ty->getTag() == dwarf::DW_TAG_pointer_type) {
1645 SimpleTypeMode Mode = Ty->getSizeInBits() == 64
1646 ? SimpleTypeMode::NearPointer64
1647 : SimpleTypeMode::NearPointer32;
1648 return TypeIndex(PointeeTI.getSimpleKind(), Mode);
1649 }
1650
1651 PointerKind PK =
1652 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32;
1653 PointerMode PM = PointerMode::Pointer;
1654 switch (Ty->getTag()) {
1655 default: llvm_unreachable("not a pointer tag type");
1656 case dwarf::DW_TAG_pointer_type:
1657 PM = PointerMode::Pointer;
1658 break;
1659 case dwarf::DW_TAG_reference_type:
1660 PM = PointerMode::LValueReference;
1661 break;
1662 case dwarf::DW_TAG_rvalue_reference_type:
1663 PM = PointerMode::RValueReference;
1664 break;
1665 }
Reid Kleckner3acdc672018-02-27 22:08:15 +00001666
Zachary Turner38265662018-11-20 22:13:23 +00001667 if (Ty->isObjectPointer())
1668 PO |= PointerOptions::Const;
1669
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001670 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8);
Zachary Turner6900de12017-11-28 18:33:17 +00001671 return TypeTable.writeLeafType(PR);
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001672}
1673
Reid Kleckner6fa15462016-06-17 22:14:39 +00001674static PointerToMemberRepresentation
1675translatePtrToMemberRep(unsigned SizeInBytes, bool IsPMF, unsigned Flags) {
1676 // SizeInBytes being zero generally implies that the member pointer type was
1677 // incomplete, which can happen if it is part of a function prototype. In this
1678 // case, use the unknown model instead of the general model.
Reid Kleckner604105b2016-06-17 21:31:33 +00001679 if (IsPMF) {
1680 switch (Flags & DINode::FlagPtrToMemberRep) {
1681 case 0:
Reid Kleckner6fa15462016-06-17 22:14:39 +00001682 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1683 : PointerToMemberRepresentation::GeneralFunction;
Reid Kleckner604105b2016-06-17 21:31:33 +00001684 case DINode::FlagSingleInheritance:
1685 return PointerToMemberRepresentation::SingleInheritanceFunction;
1686 case DINode::FlagMultipleInheritance:
1687 return PointerToMemberRepresentation::MultipleInheritanceFunction;
1688 case DINode::FlagVirtualInheritance:
1689 return PointerToMemberRepresentation::VirtualInheritanceFunction;
1690 }
1691 } else {
1692 switch (Flags & DINode::FlagPtrToMemberRep) {
1693 case 0:
Reid Kleckner6fa15462016-06-17 22:14:39 +00001694 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown
1695 : PointerToMemberRepresentation::GeneralData;
Reid Kleckner604105b2016-06-17 21:31:33 +00001696 case DINode::FlagSingleInheritance:
1697 return PointerToMemberRepresentation::SingleInheritanceData;
1698 case DINode::FlagMultipleInheritance:
1699 return PointerToMemberRepresentation::MultipleInheritanceData;
1700 case DINode::FlagVirtualInheritance:
1701 return PointerToMemberRepresentation::VirtualInheritanceData;
1702 }
1703 }
1704 llvm_unreachable("invalid ptr to member representation");
1705}
1706
Reid Kleckner3acdc672018-02-27 22:08:15 +00001707TypeIndex CodeViewDebug::lowerTypeMemberPointer(const DIDerivedType *Ty,
1708 PointerOptions PO) {
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001709 assert(Ty->getTag() == dwarf::DW_TAG_ptr_to_member_type);
1710 TypeIndex ClassTI = getTypeIndex(Ty->getClassType());
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001711 TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType(), Ty->getClassType());
Matt Arsenault41e5ac42018-03-14 00:36:23 +00001712 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
1713 : PointerKind::Near32;
Reid Kleckner604105b2016-06-17 21:31:33 +00001714 bool IsPMF = isa<DISubroutineType>(Ty->getBaseType());
1715 PointerMode PM = IsPMF ? PointerMode::PointerToMemberFunction
1716 : PointerMode::PointerToDataMember;
Reid Kleckner3acdc672018-02-27 22:08:15 +00001717
Reid Kleckner6fa15462016-06-17 22:14:39 +00001718 assert(Ty->getSizeInBits() / 8 <= 0xff && "pointer size too big");
1719 uint8_t SizeInBytes = Ty->getSizeInBits() / 8;
1720 MemberPointerInfo MPI(
1721 ClassTI, translatePtrToMemberRep(SizeInBytes, IsPMF, Ty->getFlags()));
Reid Kleckner604105b2016-06-17 21:31:33 +00001722 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI);
Zachary Turner6900de12017-11-28 18:33:17 +00001723 return TypeTable.writeLeafType(PR);
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001724}
1725
Reid Klecknerde3d8b52016-06-08 20:34:29 +00001726/// Given a DWARF calling convention, get the CodeView equivalent. If we don't
1727/// have a translation, use the NearC convention.
1728static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) {
1729 switch (DwarfCC) {
1730 case dwarf::DW_CC_normal: return CallingConvention::NearC;
1731 case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast;
1732 case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall;
1733 case dwarf::DW_CC_BORLAND_stdcall: return CallingConvention::NearStdCall;
1734 case dwarf::DW_CC_BORLAND_pascal: return CallingConvention::NearPascal;
1735 case dwarf::DW_CC_LLVM_vectorcall: return CallingConvention::NearVector;
1736 }
1737 return CallingConvention::NearC;
1738}
1739
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001740TypeIndex CodeViewDebug::lowerTypeModifier(const DIDerivedType *Ty) {
1741 ModifierOptions Mods = ModifierOptions::None;
Reid Kleckner3acdc672018-02-27 22:08:15 +00001742 PointerOptions PO = PointerOptions::None;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001743 bool IsModifier = true;
1744 const DIType *BaseTy = Ty;
Reid Klecknerb9c80fd2016-06-02 17:40:51 +00001745 while (IsModifier && BaseTy) {
Victor Leschuke1156c22016-10-31 19:09:38 +00001746 // FIXME: Need to add DWARF tags for __unaligned and _Atomic
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001747 switch (BaseTy->getTag()) {
1748 case dwarf::DW_TAG_const_type:
1749 Mods |= ModifierOptions::Const;
Reid Kleckner3acdc672018-02-27 22:08:15 +00001750 PO |= PointerOptions::Const;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001751 break;
1752 case dwarf::DW_TAG_volatile_type:
1753 Mods |= ModifierOptions::Volatile;
Reid Kleckner3acdc672018-02-27 22:08:15 +00001754 PO |= PointerOptions::Volatile;
1755 break;
1756 case dwarf::DW_TAG_restrict_type:
1757 // Only pointer types be marked with __restrict. There is no known flag
1758 // for __restrict in LF_MODIFIER records.
1759 PO |= PointerOptions::Restrict;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001760 break;
1761 default:
1762 IsModifier = false;
1763 break;
1764 }
1765 if (IsModifier)
1766 BaseTy = cast<DIDerivedType>(BaseTy)->getBaseType().resolve();
1767 }
Reid Kleckner3acdc672018-02-27 22:08:15 +00001768
1769 // Check if the inner type will use an LF_POINTER record. If so, the
1770 // qualifiers will go in the LF_POINTER record. This comes up for types like
1771 // 'int *const' and 'int *__restrict', not the more common cases like 'const
1772 // char *'.
1773 if (BaseTy) {
1774 switch (BaseTy->getTag()) {
1775 case dwarf::DW_TAG_pointer_type:
1776 case dwarf::DW_TAG_reference_type:
1777 case dwarf::DW_TAG_rvalue_reference_type:
1778 return lowerTypePointer(cast<DIDerivedType>(BaseTy), PO);
1779 case dwarf::DW_TAG_ptr_to_member_type:
1780 return lowerTypeMemberPointer(cast<DIDerivedType>(BaseTy), PO);
1781 default:
1782 break;
1783 }
1784 }
1785
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001786 TypeIndex ModifiedTI = getTypeIndex(BaseTy);
Reid Kleckner3acdc672018-02-27 22:08:15 +00001787
1788 // Return the base type index if there aren't any modifiers. For example, the
1789 // metadata could contain restrict wrappers around non-pointer types.
1790 if (Mods == ModifierOptions::None)
1791 return ModifiedTI;
1792
Zachary Turner4efa0a42016-11-08 22:24:53 +00001793 ModifierRecord MR(ModifiedTI, Mods);
Zachary Turner6900de12017-11-28 18:33:17 +00001794 return TypeTable.writeLeafType(MR);
Reid Kleckner5acacbb2016-06-01 17:05:51 +00001795}
1796
David Majnemer75c3ebf2016-06-02 17:13:53 +00001797TypeIndex CodeViewDebug::lowerTypeFunction(const DISubroutineType *Ty) {
1798 SmallVector<TypeIndex, 8> ReturnAndArgTypeIndices;
1799 for (DITypeRef ArgTypeRef : Ty->getTypeArray())
1800 ReturnAndArgTypeIndices.push_back(getTypeIndex(ArgTypeRef));
1801
Aaron Smitha73fa2a2018-01-11 06:42:11 +00001802 // MSVC uses type none for variadic argument.
1803 if (ReturnAndArgTypeIndices.size() > 1 &&
1804 ReturnAndArgTypeIndices.back() == TypeIndex::Void()) {
1805 ReturnAndArgTypeIndices.back() = TypeIndex::None();
1806 }
David Majnemer75c3ebf2016-06-02 17:13:53 +00001807 TypeIndex ReturnTypeIndex = TypeIndex::Void();
1808 ArrayRef<TypeIndex> ArgTypeIndices = None;
1809 if (!ReturnAndArgTypeIndices.empty()) {
1810 auto ReturnAndArgTypesRef = makeArrayRef(ReturnAndArgTypeIndices);
1811 ReturnTypeIndex = ReturnAndArgTypesRef.front();
1812 ArgTypeIndices = ReturnAndArgTypesRef.drop_front();
1813 }
1814
1815 ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
Zachary Turner6900de12017-11-28 18:33:17 +00001816 TypeIndex ArgListIndex = TypeTable.writeLeafType(ArgListRec);
David Majnemer75c3ebf2016-06-02 17:13:53 +00001817
Reid Klecknerde3d8b52016-06-08 20:34:29 +00001818 CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1819
Aaron Smith802b0332018-10-02 20:21:05 +00001820 FunctionOptions FO = getFunctionOptions(Ty);
1821 ProcedureRecord Procedure(ReturnTypeIndex, CC, FO, ArgTypeIndices.size(),
1822 ArgListIndex);
Zachary Turner6900de12017-11-28 18:33:17 +00001823 return TypeTable.writeLeafType(Procedure);
David Majnemer75c3ebf2016-06-02 17:13:53 +00001824}
1825
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001826TypeIndex CodeViewDebug::lowerTypeMemberFunction(const DISubroutineType *Ty,
Reid Kleckner0c5d8742016-06-22 01:32:56 +00001827 const DIType *ClassTy,
Adrian McCarthyd91bf392017-09-13 20:53:55 +00001828 int ThisAdjustment,
Aaron Smith802b0332018-10-02 20:21:05 +00001829 bool IsStaticMethod,
1830 FunctionOptions FO) {
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001831 // Lower the containing class type.
1832 TypeIndex ClassType = getTypeIndex(ClassTy);
1833
Zachary Turnerc68f8952018-11-20 22:13:43 +00001834 DITypeRefArray ReturnAndArgs = Ty->getTypeArray();
1835
1836 unsigned Index = 0;
1837 SmallVector<TypeIndex, 8> ArgTypeIndices;
Josh Stone7a3108f2019-01-23 00:53:22 +00001838 TypeIndex ReturnTypeIndex = TypeIndex::Void();
1839 if (ReturnAndArgs.size() > Index) {
1840 ReturnTypeIndex = getTypeIndex(ReturnAndArgs[Index++]);
1841 }
Zachary Turnerc68f8952018-11-20 22:13:43 +00001842
Reid Klecknerc168c6f2018-12-26 21:52:17 +00001843 // If the first argument is a pointer type and this isn't a static method,
1844 // treat it as the special 'this' parameter, which is encoded separately from
1845 // the arguments.
Zachary Turnerc68f8952018-11-20 22:13:43 +00001846 TypeIndex ThisTypeIndex;
Reid Klecknerc168c6f2018-12-26 21:52:17 +00001847 if (!IsStaticMethod && ReturnAndArgs.size() > Index) {
1848 if (const DIDerivedType *PtrTy =
1849 dyn_cast_or_null<DIDerivedType>(ReturnAndArgs[Index].resolve())) {
1850 if (PtrTy->getTag() == dwarf::DW_TAG_pointer_type) {
1851 ThisTypeIndex = getTypeIndexForThisPtr(PtrTy, Ty);
1852 Index++;
1853 }
1854 }
1855 }
Zachary Turnerc68f8952018-11-20 22:13:43 +00001856
1857 while (Index < ReturnAndArgs.size())
1858 ArgTypeIndices.push_back(getTypeIndex(ReturnAndArgs[Index++]));
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001859
Aaron Smitha73fa2a2018-01-11 06:42:11 +00001860 // MSVC uses type none for variadic argument.
Zachary Turnerc68f8952018-11-20 22:13:43 +00001861 if (!ArgTypeIndices.empty() && ArgTypeIndices.back() == TypeIndex::Void())
1862 ArgTypeIndices.back() = TypeIndex::None();
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001863
1864 ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
Zachary Turner6900de12017-11-28 18:33:17 +00001865 TypeIndex ArgListIndex = TypeTable.writeLeafType(ArgListRec);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001866
1867 CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
1868
Aaron Smith802b0332018-10-02 20:21:05 +00001869 MemberFunctionRecord MFR(ReturnTypeIndex, ClassType, ThisTypeIndex, CC, FO,
1870 ArgTypeIndices.size(), ArgListIndex, ThisAdjustment);
Zachary Turner6900de12017-11-28 18:33:17 +00001871 return TypeTable.writeLeafType(MFR);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001872}
1873
Reid Kleckner9dac4732016-08-31 15:59:30 +00001874TypeIndex CodeViewDebug::lowerTypeVFTableShape(const DIDerivedType *Ty) {
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001875 unsigned VSlotCount =
1876 Ty->getSizeInBits() / (8 * Asm->MAI->getCodePointerSize());
Reid Kleckner9dac4732016-08-31 15:59:30 +00001877 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near);
Zachary Turner4efa0a42016-11-08 22:24:53 +00001878
1879 VFTableShapeRecord VFTSR(Slots);
Zachary Turner6900de12017-11-28 18:33:17 +00001880 return TypeTable.writeLeafType(VFTSR);
Reid Kleckner9dac4732016-08-31 15:59:30 +00001881}
1882
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001883static MemberAccess translateAccessFlags(unsigned RecordTag, unsigned Flags) {
1884 switch (Flags & DINode::FlagAccessibility) {
Reid Klecknera8d57402016-06-03 15:58:20 +00001885 case DINode::FlagPrivate: return MemberAccess::Private;
1886 case DINode::FlagPublic: return MemberAccess::Public;
1887 case DINode::FlagProtected: return MemberAccess::Protected;
1888 case 0:
1889 // If there was no explicit access control, provide the default for the tag.
1890 return RecordTag == dwarf::DW_TAG_class_type ? MemberAccess::Private
1891 : MemberAccess::Public;
1892 }
1893 llvm_unreachable("access flags are exclusive");
1894}
1895
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001896static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) {
1897 if (SP->isArtificial())
1898 return MethodOptions::CompilerGenerated;
1899
1900 // FIXME: Handle other MethodOptions.
1901
1902 return MethodOptions::None;
1903}
1904
1905static MethodKind translateMethodKindFlags(const DISubprogram *SP,
1906 bool Introduced) {
Adrian McCarthyd91bf392017-09-13 20:53:55 +00001907 if (SP->getFlags() & DINode::FlagStaticMember)
1908 return MethodKind::Static;
1909
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001910 switch (SP->getVirtuality()) {
1911 case dwarf::DW_VIRTUALITY_none:
1912 break;
1913 case dwarf::DW_VIRTUALITY_virtual:
1914 return Introduced ? MethodKind::IntroducingVirtual : MethodKind::Virtual;
1915 case dwarf::DW_VIRTUALITY_pure_virtual:
1916 return Introduced ? MethodKind::PureIntroducingVirtual
1917 : MethodKind::PureVirtual;
1918 default:
1919 llvm_unreachable("unhandled virtuality case");
1920 }
1921
Amjad Aboud76c9eb92016-06-18 10:25:07 +00001922 return MethodKind::Vanilla;
1923}
1924
Reid Klecknera8d57402016-06-03 15:58:20 +00001925static TypeRecordKind getRecordKind(const DICompositeType *Ty) {
1926 switch (Ty->getTag()) {
1927 case dwarf::DW_TAG_class_type: return TypeRecordKind::Class;
1928 case dwarf::DW_TAG_structure_type: return TypeRecordKind::Struct;
1929 }
1930 llvm_unreachable("unexpected tag");
1931}
1932
Reid Klecknere092dad2016-07-02 00:11:07 +00001933/// Return ClassOptions that should be present on both the forward declaration
1934/// and the defintion of a tag type.
1935static ClassOptions getCommonClassOptions(const DICompositeType *Ty) {
1936 ClassOptions CO = ClassOptions::None;
1937
1938 // MSVC always sets this flag, even for local types. Clang doesn't always
Reid Klecknera8d57402016-06-03 15:58:20 +00001939 // appear to give every type a linkage name, which may be problematic for us.
1940 // FIXME: Investigate the consequences of not following them here.
Reid Klecknere092dad2016-07-02 00:11:07 +00001941 if (!Ty->getIdentifier().empty())
1942 CO |= ClassOptions::HasUniqueName;
1943
1944 // Put the Nested flag on a type if it appears immediately inside a tag type.
1945 // Do not walk the scope chain. Do not attempt to compute ContainsNestedClass
1946 // here. That flag is only set on definitions, and not forward declarations.
1947 const DIScope *ImmediateScope = Ty->getScope().resolve();
1948 if (ImmediateScope && isa<DICompositeType>(ImmediateScope))
1949 CO |= ClassOptions::Nested;
1950
Aaron Smithda0602c2018-10-02 20:28:15 +00001951 // Put the Scoped flag on function-local types. MSVC puts this flag for enum
Zachary Turnerc68f8952018-11-20 22:13:43 +00001952 // type only when it has an immediate function scope. Clang never puts enums
1953 // inside DILexicalBlock scopes. Enum types, as generated by clang, are
Aaron Smithda0602c2018-10-02 20:28:15 +00001954 // always in function, class, or file scopes.
1955 if (Ty->getTag() == dwarf::DW_TAG_enumeration_type) {
1956 if (ImmediateScope && isa<DISubprogram>(ImmediateScope))
Reid Klecknere092dad2016-07-02 00:11:07 +00001957 CO |= ClassOptions::Scoped;
Aaron Smithda0602c2018-10-02 20:28:15 +00001958 } else {
1959 for (const DIScope *Scope = ImmediateScope; Scope != nullptr;
1960 Scope = Scope->getScope().resolve()) {
1961 if (isa<DISubprogram>(Scope)) {
1962 CO |= ClassOptions::Scoped;
1963 break;
1964 }
Reid Klecknere092dad2016-07-02 00:11:07 +00001965 }
1966 }
1967
1968 return CO;
Reid Klecknera8d57402016-06-03 15:58:20 +00001969}
1970
Aaron Smith122d9e72018-03-06 18:20:22 +00001971void CodeViewDebug::addUDTSrcLine(const DIType *Ty, TypeIndex TI) {
1972 switch (Ty->getTag()) {
1973 case dwarf::DW_TAG_class_type:
1974 case dwarf::DW_TAG_structure_type:
1975 case dwarf::DW_TAG_union_type:
1976 case dwarf::DW_TAG_enumeration_type:
1977 break;
1978 default:
1979 return;
1980 }
1981
1982 if (const auto *File = Ty->getFile()) {
1983 StringIdRecord SIDR(TypeIndex(0x0), getFullFilepath(File));
1984 TypeIndex SIDI = TypeTable.writeLeafType(SIDR);
1985
1986 UdtSourceLineRecord USLR(TI, SIDI, Ty->getLine());
1987 TypeTable.writeLeafType(USLR);
1988 }
1989}
1990
David Majnemer979cb882016-06-16 21:32:16 +00001991TypeIndex CodeViewDebug::lowerTypeEnum(const DICompositeType *Ty) {
Reid Klecknere092dad2016-07-02 00:11:07 +00001992 ClassOptions CO = getCommonClassOptions(Ty);
David Majnemer979cb882016-06-16 21:32:16 +00001993 TypeIndex FTI;
David Majnemerda9548f2016-06-17 16:13:21 +00001994 unsigned EnumeratorCount = 0;
David Majnemer979cb882016-06-16 21:32:16 +00001995
David Majnemerda9548f2016-06-17 16:13:21 +00001996 if (Ty->isForwardDecl()) {
David Majnemer979cb882016-06-16 21:32:16 +00001997 CO |= ClassOptions::ForwardReference;
David Majnemerda9548f2016-06-17 16:13:21 +00001998 } else {
Zachary Turner6900de12017-11-28 18:33:17 +00001999 ContinuationRecordBuilder ContinuationBuilder;
2000 ContinuationBuilder.begin(ContinuationRecordKind::FieldList);
David Majnemerda9548f2016-06-17 16:13:21 +00002001 for (const DINode *Element : Ty->getElements()) {
2002 // We assume that the frontend provides all members in source declaration
2003 // order, which is what MSVC does.
2004 if (auto *Enumerator = dyn_cast_or_null<DIEnumerator>(Element)) {
Zachary Turner4efa0a42016-11-08 22:24:53 +00002005 EnumeratorRecord ER(MemberAccess::Public,
2006 APSInt::getUnsigned(Enumerator->getValue()),
2007 Enumerator->getName());
Zachary Turner6900de12017-11-28 18:33:17 +00002008 ContinuationBuilder.writeMemberType(ER);
David Majnemerda9548f2016-06-17 16:13:21 +00002009 EnumeratorCount++;
2010 }
2011 }
Zachary Turner6900de12017-11-28 18:33:17 +00002012 FTI = TypeTable.insertRecord(ContinuationBuilder);
David Majnemerda9548f2016-06-17 16:13:21 +00002013 }
David Majnemer979cb882016-06-16 21:32:16 +00002014
David Majnemer6bdc24e2016-07-01 23:12:45 +00002015 std::string FullName = getFullyQualifiedName(Ty);
Reid Kleckner0c5d8742016-06-22 01:32:56 +00002016
Zachary Turner4efa0a42016-11-08 22:24:53 +00002017 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(),
2018 getTypeIndex(Ty->getBaseType()));
Aaron Smith122d9e72018-03-06 18:20:22 +00002019 TypeIndex EnumTI = TypeTable.writeLeafType(ER);
2020
2021 addUDTSrcLine(Ty, EnumTI);
2022
2023 return EnumTI;
David Majnemer979cb882016-06-16 21:32:16 +00002024}
2025
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002026//===----------------------------------------------------------------------===//
2027// ClassInfo
2028//===----------------------------------------------------------------------===//
2029
2030struct llvm::ClassInfo {
2031 struct MemberInfo {
2032 const DIDerivedType *MemberTypeNode;
David Majnemer08bd7442016-07-01 23:12:48 +00002033 uint64_t BaseOffset;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002034 };
2035 // [MemberInfo]
Eugene Zelenkofb69e662017-06-06 22:22:41 +00002036 using MemberList = std::vector<MemberInfo>;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002037
Eugene Zelenkofb69e662017-06-06 22:22:41 +00002038 using MethodsList = TinyPtrVector<const DISubprogram *>;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002039 // MethodName -> MethodsList
Eugene Zelenkofb69e662017-06-06 22:22:41 +00002040 using MethodsMap = MapVector<MDString *, MethodsList>;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002041
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002042 /// Base classes.
2043 std::vector<const DIDerivedType *> Inheritance;
2044
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002045 /// Direct members.
2046 MemberList Members;
2047 // Direct overloaded methods gathered by name.
2048 MethodsMap Methods;
Adrian McCarthy820ca542016-07-06 19:49:51 +00002049
Reid Kleckner9dac4732016-08-31 15:59:30 +00002050 TypeIndex VShapeTI;
2051
Reid Klecknere2e82062017-08-08 20:30:14 +00002052 std::vector<const DIType *> NestedTypes;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002053};
2054
2055void CodeViewDebug::clear() {
2056 assert(CurFn == nullptr);
2057 FileIdMap.clear();
2058 FnDebugInfo.clear();
2059 FileToFilepathMap.clear();
2060 LocalUDTs.clear();
2061 GlobalUDTs.clear();
2062 TypeIndices.clear();
2063 CompleteTypeIndices.clear();
Brock Wymab17464e2018-12-20 17:33:45 +00002064 ScopeGlobals.clear();
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002065}
2066
2067void CodeViewDebug::collectMemberInfo(ClassInfo &Info,
2068 const DIDerivedType *DDTy) {
2069 if (!DDTy->getName().empty()) {
2070 Info.Members.push_back({DDTy, 0});
2071 return;
2072 }
Shoaib Meenai03303a32018-02-27 21:48:41 +00002073
2074 // An unnamed member may represent a nested struct or union. Attempt to
2075 // interpret the unnamed member as a DICompositeType possibly wrapped in
2076 // qualifier types. Add all the indirect fields to the current record if that
2077 // succeeds, and drop the member if that fails.
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002078 assert((DDTy->getOffsetInBits() % 8) == 0 && "Unnamed bitfield member!");
David Majnemer08bd7442016-07-01 23:12:48 +00002079 uint64_t Offset = DDTy->getOffsetInBits();
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002080 const DIType *Ty = DDTy->getBaseType().resolve();
Shoaib Meenai03303a32018-02-27 21:48:41 +00002081 bool FullyResolved = false;
2082 while (!FullyResolved) {
2083 switch (Ty->getTag()) {
2084 case dwarf::DW_TAG_const_type:
2085 case dwarf::DW_TAG_volatile_type:
2086 // FIXME: we should apply the qualifier types to the indirect fields
2087 // rather than dropping them.
2088 Ty = cast<DIDerivedType>(Ty)->getBaseType().resolve();
2089 break;
2090 default:
2091 FullyResolved = true;
2092 break;
2093 }
2094 }
2095
2096 const DICompositeType *DCTy = dyn_cast<DICompositeType>(Ty);
2097 if (!DCTy)
2098 return;
2099
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002100 ClassInfo NestedInfo = collectClassInfo(DCTy);
2101 for (const ClassInfo::MemberInfo &IndirectField : NestedInfo.Members)
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002102 Info.Members.push_back(
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002103 {IndirectField.MemberTypeNode, IndirectField.BaseOffset + Offset});
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002104}
2105
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002106ClassInfo CodeViewDebug::collectClassInfo(const DICompositeType *Ty) {
2107 ClassInfo Info;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002108 // Add elements to structure type.
2109 DINodeArray Elements = Ty->getElements();
2110 for (auto *Element : Elements) {
2111 // We assume that the frontend provides all members in source declaration
2112 // order, which is what MSVC does.
2113 if (!Element)
2114 continue;
2115 if (auto *SP = dyn_cast<DISubprogram>(Element)) {
Reid Kleckner156a7232016-06-22 18:31:14 +00002116 Info.Methods[SP->getRawName()].push_back(SP);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002117 } else if (auto *DDTy = dyn_cast<DIDerivedType>(Element)) {
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002118 if (DDTy->getTag() == dwarf::DW_TAG_member) {
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002119 collectMemberInfo(Info, DDTy);
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002120 } else if (DDTy->getTag() == dwarf::DW_TAG_inheritance) {
2121 Info.Inheritance.push_back(DDTy);
Reid Kleckner9dac4732016-08-31 15:59:30 +00002122 } else if (DDTy->getTag() == dwarf::DW_TAG_pointer_type &&
2123 DDTy->getName() == "__vtbl_ptr_type") {
2124 Info.VShapeTI = getTypeIndex(DDTy);
Reid Klecknere2e82062017-08-08 20:30:14 +00002125 } else if (DDTy->getTag() == dwarf::DW_TAG_typedef) {
2126 Info.NestedTypes.push_back(DDTy);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002127 } else if (DDTy->getTag() == dwarf::DW_TAG_friend) {
2128 // Ignore friend members. It appears that MSVC emitted info about
2129 // friends in the past, but modern versions do not.
2130 }
Adrian McCarthy820ca542016-07-06 19:49:51 +00002131 } else if (auto *Composite = dyn_cast<DICompositeType>(Element)) {
Reid Klecknere2e82062017-08-08 20:30:14 +00002132 Info.NestedTypes.push_back(Composite);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002133 }
2134 // Skip other unrecognized kinds of elements.
2135 }
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002136 return Info;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002137}
2138
Brock Wymab60532f2018-06-11 01:39:34 +00002139static bool shouldAlwaysEmitCompleteClassType(const DICompositeType *Ty) {
2140 // This routine is used by lowerTypeClass and lowerTypeUnion to determine
2141 // if a complete type should be emitted instead of a forward reference.
2142 return Ty->getName().empty() && Ty->getIdentifier().empty() &&
2143 !Ty->isForwardDecl();
2144}
2145
Reid Klecknera8d57402016-06-03 15:58:20 +00002146TypeIndex CodeViewDebug::lowerTypeClass(const DICompositeType *Ty) {
Brock Wymab60532f2018-06-11 01:39:34 +00002147 // Emit the complete type for unnamed structs. C++ classes with methods
2148 // which have a circular reference back to the class type are expected to
2149 // be named by the front-end and should not be "unnamed". C unnamed
2150 // structs should not have circular references.
2151 if (shouldAlwaysEmitCompleteClassType(Ty)) {
2152 // If this unnamed complete type is already in the process of being defined
2153 // then the description of the type is malformed and cannot be emitted
2154 // into CodeView correctly so report a fatal error.
2155 auto I = CompleteTypeIndices.find(Ty);
2156 if (I != CompleteTypeIndices.end() && I->second == TypeIndex())
2157 report_fatal_error("cannot debug circular reference to unnamed type");
2158 return getCompleteTypeIndex(Ty);
2159 }
2160
Reid Klecknera8d57402016-06-03 15:58:20 +00002161 // First, construct the forward decl. Don't look into Ty to compute the
2162 // forward decl options, since it might not be available in all TUs.
2163 TypeRecordKind Kind = getRecordKind(Ty);
2164 ClassOptions CO =
Reid Klecknere092dad2016-07-02 00:11:07 +00002165 ClassOptions::ForwardReference | getCommonClassOptions(Ty);
David Majnemer6bdc24e2016-07-01 23:12:45 +00002166 std::string FullName = getFullyQualifiedName(Ty);
Zachary Turner4efa0a42016-11-08 22:24:53 +00002167 ClassRecord CR(Kind, 0, CO, TypeIndex(), TypeIndex(), TypeIndex(), 0,
2168 FullName, Ty->getIdentifier());
Zachary Turner6900de12017-11-28 18:33:17 +00002169 TypeIndex FwdDeclTI = TypeTable.writeLeafType(CR);
Reid Kleckner643dd832016-06-22 17:15:28 +00002170 if (!Ty->isForwardDecl())
2171 DeferredCompleteTypes.push_back(Ty);
Reid Klecknera8d57402016-06-03 15:58:20 +00002172 return FwdDeclTI;
2173}
2174
2175TypeIndex CodeViewDebug::lowerCompleteTypeClass(const DICompositeType *Ty) {
2176 // Construct the field list and complete type record.
2177 TypeRecordKind Kind = getRecordKind(Ty);
Reid Klecknere092dad2016-07-02 00:11:07 +00002178 ClassOptions CO = getCommonClassOptions(Ty);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002179 TypeIndex FieldTI;
2180 TypeIndex VShapeTI;
Reid Klecknera8d57402016-06-03 15:58:20 +00002181 unsigned FieldCount;
Adrian McCarthy820ca542016-07-06 19:49:51 +00002182 bool ContainsNestedClass;
2183 std::tie(FieldTI, VShapeTI, FieldCount, ContainsNestedClass) =
2184 lowerRecordFieldList(Ty);
2185
2186 if (ContainsNestedClass)
2187 CO |= ClassOptions::ContainsNestedClass;
Reid Klecknera8d57402016-06-03 15:58:20 +00002188
David Majnemer6bdc24e2016-07-01 23:12:45 +00002189 std::string FullName = getFullyQualifiedName(Ty);
Reid Kleckner0c5d8742016-06-22 01:32:56 +00002190
Reid Klecknera8d57402016-06-03 15:58:20 +00002191 uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
Hans Wennborg9a519a02016-06-22 21:22:13 +00002192
Zachary Turner4efa0a42016-11-08 22:24:53 +00002193 ClassRecord CR(Kind, FieldCount, CO, FieldTI, TypeIndex(), VShapeTI,
2194 SizeInBytes, FullName, Ty->getIdentifier());
Zachary Turner6900de12017-11-28 18:33:17 +00002195 TypeIndex ClassTI = TypeTable.writeLeafType(CR);
Hans Wennborg9a519a02016-06-22 21:22:13 +00002196
Aaron Smith122d9e72018-03-06 18:20:22 +00002197 addUDTSrcLine(Ty, ClassTI);
Hans Wennborg9a519a02016-06-22 21:22:13 +00002198
Zachary Turnera7b04172017-08-28 18:49:04 +00002199 addToUDTs(Ty);
Hans Wennborg4b63a982016-06-23 22:57:25 +00002200
Hans Wennborg9a519a02016-06-22 21:22:13 +00002201 return ClassTI;
Reid Klecknera8d57402016-06-03 15:58:20 +00002202}
2203
2204TypeIndex CodeViewDebug::lowerTypeUnion(const DICompositeType *Ty) {
Brock Wymab60532f2018-06-11 01:39:34 +00002205 // Emit the complete type for unnamed unions.
2206 if (shouldAlwaysEmitCompleteClassType(Ty))
2207 return getCompleteTypeIndex(Ty);
2208
Reid Klecknera8d57402016-06-03 15:58:20 +00002209 ClassOptions CO =
Reid Klecknere092dad2016-07-02 00:11:07 +00002210 ClassOptions::ForwardReference | getCommonClassOptions(Ty);
David Majnemer6bdc24e2016-07-01 23:12:45 +00002211 std::string FullName = getFullyQualifiedName(Ty);
Zachary Turner4efa0a42016-11-08 22:24:53 +00002212 UnionRecord UR(0, CO, TypeIndex(), 0, FullName, Ty->getIdentifier());
Zachary Turner6900de12017-11-28 18:33:17 +00002213 TypeIndex FwdDeclTI = TypeTable.writeLeafType(UR);
Reid Kleckner643dd832016-06-22 17:15:28 +00002214 if (!Ty->isForwardDecl())
2215 DeferredCompleteTypes.push_back(Ty);
Reid Klecknera8d57402016-06-03 15:58:20 +00002216 return FwdDeclTI;
2217}
2218
2219TypeIndex CodeViewDebug::lowerCompleteTypeUnion(const DICompositeType *Ty) {
David Majnemere1e73722016-07-06 21:07:42 +00002220 ClassOptions CO = ClassOptions::Sealed | getCommonClassOptions(Ty);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002221 TypeIndex FieldTI;
Reid Klecknera8d57402016-06-03 15:58:20 +00002222 unsigned FieldCount;
Adrian McCarthy820ca542016-07-06 19:49:51 +00002223 bool ContainsNestedClass;
2224 std::tie(FieldTI, std::ignore, FieldCount, ContainsNestedClass) =
2225 lowerRecordFieldList(Ty);
2226
2227 if (ContainsNestedClass)
2228 CO |= ClassOptions::ContainsNestedClass;
2229
Reid Klecknera8d57402016-06-03 15:58:20 +00002230 uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
David Majnemer6bdc24e2016-07-01 23:12:45 +00002231 std::string FullName = getFullyQualifiedName(Ty);
Hans Wennborg9a519a02016-06-22 21:22:13 +00002232
Zachary Turner4efa0a42016-11-08 22:24:53 +00002233 UnionRecord UR(FieldCount, CO, FieldTI, SizeInBytes, FullName,
2234 Ty->getIdentifier());
Zachary Turner6900de12017-11-28 18:33:17 +00002235 TypeIndex UnionTI = TypeTable.writeLeafType(UR);
Hans Wennborg9a519a02016-06-22 21:22:13 +00002236
Aaron Smith122d9e72018-03-06 18:20:22 +00002237 addUDTSrcLine(Ty, UnionTI);
Hans Wennborg9a519a02016-06-22 21:22:13 +00002238
Zachary Turnera7b04172017-08-28 18:49:04 +00002239 addToUDTs(Ty);
Hans Wennborg4b63a982016-06-23 22:57:25 +00002240
Hans Wennborg9a519a02016-06-22 21:22:13 +00002241 return UnionTI;
Reid Klecknera8d57402016-06-03 15:58:20 +00002242}
2243
Adrian McCarthy820ca542016-07-06 19:49:51 +00002244std::tuple<TypeIndex, TypeIndex, unsigned, bool>
Reid Klecknera8d57402016-06-03 15:58:20 +00002245CodeViewDebug::lowerRecordFieldList(const DICompositeType *Ty) {
2246 // Manually count members. MSVC appears to count everything that generates a
2247 // field list record. Each individual overload in a method overload group
2248 // contributes to this count, even though the overload group is a single field
2249 // list record.
2250 unsigned MemberCount = 0;
Reid Kleckner1ab7eac2016-06-22 16:06:42 +00002251 ClassInfo Info = collectClassInfo(Ty);
Zachary Turner6900de12017-11-28 18:33:17 +00002252 ContinuationRecordBuilder ContinuationBuilder;
2253 ContinuationBuilder.begin(ContinuationRecordKind::FieldList);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002254
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002255 // Create base classes.
2256 for (const DIDerivedType *I : Info.Inheritance) {
2257 if (I->getFlags() & DINode::FlagVirtual) {
2258 // Virtual base.
Brock Wyma3db2b102018-05-14 21:21:22 +00002259 unsigned VBPtrOffset = I->getVBPtrOffset();
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002260 // FIXME: Despite the accessor name, the offset is really in bytes.
2261 unsigned VBTableIndex = I->getOffsetInBits() / 4;
Bob Haarman26a87bd2016-10-25 22:11:52 +00002262 auto RecordKind = (I->getFlags() & DINode::FlagIndirectVirtualBase) == DINode::FlagIndirectVirtualBase
2263 ? TypeRecordKind::IndirectVirtualBaseClass
2264 : TypeRecordKind::VirtualBaseClass;
Zachary Turner4efa0a42016-11-08 22:24:53 +00002265 VirtualBaseClassRecord VBCR(
Bob Haarman26a87bd2016-10-25 22:11:52 +00002266 RecordKind, translateAccessFlags(Ty->getTag(), I->getFlags()),
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002267 getTypeIndex(I->getBaseType()), getVBPTypeIndex(), VBPtrOffset,
Zachary Turner4efa0a42016-11-08 22:24:53 +00002268 VBTableIndex);
2269
Zachary Turner6900de12017-11-28 18:33:17 +00002270 ContinuationBuilder.writeMemberType(VBCR);
Brock Wyma4536c1f2018-02-01 20:37:38 +00002271 MemberCount++;
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002272 } else {
2273 assert(I->getOffsetInBits() % 8 == 0 &&
2274 "bases must be on byte boundaries");
Zachary Turner4efa0a42016-11-08 22:24:53 +00002275 BaseClassRecord BCR(translateAccessFlags(Ty->getTag(), I->getFlags()),
2276 getTypeIndex(I->getBaseType()),
2277 I->getOffsetInBits() / 8);
Zachary Turner6900de12017-11-28 18:33:17 +00002278 ContinuationBuilder.writeMemberType(BCR);
Brock Wyma4536c1f2018-02-01 20:37:38 +00002279 MemberCount++;
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002280 }
2281 }
2282
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002283 // Create members.
2284 for (ClassInfo::MemberInfo &MemberInfo : Info.Members) {
2285 const DIDerivedType *Member = MemberInfo.MemberTypeNode;
2286 TypeIndex MemberBaseType = getTypeIndex(Member->getBaseType());
David Majnemer9319cbc2016-06-30 03:00:20 +00002287 StringRef MemberName = Member->getName();
2288 MemberAccess Access =
2289 translateAccessFlags(Ty->getTag(), Member->getFlags());
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002290
2291 if (Member->isStaticMember()) {
Zachary Turner4efa0a42016-11-08 22:24:53 +00002292 StaticDataMemberRecord SDMR(Access, MemberBaseType, MemberName);
Zachary Turner6900de12017-11-28 18:33:17 +00002293 ContinuationBuilder.writeMemberType(SDMR);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002294 MemberCount++;
Reid Klecknera8d57402016-06-03 15:58:20 +00002295 continue;
Reid Klecknera8d57402016-06-03 15:58:20 +00002296 }
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002297
Reid Kleckner9dac4732016-08-31 15:59:30 +00002298 // Virtual function pointer member.
2299 if ((Member->getFlags() & DINode::FlagArtificial) &&
2300 Member->getName().startswith("_vptr$")) {
Zachary Turner4efa0a42016-11-08 22:24:53 +00002301 VFPtrRecord VFPR(getTypeIndex(Member->getBaseType()));
Zachary Turner6900de12017-11-28 18:33:17 +00002302 ContinuationBuilder.writeMemberType(VFPR);
Reid Kleckner9dac4732016-08-31 15:59:30 +00002303 MemberCount++;
2304 continue;
2305 }
2306
David Majnemer9319cbc2016-06-30 03:00:20 +00002307 // Data member.
David Majnemer08bd7442016-07-01 23:12:48 +00002308 uint64_t MemberOffsetInBits =
2309 Member->getOffsetInBits() + MemberInfo.BaseOffset;
David Majnemer9319cbc2016-06-30 03:00:20 +00002310 if (Member->isBitField()) {
2311 uint64_t StartBitOffset = MemberOffsetInBits;
2312 if (const auto *CI =
2313 dyn_cast_or_null<ConstantInt>(Member->getStorageOffsetInBits())) {
David Majnemer08bd7442016-07-01 23:12:48 +00002314 MemberOffsetInBits = CI->getZExtValue() + MemberInfo.BaseOffset;
David Majnemer9319cbc2016-06-30 03:00:20 +00002315 }
2316 StartBitOffset -= MemberOffsetInBits;
Zachary Turner4efa0a42016-11-08 22:24:53 +00002317 BitFieldRecord BFR(MemberBaseType, Member->getSizeInBits(),
2318 StartBitOffset);
Zachary Turner6900de12017-11-28 18:33:17 +00002319 MemberBaseType = TypeTable.writeLeafType(BFR);
David Majnemer9319cbc2016-06-30 03:00:20 +00002320 }
2321 uint64_t MemberOffsetInBytes = MemberOffsetInBits / 8;
Zachary Turner4efa0a42016-11-08 22:24:53 +00002322 DataMemberRecord DMR(Access, MemberBaseType, MemberOffsetInBytes,
2323 MemberName);
Zachary Turner6900de12017-11-28 18:33:17 +00002324 ContinuationBuilder.writeMemberType(DMR);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002325 MemberCount++;
Reid Klecknera8d57402016-06-03 15:58:20 +00002326 }
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002327
2328 // Create methods
2329 for (auto &MethodItr : Info.Methods) {
2330 StringRef Name = MethodItr.first->getString();
2331
2332 std::vector<OneMethodRecord> Methods;
Reid Kleckner156a7232016-06-22 18:31:14 +00002333 for (const DISubprogram *SP : MethodItr.second) {
2334 TypeIndex MethodType = getMemberFunctionType(SP, Ty);
2335 bool Introduced = SP->getFlags() & DINode::FlagIntroducedVirtual;
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002336
2337 unsigned VFTableOffset = -1;
2338 if (Introduced)
2339 VFTableOffset = SP->getVirtualIndex() * getPointerSizeInBytes();
2340
Zachary Turner7251ede2016-11-02 17:05:19 +00002341 Methods.push_back(OneMethodRecord(
2342 MethodType, translateAccessFlags(Ty->getTag(), SP->getFlags()),
2343 translateMethodKindFlags(SP, Introduced),
2344 translateMethodOptionFlags(SP), VFTableOffset, Name));
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002345 MemberCount++;
2346 }
Eugene Zelenkofb69e662017-06-06 22:22:41 +00002347 assert(!Methods.empty() && "Empty methods map entry");
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002348 if (Methods.size() == 1)
Zachary Turner6900de12017-11-28 18:33:17 +00002349 ContinuationBuilder.writeMemberType(Methods[0]);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002350 else {
Zachary Turner6900de12017-11-28 18:33:17 +00002351 // FIXME: Make this use its own ContinuationBuilder so that
2352 // MethodOverloadList can be split correctly.
Zachary Turner4efa0a42016-11-08 22:24:53 +00002353 MethodOverloadListRecord MOLR(Methods);
Zachary Turner6900de12017-11-28 18:33:17 +00002354 TypeIndex MethodList = TypeTable.writeLeafType(MOLR);
2355
Zachary Turner4efa0a42016-11-08 22:24:53 +00002356 OverloadedMethodRecord OMR(Methods.size(), MethodList, Name);
Zachary Turner6900de12017-11-28 18:33:17 +00002357 ContinuationBuilder.writeMemberType(OMR);
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002358 }
2359 }
Adrian McCarthy820ca542016-07-06 19:49:51 +00002360
2361 // Create nested classes.
Reid Klecknere2e82062017-08-08 20:30:14 +00002362 for (const DIType *Nested : Info.NestedTypes) {
Adrian McCarthy820ca542016-07-06 19:49:51 +00002363 NestedTypeRecord R(getTypeIndex(DITypeRef(Nested)), Nested->getName());
Zachary Turner6900de12017-11-28 18:33:17 +00002364 ContinuationBuilder.writeMemberType(R);
Adrian McCarthy820ca542016-07-06 19:49:51 +00002365 MemberCount++;
2366 }
2367
Zachary Turner6900de12017-11-28 18:33:17 +00002368 TypeIndex FieldTI = TypeTable.insertRecord(ContinuationBuilder);
Reid Kleckner9dac4732016-08-31 15:59:30 +00002369 return std::make_tuple(FieldTI, Info.VShapeTI, MemberCount,
Reid Klecknere2e82062017-08-08 20:30:14 +00002370 !Info.NestedTypes.empty());
Reid Klecknera8d57402016-06-03 15:58:20 +00002371}
2372
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002373TypeIndex CodeViewDebug::getVBPTypeIndex() {
2374 if (!VBPType.getIndex()) {
2375 // Make a 'const int *' type.
2376 ModifierRecord MR(TypeIndex::Int32(), ModifierOptions::Const);
Zachary Turner6900de12017-11-28 18:33:17 +00002377 TypeIndex ModifiedTI = TypeTable.writeLeafType(MR);
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002378
2379 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
2380 : PointerKind::Near32;
2381 PointerMode PM = PointerMode::Pointer;
2382 PointerOptions PO = PointerOptions::None;
2383 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes());
Zachary Turner6900de12017-11-28 18:33:17 +00002384 VBPType = TypeTable.writeLeafType(PR);
Reid Kleckner9f7f3e12016-06-24 16:24:24 +00002385 }
2386
2387 return VBPType;
2388}
2389
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002390TypeIndex CodeViewDebug::getTypeIndex(DITypeRef TypeRef, DITypeRef ClassTyRef) {
Reid Kleckner5acacbb2016-06-01 17:05:51 +00002391 const DIType *Ty = TypeRef.resolve();
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002392 const DIType *ClassTy = ClassTyRef.resolve();
Reid Kleckner5acacbb2016-06-01 17:05:51 +00002393
2394 // The null DIType is the void type. Don't try to hash it.
2395 if (!Ty)
2396 return TypeIndex::Void();
2397
Reid Klecknera8d57402016-06-03 15:58:20 +00002398 // Check if we've already translated this type. Don't try to do a
2399 // get-or-create style insertion that caches the hash lookup across the
2400 // lowerType call. It will update the TypeIndices map.
Amjad Aboud76c9eb92016-06-18 10:25:07 +00002401 auto I = TypeIndices.find({Ty, ClassTy});
Reid Kleckner5acacbb2016-06-01 17:05:51 +00002402 if (I != TypeIndices.end())
2403 return I->second;
2404
Reid Klecknerb5af11d2016-07-01 02:41:21 +00002405 TypeLoweringScope S(*this);
2406 TypeIndex TI = lowerType(Ty, ClassTy);
2407 return recordTypeIndexForDINode(Ty, TI, ClassTy);
Reid Klecknera8d57402016-06-03 15:58:20 +00002408}
2409
Zachary Turnerc68f8952018-11-20 22:13:43 +00002410codeview::TypeIndex
Reid Klecknerc168c6f2018-12-26 21:52:17 +00002411CodeViewDebug::getTypeIndexForThisPtr(const DIDerivedType *PtrTy,
Zachary Turnerc68f8952018-11-20 22:13:43 +00002412 const DISubroutineType *SubroutineTy) {
Reid Klecknerc168c6f2018-12-26 21:52:17 +00002413 assert(PtrTy->getTag() == dwarf::DW_TAG_pointer_type &&
2414 "this type must be a pointer type");
Zachary Turnerc68f8952018-11-20 22:13:43 +00002415
2416 PointerOptions Options = PointerOptions::None;
2417 if (SubroutineTy->getFlags() & DINode::DIFlags::FlagLValueReference)
2418 Options = PointerOptions::LValueRefThisPointer;
2419 else if (SubroutineTy->getFlags() & DINode::DIFlags::FlagRValueReference)
2420 Options = PointerOptions::RValueRefThisPointer;
2421
2422 // Check if we've already translated this type. If there is no ref qualifier
2423 // on the function then we look up this pointer type with no associated class
2424 // so that the TypeIndex for the this pointer can be shared with the type
2425 // index for other pointers to this class type. If there is a ref qualifier
2426 // then we lookup the pointer using the subroutine as the parent type.
Reid Klecknerc168c6f2018-12-26 21:52:17 +00002427 auto I = TypeIndices.find({PtrTy, SubroutineTy});
Zachary Turnerc68f8952018-11-20 22:13:43 +00002428 if (I != TypeIndices.end())
2429 return I->second;
2430
2431 TypeLoweringScope S(*this);
Reid Klecknerc168c6f2018-12-26 21:52:17 +00002432 TypeIndex TI = lowerTypePointer(PtrTy, Options);
2433 return recordTypeIndexForDINode(PtrTy, TI, SubroutineTy);
Zachary Turnerc68f8952018-11-20 22:13:43 +00002434}
2435
Bob Haarman223303c2017-08-29 20:59:25 +00002436TypeIndex CodeViewDebug::getTypeIndexForReferenceTo(DITypeRef TypeRef) {
2437 DIType *Ty = TypeRef.resolve();
2438 PointerRecord PR(getTypeIndex(Ty),
2439 getPointerSizeInBytes() == 8 ? PointerKind::Near64
2440 : PointerKind::Near32,
2441 PointerMode::LValueReference, PointerOptions::None,
2442 Ty->getSizeInBits() / 8);
Zachary Turner6900de12017-11-28 18:33:17 +00002443 return TypeTable.writeLeafType(PR);
Bob Haarman223303c2017-08-29 20:59:25 +00002444}
2445
Reid Klecknera8d57402016-06-03 15:58:20 +00002446TypeIndex CodeViewDebug::getCompleteTypeIndex(DITypeRef TypeRef) {
2447 const DIType *Ty = TypeRef.resolve();
2448
2449 // The null DIType is the void type. Don't try to hash it.
2450 if (!Ty)
2451 return TypeIndex::Void();
2452
Reid Kleckner9571c802018-12-11 23:07:39 +00002453 // Look through typedefs when getting the complete type index. Call
2454 // getTypeIndex on the typdef to ensure that any UDTs are accumulated and are
2455 // emitted only once.
2456 if (Ty->getTag() == dwarf::DW_TAG_typedef)
2457 (void)getTypeIndex(Ty);
2458 while (Ty->getTag() == dwarf::DW_TAG_typedef)
2459 Ty = cast<DIDerivedType>(Ty)->getBaseType().resolve();
2460
Reid Klecknera8d57402016-06-03 15:58:20 +00002461 // If this is a non-record type, the complete type index is the same as the
2462 // normal type index. Just call getTypeIndex.
2463 switch (Ty->getTag()) {
2464 case dwarf::DW_TAG_class_type:
2465 case dwarf::DW_TAG_structure_type:
2466 case dwarf::DW_TAG_union_type:
2467 break;
2468 default:
2469 return getTypeIndex(Ty);
2470 }
2471
Brock Wymab60532f2018-06-11 01:39:34 +00002472 // Check if we've already translated the complete record type.
Reid Klecknera8d57402016-06-03 15:58:20 +00002473 const auto *CTy = cast<DICompositeType>(Ty);
2474 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
2475 if (!InsertResult.second)
2476 return InsertResult.first->second;
2477
Reid Kleckner643dd832016-06-22 17:15:28 +00002478 TypeLoweringScope S(*this);
2479
Reid Klecknera8d57402016-06-03 15:58:20 +00002480 // Make sure the forward declaration is emitted first. It's unclear if this
2481 // is necessary, but MSVC does it, and we should follow suit until we can show
2482 // otherwise.
Brock Wymab60532f2018-06-11 01:39:34 +00002483 // We only emit a forward declaration for named types.
2484 if (!CTy->getName().empty() || !CTy->getIdentifier().empty()) {
2485 TypeIndex FwdDeclTI = getTypeIndex(CTy);
Reid Klecknera8d57402016-06-03 15:58:20 +00002486
Brock Wymab60532f2018-06-11 01:39:34 +00002487 // Just use the forward decl if we don't have complete type info. This
2488 // might happen if the frontend is using modules and expects the complete
2489 // definition to be emitted elsewhere.
2490 if (CTy->isForwardDecl())
2491 return FwdDeclTI;
2492 }
Reid Klecknera8d57402016-06-03 15:58:20 +00002493
2494 TypeIndex TI;
2495 switch (CTy->getTag()) {
2496 case dwarf::DW_TAG_class_type:
2497 case dwarf::DW_TAG_structure_type:
2498 TI = lowerCompleteTypeClass(CTy);
2499 break;
2500 case dwarf::DW_TAG_union_type:
2501 TI = lowerCompleteTypeUnion(CTy);
2502 break;
2503 default:
2504 llvm_unreachable("not a record");
2505 }
2506
Brock Wymab60532f2018-06-11 01:39:34 +00002507 // Update the type index associated with this CompositeType. This cannot
2508 // use the 'InsertResult' iterator above because it is potentially
2509 // invalidated by map insertions which can occur while lowering the class
2510 // type above.
2511 CompleteTypeIndices[CTy] = TI;
Reid Kleckner5acacbb2016-06-01 17:05:51 +00002512 return TI;
2513}
2514
Reid Kleckner643dd832016-06-22 17:15:28 +00002515/// Emit all the deferred complete record types. Try to do this in FIFO order,
Amjad Aboudacee5682016-07-12 12:06:34 +00002516/// and do this until fixpoint, as each complete record type typically
2517/// references
Reid Kleckner643dd832016-06-22 17:15:28 +00002518/// many other record types.
2519void CodeViewDebug::emitDeferredCompleteTypes() {
2520 SmallVector<const DICompositeType *, 4> TypesToEmit;
2521 while (!DeferredCompleteTypes.empty()) {
2522 std::swap(DeferredCompleteTypes, TypesToEmit);
2523 for (const DICompositeType *RecordTy : TypesToEmit)
2524 getCompleteTypeIndex(RecordTy);
2525 TypesToEmit.clear();
2526 }
2527}
2528
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002529void CodeViewDebug::emitLocalVariableList(const FunctionInfo &FI,
2530 ArrayRef<LocalVariable> Locals) {
Reid Kleckner10dd55c2016-06-24 17:55:40 +00002531 // Get the sorted list of parameters and emit them first.
2532 SmallVector<const LocalVariable *, 6> Params;
2533 for (const LocalVariable &L : Locals)
2534 if (L.DIVar->isParameter())
2535 Params.push_back(&L);
Fangrui Song0cac7262018-09-27 02:13:45 +00002536 llvm::sort(Params, [](const LocalVariable *L, const LocalVariable *R) {
2537 return L->DIVar->getArg() < R->DIVar->getArg();
2538 });
Reid Kleckner10dd55c2016-06-24 17:55:40 +00002539 for (const LocalVariable *L : Params)
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002540 emitLocalVariable(FI, *L);
Reid Kleckner10dd55c2016-06-24 17:55:40 +00002541
2542 // Next emit all non-parameters in the order that we found them.
2543 for (const LocalVariable &L : Locals)
2544 if (!L.DIVar->isParameter())
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002545 emitLocalVariable(FI, L);
Reid Kleckner10dd55c2016-06-24 17:55:40 +00002546}
2547
Reid Kleckner8d7c4212018-10-01 22:25:49 +00002548/// Only call this on endian-specific types like ulittle16_t and little32_t, or
2549/// structs composed of them.
2550template <typename T>
2551static void copyBytesForDefRange(SmallString<20> &BytePrefix,
2552 SymbolKind SymKind, const T &DefRangeHeader) {
2553 BytePrefix.resize(2 + sizeof(T));
2554 ulittle16_t SymKindLE = ulittle16_t(SymKind);
2555 memcpy(&BytePrefix[0], &SymKindLE, 2);
2556 memcpy(&BytePrefix[2], &DefRangeHeader, sizeof(T));
2557}
2558
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002559void CodeViewDebug::emitLocalVariable(const FunctionInfo &FI,
2560 const LocalVariable &Var) {
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002561 // LocalSym record, see SymbolRecord.h for more info.
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002562 MCSymbol *LocalEnd = beginSymbolRecord(SymbolKind::S_LOCAL);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002563
Zachary Turner63a28462016-05-17 23:50:21 +00002564 LocalSymFlags Flags = LocalSymFlags::None;
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002565 if (Var.DIVar->isParameter())
Zachary Turner63a28462016-05-17 23:50:21 +00002566 Flags |= LocalSymFlags::IsParameter;
Reid Kleckner876330d2016-02-12 21:48:30 +00002567 if (Var.DefRanges.empty())
Zachary Turner63a28462016-05-17 23:50:21 +00002568 Flags |= LocalSymFlags::IsOptimizedOut;
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002569
2570 OS.AddComment("TypeIndex");
Reid Kleckner08f5fd52017-08-31 15:56:49 +00002571 TypeIndex TI = Var.UseReferenceType
2572 ? getTypeIndexForReferenceTo(Var.DIVar->getType())
2573 : getCompleteTypeIndex(Var.DIVar->getType());
Reid Kleckner5acacbb2016-06-01 17:05:51 +00002574 OS.EmitIntValue(TI.getIndex(), 4);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002575 OS.AddComment("Flags");
Zachary Turner63a28462016-05-17 23:50:21 +00002576 OS.EmitIntValue(static_cast<uint16_t>(Flags), 2);
David Majnemer12561252016-03-13 10:53:30 +00002577 // Truncate the name so we won't overflow the record length field.
David Majnemerb9456a52016-03-14 05:15:09 +00002578 emitNullTerminatedSymbolName(OS, Var.DIVar->getName());
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002579 endSymbolRecord(LocalEnd);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002580
Reid Kleckner876330d2016-02-12 21:48:30 +00002581 // Calculate the on disk prefix of the appropriate def range record. The
2582 // records and on disk formats are described in SymbolRecords.h. BytePrefix
2583 // should be big enough to hold all forms without memory allocation.
2584 SmallString<20> BytePrefix;
2585 for (const LocalVarDefRange &DefRange : Var.DefRanges) {
2586 BytePrefix.clear();
Reid Kleckner876330d2016-02-12 21:48:30 +00002587 if (DefRange.InMemory) {
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002588 int Offset = DefRange.DataOffset;
2589 unsigned Reg = DefRange.CVRegister;
2590
Reid Klecknerd5e4ec72018-10-02 16:43:52 +00002591 // 32-bit x86 call sequences often use PUSH instructions, which disrupt
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002592 // ESP-relative offsets. Use the virtual frame pointer, VFRAME or $T0,
Reid Kleckner2bcb2882018-11-03 00:41:52 +00002593 // instead. In frames without stack realignment, $T0 will be the CFA.
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002594 if (RegisterId(Reg) == RegisterId::ESP) {
2595 Reg = unsigned(RegisterId::VFRAME);
Reid Kleckner2bcb2882018-11-03 00:41:52 +00002596 Offset += FI.OffsetAdjustment;
Reid Kleckner2b3e6422016-10-05 21:21:33 +00002597 }
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002598
2599 // If we can use the chosen frame pointer for the frame and this isn't a
2600 // sliced aggregate, use the smaller S_DEFRANGE_FRAMEPOINTER_REL record.
2601 // Otherwise, use S_DEFRANGE_REGISTER_REL.
2602 EncodedFramePtrReg EncFP = encodeFramePtrReg(RegisterId(Reg), TheCPU);
2603 if (!DefRange.IsSubfield && EncFP != EncodedFramePtrReg::None &&
2604 (bool(Flags & LocalSymFlags::IsParameter)
2605 ? (EncFP == FI.EncodedParamFramePtrReg)
2606 : (EncFP == FI.EncodedLocalFramePtrReg))) {
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002607 little32_t FPOffset = little32_t(Offset);
Reid Kleckner8d7c4212018-10-01 22:25:49 +00002608 copyBytesForDefRange(BytePrefix, S_DEFRANGE_FRAMEPOINTER_REL, FPOffset);
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002609 } else {
2610 uint16_t RegRelFlags = 0;
2611 if (DefRange.IsSubfield) {
2612 RegRelFlags = DefRangeRegisterRelSym::IsSubfieldFlag |
2613 (DefRange.StructOffset
2614 << DefRangeRegisterRelSym::OffsetInParentShift);
2615 }
2616 DefRangeRegisterRelSym::Header DRHdr;
2617 DRHdr.Register = Reg;
2618 DRHdr.Flags = RegRelFlags;
2619 DRHdr.BasePointerOffset = Offset;
Reid Kleckner8d7c4212018-10-01 22:25:49 +00002620 copyBytesForDefRange(BytePrefix, S_DEFRANGE_REGISTER_REL, DRHdr);
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002621 }
Reid Kleckner876330d2016-02-12 21:48:30 +00002622 } else {
2623 assert(DefRange.DataOffset == 0 && "unexpected offset into register");
Reid Kleckner2b3e6422016-10-05 21:21:33 +00002624 if (DefRange.IsSubfield) {
Reid Kleckner8d7c4212018-10-01 22:25:49 +00002625 DefRangeSubfieldRegisterSym::Header DRHdr;
2626 DRHdr.Register = DefRange.CVRegister;
2627 DRHdr.MayHaveNoName = 0;
2628 DRHdr.OffsetInParent = DefRange.StructOffset;
2629 copyBytesForDefRange(BytePrefix, S_DEFRANGE_SUBFIELD_REGISTER, DRHdr);
Reid Kleckner2b3e6422016-10-05 21:21:33 +00002630 } else {
Reid Kleckner8d7c4212018-10-01 22:25:49 +00002631 DefRangeRegisterSym::Header DRHdr;
2632 DRHdr.Register = DefRange.CVRegister;
2633 DRHdr.MayHaveNoName = 0;
2634 copyBytesForDefRange(BytePrefix, S_DEFRANGE_REGISTER, DRHdr);
Reid Kleckner2b3e6422016-10-05 21:21:33 +00002635 }
Reid Kleckner876330d2016-02-12 21:48:30 +00002636 }
2637 OS.EmitCVDefRangeDirective(DefRange.Ranges, BytePrefix);
2638 }
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002639}
2640
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002641void CodeViewDebug::emitLexicalBlockList(ArrayRef<LexicalBlock *> Blocks,
2642 const FunctionInfo& FI) {
2643 for (LexicalBlock *Block : Blocks)
2644 emitLexicalBlock(*Block, FI);
2645}
2646
2647/// Emit an S_BLOCK32 and S_END record pair delimiting the contents of a
2648/// lexical block scope.
2649void CodeViewDebug::emitLexicalBlock(const LexicalBlock &Block,
2650 const FunctionInfo& FI) {
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002651 MCSymbol *RecordEnd = beginSymbolRecord(SymbolKind::S_BLOCK32);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002652 OS.AddComment("PtrParent");
2653 OS.EmitIntValue(0, 4); // PtrParent
2654 OS.AddComment("PtrEnd");
2655 OS.EmitIntValue(0, 4); // PtrEnd
2656 OS.AddComment("Code size");
2657 OS.emitAbsoluteSymbolDiff(Block.End, Block.Begin, 4); // Code Size
2658 OS.AddComment("Function section relative address");
2659 OS.EmitCOFFSecRel32(Block.Begin, /*Offset=*/0); // Func Offset
2660 OS.AddComment("Function section index");
2661 OS.EmitCOFFSectionIndex(FI.Begin); // Func Symbol
2662 OS.AddComment("Lexical block name");
2663 emitNullTerminatedSymbolName(OS, Block.Name); // Name
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002664 endSymbolRecord(RecordEnd);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002665
2666 // Emit variables local to this lexical block.
Reid Kleckner9ea2c012018-10-01 21:59:45 +00002667 emitLocalVariableList(FI, Block.Locals);
Brock Wymab17464e2018-12-20 17:33:45 +00002668 emitGlobalVariableList(Block.Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002669
2670 // Emit lexical blocks contained within this block.
2671 emitLexicalBlockList(Block.Children, FI);
2672
2673 // Close the lexical block scope.
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002674 emitEndSymbolRecord(SymbolKind::S_END);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002675}
2676
2677/// Convenience routine for collecting lexical block information for a list
2678/// of lexical scopes.
2679void CodeViewDebug::collectLexicalBlockInfo(
2680 SmallVectorImpl<LexicalScope *> &Scopes,
2681 SmallVectorImpl<LexicalBlock *> &Blocks,
Brock Wymab17464e2018-12-20 17:33:45 +00002682 SmallVectorImpl<LocalVariable> &Locals,
2683 SmallVectorImpl<CVGlobalVariable> &Globals) {
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002684 for (LexicalScope *Scope : Scopes)
Brock Wymab17464e2018-12-20 17:33:45 +00002685 collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002686}
2687
2688/// Populate the lexical blocks and local variable lists of the parent with
2689/// information about the specified lexical scope.
2690void CodeViewDebug::collectLexicalBlockInfo(
2691 LexicalScope &Scope,
2692 SmallVectorImpl<LexicalBlock *> &ParentBlocks,
Brock Wymab17464e2018-12-20 17:33:45 +00002693 SmallVectorImpl<LocalVariable> &ParentLocals,
2694 SmallVectorImpl<CVGlobalVariable> &ParentGlobals) {
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002695 if (Scope.isAbstractScope())
2696 return;
2697
Brock Wymab17464e2018-12-20 17:33:45 +00002698 // Gather information about the lexical scope including local variables,
2699 // global variables, and address ranges.
2700 bool IgnoreScope = false;
2701 auto LI = ScopeVariables.find(&Scope);
2702 SmallVectorImpl<LocalVariable> *Locals =
2703 LI != ScopeVariables.end() ? &LI->second : nullptr;
2704 auto GI = ScopeGlobals.find(Scope.getScopeNode());
2705 SmallVectorImpl<CVGlobalVariable> *Globals =
2706 GI != ScopeGlobals.end() ? GI->second.get() : nullptr;
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002707 const DILexicalBlock *DILB = dyn_cast<DILexicalBlock>(Scope.getScopeNode());
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002708 const SmallVectorImpl<InsnRange> &Ranges = Scope.getRanges();
Brock Wymab17464e2018-12-20 17:33:45 +00002709
2710 // Ignore lexical scopes which do not contain variables.
2711 if (!Locals && !Globals)
2712 IgnoreScope = true;
2713
2714 // Ignore lexical scopes which are not lexical blocks.
2715 if (!DILB)
2716 IgnoreScope = true;
2717
2718 // Ignore scopes which have too many address ranges to represent in the
2719 // current CodeView format or do not have a valid address range.
2720 //
2721 // For lexical scopes with multiple address ranges you may be tempted to
2722 // construct a single range covering every instruction where the block is
2723 // live and everything in between. Unfortunately, Visual Studio only
2724 // displays variables from the first matching lexical block scope. If the
2725 // first lexical block contains exception handling code or cold code which
2726 // is moved to the bottom of the routine creating a single range covering
2727 // nearly the entire routine, then it will hide all other lexical blocks
2728 // and the variables they contain.
2729 if (Ranges.size() != 1 || !getLabelAfterInsn(Ranges.front().second))
2730 IgnoreScope = true;
2731
2732 if (IgnoreScope) {
2733 // This scope can be safely ignored and eliminating it will reduce the
2734 // size of the debug information. Be sure to collect any variable and scope
2735 // information from the this scope or any of its children and collapse them
2736 // into the parent scope.
2737 if (Locals)
2738 ParentLocals.append(Locals->begin(), Locals->end());
2739 if (Globals)
2740 ParentGlobals.append(Globals->begin(), Globals->end());
2741 collectLexicalBlockInfo(Scope.getChildren(),
2742 ParentBlocks,
2743 ParentLocals,
2744 ParentGlobals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002745 return;
2746 }
2747
2748 // Create a new CodeView lexical block for this lexical scope. If we've
2749 // seen this DILexicalBlock before then the scope tree is malformed and
2750 // we can handle this gracefully by not processing it a second time.
2751 auto BlockInsertion = CurFn->LexicalBlocks.insert({DILB, LexicalBlock()});
2752 if (!BlockInsertion.second)
2753 return;
2754
Brock Wymab17464e2018-12-20 17:33:45 +00002755 // Create a lexical block containing the variables and collect the the
2756 // lexical block information for the children.
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002757 const InsnRange &Range = Ranges.front();
2758 assert(Range.first && Range.second);
2759 LexicalBlock &Block = BlockInsertion.first->second;
2760 Block.Begin = getLabelBeforeInsn(Range.first);
2761 Block.End = getLabelAfterInsn(Range.second);
2762 assert(Block.Begin && "missing label for scope begin");
2763 assert(Block.End && "missing label for scope end");
2764 Block.Name = DILB->getName();
Brock Wymab17464e2018-12-20 17:33:45 +00002765 if (Locals)
2766 Block.Locals = std::move(*Locals);
2767 if (Globals)
2768 Block.Globals = std::move(*Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002769 ParentBlocks.push_back(&Block);
Brock Wymab17464e2018-12-20 17:33:45 +00002770 collectLexicalBlockInfo(Scope.getChildren(),
2771 Block.Children,
2772 Block.Locals,
2773 Block.Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002774}
2775
David Blaikieb2fbb4b2017-02-16 18:48:33 +00002776void CodeViewDebug::endFunctionImpl(const MachineFunction *MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00002777 const Function &GV = MF->getFunction();
2778 assert(FnDebugInfo.count(&GV));
Reid Kleckner55baeef2018-03-15 21:12:21 +00002779 assert(CurFn == FnDebugInfo[&GV].get());
Timur Iskhodzhanovb5b7a612014-03-26 11:24:36 +00002780
Matthias Braunf1caa282017-12-15 22:22:58 +00002781 collectVariableInfo(GV.getSubprogram());
Reid Kleckner876330d2016-02-12 21:48:30 +00002782
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002783 // Build the lexical block structure to emit for this routine.
2784 if (LexicalScope *CFS = LScopes.getCurrentFunctionScope())
Brock Wymab17464e2018-12-20 17:33:45 +00002785 collectLexicalBlockInfo(*CFS,
2786 CurFn->ChildBlocks,
2787 CurFn->Locals,
2788 CurFn->Globals);
Reid Kleckner5a791ee2018-03-15 21:24:04 +00002789
2790 // Clear the scope and variable information from the map which will not be
2791 // valid after we have finished processing this routine. This also prepares
2792 // the map for the subsequent routine.
2793 ScopeVariables.clear();
2794
Reid Kleckner2214ed82016-01-29 00:49:42 +00002795 // Don't emit anything if we don't have any line tables.
Brock Wyma94ece8f2018-04-16 16:53:57 +00002796 // Thunks are compiler-generated and probably won't have source correlation.
2797 if (!CurFn->HaveLineInfo && !GV.getSubprogram()->isThunk()) {
Matthias Braunf1caa282017-12-15 22:22:58 +00002798 FnDebugInfo.erase(&GV);
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002799 CurFn = nullptr;
2800 return;
Timur Iskhodzhanov8499a122014-03-26 09:50:36 +00002801 }
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002802
Reid Klecknere33c94f2017-09-05 20:14:58 +00002803 CurFn->Annotations = MF->getCodeViewAnnotations();
2804
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002805 CurFn->End = Asm->getFunctionEnd();
2806
Craig Topper353eda42014-04-24 06:44:33 +00002807 CurFn = nullptr;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002808}
2809
Reid Kleckner70f5bc92016-01-14 19:25:04 +00002810void CodeViewDebug::beginInstruction(const MachineInstr *MI) {
Reid Klecknerf9c275f2016-02-10 20:55:49 +00002811 DebugHandlerBase::beginInstruction(MI);
2812
Shiva Chen801bf7e2018-05-09 02:42:00 +00002813 // Ignore DBG_VALUE and DBG_LABEL locations and function prologue.
2814 if (!Asm || !CurFn || MI->isDebugInstr() ||
David Majnemer67f684e2016-07-28 05:03:22 +00002815 MI->getFlag(MachineInstr::FrameSetup))
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002816 return;
Reid Kleckner45a74622017-06-30 21:33:44 +00002817
2818 // If the first instruction of a new MBB has no location, find the first
2819 // instruction with a location and use that.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002820 DebugLoc DL = MI->getDebugLoc();
Reid Kleckner45a74622017-06-30 21:33:44 +00002821 if (!DL && MI->getParent() != PrevInstBB) {
2822 for (const auto &NextMI : *MI->getParent()) {
Shiva Chen801bf7e2018-05-09 02:42:00 +00002823 if (NextMI.isDebugInstr())
Reid Kleckner2de471d2017-07-31 21:03:08 +00002824 continue;
Reid Kleckner45a74622017-06-30 21:33:44 +00002825 DL = NextMI.getDebugLoc();
2826 if (DL)
2827 break;
2828 }
2829 }
2830 PrevInstBB = MI->getParent();
2831
2832 // If we still don't have a debug location, don't record a location.
2833 if (!DL)
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002834 return;
Reid Kleckner45a74622017-06-30 21:33:44 +00002835
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002836 maybeRecordLocation(DL, Asm->MF);
2837}
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002838
Zachary Turner8c099fe2017-05-30 16:36:15 +00002839MCSymbol *CodeViewDebug::beginCVSubsection(DebugSubsectionKind Kind) {
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002840 MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
2841 *EndLabel = MMI->getContext().createTempSymbol();
2842 OS.EmitIntValue(unsigned(Kind), 4);
2843 OS.AddComment("Subsection size");
2844 OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 4);
2845 OS.EmitLabel(BeginLabel);
2846 return EndLabel;
2847}
2848
2849void CodeViewDebug::endCVSubsection(MCSymbol *EndLabel) {
2850 OS.EmitLabel(EndLabel);
2851 // Every subsection must be aligned to a 4-byte boundary.
2852 OS.EmitValueToAlignment(4);
2853}
2854
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002855static StringRef getSymbolName(SymbolKind SymKind) {
2856 for (const EnumEntry<SymbolKind> &EE : getSymbolTypeNames())
2857 if (EE.Value == SymKind)
2858 return EE.Name;
2859 return "";
2860}
2861
2862MCSymbol *CodeViewDebug::beginSymbolRecord(SymbolKind SymKind) {
2863 MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
2864 *EndLabel = MMI->getContext().createTempSymbol();
2865 OS.AddComment("Record length");
2866 OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 2);
2867 OS.EmitLabel(BeginLabel);
2868 if (OS.isVerboseAsm())
2869 OS.AddComment("Record kind: " + getSymbolName(SymKind));
2870 OS.EmitIntValue(unsigned(SymKind), 2);
2871 return EndLabel;
2872}
2873
2874void CodeViewDebug::endSymbolRecord(MCSymbol *SymEnd) {
Reid Kleckner4ab50b82018-12-18 01:36:06 +00002875 // MSVC does not pad out symbol records to four bytes, but LLVM does to avoid
2876 // an extra copy of every symbol record in LLD. This increases object file
2877 // size by less than 1% in the clang build, and is compatible with the Visual
2878 // C++ linker.
Reid Kleckner53ce0592018-12-18 01:14:05 +00002879 OS.EmitValueToAlignment(4);
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002880 OS.EmitLabel(SymEnd);
2881}
2882
2883void CodeViewDebug::emitEndSymbolRecord(SymbolKind EndKind) {
2884 OS.AddComment("Record length");
2885 OS.EmitIntValue(2, 2);
2886 if (OS.isVerboseAsm())
2887 OS.AddComment("Record kind: " + getSymbolName(EndKind));
2888 OS.EmitIntValue(unsigned(EndKind), 2); // Record Kind
2889}
2890
David Majnemer3128b102016-06-15 18:00:01 +00002891void CodeViewDebug::emitDebugInfoForUDTs(
Zachary Turnera7b04172017-08-28 18:49:04 +00002892 ArrayRef<std::pair<std::string, const DIType *>> UDTs) {
2893 for (const auto &UDT : UDTs) {
2894 const DIType *T = UDT.second;
2895 assert(shouldEmitUdt(T));
2896
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002897 MCSymbol *UDTRecordEnd = beginSymbolRecord(SymbolKind::S_UDT);
David Majnemer3128b102016-06-15 18:00:01 +00002898 OS.AddComment("Type");
Zachary Turnera7b04172017-08-28 18:49:04 +00002899 OS.EmitIntValue(getCompleteTypeIndex(T).getIndex(), 4);
David Majnemer3128b102016-06-15 18:00:01 +00002900 emitNullTerminatedSymbolName(OS, UDT.first);
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002901 endSymbolRecord(UDTRecordEnd);
David Majnemer3128b102016-06-15 18:00:01 +00002902 }
2903}
2904
Brock Wymab17464e2018-12-20 17:33:45 +00002905void CodeViewDebug::collectGlobalVariableInfo() {
Adrian Prantlbceaaa92016-12-20 02:09:43 +00002906 DenseMap<const DIGlobalVariableExpression *, const GlobalVariable *>
2907 GlobalMap;
Peter Collingbourned4135bb2016-09-13 01:12:59 +00002908 for (const GlobalVariable &GV : MMI->getModule()->globals()) {
Adrian Prantlbceaaa92016-12-20 02:09:43 +00002909 SmallVector<DIGlobalVariableExpression *, 1> GVEs;
2910 GV.getDebugInfo(GVEs);
2911 for (const auto *GVE : GVEs)
2912 GlobalMap[GVE] = &GV;
Peter Collingbourned4135bb2016-09-13 01:12:59 +00002913 }
2914
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002915 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
2916 for (const MDNode *Node : CUs->operands()) {
2917 const auto *CU = cast<DICompileUnit>(Node);
Adrian Prantlbceaaa92016-12-20 02:09:43 +00002918 for (const auto *GVE : CU->getGlobalVariables()) {
Brock Wymab17464e2018-12-20 17:33:45 +00002919 const auto *GV = GlobalMap.lookup(GVE);
2920 if (!GV || GV->isDeclarationForLinker())
2921 continue;
2922 const DIGlobalVariable *DIGV = GVE->getVariable();
2923 DIScope *Scope = DIGV->getScope();
2924 SmallVector<CVGlobalVariable, 1> *VariableList;
2925 if (Scope && isa<DILocalScope>(Scope)) {
2926 // Locate a global variable list for this scope, creating one if
2927 // necessary.
2928 auto Insertion = ScopeGlobals.insert(
2929 {Scope, std::unique_ptr<GlobalVariableList>()});
2930 if (Insertion.second)
2931 Insertion.first->second = llvm::make_unique<GlobalVariableList>();
2932 VariableList = Insertion.first->second.get();
2933 } else if (GV->hasComdat())
2934 // Emit this global variable into a COMDAT section.
2935 VariableList = &ComdatVariables;
2936 else
2937 // Emit this globla variable in a single global symbol section.
2938 VariableList = &GlobalVariables;
2939 CVGlobalVariable CVGV = {DIGV, GV};
2940 VariableList->emplace_back(std::move(CVGV));
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002941 }
Brock Wymab17464e2018-12-20 17:33:45 +00002942 }
2943}
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002944
Brock Wymab17464e2018-12-20 17:33:45 +00002945void CodeViewDebug::emitDebugInfoForGlobals() {
2946 // First, emit all globals that are not in a comdat in a single symbol
2947 // substream. MSVC doesn't like it if the substream is empty, so only open
2948 // it if we have at least one global to emit.
2949 switchToDebugSectionForSymbol(nullptr);
2950 if (!GlobalVariables.empty()) {
2951 OS.AddComment("Symbol subsection for globals");
2952 MCSymbol *EndLabel = beginCVSubsection(DebugSubsectionKind::Symbols);
2953 emitGlobalVariableList(GlobalVariables);
2954 endCVSubsection(EndLabel);
2955 }
2956
2957 // Second, emit each global that is in a comdat into its own .debug$S
2958 // section along with its own symbol substream.
2959 for (const CVGlobalVariable &CVGV : ComdatVariables) {
2960 MCSymbol *GVSym = Asm->getSymbol(CVGV.GV);
2961 OS.AddComment("Symbol subsection for " +
2962 Twine(GlobalValue::dropLLVMManglingEscape(CVGV.GV->getName())));
2963 switchToDebugSectionForSymbol(GVSym);
2964 MCSymbol *EndLabel = beginCVSubsection(DebugSubsectionKind::Symbols);
2965 // FIXME: emitDebugInfoForGlobal() doesn't handle DIExpressions.
2966 emitDebugInfoForGlobal(CVGV.DIGV, CVGV.GV, GVSym);
2967 endCVSubsection(EndLabel);
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002968 }
2969}
2970
Hans Wennborgb510b452016-06-23 16:33:53 +00002971void CodeViewDebug::emitDebugInfoForRetainedTypes() {
2972 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
2973 for (const MDNode *Node : CUs->operands()) {
2974 for (auto *Ty : cast<DICompileUnit>(Node)->getRetainedTypes()) {
2975 if (DIType *RT = dyn_cast<DIType>(Ty)) {
2976 getTypeIndex(RT);
2977 // FIXME: Add to global/local DTU list.
2978 }
2979 }
2980 }
2981}
2982
Brock Wymab17464e2018-12-20 17:33:45 +00002983// Emit each global variable in the specified array.
2984void CodeViewDebug::emitGlobalVariableList(ArrayRef<CVGlobalVariable> Globals) {
2985 for (const CVGlobalVariable &CVGV : Globals) {
2986 MCSymbol *GVSym = Asm->getSymbol(CVGV.GV);
2987 // FIXME: emitDebugInfoForGlobal() doesn't handle DIExpressions.
2988 emitDebugInfoForGlobal(CVGV.DIGV, CVGV.GV, GVSym);
2989 }
2990}
2991
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002992void CodeViewDebug::emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
Peter Collingbourned4135bb2016-09-13 01:12:59 +00002993 const GlobalVariable *GV,
Reid Kleckner6f3406d2016-06-07 00:02:03 +00002994 MCSymbol *GVSym) {
Reid Kleckner5bf71d12018-12-14 22:40:28 +00002995 // DataSym record, see SymbolRecord.h for more info. Thread local data
2996 // happens to have the same format as global data.
2997 SymbolKind DataSym = GV->isThreadLocal()
2998 ? (DIGV->isLocalToUnit() ? SymbolKind::S_LTHREAD32
2999 : SymbolKind::S_GTHREAD32)
3000 : (DIGV->isLocalToUnit() ? SymbolKind::S_LDATA32
3001 : SymbolKind::S_GDATA32);
3002 MCSymbol *DataEnd = beginSymbolRecord(DataSym);
Reid Kleckner6f3406d2016-06-07 00:02:03 +00003003 OS.AddComment("Type");
3004 OS.EmitIntValue(getCompleteTypeIndex(DIGV->getType()).getIndex(), 4);
3005 OS.AddComment("DataOffset");
Keno Fischerf7d84ee2017-01-02 03:00:19 +00003006 OS.EmitCOFFSecRel32(GVSym, /*Offset=*/0);
Reid Kleckner6f3406d2016-06-07 00:02:03 +00003007 OS.AddComment("Segment");
3008 OS.EmitCOFFSectionIndex(GVSym);
3009 OS.AddComment("Name");
Reid Kleckner5bf71d12018-12-14 22:40:28 +00003010 const unsigned LengthOfDataRecord = 12;
3011 emitNullTerminatedSymbolName(OS, DIGV->getName(), LengthOfDataRecord);
3012 endSymbolRecord(DataEnd);
Reid Kleckner6f3406d2016-06-07 00:02:03 +00003013}