2020-04-08 04:58:12 +08:00
|
|
|
//===- PassDetail.h - Transforms Pass class details -------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, 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 TRANSFORMS_PASSDETAIL_H_
|
|
|
|
#define TRANSFORMS_PASSDETAIL_H_
|
|
|
|
|
|
|
|
#include "mlir/Pass/Pass.h"
|
2021-09-26 06:46:03 +08:00
|
|
|
#include "mlir/Transforms/Passes.h"
|
2020-04-08 04:58:12 +08:00
|
|
|
|
|
|
|
namespace mlir {
|
2021-05-24 11:04:45 +08:00
|
|
|
class AffineDialect;
|
|
|
|
|
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-19 04:01:19 +08:00
|
|
|
// Forward declaration from Dialect.h
|
|
|
|
template <typename ConcreteDialect>
|
|
|
|
void registerDialect(DialectRegistry ®istry);
|
|
|
|
|
2021-10-13 07:14:57 +08:00
|
|
|
namespace arith {
|
|
|
|
class ArithmeticDialect;
|
2021-12-08 02:27:58 +08:00
|
|
|
} // namespace arith
|
2021-10-13 07:14:57 +08:00
|
|
|
|
2021-02-10 20:53:11 +08:00
|
|
|
namespace memref {
|
|
|
|
class MemRefDialect;
|
2021-12-08 02:27:58 +08:00
|
|
|
} // namespace memref
|
2021-02-10 20:53:11 +08:00
|
|
|
|
2021-11-29 20:45:01 +08:00
|
|
|
namespace bufferization {
|
|
|
|
class BufferizationDialect;
|
|
|
|
} // namespace bufferization
|
|
|
|
|
2020-04-08 04:58:12 +08:00
|
|
|
#define GEN_PASS_CLASSES
|
|
|
|
#include "mlir/Transforms/Passes.h.inc"
|
|
|
|
|
2021-12-08 02:27:58 +08:00
|
|
|
} // namespace mlir
|
2020-04-08 04:58:12 +08:00
|
|
|
|
|
|
|
#endif // TRANSFORMS_PASSDETAIL_H_
|