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