Home
last modified time | relevance | path

Searched refs:Cand1 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchCoalescing.cpp729 CoalescingCandidateInfo Cand1, Cand2; in runOnMachineFunction() local
737 Cand1.clear(); in runOnMachineFunction()
740 Cand1.BranchBlock = &MBB; in runOnMachineFunction()
743 if (!canCoalesceBranch(Cand1)) in runOnMachineFunction()
746 Cand2.BranchBlock = Cand1.BranchTargetBlock; in runOnMachineFunction()
752 assert(MPDT->dominates(Cand2.BranchTargetBlock, Cand1.BranchBlock) && in runOnMachineFunction()
755 if (!identicalOperands(Cand1.Cond, Cand2.Cond)) { in runOnMachineFunction()
756 LLVM_DEBUG(dbgs() << "Blocks " << Cand1.BranchBlock->getNumber() in runOnMachineFunction()
761 if (!canMerge(Cand2, Cand1)) { in runOnMachineFunction()
763 << Cand1.BranchBlock->getNumber() << " and " in runOnMachineFunction()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10506 static Comparison compareEnableIfAttrs(const Sema &S, const FunctionDecl *Cand1, in compareEnableIfAttrs() argument
10509 bool Cand1Attr = Cand1->hasAttr<EnableIfAttr>(); in compareEnableIfAttrs()
10517 auto Cand1Attrs = Cand1->specific_attrs<EnableIfAttr>(); in compareEnableIfAttrs()
10545 isBetterMultiversionCandidate(const OverloadCandidate &Cand1, in isBetterMultiversionCandidate() argument
10547 if (!Cand1.Function || !Cand1.Function->isMultiVersion() || !Cand2.Function || in isBetterMultiversionCandidate()
10553 if (Cand1.Function->isInvalidDecl()) { in isBetterMultiversionCandidate()
10563 bool Cand1CPUDisp = Cand1.Function->hasAttr<CPUDispatchAttr>(); in isBetterMultiversionCandidate()
10565 const auto *Cand1CPUSpec = Cand1.Function->getAttr<CPUSpecificAttr>(); in isBetterMultiversionCandidate()
10720 Sema &S, const OverloadCandidate &Cand1, const OverloadCandidate &Cand2, in isBetterOverloadCandidate() argument
10726 return Cand1.Viable; in isBetterOverloadCandidate()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h1498 bool isBetterOverloadCandidate(Sema &S, const OverloadCandidate &Cand1,