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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h42 ProfKind ProfileKind = PF_Unknown; member in class:llvm::InstrProfWriter
77 /// Set the ProfileKind. Report error if mixing FE and IR level profiles.
80 if (ProfileKind == PF_Unknown) {
82 ProfileKind = WithCS ? PF_IRLevelWithCS : PF_IRLevel;
84 ProfileKind = PF_FE;
88 if (((ProfileKind != PF_FE) && !IsIRLevel) ||
89 ((ProfileKind == PF_FE) && IsIRLevel))
94 if (ProfileKind == PF_IRLevel && WithCS)
95 ProfileKind = PF_IRLevelWithCS;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp305 if (ProfileKind == PF_IRLevel)
307 if (ProfileKind == PF_IRLevelWithCS) {
336 if (ProfileKind == PF_IRLevelWithCS) {
357 if (ProfileKind == PF_IRLevelWithCS) {
440 if (ProfileKind == PF_IRLevel)
442 else if (ProfileKind == PF_IRLevelWithCS)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DARMTargetParser.cpp89 ARM::ProfileKind ARM::parseArchProfile(StringRef Arch) {
98 return ProfileKind::M;
101 return ProfileKind::R;
111 return ProfileKind::A;
130 return ProfileKind::INVALID;
597 parseArchProfile(ArchName) == ProfileKind::M)
H A DTriple.cpp376 ARM::ProfileKind Profile = ARM::parseArchProfile(ArchName);
378 if (Profile == ARM::ProfileKind::M && Version == 6) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DARM.cpp138 if (ArchProfile == llvm::ARM::ProfileKind::M) {
215 case llvm::ARM::ProfileKind::A:
217 case llvm::ARM::ProfileKind::R:
219 case llvm::ARM::ProfileKind::M:
267 ArchProfile == llvm::ARM::ProfileKind::M) {
496 if (ArchProfile == llvm::ARM::ProfileKind::M)
504 if (ArchProfile == llvm::ARM::ProfileKind::M)
632 if (CPUProfile.empty() || ArchProfile != llvm::ARM::ProfileKind::M)
769 if (ArchVersion == 8 && ArchProfile == llvm::ARM::ProfileKind::M)
H A DARM.h60 llvm::ARM::ProfileKind ArchProfile;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMTargetParser.h156 enum class ProfileKind { INVALID = 0, A, R, M }; class in namespace:llvm::ARM
258 ProfileKind parseArchProfile(StringRef Arch);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp621 cl::opt<ProfileKinds> ProfileKind(
684 if (ProfileKind == instr)
1084 cl::opt<ProfileKinds> ProfileKind(
1127 if (ProfileKind == instr)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DARM.cpp32 return llvm::ARM::parseArchProfile(Arch) == llvm::ARM::ProfileKind::M;
496 llvm::ARM::ProfileKind::A) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp672 bool IsMProfile = ARM::parseArchProfile(Suffix) == ARM::ProfileKind::M;

Completed in 141 milliseconds