Zachary Turner | e204a6c | 2017-05-02 18:00:13 +0000 | [diff] [blame] | 1 | //===- PDBStringTableBuilder.cpp - PDB String Table -------------*- C++ -*-===// |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +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 | e204a6c | 2017-05-02 18:00:13 +0000 | [diff] [blame] | 10 | #include "llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h" |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 11 | |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/ArrayRef.h" |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 13 | #include "llvm/DebugInfo/PDB/Native/Hash.h" |
| 14 | #include "llvm/DebugInfo/PDB/Native/RawTypes.h" |
Zachary Turner | d9dc282 | 2017-03-02 20:52:51 +0000 | [diff] [blame] | 15 | #include "llvm/Support/BinaryStreamWriter.h" |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Endian.h" |
| 17 | |
| 18 | using namespace llvm; |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 19 | using namespace llvm::msf; |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 20 | using namespace llvm::support; |
| 21 | using namespace llvm::support::endian; |
| 22 | using namespace llvm::pdb; |
| 23 | |
Zachary Turner | e204a6c | 2017-05-02 18:00:13 +0000 | [diff] [blame] | 24 | uint32_t PDBStringTableBuilder::insert(StringRef S) { |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 25 | return Strings.insert(S); |
Zachary Turner | 8a2ebfb | 2017-05-01 23:27:42 +0000 | [diff] [blame] | 26 | } |
| 27 | |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 28 | static uint32_t computeBucketCount(uint32_t NumStrings) { |
| 29 | // The /names stream is basically an on-disk open-addressing hash table. |
| 30 | // Hash collisions are resolved by linear probing. We cannot make |
| 31 | // utilization 100% because it will make the linear probing extremely |
| 32 | // slow. But lower utilization wastes disk space. As a reasonable |
| 33 | // load factor, we choose 80%. We need +1 because slot 0 is reserved. |
| 34 | return (NumStrings + 1) * 1.25; |
| 35 | } |
| 36 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 37 | uint32_t PDBStringTableBuilder::calculateHashTableSize() const { |
| 38 | uint32_t Size = sizeof(uint32_t); // Hash table begins with 4-byte size field. |
| 39 | Size += sizeof(uint32_t) * computeBucketCount(Strings.size()); |
Daniel Jasper | dff096f | 2017-05-03 07:29:25 +0000 | [diff] [blame] | 40 | |
Zachary Turner | 7dba20b | 2017-05-02 23:36:17 +0000 | [diff] [blame] | 41 | return Size; |
| 42 | } |
| 43 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 44 | uint32_t PDBStringTableBuilder::calculateSerializedSize() const { |
| 45 | uint32_t Size = 0; |
| 46 | Size += sizeof(PDBStringTableHeader); |
| 47 | Size += Strings.calculateSerializedSize(); |
| 48 | Size += calculateHashTableSize(); |
| 49 | Size += sizeof(uint32_t); // The /names stream ends with the string count. |
| 50 | return Size; |
| 51 | } |
| 52 | |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 53 | void PDBStringTableBuilder::setStrings( |
| 54 | const codeview::DebugStringTableSubsection &Strings) { |
| 55 | this->Strings = Strings; |
| 56 | } |
| 57 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 58 | Error PDBStringTableBuilder::writeHeader(BinaryStreamWriter &Writer) const { |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 59 | // Write a header |
Zachary Turner | e204a6c | 2017-05-02 18:00:13 +0000 | [diff] [blame] | 60 | PDBStringTableHeader H; |
| 61 | H.Signature = PDBStringTableSignature; |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 62 | H.HashVersion = 1; |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 63 | H.ByteSize = Strings.calculateSerializedSize(); |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 64 | if (auto EC = Writer.writeObject(H)) |
| 65 | return EC; |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 66 | assert(Writer.bytesRemaining() == 0); |
| 67 | return Error::success(); |
| 68 | } |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 69 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 70 | Error PDBStringTableBuilder::writeStrings(BinaryStreamWriter &Writer) const { |
| 71 | if (auto EC = Strings.commit(Writer)) |
| 72 | return EC; |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 73 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 74 | assert(Writer.bytesRemaining() == 0); |
| 75 | return Error::success(); |
| 76 | } |
| 77 | |
| 78 | Error PDBStringTableBuilder::writeHashTable(BinaryStreamWriter &Writer) const { |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 79 | // Write a hash table. |
| 80 | uint32_t BucketCount = computeBucketCount(Strings.size()); |
Zachary Turner | 695ed56 | 2017-02-28 00:04:07 +0000 | [diff] [blame] | 81 | if (auto EC = Writer.writeInteger(BucketCount)) |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 82 | return EC; |
| 83 | std::vector<ulittle32_t> Buckets(BucketCount); |
| 84 | |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 85 | for (auto &Pair : Strings) { |
| 86 | StringRef S = Pair.getKey(); |
| 87 | uint32_t Offset = Pair.getValue(); |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 88 | uint32_t Hash = hashStringV1(S); |
| 89 | |
| 90 | for (uint32_t I = 0; I != BucketCount; ++I) { |
| 91 | uint32_t Slot = (Hash + I) % BucketCount; |
| 92 | if (Slot == 0) |
| 93 | continue; // Skip reserved slot |
| 94 | if (Buckets[Slot] != 0) |
| 95 | continue; |
| 96 | Buckets[Slot] = Offset; |
| 97 | break; |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | if (auto EC = Writer.writeArray(ArrayRef<ulittle32_t>(Buckets))) |
| 102 | return EC; |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 103 | |
| 104 | assert(Writer.bytesRemaining() == 0); |
| 105 | return Error::success(); |
| 106 | } |
| 107 | |
| 108 | Error PDBStringTableBuilder::writeEpilogue(BinaryStreamWriter &Writer) const { |
| 109 | if (auto EC = Writer.writeInteger<uint32_t>(Strings.size())) |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 110 | return EC; |
Zachary Turner | c504ae3 | 2017-05-03 15:58:37 +0000 | [diff] [blame] | 111 | assert(Writer.bytesRemaining() == 0); |
| 112 | return Error::success(); |
| 113 | } |
| 114 | |
| 115 | Error PDBStringTableBuilder::commit(BinaryStreamWriter &Writer) const { |
| 116 | BinaryStreamWriter SectionWriter; |
| 117 | |
| 118 | std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader)); |
| 119 | if (auto EC = writeHeader(SectionWriter)) |
| 120 | return EC; |
| 121 | |
| 122 | std::tie(SectionWriter, Writer) = |
| 123 | Writer.split(Strings.calculateSerializedSize()); |
| 124 | if (auto EC = writeStrings(SectionWriter)) |
| 125 | return EC; |
| 126 | |
| 127 | std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize()); |
| 128 | if (auto EC = writeHashTable(SectionWriter)) |
| 129 | return EC; |
| 130 | |
| 131 | std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t)); |
| 132 | if (auto EC = writeEpilogue(SectionWriter)) |
| 133 | return EC; |
| 134 | |
Rui Ueyama | dcd3293 | 2017-01-15 00:36:02 +0000 | [diff] [blame] | 135 | return Error::success(); |
| 136 | } |