blob: ea18ebffedc88d1f637d01c2266e4a50303f8085 [file] [log] [blame]
// Copyright 2019 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef IREE_COMPILER_DIALECT_FLOW_IR_FLOWDIALECT_H_
#define IREE_COMPILER_DIALECT_FLOW_IR_FLOWDIALECT_H_
#include "mlir/IR/Dialect.h"
#include "mlir/IR/OpDefinition.h"
#include "mlir/IR/SymbolTable.h"
namespace mlir::iree_compiler::IREE::Flow {
class FlowDialect : public Dialect {
public:
explicit FlowDialect(MLIRContext *context);
static StringRef getDialectNamespace() { return "flow"; }
Operation *materializeConstant(OpBuilder &builder, Attribute value, Type type,
Location loc) override;
Attribute parseAttribute(DialectAsmParser &parser, Type type) const override;
void printAttribute(Attribute attr, DialectAsmPrinter &p) const override;
Type parseType(DialectAsmParser &parser) const override;
void printType(Type type, DialectAsmPrinter &p) const override;
static bool isDialectOp(Operation *op) {
return op && op->getDialect() &&
op->getDialect()->getNamespace() == getDialectNamespace();
}
private:
void registerAttributes();
void registerTypes();
};
} // namespace mlir::iree_compiler::IREE::Flow
#endif // IREE_COMPILER_DIALECT_FLOW_IR_FLOWDIALECT_H_