Lines Matching refs:OtherAddRec
2642 const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]); in getAddExpr() local
2643 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
2644 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
2647 AddRecOps.append(OtherAddRec->op_begin()+i, in getAddExpr()
2648 OtherAddRec->op_end()); in getAddExpr()
2652 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
2994 const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
2996 if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop) in getMulExpr()
3001 if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 > in getMulExpr()
3002 MaxAddRecSize || hasHugeExpression({AddRec, OtherAddRec})) in getMulExpr()
3010 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { in getMulExpr()
3015 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); in getMulExpr()
3025 const SCEV *Term2 = OtherAddRec->getOperand(z); in getMulExpr()