Lines Matching refs:NewOps
1371 SmallVector<const SCEV *, 8> &NewOps, in CollectAddOperandsWithScales() argument
1399 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, in CollectAddOperandsWithScales()
1410 NewOps.push_back(Pair.first->first); in CollectAddOperandsWithScales()
1423 NewOps.push_back(Pair.first->first); in CollectAddOperandsWithScales()
1610 SmallVector<const SCEV *, 8> NewOps; in getAddExpr() local
1612 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, in getAddExpr()
1619 for (SmallVector<const SCEV *, 8>::const_iterator I = NewOps.begin(), in getAddExpr()
1620 E = NewOps.end(); I != E; ++I) in getAddExpr()
1916 SmallVector<const SCEV *, 4> NewOps; in getMulExpr() local
1922 NewOps.push_back(Mul); in getMulExpr()
1925 return getAddExpr(NewOps); in getMulExpr()
1990 SmallVector<const SCEV *, 4> NewOps; in getMulExpr() local
1991 NewOps.reserve(AddRec->getNumOperands()); in getMulExpr()
1994 NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i))); in getMulExpr()
2002 const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags); in getMulExpr()
5017 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(), in computeSCEVAtScope() local
5019 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
5023 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
5026 return getAddExpr(NewOps); in computeSCEVAtScope()
5028 return getMulExpr(NewOps); in computeSCEVAtScope()
5030 return getSMaxExpr(NewOps); in computeSCEVAtScope()
5032 return getUMaxExpr(NewOps); in computeSCEVAtScope()
5061 SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(), in computeSCEVAtScope() local
5063 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
5065 NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L)); in computeSCEVAtScope()
5068 getAddRecExpr(NewOps, AddRec->getLoop(), in computeSCEVAtScope()
6269 SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end()); in getNumIterationsInRange() local
6270 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
6271 const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop(), in getNumIterationsInRange()