Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h479 unsigned FormatVersion; variable
487 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
568 uint64_t FormatVersion; variable
592 uint64_t getVersion() const override { return GET_VERSION(FormatVersion); } in getVersion()
595 return (FormatVersion & VARIANT_MASK_IR_PROF) != 0; in isIRLevelProfile()
599 return (FormatVersion & VARIANT_MASK_CSIR_PROF) != 0; in hasCSIRLevelProfile()
603 return (FormatVersion & VARIANT_MASK_INSTR_ENTRY) != 0; in instrEntryBBEnabled()
607 return (FormatVersion & VARIANT_MASK_BYTE_COVERAGE) != 0; in hasSingleByteCoverage()
611 return (FormatVersion & VARIANT_MASK_FUNCTION_ENTRY_ONLY) != 0; in functionEntryOnly()
615 return (FormatVersion & VARIANT_MASK_MEMPROF) != 0; in hasMemoryProfile()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.h54 static const VersionTuple FormatVersion; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp888 if (GET_VERSION(FormatVersion) != IndexedInstrProf::ProfVersion::Version1) { in ReadData()
905 if (GET_VERSION(FormatVersion) > IndexedInstrProf::ProfVersion::Version10) { in ReadData()
926 if (GET_VERSION(FormatVersion) > IndexedInstrProf::ProfVersion::Version2 && in ReadData()
970 FormatVersion = Version; in InstrProfReaderIndex()
979 return getProfileKindFromVersion(FormatVersion); in getProfileKind()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp714 const VersionTuple SymbolGraphSerializer::FormatVersion{0, 5, 3};
719 serializeSemanticVersion(FormatVersion)); in serializeMetadata()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1301 uint8_t FormatVersion = data.GetU8(&Offset); in ParseARMAttributes() local
1302 if (FormatVersion != llvm::ELFAttrs::Format_Version) in ParseARMAttributes()