CIRCT  20.0.0git
SimPasses.h
Go to the documentation of this file.
1 //===- SimPasses.h - Sim pass entry points ----------------------*- 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 header file defines prototypes that expose pass constructors.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef CIRCT_DIALECT_SIM_SIMPASSES_H
14 #define CIRCT_DIALECT_SIM_SIMPASSES_H
15 
16 #include "mlir/Pass/Pass.h"
17 #include "llvm/ADT/StringRef.h"
18 
19 namespace circt {
20 namespace sim {
21 
22 #define GEN_PASS_DECL
23 #include "circt/Dialect/Sim/SimPasses.h.inc"
24 
25 /// Generate the code for registering passes.
26 #define GEN_PASS_REGISTRATION
27 #include "circt/Dialect/Sim/SimPasses.h.inc"
28 } // namespace sim
29 } // namespace circt
30 
31 #endif // CIRCT_DIALECT_SIM_SIMPASSES_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21