Home
last modified time | relevance | path

Searched refs:nextRegion (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DVisitors.h80 bool isBeforeAllRegions() const { return nextRegion == 0; } in isBeforeAllRegions()
83 bool isBeforeRegion(int region) const { return nextRegion == region; } in isBeforeRegion()
86 bool isAfterRegion(int region) const { return nextRegion == region + 1; } in isAfterRegion()
88 bool isAfterAllRegions() const { return nextRegion == numRegions; } in isAfterAllRegions()
90 void advance() { nextRegion++; } in advance()
92 int getNextRegion() const { return nextRegion; } in getNextRegion()
96 int nextRegion; variable
/llvm-project-15.0.7/mlir/lib/Interfaces/
H A DControlFlowInterfaces.cpp248 unsigned nextRegion = worklist.pop_back_val(); in isRegionReachable() local
249 if (nextRegion == r->getRegionNumber()) in isRegionReachable()
251 if (visited[nextRegion]) in isRegionReachable()
253 visited[nextRegion] = true; in isRegionReachable()
254 enqueueAllSuccessors(nextRegion); in isRegionReachable()
/llvm-project-15.0.7/mlir/lib/IR/
H A DVisitors.cpp15 : numRegions(op->getNumRegions()), nextRegion(0) {} in WalkStage()