Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 1 | //===- TpiHashing.cpp -----------------------------------------------------===// |
| 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 | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 9 | #include "llvm/DebugInfo/PDB/Native/TpiHashing.h" |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 10 | |
Zachary Turner | f8a2e04 | 2017-06-15 23:04:42 +0000 | [diff] [blame] | 11 | #include "llvm/DebugInfo/CodeView/TypeDeserializer.h" |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 12 | #include "llvm/DebugInfo/PDB/Native/Hash.h" |
Hans Wennborg | 1e1e3ba | 2019-10-09 09:06:30 +0000 | [diff] [blame] | 13 | #include "llvm/Support/CRC.h" |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 14 | |
| 15 | using namespace llvm; |
| 16 | using namespace llvm::codeview; |
| 17 | using namespace llvm::pdb; |
| 18 | |
| 19 | // Corresponds to `fUDTAnon`. |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 20 | static bool isAnonymous(StringRef Name) { |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 21 | return Name == "<unnamed-tag>" || Name == "__unnamed" || |
| 22 | Name.endswith("::<unnamed-tag>") || Name.endswith("::__unnamed"); |
| 23 | } |
| 24 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 25 | // Computes the hash for a user-defined type record. This could be a struct, |
| 26 | // class, union, or enum. |
| 27 | static uint32_t getHashForUdt(const TagRecord &Rec, |
| 28 | ArrayRef<uint8_t> FullRecord) { |
| 29 | ClassOptions Opts = Rec.getOptions(); |
| 30 | bool ForwardRef = bool(Opts & ClassOptions::ForwardReference); |
| 31 | bool Scoped = bool(Opts & ClassOptions::Scoped); |
| 32 | bool HasUniqueName = bool(Opts & ClassOptions::HasUniqueName); |
| 33 | bool IsAnon = HasUniqueName && isAnonymous(Rec.getName()); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 34 | |
| 35 | if (!ForwardRef && !Scoped && !IsAnon) |
| 36 | return hashStringV1(Rec.getName()); |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 37 | if (!ForwardRef && HasUniqueName && !IsAnon) |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 38 | return hashStringV1(Rec.getUniqueName()); |
| 39 | return hashBufferV8(FullRecord); |
| 40 | } |
| 41 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 42 | template <typename T> |
| 43 | static Expected<uint32_t> getHashForUdt(const CVType &Rec) { |
| 44 | T Deserialized; |
| 45 | if (auto E = TypeDeserializer::deserializeAs(const_cast<CVType &>(Rec), |
| 46 | Deserialized)) |
| 47 | return std::move(E); |
| 48 | return getHashForUdt(Deserialized, Rec.data()); |
| 49 | } |
| 50 | |
| 51 | template <typename T> |
Zachary Turner | cfa1d49 | 2018-09-20 15:50:13 +0000 | [diff] [blame] | 52 | static Expected<TagRecordHash> getTagRecordHashForUdt(const CVType &Rec) { |
| 53 | T Deserialized; |
| 54 | if (auto E = TypeDeserializer::deserializeAs(const_cast<CVType &>(Rec), |
| 55 | Deserialized)) |
| 56 | return std::move(E); |
| 57 | |
| 58 | ClassOptions Opts = Deserialized.getOptions(); |
| 59 | |
| 60 | bool ForwardRef = bool(Opts & ClassOptions::ForwardReference); |
| 61 | |
| 62 | uint32_t ThisRecordHash = getHashForUdt(Deserialized, Rec.data()); |
| 63 | |
| 64 | // If we don't have a forward ref we can't compute the hash of it from the |
| 65 | // full record because it requires hashing the entire buffer. |
| 66 | if (!ForwardRef) |
| 67 | return TagRecordHash{std::move(Deserialized), ThisRecordHash, 0}; |
| 68 | |
| 69 | bool Scoped = bool(Opts & ClassOptions::Scoped); |
| 70 | |
| 71 | StringRef NameToHash = |
| 72 | Scoped ? Deserialized.getUniqueName() : Deserialized.getName(); |
| 73 | uint32_t FullHash = hashStringV1(NameToHash); |
| 74 | return TagRecordHash{std::move(Deserialized), FullHash, ThisRecordHash}; |
| 75 | } |
| 76 | |
| 77 | template <typename T> |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 78 | static Expected<uint32_t> getSourceLineHash(const CVType &Rec) { |
| 79 | T Deserialized; |
| 80 | if (auto E = TypeDeserializer::deserializeAs(const_cast<CVType &>(Rec), |
| 81 | Deserialized)) |
| 82 | return std::move(E); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 83 | char Buf[4]; |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 84 | support::endian::write32le(Buf, Deserialized.getUDT().getIndex()); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 85 | return hashStringV1(StringRef(Buf, 4)); |
| 86 | } |
| 87 | |
Zachary Turner | cfa1d49 | 2018-09-20 15:50:13 +0000 | [diff] [blame] | 88 | Expected<TagRecordHash> llvm::pdb::hashTagRecord(const codeview::CVType &Type) { |
| 89 | switch (Type.kind()) { |
| 90 | case LF_CLASS: |
| 91 | case LF_STRUCTURE: |
| 92 | case LF_INTERFACE: |
| 93 | return getTagRecordHashForUdt<ClassRecord>(Type); |
| 94 | case LF_UNION: |
| 95 | return getTagRecordHashForUdt<UnionRecord>(Type); |
| 96 | case LF_ENUM: |
| 97 | return getTagRecordHashForUdt<EnumRecord>(Type); |
| 98 | default: |
| 99 | assert(false && "Type is not a tag record!"); |
| 100 | } |
| 101 | return make_error<StringError>("Invalid record type", |
| 102 | inconvertibleErrorCode()); |
| 103 | } |
| 104 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 105 | Expected<uint32_t> llvm::pdb::hashTypeRecord(const CVType &Rec) { |
| 106 | switch (Rec.kind()) { |
| 107 | case LF_CLASS: |
| 108 | case LF_STRUCTURE: |
| 109 | case LF_INTERFACE: |
| 110 | return getHashForUdt<ClassRecord>(Rec); |
| 111 | case LF_UNION: |
| 112 | return getHashForUdt<UnionRecord>(Rec); |
| 113 | case LF_ENUM: |
| 114 | return getHashForUdt<EnumRecord>(Rec); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 115 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 116 | case LF_UDT_SRC_LINE: |
| 117 | return getSourceLineHash<UdtSourceLineRecord>(Rec); |
| 118 | case LF_UDT_MOD_SRC_LINE: |
| 119 | return getSourceLineHash<UdtModSourceLineRecord>(Rec); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 120 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 121 | default: |
| 122 | break; |
| 123 | } |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 124 | |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 125 | // Run CRC32 over the bytes. This corresponds to `hashBufv8`. |
| 126 | JamCRC JC(/*Init=*/0U); |
Hans Wennborg | 1e1e3ba | 2019-10-09 09:06:30 +0000 | [diff] [blame] | 127 | JC.update(Rec.data()); |
Reid Kleckner | c50349d | 2017-07-18 00:33:45 +0000 | [diff] [blame] | 128 | return JC.getCRC(); |
Zachary Turner | 620961d | 2016-09-14 23:00:02 +0000 | [diff] [blame] | 129 | } |