CIRCT  19.0.0git
SSPPasses.h
Go to the documentation of this file.
1 //===- SSPPasses.h - SSP 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_SSP_SSPPASSES_H
14 #define CIRCT_DIALECT_SSP_SSPPASSES_H
15 
16 #include "mlir/Pass/Pass.h"
17 #include "mlir/Pass/PassRegistry.h"
18 #include <memory>
19 
20 namespace circt {
21 namespace ssp {
22 
23 std::unique_ptr<mlir::Pass> createPrintPass();
24 std::unique_ptr<mlir::Pass> createRoundtripPass();
25 std::unique_ptr<mlir::Pass> createSchedulePass();
26 
27 #define GEN_PASS_REGISTRATION
28 #include "circt/Dialect/SSP/SSPPasses.h.inc"
29 
30 } // namespace ssp
31 } // namespace circt
32 
33 #endif // CIRCT_DIALECT_SSP_SSPPASSES_H
std::unique_ptr< mlir::Pass > createSchedulePass()
Definition: Schedule.cpp:273
std::unique_ptr< mlir::Pass > createRoundtripPass()
Definition: Roundtrip.cpp:79
std::unique_ptr< mlir::Pass > createPrintPass()
Definition: Print.cpp:60
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21