Searched refs:Candidate (Results 51 - 61 of 61) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp2747 for (auto Candidate : RegClass) {
2752 if (!RegMask.clobbersPhysReg(Candidate))
2756 if (MRI.isReserved(Candidate))
2762 TRI->isSuperOrSubRegisterEq(MO.getReg(), Candidate)) {
2771 Regs[FoundRegs++] = Candidate;
H A DX86InstrInfo.cpp8063 std::vector<outliner::Candidate> &RepeatedSequenceLocs) const {
8078 for (outliner::Candidate &C : RepeatedSequenceLocs)
8087 for (outliner::Candidate &C : RepeatedSequenceLocs)
8194 const outliner::Candidate &C) const {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFoldOperands.cpp308 for (auto Candidate : FoldList) {
309 if (Candidate.UseMI == MI)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp9642 auto Candidate =
9644 [Function](const OverloadCandidate &Candidate) -> bool {
9645 return Candidate.Viable &&
9646 Candidate.Function == Function &&
9647 Candidate.Conversions.size() > 0;
9649 if (Candidate != Seq.getFailedCandidateSet().end() &&
9651 Candidate->Viable = false;
9652 Candidate->FailureKind = ovl_fail_bad_conversion;
9653 Candidate->Conversions[0].setBad(BadConversionSequence::no_conversion,
9672 auto NotSpecialization = [&] (const CXXRecordDecl *Candidate) {
[all...]
H A DSemaDeclCXX.cpp11516 bool ValidateCandidate(const TypoCorrection &Candidate) override {
11517 NamedDecl *ND = Candidate.getCorrectionDecl();
11524 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
11544 Candidate.WillReplaceSpecifier()
11545 ? Candidate.getCorrectionSpecifier()
H A DSemaTemplate.cpp667 bool ValidateCandidate(const TypoCorrection &Candidate) override {
668 if (auto *ND = Candidate.getCorrectionDecl())
670 return Candidate.isKeyword();
H A DSemaOpenMP.cpp2331 bool ValidateCandidate(const TypoCorrection &Candidate) override {
2332 NamedDecl *ND = Candidate.getCorrectionDecl();
2353 bool ValidateCandidate(const TypoCorrection &Candidate) override {
2354 NamedDecl *ND = Candidate.getCorrectionDecl();
H A DSemaDecl.cpp9800 assert(TA && "MultiVersion Candidate requires a target attribute");
10392 NamedDecl *Candidate = Previous.getRepresentativeDecl(); local
10393 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
10395 OldDecl = Candidate;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimpleLoopUnswitch.cpp2494 for (auto Candidate : UnswitchCandidates) {
2495 Instruction *CI = Candidate.first;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3391 /// Try to match PHI node to Candidate.
3393 bool MatchPhiNode(PHINode *PHI, PHINode *Candidate, argument
3397 Matcher.insert({ PHI, Candidate });
3400 WorkList.push_back({ PHI, Candidate });
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp10194 /// Is MaybeMinMaxExpr an (U|S)(Min|Max) of Candidate and some other values?
10197 const SCEV *Candidate) {
10202 return find(MinMaxExpr->operands(), Candidate) != MinMaxExpr->op_end();

Completed in 535 milliseconds

123