Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp1248 APInt MinLHS = getSignedMin(), MaxLHS = getSignedMax(); in srem() local
1252 if (MaxLHS.ult(MinAbsRHS)) in srem()
1256 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
1261 if (MaxLHS.isNegative()) { in srem()
1271 APInt Upper = APIntOps::umin(MaxLHS, MaxAbsRHS - 1) + 1; in srem()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2293 const SCEV *MaxLHS = Max->getOperand(0); in OptimizeMax() local
2298 if (!MaxLHS || in OptimizeMax()
2299 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) in OptimizeMax()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3195 SDValue MaxLHS = Op0.getOperand(0); in foldSubToUSubSat() local
3197 if (MaxLHS == Op1) in foldSubToUSubSat()
3200 return getTruncatedUSUBSAT(DstVT, SubVT, MaxLHS, Op1, DAG, SDLoc(N)); in foldSubToUSubSat()