Home
last modified time | relevance | path

Searched refs:ProfileKind (Results 1 – 12 of 12) sorted by relevance

/external/llvm/include/llvm/ProfileData/
DInstrProfWriter.h38 ProfKind ProfileKind; variable
62 if (ProfileKind == PF_Unknown) { in setIsIRLevelProfile()
63 ProfileKind = IsIRLevel ? PF_IRLevel: PF_FE; in setIsIRLevelProfile()
66 return (IsIRLevel == (ProfileKind == PF_IRLevel)) in setIsIRLevelProfile()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DInstrProfWriter.h42 ProfKind ProfileKind = PF_Unknown; variable
79 if (ProfileKind == PF_Unknown) { in setIsIRLevelProfile()
80 ProfileKind = IsIRLevel ? PF_IRLevel: PF_FE; in setIsIRLevelProfile()
83 return (IsIRLevel == (ProfileKind == PF_IRLevel)) in setIsIRLevelProfile()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DTargetParser.h107 enum class ProfileKind { INVALID = 0, A, R, M }; enum
145 ProfileKind parseArchProfile(StringRef Arch);
219 ARM::ProfileKind parseArchProfile(StringRef Arch);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DTargetParser.cpp750 ARM::ProfileKind ARM::parseArchProfile(StringRef Arch) { in parseArchProfile()
758 return ARM::ProfileKind::M; in parseArchProfile()
761 return ARM::ProfileKind::R; in parseArchProfile()
770 return ARM::ProfileKind::A; in parseArchProfile()
789 return ARM::ProfileKind::INVALID; in parseArchProfile()
850 llvm::ARM::parseArchProfile(ArchName) == ARM::ProfileKind::M) in computeDefaultTargetABI()
928 ARM::ProfileKind AArch64::parseArchProfile(StringRef Arch) { in parseArchProfile()
DTriple.cpp368 ARM::ProfileKind Profile = ARM::parseArchProfile(ArchName); in parseARMArch()
370 if (Profile == ARM::ProfileKind::M && Version == 6) { in parseARMArch()
/external/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp278 cl::opt<ProfileKinds> ProfileKind( in merge_main() local
315 if (ProfileKind == instr) in merge_main()
492 cl::opt<ProfileKinds> ProfileKind( in show_main() local
512 if (ProfileKind == instr) in show_main()
/external/llvm/lib/ProfileData/
DInstrProfWriter.cpp145 : Sparse(Sparse), FunctionData(), ProfileKind(PF_Unknown), in InstrProfWriter()
228 if (ProfileKind == PF_IRLevel) in writeImpl()
337 if (ProfileKind == PF_IRLevel) in writeText()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp469 cl::opt<ProfileKinds> ProfileKind( in merge_main() local
512 if (ProfileKind == instr) in merge_main()
784 cl::opt<ProfileKinds> ProfileKind( in show_main() local
807 if (ProfileKind == instr) in show_main()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DInstrProfWriter.cpp266 if (ProfileKind == PF_IRLevel) in writeImpl()
377 if (ProfileKind == PF_IRLevel) in writeText()
/external/llvm/include/llvm/Support/
DTargetParser.h103 enum ProfileKind { PK_INVALID = 0, PK_A, PK_R, PK_M }; enum
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTargetParser.h103 enum ProfileKind { PK_INVALID = 0, PK_A, PK_R, PK_M }; enum
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DTargetParserTest.cpp631 EXPECT_EQ(ARM::ProfileKind::M, ARM::parseArchProfile(ARMArch[i])); in TEST()
635 EXPECT_EQ(ARM::ProfileKind::R, ARM::parseArchProfile(ARMArch[i])); in TEST()
644 EXPECT_EQ(ARM::ProfileKind::A, ARM::parseArchProfile(ARMArch[i])); in TEST()
647 EXPECT_EQ(ARM::ProfileKind::INVALID, ARM::parseArchProfile(ARMArch[i])); in TEST()