Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 1 | //===- NamedStreamMap.cpp - PDB Named Stream Map --------------------------===// |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +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 | |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 10 | #include "llvm/DebugInfo/PDB/Native/NamedStreamMap.h" |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/StringMap.h" |
| 12 | #include "llvm/ADT/StringRef.h" |
| 13 | #include "llvm/ADT/iterator_range.h" |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 14 | #include "llvm/DebugInfo/PDB/Native/Hash.h" |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/PDB/Native/HashTable.h" |
| 16 | #include "llvm/DebugInfo/PDB/Native/RawError.h" |
Zachary Turner | d9dc282 | 2017-03-02 20:52:51 +0000 | [diff] [blame] | 17 | #include "llvm/Support/BinaryStreamReader.h" |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 18 | #include "llvm/Support/BinaryStreamRef.h" |
| 19 | #include "llvm/Support/BinaryStreamWriter.h" |
| 20 | #include "llvm/Support/Endian.h" |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Error.h" |
| 22 | #include <algorithm> |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 23 | #include <cassert> |
Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 24 | #include <cstdint> |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 25 | #include <tuple> |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 26 | |
| 27 | using namespace llvm; |
Zachary Turner | 2f09b50 | 2016-04-29 17:28:47 +0000 | [diff] [blame] | 28 | using namespace llvm::pdb; |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 29 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 30 | namespace { |
| 31 | struct NamedStreamMapTraits { |
| 32 | static uint16_t hash(StringRef S, const NamedStreamMap &NS) { |
| 33 | // In the reference implementation, this uses |
| 34 | // HASH Hasher<ULONG*, USHORT*>::hashPbCb(PB pb, size_t cb, ULONG ulMod). |
| 35 | // Here, the type HASH is a typedef of unsigned short. |
| 36 | // ** It is not a bug that we truncate the result of hashStringV1, in fact |
| 37 | // it is a bug if we do not! ** |
| 38 | return static_cast<uint16_t>(hashStringV1(S)); |
| 39 | } |
| 40 | static StringRef realKey(uint32_t Offset, const NamedStreamMap &NS) { |
| 41 | return NS.getString(Offset); |
| 42 | } |
| 43 | static uint32_t lowerKey(StringRef S, NamedStreamMap &NS) { |
| 44 | return NS.appendStringData(S); |
| 45 | } |
| 46 | }; |
| 47 | } // namespace |
Zachary Turner | 1affd80 | 2017-06-25 03:51:42 +0000 | [diff] [blame] | 48 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 49 | NamedStreamMap::NamedStreamMap() {} |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 50 | |
Zachary Turner | 120faca | 2017-02-27 22:11:43 +0000 | [diff] [blame] | 51 | Error NamedStreamMap::load(BinaryStreamReader &Stream) { |
Zachary Turner | 11036a9 | 2017-01-19 23:31:24 +0000 | [diff] [blame] | 52 | uint32_t StringBufferSize; |
Zachary Turner | 695ed56 | 2017-02-28 00:04:07 +0000 | [diff] [blame] | 53 | if (auto EC = Stream.readInteger(StringBufferSize)) |
David Majnemer | 836937e | 2016-05-27 16:16:56 +0000 | [diff] [blame] | 54 | return joinErrors(std::move(EC), |
| 55 | make_error<RawError>(raw_error_code::corrupt_file, |
Zachary Turner | 11036a9 | 2017-01-19 23:31:24 +0000 | [diff] [blame] | 56 | "Expected string buffer size")); |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 57 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 58 | StringRef Buffer; |
| 59 | if (auto EC = Stream.readFixedString(Buffer, StringBufferSize)) |
Zachary Turner | 11036a9 | 2017-01-19 23:31:24 +0000 | [diff] [blame] | 60 | return EC; |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 61 | NamesBuffer.assign(Buffer.begin(), Buffer.end()); |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 62 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 63 | return OffsetIndexMap.load(Stream); |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Zachary Turner | 120faca | 2017-02-27 22:11:43 +0000 | [diff] [blame] | 66 | Error NamedStreamMap::commit(BinaryStreamWriter &Writer) const { |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 67 | // The first field is the number of bytes of string data. |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 68 | if (auto EC = Writer.writeInteger<uint32_t>(NamesBuffer.size())) |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 69 | return EC; |
| 70 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 71 | // Then the actual string data. |
| 72 | StringRef Data(NamesBuffer.data(), NamesBuffer.size()); |
| 73 | if (auto EC = Writer.writeFixedString(Data)) |
| 74 | return EC; |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 75 | |
| 76 | // And finally the Offset Index map. |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 77 | if (auto EC = OffsetIndexMap.commit(Writer)) |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 78 | return EC; |
| 79 | |
| 80 | return Error::success(); |
| 81 | } |
| 82 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 83 | uint32_t NamedStreamMap::calculateSerializedLength() const { |
| 84 | return sizeof(uint32_t) // String data size |
| 85 | + NamesBuffer.size() // String data |
| 86 | + OffsetIndexMap.calculateSerializedLength(); // Offset Index Map |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 89 | uint32_t NamedStreamMap::size() const { return OffsetIndexMap.size(); } |
| 90 | |
| 91 | StringRef NamedStreamMap::getString(uint32_t Offset) const { |
| 92 | assert(NamesBuffer.size() > Offset); |
| 93 | return StringRef(NamesBuffer.data() + Offset); |
Zachary Turner | 85ed80b | 2016-05-25 03:43:17 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 96 | uint32_t NamedStreamMap::hashString(uint32_t Offset) const { |
| 97 | return hashStringV1(getString(Offset)); |
| 98 | } |
Zachary Turner | 02278ce | 2017-03-16 20:18:41 +0000 | [diff] [blame] | 99 | |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 100 | bool NamedStreamMap::get(StringRef Stream, uint32_t &StreamNo) const { |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 101 | auto Iter = OffsetIndexMap.find_as<NamedStreamMapTraits>(Stream, *this); |
| 102 | if (Iter == OffsetIndexMap.end()) |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 103 | return false; |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 104 | StreamNo = (*Iter).second; |
Zachary Turner | f34e016 | 2016-04-26 16:20:00 +0000 | [diff] [blame] | 105 | return true; |
| 106 | } |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 107 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 108 | StringMap<uint32_t> NamedStreamMap::entries() const { |
| 109 | StringMap<uint32_t> Result; |
| 110 | for (const auto &Entry : OffsetIndexMap) { |
| 111 | StringRef Stream(NamesBuffer.data() + Entry.first); |
| 112 | Result.try_emplace(Stream, Entry.second); |
| 113 | } |
| 114 | return Result; |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Zachary Turner | cafd476 | 2018-02-16 20:46:04 +0000 | [diff] [blame^] | 117 | uint32_t NamedStreamMap::appendStringData(StringRef S) { |
| 118 | uint32_t Offset = NamesBuffer.size(); |
| 119 | NamesBuffer.insert(NamesBuffer.end(), S.begin(), S.end()); |
| 120 | NamesBuffer.push_back('\0'); |
| 121 | return Offset; |
| 122 | } |
| 123 | |
| 124 | void NamedStreamMap::set(StringRef Stream, uint32_t StreamNo) { |
| 125 | OffsetIndexMap.set_as<NamedStreamMapTraits>(Stream, StreamNo, *this); |
Zachary Turner | 60667ca | 2017-01-20 22:41:40 +0000 | [diff] [blame] | 126 | } |