Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp1496 APInt MinLHS = getSignedMin(), MaxLHS = getSignedMax(); in srem() local
1500 if (MaxLHS.ult(MinAbsRHS)) in srem()
1504 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
1509 if (MaxLHS.isNegative()) { in srem()
1519 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2523 const SCEV *MaxLHS = Max->getOperand(0); in OptimizeMax() local
2528 if (!MaxLHS || in OptimizeMax()
2529 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) in OptimizeMax()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3891 SDValue MaxLHS = Op0.getOperand(0); in foldSubToUSubSat() local
3893 if (MaxLHS == Op1) in foldSubToUSubSat()
3896 return getTruncatedUSUBSAT(DstVT, SubVT, MaxLHS, Op1, DAG, DL); in foldSubToUSubSat()