CIRCT  19.0.0git
SeqToSV.h
Go to the documentation of this file.
1 //===- SeqToSV.h - SV conversion for seq 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 `seq` to `sv` and `hw`.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef CIRCT_CONVERSION_SEQTOSV_H
14 #define CIRCT_CONVERSION_SEQTOSV_H
15 
16 #include "circt/Support/LLVM.h"
17 #include <memory>
18 
19 namespace circt {
20 
21 #define GEN_PASS_DECL_LOWERSEQTOSV
22 #include "circt/Conversion/Passes.h.inc"
23 
24 std::unique_ptr<mlir::Pass>
25 createLowerSeqToSVPass(const LowerSeqToSVOptions &options = {});
26 std::unique_ptr<mlir::Pass> createLowerFirMemPass();
27 std::unique_ptr<mlir::Pass> createLowerSeqFIRRTLInitToSV();
28 
29 } // namespace circt
30 
31 #endif // CIRCT_CONVERSION_SEQTOSV_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21
std::unique_ptr< mlir::Pass > createLowerSeqFIRRTLInitToSV()
std::unique_ptr< mlir::Pass > createLowerSeqToSVPass(const LowerSeqToSVOptions &options={})
Definition: SeqToSV.cpp:646
std::unique_ptr< mlir::Pass > createLowerFirMemPass()
Definition: LowerFirMem.cpp:84