Searched refs:ProfileList (Results 1 – 7 of 7) sorted by relevance
28 class ProfileList {48 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);49 ~ProfileList();
3461 ProfileList::ExclusionType3464 const auto &ProfileList = getContext().getProfileList(); in isFunctionBlockedByProfileList() local3466 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::ExclusionType3489 if (V != ProfileList::Allow) in isFunctionBlockedFromProfileInstr()[all …]
1447 ProfileList::ExclusionType1452 ProfileList::ExclusionType
942 case ProfileList::Skip: in StartFunction()945 case ProfileList::Forbid: in StartFunction()948 case ProfileList::Allow: in StartFunction()
99 class ProfileList; variable627 std::unique_ptr<ProfileList> ProfList;812 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
216 SRCS_MIN+= Basic/ProfileList.cpp
890 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()