• Home
  • Raw
  • Download

Lines Matching refs:NewOps

1359                              SmallVector<const SCEV *, 8> &NewOps,  in CollectAddOperandsWithScales()  argument
1387 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, in CollectAddOperandsWithScales()
1398 NewOps.push_back(Pair.first->first); in CollectAddOperandsWithScales()
1411 NewOps.push_back(Pair.first->first); in CollectAddOperandsWithScales()
1598 SmallVector<const SCEV *, 8> NewOps; in getAddExpr() local
1600 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, in getAddExpr()
1607 for (SmallVector<const SCEV *, 8>::const_iterator I = NewOps.begin(), in getAddExpr()
1608 E = NewOps.end(); I != E; ++I) in getAddExpr()
1872 SmallVector<const SCEV *, 4> NewOps; in getMulExpr() local
1878 NewOps.push_back(Mul); in getMulExpr()
1881 return getAddExpr(NewOps); in getMulExpr()
1946 SmallVector<const SCEV *, 4> NewOps; in getMulExpr() local
1947 NewOps.reserve(AddRec->getNumOperands()); in getMulExpr()
1950 NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i))); in getMulExpr()
1958 const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags); in getMulExpr()
4724 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(), in computeSCEVAtScope() local
4726 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
4730 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
4733 return getAddExpr(NewOps); in computeSCEVAtScope()
4735 return getMulExpr(NewOps); in computeSCEVAtScope()
4737 return getSMaxExpr(NewOps); in computeSCEVAtScope()
4739 return getUMaxExpr(NewOps); in computeSCEVAtScope()
4768 SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(), in computeSCEVAtScope() local
4770 NewOps.push_back(OpAtScope); in computeSCEVAtScope()
4772 NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L)); in computeSCEVAtScope()
4775 getAddRecExpr(NewOps, AddRec->getLoop(), in computeSCEVAtScope()
5965 SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end()); in getNumIterationsInRange() local
5966 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
5967 const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop(), in getNumIterationsInRange()