CIRCT 20.0.0git
Loading...
Searching...
No Matches
SimToSV.h
Go to the documentation of this file.
1//===- SimToSV.h - SV conversion for sim ops ----------------===-*- 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// This file declares passes which lower `sim` to `sv` and `hw`.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef CIRCT_CONVERSION_SIMTOSV_H
14#define CIRCT_CONVERSION_SIMTOSV_H
15
16#include "circt/Support/LLVM.h"
17#include <memory>
18
19namespace circt {
20
21#define GEN_PASS_DECL_LOWERSIMTOSV
22#include "circt/Conversion/Passes.h.inc"
23
24std::unique_ptr<mlir::Pass> createLowerSimToSVPass();
25
26} // namespace circt
27
28#endif // CIRCT_CONVERSION_SIMTOSV_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
std::unique_ptr< mlir::Pass > createLowerSimToSVPass()
Definition SimToSV.cpp:370