Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 1 | //===- PDB.cpp ------------------------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Linker |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Rui Ueyama | 1d99ab3 | 2016-09-15 22:24:51 +0000 | [diff] [blame] | 10 | #include "PDB.h" |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 11 | #include "Chunks.h" |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 12 | #include "Config.h" |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 13 | #include "Error.h" |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 14 | #include "SymbolTable.h" |
| 15 | #include "Symbols.h" |
Rui Ueyama | 24625fd | 2016-11-22 23:51:34 +0000 | [diff] [blame] | 16 | #include "llvm/DebugInfo/CodeView/SymbolDumper.h" |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 17 | #include "llvm/DebugInfo/CodeView/TypeDumper.h" |
Rui Ueyama | 24625fd | 2016-11-22 23:51:34 +0000 | [diff] [blame] | 18 | #include "llvm/DebugInfo/MSF/ByteStream.h" |
Rui Ueyama | b28c6d4 | 2016-09-16 04:32:33 +0000 | [diff] [blame] | 19 | #include "llvm/DebugInfo/MSF/MSFBuilder.h" |
Rui Ueyama | 7f38299 | 2016-09-15 18:55:18 +0000 | [diff] [blame] | 20 | #include "llvm/DebugInfo/MSF/MSFCommon.h" |
Rui Ueyama | b28c6d4 | 2016-09-16 04:32:33 +0000 | [diff] [blame] | 21 | #include "llvm/DebugInfo/PDB/Raw/DbiStream.h" |
| 22 | #include "llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h" |
| 23 | #include "llvm/DebugInfo/PDB/Raw/InfoStream.h" |
| 24 | #include "llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h" |
| 25 | #include "llvm/DebugInfo/PDB/Raw/PDBFile.h" |
| 26 | #include "llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h" |
| 27 | #include "llvm/DebugInfo/PDB/Raw/TpiStream.h" |
| 28 | #include "llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h" |
Rui Ueyama | 20df4ec | 2016-10-31 21:09:21 +0000 | [diff] [blame] | 29 | #include "llvm/Object/COFF.h" |
Rui Ueyama | 1763c0d | 2015-12-08 18:39:55 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Endian.h" |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 31 | #include "llvm/Support/FileOutputBuffer.h" |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 32 | #include "llvm/Support/ScopedPrinter.h" |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 33 | #include <memory> |
| 34 | |
Rui Ueyama | 1d99ab3 | 2016-09-15 22:24:51 +0000 | [diff] [blame] | 35 | using namespace lld; |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 36 | using namespace lld::coff; |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 37 | using namespace llvm; |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 38 | using namespace llvm::codeview; |
Rui Ueyama | 1763c0d | 2015-12-08 18:39:55 +0000 | [diff] [blame] | 39 | using namespace llvm::support; |
| 40 | using namespace llvm::support::endian; |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 41 | |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 42 | using llvm::object::coff_section; |
| 43 | |
Rui Ueyama | b28c6d4 | 2016-09-16 04:32:33 +0000 | [diff] [blame] | 44 | static ExitOnError ExitOnErr; |
| 45 | |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 46 | // Returns a list of all SectionChunks. |
| 47 | static std::vector<coff_section> getInputSections(SymbolTable *Symtab) { |
| 48 | std::vector<coff_section> V; |
| 49 | for (Chunk *C : Symtab->getChunks()) |
| 50 | if (auto *SC = dyn_cast<SectionChunk>(C)) |
| 51 | V.push_back(*SC->Header); |
| 52 | return V; |
| 53 | } |
| 54 | |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 55 | static SectionChunk *findByName(std::vector<SectionChunk *> &Sections, |
| 56 | StringRef Name) { |
| 57 | for (SectionChunk *C : Sections) |
| 58 | if (C->getSectionName() == Name) |
| 59 | return C; |
| 60 | return nullptr; |
| 61 | } |
| 62 | |
Rui Ueyama | c5cb737 | 2016-12-01 01:22:48 +0000 | [diff] [blame^] | 63 | static void dumpDebugT(ScopedPrinter &W, ObjectFile *File) { |
| 64 | SectionChunk *Sec = findByName(File->getDebugChunks(), ".debug$T"); |
| 65 | if (!Sec) |
| 66 | return; |
| 67 | |
| 68 | // First 4 bytes are section magic. |
| 69 | ArrayRef<uint8_t> Data = Sec->getContents(); |
| 70 | if (Data.size() < 4) |
| 71 | fatal(".debug$T too short"); |
| 72 | if (read32le(Data.data()) != COFF::DEBUG_SECTION_MAGIC) |
| 73 | fatal(".debug$T has an invalid magic"); |
| 74 | |
| 75 | CVTypeDumper TypeDumper(&W, false); |
| 76 | if (auto EC = TypeDumper.dump(Data.slice(4))) |
| 77 | fatal(EC, "CVTypeDumper::dump failed"); |
| 78 | } |
| 79 | |
| 80 | static void dumpDebugS(ScopedPrinter &W, ObjectFile *File) { |
| 81 | SectionChunk *Sec = findByName(File->getDebugChunks(), ".debug$S"); |
| 82 | if (!Sec) |
| 83 | return; |
| 84 | |
| 85 | msf::ByteStream Stream(Sec->getContents()); |
| 86 | CVSymbolArray Symbols; |
| 87 | msf::StreamReader Reader(Stream); |
| 88 | if (auto EC = Reader.readArray(Symbols, Reader.getLength())) |
| 89 | fatal(EC, "StreamReader.readArray<CVSymbolArray> failed"); |
| 90 | |
| 91 | CVTypeDumper TypeDumper(&W, false); |
| 92 | CVSymbolDumper SymbolDumper(W, TypeDumper, nullptr, false); |
| 93 | if (auto EC = SymbolDumper.dump(Symbols)) |
| 94 | fatal(EC, "CVSymbolDumper::dump failed"); |
| 95 | } |
| 96 | |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 97 | // Dump CodeView debug info. This is for debugging. |
| 98 | static void dumpCodeView(SymbolTable *Symtab) { |
| 99 | ScopedPrinter W(outs()); |
| 100 | |
| 101 | for (ObjectFile *File : Symtab->ObjectFiles) { |
Rui Ueyama | c5cb737 | 2016-12-01 01:22:48 +0000 | [diff] [blame^] | 102 | dumpDebugT(W, File); |
| 103 | dumpDebugS(W, File); |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 107 | // Creates a PDB file. |
| 108 | void coff::createPDB(StringRef Path, SymbolTable *Symtab, |
| 109 | ArrayRef<uint8_t> SectionTable) { |
Rui Ueyama | be939b3 | 2016-11-21 17:22:35 +0000 | [diff] [blame] | 110 | if (Config->DumpPdb) |
| 111 | dumpCodeView(Symtab); |
| 112 | |
Rui Ueyama | b28c6d4 | 2016-09-16 04:32:33 +0000 | [diff] [blame] | 113 | BumpPtrAllocator Alloc; |
| 114 | pdb::PDBFileBuilder Builder(Alloc); |
Rui Ueyama | 1297954 | 2016-09-30 20:53:45 +0000 | [diff] [blame] | 115 | ExitOnErr(Builder.initialize(4096)); // 4096 is blocksize |
Rui Ueyama | 7f38299 | 2016-09-15 18:55:18 +0000 | [diff] [blame] | 116 | |
Rui Ueyama | 8d3fb5d | 2016-10-05 22:08:58 +0000 | [diff] [blame] | 117 | // Create streams in MSF for predefined streams, namely |
| 118 | // PDB, TPI, DBI and IPI. |
| 119 | for (int I = 0; I < (int)pdb::kSpecialStreamCount; ++I) |
| 120 | ExitOnErr(Builder.getMsfBuilder().addStream(0)); |
Rui Ueyama | 7f38299 | 2016-09-15 18:55:18 +0000 | [diff] [blame] | 121 | |
Rui Ueyama | bb542b3 | 2016-09-16 22:51:17 +0000 | [diff] [blame] | 122 | // Add an Info stream. |
| 123 | auto &InfoBuilder = Builder.getInfoBuilder(); |
| 124 | InfoBuilder.setAge(1); |
| 125 | |
| 126 | // Should be a random number, 0 for now. |
| 127 | InfoBuilder.setGuid({}); |
| 128 | |
| 129 | // Should be the current time, but set 0 for reproducibilty. |
| 130 | InfoBuilder.setSignature(0); |
Rui Ueyama | bb542b3 | 2016-09-16 22:51:17 +0000 | [diff] [blame] | 131 | InfoBuilder.setVersion(pdb::PdbRaw_ImplVer::PdbImplVC70); |
Rui Ueyama | 7f38299 | 2016-09-15 18:55:18 +0000 | [diff] [blame] | 132 | |
Rui Ueyama | 1343fac | 2016-10-06 22:52:01 +0000 | [diff] [blame] | 133 | // Add an empty DPI stream. |
| 134 | auto &DbiBuilder = Builder.getDbiBuilder(); |
| 135 | DbiBuilder.setVersionHeader(pdb::PdbDbiV110); |
| 136 | |
Rui Ueyama | b28c6d4 | 2016-09-16 04:32:33 +0000 | [diff] [blame] | 137 | // Add an empty TPI stream. |
| 138 | auto &TpiBuilder = Builder.getTpiBuilder(); |
| 139 | TpiBuilder.setVersionHeader(pdb::PdbTpiV80); |
Rui Ueyama | 1763c0d | 2015-12-08 18:39:55 +0000 | [diff] [blame] | 140 | |
Rui Ueyama | d381c98 | 2016-10-05 21:37:25 +0000 | [diff] [blame] | 141 | // Add an empty IPI stream. |
| 142 | auto &IpiBuilder = Builder.getIpiBuilder(); |
| 143 | IpiBuilder.setVersionHeader(pdb::PdbTpiV80); |
| 144 | |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 145 | // Add Section Contributions. |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 146 | std::vector<pdb::SectionContrib> Contribs = |
Vitaly Buka | 4cf112c | 2016-11-14 20:21:41 +0000 | [diff] [blame] | 147 | pdb::DbiStreamBuilder::createSectionContribs(getInputSections(Symtab)); |
Rui Ueyama | 09e0b5f | 2016-11-12 00:00:51 +0000 | [diff] [blame] | 148 | DbiBuilder.setSectionContribs(Contribs); |
| 149 | |
Rui Ueyama | 20df4ec | 2016-10-31 21:09:21 +0000 | [diff] [blame] | 150 | // Add Section Map stream. |
| 151 | ArrayRef<object::coff_section> Sections = { |
Rui Ueyama | 6294a24 | 2016-11-04 17:41:29 +0000 | [diff] [blame] | 152 | (const object::coff_section *)SectionTable.data(), |
Rui Ueyama | 20df4ec | 2016-10-31 21:09:21 +0000 | [diff] [blame] | 153 | SectionTable.size() / sizeof(object::coff_section)}; |
| 154 | std::vector<pdb::SecMapEntry> SectionMap = |
| 155 | pdb::DbiStreamBuilder::createSectionMap(Sections); |
| 156 | DbiBuilder.setSectionMap(SectionMap); |
| 157 | |
Rui Ueyama | c91f716 | 2016-11-16 01:10:46 +0000 | [diff] [blame] | 158 | ExitOnErr(DbiBuilder.addModuleInfo("", "* Linker *")); |
| 159 | |
Rui Ueyama | 9f66f82 | 2016-10-11 19:45:07 +0000 | [diff] [blame] | 160 | // Add COFF section header stream. |
| 161 | ExitOnErr( |
| 162 | DbiBuilder.addDbgStream(pdb::DbgHeaderType::SectionHdr, SectionTable)); |
| 163 | |
Rui Ueyama | 3e9d6bb | 2016-09-26 23:53:55 +0000 | [diff] [blame] | 164 | // Write to a file. |
Rui Ueyama | 5c82eea | 2016-09-30 20:39:04 +0000 | [diff] [blame] | 165 | ExitOnErr(Builder.commit(Path)); |
Rui Ueyama | e737824 | 2015-12-04 23:11:05 +0000 | [diff] [blame] | 166 | } |