Home
last modified time | relevance | path

Searched refs:NChain (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/
H A Dhash-section.yaml84 ## Case 5, 6: NChain/NBucket are incorrect and causing 32-bit
91 NChain: 0xffffffff
97 NChain: 0x1
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dhash-section.yaml280 ## and "NChain" tags. Check that the section size is unaffected when we do this.
312 NChain: 0xBB
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1265 uint64_t NChain = Data.getU32(Cur); in dumpHashSection() local
1266 if (Content.size() != (2 + NBucket + NChain) * 4) { in dumpHashSection()
1277 S->Chain.emplace(NChain); in dumpHashSection()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dhash-table.test263 NChain: [[NCHAIN]]
H A Dhash-histogram.test190 NChain: [[NCHAIN]]
H A Ddyn-symbols-size-from-hash-table.test401 NChain: 0xFFFFFFFF
H A Dhash-symbols.test450 NChain: [[NCHAIN=1]]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h402 Optional<llvm::yaml::Hex64> NChain; member
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1377 assert(!IO.outputting() || (!Section.NBucket && !Section.NChain)); in sectionMapping()
1378 IO.mapOptional("NChain", Section.NChain); in sectionMapping()
H A DELFEmitter.cpp1501 Section.NChain.value_or(llvm::yaml::Hex64(Section.Chain->size())), in writeSectionContent()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4694 size_t NChain = HashTable.nchain; in printHashHistogram() local
4702 if (NChain == 0 || NBucket == 0) in printHashHistogram()
4709 BitVector Visited(NChain); in printHashHistogram()
4710 for (size_t C = Buckets[B]; C < NChain; C = Chains[C]) { in printHashHistogram()