CIRCT 20.0.0git
Loading...
Searching...
No Matches
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
19namespace mlir {
20template <typename T>
21class OperationPass;
22class ModuleOp;
23} // namespace mlir
24
25namespace circt {
26
27#define GEN_PASS_DECL_CONVERTHWTOSYSTEMC
28#include "circt/Conversion/Passes.h.inc"
29
30std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
32} // namespace circt
33
34#endif // CIRCT_CONVERSION_HWTOSYSTEMC_HWTOSYSTEMC_H_
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
std::unique_ptr< mlir::OperationPass< mlir::ModuleOp > > createConvertHWToSystemCPass()
Create a HW to SystemC dialects conversion pass.