Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp1263 BasicBlock *CurrentPred = BB->getSinglePredecessor(); in processImpliedCondition() local
1268 while (CurrentPred && Iter++ < ImplicationSearchThreshold) { in processImpliedCondition()
1269 auto *PBI = dyn_cast<BranchInst>(CurrentPred->getTerminator()); in processImpliedCondition()
1303 CurrentBB = CurrentPred; in processImpliedCondition()
1304 CurrentPred = CurrentBB->getSinglePredecessor(); in processImpliedCondition()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp700 CmpInst::Predicate CurrentPred = Inst->getPredicate(); in getSameOpcode() local
702 CmpInst::getSwappedPredicate(CurrentPred); in getSameOpcode()
705 (BasePred == CurrentPred || BasePred == SwappedCurrentPred)) in getSameOpcode()
714 } else if (BasePred != CurrentPred) { in getSameOpcode()
722 if (BasePred == CurrentPred || BasePred == SwappedCurrentPred || in getSameOpcode()
723 AltPred == CurrentPred || AltPred == SwappedCurrentPred) in getSameOpcode()
7209 CmpInst::Predicate CurrentPred = ScalarTy->isFloatingPointTy() in getEntryCost() local
7212 auto MatchCmp = m_Cmp(CurrentPred, m_Value(), m_Value()); in getEntryCost()
7215 (CurrentPred != VecPred && CurrentPred != SwappedVecPred)) in getEntryCost()
7221 Builder.getInt1Ty(), CurrentPred, CostKind, in getEntryCost()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp2438 CmpInst::Predicate CurrentPred; in getCmpSelInstrCost() local
2439 if (match(I, m_Select(m_Cmp(CurrentPred, m_Value(), m_Value()), m_Value(), in getCmpSelInstrCost()
2441 VecPred = CurrentPred; in getCmpSelInstrCost()