Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DControlFlowSinkUtils.cpp36 Sinker(function_ref<bool(Operation *, Region *)> shouldMoveIntoRegion, in Sinker() argument
39 : shouldMoveIntoRegion(shouldMoveIntoRegion), in Sinker()
65 function_ref<bool(Operation *, Region *)> shouldMoveIntoRegion; member in __anona737f4360111::Sinker
96 if (allUsersDominatedBy(op, region) && shouldMoveIntoRegion(op, region)) { in tryToSinkPredecessors()
129 function_ref<bool(Operation *, Region *)> shouldMoveIntoRegion, in controlFlowSink() argument
131 return Sinker(shouldMoveIntoRegion, moveIntoRegion, domInfo) in controlFlowSink()
/llvm-project-15.0.7/mlir/test/lib/Transforms/
H A DTestControlFlowSink.cpp39 auto shouldMoveIntoRegion = [](Operation *op, Region *region) { in runOnOperation() local
55 controlFlowSink(regions, domInfo, shouldMoveIntoRegion, moveIntoRegion); in runOnOperation()
/llvm-project-15.0.7/mlir/include/mlir/Transforms/
H A DControlFlowSinkUtils.h66 function_ref<bool(Operation *, Region *)> shouldMoveIntoRegion,