Searched refs:ProfileKind (Results 1 – 12 of 12) sorted by relevance
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfWriter.h | 38 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/ |
D | InstrProfWriter.h | 42 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/ |
D | TargetParser.h | 107 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/ |
D | TargetParser.cpp | 750 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()
|
D | Triple.cpp | 368 ARM::ProfileKind Profile = ARM::parseArchProfile(ArchName); in parseARMArch() 370 if (Profile == ARM::ProfileKind::M && Version == 6) { in parseARMArch()
|
/external/llvm/tools/llvm-profdata/ |
D | llvm-profdata.cpp | 278 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/ |
D | InstrProfWriter.cpp | 145 : 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/ |
D | llvm-profdata.cpp | 469 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/ |
D | InstrProfWriter.cpp | 266 if (ProfileKind == PF_IRLevel) in writeImpl() 377 if (ProfileKind == PF_IRLevel) in writeText()
|
/external/llvm/include/llvm/Support/ |
D | TargetParser.h | 103 enum ProfileKind { PK_INVALID = 0, PK_A, PK_R, PK_M }; enum
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | TargetParser.h | 103 enum ProfileKind { PK_INVALID = 0, PK_A, PK_R, PK_M }; enum
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | TargetParserTest.cpp | 631 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()
|