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-06-30 15:42:52 -07:00
|
|
|
#include "TestTypes.h"
|
2020-02-28 08:37:09 -08:00
|
|
|
#include "mlir/Dialect/StandardOps/IR/Ops.h"
|
2020-11-19 10:43:12 -08:00
|
|
|
#include "mlir/IR/BuiltinOps.h"
|
2020-06-30 15:42:52 -07:00
|
|
|
#include "mlir/IR/DialectImplementation.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"
|
2020-07-22 13:03:24 +02:00
|
|
|
#include "llvm/ADT/SetVector.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;
|
2020-11-04 22:18:26 +01:00
|
|
|
using namespace mlir::test;
|
2019-05-23 15:11:19 -07:00
|
|
|
|
2020-11-04 22:18:26 +01:00
|
|
|
void mlir::test::registerTestDialect(DialectRegistry ®istry) {
|
Separate the Registration from Loading dialects in the Context
This changes the behavior of constructing MLIRContext to no longer load globally
registered dialects on construction. Instead Dialects are only loaded explicitly
on demand:
- the Parser is lazily loading Dialects in the context as it encounters them
during parsing. This is the only purpose for registering dialects and not load
them in the context.
- Passes are expected to declare the dialects they will create entity from
(Operations, Attributes, or Types), and the PassManager is loading Dialects into
the Context when starting a pipeline.
This changes simplifies the configuration of the registration: a compiler only
need to load the dialect for the IR it will emit, and the optimizer is
self-contained and load the required Dialects. For example in the Toy tutorial,
the compiler only needs to load the Toy dialect in the Context, all the others
(linalg, affine, std, LLVM, ...) are automatically loaded depending on the
optimization pipeline enabled.
To adjust to this change, stop using the existing dialect registration: the
global registry will be removed soon.
1) For passes, you need to override the method:
virtual void getDependentDialects(DialectRegistry ®istry) const {}
and registery on the provided registry any dialect that this pass can produce.
Passes defined in TableGen can provide this list in the dependentDialects list
field.
2) For dialects, on construction you can register dependent dialects using the
provided MLIRContext: `context.getOrLoadDialect<DialectName>()`
This is useful if a dialect may canonicalize or have interfaces involving
another dialect.
3) For loading IR, dialect that can be in the input file must be explicitly
registered with the context. `MlirOptMain()` is taking an explicit registry for
this purpose. See how the standalone-opt.cpp example is setup:
mlir::DialectRegistry registry;
registry.insert<mlir::standalone::StandaloneDialect>();
registry.insert<mlir::StandardOpsDialect>();
Only operations from these two dialects can be in the input file. To include all
of the dialects in MLIR Core, you can populate the registry this way:
mlir::registerAllDialects(registry);
4) For `mlir-translate` callback, as well as frontend, Dialects can be loaded in
the context before emitting the IR: context.getOrLoadDialect<ToyDialect>()
Differential Revision: https://reviews.llvm.org/D85622
2020-08-18 20:01:19 +00:00
|
|
|
registry.insert<TestDialect>();
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2020-10-30 00:30:59 -07:00
|
|
|
LogicalResult getAlias(Attribute attr, raw_ostream &os) const final {
|
|
|
|
StringAttr strAttr = attr.dyn_cast<StringAttr>();
|
|
|
|
if (!strAttr)
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Check the contents of the string attribute to see what the test alias
|
|
|
|
// should be named.
|
|
|
|
Optional<StringRef> aliasName =
|
|
|
|
StringSwitch<Optional<StringRef>>(strAttr.getValue())
|
|
|
|
.Case("alias_test:dot_in_name", StringRef("test.alias"))
|
|
|
|
.Case("alias_test:trailing_digit", StringRef("test_alias0"))
|
|
|
|
.Case("alias_test:prefixed_digit", StringRef("0_test_alias"))
|
|
|
|
.Case("alias_test:sanitize_conflict_a",
|
|
|
|
StringRef("test_alias_conflict0"))
|
|
|
|
.Case("alias_test:sanitize_conflict_b",
|
|
|
|
StringRef("test_alias_conflict0_"))
|
|
|
|
.Default(llvm::None);
|
|
|
|
if (!aliasName)
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
os << *aliasName;
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
2019-11-20 10:19:01 -08:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2020-08-12 22:45:16 +00:00
|
|
|
struct TestDialectFoldInterface : public DialectFoldInterface {
|
|
|
|
using DialectFoldInterface::DialectFoldInterface;
|
2019-09-01 20:06:42 -07:00
|
|
|
|
|
|
|
/// 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
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2020-10-28 21:48:48 -07:00
|
|
|
bool isLegalToInline(Operation *call, Operation *callable,
|
|
|
|
bool wouldBeCloned) const final {
|
2020-10-28 21:48:38 -07:00
|
|
|
// Don't allow inlining calls that are marked `noinline`.
|
|
|
|
return !call->hasAttr("noinline");
|
|
|
|
}
|
2020-10-28 21:48:48 -07:00
|
|
|
bool isLegalToInline(Region *, Region *, bool,
|
|
|
|
BlockAndValueMapping &) const final {
|
2019-10-03 23:04:56 -07:00
|
|
|
// Inlining into test dialect regions is legal.
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-28 21:48:48 -07:00
|
|
|
bool isLegalToInline(Operation *, Region *, bool,
|
2019-09-05 12:23:45 -07:00
|
|
|
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
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-08-07 02:41:44 +00:00
|
|
|
void TestDialect::initialize() {
|
2019-05-23 15:11:19 -07:00
|
|
|
addOperations<
|
|
|
|
#define GET_OP_LIST
|
|
|
|
#include "TestOps.cpp.inc"
|
|
|
|
>();
|
2020-08-12 22:45:16 +00:00
|
|
|
addInterfaces<TestOpAsmInterface, TestDialectFoldInterface,
|
2019-11-20 10:19:01 -08:00
|
|
|
TestInlinerInterface>();
|
2020-10-13 22:07:27 +00:00
|
|
|
addTypes<TestType, TestRecursiveType,
|
|
|
|
#define GET_TYPEDEF_LIST
|
|
|
|
#include "TestTypeDefs.cpp.inc"
|
|
|
|
>();
|
2019-06-19 13:58:31 -07:00
|
|
|
allowUnknownOperations();
|
2019-05-23 15:11:19 -07:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:07:27 +00:00
|
|
|
static Type parseTestType(MLIRContext *ctxt, DialectAsmParser &parser,
|
2020-07-22 13:03:24 +02:00
|
|
|
llvm::SetVector<Type> &stack) {
|
|
|
|
StringRef typeTag;
|
|
|
|
if (failed(parser.parseKeyword(&typeTag)))
|
|
|
|
return Type();
|
|
|
|
|
2020-10-13 22:07:27 +00:00
|
|
|
auto genType = generatedTypeParser(ctxt, parser, typeTag);
|
|
|
|
if (genType != Type())
|
|
|
|
return genType;
|
|
|
|
|
2020-07-22 13:03:24 +02:00
|
|
|
if (typeTag == "test_type")
|
|
|
|
return TestType::get(parser.getBuilder().getContext());
|
|
|
|
|
|
|
|
if (typeTag != "test_rec")
|
|
|
|
return Type();
|
|
|
|
|
|
|
|
StringRef name;
|
|
|
|
if (parser.parseLess() || parser.parseKeyword(&name))
|
|
|
|
return Type();
|
2020-08-18 15:59:53 -07:00
|
|
|
auto rec = TestRecursiveType::get(parser.getBuilder().getContext(), name);
|
2020-07-22 13:03:24 +02:00
|
|
|
|
|
|
|
// If this type already has been parsed above in the stack, expect just the
|
|
|
|
// name.
|
|
|
|
if (stack.contains(rec)) {
|
|
|
|
if (failed(parser.parseGreater()))
|
|
|
|
return Type();
|
|
|
|
return rec;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, parse the body and update the type.
|
|
|
|
if (failed(parser.parseComma()))
|
|
|
|
return Type();
|
|
|
|
stack.insert(rec);
|
2020-10-13 22:07:27 +00:00
|
|
|
Type subtype = parseTestType(ctxt, parser, stack);
|
2020-07-22 13:03:24 +02:00
|
|
|
stack.pop_back();
|
|
|
|
if (!subtype || failed(parser.parseGreater()) || failed(rec.setBody(subtype)))
|
2020-06-30 15:42:52 -07:00
|
|
|
return Type();
|
2020-07-22 13:03:24 +02:00
|
|
|
|
|
|
|
return rec;
|
|
|
|
}
|
|
|
|
|
|
|
|
Type TestDialect::parseType(DialectAsmParser &parser) const {
|
|
|
|
llvm::SetVector<Type> stack;
|
2020-10-13 22:07:27 +00:00
|
|
|
return parseTestType(getContext(), parser, stack);
|
2020-07-22 13:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void printTestType(Type type, DialectAsmPrinter &printer,
|
|
|
|
llvm::SetVector<Type> &stack) {
|
2020-10-13 22:07:27 +00:00
|
|
|
if (succeeded(generatedTypePrinter(type, printer)))
|
|
|
|
return;
|
2020-07-22 13:03:24 +02:00
|
|
|
if (type.isa<TestType>()) {
|
|
|
|
printer << "test_type";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto rec = type.cast<TestRecursiveType>();
|
|
|
|
printer << "test_rec<" << rec.getName();
|
|
|
|
if (!stack.contains(rec)) {
|
|
|
|
printer << ", ";
|
|
|
|
stack.insert(rec);
|
|
|
|
printTestType(rec.getBody(), printer, stack);
|
|
|
|
stack.pop_back();
|
|
|
|
}
|
|
|
|
printer << ">";
|
2020-06-30 15:42:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestDialect::printType(Type type, DialectAsmPrinter &printer) const {
|
2020-07-22 13:03:24 +02:00
|
|
|
llvm::SetVector<Type> stack;
|
|
|
|
printTestType(type, printer, stack);
|
2020-06-30 15:42:52 -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();
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:40:23 -08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TestBranchOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-04-29 16:09:43 -07:00
|
|
|
Optional<MutableOperandRange>
|
|
|
|
TestBranchOp::getMutableSuccessorOperands(unsigned index) {
|
2020-03-05 12:40:23 -08:00
|
|
|
assert(index == 0 && "invalid successor index");
|
2020-04-29 16:09:43 -07:00
|
|
|
return targetOperandsMutable();
|
2020-03-05 12:40:23 -08:00
|
|
|
}
|
|
|
|
|
2020-06-17 13:13:48 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TestFoldToCallOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct FoldToCallOpPattern : public OpRewritePattern<FoldToCallOp> {
|
|
|
|
using OpRewritePattern<FoldToCallOp>::OpRewritePattern;
|
|
|
|
|
|
|
|
LogicalResult matchAndRewrite(FoldToCallOp op,
|
|
|
|
PatternRewriter &rewriter) const override {
|
2020-09-22 21:00:11 -07:00
|
|
|
rewriter.replaceOpWithNewOp<CallOp>(op, TypeRange(), op.calleeAttr(),
|
2020-06-17 13:13:48 -07:00
|
|
|
ValueRange());
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
void FoldToCallOp::getCanonicalizationPatterns(
|
|
|
|
OwningRewritePatternList &results, MLIRContext *context) {
|
|
|
|
results.insert<FoldToCallOpPattern>(context);
|
|
|
|
}
|
|
|
|
|
2020-08-31 12:33:36 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test Format* operations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Parsing
|
|
|
|
|
|
|
|
static ParseResult parseCustomDirectiveOperands(
|
|
|
|
OpAsmParser &parser, OpAsmParser::OperandType &operand,
|
|
|
|
Optional<OpAsmParser::OperandType> &optOperand,
|
|
|
|
SmallVectorImpl<OpAsmParser::OperandType> &varOperands) {
|
|
|
|
if (parser.parseOperand(operand))
|
|
|
|
return failure();
|
|
|
|
if (succeeded(parser.parseOptionalComma())) {
|
|
|
|
optOperand.emplace();
|
|
|
|
if (parser.parseOperand(*optOperand))
|
|
|
|
return failure();
|
|
|
|
}
|
|
|
|
if (parser.parseArrow() || parser.parseLParen() ||
|
|
|
|
parser.parseOperandList(varOperands) || parser.parseRParen())
|
|
|
|
return failure();
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
static ParseResult
|
|
|
|
parseCustomDirectiveResults(OpAsmParser &parser, Type &operandType,
|
|
|
|
Type &optOperandType,
|
|
|
|
SmallVectorImpl<Type> &varOperandTypes) {
|
|
|
|
if (parser.parseColon())
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
if (parser.parseType(operandType))
|
|
|
|
return failure();
|
|
|
|
if (succeeded(parser.parseOptionalComma())) {
|
|
|
|
if (parser.parseType(optOperandType))
|
|
|
|
return failure();
|
|
|
|
}
|
|
|
|
if (parser.parseArrow() || parser.parseLParen() ||
|
|
|
|
parser.parseTypeList(varOperandTypes) || parser.parseRParen())
|
|
|
|
return failure();
|
|
|
|
return success();
|
|
|
|
}
|
2020-09-18 06:13:25 -04:00
|
|
|
static ParseResult
|
|
|
|
parseCustomDirectiveWithTypeRefs(OpAsmParser &parser, Type operandType,
|
|
|
|
Type optOperandType,
|
|
|
|
const SmallVectorImpl<Type> &varOperandTypes) {
|
|
|
|
if (parser.parseKeyword("type_refs_capture"))
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
Type operandType2, optOperandType2;
|
|
|
|
SmallVector<Type, 1> varOperandTypes2;
|
|
|
|
if (parseCustomDirectiveResults(parser, operandType2, optOperandType2,
|
|
|
|
varOperandTypes2))
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
if (operandType != operandType2 || optOperandType != optOperandType2 ||
|
|
|
|
varOperandTypes != varOperandTypes2)
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
return success();
|
|
|
|
}
|
2020-08-31 12:33:36 -07:00
|
|
|
static ParseResult parseCustomDirectiveOperandsAndTypes(
|
|
|
|
OpAsmParser &parser, OpAsmParser::OperandType &operand,
|
|
|
|
Optional<OpAsmParser::OperandType> &optOperand,
|
|
|
|
SmallVectorImpl<OpAsmParser::OperandType> &varOperands, Type &operandType,
|
|
|
|
Type &optOperandType, SmallVectorImpl<Type> &varOperandTypes) {
|
|
|
|
if (parseCustomDirectiveOperands(parser, operand, optOperand, varOperands) ||
|
|
|
|
parseCustomDirectiveResults(parser, operandType, optOperandType,
|
|
|
|
varOperandTypes))
|
|
|
|
return failure();
|
|
|
|
return success();
|
|
|
|
}
|
2020-08-31 12:33:55 -07:00
|
|
|
static ParseResult parseCustomDirectiveRegions(
|
|
|
|
OpAsmParser &parser, Region ®ion,
|
|
|
|
SmallVectorImpl<std::unique_ptr<Region>> &varRegions) {
|
|
|
|
if (parser.parseRegion(region))
|
|
|
|
return failure();
|
|
|
|
if (failed(parser.parseOptionalComma()))
|
|
|
|
return success();
|
|
|
|
std::unique_ptr<Region> varRegion = std::make_unique<Region>();
|
|
|
|
if (parser.parseRegion(*varRegion))
|
|
|
|
return failure();
|
|
|
|
varRegions.emplace_back(std::move(varRegion));
|
|
|
|
return success();
|
|
|
|
}
|
2020-08-31 12:33:36 -07:00
|
|
|
static ParseResult
|
|
|
|
parseCustomDirectiveSuccessors(OpAsmParser &parser, Block *&successor,
|
|
|
|
SmallVectorImpl<Block *> &varSuccessors) {
|
|
|
|
if (parser.parseSuccessor(successor))
|
|
|
|
return failure();
|
|
|
|
if (failed(parser.parseOptionalComma()))
|
|
|
|
return success();
|
|
|
|
Block *varSuccessor;
|
|
|
|
if (parser.parseSuccessor(varSuccessor))
|
|
|
|
return failure();
|
|
|
|
varSuccessors.append(2, varSuccessor);
|
|
|
|
return success();
|
|
|
|
}
|
2020-09-23 18:01:39 +00:00
|
|
|
static ParseResult parseCustomDirectiveAttributes(OpAsmParser &parser,
|
|
|
|
IntegerAttr &attr,
|
|
|
|
IntegerAttr &optAttr) {
|
|
|
|
if (parser.parseAttribute(attr))
|
|
|
|
return failure();
|
|
|
|
if (succeeded(parser.parseOptionalComma())) {
|
|
|
|
if (parser.parseAttribute(optAttr))
|
|
|
|
return failure();
|
|
|
|
}
|
|
|
|
return success();
|
|
|
|
}
|
2020-08-31 12:33:36 -07:00
|
|
|
|
2020-10-28 01:01:44 +00:00
|
|
|
static ParseResult parseCustomDirectiveAttrDict(OpAsmParser &parser,
|
|
|
|
NamedAttrList &attrs) {
|
|
|
|
return parser.parseOptionalAttrDict(attrs);
|
|
|
|
}
|
|
|
|
|
2020-08-31 12:33:36 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Printing
|
|
|
|
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveOperands(OpAsmPrinter &printer, Operation *,
|
|
|
|
Value operand, Value optOperand,
|
2020-08-31 12:33:36 -07:00
|
|
|
OperandRange varOperands) {
|
|
|
|
printer << operand;
|
|
|
|
if (optOperand)
|
|
|
|
printer << ", " << optOperand;
|
|
|
|
printer << " -> (" << varOperands << ")";
|
|
|
|
}
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveResults(OpAsmPrinter &printer, Operation *,
|
|
|
|
Type operandType, Type optOperandType,
|
2020-08-31 12:33:36 -07:00
|
|
|
TypeRange varOperandTypes) {
|
|
|
|
printer << " : " << operandType;
|
|
|
|
if (optOperandType)
|
|
|
|
printer << ", " << optOperandType;
|
|
|
|
printer << " -> (" << varOperandTypes << ")";
|
|
|
|
}
|
2020-09-18 06:13:25 -04:00
|
|
|
static void printCustomDirectiveWithTypeRefs(OpAsmPrinter &printer,
|
2020-10-28 01:01:44 +00:00
|
|
|
Operation *op, Type operandType,
|
2020-09-18 06:13:25 -04:00
|
|
|
Type optOperandType,
|
|
|
|
TypeRange varOperandTypes) {
|
|
|
|
printer << " type_refs_capture ";
|
2020-10-28 01:01:44 +00:00
|
|
|
printCustomDirectiveResults(printer, op, operandType, optOperandType,
|
2020-09-18 06:13:25 -04:00
|
|
|
varOperandTypes);
|
|
|
|
}
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveOperandsAndTypes(
|
|
|
|
OpAsmPrinter &printer, Operation *op, Value operand, Value optOperand,
|
|
|
|
OperandRange varOperands, Type operandType, Type optOperandType,
|
|
|
|
TypeRange varOperandTypes) {
|
|
|
|
printCustomDirectiveOperands(printer, op, operand, optOperand, varOperands);
|
|
|
|
printCustomDirectiveResults(printer, op, operandType, optOperandType,
|
2020-08-31 12:33:36 -07:00
|
|
|
varOperandTypes);
|
|
|
|
}
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveRegions(OpAsmPrinter &printer, Operation *,
|
|
|
|
Region ®ion,
|
2020-08-31 12:33:55 -07:00
|
|
|
MutableArrayRef<Region> varRegions) {
|
|
|
|
printer.printRegion(region);
|
|
|
|
if (!varRegions.empty()) {
|
|
|
|
printer << ", ";
|
|
|
|
for (Region ®ion : varRegions)
|
|
|
|
printer.printRegion(region);
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveSuccessors(OpAsmPrinter &printer, Operation *,
|
2020-08-31 12:33:36 -07:00
|
|
|
Block *successor,
|
|
|
|
SuccessorRange varSuccessors) {
|
|
|
|
printer << successor;
|
|
|
|
if (!varSuccessors.empty())
|
|
|
|
printer << ", " << varSuccessors.front();
|
|
|
|
}
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveAttributes(OpAsmPrinter &printer, Operation *,
|
2020-09-23 18:01:39 +00:00
|
|
|
Attribute attribute,
|
|
|
|
Attribute optAttribute) {
|
|
|
|
printer << attribute;
|
|
|
|
if (optAttribute)
|
|
|
|
printer << ", " << optAttribute;
|
|
|
|
}
|
2020-08-31 12:33:36 -07:00
|
|
|
|
2020-10-28 01:01:44 +00:00
|
|
|
static void printCustomDirectiveAttrDict(OpAsmPrinter &printer, Operation *op,
|
|
|
|
MutableDictionaryAttr attrs) {
|
|
|
|
printer.printOptionalAttrDict(attrs.getAttrs());
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
[MLIR] Add RegionKindInterface
Some dialects have semantics which is not well represented by common
SSA structures with dominance constraints. This patch allows
operations to declare the 'kind' of their contained regions.
Currently, two kinds are allowed: "SSACFG" and "Graph". The only
difference between them at the moment is that SSACFG regions are
required to have dominance, while Graph regions are not required to
have dominance. The intention is that this Interface would be
generated by ODS for existing operations, although this has not yet
been implemented. Presumably, if someone were interested in code
generation, we might also have a "CFG" dialect, which defines control
flow, but does not require SSA.
The new behavior is mostly identical to the previous behavior, since
registered operations without a RegionKindInterface are assumed to
contain SSACFG regions. However, the behavior has changed for
unregistered operations. Previously, these were checked for
dominance, however the new behavior allows dominance violations, in
order to allow the processing of unregistered dialects with Graph
regions. One implication of this is that regions in unregistered
operations with more than one op are no longer CSE'd (since it
requires dominance info).
I've also reorganized the LangRef documentation to remove assertions
about "sequential execution", "SSA Values", and "Dominance". Instead,
the core IR is simply "ordered" (i.e. totally ordered) and consists of
"Values". I've also clarified some things about how control flow
passes between blocks in an SSACFG region. Control Flow must enter a
region at the entry block and follow terminator operation successors
or be returned to the containing op. Graph regions do not define a
notion of control flow.
see discussion here:
https://llvm.discourse.group/t/rfc-allowing-dialects-to-relax-the-ssa-dominance-condition/833/53
Differential Revision: https://reviews.llvm.org/D80358
2020-05-15 10:33:13 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test SSACFGRegionOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
RegionKind SSACFGRegionOp::getRegionKind(unsigned index) {
|
|
|
|
return RegionKind::SSACFG;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test GraphRegionOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
static ParseResult parseGraphRegionOp(OpAsmParser &parser,
|
|
|
|
OperationState &result) {
|
|
|
|
// Parse the body region, and reuse the operand info as the argument info.
|
|
|
|
Region *body = result.addRegion();
|
|
|
|
return parser.parseRegion(*body, /*arguments=*/{}, /*argTypes=*/{});
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print(OpAsmPrinter &p, GraphRegionOp op) {
|
|
|
|
p << "test.graph_region ";
|
|
|
|
p.printRegion(op.region(), /*printEntryBlockArgs=*/false);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegionKind GraphRegionOp::getRegionKind(unsigned index) {
|
|
|
|
return RegionKind::Graph;
|
|
|
|
}
|
|
|
|
|
2020-04-29 05:38:23 +05:30
|
|
|
//===----------------------------------------------------------------------===//
|
2020-05-06 12:32:06 +05:30
|
|
|
// Test AffineScopeOp
|
2020-04-29 05:38:23 +05:30
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-05-06 12:32:06 +05:30
|
|
|
static ParseResult parseAffineScopeOp(OpAsmParser &parser,
|
|
|
|
OperationState &result) {
|
2020-04-29 05:38:23 +05:30
|
|
|
// Parse the body region, and reuse the operand info as the argument info.
|
|
|
|
Region *body = result.addRegion();
|
|
|
|
return parser.parseRegion(*body, /*arguments=*/{}, /*argTypes=*/{});
|
|
|
|
}
|
|
|
|
|
2020-05-06 12:32:06 +05:30
|
|
|
static void print(OpAsmPrinter &p, AffineScopeOp op) {
|
|
|
|
p << "test.affine_scope ";
|
2020-04-29 05:38:23 +05:30
|
|
|
p.printRegion(op.region(), /*printEntryBlockArgs=*/false);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-03-17 20:07:55 -07:00
|
|
|
LogicalResult matchAndRewrite(TestOpWithRegionPattern op,
|
|
|
|
PatternRewriter &rewriter) const override {
|
2019-10-16 09:50:28 -07:00
|
|
|
rewriter.eraseOp(op);
|
2020-03-17 20:07:55 -07:00
|
|
|
return success();
|
2019-08-06 11:08:22 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // 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();
|
|
|
|
}
|
|
|
|
|
2020-10-09 13:32:01 -07:00
|
|
|
OpFoldResult TestOpConstant::fold(ArrayRef<Attribute> operands) {
|
|
|
|
return getValue();
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2020-05-06 17:39:23 +02:00
|
|
|
OpFoldResult TestOpInPlaceFold::fold(ArrayRef<Attribute> operands) {
|
|
|
|
assert(operands.size() == 1);
|
|
|
|
if (operands.front()) {
|
|
|
|
setAttr("attr", operands.front());
|
|
|
|
return getResult();
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
[MLIR] Add RegionKindInterface
Some dialects have semantics which is not well represented by common
SSA structures with dominance constraints. This patch allows
operations to declare the 'kind' of their contained regions.
Currently, two kinds are allowed: "SSACFG" and "Graph". The only
difference between them at the moment is that SSACFG regions are
required to have dominance, while Graph regions are not required to
have dominance. The intention is that this Interface would be
generated by ODS for existing operations, although this has not yet
been implemented. Presumably, if someone were interested in code
generation, we might also have a "CFG" dialect, which defines control
flow, but does not require SSA.
The new behavior is mostly identical to the previous behavior, since
registered operations without a RegionKindInterface are assumed to
contain SSACFG regions. However, the behavior has changed for
unregistered operations. Previously, these were checked for
dominance, however the new behavior allows dominance violations, in
order to allow the processing of unregistered dialects with Graph
regions. One implication of this is that regions in unregistered
operations with more than one op are no longer CSE'd (since it
requires dominance info).
I've also reorganized the LangRef documentation to remove assertions
about "sequential execution", "SSA Values", and "Dominance". Instead,
the core IR is simply "ordered" (i.e. totally ordered) and consists of
"Values". I've also clarified some things about how control flow
passes between blocks in an SSACFG region. Control Flow must enter a
region at the entry block and follow terminator operation successors
or be returned to the containing op. Graph regions do not define a
notion of control flow.
see discussion here:
https://llvm.discourse.group/t/rfc-allowing-dialects-to-relax-the-ssa-dominance-condition/833/53
Differential Revision: https://reviews.llvm.org/D80358
2020-05-15 10:33:13 -07:00
|
|
|
LogicalResult OpWithInferTypeInterfaceOp::inferReturnTypes(
|
2020-01-08 18:48:38 -08:00
|
|
|
MLIRContext *, Optional<Location> location, ValueRange operands,
|
2020-05-06 13:48:36 -07:00
|
|
|
DictionaryAttr 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,
|
2020-05-06 13:48:36 -07:00
|
|
|
DictionaryAttr 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>{
|
[MLIR] Add RegionKindInterface
Some dialects have semantics which is not well represented by common
SSA structures with dominance constraints. This patch allows
operations to declare the 'kind' of their contained regions.
Currently, two kinds are allowed: "SSACFG" and "Graph". The only
difference between them at the moment is that SSACFG regions are
required to have dominance, while Graph regions are not required to
have dominance. The intention is that this Interface would be
generated by ODS for existing operations, although this has not yet
been implemented. Presumably, if someone were interested in code
generation, we might also have a "CFG" dialect, which defines control
flow, but does not require SSA.
The new behavior is mostly identical to the previous behavior, since
registered operations without a RegionKindInterface are assumed to
contain SSACFG regions. However, the behavior has changed for
unregistered operations. Previously, these were checked for
dominance, however the new behavior allows dominance violations, in
order to allow the processing of unregistered dialects with Graph
regions. One implication of this is that regions in unregistered
operations with more than one op are no longer CSE'd (since it
requires dominance info).
I've also reorganized the LangRef documentation to remove assertions
about "sequential execution", "SSA Values", and "Dominance". Instead,
the core IR is simply "ordered" (i.e. totally ordered) and consists of
"Values". I've also clarified some things about how control flow
passes between blocks in an SSACFG region. Control Flow must enter a
region at the entry block and follow terminator operation successors
or be returned to the containing op. Graph regions do not define a
notion of control flow.
see discussion here:
https://llvm.discourse.group/t/rfc-allowing-dialects-to-relax-the-ssa-dominance-condition/833/53
Differential Revision: https://reviews.llvm.org/D80358
2020-05-15 10:33:13 -07:00
|
|
|
builder.createOrFold<DimOp>(getLoc(), getOperand(0), 0)};
|
2020-01-08 18:48:38 -08:00
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
[mlir][SideEffects] Define a set of interfaces and traits for defining side effects
This revision introduces the infrastructure for defining side-effects and attaching them to operations. This infrastructure allows for defining different types of side effects, that don't interact with each other, but use the same internal mechanisms. At the base of this is an interface that allows operations to specify the different effect instances that are exhibited by a specific operation instance. An effect instance is comprised of the following:
* Effect: The specific effect being applied.
For memory related effects this may be reading from memory, storing to memory, etc.
* Value: A specific value, either operand/result/region argument, the effect pertains to.
* Resource: This is a global entity that represents the domain within which the effect is being applied.
MLIR serves many different abstractions, which cover many different domains. Simple effects are may have very different context, for example writing to an in-memory buffer vs a database. This revision defines uses this infrastructure to define a set of initial MemoryEffects. The are effects that generally correspond to memory of some kind; Allocate, Free, Read, Write.
This set of memory effects will be used in follow revisions to generalize various parts of the compiler, and make others more powerful(e.g. DCE).
This infrastructure was originally proposed here:
https://groups.google.com/a/tensorflow.org/g/mlir/c/v2mNl4vFCUM
Differential Revision: https://reviews.llvm.org/D74439
2020-03-06 13:53:16 -08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test SideEffect interfaces
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// A test resource for side effects.
|
|
|
|
struct TestResource : public SideEffects::Resource::Base<TestResource> {
|
|
|
|
StringRef getName() final { return "<Test>"; }
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
void SideEffectOp::getEffects(
|
|
|
|
SmallVectorImpl<MemoryEffects::EffectInstance> &effects) {
|
|
|
|
// Check for an effects attribute on the op instance.
|
2020-12-09 11:50:18 +01:00
|
|
|
ArrayAttr effectsAttr = (*this)->getAttrOfType<ArrayAttr>("effects");
|
[mlir][SideEffects] Define a set of interfaces and traits for defining side effects
This revision introduces the infrastructure for defining side-effects and attaching them to operations. This infrastructure allows for defining different types of side effects, that don't interact with each other, but use the same internal mechanisms. At the base of this is an interface that allows operations to specify the different effect instances that are exhibited by a specific operation instance. An effect instance is comprised of the following:
* Effect: The specific effect being applied.
For memory related effects this may be reading from memory, storing to memory, etc.
* Value: A specific value, either operand/result/region argument, the effect pertains to.
* Resource: This is a global entity that represents the domain within which the effect is being applied.
MLIR serves many different abstractions, which cover many different domains. Simple effects are may have very different context, for example writing to an in-memory buffer vs a database. This revision defines uses this infrastructure to define a set of initial MemoryEffects. The are effects that generally correspond to memory of some kind; Allocate, Free, Read, Write.
This set of memory effects will be used in follow revisions to generalize various parts of the compiler, and make others more powerful(e.g. DCE).
This infrastructure was originally proposed here:
https://groups.google.com/a/tensorflow.org/g/mlir/c/v2mNl4vFCUM
Differential Revision: https://reviews.llvm.org/D74439
2020-03-06 13:53:16 -08:00
|
|
|
if (!effectsAttr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If there is one, it is an array of dictionary attributes that hold
|
|
|
|
// information on the effects of this operation.
|
|
|
|
for (Attribute element : effectsAttr) {
|
|
|
|
DictionaryAttr effectElement = element.cast<DictionaryAttr>();
|
|
|
|
|
|
|
|
// Get the specific memory effect.
|
|
|
|
MemoryEffects::Effect *effect =
|
2020-10-07 16:17:35 +02:00
|
|
|
StringSwitch<MemoryEffects::Effect *>(
|
[mlir][SideEffects] Define a set of interfaces and traits for defining side effects
This revision introduces the infrastructure for defining side-effects and attaching them to operations. This infrastructure allows for defining different types of side effects, that don't interact with each other, but use the same internal mechanisms. At the base of this is an interface that allows operations to specify the different effect instances that are exhibited by a specific operation instance. An effect instance is comprised of the following:
* Effect: The specific effect being applied.
For memory related effects this may be reading from memory, storing to memory, etc.
* Value: A specific value, either operand/result/region argument, the effect pertains to.
* Resource: This is a global entity that represents the domain within which the effect is being applied.
MLIR serves many different abstractions, which cover many different domains. Simple effects are may have very different context, for example writing to an in-memory buffer vs a database. This revision defines uses this infrastructure to define a set of initial MemoryEffects. The are effects that generally correspond to memory of some kind; Allocate, Free, Read, Write.
This set of memory effects will be used in follow revisions to generalize various parts of the compiler, and make others more powerful(e.g. DCE).
This infrastructure was originally proposed here:
https://groups.google.com/a/tensorflow.org/g/mlir/c/v2mNl4vFCUM
Differential Revision: https://reviews.llvm.org/D74439
2020-03-06 13:53:16 -08:00
|
|
|
effectElement.get("effect").cast<StringAttr>().getValue())
|
|
|
|
.Case("allocate", MemoryEffects::Allocate::get())
|
|
|
|
.Case("free", MemoryEffects::Free::get())
|
|
|
|
.Case("read", MemoryEffects::Read::get())
|
|
|
|
.Case("write", MemoryEffects::Write::get());
|
|
|
|
|
|
|
|
// Check for a non-default resource to use.
|
|
|
|
SideEffects::Resource *resource = SideEffects::DefaultResource::get();
|
|
|
|
if (effectElement.get("test_resource"))
|
|
|
|
resource = TestResource::get();
|
|
|
|
|
2020-11-18 18:31:40 -08:00
|
|
|
// Check for a result to affect.
|
|
|
|
if (effectElement.get("on_result"))
|
|
|
|
effects.emplace_back(effect, getResult(), resource);
|
|
|
|
else if (Attribute ref = effectElement.get("on_reference"))
|
|
|
|
effects.emplace_back(effect, ref.cast<SymbolRefAttr>(), resource);
|
|
|
|
else
|
|
|
|
effects.emplace_back(effect, resource);
|
[mlir][SideEffects] Define a set of interfaces and traits for defining side effects
This revision introduces the infrastructure for defining side-effects and attaching them to operations. This infrastructure allows for defining different types of side effects, that don't interact with each other, but use the same internal mechanisms. At the base of this is an interface that allows operations to specify the different effect instances that are exhibited by a specific operation instance. An effect instance is comprised of the following:
* Effect: The specific effect being applied.
For memory related effects this may be reading from memory, storing to memory, etc.
* Value: A specific value, either operand/result/region argument, the effect pertains to.
* Resource: This is a global entity that represents the domain within which the effect is being applied.
MLIR serves many different abstractions, which cover many different domains. Simple effects are may have very different context, for example writing to an in-memory buffer vs a database. This revision defines uses this infrastructure to define a set of initial MemoryEffects. The are effects that generally correspond to memory of some kind; Allocate, Free, Read, Write.
This set of memory effects will be used in follow revisions to generalize various parts of the compiler, and make others more powerful(e.g. DCE).
This infrastructure was originally proposed here:
https://groups.google.com/a/tensorflow.org/g/mlir/c/v2mNl4vFCUM
Differential Revision: https://reviews.llvm.org/D74439
2020-03-06 13:53:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 15:25:01 +01:00
|
|
|
void SideEffectOp::getEffects(
|
|
|
|
SmallVectorImpl<TestEffects::EffectInstance> &effects) {
|
2020-12-09 11:50:18 +01:00
|
|
|
auto effectsAttr = (*this)->getAttrOfType<AffineMapAttr>("effect_parameter");
|
2020-11-15 15:25:01 +01:00
|
|
|
if (!effectsAttr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
effects.emplace_back(TestEffects::Concrete::get(), effectsAttr);
|
|
|
|
}
|
|
|
|
|
Add support for custom op parser/printer hooks to know about result names.
Summary:
This allows the custom parser/printer hooks to do interesting things with
the SSA names. This patch:
- Adds a new 'getResultName' method to OpAsmParser that allows a parser
implementation to get information about its result names, along with
a getNumResults() method that allows op parser impls to know how many
results are expected.
- Adds a OpAsmPrinter::printOperand overload that takes an explicit stream.
- Adds a test.string_attr_pretty_name operation that uses these hooks to
do fancy things with the result name.
Reviewers: rriddle!
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, liufengdb, Joonsoo, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D76205
2020-03-15 17:13:59 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// StringAttrPrettyNameOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// This op has fancy handling of its SSA result name.
|
|
|
|
static ParseResult parseStringAttrPrettyNameOp(OpAsmParser &parser,
|
|
|
|
OperationState &result) {
|
|
|
|
// Add the result types.
|
|
|
|
for (size_t i = 0, e = parser.getNumResults(); i != e; ++i)
|
|
|
|
result.addTypes(parser.getBuilder().getIntegerType(32));
|
|
|
|
|
|
|
|
if (parser.parseOptionalAttrDictWithKeyword(result.attributes))
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
// If the attribute dictionary contains no 'names' attribute, infer it from
|
|
|
|
// the SSA name (if specified).
|
|
|
|
bool hadNames = llvm::any_of(result.attributes, [](NamedAttribute attr) {
|
Eliminate all uses of Identifier::is() in the source tree, this doesn't remove the definition of it (yet). NFC.
Reviewers: mravishankar, antiagainst, herhut, rriddle!
Subscribers: jholewinski, mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, csigg, arpith-jacob, mgester, lucyrfox, liufengdb, Joonsoo, bader, grosul1, frgossen, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D78042
2020-04-13 11:17:35 -07:00
|
|
|
return attr.first == "names";
|
Add support for custom op parser/printer hooks to know about result names.
Summary:
This allows the custom parser/printer hooks to do interesting things with
the SSA names. This patch:
- Adds a new 'getResultName' method to OpAsmParser that allows a parser
implementation to get information about its result names, along with
a getNumResults() method that allows op parser impls to know how many
results are expected.
- Adds a OpAsmPrinter::printOperand overload that takes an explicit stream.
- Adds a test.string_attr_pretty_name operation that uses these hooks to
do fancy things with the result name.
Reviewers: rriddle!
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, liufengdb, Joonsoo, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D76205
2020-03-15 17:13:59 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
// If there was no name specified, check to see if there was a useful name
|
|
|
|
// specified in the asm file.
|
|
|
|
if (hadNames || parser.getNumResults() == 0)
|
|
|
|
return success();
|
|
|
|
|
|
|
|
SmallVector<StringRef, 4> names;
|
|
|
|
auto *context = result.getContext();
|
|
|
|
|
|
|
|
for (size_t i = 0, e = parser.getNumResults(); i != e; ++i) {
|
|
|
|
auto resultName = parser.getResultName(i);
|
|
|
|
StringRef nameStr;
|
|
|
|
if (!resultName.first.empty() && !isdigit(resultName.first[0]))
|
|
|
|
nameStr = resultName.first;
|
|
|
|
|
|
|
|
names.push_back(nameStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto namesAttr = parser.getBuilder().getStrArrayAttr(names);
|
|
|
|
result.attributes.push_back({Identifier::get("names", context), namesAttr});
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print(OpAsmPrinter &p, StringAttrPrettyNameOp op) {
|
|
|
|
p << "test.string_attr_pretty_name";
|
|
|
|
|
|
|
|
// Note that we only need to print the "name" attribute if the asmprinter
|
|
|
|
// result name disagrees with it. This can happen in strange cases, e.g.
|
|
|
|
// when there are conflicts.
|
|
|
|
bool namesDisagree = op.names().size() != op.getNumResults();
|
|
|
|
|
|
|
|
SmallString<32> resultNameStr;
|
|
|
|
for (size_t i = 0, e = op.getNumResults(); i != e && !namesDisagree; ++i) {
|
|
|
|
resultNameStr.clear();
|
|
|
|
llvm::raw_svector_ostream tmpStream(resultNameStr);
|
|
|
|
p.printOperand(op.getResult(i), tmpStream);
|
|
|
|
|
|
|
|
auto expectedName = op.names()[i].dyn_cast<StringAttr>();
|
|
|
|
if (!expectedName ||
|
|
|
|
tmpStream.str().drop_front() != expectedName.getValue()) {
|
|
|
|
namesDisagree = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (namesDisagree)
|
|
|
|
p.printOptionalAttrDictWithKeyword(op.getAttrs());
|
|
|
|
else
|
|
|
|
p.printOptionalAttrDictWithKeyword(op.getAttrs(), {"names"});
|
|
|
|
}
|
|
|
|
|
|
|
|
// We set the SSA name in the asm syntax to the contents of the name
|
|
|
|
// attribute.
|
|
|
|
void StringAttrPrettyNameOp::getAsmResultNames(
|
|
|
|
function_ref<void(Value, StringRef)> setNameFn) {
|
|
|
|
|
|
|
|
auto value = names();
|
|
|
|
for (size_t i = 0, e = value.size(); i != e; ++i)
|
|
|
|
if (auto str = value[i].dyn_cast<StringAttr>())
|
|
|
|
if (!str.getValue().empty())
|
|
|
|
setNameFn(getResult(i), str.getValue());
|
|
|
|
}
|
|
|
|
|
2020-06-30 11:58:45 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RegionIfOp
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
static void print(OpAsmPrinter &p, RegionIfOp op) {
|
|
|
|
p << RegionIfOp::getOperationName() << " ";
|
|
|
|
p.printOperands(op.getOperands());
|
|
|
|
p << ": " << op.getOperandTypes();
|
|
|
|
p.printArrowTypeList(op.getResultTypes());
|
|
|
|
p << " then";
|
|
|
|
p.printRegion(op.thenRegion(),
|
|
|
|
/*printEntryBlockArgs=*/true,
|
|
|
|
/*printBlockTerminators=*/true);
|
|
|
|
p << " else";
|
|
|
|
p.printRegion(op.elseRegion(),
|
|
|
|
/*printEntryBlockArgs=*/true,
|
|
|
|
/*printBlockTerminators=*/true);
|
|
|
|
p << " join";
|
|
|
|
p.printRegion(op.joinRegion(),
|
|
|
|
/*printEntryBlockArgs=*/true,
|
|
|
|
/*printBlockTerminators=*/true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ParseResult parseRegionIfOp(OpAsmParser &parser,
|
|
|
|
OperationState &result) {
|
|
|
|
SmallVector<OpAsmParser::OperandType, 2> operandInfos;
|
|
|
|
SmallVector<Type, 2> operandTypes;
|
|
|
|
|
|
|
|
result.regions.reserve(3);
|
|
|
|
Region *thenRegion = result.addRegion();
|
|
|
|
Region *elseRegion = result.addRegion();
|
|
|
|
Region *joinRegion = result.addRegion();
|
|
|
|
|
|
|
|
// Parse operand, type and arrow type lists.
|
|
|
|
if (parser.parseOperandList(operandInfos) ||
|
|
|
|
parser.parseColonTypeList(operandTypes) ||
|
|
|
|
parser.parseArrowTypeList(result.types))
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
// Parse all attached regions.
|
|
|
|
if (parser.parseKeyword("then") || parser.parseRegion(*thenRegion, {}, {}) ||
|
|
|
|
parser.parseKeyword("else") || parser.parseRegion(*elseRegion, {}, {}) ||
|
|
|
|
parser.parseKeyword("join") || parser.parseRegion(*joinRegion, {}, {}))
|
|
|
|
return failure();
|
|
|
|
|
|
|
|
return parser.resolveOperands(operandInfos, operandTypes,
|
|
|
|
parser.getCurrentLocation(), result.operands);
|
|
|
|
}
|
|
|
|
|
|
|
|
OperandRange RegionIfOp::getSuccessorEntryOperands(unsigned index) {
|
|
|
|
assert(index < 2 && "invalid region index");
|
|
|
|
return getOperands();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RegionIfOp::getSuccessorRegions(
|
|
|
|
Optional<unsigned> index, ArrayRef<Attribute> operands,
|
|
|
|
SmallVectorImpl<RegionSuccessor> ®ions) {
|
|
|
|
// We always branch to the join region.
|
|
|
|
if (index.hasValue()) {
|
|
|
|
if (index.getValue() < 2)
|
|
|
|
regions.push_back(RegionSuccessor(&joinRegion(), getJoinArgs()));
|
|
|
|
else
|
|
|
|
regions.push_back(RegionSuccessor(getResults()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The then and else regions are the entry regions of this op.
|
|
|
|
regions.push_back(RegionSuccessor(&thenRegion(), getThenArgs()));
|
|
|
|
regions.push_back(RegionSuccessor(&elseRegion(), getElseArgs()));
|
|
|
|
}
|
|
|
|
|
2019-11-25 11:29:21 -08:00
|
|
|
#include "TestOpEnums.cpp.inc"
|
2020-11-15 15:25:01 +01:00
|
|
|
#include "TestOpInterfaces.cpp.inc"
|
2020-04-27 17:52:59 -07:00
|
|
|
#include "TestOpStructs.cpp.inc"
|
2020-06-30 15:42:52 -07:00
|
|
|
#include "TestTypeInterfaces.cpp.inc"
|
2019-11-25 11:29:21 -08:00
|
|
|
|
2019-05-23 15:11:19 -07:00
|
|
|
#define GET_OP_CLASSES
|
|
|
|
#include "TestOps.cpp.inc"
|