Lines Matching refs:LIOps
2578 SmallVector<const SCEV *, 8> LIOps; in getAddExpr() local
2583 LIOps.push_back(Ops[i]); in getAddExpr()
2589 if (!LIOps.empty()) { in getAddExpr()
2592 LIOps.push_back(AddRec); in getAddExpr()
2593 SCEV::NoWrapFlags Flags = ComputeFlags(LIOps); in getAddExpr()
2594 LIOps.pop_back(); in getAddExpr()
2597 LIOps.push_back(AddRec->getStart()); in getAddExpr()
2604 AddRecOps[0] = getAddExpr(LIOps, Flags, Depth + 1); in getAddExpr()
2935 SmallVector<const SCEV *, 8> LIOps; in getMulExpr() local
2940 LIOps.push_back(Ops[i]); in getMulExpr()
2946 if (!LIOps.empty()) { in getMulExpr()
2950 const SCEV *Scale = getMulExpr(LIOps, SCEV::FlagAnyWrap, Depth + 1); in getMulExpr()