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