Home
last modified time | relevance | path

Searched refs:cloneInto (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/mlir/lib/IR/
H A DRegion.cpp70 void Region::cloneInto(Region *dest, BlockAndValueMapping &mapper) { in cloneInto() function in Region
72 cloneInto(dest, dest->end(), mapper); in cloneInto()
76 void Region::cloneInto(Region *dest, Region::iterator destPos, in cloneInto() function in Region
146 std::get<0>(regions).cloneInto(&std::get<1>(regions), mapper); in cloneInto()
H A DPatternMatch.cpp354 region.cloneInto(&parent, before, mapping); in cloneRegionBefore()
H A DOperation.cpp578 getRegion(i).cloneInto(&newOp->getRegion(i), mapper); in clone()
/llvm-project-15.0.7/mlir/lib/Dialect/Func/IR/
H A DFuncOps.cpp276 void FuncOp::cloneInto(FuncOp dest, BlockAndValueMapping &mapper) { in cloneInto() function in FuncOp
291 getBody().cloneInto(&dest.getBody(), mapper); in cloneInto()
334 cloneInto(newFunc, mapper); in clone()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DRegion.h235 void cloneInto(Region *dest, BlockAndValueMapping &mapper);
237 void cloneInto(Region *dest, Region::iterator destPos,
/llvm-project-15.0.7/mlir/lib/Dialect/GPU/Transforms/
H A DAsyncRegionRewriter.cpp114 std::get<0>(pair).cloneInto(&std::get<1>(pair), mapping); in rewriteAsyncOp()
167 executeOp.getRegion().cloneInto(&newOp.getRegion(), mapper); in addExecuteResults()
H A DKernelOutlining.cpp188 launchOpBody.cloneInto(&outlinedFuncBody, map); in outlineKernelFuncImpl()
/llvm-project-15.0.7/mlir/lib/Dialect/Tensor/IR/
H A DTensorTilingInterfaceImpl.cpp255 padOp.getRegion().cloneInto(&newPadOp.getRegion(), bvm); in bubbleUpPadSlice()
H A DTensorOps.cpp1998 padTensorOp.getRegion().cloneInto(&newOp.getRegion(), mapper); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DInliningUtils.cpp173 src->cloneInto(insertRegion, postInsertBlock->getIterator(), mapper); in inlineRegionImpl()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Func/IR/
H A DFuncOps.td286 void cloneInto(FuncOp dest, BlockAndValueMapping &mapper);
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Linalg/IR/
H A DLinalgInterfaces.td1061 r.cloneInto(state.addRegion(), bvm);
1082 r.cloneInto(state.addRegion(), bvm);
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/
H A DTransforms.cpp746 padOp.getRegion().cloneInto(&generateOp.getRegion(), bvm); in createFillOrGenerateOp()
/llvm-project-15.0.7/mlir/lib/Dialect/SparseTensor/Utils/
H A DMerger.cpp1029 region.cloneInto(&tmpRegion, tmpRegion.begin(), mapper); in insertYieldOp()