CIRCT 20.0.0git
Loading...
Searching...
No Matches
ExportSystemC.h
Go to the documentation of this file.
1//===- ExportSystemC.h - SystemC Exporter -----------------------*- 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// Defines the interface to the SystemC emitter.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef CIRCT_TARGET_EXPORTSYSTEMC_H
14#define CIRCT_TARGET_EXPORTSYSTEMC_H
15
16#include "circt/Support/LLVM.h"
17
18namespace circt {
19namespace ExportSystemC {
20
21LogicalResult exportSystemC(ModuleOp module, llvm::raw_ostream &os);
22
23LogicalResult exportSplitSystemC(ModuleOp module, StringRef directory);
24
26
27} // namespace ExportSystemC
28} // namespace circt
29
30#endif // CIRCT_TARGET_EXPORTSYSTEMC_H
void registerExportSystemCTranslation()
LogicalResult exportSplitSystemC(ModuleOp module, StringRef directory)
LogicalResult exportSystemC(ModuleOp module, llvm::raw_ostream &os)
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.