Searched refs:FormatVersion (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h301 unsigned FormatVersion; member in class:llvm::IndexedInstrProf::HashT
308 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) argument
309 : HashType(HashType), FormatVersion(FormatVersion) {}
377 uint64_t FormatVersion; member in class:llvm::IndexedInstrProf::InstrProfReaderIndex
401 uint64_t getVersion() const override { return GET_VERSION(FormatVersion); }
404 return (FormatVersion & VARIANT_MASK_IR_PROF) != 0;
408 return (FormatVersion & VARIANT_MASK_CSIR_PROF) != 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp550 // Initialize number of counters for GET_VERSION(FormatVersion) == 1.
553 if (GET_VERSION(FormatVersion) != IndexedInstrProf::ProfVersion::Version1) {
570 if (GET_VERSION(FormatVersion) > IndexedInstrProf::ProfVersion::Version2 &&
612 FormatVersion = Version;
820 uint64_t FormatVersion = endian::byte_swap<uint64_t, little>(Header->Version);
821 if (GET_VERSION(FormatVersion) >
825 Cur = readSummary((IndexedInstrProf::ProfVersion)FormatVersion, Cur,
827 if (FormatVersion & VARIANT_MASK_CSIR_PROF)
828 Cur = readSummary((IndexedInstrProf::ProfVersion)FormatVersion, Cur,
842 Start + HashOffset, Cur, Start, HashType, FormatVersion);
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1241 uint8_t FormatVersion = data.GetU8(&Offset); local
1242 if (FormatVersion != llvm::ELFAttrs::Format_Version)

Completed in 122 milliseconds