Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 1 | //===- DbiModuleDescriptorBuilder.cpp - PDB Mod Info Creation ---*- C++ -*-===// |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +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 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 10 | #include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h" |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 11 | |
| 12 | #include "llvm/ADT/ArrayRef.h" |
Zachary Turner | 264b5d9 | 2017-06-07 03:48:56 +0000 | [diff] [blame] | 13 | #include "llvm/BinaryFormat/COFF.h" |
Zachary Turner | 8c099fe | 2017-05-30 16:36:15 +0000 | [diff] [blame] | 14 | #include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h" |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/MSF/MSFBuilder.h" |
| 16 | #include "llvm/DebugInfo/MSF/MSFCommon.h" |
| 17 | #include "llvm/DebugInfo/MSF/MappedBlockStream.h" |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 18 | #include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h" |
Zachary Turner | 946204c | 2017-08-09 04:23:25 +0000 | [diff] [blame] | 19 | #include "llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h" |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 20 | #include "llvm/DebugInfo/PDB/Native/RawConstants.h" |
| 21 | #include "llvm/DebugInfo/PDB/Native/RawError.h" |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 22 | #include "llvm/Support/BinaryStreamWriter.h" |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 23 | |
| 24 | using namespace llvm; |
| 25 | using namespace llvm::codeview; |
| 26 | using namespace llvm::msf; |
| 27 | using namespace llvm::pdb; |
| 28 | |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 29 | static uint32_t calculateDiSymbolStreamSize(uint32_t SymbolByteSize, |
| 30 | uint32_t C13Size) { |
Zachary Turner | 1bfb9f4 | 2017-06-06 23:54:23 +0000 | [diff] [blame] | 31 | uint32_t Size = sizeof(uint32_t); // Signature |
| 32 | Size += alignTo(SymbolByteSize, 4); // Symbol Data |
| 33 | Size += 0; // TODO: Layout.C11Bytes |
| 34 | Size += C13Size; // C13 Debug Info Size |
| 35 | Size += sizeof(uint32_t); // GlobalRefs substream size (always 0) |
| 36 | Size += 0; // GlobalRefs substream bytes |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 37 | return Size; |
| 38 | } |
| 39 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 40 | DbiModuleDescriptorBuilder::DbiModuleDescriptorBuilder(StringRef ModuleName, |
| 41 | uint32_t ModIndex, |
| 42 | msf::MSFBuilder &Msf) |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 43 | : MSF(Msf), ModuleName(ModuleName) { |
Zachary Turner | 297b6eb | 2017-06-20 18:50:55 +0000 | [diff] [blame] | 44 | ::memset(&Layout, 0, sizeof(Layout)); |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 45 | Layout.Mod = ModIndex; |
| 46 | } |
| 47 | |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 48 | DbiModuleDescriptorBuilder::~DbiModuleDescriptorBuilder() {} |
| 49 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 50 | uint16_t DbiModuleDescriptorBuilder::getStreamIndex() const { |
| 51 | return Layout.ModDiStream; |
| 52 | } |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 53 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 54 | void DbiModuleDescriptorBuilder::setObjFileName(StringRef Name) { |
| 55 | ObjFileName = Name; |
| 56 | } |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 57 | |
Zachary Turner | 6c4bfba | 2017-07-07 05:04:36 +0000 | [diff] [blame] | 58 | void DbiModuleDescriptorBuilder::setPdbFilePathNI(uint32_t NI) { |
| 59 | PdbFilePathNI = NI; |
| 60 | } |
| 61 | |
Zachary Turner | 194be87 | 2018-04-20 18:00:46 +0000 | [diff] [blame] | 62 | void DbiModuleDescriptorBuilder::setFirstSectionContrib( |
| 63 | const SectionContrib &SC) { |
| 64 | Layout.SC = SC; |
| 65 | } |
| 66 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 67 | void DbiModuleDescriptorBuilder::addSymbol(CVSymbol Symbol) { |
Reid Kleckner | 291d015 | 2018-11-27 19:00:23 +0000 | [diff] [blame] | 68 | // Defer to the bulk API. It does the same thing. |
| 69 | addSymbolsInBulk(Symbol.data()); |
| 70 | } |
| 71 | |
| 72 | void DbiModuleDescriptorBuilder::addSymbolsInBulk( |
| 73 | ArrayRef<uint8_t> BulkSymbols) { |
| 74 | // Do nothing for empty runs of symbols. |
| 75 | if (BulkSymbols.empty()) |
| 76 | return; |
| 77 | |
| 78 | Symbols.push_back(BulkSymbols); |
| 79 | // Symbols written to a PDB file are required to be 4 byte aligned. The same |
Zachary Turner | ebd3ae8 | 2017-06-01 21:52:41 +0000 | [diff] [blame] | 80 | // is not true of object files. |
Reid Kleckner | 291d015 | 2018-11-27 19:00:23 +0000 | [diff] [blame] | 81 | assert(BulkSymbols.size() % alignOf(CodeViewContainer::Pdb) == 0 && |
Zachary Turner | ebd3ae8 | 2017-06-01 21:52:41 +0000 | [diff] [blame] | 82 | "Invalid Symbol alignment!"); |
Reid Kleckner | 291d015 | 2018-11-27 19:00:23 +0000 | [diff] [blame] | 83 | SymbolByteSize += BulkSymbols.size(); |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 86 | void DbiModuleDescriptorBuilder::addSourceFile(StringRef Path) { |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 87 | SourceFiles.push_back(Path); |
| 88 | } |
| 89 | |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 90 | uint32_t DbiModuleDescriptorBuilder::calculateC13DebugInfoSize() const { |
| 91 | uint32_t Result = 0; |
| 92 | for (const auto &Builder : C13Builders) { |
| 93 | assert(Builder && "Empty C13 Fragment Builder!"); |
| 94 | Result += Builder->calculateSerializedLength(); |
| 95 | } |
| 96 | return Result; |
| 97 | } |
| 98 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 99 | uint32_t DbiModuleDescriptorBuilder::calculateSerializedLength() const { |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 100 | uint32_t L = sizeof(Layout); |
| 101 | uint32_t M = ModuleName.size() + 1; |
| 102 | uint32_t O = ObjFileName.size() + 1; |
| 103 | return alignTo(L + M + O, sizeof(uint32_t)); |
| 104 | } |
| 105 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 106 | void DbiModuleDescriptorBuilder::finalize() { |
Zachary Turner | bee6c22 | 2018-04-17 20:06:43 +0000 | [diff] [blame] | 107 | Layout.SC.Imod = Layout.Mod; |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 108 | Layout.FileNameOffs = 0; // TODO: Fix this |
| 109 | Layout.Flags = 0; // TODO: Fix this |
Zachary Turner | 5b6e4e0 | 2017-04-29 01:13:21 +0000 | [diff] [blame] | 110 | Layout.C11Bytes = 0; |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 111 | Layout.C13Bytes = calculateC13DebugInfoSize(); |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 112 | (void)Layout.Mod; // Set in constructor |
| 113 | (void)Layout.ModDiStream; // Set in finalizeMsfLayout |
| 114 | Layout.NumFiles = SourceFiles.size(); |
Zachary Turner | 6c4bfba | 2017-07-07 05:04:36 +0000 | [diff] [blame] | 115 | Layout.PdbFilePathNI = PdbFilePathNI; |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 116 | Layout.SrcFileNameNI = 0; |
| 117 | |
| 118 | // This value includes both the signature field as well as the record bytes |
| 119 | // from the symbol stream. |
| 120 | Layout.SymBytes = SymbolByteSize + sizeof(uint32_t); |
| 121 | } |
| 122 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 123 | Error DbiModuleDescriptorBuilder::finalizeMsfLayout() { |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 124 | this->Layout.ModDiStream = kInvalidStreamIndex; |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 125 | uint32_t C13Size = calculateC13DebugInfoSize(); |
| 126 | auto ExpectedSN = |
| 127 | MSF.addStream(calculateDiSymbolStreamSize(SymbolByteSize, C13Size)); |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 128 | if (!ExpectedSN) |
| 129 | return ExpectedSN.takeError(); |
| 130 | Layout.ModDiStream = *ExpectedSN; |
| 131 | return Error::success(); |
| 132 | } |
| 133 | |
Zachary Turner | 67c5601 | 2017-04-27 16:11:19 +0000 | [diff] [blame] | 134 | Error DbiModuleDescriptorBuilder::commit(BinaryStreamWriter &ModiWriter, |
| 135 | const msf::MSFLayout &MsfLayout, |
| 136 | WritableBinaryStreamRef MsfBuffer) { |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 137 | // We write the Modi record to the `ModiWriter`, but we additionally write its |
| 138 | // symbol stream to a brand new stream. |
| 139 | if (auto EC = ModiWriter.writeObject(Layout)) |
| 140 | return EC; |
| 141 | if (auto EC = ModiWriter.writeCString(ModuleName)) |
| 142 | return EC; |
| 143 | if (auto EC = ModiWriter.writeCString(ObjFileName)) |
| 144 | return EC; |
| 145 | if (auto EC = ModiWriter.padToAlignment(sizeof(uint32_t))) |
| 146 | return EC; |
| 147 | |
| 148 | if (Layout.ModDiStream != kInvalidStreamIndex) { |
| 149 | auto NS = WritableMappedBlockStream::createIndexedStream( |
Zachary Turner | 5b74ff3 | 2017-06-03 00:33:35 +0000 | [diff] [blame] | 150 | MsfLayout, MsfBuffer, Layout.ModDiStream, MSF.getAllocator()); |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 151 | WritableBinaryStreamRef Ref(*NS); |
| 152 | BinaryStreamWriter SymbolWriter(Ref); |
| 153 | // Write the symbols. |
| 154 | if (auto EC = |
| 155 | SymbolWriter.writeInteger<uint32_t>(COFF::DEBUG_SECTION_MAGIC)) |
| 156 | return EC; |
Reid Kleckner | 291d015 | 2018-11-27 19:00:23 +0000 | [diff] [blame] | 157 | for (ArrayRef<uint8_t> Syms : Symbols) |
| 158 | SymbolWriter.writeBytes(Syms); |
Zachary Turner | ebd3ae8 | 2017-06-01 21:52:41 +0000 | [diff] [blame] | 159 | assert(SymbolWriter.getOffset() % alignOf(CodeViewContainer::Pdb) == 0 && |
| 160 | "Invalid debug section alignment!"); |
Reid Kleckner | 291d015 | 2018-11-27 19:00:23 +0000 | [diff] [blame] | 161 | // TODO: Write C11 Line data |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 162 | for (const auto &Builder : C13Builders) { |
| 163 | assert(Builder && "Empty C13 Fragment Builder!"); |
| 164 | if (auto EC = Builder->commit(SymbolWriter)) |
| 165 | return EC; |
| 166 | } |
| 167 | |
Zachary Turner | ea4e607 | 2017-03-15 22:18:53 +0000 | [diff] [blame] | 168 | // TODO: Figure out what GlobalRefs substream actually is and populate it. |
| 169 | if (auto EC = SymbolWriter.writeInteger<uint32_t>(0)) |
| 170 | return EC; |
| 171 | if (SymbolWriter.bytesRemaining() > 0) |
| 172 | return make_error<RawError>(raw_error_code::stream_too_long); |
| 173 | } |
| 174 | return Error::success(); |
| 175 | } |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 176 | |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 177 | void DbiModuleDescriptorBuilder::addDebugSubsection( |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 178 | std::shared_ptr<DebugSubsection> Subsection) { |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 179 | assert(Subsection); |
Zachary Turner | ebd3ae8 | 2017-06-01 21:52:41 +0000 | [diff] [blame] | 180 | C13Builders.push_back(llvm::make_unique<DebugSubsectionRecordBuilder>( |
Zachary Turner | 92dcdda | 2017-06-02 19:49:14 +0000 | [diff] [blame] | 181 | std::move(Subsection), CodeViewContainer::Pdb)); |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 182 | } |
Reid Kleckner | 44cdb10 | 2017-06-19 17:21:45 +0000 | [diff] [blame] | 183 | |
| 184 | void DbiModuleDescriptorBuilder::addDebugSubsection( |
| 185 | const DebugSubsectionRecord &SubsectionContents) { |
| 186 | C13Builders.push_back(llvm::make_unique<DebugSubsectionRecordBuilder>( |
| 187 | SubsectionContents, CodeViewContainer::Pdb)); |
| 188 | } |