CIRCT  19.0.0git
PassDetails.h
Go to the documentation of this file.
1 //===- PassDetails.h - Handshake 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 Handshake 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_HANDSHAKE_TRANSFORMS_PASSDETAILS_H
17 #define DIALECT_HANDSHAKE_TRANSFORMS_PASSDETAILS_H
18 
23 #include "mlir/Dialect/Arith/IR/Arith.h"
24 #include "mlir/Dialect/Func/IR/FuncOps.h"
25 #include "mlir/Dialect/SCF/IR/SCF.h"
26 #include "mlir/Pass/Pass.h"
27 
28 namespace circt {
29 namespace handshake {
30 
31 #define GEN_PASS_CLASSES
32 #include "circt/Dialect/Handshake/HandshakePasses.h.inc"
33 
34 } // namespace handshake
35 } // namespace circt
36 
37 #endif // DIALECT_HANDSHAKE_TRANSFORMS_PASSDETAILS_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21