Home
last modified time | relevance | path

Searched refs:cloneWithoutRegions (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuilders.h514 Operation *cloneWithoutRegions(Operation &op, BlockAndValueMapping &mapper) { in cloneWithoutRegions() function
515 return insert(op.cloneWithoutRegions(mapper)); in cloneWithoutRegions()
517 Operation *cloneWithoutRegions(Operation &op) { in cloneWithoutRegions() function
518 return insert(op.cloneWithoutRegions()); in cloneWithoutRegions()
521 OpT cloneWithoutRegions(OpT op) { in cloneWithoutRegions() function
522 return cast<OpT>(cloneWithoutRegions(*op.getOperation())); in cloneWithoutRegions()
H A DOperation.h136 Operation *cloneWithoutRegions(BlockAndValueMapping &mapper);
141 Operation *cloneWithoutRegions();
H A DOpDefinition.h1641 ConcreteType cloneWithoutRegions() {
1642 return cast<ConcreteType>(getOperation()->cloneWithoutRegions());
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/Transforms/
H A DStructuralTypeConversions.cpp51 ForOp newOp = cast<ForOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
103 IfOp newOp = cast<IfOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/
H A DBufferizableOpInterfaceImpl.cpp74 auto newOp = cast<LinalgOp>(op.cloneWithoutRegions( in bufferizeLinalgOp()
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/TransformOps/
H A DSCFTransformOps.cpp78 Operation *clonedOp = b.cloneWithoutRegions(*op); in wrapInExecuteRegion()
/llvm-project-15.0.7/mlir/lib/IR/
H A DOperation.cpp540 Operation *Operation::cloneWithoutRegions(BlockAndValueMapping &mapper) { in cloneWithoutRegions() function in Operation
544 Operation *Operation::cloneWithoutRegions() { in cloneWithoutRegions() function in Operation
546 return cloneWithoutRegions(mapper); in cloneWithoutRegions()
/llvm-project-15.0.7/mlir/lib/Dialect/Func/IR/
H A DFuncOps.cpp301 FuncOp newFunc = cast<FuncOp>(getOperation()->cloneWithoutRegions()); in clone()
/llvm-project-15.0.7/mlir/lib/Conversion/AsyncToLLVM/
H A DAsyncToLLVM.cpp1072 cast<ExecuteOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Linalg/IR/
H A DLinalgInterfaces.td1095 /*methodName=*/"cloneWithoutRegions",
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/IR/
H A DSCF.cpp1955 auto newIfOp = rewriter.cloneWithoutRegions(ifOp); in matchAndRewrite()