Lines Matching defs:More
5560 // More formally, we want to prove that:
10838 // TODO: More simplifications are possible here.
11945 ScalarEvolution::computeConstantDifference(const SCEV *More, const SCEV *Less) {
11950 if (More == Less)
11951 return APInt(getTypeSizeInBits(More->getType()), 0);
11953 if (isa<SCEVAddRecExpr>(Less) && isa<SCEVAddRecExpr>(More)) {
11955 const auto *MAR = cast<SCEVAddRecExpr>(More);
11969 More = MAR->getStart();
11974 if (isa<SCEVConstant>(Less) && isa<SCEVConstant>(More)) {
11975 const auto &M = cast<SCEVConstant>(More)->getAPInt();
11987 if (RLess == More)
11991 if (splitBinaryAdd(More, LMore, RMore, Flags))