项目作者: sifive

项目描述 :
Library to compile Chisel circuits using LLVM/MLIR (CIRCT)
高级语言: Scala
项目地址: git://github.com/sifive/chisel-circt.git
创建时间: 2021-01-14T16:29:07Z
项目社区:https://github.com/sifive/chisel-circt

开源协议:Apache License 2.0

下载


This project has been upstreamed to chipsalliance/chisel. Any proposed improvements to this repository should be redirected to pull requests on upstream Chisel.

chisel-circt

Maven Central
Sonatype Nexus (Snapshots)
Javadoc

Compile Chisel using CIRCT/MLIR

This library provides a ChiselStage-like interface for compiling a Chisel circuit using the MLIR-based FIRRTL Compiler (MFC) included in the llvm/circt project.
This is an alternative to the Scala-based FIRRTL Compiler (SFC) that Chisel uses by default and is developed in chipsalliance/firrtl.

The MFC is a feature complete FIRRTL compiler, but does not support every annotation and custom transform-backed extension to Chisel.

If you suspect a CIRCT bug or have questions, you can file an issue on this repository, post on Discourse, or file an issue on CIRCT.

Setup

Include the following in your build.sbt.
See the badges above for latest release or snapshot version.

  1. libraryDependencies += "com.sifive" %% "chisel-circt" % "X.Y.Z"

Additionally, install CIRCT.
You can either:

  1. Download a release from llvm/circt releases
  2. Build and install from source

This project is compatible with (at least) the released version of CIRCT that it was tested with in CI.
This is documented in the release notes of the latest tag.

After CIRCT installation is complete, you need firtool (the tool provided with CIRCT to compile FIRRTL circuits) on your path so chisel-circt can use it.

Base Project

Alternatively, a base project is provided in sifive/chisel-circt-demo.

Example

You can use circt.stage.ChiselStage almost exactly like chsel3.stage.ChiselStage.
E.g., the following will compile a simple module using CIRCT.

  1. import chisel3._
  2. class Foo extends RawModule {
  3. val a = IO(Input(Bool()))
  4. val b = IO(Output(Bool()))
  5. b := ~a
  6. }
  7. /* Note: this is using circt.stage.ChiselStage */
  8. val verilogString = circt.stage.ChiselStage.emitSystemVerilog(new Foo)
  9. println(verilogString)
  10. /** This will return:
  11. *
  12. * module Foo(
  13. * input a,
  14. * output b);
  15. *
  16. * assign b = ~a;
  17. * endmodule
  18. */

The method emitSystemVerilog also accepts parameters for Chisel arguments and Firtool options.

Another option is using emitSystemVerilogFile to generate output files.
Eg. Below the files are created on “./generated” directory (passing Chisel args) and without debug source locators (firtool option).

  1. ChiselStage.emitSystemVerilogFile(
  2. new Foo,
  3. Array("--target-dir", "generated"),
  4. Array("--strip-debug-info"),
  5. )