Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h404 unsigned FormatVersion; variable
411 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait() argument
412 : HashType(HashType), FormatVersion(FormatVersion) {} in InstrProfLookupTrait()
489 uint64_t FormatVersion; variable
513 uint64_t getVersion() const override { return GET_VERSION(FormatVersion); } in getVersion()
516 return (FormatVersion & VARIANT_MASK_IR_PROF) != 0; in isIRLevelProfile()
520 return (FormatVersion & VARIANT_MASK_CSIR_PROF) != 0; in hasCSIRLevelProfile()
524 return (FormatVersion & VARIANT_MASK_INSTR_ENTRY) != 0; in instrEntryBBEnabled()
528 return (FormatVersion & VARIANT_MASK_BYTE_COVERAGE) != 0; in hasSingleByteCoverage()
532 return (FormatVersion & VARIANT_MASK_FUNCTION_ENTRY_ONLY) != 0; in functionEntryOnly()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/RISCV/
H A Dattributes-invalid.test15 # ERR-FORMAT-NEXT: FormatVersion: 0x42
43 # ERR-LENGTH-NEXT: FormatVersion: 0x41
57 # NO-CONTENT-NEXT: FormatVersion: 0x41
/llvm-project-15.0.7/lld/test/ELF/
H A Driscv-attributes.s10 # CHECK-NEXT: FormatVersion: 0x41
/llvm-project-15.0.7/clang/include/clang/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.h47 static const VersionTuple FormatVersion; variable
/llvm-project-15.0.7/llvm/test/CodeGen/MSP430/
H A Dbuild-attrs.ll13 ; COMMON: FormatVersion: 0x41
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/MSP430/
H A Dbuild-attributes.test16 # HEADER-NEXT: FormatVersion: 0x41
24 # ENUM-HEADER-NEXT: FormatVersion: 0x41
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfReader.cpp674 if (GET_VERSION(FormatVersion) != IndexedInstrProf::ProfVersion::Version1) { in ReadData()
691 if (GET_VERSION(FormatVersion) > IndexedInstrProf::ProfVersion::Version2 && in ReadData()
735 FormatVersion = Version; in InstrProfReaderIndex()
744 return getProfileKindFromVersion(FormatVersion); in getProfileKind()
/llvm-project-15.0.7/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp446 const VersionTuple SymbolGraphSerializer::FormatVersion{0, 5, 3};
451 serializeSemanticVersion(FormatVersion)); in serializeMetadata()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1262 uint8_t FormatVersion = data.GetU8(&Offset); in ParseARMAttributes() local
1263 if (FormatVersion != llvm::ELFAttrs::Format_Version) in ParseARMAttributes()