CIRCT  20.0.0git
Passes.h
Go to the documentation of this file.
1 //===- Passes.h - Pass Entrypoints ------------------------------*- 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 for CIRCT BMC transformation passes.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef CIRCT_TOOLS_CIRCT_BMC_PASSES_H
14 #define CIRCT_TOOLS_CIRCT_BMC_PASSES_H
15 
16 #include "mlir/Pass/Pass.h"
17 
18 namespace circt {
19 
20 //===----------------------------------------------------------------------===//
21 // Registration
22 //===----------------------------------------------------------------------===//
23 
24 /// Generate the code for registering passes.
25 #define GEN_PASS_DECL_LOWERTOBMC
26 #define GEN_PASS_DECL_EXTERNALIZEREGISTERS
27 #define GEN_PASS_REGISTRATION
28 #include "circt/Tools/circt-bmc/Passes.h.inc"
29 
30 } // namespace circt
31 
32 #endif // CIRCT_TOOLS_CIRCT_BMC_PASSES_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21