Lines Matching refs:origLoop
598 static void setIntraTileBoundsParametric(OpBuilder &b, AffineForOp origLoop, in setIntraTileBoundsParametric() argument
610 assert(origLoop.hasConstantLowerBound() && in setIntraTileBoundsParametric()
616 b.getAffineConstantExpr(origLoop.getConstantLowerBound()); in setIntraTileBoundsParametric()
620 AffineBound lb = origLoop.getLowerBound(); in setIntraTileBoundsParametric()
621 AffineBound ub = origLoop.getUpperBound(); in setIntraTileBoundsParametric()
666 AffineExpr origLoopStep = b.getAffineConstantExpr(origLoop.getStep()); in setIntraTileBoundsParametric()
688 newIntraTileLoop.setStep(origLoop.getStep()); in setIntraTileBoundsParametric()
693 static void setInterTileBoundsParametric(OpBuilder &b, AffineForOp origLoop, in setInterTileBoundsParametric() argument
695 OperandRange newLbOperands = origLoop.getLowerBoundOperands(); in setInterTileBoundsParametric()
699 newLoop.setLowerBound(newLbOperands, origLoop.getLowerBoundMap()); in setInterTileBoundsParametric()
710 assert(origLoop.hasConstantLowerBound() && in setInterTileBoundsParametric()
716 b.getAffineConstantExpr(origLoop.getConstantLowerBound()); in setInterTileBoundsParametric()
720 AffineBound ub = origLoop.getUpperBound(); in setInterTileBoundsParametric()
743 if (origLoop.hasConstantUpperBound()) { in setInterTileBoundsParametric()
744 origUpperBound = origLoop.getConstantUpperBound(); in setInterTileBoundsParametric()
785 newLoop.setStep(origLoop.getStep()); in setInterTileBoundsParametric()