Searched refs:ProfileList (Results 1 – 8 of 8) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Basic/ |
| H A D | ProfileList.cpp | 67 ProfileList::ProfileList(ArrayRef<std::string> Paths, SourceManager &SM) in ProfileList() function in ProfileList 72 ProfileList::~ProfileList() = default; 88 ProfileList::ExclusionType 89 ProfileList::getDefault(CodeGenOptions::ProfileInstrKind Kind) const { in getDefault() 104 std::optional<ProfileList::ExclusionType> 105 ProfileList::inSection(StringRef Section, StringRef Prefix, in inSection() 118 std::optional<ProfileList::ExclusionType> 119 ProfileList::isFunctionExcluded(StringRef FunctionName, in isFunctionExcluded() 132 std::optional<ProfileList::ExclusionType> 133 ProfileList::isLocationExcluded(SourceLocation Loc, in isLocationExcluded() [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | ProfileList.h | 28 class ProfileList { 48 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM); 49 ~ProfileList();
|
| /src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 3461 ProfileList::ExclusionType 3464 const auto &ProfileList = getContext().getProfileList(); in isFunctionBlockedByProfileList() local 3466 if (ProfileList.isEmpty()) in isFunctionBlockedByProfileList() 3467 return ProfileList::Allow; in isFunctionBlockedByProfileList() 3470 if (auto V = ProfileList.isFunctionExcluded(Fn->getName(), Kind)) in isFunctionBlockedByProfileList() 3474 if (auto V = ProfileList.isLocationExcluded(Loc, Kind)) in isFunctionBlockedByProfileList() 3480 if (auto V = ProfileList.isFileExcluded(MainFile->getName(), Kind)) in isFunctionBlockedByProfileList() 3482 return ProfileList.getDefault(Kind); in isFunctionBlockedByProfileList() 3485 ProfileList::ExclusionType 3489 if (V != ProfileList::Allow) in isFunctionBlockedFromProfileInstr() [all …]
|
| H A D | CodeGenModule.h | 1447 ProfileList::ExclusionType 1452 ProfileList::ExclusionType
|
| H A D | CodeGenFunction.cpp | 942 case ProfileList::Skip: in StartFunction() 945 case ProfileList::Forbid: in StartFunction() 948 case ProfileList::Allow: in StartFunction()
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 99 class ProfileList; variable 627 std::unique_ptr<ProfileList> ProfList; 812 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
|
| /src/lib/clang/libclang/ |
| H A D | Makefile | 237 SRCS_MIN+= Basic/ProfileList.cpp
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 890 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()
|