CIRCT  19.0.0git
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 
19 namespace circt {
20 
21 #define GEN_PASS_DECL_LOWERSIMTOSV
22 #include "circt/Conversion/Passes.h.inc"
23 
24 std::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.
Definition: DebugAnalysis.h:21
std::unique_ptr< mlir::Pass > createLowerSimToSVPass()
Definition: SimToSV.cpp:206