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.cpp731 CoalescingCandidateInfo Cand1, Cand2; in runOnMachineFunction() local
739 Cand1.clear(); in runOnMachineFunction()
742 Cand1.BranchBlock = &MBB; in runOnMachineFunction()
745 if (!canCoalesceBranch(Cand1)) in runOnMachineFunction()
748 Cand2.BranchBlock = Cand1.BranchTargetBlock; in runOnMachineFunction()
754 assert(MPDT->dominates(Cand2.BranchTargetBlock, Cand1.BranchBlock) && in runOnMachineFunction()
757 if (!identicalOperands(Cand1.Cond, Cand2.Cond)) { in runOnMachineFunction()
758 LLVM_DEBUG(dbgs() << "Blocks " << Cand1.BranchBlock->getNumber() in runOnMachineFunction()
763 if (!canMerge(Cand2, Cand1)) { in runOnMachineFunction()
765 << Cand1.BranchBlock->getNumber() << " and " in runOnMachineFunction()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10039 static Comparison compareEnableIfAttrs(const Sema &S, const FunctionDecl *Cand1, in compareEnableIfAttrs() argument
10042 bool Cand1Attr = Cand1->hasAttr<EnableIfAttr>(); in compareEnableIfAttrs()
10050 auto Cand1Attrs = Cand1->specific_attrs<EnableIfAttr>(); in compareEnableIfAttrs()
10078 isBetterMultiversionCandidate(const OverloadCandidate &Cand1, in isBetterMultiversionCandidate() argument
10080 if (!Cand1.Function || !Cand1.Function->isMultiVersion() || !Cand2.Function || in isBetterMultiversionCandidate()
10086 if (Cand1.Function->isInvalidDecl()) { in isBetterMultiversionCandidate()
10096 bool Cand1CPUDisp = Cand1.Function->hasAttr<CPUDispatchAttr>(); in isBetterMultiversionCandidate()
10098 const auto *Cand1CPUSpec = Cand1.Function->getAttr<CPUSpecificAttr>(); in isBetterMultiversionCandidate()
10197 const OverloadCandidate &Cand1, in sameFunctionParameterTypeLists() argument
10199 if (!Cand1.Function || !Cand2.Function) in sameFunctionParameterTypeLists()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h1258 const OverloadCandidate &Cand1,