Home
last modified time | relevance | path

Searched refs:HashValues (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/
H A Dgnu-hash-section.yaml3 ## Check that obj2yaml uses "Header", "BloomFilter", "HashBuckets" and "HashValues"
17 # FIELDS-NEXT: HashValues: [ 0x8, 0x9, 0xA, 0xB ]
33 HashValues: [0x8, 0x9, 0xA, 0xB]
53 # INVALID-NEXT: HashValues: [ ]
70 # INVALID-NEXT: HashValues: [ 0x0 ]
101 HashValues: []
113 HashValues: []
125 HashValues: []
137 HashValues: []
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.h31 FixedStreamArray<support::ulittle32_t> HashValues, in MinimalTypeDumpVisitor() argument
35 HashValues(HashValues), Stream(Stream) {} in MinimalTypeDumpVisitor()
64 FixedStreamArray<support::ulittle32_t> HashValues; variable
H A DMinimalTypeDumper.cpp234 if (Index.toArrayIndex() >= HashValues.size()) { in visitTypeBegin()
237 uint32_t Hash = HashValues[Index.toArrayIndex()]; in visitTypeBegin()
H A DDumpOutputStyle.cpp1203 FixedStreamArray<support::ulittle32_t> HashValues, in dumpFullTypeStream() argument
1210 NumHashBuckets, HashValues, Stream); in dumpFullTypeStream()
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dgnu-hash-section.yaml38 ## Check we can use "Header", "BloomFilter", "HashBuckets" and "HashValues" keys to describe
98 HashValues: [0x8, 0x9, 0xA, 0xB]
115 HashValues: [0x8, 0x9, 0xA, 0xB]
118 ## Check we only can use "Header", "BloomFilter", "HashBuckets" and "HashValues" together.
125 # ERR: error: "Header", "BloomFilter", "HashBuckets" and "HashValues" must be used together
137 HashValues: []
151 HashValues: []
165 HashValues: []
234 # TOGETHER: error: "Header", "BloomFilter", "HashBuckets" and "HashValues" cannot be used with "Con…
251 HashValues: []
[all …]
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStream.cpp97 if (auto EC = HSR.readArray(HashValues, NumHashValues)) in reload()
147 if (HashValues.empty()) in buildHashMap()
155 uint32_t HV = HashValues[TIB.toArrayIndex()]; in buildHashMap()
231 return HashValues; in getHashValues()
/llvm-project-15.0.7/llvm/test/ObjectYAML/CodeView/
H A Dsections.yaml25 HashValues:
78 # CHECK: HashValues:
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dgnuhash.test40 HashValues: [0x8, 0x9, 0xA, 0xB]
95 HashValues: [ 0x0 ]
143 HashValues: [ 0x3 ]
195 HashValues: [ 0x0 ]
264 HashValues: [ ]
H A Dhash-histogram.test48 HashValues: [ 0x0B887388, 0xECD54542, 0x7C92E3BB, 0x1C5871D9 ]
242 HashValues: [ 0x0B887388 ]
293 HashValues: [ 0x0 ]
353 HashValues: [ 0x0 ]
398 HashValues: [ 0x0 ]
H A Dhash-symbols.test65 HashValues: [ 0x0B885C68, 0x0B886991, 0x0B886DF4, 0x0B8860CB ]
223 HashValues: [ 0x0B885C68, 0x0B886991, 0x0B886DF4, 0x0B8860CB ]
499 HashValues: [0x8, 0x9, 0xA, 0xB]
619 HashValues: [ 0x0 ]
675 HashValues: [ 0x0 ]
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiStream.h87 FixedStreamArray<support::ulittle32_t> HashValues; variable
/llvm-project-15.0.7/lldb/test/Shell/ObjectFile/ELF/
H A Dnull-jmprel.yaml69 HashValues: [ 0xEDDB6233 ]
/llvm-project-15.0.7/llvm/test/tools/llvm-ifs/
H A Dread-elf-dynsym.test95 HashValues: [[GNUHASHVALUE]]
/llvm-project-15.0.7/lld/test/COFF/Inputs/
H A Dpdb-hashes-2.yaml251 HashValues:
H A Dpdb-hashes-1.yaml317 HashValues:
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h433 Optional<std::vector<llvm::yaml::Hex32>> HashValues; member
441 {"HashValues", HashValues.has_value()}}; in getEntries()
/llvm-project-15.0.7/llvm/test/tools/llvm-symbolizer/
H A Ddata-location.yaml182 HashValues: [ 0xEE8502A, 0xEE85016, 0xC033991C, 0x61F7372E, 0xB88AB7F ]
/llvm-project-15.0.7/llvm/test/DebugInfo/COFF/
H A Dglobal-type-hashes.ll278 ; YAML: HashValues:
/llvm-project-15.0.7/llvm/test/tools/llvm-gsymutil/X86/
H A Delf-dwarf.yaml158 HashValues: [ ]
/llvm-project-15.0.7/bolt/test/X86/Inputs/
H A Dplt-got-sec.yaml125 HashValues: [ ]
H A Dplt-sec.yaml125 HashValues: [ ]
H A Dplt-sec-8-byte.yaml91 HashValues: [ ]
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1328 S->HashValues.emplace((Data.getData().size() - Cur.tell()) / 4); in dumpGnuHashSection()
1329 for (llvm::yaml::Hex32 &Val : *S->HashValues) in dumpGnuHashSection()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1757 for (llvm::yaml::Hex32 Val : *Section.HashValues) in writeSectionContent()
1763 Section.HashValues->size() * 4; in writeSectionContent()
H A DELFYAML.cpp1393 IO.mapOptional("HashValues", Section.HashValues); in sectionMapping()