CIRCT 21.0.0git
Loading...
Searching...
No Matches
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
19namespace mlir {
20template <typename T>
21class OperationPass;
22} // namespace mlir
23
24namespace circt {
25namespace hw {
26class HWModuleOp;
27} // namespace hw
28} // namespace circt
29
30namespace circt {
31
32#define GEN_PASS_DECL_LOWERHWTOSV
33#include "circt/Conversion/Passes.h.inc"
34
35std::unique_ptr<mlir::OperationPass<hw::HWModuleOp>> createLowerHWToSVPass();
36} // namespace circt
37
38#endif // CIRCT_CONVERSION_HWTOSV_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
std::unique_ptr< mlir::OperationPass< hw::HWModuleOp > > createLowerHWToSVPass()
Definition HWToSV.cpp:86
Definition hw.py:1