Lines Matching refs:AddRecOps
2898 SmallVector<const SCEV *, 4> AddRecOps(AddRec->operands()); in getAddExpr() local
2917 AddRecOps[0] = getAddExpr(LIOps, AddFlags, Depth + 1); in getAddExpr()
2923 const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, Flags); in getAddExpr()
2951 SmallVector<const SCEV *, 4> AddRecOps(AddRec->operands()); in getAddExpr() local
2958 if (i >= AddRecOps.size()) { in getAddExpr()
2959 append_range(AddRecOps, OtherAddRec->operands().drop_front(i)); in getAddExpr()
2963 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
2964 AddRecOps[i] = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1); in getAddExpr()
2970 Ops[Idx] = getAddRecExpr(AddRecOps, AddRecLoop, SCEV::FlagAnyWrap); in getAddExpr()
3342 SmallVector<const SCEV*, 7> AddRecOps; in getMulExpr() local
3366 AddRecOps.push_back(getAddExpr(SumOps, SCEV::FlagAnyWrap, Depth + 1)); in getMulExpr()
3369 const SCEV *NewAddRec = getAddRecExpr(AddRecOps, AddRec->getLoop(), in getMulExpr()