CIRCT  19.0.0git
PassDetails.h
Go to the documentation of this file.
1 //===- PassDetails.h - Calyx pass class details -----------------*- 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 // Contains the stuff shared between the different Calyx passes.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 // clang-tidy seems to expect the absolute path in the
14 // header guard on some systems, so just disable it.
15 // NOLINTNEXTLINE(llvm-header-guard)
16 #ifndef DIALECT_CALYX_TRANSFORMS_PASSDETAILS_H
17 #define DIALECT_CALYX_TRANSFORMS_PASSDETAILS_H
18 
21 #include "mlir/Pass/Pass.h"
22 
23 namespace circt {
24 namespace calyx {
25 
26 #define GEN_PASS_CLASSES
27 #include "circt/Dialect/Calyx/CalyxPasses.h.inc"
28 
29 } // namespace calyx
30 } // namespace circt
31 
32 #endif // DIALECT_CALYX_TRANSFORMS_PASSDETAILS_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21