13#include "llvm/ADT/TypeSwitch.h"
18#include "mlir/Dialect/Async/IR/AsyncOpsDialect.cpp.inc"
20void AsyncDialect::initialize() {
23#include "mlir/Dialect/Async/IR/AsyncOps.cpp.inc"
26#define GET_TYPEDEF_LIST
27#include "mlir/Dialect/Async/IR/AsyncOpsTypes.cpp.inc"
39 "invalid region index");
40 return getBodyOperands();
44 const auto getValueOrTokenType = [](
Type type) {
45 if (
auto value = llvm::dyn_cast<ValueType>(type))
46 return value.getValueType();
49 return getValueOrTokenType(
lhs) == getValueOrTokenType(
rhs);
69 ValueRange operands, BodyBuilderFn bodyBuilder) {
71 result.addOperands(dependencies);
72 result.addOperands(operands);
75 int32_t numDependencies = dependencies.size();
76 int32_t numOperands = operands.size();
77 auto operandSegmentSizes =
84 for (
Type type : resultTypes)
85 result.addTypes(ValueType::get(type));
90 for (
Value operand : operands) {
91 auto valueType = llvm::dyn_cast<ValueType>(operand.getType());
92 bodyBlock->
addArgument(valueType ? valueType.getValueType()
100 if (resultTypes.empty() && !bodyBuilder) {
102 }
else if (bodyBuilder) {
109 if (!getDependencies().empty())
110 p <<
" [" << getDependencies() <<
"]";
113 if (!getBodyOperands().empty()) {
116 llvm::interleaveComma(
117 getBodyOperands(), p, [&, n = 0](
Value operand)
mutable {
119 p << operand <<
" as " << argument <<
": " << operand.
getType();
127 {kOperandSegmentSizesAttr});
136 int32_t numDependencies = 0;
138 auto tokenTy = TokenType::get(ctx);
148 numDependencies = tokenArgs.size();
157 auto parseAsyncValueArg = [&]() -> ParseResult {
164 auto valueTy = llvm::dyn_cast<ValueType>(valueTypes.back());
165 unwrappedArgs.back().type = valueTy ? valueTy.getValueType() :
Type();
171 parseAsyncValueArg) ||
175 int32_t numOperands = valueArgs.size();
178 auto operandSegmentSizes =
193 result.addAttributes(attrs);
200LogicalResult ExecuteOp::verifyRegions() {
202 auto unwrappedTypes = llvm::map_range(getBodyOperands(), [](
Value operand) {
203 return llvm::cast<ValueType>(operand.
getType()).getValueType();
207 if (getBodyRegion().getArgumentTypes() != unwrappedTypes)
208 return emitOpError(
"async body region argument types do not match the "
209 "execute operation arguments types");
218LogicalResult CreateGroupOp::canonicalize(CreateGroupOp op,
223 auto isAwaitAll = [&](
Operation *op) ->
bool {
224 if (AwaitAllOp awaitAll = dyn_cast<AwaitAllOp>(op)) {
225 awaitAllUsers.push_back(awaitAll);
232 if (!llvm::all_of(op->getUsers(), isAwaitAll))
237 for (AwaitAllOp awaitAll : awaitAllUsers)
250 result.addOperands({operand});
251 result.attributes.append(attrs.begin(), attrs.end());
254 if (
auto valueType = llvm::dyn_cast<ValueType>(operand.
getType()))
255 result.addTypes(valueType.getValueType());
264 if (
auto valueType = llvm::dyn_cast<ValueType>(operandType))
265 resultType = valueType.getValueType();
271 Type operandType,
Type resultType) {
275LogicalResult AwaitOp::verify() {
276 Type argType = getOperand().getType();
279 if (llvm::isa<TokenType>(argType) && !getResultTypes().empty())
280 return emitOpError(
"awaiting on a token must have empty result");
283 if (
auto value = llvm::dyn_cast<ValueType>(argType)) {
284 if (*getResultType() != value.getValueType())
285 return emitOpError() <<
"result type " << *getResultType()
286 <<
" does not match async value type "
287 << value.getValueType();
302 state.
addAttribute(getFunctionTypeAttrName(state.
name), TypeAttr::get(type));
307 if (argAttrs.empty())
309 assert(type.getNumInputs() == argAttrs.size());
311 builder, state, argAttrs, {},
312 getArgAttrsAttrName(state.
name), getResAttrsAttrName(state.
name));
323 getFunctionTypeAttrName(
result.name), buildFuncType,
324 getArgAttrsAttrName(
result.name), getResAttrsAttrName(
result.name));
329 p, *
this,
false, getFunctionTypeAttrName(),
330 getArgAttrsAttrName(), getResAttrsAttrName());
335LogicalResult FuncOp::verify() {
336 auto resultTypes = getResultTypes();
337 if (resultTypes.empty())
339 <<
"result is expected to be at least of size 1, but got "
340 << resultTypes.size();
342 for (
unsigned i = 0, e = resultTypes.size(); i != e; ++i) {
343 auto type = resultTypes[i];
344 if (!llvm::isa<TokenType>(type) && !llvm::isa<ValueType>(type))
345 return emitOpError() <<
"result type must be async value type or async "
346 "token type, but got "
349 if (llvm::isa<TokenType>(type) && i != 0) {
351 <<
" results' (optional) async token type is expected "
352 "to appear as the 1st return value, but got "
368 return emitOpError(
"requires a 'callee' symbol reference attribute");
372 <<
"' does not reference a valid async function";
375 auto fnType = fn.getFunctionType();
376 if (fnType.getNumInputs() != getNumOperands())
377 return emitOpError(
"incorrect number of operands for callee");
379 for (
unsigned i = 0, e = fnType.getNumInputs(); i != e; ++i)
380 if (getOperand(i).
getType() != fnType.getInput(i))
381 return emitOpError(
"operand type mismatch: expected operand type ")
382 << fnType.getInput(i) <<
", but provided "
383 << getOperand(i).getType() <<
" for operand number " << i;
385 if (fnType.getNumResults() != getNumResults())
386 return emitOpError(
"incorrect number of results for callee");
388 for (
unsigned i = 0, e = fnType.getNumResults(); i != e; ++i)
389 if (getResult(i).
getType() != fnType.getResult(i)) {
391 diag.attachNote() <<
" op result types: " << getResultTypes();
392 diag.attachNote() <<
"function result types: " << fnType.getResults();
399FunctionType CallOp::getCalleeType() {
400 return FunctionType::get(
getContext(), getOperandTypes(), getResultTypes());
407LogicalResult ReturnOp::verify() {
408 auto funcOp = (*this)->getParentOfType<FuncOp>();
410 ? funcOp.getResultTypes().drop_front()
411 : funcOp.getResultTypes();
414 auto types = llvm::map_range(resultTypes, [](
const Type &
result) {
415 return llvm::cast<ValueType>(
result).getValueType();
418 if (getOperandTypes() != types)
419 return emitOpError(
"operand types do not match the types returned from "
420 "the parent FuncOp");
429#define GET_OP_CLASSES
430#include "mlir/Dialect/Async/IR/AsyncOps.cpp.inc"
436#define GET_TYPEDEF_CLASSES
437#include "mlir/Dialect/Async/IR/AsyncOpsTypes.cpp.inc"
439void ValueType::print(
AsmPrinter &printer)
const {
451 return ValueType::get(ty);
p<< " : "<< getMemRefType()<< ", "<< getType();}static LogicalResult verifyVectorMemoryOp(Operation *op, MemRefType memrefType, VectorType vectorType) { if(memrefType.getElementType() !=vectorType.getElementType()) return op-> emitOpError("requires memref and vector types of the same elemental type")
Given a list of lists of parsed operands, populates uniqueOperands with unique operands.
static ParseResult parseAwaitResultType(OpAsmParser &parser, Type &operandType, Type &resultType)
constexpr char kOperandSegmentSizesAttr[]
ExecuteOp.
static void printAwaitResultType(OpAsmPrinter &p, Operation *op, Type operandType, Type resultType)
static std::string diag(const llvm::Value &value)
static Type getValueType(Attribute attr)
This base class exposes generic asm parser hooks, usable across the various derived parsers.
@ OptionalParen
Parens supporting zero or more operands, or nothing.
virtual Builder & getBuilder() const =0
Return a builder which provides useful access to MLIRContext, global objects like types and attribute...
virtual ParseResult parseCommaSeparatedList(Delimiter delimiter, function_ref< ParseResult()> parseElementFn, StringRef contextMessage=StringRef())=0
Parse a list of comma-separated items with an optional delimiter.
virtual InFlightDiagnostic emitError(SMLoc loc, const Twine &message={})=0
Emit a diagnostic at the specified location and return failure.
virtual ParseResult parseRSquare()=0
Parse a ] token.
ParseResult addTypeToList(Type type, SmallVectorImpl< Type > &result)
Add the specified type to the end of the specified type list and return success.
virtual ParseResult parseLess()=0
Parse a '<' token.
virtual ParseResult parseOptionalAttrDictWithKeyword(NamedAttrList &result)=0
Parse a named dictionary into 'result' if the attributes keyword is present.
virtual ParseResult parseColonType(Type &result)=0
Parse a colon followed by a type.
virtual SMLoc getCurrentLocation()=0
Get the location of the next token and store it into the argument.
ParseResult addTypesToList(ArrayRef< Type > types, SmallVectorImpl< Type > &result)
Add the specified types to the end of the specified type list and return success.
virtual SMLoc getNameLoc() const =0
Return the location of the original name token.
virtual ParseResult parseGreater()=0
Parse a '>' token.
virtual ParseResult parseType(Type &result)=0
Parse a type.
virtual ParseResult parseOptionalArrowTypeList(SmallVectorImpl< Type > &result)=0
Parse an optional arrow followed by a type list.
ParseResult parseKeyword(StringRef keyword)
Parse a given keyword.
virtual ParseResult parseOptionalLSquare()=0
Parse a [ token if present.
This base class exposes generic asm printer hooks, usable across the various derived printers.
virtual void printType(Type type)
void printOptionalArrowTypeList(TypeRange &&types)
Print an optional arrow followed by a type list.
Block represents an ordered list of Operations.
BlockArgument getArgument(unsigned i)
BlockArgument addArgument(Type type, Location loc)
Add one value to the argument list.
BlockArgListType getArguments()
This class is a general helper class for creating context-global objects like types,...
DenseI32ArrayAttr getDenseI32ArrayAttr(ArrayRef< int32_t > values)
FunctionType getFunctionType(TypeRange inputs, TypeRange results)
StringAttr getStringAttr(const Twine &bytes)
A symbol reference with a reference path containing a single element.
MLIRContext is the top-level object for a collection of MLIR operations.
NamedAttrList is array of NamedAttributes that tracks whether it is sorted and does some basic work t...
void append(StringRef name, Attribute attr)
Add an attribute with the specified name.
The OpAsmParser has methods for interacting with the asm parser: parsing things from it,...
virtual ParseResult parseRegion(Region ®ion, ArrayRef< Argument > arguments={}, bool enableNameShadowing=false)=0
Parses a region.
virtual ParseResult parseArgument(Argument &result, bool allowType=false, bool allowAttrs=false)=0
Parse a single argument with the following syntax:
ParseResult resolveOperands(Operands &&operands, Type type, SmallVectorImpl< Value > &result)
Resolve a list of operands to SSA values, emitting an error on failure, or appending the results to t...
virtual ParseResult parseOperand(UnresolvedOperand &result, bool allowResultNumber=true)=0
Parse a single SSA value operand name along with a result number if allowResultNumber is true.
virtual ParseResult parseOperandList(SmallVectorImpl< UnresolvedOperand > &result, Delimiter delimiter=Delimiter::None, bool allowResultNumber=true, int requiredOperandCount=-1)=0
Parse zero or more SSA comma-separated operand references with a specified surrounding delimiter,...
This is a pure-virtual base class that exposes the asmprinter hooks necessary to implement a custom p...
virtual void printOptionalAttrDictWithKeyword(ArrayRef< NamedAttribute > attrs, ArrayRef< StringRef > elidedAttrs={})=0
If the specified operation has attributes, print out an attribute dictionary prefixed with 'attribute...
virtual void printRegion(Region &blocks, bool printEntryBlockArgs=true, bool printBlockTerminators=true, bool printEmptyBlock=false)=0
Prints a region.
RAII guard to reset the insertion point of the builder when destroyed.
This class helps build Operations.
Block * createBlock(Region *parent, Region::iterator insertPt={}, TypeRange argTypes={}, ArrayRef< Location > locs={})
Add new block with 'argTypes' arguments and set the insertion point to the end of it.
This class implements the operand iterators for the Operation class.
Operation is the basic unit of execution within MLIR.
Region * getParentRegion()
Returns the region to which the instruction belongs.
A special type of RewriterBase that coordinates the application of a rewrite pattern on the current I...
This class represents a point being branched from in the methods of the RegionBranchOpInterface.
bool isParent() const
Returns true if branching from the parent op.
Operation * getTerminatorPredecessorOrNull() const
Returns the terminator if branching from a region.
This class represents a successor of a region.
Region * getSuccessor() const
Return the given region successor.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
virtual void eraseOp(Operation *op)
This method erases an operation that is known to have no uses.
This class represents a collection of SymbolTables.
virtual Operation * lookupNearestSymbolFrom(Operation *from, StringAttr symbol)
Returns the operation registered with the given symbol name within the closest parent operation of,...
static StringRef getSymbolAttrName()
Return the name of the attribute used for symbol names.
This class provides an abstraction over the various different ranges of value types.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
This class provides an abstraction over the different types of ranges over Values.
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Type getType() const
Return the type of this value.
A named class for passing around the variadic flag.
void addArgAndResultAttrs(Builder &builder, OperationState &result, ArrayRef< DictionaryAttr > argAttrs, ArrayRef< DictionaryAttr > resultAttrs, StringAttr argAttrsName, StringAttr resAttrsName)
Adds argument and result attributes, provided as argAttrs and resultAttrs arguments,...
void printFunctionOp(OpAsmPrinter &p, FunctionOpInterface op, bool isVariadic, StringRef typeAttrName, StringAttr argAttrsName, StringAttr resAttrsName)
Printer implementation for function-like operations.
ParseResult parseFunctionOp(OpAsmParser &parser, OperationState &result, bool allowVariadic, StringAttr typeAttrName, FuncTypeBuilder funcTypeBuilder, StringAttr argAttrsName, StringAttr resAttrsName)
Parser implementation for function-like operations.
Include the generated interface declarations.
Type getType(OpFoldResult ofr)
Returns the int type of the integer in ofr.
This represents an operation in an abstracted form, suitable for use with the builder APIs.
void addAttribute(StringRef name, Attribute attr)
Add an attribute with the specified name.
Region * addRegion()
Create a region that should be attached to the operation.