Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp1400 APInt MinLHS = getSignedMin(), MaxLHS = getSignedMax(); in srem() local
1404 if (MaxLHS.ult(MinAbsRHS)) in srem()
1408 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
1413 if (MaxLHS.isNegative()) { in srem()
1423 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2345 const SCEV *MaxLHS = Max->getOperand(0); in OptimizeMax() local
2350 if (!MaxLHS || in OptimizeMax()
2351 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) in OptimizeMax()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3756 SDValue MaxLHS = Op0.getOperand(0); in foldSubToUSubSat() local
3758 if (MaxLHS == Op1) in foldSubToUSubSat()
3761 return getTruncatedUSUBSAT(DstVT, SubVT, MaxLHS, Op1, DAG, SDLoc(N)); in foldSubToUSubSat()