Searched refs:CandidateInfo (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfilePlugins.inc21 using CandidateInfo = ValueProfileCollector::CandidateInfo;
26 std::vector<CandidateInfo> *Candidates;
33 void run(std::vector<CandidateInfo> &Cs) {
46 Candidates->emplace_back(CandidateInfo{Length, InsertPt, AnnotatedInst});
59 void run(std::vector<CandidateInfo> &Candidates) {
65 Candidates.emplace_back(CandidateInfo{Callee, InsertPt, AnnotatedInst});
H A DValueProfileCollector.h51 /// for each value to be profiled. The `CandidateInfo` structure encapsulates
55 struct CandidateInfo { struct in class:llvm::ValueProfileCollector
70 std::vector<CandidateInfo> get(InstrProfValueKind Kind) const;
H A DValueProfileCollector.cpp29 /// void run(std::vector<CandidateInfo> &Candidates);
42 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) {}
53 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) {
73 std::vector<CandidateInfo>
75 std::vector<CandidateInfo> Result;
H A DPGOInstrumentation.cpp125 using VPCandidateInfo = ValueProfileCollector::CandidateInfo;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp257 for (const Info &CandidateInfo :
259 StringRef CandidateName = CandidateInfo.Name;
269 if (FlagsToInclude && !(CandidateInfo.Flags & FlagsToInclude))
272 if (CandidateInfo.Flags & FlagsToExclude)
277 if (!CandidateInfo.Prefixes)
298 const char *const CandidatePrefix = CandidateInfo.Prefixes[P]; P++) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineLICM.cpp198 struct CandidateInfo { struct in class:__anon4586::MachineLICMBase
203 CandidateInfo(MachineInstr *mi, unsigned def, int fi) function in struct:__anon4586::MachineLICMBase::CandidateInfo
213 SmallVectorImpl<CandidateInfo> &Candidates);
437 SmallVectorImpl<CandidateInfo> &Candidates) {
518 Candidates.push_back(CandidateInfo(MI, Def, FI));
533 SmallVector<CandidateInfo, 32> Candidates;
580 for (CandidateInfo &Candidate : Candidates) {

Completed in 112 milliseconds