object BackendCompilationUtilities extends LazyLogging
- Alphabetic
- By Inheritance
- BackendCompilationUtilities
- LazyLogging
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- lazy val TestDirectory: File
Parent directory for tests
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def copyResourceToFile(name: String, file: File): Unit
Copy the contents of a resource to a destination file.
Copy the contents of a resource to a destination file.
- name
the name of the resource
- file
the file to write it into
- def cppToExe(prefix: String, dir: File): ProcessBuilder
- def createTestDirectory(testName: String): File
Create a test directory
Create a test directory
Will create outer directory called testName then inner directory based on the current time
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def executeExpectingFailure(prefix: String, dir: File, assertionMsg: String = ""): Boolean
- def executeExpectingSuccess(prefix: String, dir: File): Boolean
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def firrtlToVerilog(prefix: String, dir: File): ProcessBuilder
compule chirrtl to verilog by using a separate process
compule chirrtl to verilog by using a separate process
- prefix
basename of the file
- dir
directory where file lives
- returns
true if compiler completed successfully
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getLogger: Logger
- Definition Classes
- LazyLogging
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val logger: Logger
- Attributes
- protected
- Definition Classes
- LazyLogging
- def loggingProcessLogger: ProcessLogger
- def makeHarness(template: (String) => String, post: String)(f: File): File
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def timeStamp: String
- def toString(): String
- Definition Classes
- AnyRef → Any
- def verilogToCpp(dutFile: String, dir: File, vSources: Seq[File], cppHarness: File, suppressVcd: Boolean = false, resourceFileName: String = firrtl.transforms.BlackBoxSourceHelper.defaultFileListName, extraCmdLineArgs: Seq[String] = Seq.empty): ProcessBuilder
Generates a Verilator invocation to convert Verilog sources to C++ simulation sources.
Generates a Verilator invocation to convert Verilog sources to C++ simulation sources.
The Verilator prefix will be V$dutFile, and running this will generate C++ sources and headers as well as a makefile to compile them.
Verilator will automatically locate the top-level module as the one among all the files which are not included elsewhere. If multiple ones exist, the compilation will fail.
If the file BlackBoxSourceHelper.fileListName (or an overridden .f resource filename that is specified with the optional resourceFileName parameter) exists in the output directory, it contains a list of source files to be included. Filter out any files in the vSources sequence that are in this file so we don't include the same file multiple times. This complication is an attempt to work-around the fact that clients used to have to explicitly include additional Verilog sources. Now, more of that is automatic.
- dutFile
name of the DUT .v without the .v extension
- dir
output directory
- vSources
list of additional Verilog sources to compile
- cppHarness
C++ testharness to compile/link against
- suppressVcd
specifies if VCD tracing should be suppressed
- resourceFileName
specifies what filename to look for to find a .f file
- extraCmdLineArgs
list of additional command line arguments
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()