Home
last modified time | relevance | path

Searched refs:Pred0 (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp307 BasicBlock *Pred0 = *SI; in mergeStores() local
312 if (Pred0 == Pred1) in mergeStores()
322 for (BasicBlock::reverse_iterator RBI = Pred0->rbegin(), RBE = Pred0->rend(); in mergeStores()
347 SinkBB = SplitBlockPredecessors(TailBB, {Pred0, Pred1}, ".sink.split"); in mergeStores()
354 RBI = Pred0->rbegin(); in mergeStores()
355 RBE = Pred0->rend(); in mergeStores()
H A DGuardWidening.cpp726 ICmpInst::Predicate Pred0, Pred1; in mergeChecks() local
731 m_ICmp(Pred0, m_Value(LHS), m_ConstantInt(RHS0))) && in mergeChecks()
736 ConstantRange::makeExactICmpRegion(Pred0, RHS0->getValue()); in mergeChecks()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp579 const BasicBlock *Pred0 = Worklist[0]; in findBackwardJoinPoint() local
581 const BasicBlock *Pred0UniquePred = Pred0->getUniquePredecessor(); in findBackwardJoinPoint()
583 if (Pred0 == Pred1UniquePred) { in findBackwardJoinPoint()
586 JoinBB = Pred0; in findBackwardJoinPoint()
H A DInstructionSimplify.cpp1691 ICmpInst::Predicate Pred0, Pred1; in simplifyAndOfICmpsWithAdd() local
1711 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT) in simplifyAndOfICmpsWithAdd()
1717 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT) in simplifyAndOfICmpsWithAdd()
1725 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT) in simplifyAndOfICmpsWithAdd()
1728 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT) in simplifyAndOfICmpsWithAdd()
1738 ICmpInst::Predicate Pred0, Pred1; in simplifyAndOrOfICmpsWithCtpop() local
1782 ICmpInst::Predicate Pred0, Pred1; in simplifyOrOfICmpsWithAdd() local
1802 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE) in simplifyOrOfICmpsWithAdd()
1808 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE) in simplifyOrOfICmpsWithAdd()
1816 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE) in simplifyOrOfICmpsWithAdd()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp661 ICmpInst::Predicate Pred0 = (Inverted ? Cmp0->getInversePredicate() : in simplifyRangeCheck() local
665 if (!((Pred0 == ICmpInst::ICMP_SGT && RangeStart->isMinusOne()) || in simplifyRangeCheck()
666 (Pred0 == ICmpInst::ICMP_SGE && RangeStart->isZero()))) in simplifyRangeCheck()
873 CmpInst::Predicate Pred0, Pred1; in foldIsPowerOf2OrZero() local
900 CmpInst::Predicate Pred0, Pred1; in foldIsPowerOf2() local
905 Pred0 == ICmpInst::ICMP_NE && Pred1 == ICmpInst::ICMP_ULT) { in foldIsPowerOf2()
913 Pred0 == ICmpInst::ICMP_EQ && Pred1 == ICmpInst::ICMP_UGT) { in foldIsPowerOf2()
1184 ICmpInst::Predicate Pred0; in foldAndOrOfICmpsWithConstEq() local
1187 if (!match(Cmp0, m_ICmp(Pred0, m_Value(X), m_Constant(C))) || in foldAndOrOfICmpsWithConstEq()
1190 if ((IsAnd && Pred0 != ICmpInst::ICMP_EQ) || in foldAndOrOfICmpsWithConstEq()
[all …]
H A DInstCombineSelect.cpp1365 ICmpInst::Predicate Pred0 = Cmp0.getPredicate(); in canonicalizeClampLike() local
1373 Pred0 = ICmpInst::getInversePredicate(Pred0); in canonicalizeClampLike()
1379 switch (Pred0) { in canonicalizeClampLike()
1399 Pred0 = ICmpInst::getFlippedStrictnessPredicate(Pred0); in canonicalizeClampLike()
1478 assert((Pred0 == ICmpInst::Predicate::ICMP_ULT || in canonicalizeClampLike()
1479 Pred0 == ICmpInst::Predicate::ICMP_UGE) && in canonicalizeClampLike()
1481 if (Pred0 == ICmpInst::Predicate::ICMP_UGE) in canonicalizeClampLike()