1 //===- Async.cpp - MLIR Async Operations ----------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "mlir/Dialect/Async/IR/Async.h"
10 
11 #include "mlir/IR/DialectImplementation.h"
12 #include "llvm/ADT/TypeSwitch.h"
13 
14 using namespace mlir;
15 using namespace mlir::async;
16 
17 #include "mlir/Dialect/Async/IR/AsyncOpsDialect.cpp.inc"
18 
19 constexpr StringRef AsyncDialect::kAllowedToBlockAttrName;
20 
21 void AsyncDialect::initialize() {
22   addOperations<
23 #define GET_OP_LIST
24 #include "mlir/Dialect/Async/IR/AsyncOps.cpp.inc"
25       >();
26   addTypes<
27 #define GET_TYPEDEF_LIST
28 #include "mlir/Dialect/Async/IR/AsyncOpsTypes.cpp.inc"
29       >();
30 }
31 
32 //===----------------------------------------------------------------------===//
33 // YieldOp
34 //===----------------------------------------------------------------------===//
35 
36 LogicalResult YieldOp::verify() {
37   // Get the underlying value types from async values returned from the
38   // parent `async.execute` operation.
39   auto executeOp = (*this)->getParentOfType<ExecuteOp>();
40   auto types = llvm::map_range(executeOp.results(), [](const OpResult &result) {
41     return result.getType().cast<ValueType>().getValueType();
42   });
43 
44   if (getOperandTypes() != types)
45     return emitOpError("operand types do not match the types returned from "
46                        "the parent ExecuteOp");
47 
48   return success();
49 }
50 
51 MutableOperandRange
52 YieldOp::getMutableSuccessorOperands(Optional<unsigned> index) {
53   return operandsMutable();
54 }
55 
56 //===----------------------------------------------------------------------===//
57 /// ExecuteOp
58 //===----------------------------------------------------------------------===//
59 
60 constexpr char kOperandSegmentSizesAttr[] = "operand_segment_sizes";
61 
62 OperandRange ExecuteOp::getSuccessorEntryOperands(unsigned index) {
63   assert(index == 0 && "invalid region index");
64   return operands();
65 }
66 
67 bool ExecuteOp::areTypesCompatible(Type lhs, Type rhs) {
68   const auto getValueOrTokenType = [](Type type) {
69     if (auto value = type.dyn_cast<ValueType>())
70       return value.getValueType();
71     return type;
72   };
73   return getValueOrTokenType(lhs) == getValueOrTokenType(rhs);
74 }
75 
76 void ExecuteOp::getSuccessorRegions(Optional<unsigned> index,
77                                     ArrayRef<Attribute>,
78                                     SmallVectorImpl<RegionSuccessor> &regions) {
79   // The `body` region branch back to the parent operation.
80   if (index.hasValue()) {
81     assert(*index == 0 && "invalid region index");
82     regions.push_back(RegionSuccessor(results()));
83     return;
84   }
85 
86   // Otherwise the successor is the body region.
87   regions.push_back(RegionSuccessor(&body(), body().getArguments()));
88 }
89 
90 void ExecuteOp::build(OpBuilder &builder, OperationState &result,
91                       TypeRange resultTypes, ValueRange dependencies,
92                       ValueRange operands, BodyBuilderFn bodyBuilder) {
93 
94   result.addOperands(dependencies);
95   result.addOperands(operands);
96 
97   // Add derived `operand_segment_sizes` attribute based on parsed operands.
98   int32_t numDependencies = dependencies.size();
99   int32_t numOperands = operands.size();
100   auto operandSegmentSizes = DenseIntElementsAttr::get(
101       VectorType::get({2}, builder.getIntegerType(32)),
102       {numDependencies, numOperands});
103   result.addAttribute(kOperandSegmentSizesAttr, operandSegmentSizes);
104 
105   // First result is always a token, and then `resultTypes` wrapped into
106   // `async.value`.
107   result.addTypes({TokenType::get(result.getContext())});
108   for (Type type : resultTypes)
109     result.addTypes(ValueType::get(type));
110 
111   // Add a body region with block arguments as unwrapped async value operands.
112   Region *bodyRegion = result.addRegion();
113   bodyRegion->push_back(new Block);
114   Block &bodyBlock = bodyRegion->front();
115   for (Value operand : operands) {
116     auto valueType = operand.getType().dyn_cast<ValueType>();
117     bodyBlock.addArgument(valueType ? valueType.getValueType()
118                                     : operand.getType(),
119                           operand.getLoc());
120   }
121 
122   // Create the default terminator if the builder is not provided and if the
123   // expected result is empty. Otherwise, leave this to the caller
124   // because we don't know which values to return from the execute op.
125   if (resultTypes.empty() && !bodyBuilder) {
126     OpBuilder::InsertionGuard guard(builder);
127     builder.setInsertionPointToStart(&bodyBlock);
128     builder.create<async::YieldOp>(result.location, ValueRange());
129   } else if (bodyBuilder) {
130     OpBuilder::InsertionGuard guard(builder);
131     builder.setInsertionPointToStart(&bodyBlock);
132     bodyBuilder(builder, result.location, bodyBlock.getArguments());
133   }
134 }
135 
136 void ExecuteOp::print(OpAsmPrinter &p) {
137   // [%tokens,...]
138   if (!dependencies().empty())
139     p << " [" << dependencies() << "]";
140 
141   // (%value as %unwrapped: !async.value<!arg.type>, ...)
142   if (!operands().empty()) {
143     p << " (";
144     Block *entry = body().empty() ? nullptr : &body().front();
145     llvm::interleaveComma(operands(), p, [&, n = 0](Value operand) mutable {
146       Value argument = entry ? entry->getArgument(n++) : Value();
147       p << operand << " as " << argument << ": " << operand.getType();
148     });
149     p << ")";
150   }
151 
152   // -> (!async.value<!return.type>, ...)
153   p.printOptionalArrowTypeList(llvm::drop_begin(getResultTypes()));
154   p.printOptionalAttrDictWithKeyword((*this)->getAttrs(),
155                                      {kOperandSegmentSizesAttr});
156   p << ' ';
157   p.printRegion(body(), /*printEntryBlockArgs=*/false);
158 }
159 
160 ParseResult ExecuteOp::parse(OpAsmParser &parser, OperationState &result) {
161   MLIRContext *ctx = result.getContext();
162 
163   // Sizes of parsed variadic operands, will be updated below after parsing.
164   int32_t numDependencies = 0;
165 
166   auto tokenTy = TokenType::get(ctx);
167 
168   // Parse dependency tokens.
169   if (succeeded(parser.parseOptionalLSquare())) {
170     SmallVector<OpAsmParser::UnresolvedOperand, 4> tokenArgs;
171     if (parser.parseOperandList(tokenArgs) ||
172         parser.resolveOperands(tokenArgs, tokenTy, result.operands) ||
173         parser.parseRSquare())
174       return failure();
175 
176     numDependencies = tokenArgs.size();
177   }
178 
179   // Parse async value operands (%value as %unwrapped : !async.value<!type>).
180   SmallVector<OpAsmParser::UnresolvedOperand, 4> valueArgs;
181   SmallVector<OpAsmParser::UnresolvedOperand, 4> unwrappedArgs;
182   SmallVector<Type, 4> valueTypes;
183   SmallVector<Type, 4> unwrappedTypes;
184 
185   // Parse a single instance of `%value as %unwrapped : !async.value<!type>`.
186   auto parseAsyncValueArg = [&]() -> ParseResult {
187     if (parser.parseOperand(valueArgs.emplace_back()) ||
188         parser.parseKeyword("as") ||
189         parser.parseOperand(unwrappedArgs.emplace_back()) ||
190         parser.parseColonType(valueTypes.emplace_back()))
191       return failure();
192 
193     auto valueTy = valueTypes.back().dyn_cast<ValueType>();
194     unwrappedTypes.emplace_back(valueTy ? valueTy.getValueType() : Type());
195 
196     return success();
197   };
198 
199   auto argsLoc = parser.getCurrentLocation();
200   if (parser.parseCommaSeparatedList(OpAsmParser::Delimiter::OptionalParen,
201                                      parseAsyncValueArg) ||
202       parser.resolveOperands(valueArgs, valueTypes, argsLoc, result.operands))
203     return failure();
204 
205   int32_t numOperands = valueArgs.size();
206 
207   // Add derived `operand_segment_sizes` attribute based on parsed operands.
208   auto operandSegmentSizes = DenseIntElementsAttr::get(
209       VectorType::get({2}, parser.getBuilder().getI32Type()),
210       {numDependencies, numOperands});
211   result.addAttribute(kOperandSegmentSizesAttr, operandSegmentSizes);
212 
213   // Parse the types of results returned from the async execute op.
214   SmallVector<Type, 4> resultTypes;
215   if (parser.parseOptionalArrowTypeList(resultTypes))
216     return failure();
217 
218   // Async execute first result is always a completion token.
219   parser.addTypeToList(tokenTy, result.types);
220   parser.addTypesToList(resultTypes, result.types);
221 
222   // Parse operation attributes.
223   NamedAttrList attrs;
224   if (parser.parseOptionalAttrDictWithKeyword(attrs))
225     return failure();
226   result.addAttributes(attrs);
227 
228   // Parse asynchronous region.
229   Region *body = result.addRegion();
230   if (parser.parseRegion(*body, /*arguments=*/{unwrappedArgs},
231                          /*argTypes=*/{unwrappedTypes},
232                          /*enableNameShadowing=*/false))
233     return failure();
234 
235   return success();
236 }
237 
238 LogicalResult ExecuteOp::verifyRegions() {
239   // Unwrap async.execute value operands types.
240   auto unwrappedTypes = llvm::map_range(operands(), [](Value operand) {
241     return operand.getType().cast<ValueType>().getValueType();
242   });
243 
244   // Verify that unwrapped argument types matches the body region arguments.
245   if (body().getArgumentTypes() != unwrappedTypes)
246     return emitOpError("async body region argument types do not match the "
247                        "execute operation arguments types");
248 
249   return success();
250 }
251 
252 //===----------------------------------------------------------------------===//
253 /// CreateGroupOp
254 //===----------------------------------------------------------------------===//
255 
256 LogicalResult CreateGroupOp::canonicalize(CreateGroupOp op,
257                                           PatternRewriter &rewriter) {
258   // Find all `await_all` users of the group.
259   llvm::SmallVector<AwaitAllOp> awaitAllUsers;
260 
261   auto isAwaitAll = [&](Operation *op) -> bool {
262     if (AwaitAllOp awaitAll = dyn_cast<AwaitAllOp>(op)) {
263       awaitAllUsers.push_back(awaitAll);
264       return true;
265     }
266     return false;
267   };
268 
269   // Check if all users of the group are `await_all` operations.
270   if (!llvm::all_of(op->getUsers(), isAwaitAll))
271     return failure();
272 
273   // If group is only awaited without adding anything to it, we can safely erase
274   // the create operation and all users.
275   for (AwaitAllOp awaitAll : awaitAllUsers)
276     rewriter.eraseOp(awaitAll);
277   rewriter.eraseOp(op);
278 
279   return success();
280 }
281 
282 //===----------------------------------------------------------------------===//
283 /// AwaitOp
284 //===----------------------------------------------------------------------===//
285 
286 void AwaitOp::build(OpBuilder &builder, OperationState &result, Value operand,
287                     ArrayRef<NamedAttribute> attrs) {
288   result.addOperands({operand});
289   result.attributes.append(attrs.begin(), attrs.end());
290 
291   // Add unwrapped async.value type to the returned values types.
292   if (auto valueType = operand.getType().dyn_cast<ValueType>())
293     result.addTypes(valueType.getValueType());
294 }
295 
296 static ParseResult parseAwaitResultType(OpAsmParser &parser, Type &operandType,
297                                         Type &resultType) {
298   if (parser.parseType(operandType))
299     return failure();
300 
301   // Add unwrapped async.value type to the returned values types.
302   if (auto valueType = operandType.dyn_cast<ValueType>())
303     resultType = valueType.getValueType();
304 
305   return success();
306 }
307 
308 static void printAwaitResultType(OpAsmPrinter &p, Operation *op,
309                                  Type operandType, Type resultType) {
310   p << operandType;
311 }
312 
313 LogicalResult AwaitOp::verify() {
314   Type argType = operand().getType();
315 
316   // Awaiting on a token does not have any results.
317   if (argType.isa<TokenType>() && !getResultTypes().empty())
318     return emitOpError("awaiting on a token must have empty result");
319 
320   // Awaiting on a value unwraps the async value type.
321   if (auto value = argType.dyn_cast<ValueType>()) {
322     if (*getResultType() != value.getValueType())
323       return emitOpError() << "result type " << *getResultType()
324                            << " does not match async value type "
325                            << value.getValueType();
326   }
327 
328   return success();
329 }
330 
331 //===----------------------------------------------------------------------===//
332 // TableGen'd op method definitions
333 //===----------------------------------------------------------------------===//
334 
335 #define GET_OP_CLASSES
336 #include "mlir/Dialect/Async/IR/AsyncOps.cpp.inc"
337 
338 //===----------------------------------------------------------------------===//
339 // TableGen'd type method definitions
340 //===----------------------------------------------------------------------===//
341 
342 #define GET_TYPEDEF_CLASSES
343 #include "mlir/Dialect/Async/IR/AsyncOpsTypes.cpp.inc"
344 
345 void ValueType::print(AsmPrinter &printer) const {
346   printer << "<";
347   printer.printType(getValueType());
348   printer << '>';
349 }
350 
351 Type ValueType::parse(mlir::AsmParser &parser) {
352   Type ty;
353   if (parser.parseLess() || parser.parseType(ty) || parser.parseGreater()) {
354     parser.emitError(parser.getNameLoc(), "failed to parse async value type");
355     return Type();
356   }
357   return ValueType::get(ty);
358 }
359