Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchCoalescing.cpp731 CoalescingCandidateInfo Cand1, Cand2; in runOnMachineFunction() local
740 Cand2.clear(); in runOnMachineFunction()
748 Cand2.BranchBlock = Cand1.BranchTargetBlock; in runOnMachineFunction()
749 if (!canCoalesceBranch(Cand2)) in runOnMachineFunction()
754 assert(MPDT->dominates(Cand2.BranchTargetBlock, Cand1.BranchBlock) && in runOnMachineFunction()
757 if (!identicalOperands(Cand1.Cond, Cand2.Cond)) { in runOnMachineFunction()
759 << " and " << Cand2.BranchBlock->getNumber() in runOnMachineFunction()
763 if (!canMerge(Cand2, Cand1)) { in runOnMachineFunction()
766 << Cand2.BranchBlock->getNumber() << "\n"); in runOnMachineFunction()
773 MergedCandidates = mergeCandidates(Cand2, Cand1); in runOnMachineFunction()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10040 const FunctionDecl *Cand2) { in compareEnableIfAttrs() argument
10043 bool Cand2Attr = Cand2->hasAttr<EnableIfAttr>(); in compareEnableIfAttrs()
10051 auto Cand2Attrs = Cand2->specific_attrs<EnableIfAttr>(); in compareEnableIfAttrs()
10079 const OverloadCandidate &Cand2) { in isBetterMultiversionCandidate() argument
10080 if (!Cand1.Function || !Cand1.Function->isMultiVersion() || !Cand2.Function || in isBetterMultiversionCandidate()
10081 !Cand2.Function->isMultiVersion()) in isBetterMultiversionCandidate()
10087 if (Cand2.Function->isInvalidDecl()) in isBetterMultiversionCandidate()
10091 if (Cand2.Function->isInvalidDecl()) in isBetterMultiversionCandidate()
10097 bool Cand2CPUDisp = Cand2.Function->hasAttr<CPUDispatchAttr>(); in isBetterMultiversionCandidate()
10099 const auto *Cand2CPUSpec = Cand2.Function->getAttr<CPUSpecificAttr>(); in isBetterMultiversionCandidate()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h1259 const OverloadCandidate &Cand2,