CIRCT 20.0.0git
Loading...
Searching...
No Matches
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
19namespace circt {
20
21#define GEN_PASS_DECL_LOWERFIRMEM
22#define GEN_PASS_DECL_LOWERSEQTOSV
23#include "circt/Conversion/Passes.h.inc"
24
25std::unique_ptr<mlir::Pass>
26createLowerSeqToSVPass(const LowerSeqToSVOptions &options = {});
27std::unique_ptr<mlir::Pass> createLowerFirMemPass();
28std::unique_ptr<mlir::Pass> createLowerSeqFIRRTLInitToSV();
29
30} // namespace circt
31
32#endif // CIRCT_CONVERSION_SEQTOSV_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
std::unique_ptr< mlir::Pass > createLowerSeqFIRRTLInitToSV()
std::unique_ptr< mlir::Pass > createLowerSeqToSVPass(const LowerSeqToSVOptions &options={})
Definition SeqToSV.cpp:852
std::unique_ptr< mlir::Pass > createLowerFirMemPass()