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