Lines Matching refs:OtherAddRec
2818 const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]); in getAddExpr() local
2819 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
2820 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
2823 AddRecOps.append(OtherAddRec->op_begin()+i, in getAddExpr()
2824 OtherAddRec->op_end()); in getAddExpr()
2828 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
3171 const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
3173 if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop) in getMulExpr()
3178 if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 > in getMulExpr()
3179 MaxAddRecSize || hasHugeExpression({AddRec, OtherAddRec})) in getMulExpr()
3187 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { in getMulExpr()
3192 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); in getMulExpr()
3202 const SCEV *Term2 = OtherAddRec->getOperand(z); in getMulExpr()