CIRCT  19.0.0git
HWToSystemC.h
Go to the documentation of this file.
1 //===- HWToSystemC.h - HW to SystemC pass entry point ---------------------===//
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 the HWToSystemC pass
10 // constructors.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef CIRCT_CONVERSION_HWTOSYSTEMC_HWTOSYSTEMC_H_
15 #define CIRCT_CONVERSION_HWTOSYSTEMC_HWTOSYSTEMC_H_
16 
17 #include <memory>
18 
19 namespace mlir {
20 template <typename T>
21 class OperationPass;
22 class ModuleOp;
23 } // namespace mlir
24 
25 namespace circt {
26 std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
28 } // namespace circt
29 
30 #endif // CIRCT_CONVERSION_HWTOSYSTEMC_HWTOSYSTEMC_H_
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21
std::unique_ptr< mlir::OperationPass< mlir::ModuleOp > > createConvertHWToSystemCPass()
Create a HW to SystemC dialects conversion pass.