Lines Matching refs:AddRecOps
2896 SmallVector<const SCEV *, 4> AddRecOps(AddRec->operands()); in getAddExpr() local
2915 AddRecOps[0] = getAddExpr(LIOps, AddFlags, Depth + 1); in getAddExpr()
2921 const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, Flags); in getAddExpr()
2949 SmallVector<const SCEV *, 4> AddRecOps(AddRec->operands()); in getAddExpr() local
2956 if (i >= AddRecOps.size()) { in getAddExpr()
2957 append_range(AddRecOps, OtherAddRec->operands().drop_front(i)); in getAddExpr()
2961 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
2962 AddRecOps[i] = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1); in getAddExpr()
2968 Ops[Idx] = getAddRecExpr(AddRecOps, AddRecLoop, SCEV::FlagAnyWrap); in getAddExpr()
3340 SmallVector<const SCEV*, 7> AddRecOps; in getMulExpr() local
3364 AddRecOps.push_back(getAddExpr(SumOps, SCEV::FlagAnyWrap, Depth + 1)); in getMulExpr()
3367 const SCEV *NewAddRec = getAddRecExpr(AddRecOps, AddRec->getLoop(), in getMulExpr()