Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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
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 …]
H A DCMakeLists.txt64 ProfileList.cpp
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DProfileList.h28 class ProfileList {
48 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);
49 ~ProfileList();
/openbsd-src/gnu/usr.bin/clang/libclangBasic/
H A DMakefile36 ProfileList.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/lib/Basic/
H A DBUILD.gn81 "ProfileList.cpp",
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenModule.cpp3025 ProfileList::ExclusionType
3028 const auto &ProfileList = getContext().getProfileList(); in isFunctionBlockedByProfileList() local
3030 if (ProfileList.isEmpty()) in isFunctionBlockedByProfileList()
3031 return ProfileList::Allow; in isFunctionBlockedByProfileList()
3034 if (auto V = ProfileList.isFunctionExcluded(Fn->getName(), Kind)) in isFunctionBlockedByProfileList()
3038 if (auto V = ProfileList.isLocationExcluded(Loc, Kind)) in isFunctionBlockedByProfileList()
3044 if (auto V = ProfileList.isFileExcluded(MainFile->getName(), Kind)) in isFunctionBlockedByProfileList()
3046 return ProfileList.getDefault(Kind); in isFunctionBlockedByProfileList()
3049 ProfileList::ExclusionType
3053 if (V != ProfileList::Allow) in isFunctionBlockedFromProfileInstr()
[all …]
H A DCodeGenModule.h1369 ProfileList::ExclusionType
1374 ProfileList::ExclusionType
H A DCodeGenFunction.cpp864 case ProfileList::Skip: in StartFunction()
867 case ProfileList::Forbid: in StartFunction()
870 case ProfileList::Allow: in StartFunction()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DASTContext.h601 std::unique_ptr<ProfileList> ProfList;
777 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp959 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()
/openbsd-src/gnu/llvm/clang/docs/tools/
H A Dclang-formatted-files.txt190 clang/include/clang/Basic/ProfileList.h