Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h328 unsigned FormatVersion; variable
335 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
336 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
405 uint64_t FormatVersion; variable
429 uint64_t getVersion() const override { return GET_VERSION(FormatVersion); } in getVersion()
432 return (FormatVersion & VARIANT_MASK_IR_PROF) != 0; in isIRLevelProfile()
436 return (FormatVersion & VARIANT_MASK_CSIR_PROF) != 0; in hasCSIRLevelProfile()
440 return (FormatVersion & VARIANT_MASK_INSTR_ENTRY) != 0; in instrEntryBBEnabled()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp592 if (GET_VERSION(FormatVersion) != IndexedInstrProf::ProfVersion::Version1) { in ReadData()
609 if (GET_VERSION(FormatVersion) > IndexedInstrProf::ProfVersion::Version2 && in ReadData()
651 FormatVersion = Version; in InstrProfReaderIndex()
859 uint64_t FormatVersion = endian::byte_swap<uint64_t, little>(Header->Version); in readHeader() local
860 if (GET_VERSION(FormatVersion) > in readHeader()
864 Cur = readSummary((IndexedInstrProf::ProfVersion)FormatVersion, Cur, in readHeader()
866 if (FormatVersion & VARIANT_MASK_CSIR_PROF) in readHeader()
867 Cur = readSummary((IndexedInstrProf::ProfVersion)FormatVersion, Cur, in readHeader()
881 Start + HashOffset, Cur, Start, HashType, FormatVersion); in readHeader()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1254 uint8_t FormatVersion = data.GetU8(&Offset); in ParseARMAttributes() local
1255 if (FormatVersion != llvm::ELFAttrs::Format_Version) in ParseARMAttributes()