HomeSort by: relevance | last modified time | path
    Searched refs:ProfileKind (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProfWriter.h 42 ProfKind ProfileKind = PF_Unknown;
82 /// Set the ProfileKind. Report error if mixing FE and IR level profiles.
85 if (ProfileKind == PF_Unknown) {
87 ProfileKind = WithCS ? PF_IRLevelWithCS : PF_IRLevel;
89 ProfileKind = PF_FE;
93 if (((ProfileKind != PF_FE) && !IsIRLevel) ||
94 ((ProfileKind == PF_FE) && IsIRLevel))
99 if (ProfileKind == PF_IRLevel && WithCS)
100 ProfileKind = PF_IRLevelWithCS;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfWriter.cpp 306 if (ProfileKind == PF_IRLevel)
308 if (ProfileKind == PF_IRLevelWithCS) {
340 if (ProfileKind == PF_IRLevelWithCS) {
361 if (ProfileKind == PF_IRLevelWithCS) {
473 if (ProfileKind == PF_IRLevel)
475 else if (ProfileKind == PF_IRLevelWithCS)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ARMTargetParser.cpp 92 ARM::ProfileKind ARM::parseArchProfile(StringRef Arch) {
101 return ProfileKind::M;
104 return ProfileKind::R;
116 return ProfileKind::A;
135 return ProfileKind::INVALID;
605 parseArchProfile(ArchName) == ProfileKind::M)
Triple.cpp 391 ARM::ProfileKind Profile = ARM::parseArchProfile(ArchName);
393 if (Profile == ARM::ProfileKind::M && Version == 6) {
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
ARM.cpp 145 if (ArchProfile == llvm::ARM::ProfileKind::M) {
228 case llvm::ARM::ProfileKind::A:
230 case llvm::ARM::ProfileKind::R:
232 case llvm::ARM::ProfileKind::M:
280 ArchProfile == llvm::ARM::ProfileKind::M) {
524 if (ArchProfile == llvm::ARM::ProfileKind::M)
532 if (ArchProfile == llvm::ARM::ProfileKind::M)
670 if (CPUProfile.empty() || ArchProfile != llvm::ARM::ProfileKind::M)
817 if (ArchVersion == 8 && ArchProfile == llvm::ARM::ProfileKind::M)
ARM.h 60 llvm::ARM::ProfileKind ArchProfile;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ARMTargetParser.h 170 enum class ProfileKind { INVALID = 0, A, R, M };
273 ProfileKind parseArchProfile(StringRef Arch);
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
ARM.cpp 32 return llvm::ARM::parseArchProfile(Arch) == llvm::ARM::ProfileKind::M;
38 return llvm::ARM::parseArchProfile(Arch) == llvm::ARM::ProfileKind::A;
194 llvm::ARM::parseArchProfile(Suffix) == llvm::ARM::ProfileKind::M;
675 llvm::ARM::ProfileKind ArchProfile =
678 (ArchProfile == llvm::ARM::ProfileKind::A ||
679 ArchProfile == llvm::ARM::ProfileKind::R))) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 343 // the merge_empty_profile.test because the InstrProfWriter.ProfileKind isn't
848 cl::opt<ProfileKinds> ProfileKind(
949 if (ProfileKind != instr)
959 if (ProfileKind == instr)
1955 cl::opt<ProfileKinds> ProfileKind(
1966 if (ProfileKind == instr)
2452 cl::opt<ProfileKinds> ProfileKind(
2495 if (ProfileKind == instr)

Completed in 21 milliseconds