Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
HDInstrProfWriter.h42 ProfKind ProfileKind = PF_Unknown; variable
80 if (ProfileKind == PF_Unknown) { in setIsIRLevelProfile()
82 ProfileKind = WithCS ? PF_IRLevelWithCS : PF_IRLevel; in setIsIRLevelProfile()
84 ProfileKind = PF_FE; in setIsIRLevelProfile()
88 if (((ProfileKind != PF_FE) && !IsIRLevel) || in setIsIRLevelProfile()
89 ((ProfileKind == PF_FE) && IsIRLevel)) in setIsIRLevelProfile()
94 if (ProfileKind == PF_IRLevel && WithCS) in setIsIRLevelProfile()
95 ProfileKind = PF_IRLevelWithCS; in setIsIRLevelProfile()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
HDInstrProfWriter.cpp305 if (ProfileKind == PF_IRLevel) in writeImpl()
307 if (ProfileKind == PF_IRLevelWithCS) { in writeImpl()
336 if (ProfileKind == PF_IRLevelWithCS) { in writeImpl()
357 if (ProfileKind == PF_IRLevelWithCS) { in writeImpl()
440 if (ProfileKind == PF_IRLevel) in writeText()
442 else if (ProfileKind == PF_IRLevelWithCS) in writeText()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
HDARM.cpp138 if (ArchProfile == llvm::ARM::ProfileKind::M) { in setAtomic()
215 case llvm::ARM::ProfileKind::A: in getCPUProfile()
217 case llvm::ARM::ProfileKind::R: in getCPUProfile()
219 case llvm::ARM::ProfileKind::M: in getCPUProfile()
267 ArchProfile == llvm::ARM::ProfileKind::M) { in ARMTargetInfo()
496 if (ArchProfile == llvm::ARM::ProfileKind::M) in handleTargetFeatures()
504 if (ArchProfile == llvm::ARM::ProfileKind::M) in handleTargetFeatures()
632 if (CPUProfile.empty() || ArchProfile != llvm::ARM::ProfileKind::M) in getTargetDefines()
769 if (ArchVersion == 8 && ArchProfile == llvm::ARM::ProfileKind::M) in getTargetDefines()
HDARM.h60 llvm::ARM::ProfileKind ArchProfile;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDARMTargetParser.cpp89 ARM::ProfileKind ARM::parseArchProfile(StringRef Arch) { in parseArchProfile()
98 return ProfileKind::M; in parseArchProfile()
101 return ProfileKind::R; in parseArchProfile()
111 return ProfileKind::A; in parseArchProfile()
130 return ProfileKind::INVALID; in parseArchProfile()
597 parseArchProfile(ArchName) == ProfileKind::M) in computeDefaultTargetABI()
HDTriple.cpp376 ARM::ProfileKind Profile = ARM::parseArchProfile(ArchName); in parseARMArch()
378 if (Profile == ARM::ProfileKind::M && Version == 6) { in parseARMArch()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDARMTargetParser.h156 enum class ProfileKind { INVALID = 0, A, R, M }; enum
258 ProfileKind parseArchProfile(StringRef Arch);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
HDllvm-profdata.cpp621 cl::opt<ProfileKinds> ProfileKind( in merge_main() local
684 if (ProfileKind == instr) in merge_main()
1084 cl::opt<ProfileKinds> ProfileKind( in show_main() local
1127 if (ProfileKind == instr) in show_main()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
HDARM.cpp32 return llvm::ARM::parseArchProfile(Arch) == llvm::ARM::ProfileKind::M; in isARMMProfile()
496 llvm::ARM::ProfileKind::A) { in getARMTargetFeatures()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
HDToolChain.cpp672 bool IsMProfile = ARM::parseArchProfile(Suffix) == ARM::ProfileKind::M; in ComputeLLVMTriple()