Home
last modified time | relevance | path

Searched refs:UniqueHashCount (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h934 inline uint32_t getDebugNamesBucketCount(uint32_t UniqueHashCount) { in getDebugNamesBucketCount() argument
935 if (UniqueHashCount > 1024) in getDebugNamesBucketCount()
936 return UniqueHashCount / 4; in getDebugNamesBucketCount()
937 if (UniqueHashCount > 16) in getDebugNamesBucketCount()
938 return UniqueHashCount / 2; in getDebugNamesBucketCount()
939 return std::max<uint32_t>(UniqueHashCount, 1); in getDebugNamesBucketCount()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp40 UniqueHashCount = llvm::unique(Uniques) - Uniques.begin(); in computeBucketCount()
41 BucketCount = dwarf::getDebugNamesBucketCount(UniqueHashCount); in computeBucketCount()
118 Header(uint32_t BucketCount, uint32_t UniqueHashCount, uint32_t DataLength) in Header()
119 : BucketCount(BucketCount), HashCount(UniqueHashCount), in Header()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h172 uint32_t UniqueHashCount = 0; variable
185 uint32_t getUniqueHashCount() const { return UniqueHashCount; } in getUniqueHashCount()