Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:GnuHashTable

189   const Elf_GnuHash *GnuHashTable = nullptr;
243 const Elf_GnuHash *getGnuHashTable() const { return GnuHashTable; }
1390 GnuHashTable =
1821 DictScope D(W, "GnuHashTable");
1822 if (!GnuHashTable)
1824 W.printNumber("Num Buckets", GnuHashTable->nbuckets);
1825 W.printNumber("First Hashed Symbol Index", GnuHashTable->symndx);
1826 W.printNumber("Num Mask Words", GnuHashTable->maskwords);
1827 W.printNumber("Shift Count", GnuHashTable->shift2);
1828 W.printHexList("Bloom Filter", GnuHashTable->filter());
1829 W.printList("Buckets", GnuHashTable->buckets());
1834 W.printHexList("Values", GnuHashTable->values(NumSyms));
3066 const Elf_GnuHash *GnuHashTable = this->dumper()->getGnuHashTable();
3113 if (GnuHashTable) {
3114 size_t NBucket = GnuHashTable->nbuckets;
3115 GnuHashTable->buckets();
3119 ArrayRef<Elf_Word> Chains = GnuHashTable->values(NumSyms);
3120 size_t Symndx = GnuHashTable->symndx;