2019-05-23 15:11:19 -07:00
|
|
|
//===- TestDialect.cpp - MLIR Dialect for Testing -------------------------===//
|
|
|
|
//
|
2020-01-26 03:58:30 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
2019-12-23 09:35:36 -08:00
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-23 15:11:19 -07:00
|
|
|
//
|
2019-12-23 09:35:36 -08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-05-23 15:11:19 -07:00
|
|
|
|
|
|
|
#include "TestDialect.h"
|
2020-02-28 08:37:09 -08:00
|
|
|
#include "mlir/Dialect/StandardOps/IR/Ops.h"
|
2019-11-01 14:26:10 -07:00
|
|
|
#include "mlir/IR/Function.h"
|
|
|
|
#include "mlir/IR/Module.h"
|
2019-05-23 15:11:19 -07:00
|
|
|
#include "mlir/IR/PatternMatch.h"
|
2019-07-20 03:03:45 -07:00
|
|
|
#include "mlir/IR/TypeUtilities.h"
|
2019-09-01 20:06:42 -07:00
|
|
|
#include "mlir/Transforms/FoldUtils.h"
|
2019-09-05 12:23:45 -07:00
|
|
|
#include "mlir/Transforms/InliningUtils.h"
|
2019-11-25 11:29:21 -08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2019-05-23 15:11:19 -07:00
|
|
|
|
|
|
|
using namespace mlir;
|
|
|
|
|
2019-09-01 20:06:42 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TestDialect Interfaces
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2019-11-20 10:19:01 -08:00
|
|
|
|
|
|
|
// Test support for interacting with the AsmPrinter.
|
|
|
|
struct TestOpAsmInterface : public OpAsmDialectInterface {
|
|
|
|
using OpAsmDialectInterface::OpAsmDialectInterface;
|
|
|
|
|
|
|
|
void getAsmResultNames(Operation *op,
|
|
|
|
OpAsmSetValueNameFn setNameFn) const final {
|
|
|
|
if (auto asmOp = dyn_cast<AsmDialectInterfaceOp>(op))
|
|
|
|
setNameFn(asmOp, "result");
|
|
|
|
}
|
2019-12-19 22:15:31 -08:00
|
|
|
|
|
|
|
void getAsmBlockArgumentNames(Block *block,
|
|
|
|
OpAsmSetValueNameFn setNameFn) const final {
|
|
|
|
auto op = block->getParentOp();
|
|
|
|
auto arrayAttr = op->getAttrOfType<ArrayAttr>("arg_names");
|
|
|
|
if (!arrayAttr)
|
|
|
|
return;
|
|
|
|
auto args = block->getArguments();
|
|
|
|
auto e = std::min(arrayAttr.size(), args.size());
|
|
|
|
for (unsigned i = 0; i < e; ++i) {
|
2020-02-14 22:54:18 -08:00
|
|
|
if (auto strAttr = arrayAttr[i].dyn_cast<StringAttr>())
|
2019-12-19 22:15:31 -08:00
|
|
|
setNameFn(args[i], strAttr.getValue());
|
|
|
|
}
|
|
|
|
}
|
2019-11-20 10:19:01 -08:00
|
|
|
};
|
|
|
|
|
2019-09-01 20:06:42 -07:00
|
|
|
struct TestOpFolderDialectInterface : public OpFolderDialectInterface {
|
|
|
|
using OpFolderDialectInterface::OpFolderDialectInterface;
|
|
|
|
|
|
|
|
/// Registered hook to check if the given region, which is attached to an
|
|
|
|
/// operation that is *not* isolated from above, should be used when
|
|
|
|
/// materializing constants.
|
2019-09-07 18:56:39 -07:00
|
|
|
bool shouldMaterializeInto(Region *region) const final {
|
2019-09-01 20:06:42 -07:00
|
|
|
// If this is a one region operation, then insert into it.
|
|
|
|
return isa<OneRegionOp>(region->getParentOp());
|
|
|
|
}
|
|
|
|
};
|
2019-09-05 12:23:45 -07:00
|
|
|
|
|
|
|
/// This class defines the interface for handling inlining with standard
|
|
|
|
/// operations.
|
|
|
|
struct TestInlinerInterface : public DialectInlinerInterface {
|
|
|
|
using DialectInlinerInterface::DialectInlinerInterface;
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Analysis Hooks
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2019-10-03 23:04:56 -07:00
|
|
|
bool isLegalToInline(Region *, Region *, BlockAndValueMapping &) const final {
|
|
|
|
// Inlining into test dialect regions is legal.
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-05 12:23:45 -07:00
|
|
|
bool isLegalToInline(Operation *, Region *,
|
|
|
|
BlockAndValueMapping &) const final {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-10-03 23:10:25 -07:00
|
|
|
bool shouldAnalyzeRecursively(Operation *op) const final {
|
2019-09-05 12:23:45 -07:00
|
|
|
// Analyze recursively if this is not a functional region operation, it
|
|
|
|
// froms a separate functional scope.
|
|
|
|
return !isa<FunctionalRegionOp>(op);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Transformation Hooks
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Handle the given inlined terminator by replacing it with a new operation
|
|
|
|
/// as necessary.
|
|
|
|
void handleTerminator(Operation *op,
|
2019-12-23 14:45:01 -08:00
|
|
|
ArrayRef<Value> valuesToRepl) const final {
|
2019-09-05 12:23:45 -07:00
|
|
|
// Only handle "test.return" here.
|
|
|
|
auto returnOp = dyn_cast<TestReturnOp>(op);
|
|
|
|
if (!returnOp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Replace the values directly with the return operands.
|
|
|
|
assert(returnOp.getNumOperands() == valuesToRepl.size());
|
|
|
|
for (const auto &it : llvm::enumerate(returnOp.getOperands()))
|
2020-01-11 08:54:04 -08:00
|
|
|
valuesToRepl[it.index()].replaceAllUsesWith(it.value());
|
2019-09-05 12:23:45 -07:00
|
|
|
}
|
2019-10-03 23:10:25 -07:00
|
|
|
|
|
|
|
/// Attempt to materialize a conversion for a type mismatch between a call
|
|
|
|
/// from this dialect, and a callable region. This method should generate an
|
|
|
|
/// operation that takes 'input' as the only operand, and produces a single
|
|
|
|
/// result of 'resultType'. If a conversion can not be generated, nullptr
|
|
|
|
/// should be returned.
|
2019-12-23 14:45:01 -08:00
|
|
|
Operation *materializeCallConversion(OpBuilder &builder, Value input,
|
2019-10-03 23:10:25 -07:00
|
|
|
Type resultType,
|
|
|
|
Location conversionLoc) const final {
|
|
|
|
// Only allow conversion for i16/i32 types.
|
2020-01-10 14:48:24 -05:00
|
|
|
if (!(resultType.isSignlessInteger(16) ||
|
|
|
|
resultType.isSignlessInteger(32)) ||
|
|
|
|
!(input.getType().isSignlessInteger(16) ||
|
|
|
|
input.getType().isSignlessInteger(32)))
|
2019-10-03 23:10:25 -07:00
|
|
|
return nullptr;
|
|
|
|
return builder.create<TestCastOp>(conversionLoc, resultType, input);
|
|
|
|
}
|
2019-09-05 12:23:45 -07:00
|
|
|
};
|
2019-09-01 20:06:42 -07:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2019-05-23 15:11:19 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TestDialect
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
TestDialect::TestDialect(MLIRContext *context)
|
|
|
|
: Dialect(getDialectName(), context) {
|
|
|
|
addOperations<
|
|
|
|
#define GET_OP_LIST
|
|
|
|
#include "TestOps.cpp.inc"
|
|
|
|
>();
|
2019-11-20 10:19:01 -08:00
|
|
|
addInterfaces<TestOpAsmInterface, TestOpFolderDialectInterface,
|
|
|
|
TestInlinerInterface>();
|
2019-06-19 13:58:31 -07:00
|
|
|
allowUnknownOperations();
|
2019-05-23 15:11:19 -07:00
|
|
|
}
|
|
|
|
|
2019-11-12 11:57:47 -08:00
|
|
|
LogicalResult TestDialect::verifyOperationAttribute(Operation *op,
|
|
|
|
NamedAttribute namedAttr) {
|
|
|
|
if (namedAttr.first == "test.invalid_attr")
|
|
|
|
return op->emitError() << "invalid to use 'test.invalid_attr'";
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-10-18 16:02:56 -07:00
|
|
|
LogicalResult TestDialect::verifyRegionArgAttribute(Operation *op,
|
|
|
|
unsigned regionIndex,
|
|
|
|
unsigned argIndex,
|
|
|
|
NamedAttribute namedAttr) {
|
|
|
|
if (namedAttr.first == "test.invalid_attr")
|
|
|
|
return op->emitError() << "invalid to use 'test.invalid_attr'";
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
|
|
|
LogicalResult
|
|
|
|
TestDialect::verifyRegionResultAttribute(Operation *op, unsigned regionIndex,
|
|
|
|
unsigned resultIndex,
|
|
|
|
NamedAttribute namedAttr) {
|
|
|
|
if (namedAttr.first == "test.invalid_attr")
|
|
|
|
return op->emitError() << "invalid to use 'test.invalid_attr'";
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-08-19 15:26:43 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test IsolatedRegionOp - parse passthrough region arguments.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-09-20 11:36:49 -07:00
|
|
|
static ParseResult parseIsolatedRegionOp(OpAsmParser &parser,
|
2019-09-20 19:47:05 -07:00
|
|
|
OperationState &result) {
|
2019-08-19 15:26:43 -07:00
|
|
|
OpAsmParser::OperandType argInfo;
|
2019-09-20 11:36:49 -07:00
|
|
|
Type argType = parser.getBuilder().getIndexType();
|
2019-08-19 15:26:43 -07:00
|
|
|
|
|
|
|
// Parse the input operand.
|
2019-09-20 11:36:49 -07:00
|
|
|
if (parser.parseOperand(argInfo) ||
|
2019-09-20 19:47:05 -07:00
|
|
|
parser.resolveOperand(argInfo, argType, result.operands))
|
2019-08-19 15:26:43 -07:00
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Parse the body region, and reuse the operand info as the argument info.
|
2019-09-20 19:47:05 -07:00
|
|
|
Region *body = result.addRegion();
|
2019-09-20 11:36:49 -07:00
|
|
|
return parser.parseRegion(*body, argInfo, argType,
|
|
|
|
/*enableNameShadowing=*/true);
|
2019-08-19 15:26:43 -07:00
|
|
|
}
|
|
|
|
|
2019-09-20 20:43:02 -07:00
|
|
|
static void print(OpAsmPrinter &p, IsolatedRegionOp op) {
|
|
|
|
p << "test.isolated_region ";
|
|
|
|
p.printOperand(op.getOperand());
|
|
|
|
p.shadowRegionArgs(op.region(), op.getOperand());
|
|
|
|
p.printRegion(op.region(), /*printEntryBlockArgs=*/false);
|
2019-08-23 10:35:24 -07:00
|
|
|
}
|
|
|
|
|
2019-09-08 23:39:34 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-09-17 17:54:54 -07:00
|
|
|
// Test parser.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-09-20 11:36:49 -07:00
|
|
|
static ParseResult parseWrappedKeywordOp(OpAsmParser &parser,
|
2019-09-20 19:47:05 -07:00
|
|
|
OperationState &result) {
|
2019-09-17 17:54:54 -07:00
|
|
|
StringRef keyword;
|
2019-09-20 11:36:49 -07:00
|
|
|
if (parser.parseKeyword(&keyword))
|
2019-09-17 17:54:54 -07:00
|
|
|
return failure();
|
2019-09-20 19:47:05 -07:00
|
|
|
result.addAttribute("keyword", parser.getBuilder().getStringAttr(keyword));
|
2019-09-17 17:54:54 -07:00
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-09-20 20:43:02 -07:00
|
|
|
static void print(OpAsmPrinter &p, WrappedKeywordOp op) {
|
|
|
|
p << WrappedKeywordOp::getOperationName() << " " << op.keyword();
|
2019-09-17 17:54:54 -07:00
|
|
|
}
|
|
|
|
|
2019-09-08 23:39:34 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-09-17 17:54:54 -07:00
|
|
|
// Test WrapRegionOp - wrapping op exercising `parseGenericOperation()`.
|
2019-09-08 23:39:34 -07:00
|
|
|
|
2019-09-20 11:36:49 -07:00
|
|
|
static ParseResult parseWrappingRegionOp(OpAsmParser &parser,
|
2019-09-20 19:47:05 -07:00
|
|
|
OperationState &result) {
|
2019-09-20 11:36:49 -07:00
|
|
|
if (parser.parseKeyword("wraps"))
|
2019-09-08 23:39:34 -07:00
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Parse the wrapped op in a region
|
2019-09-20 19:47:05 -07:00
|
|
|
Region &body = *result.addRegion();
|
2019-09-08 23:39:34 -07:00
|
|
|
body.push_back(new Block);
|
|
|
|
Block &block = body.back();
|
2019-09-20 11:36:49 -07:00
|
|
|
Operation *wrapped_op = parser.parseGenericOperation(&block, block.begin());
|
2019-09-08 23:39:34 -07:00
|
|
|
if (!wrapped_op)
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Create a return terminator in the inner region, pass as operand to the
|
|
|
|
// terminator the returned values from the wrapped operation.
|
2019-12-23 14:45:01 -08:00
|
|
|
SmallVector<Value, 8> return_operands(wrapped_op->getResults());
|
2019-09-20 11:36:49 -07:00
|
|
|
OpBuilder builder(parser.getBuilder().getContext());
|
2019-09-08 23:39:34 -07:00
|
|
|
builder.setInsertionPointToEnd(&block);
|
2019-10-28 15:11:00 -07:00
|
|
|
builder.create<TestReturnOp>(wrapped_op->getLoc(), return_operands);
|
2019-09-08 23:39:34 -07:00
|
|
|
|
|
|
|
// Get the results type for the wrapping op from the terminator operands.
|
|
|
|
Operation &return_op = body.back().back();
|
2019-09-20 19:47:05 -07:00
|
|
|
result.types.append(return_op.operand_type_begin(),
|
|
|
|
return_op.operand_type_end());
|
2019-10-28 15:11:00 -07:00
|
|
|
|
|
|
|
// Use the location of the wrapped op for the "test.wrapping_region" op.
|
|
|
|
result.location = wrapped_op->getLoc();
|
|
|
|
|
2019-09-08 23:39:34 -07:00
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-09-20 20:43:02 -07:00
|
|
|
static void print(OpAsmPrinter &p, WrappingRegionOp op) {
|
|
|
|
p << op.getOperationName() << " wraps ";
|
|
|
|
p.printGenericOp(&op.region().front().front());
|
2019-09-08 23:39:34 -07:00
|
|
|
}
|
|
|
|
|
2019-07-22 17:41:38 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test PolyForOp - parse list of region arguments.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2019-11-20 10:19:01 -08:00
|
|
|
|
2019-09-20 19:47:05 -07:00
|
|
|
static ParseResult parsePolyForOp(OpAsmParser &parser, OperationState &result) {
|
2019-07-22 17:41:38 -07:00
|
|
|
SmallVector<OpAsmParser::OperandType, 4> ivsInfo;
|
|
|
|
// Parse list of region arguments without a delimiter.
|
2019-09-20 11:36:49 -07:00
|
|
|
if (parser.parseRegionArgumentList(ivsInfo))
|
2019-07-22 17:41:38 -07:00
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Parse the body region.
|
2019-09-20 19:47:05 -07:00
|
|
|
Region *body = result.addRegion();
|
2019-09-20 11:36:49 -07:00
|
|
|
auto &builder = parser.getBuilder();
|
2019-07-22 17:41:38 -07:00
|
|
|
SmallVector<Type, 4> argTypes(ivsInfo.size(), builder.getIndexType());
|
2019-09-20 11:36:49 -07:00
|
|
|
return parser.parseRegion(*body, ivsInfo, argTypes);
|
2019-07-22 17:41:38 -07:00
|
|
|
}
|
|
|
|
|
2019-08-06 11:08:22 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test removing op with inner ops.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2019-08-26 09:44:09 -07:00
|
|
|
struct TestRemoveOpWithInnerOps
|
|
|
|
: public OpRewritePattern<TestOpWithRegionPattern> {
|
|
|
|
using OpRewritePattern<TestOpWithRegionPattern>::OpRewritePattern;
|
2019-08-06 11:08:22 -07:00
|
|
|
|
2019-08-26 09:44:09 -07:00
|
|
|
PatternMatchResult matchAndRewrite(TestOpWithRegionPattern op,
|
2019-08-06 11:08:22 -07:00
|
|
|
PatternRewriter &rewriter) const override {
|
2019-10-16 09:50:28 -07:00
|
|
|
rewriter.eraseOp(op);
|
2019-08-06 11:08:22 -07:00
|
|
|
return matchSuccess();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2019-08-26 09:44:09 -07:00
|
|
|
void TestOpWithRegionPattern::getCanonicalizationPatterns(
|
2019-08-06 11:08:22 -07:00
|
|
|
OwningRewritePatternList &results, MLIRContext *context) {
|
|
|
|
results.insert<TestRemoveOpWithInnerOps>(context);
|
|
|
|
}
|
|
|
|
|
2019-08-26 09:44:09 -07:00
|
|
|
OpFoldResult TestOpWithRegionFold::fold(ArrayRef<Attribute> operands) {
|
|
|
|
return operand();
|
|
|
|
}
|
|
|
|
|
2019-10-09 20:42:32 -07:00
|
|
|
LogicalResult TestOpWithVariadicResultsAndFolder::fold(
|
|
|
|
ArrayRef<Attribute> operands, SmallVectorImpl<OpFoldResult> &results) {
|
2019-12-23 14:45:01 -08:00
|
|
|
for (Value input : this->operands()) {
|
2019-10-09 20:42:32 -07:00
|
|
|
results.push_back(input);
|
|
|
|
}
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-12-06 14:42:16 -08:00
|
|
|
LogicalResult mlir::OpWithInferTypeInterfaceOp::inferReturnTypes(
|
2020-01-08 18:48:38 -08:00
|
|
|
MLIRContext *, Optional<Location> location, ValueRange operands,
|
2019-12-09 08:57:27 -08:00
|
|
|
ArrayRef<NamedAttribute> attributes, RegionRange regions,
|
2020-02-28 10:59:34 -08:00
|
|
|
SmallVectorImpl<Type> &inferredReturnTypes) {
|
2020-01-11 08:54:04 -08:00
|
|
|
if (operands[0].getType() != operands[1].getType()) {
|
2019-12-06 14:42:16 -08:00
|
|
|
return emitOptionalError(location, "operand type mismatch ",
|
2020-01-11 08:54:04 -08:00
|
|
|
operands[0].getType(), " vs ",
|
|
|
|
operands[1].getType());
|
2019-11-07 07:51:12 -08:00
|
|
|
}
|
2020-02-28 10:59:34 -08:00
|
|
|
inferredReturnTypes.assign({operands[0].getType()});
|
2019-12-06 14:42:16 -08:00
|
|
|
return success();
|
2019-09-29 17:28:29 -07:00
|
|
|
}
|
|
|
|
|
2020-01-08 18:48:38 -08:00
|
|
|
LogicalResult OpWithShapedTypeInferTypeInterfaceOp::inferReturnTypeComponents(
|
|
|
|
MLIRContext *context, Optional<Location> location, ValueRange operands,
|
|
|
|
ArrayRef<NamedAttribute> attributes, RegionRange regions,
|
2020-02-28 10:59:34 -08:00
|
|
|
SmallVectorImpl<ShapedTypeComponents> &inferredReturnShapes) {
|
2020-02-28 08:37:09 -08:00
|
|
|
// Create return type consisting of the last element of the first operand.
|
|
|
|
auto operandType = *operands.getTypes().begin();
|
|
|
|
auto sval = operandType.dyn_cast<ShapedType>();
|
|
|
|
if (!sval) {
|
|
|
|
return emitOptionalError(location, "only shaped type operands allowed");
|
2020-01-08 18:48:38 -08:00
|
|
|
}
|
2020-02-28 08:37:09 -08:00
|
|
|
int64_t dim =
|
|
|
|
sval.hasRank() ? sval.getShape().front() : ShapedType::kDynamicSize;
|
2020-01-08 18:48:38 -08:00
|
|
|
auto type = IntegerType::get(17, context);
|
2020-02-28 10:59:34 -08:00
|
|
|
inferredReturnShapes.push_back(ShapedTypeComponents({dim}, type));
|
2020-02-28 08:37:09 -08:00
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
|
|
|
LogicalResult OpWithShapedTypeInferTypeInterfaceOp::reifyReturnTypeShapes(
|
|
|
|
OpBuilder &builder, llvm::SmallVectorImpl<Value> &shapes) {
|
|
|
|
shapes = SmallVector<Value, 1>{
|
|
|
|
builder.createOrFold<mlir::DimOp>(getLoc(), getOperand(0), 0)};
|
2020-01-08 18:48:38 -08:00
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-05-23 15:11:19 -07:00
|
|
|
// Static initialization for Test dialect registration.
|
|
|
|
static mlir::DialectRegistration<mlir::TestDialect> testDialect;
|
|
|
|
|
2019-11-25 11:29:21 -08:00
|
|
|
#include "TestOpEnums.cpp.inc"
|
|
|
|
|
2019-05-23 15:11:19 -07:00
|
|
|
#define GET_OP_CLASSES
|
|
|
|
#include "TestOps.cpp.inc"
|