CIRCT  19.0.0git
HWToSV.h
Go to the documentation of this file.
1 //===- HWToSV.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 HWToSV pass
10 // constructors.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef CIRCT_CONVERSION_HWTOSV_H
15 #define CIRCT_CONVERSION_HWTOSV_H
16 
17 #include <memory>
18 
19 namespace mlir {
20 template <typename T>
21 class OperationPass;
22 } // namespace mlir
23 
24 namespace circt {
25 namespace hw {
26 class HWModuleOp;
27 } // namespace hw
28 } // namespace circt
29 
30 namespace circt {
31 std::unique_ptr<mlir::OperationPass<hw::HWModuleOp>> createLowerHWToSVPass();
32 } // namespace circt
33 
34 #endif // CIRCT_CONVERSION_HWTOSV_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21
std::unique_ptr< mlir::OperationPass< hw::HWModuleOp > > createLowerHWToSVPass()
Definition: HWToSV.cpp:81
Definition: hw.py:1