Home
last modified time | relevance | path

Searched refs:ProfileList (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DProfileList.cpp67 ProfileList::ProfileList(ArrayRef<std::string> Paths, SourceManager &SM) in ProfileList() function in ProfileList
72 ProfileList::~ProfileList() = default;
88 ProfileList::ExclusionType
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()
138 std::optional<ProfileList::ExclusionType>
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DProfileList.h28 class ProfileList {
48 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);
49 ~ProfileList();
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp3427 ProfileList::ExclusionType
3430 const auto &ProfileList = getContext().getProfileList(); in isFunctionBlockedByProfileList() local
3432 if (ProfileList.isEmpty()) in isFunctionBlockedByProfileList()
3433 return ProfileList::Allow; in isFunctionBlockedByProfileList()
3436 if (auto V = ProfileList.isFunctionExcluded(Fn->getName(), Kind)) in isFunctionBlockedByProfileList()
3440 if (auto V = ProfileList.isLocationExcluded(Loc, Kind)) in isFunctionBlockedByProfileList()
3448 return ProfileList.getDefault(Kind); in isFunctionBlockedByProfileList()
3451 ProfileList::ExclusionType
3455 if (V != ProfileList::Allow) in isFunctionBlockedFromProfileInstr()
3462 return ProfileList::Skip; in isFunctionBlockedFromProfileInstr()
[all …]
H A DCodeGenModule.h1368 ProfileList::ExclusionType
1373 ProfileList::ExclusionType
H A DCodeGenFunction.cpp884 case ProfileList::Skip: in StartFunction()
887 case ProfileList::Forbid: in StartFunction()
890 case ProfileList::Allow: in StartFunction()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h98 class ProfileList; variable
607 std::unique_ptr<ProfileList> ProfList;
783 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
/freebsd-14.2/lib/clang/libclang/
H A DMakefile212 SRCS_MIN+= Basic/ProfileList.cpp
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp886 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()