Searched refs:ProfileList (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | ProfileList.cpp | 65 ProfileList::ProfileList(ArrayRef<std::string> Paths, SourceManager &SM) in ProfileList() function in ProfileList 70 ProfileList::~ProfileList() = default; 88 ProfileList::ExclusionType 89 ProfileList::getDefault(llvm::driver::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 …]
|
| /freebsd/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();
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 3713 ProfileList::ExclusionType 3716 const auto &ProfileList = getContext().getProfileList(); in isFunctionBlockedByProfileList() local 3718 if (ProfileList.isEmpty()) in isFunctionBlockedByProfileList() 3719 return ProfileList::Allow; in isFunctionBlockedByProfileList() 3722 if (auto V = ProfileList.isFunctionExcluded(Fn->getName(), Kind)) in isFunctionBlockedByProfileList() 3726 if (auto V = ProfileList.isLocationExcluded(Loc, Kind)) in isFunctionBlockedByProfileList() 3732 if (auto V = ProfileList.isFileExcluded(MainFile->getName(), Kind)) in isFunctionBlockedByProfileList() 3734 return ProfileList.getDefault(Kind); in isFunctionBlockedByProfileList() 3737 ProfileList::ExclusionType 3741 if (V != ProfileList::Allow) in isFunctionBlockedFromProfileInstr() [all …]
|
| H A D | CodeGenModule.h | 1528 ProfileList::ExclusionType 1533 ProfileList::ExclusionType
|
| H A D | CodeGenFunction.cpp | 949 case ProfileList::Skip: in StartFunction() 952 case ProfileList::Forbid: in StartFunction() 955 case ProfileList::Allow: in StartFunction()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 101 class ProfileList; variable 700 std::unique_ptr<ProfileList> ProfList; 905 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
|
| /freebsd/lib/clang/libclang/ |
| H A D | Makefile | 225 SRCS_MIN+= Basic/ProfileList.cpp
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 951 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()
|