Loading [MathJax]/extensions/tex2jax.js
CIRCT 22.0.0git
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Passes.h
Go to the documentation of this file.
1//===- Passes.h - Conversion Pass Construction and Registration -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This fle contains the declarations to register conversion passes.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef CIRCT_CONVERSION_PASSES_H
14#define CIRCT_CONVERSION_PASSES_H
15
53#include "mlir/IR/DialectRegistry.h"
54#include "mlir/Pass/Pass.h"
55#include "mlir/Pass/PassRegistry.h"
56
57namespace circt {
58
59// Generate the code for registering conversion passes.
60#define GEN_PASS_REGISTRATION
61#include "circt/Conversion/Passes.h.inc"
62
63} // namespace circt
64
65#endif // CIRCT_CONVERSION_PASSES_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.