Home
last modified time | relevance | path

Searched refs:HashType (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h236 IndexedInstrProf::HashT HashType; variable
244 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
245 : HashType(HashType), FormatVersion(FormatVersion), in InstrProfLookupTrait()
313 IndexedInstrProf::HashT HashType, uint64_t Version);
DInstrProf.h514 const HashT HashType = HashT::MD5; variable
516 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash()
524 uint64_t HashType; member
/external/llvm/lib/ProfileData/
DInstrProfReader.cpp441 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
537 const unsigned char *const Base, IndexedInstrProf::HashT HashType, in InstrProfReaderIndex() argument
542 typename HashTableImpl::InfoType(HashType, Version))); in InstrProfReaderIndex()
583 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>( in readHeader() local
584 endian::byte_swap<uint64_t, little>(Header->HashType)); in readHeader()
585 if (HashType > IndexedInstrProf::HashT::Last) in readHeader()
593 Start + HashOffset, Cur, Start, HashType, FormatVersion); in readHeader()
DInstrProfWriter.cpp151 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType); in writeImpl()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp73 enum HashType : unsigned char { enum in __anone18cd8db0111::PGOHash
100 void combine(HashType Type);
152 PGOHash::HashType getHashType(const Stmt *S) { in getHashType()
571 void PGOHash::combine(HashType Type) { in combine()