28 #include "llvm/ADT/DenseMap.h"
29 #include "llvm/ADT/Sequence.h"
30 #include "llvm/ADT/SetVector.h"
31 #include "llvm/ADT/StringExtras.h"
32 #include "llvm/ADT/StringMap.h"
33 #include "llvm/ADT/TypeSwitch.h"
34 #include "llvm/Support/raw_ostream.h"
39 #include "mlir/Dialect/SPIRV/IR/SPIRVOpsDialect.cpp.inc"
48 return llvm::any_of(region, [](
Block &block) {
50 return isa<spirv::ReturnOp, spirv::ReturnValueOp>(terminator);
61 bool wouldBeCloned)
const final {
71 auto *op = dest->getParentOp();
72 return isa<spirv::FuncOp, spirv::SelectionOp, spirv::LoopOp>(op);
81 if ((isa<spirv::SelectionOp, spirv::LoopOp>(op)) &&
89 if (isa<spirv::KillOp>(op))
98 if (
auto returnOp = dyn_cast<spirv::ReturnOp>(op)) {
101 }
else if (
auto retValOp = dyn_cast<spirv::ReturnValueOp>(op)) {
103 retValOp->getOperands());
112 auto retValOp = dyn_cast<spirv::ReturnValueOp>(op);
117 assert(valuesToRepl.size() == 1 &&
118 "spirv.ReturnValue expected to only handle one result");
119 valuesToRepl.front().replaceAllUsesWith(retValOp.getValue());
128 void SPIRVDialect::initialize() {
129 registerAttributes();
135 #include "mlir/Dialect/SPIRV/IR/SPIRVOps.cpp.inc"
138 addInterfaces<SPIRVInlinerInterface>();
141 allowUnknownOperations();
142 declarePromisedInterface<gpu::TargetAttrInterface, TargetEnvAttr>();
145 std::string SPIRVDialect::getAttributeName(Decoration decoration) {
146 return llvm::convertToSnakeFromCamelCase(stringifyDecoration(decoration));
154 template <
typename ValTy>
155 static std::optional<ValTy>
parseAndVerify(SPIRVDialect
const &dialect,
177 if (
auto t = llvm::dyn_cast<FloatType>(type)) {
179 parser.
emitError(typeLoc,
"cannot use 'bf16' to compose SPIR-V types");
182 }
else if (
auto t = llvm::dyn_cast<IntegerType>(type)) {
185 "only 1/8/16/32/64-bit integer type allowed but found ")
189 }
else if (
auto t = llvm::dyn_cast<VectorType>(type)) {
190 if (t.getRank() != 1) {
191 parser.
emitError(typeLoc,
"only 1-D vector allowed but found ") << t;
194 if (t.getNumElements() > 4) {
196 typeLoc,
"vector length has to be less than or equal to 4 but found ")
197 << t.getNumElements();
202 << type <<
" to compose SPIR-V types";
216 if (
auto t = llvm::dyn_cast<VectorType>(type)) {
217 if (t.getRank() != 1) {
218 parser.
emitError(typeLoc,
"only 1-D vector allowed but found ") << t;
221 if (t.getNumElements() > 4 || t.getNumElements() < 2) {
223 "matrix columns size has to be less than or equal "
224 "to 4 and greater than or equal 2, but found ")
225 << t.getNumElements();
229 if (!llvm::isa<FloatType>(t.getElementType())) {
230 parser.
emitError(typeLoc,
"matrix columns' elements must be of "
232 << t.getElementType();
236 parser.
emitError(typeLoc,
"matrix must be composed using vector "
252 if (!llvm::isa<ImageType>(type)) {
254 "sampled image must be composed using image type, got ")
281 if (!(stride = *optStride)) {
282 parser.
emitError(strideLoc,
"ArrayStride must be greater than zero");
304 if (countDims.size() != 1) {
306 "expected single integer for array element count");
312 int64_t count = countDims[0];
314 parser.
emitError(countLoc,
"expected array length greater than 0");
344 if (dims.size() != 2) {
345 parser.
emitError(countLoc,
"expected row and column count");
358 CooperativeMatrixUseKHR use;
387 StringRef storageClassSpec;
392 auto storageClass = symbolizeStorageClass(storageClassSpec);
394 parser.
emitError(storageClassLoc,
"unknown storage class: ")
433 if (countDims.size() != 1) {
434 parser.
emitError(countLoc,
"expected single unsigned "
435 "integer for number of columns");
439 int64_t columnCount = countDims[0];
441 if (columnCount < 2 || columnCount > 4) {
442 parser.
emitError(countLoc,
"matrix is expected to have 2, 3, or 4 "
459 template <
typename ValTy>
468 auto val = spirv::symbolizeEnum<ValTy>(enumSpec);
470 parser.
emitError(enumLoc,
"unknown attribute: '") << enumSpec <<
"'";
484 template <
typename IntTy>
496 return parseAndVerifyInteger<unsigned>(dialect, parser);
504 template <
typename ParseType,
typename... Args>
505 struct ParseCommaSeparatedList {
506 std::optional<std::tuple<ParseType, Args...>>
508 auto parseVal = parseAndVerify<ParseType>(dialect, parser);
512 auto numArgs = std::tuple_size<std::tuple<Args...>>::value;
513 if (numArgs != 0 && failed(parser.
parseComma()))
515 auto remainingValues = ParseCommaSeparatedList<Args...>{}(dialect, parser);
516 if (!remainingValues)
518 return std::tuple_cat(std::tuple<ParseType>(parseVal.value()),
519 remainingValues.value());
525 template <
typename ParseType>
526 struct ParseCommaSeparatedList<ParseType> {
527 std::optional<std::tuple<ParseType>>
529 if (
auto value = parseAndVerify<ParseType>(dialect, parser))
530 return std::tuple<ParseType>(*value);
557 ParseCommaSeparatedList<
Type, Dim, ImageDepthInfo, ImageArrayedInfo,
558 ImageSamplingInfo, ImageSamplerUseInfo,
559 ImageFormat>{}(dialect, parser);
595 if (failed(*offsetParseResult))
598 if (offsetInfo.size() != memberTypes.size() - 1) {
600 "offset specification must be given for "
603 offsetInfo.push_back(offset);
615 auto parseDecorations = [&]() {
616 auto memberDecoration = parseAndVerify<spirv::Decoration>(dialect, parser);
617 if (!memberDecoration)
622 auto memberDecorationValue =
623 parseAndVerifyInteger<uint32_t>(dialect, parser);
625 if (!memberDecorationValue)
628 memberDecorationInfo.emplace_back(
629 static_cast<uint32_t
>(memberTypes.size() - 1), 1,
630 memberDecoration.value(), memberDecorationValue.value());
632 memberDecorationInfo.emplace_back(
633 static_cast<uint32_t
>(memberTypes.size() - 1), 0,
634 memberDecoration.value(), 0);
658 StringRef identifier;
659 FailureOr<DialectAsmParser::CyclicParseReset> cyclicParse;
668 if (succeeded(cyclicParse)) {
671 "recursive struct reference not nested in struct definition");
682 if (failed(cyclicParse)) {
684 "identifier already used for an enclosing struct");
699 if (!identifier.empty())
710 memberTypes.push_back(memberType);
714 memberDecorationInfo))
718 if (!offsetInfo.empty() && memberTypes.size() != offsetInfo.size()) {
720 "offset specification must be given for all members");
727 if (!identifier.empty()) {
728 if (failed(idStructTy.
trySetBody(memberTypes, offsetInfo,
729 memberDecorationInfo)))
749 if (keyword ==
"array")
751 if (keyword ==
"coopmatrix")
753 if (keyword ==
"image")
755 if (keyword ==
"ptr")
757 if (keyword ==
"rtarray")
759 if (keyword ==
"sampled_image")
761 if (keyword ==
"struct")
763 if (keyword ==
"matrix")
776 os <<
", stride=" << stride;
783 os <<
", stride=" << stride;
794 <<
", " << stringifyImageDepthInfo(type.
getDepthInfo()) <<
", "
806 FailureOr<AsmPrinter::CyclicPrintReset> cyclicPrint;
814 if (failed(cyclicPrint)) {
824 auto printMember = [&](
unsigned i) {
828 if (type.
hasOffset() || !decorations.empty()) {
832 if (!decorations.empty())
836 os << stringifyDecoration(decoration.decoration);
837 if (decoration.hasValue) {
838 os <<
"=" << decoration.decorationValue;
841 llvm::interleaveComma(decorations, os, eachFn);
845 llvm::interleaveComma(llvm::seq<unsigned>(0, type.
getNumElements()), os,
865 [&](
auto type) {
print(type, os); })
866 .Default([](
Type) { llvm_unreachable(
"unhandled SPIR-V type"); });
876 if (
auto poison = dyn_cast<ub::PoisonAttr>(value))
877 return builder.
create<ub::PoisonOp>(loc, type, poison);
879 if (!spirv::ConstantOp::isBuildableWith(type))
882 return builder.
create<spirv::ConstantOp>(loc, type, value);
889 LogicalResult SPIRVDialect::verifyOperationAttribute(
Operation *op,
891 StringRef symbol = attribute.
getName().strref();
895 if (!llvm::isa<spirv::EntryPointABIAttr>(attr)) {
897 << symbol <<
"' attribute must be an entry point ABI attribute";
900 if (!llvm::isa<spirv::TargetEnvAttr>(attr))
901 return op->
emitError(
"'") << symbol <<
"' must be a spirv::TargetEnvAttr";
903 return op->
emitError(
"found unsupported '")
904 << symbol <<
"' attribute on operation";
914 StringRef symbol = attribute.
getName().strref();
918 auto varABIAttr = llvm::dyn_cast<spirv::InterfaceVarABIAttr>(attr);
921 << symbol <<
"' must be a spirv::InterfaceVarABIAttr";
925 <<
"' attribute cannot specify storage class "
926 "when attaching to a non-scalar value";
929 if (symbol == spirv::DecorationAttr::name) {
930 if (!isa<spirv::DecorationAttr>(attr))
932 << symbol <<
"' must be a spirv::DecorationAttr";
936 return emitError(loc,
"found unsupported '")
937 << symbol <<
"' attribute on region argument";
940 LogicalResult SPIRVDialect::verifyRegionArgAttribute(
Operation *op,
941 unsigned regionIndex,
944 auto funcOp = dyn_cast<FunctionOpInterface>(op);
947 Type argType = funcOp.getArgumentTypes()[argIndex];
952 LogicalResult SPIRVDialect::verifyRegionResultAttribute(
955 return op->
emitError(
"cannot attach SPIR-V attributes to region result");
static Operation * materializeConstant(Dialect *dialect, OpBuilder &builder, Attribute value, Type type, Location loc)
A utility function used to materialize a constant for a given attribute and type.
static bool isLegalToInline(InlinerInterface &interface, Region *src, Region *insertRegion, bool shouldCloneInlinedRegion, IRMapping &valueMapping)
Utility to check that all of the operations within 'src' can be inlined.
static Value max(ImplicitLocOpBuilder &builder, Value value, Value bound)
std::optional< unsigned > parseAndVerify< unsigned >(SPIRVDialect const &dialect, DialectAsmParser &parser)
static LogicalResult parseOptionalArrayStride(const SPIRVDialect &dialect, DialectAsmParser &parser, unsigned &stride)
Parses an optional , stride = N assembly segment.
static LogicalResult verifyRegionAttribute(Location loc, Type valueType, NamedAttribute attribute)
Verifies the given SPIR-V attribute attached to a value of the given valueType is valid.
static void print(ArrayType type, DialectAsmPrinter &os)
static Type parseSampledImageType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseAndVerifyType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static ParseResult parseStructMemberDecorations(SPIRVDialect const &dialect, DialectAsmParser &parser, ArrayRef< Type > memberTypes, SmallVectorImpl< StructType::OffsetInfo > &offsetInfo, SmallVectorImpl< StructType::MemberDecorationInfo > &memberDecorationInfo)
static Type parseAndVerifySampledImageType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseCooperativeMatrixType(SPIRVDialect const &dialect, DialectAsmParser &parser)
std::optional< Type > parseAndVerify< Type >(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseAndVerifyMatrixType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseArrayType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static bool containsReturn(Region ®ion)
Returns true if the given region contains spirv.Return or spirv.ReturnValue ops.
static Type parseStructType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseRuntimeArrayType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static std::optional< IntTy > parseAndVerifyInteger(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseMatrixType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parseImageType(SPIRVDialect const &dialect, DialectAsmParser &parser)
static std::optional< ValTy > parseAndVerify(SPIRVDialect const &dialect, DialectAsmParser &parser)
static Type parsePointerType(SPIRVDialect const &dialect, DialectAsmParser &parser)
virtual OptionalParseResult parseOptionalInteger(APInt &result)=0
Parse an optional integer value from the stream.
FailureOr< CyclicParseReset > tryStartCyclicParse(AttrOrTypeT attrOrType)
Attempts to start a cyclic parsing region for attrOrType.
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 ParseResult parseOptionalEqual()=0
Parse a = token if present.
virtual ParseResult parseOptionalKeyword(StringRef keyword)=0
Parse the given keyword if present.
virtual ParseResult parseRParen()=0
Parse a ) token.
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 parseInteger(IntT &result)
Parse an integer value from the stream.
virtual ParseResult parseOptionalRParen()=0
Parse a ) token if present.
virtual ParseResult parseLess()=0
Parse a '<' token.
virtual ParseResult parseDimensionList(SmallVectorImpl< int64_t > &dimensions, bool allowDynamic=true, bool withTrailingX=true)=0
Parse a dimension list of a tensor or memref type.
virtual ParseResult parseOptionalGreater()=0
Parse a '>' token if present.
virtual ParseResult parseEqual()=0
Parse a = token.
virtual SMLoc getCurrentLocation()=0
Get the location of the next token and store it into the argument.
virtual ParseResult parseOptionalComma()=0
Parse a , token if present.
virtual SMLoc getNameLoc() const =0
Return the location of the original name token.
virtual ParseResult parseOptionalRSquare()=0
Parse a ] token if present.
virtual ParseResult parseGreater()=0
Parse a '>' token.
virtual ParseResult parseLParen()=0
Parse a ( token.
virtual ParseResult parseType(Type &result)=0
Parse a type.
virtual ParseResult parseComma()=0
Parse a , token.
ParseResult parseKeyword(StringRef keyword)
Parse a given keyword.
virtual ParseResult parseOptionalLSquare()=0
Parse a [ token if present.
FailureOr< CyclicPrintReset > tryStartCyclicPrint(AttrOrTypeT attrOrType)
Attempts to start a cyclic printing region for attrOrType.
Attributes are known-constant values of operations.
Block represents an ordered list of Operations.
Operation * getTerminator()
Get the terminator operation of this block.
The DialectAsmParser has methods for interacting with the asm parser when parsing attributes and type...
This is a pure-virtual base class that exposes the asmprinter hooks necessary to implement a custom p...
This is the interface that must be implemented by the dialects of operations to be inlined.
DialectInlinerInterface(Dialect *dialect)
This is a utility class for mapping one set of IR entities to another.
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
NamedAttribute represents a combination of a name and an Attribute value.
StringAttr getName() const
Return the name of the attribute.
Attribute getValue() const
Return the value of the attribute.
This class helps build Operations.
Operation * create(const OperationState &state)
Creates an operation given the fields represented as an OperationState.
Operation is the basic unit of execution within MLIR.
Location getLoc()
The source location the operation was defined or derived from.
InFlightDiagnostic emitError(const Twine &message={})
Emit an error about fatal conditions with this operation, reporting up to any diagnostic handlers tha...
void erase()
Remove this operation from its parent block and delete it.
This class implements Optional functionality for ParseResult.
bool has_value() const
Returns true if we contain a valid ParseResult value.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
Dialect & getDialect() const
Get the dialect this type is registered to.
bool isIntOrIndexOrFloat() const
Return true if this is an integer (of any signedness), index, or float type.
This class provides an abstraction over the different types of ranges over Values.
Type getElementType() const
unsigned getArrayStride() const
Returns the array stride in bytes.
unsigned getNumElements() const
static ArrayType get(Type elementType, unsigned elementCount)
Scope getScope() const
Returns the scope of the matrix.
uint32_t getRows() const
Returns the number of rows of the matrix.
uint32_t getColumns() const
Returns the number of columns of the matrix.
static CooperativeMatrixType get(Type elementType, uint32_t rows, uint32_t columns, Scope scope, CooperativeMatrixUseKHR use)
Type getElementType() const
CooperativeMatrixUseKHR getUse() const
Returns the use parameter of the cooperative matrix.
static ImageType get(Type elementType, Dim dim, ImageDepthInfo depth=ImageDepthInfo::DepthUnknown, ImageArrayedInfo arrayed=ImageArrayedInfo::NonArrayed, ImageSamplingInfo samplingInfo=ImageSamplingInfo::SingleSampled, ImageSamplerUseInfo samplerUse=ImageSamplerUseInfo::SamplerUnknown, ImageFormat format=ImageFormat::Unknown)
ImageDepthInfo getDepthInfo() const
ImageArrayedInfo getArrayedInfo() const
ImageFormat getImageFormat() const
ImageSamplerUseInfo getSamplerUseInfo() const
Type getElementType() const
ImageSamplingInfo getSamplingInfo() const
static MatrixType get(Type columnType, uint32_t columnCount)
Type getColumnType() const
unsigned getNumColumns() const
Returns the number of columns.
Type getPointeeType() const
StorageClass getStorageClass() const
static PointerType get(Type pointeeType, StorageClass storageClass)
Type getElementType() const
unsigned getArrayStride() const
Returns the array stride in bytes.
static RuntimeArrayType get(Type elementType)
Type getImageType() const
static SampledImageType get(Type imageType)
static bool isValid(FloatType)
Returns true if the given integer type is valid for the SPIR-V dialect.
void getMemberDecorations(SmallVectorImpl< StructType::MemberDecorationInfo > &memberDecorations) const
static StructType getIdentified(MLIRContext *context, StringRef identifier)
Construct an identified StructType.
bool isIdentified() const
Returns true if the StructType is identified.
StringRef getIdentifier() const
For literal structs, return an empty string.
static StructType getEmpty(MLIRContext *context, StringRef identifier="")
Construct a (possibly identified) StructType with no members.
unsigned getNumElements() const
Type getElementType(unsigned) const
LogicalResult trySetBody(ArrayRef< Type > memberTypes, ArrayRef< OffsetInfo > offsetInfo={}, ArrayRef< MemberDecorationInfo > memberDecorations={})
Sets the contents of an incomplete identified StructType.
static StructType get(ArrayRef< Type > memberTypes, ArrayRef< OffsetInfo > offsetInfo={}, ArrayRef< MemberDecorationInfo > memberDecorations={})
Construct a literal StructType with at least one member.
uint64_t getMemberOffset(unsigned) const
void printType(Type type, AsmPrinter &printer)
Prints an LLVM Dialect type.
StringRef getInterfaceVarABIAttrName()
Returns the attribute name for specifying argument ABI information.
ParseResult parseEnumKeywordAttr(EnumClass &value, ParserType &parser, StringRef attrName=spirv::attributeName< EnumClass >())
Parses the next keyword in parser as an enumerant of the given EnumClass.
StringRef getTargetEnvAttrName()
Returns the attribute name for specifying SPIR-V target environment.
StringRef getEntryPointABIAttrName()
Returns the attribute name for specifying entry point information.
Include the generated interface declarations.
InFlightDiagnostic emitError(Location loc)
Utility method to emit an error message using this location.
Type parseType(llvm::StringRef typeStr, MLIRContext *context, size_t *numRead=nullptr, bool isKnownNullTerminated=false)
This parses a single MLIR type to an MLIR context if it was valid.