Lines Matching refs:OtherAddRec
2954 const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]); in getAddExpr() local
2955 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
2956 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
2959 append_range(AddRecOps, OtherAddRec->operands().drop_front(i)); in getAddExpr()
2963 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
3328 const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
3330 if (!OtherAddRec || OtherAddRec->getLoop() != AddRec->getLoop()) in getMulExpr()
3335 if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 > in getMulExpr()
3336 MaxAddRecSize || hasHugeExpression({AddRec, OtherAddRec})) in getMulExpr()
3344 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { in getMulExpr()
3349 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); in getMulExpr()
3359 const SCEV *Term2 = OtherAddRec->getOperand(z); in getMulExpr()