Lines Matching defs:call
87 // List all operations generated from ODS. This call will perform additional
100 static void updateCallee(mlir::func::CallOp call, llvm::StringRef newTarget) {
101 call.setCallee(newTarget);
123 ::mlir::func::CallOp call,
134 updateCallee(call, getNewTarget());
142 // Indicate that the `call` handle is only read by this operation because the
156 mlir::CallOpInterface call) {
159 mlir::OperationState state(call.getLoc(), "my.mm4");
160 state.types.assign(call->result_type_begin(), call->result_type_end());
161 state.operands.assign(call->operand_begin(), call->operand_end());
164 rewriter.replaceOp(call, replacement->getResults());
170 mlir::transform::TransformRewriter &rewriter, mlir::CallOpInterface call,
175 Operation *replacement = replaceCallWithOp(rewriter, call);