Searched refs:cloneWithoutRegions (Results 1 – 7 of 7) sorted by relevance
468 Operation *cloneWithoutRegions(Operation &op, BlockAndValueMapping &mapper) { in cloneWithoutRegions() function469 return insert(op.cloneWithoutRegions(mapper)); in cloneWithoutRegions()471 Operation *cloneWithoutRegions(Operation &op) { in cloneWithoutRegions() function472 return insert(op.cloneWithoutRegions()); in cloneWithoutRegions()474 template <typename OpT> OpT cloneWithoutRegions(OpT op) { in cloneWithoutRegions() function475 return cast<OpT>(cloneWithoutRegions(*op.getOperation())); in cloneWithoutRegions()
88 Operation *cloneWithoutRegions(BlockAndValueMapping &mapper);93 Operation *cloneWithoutRegions();
1524 ConcreteType cloneWithoutRegions() { in cloneWithoutRegions() function1525 return cast<ConcreteType>(getOperation()->cloneWithoutRegions()); in cloneWithoutRegions()
52 ForOp newOp = cast<ForOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()104 IfOp newOp = cast<IfOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
607 Operation *Operation::cloneWithoutRegions(BlockAndValueMapping &mapper) { in cloneWithoutRegions() function in Operation632 Operation *Operation::cloneWithoutRegions() { in cloneWithoutRegions() function in Operation634 return cloneWithoutRegions(mapper); in cloneWithoutRegions()643 auto *newOp = cloneWithoutRegions(mapper); in clone()
186 FuncOp newFunc = cast<FuncOp>(getOperation()->cloneWithoutRegions()); in clone()
3116 func = orig_func.cloneWithoutRegions(); in CreateSavedModelIR()