Lines Matching refs:origLoop
549 static void setIntraTileBoundsParametric(OpBuilder &b, AffineForOp origLoop, in setIntraTileBoundsParametric() argument
561 assert(origLoop.hasConstantLowerBound() && in setIntraTileBoundsParametric()
567 b.getAffineConstantExpr(origLoop.getConstantLowerBound()); in setIntraTileBoundsParametric()
571 AffineBound lb = origLoop.getLowerBound(); in setIntraTileBoundsParametric()
572 AffineBound ub = origLoop.getUpperBound(); in setIntraTileBoundsParametric()
617 AffineExpr origLoopStep = b.getAffineConstantExpr(origLoop.getStep()); in setIntraTileBoundsParametric()
639 newIntraTileLoop.setStep(origLoop.getStep()); in setIntraTileBoundsParametric()
644 static void setInterTileBoundsParametric(OpBuilder &b, AffineForOp origLoop, in setInterTileBoundsParametric() argument
646 OperandRange newLbOperands = origLoop.getLowerBoundOperands(); in setInterTileBoundsParametric()
650 newLoop.setLowerBound(newLbOperands, origLoop.getLowerBoundMap()); in setInterTileBoundsParametric()
661 assert(origLoop.hasConstantLowerBound() && in setInterTileBoundsParametric()
667 b.getAffineConstantExpr(origLoop.getConstantLowerBound()); in setInterTileBoundsParametric()
671 AffineBound ub = origLoop.getUpperBound(); in setInterTileBoundsParametric()
694 if (origLoop.hasConstantUpperBound()) { in setInterTileBoundsParametric()
695 origUpperBound = origLoop.getConstantUpperBound(); in setInterTileBoundsParametric()
736 newLoop.setStep(origLoop.getStep()); in setInterTileBoundsParametric()