Lines Matching refs:loopDepth

447 LogicalResult MemRefRegion::compute(Operation *op, unsigned loopDepth,  in compute()  argument
460 << "depth: " << loopDepth << "\n";); in compute()
466 assert(loopDepth <= ivs.size() && "invalid 'loopDepth'"); in compute()
468 ivs.resize(loopDepth); in compute()
472 cst.reset(rank, loopDepth, /*numLocals=*/0, regionSymbols); in compute()
560 assert(loopDepth <= enclosingIVs.size() && "invalid loop depth"); in compute()
561 enclosingIVs.resize(loopDepth); in compute()
792 unsigned loopDepth = 0; in getInnermostCommonLoopDepth() local
797 return loopDepth; in getInnermostCommonLoopDepth()
801 ++loopDepth; in getInnermostCommonLoopDepth()
803 return loopDepth; in getInnermostCommonLoopDepth()
812 unsigned loopDepth, unsigned numCommonLoops, in computeSliceUnion() argument
827 if ((!isBackwardSlice && loopDepth > getNestingDepth(i)) || in computeSliceUnion()
828 (isBackwardSlice && loopDepth > getNestingDepth(j))) { in computeSliceUnion()
851 mlir::getComputationSliceState(i, j, &dependenceConstraints, loopDepth, in computeSliceUnion()
920 if (loopDepth > innermostCommonLoopDepth) { in computeSliceUnion()
952 ? surroundingLoops[loopDepth - 1].getBody()->begin() in computeSliceUnion()
953 : std::prev(surroundingLoops[loopDepth - 1].getBody()->end()); in computeSliceUnion()
1047 FlatAffineValueConstraints *dependenceConstraints, unsigned loopDepth, in getComputationSliceState() argument
1059 assert((!isBackwardSlice && loopDepth <= numSrcLoopIVs) || in getComputationSliceState()
1060 (isBackwardSlice && loopDepth <= numDstLoopIVs)); in getComputationSliceState()
1063 unsigned pos = isBackwardSlice ? numSrcLoopIVs + loopDepth : loopDepth; in getComputationSliceState()
1065 isBackwardSlice ? numDstLoopIVs - loopDepth : numSrcLoopIVs - loopDepth; in getComputationSliceState()
1069 unsigned offset = isBackwardSlice ? 0 : loopDepth; in getComputationSliceState()
1099 isBackwardSlice ? dstLoopIVs[loopDepth - 1].getBody()->begin() in getComputationSliceState()
1100 : std::prev(srcLoopIVs[loopDepth - 1].getBody()->end()); in getComputationSliceState()
1114 return (isBackwardSlice ? loopDepth >= srcLoopIVs.size() in getComputationSliceState()
1115 : loopDepth >= dstLoopIVs.size()); in getComputationSliceState()