Package

firrtl

Permalink

package firrtl

Content Hierarchy
Visibility
  1. Public
  2. All

Type Members

  1. case class AnnotationMap(annotations: Seq[Annotation]) extends Product with Serializable

    Permalink

    Container of all annotations for a Firrtl compiler.

  2. case class CDefMPort(info: Info, name: String, tpe: Type, mem: String, exps: Seq[Expression], direction: MPortDir) extends Statement with Product with Serializable

    Permalink
  3. case class CDefMemory(info: Info, name: String, tpe: Type, size: Int, seq: Boolean) extends Statement with Product with Serializable

    Permalink
  4. class ChirrtlToHighFirrtl extends CoreTransform

    Permalink

    This transforms "CHIRRTL", the chisel3 IR, to "Firrtl".

    This transforms "CHIRRTL", the chisel3 IR, to "Firrtl". Note the resulting circuit has only IR nodes, not WIR.

  5. sealed abstract class CircuitForm extends Ordered[CircuitForm]

    Permalink

    Current form of the Firrtl Circuit

    Current form of the Firrtl Circuit

    Form is a measure of addition restrictions on the legality of a Firrtl circuit. There is a notion of "highness" and "lowness" implemented in the compiler by extending scala.math.Ordered. "Lower" forms add additional restrictions compared to "higher" forms. This means that "higher" forms are strictly supersets of the "lower" forms. Thus, that any transform that operates on HighForm can also operate on MidForm or LowForm

  6. case class CircuitState(circuit: Circuit, form: CircuitForm, annotations: Option[AnnotationMap] = None, renames: Option[RenameMap] = None) extends Product with Serializable

    Permalink

    Current State of the Circuit

    Current State of the Circuit

    circuit

    The current state of the Firrtl AST

    form

    The current form of the circuit

    annotations

    The current collection of Annotation

    renames

    A map of Named things that have been renamed. Generally only a return value from Transforms

  7. case class CommonOptions(topName: String = "", targetDirName: String = ".", globalLogLevel: logger.LogLevel.Value = LogLevel.None, logToFile: Boolean = false, logClassNames: Boolean = false, classLogLevels: Map[String, logger.LogLevel.Value] = Map.empty, programArgs: Seq[String] = Seq.empty) extends ComposableOptions with Product with Serializable

    Permalink

    Most of the chisel toolchain components require a topName which defines a circuit or a device under test.

    Most of the chisel toolchain components require a topName which defines a circuit or a device under test. Much of the work that is done takes place in a directory. It would be simplest to require topName to be defined but in practice it is preferred to defer this. For example, in chisel, by deferring this it is possible for the execute there to first elaborate the circuit and then set the topName from that if it has not already been set.

  8. trait Compiler extends LazyLogging

    Permalink
  9. trait ComposableOptions extends AnyRef

    Permalink

    Use this trait to define an options class that can add its private command line options to a externally declared parser

  10. trait Constraint extends AnyRef

    Permalink
  11. sealed abstract class CoreTransform extends SeqTransform

    Permalink
  12. sealed abstract class EmitAnnotation extends AnyRef

    Permalink
  13. sealed abstract class EmittedAnnotation[T <: EmittedComponent] extends AnyRef

    Permalink

    Super class for Annotations containing emitted components

    Super class for Annotations containing emitted components

    Note

    These annotations cannot be serialized and deserialized to/from an annotation file

  14. sealed abstract class EmittedCircuit extends EmittedComponent

    Permalink
  15. sealed abstract class EmittedComponent extends AnyRef

    Permalink
  16. final case class EmittedFirrtlCircuit(name: String, value: String) extends EmittedCircuit with Product with Serializable

    Permalink
  17. final case class EmittedFirrtlModule(name: String, value: String) extends EmittedModule with Product with Serializable

    Permalink
  18. sealed abstract class EmittedModule extends EmittedComponent

    Permalink
  19. final case class EmittedVerilogCircuit(name: String, value: String) extends EmittedCircuit with Product with Serializable

    Permalink
  20. final case class EmittedVerilogModule(name: String, value: String) extends EmittedModule with Product with Serializable

    Permalink
  21. trait Emitter extends Transform

    Permalink

    Defines old API for Emission.

    Defines old API for Emission. Deprecated

  22. case class EmitterException(message: String) extends PassException with Product with Serializable

    Permalink
  23. class ExecutionOptionsManager extends HasParser with HasCommonOptions

    Permalink

  24. case class ExpWidth(arg1: Width) extends Width with HasMapWidth with Product with Serializable

    Permalink
  25. class FIRRTLException extends Exception

    Permalink
  26. sealed abstract class FirrtlEmitter extends Transform with Emitter

    Permalink
  27. case class FirrtlExecutionFailure(message: String) extends FirrtlExecutionResult with Product with Serializable

    Permalink

    The firrtl compilation failed.

    The firrtl compilation failed.

    message

    Some kind of hint as to what went wrong.

  28. case class FirrtlExecutionOptions(inputFileNameOverride: String = "", outputFileNameOverride: String = "", compilerName: String = "verilog", infoModeName: String = "append", inferRW: Seq[String] = Seq.empty, firrtlSource: Option[String] = None, customTransforms: Seq[Transform] = List.empty, annotations: List[Annotation] = List.empty, annotationFileNameOverride: String = "", outputAnnotationFileName: String = "", forceAppendAnnoFile: Boolean = false, emitOneFilePerModule: Boolean = false, dontCheckCombLoops: Boolean = false, noDCE: Boolean = false) extends ComposableOptions with Product with Serializable

    Permalink

    The options that firrtl supports in callable component sense

    The options that firrtl supports in callable component sense

    inputFileNameOverride

    default is targetDir/topName.fir

    outputFileNameOverride

    default is targetDir/topName.v the .v is based on the compilerName parameter

    compilerName

    which compiler to use

    annotations

    annotations to pass to compiler

  29. sealed trait FirrtlExecutionResult extends AnyRef

    Permalink
  30. case class FirrtlExecutionSuccess(emitType: String, emitted: String) extends FirrtlExecutionResult with Product with Serializable

    Permalink

    Indicates a successful execution of the firrtl compiler, returning the compiled result and the type of compile

    Indicates a successful execution of the firrtl compiler, returning the compiled result and the type of compile

    emitType

    The name of the compiler used, currently "high", "middle", "low", or "verilog"

    emitted

    The emitted result of compilation

  31. trait Gender extends AnyRef

    Permalink
  32. trait HasCommonOptions extends AnyRef

    Permalink
  33. trait HasFirrtlOptions extends AnyRef

    Permalink
  34. abstract class HasParser extends AnyRef

    Permalink
  35. class HighFirrtlCompiler extends Compiler

    Permalink

    Emits input circuit Will replace Chirrtl constructs with Firrtl

  36. class HighFirrtlEmitter extends FirrtlEmitter

    Permalink
  37. class HighFirrtlToMiddleFirrtl extends CoreTransform

    Permalink

    Expands aggregate connects, removes dynamic accesses, and when statements.

    Expands aggregate connects, removes dynamic accesses, and when statements. Checks for uninitialized values. Must accept a well-formed graph. Operates on working IR nodes.

  38. class IRToWorkingIR extends CoreTransform

    Permalink

    Converts from the bare intermediate representation (ir.scala) to a working representation (WIR.scala)

  39. case class InvalidEscapeCharException(message: String) extends ParserException with Product with Serializable

    Permalink
  40. case class InvalidStringLitException(message: String) extends ParserException with Product with Serializable

    Permalink
  41. trait Kind extends AnyRef

    Permalink
  42. abstract class LexerHelper extends AnyRef

    Permalink
  43. class LowFirrtlCompiler extends Compiler

    Permalink

    Emits lowered input circuit

  44. class LowFirrtlEmitter extends FirrtlEmitter

    Permalink
  45. class LowFirrtlOptimization extends CoreTransform

    Permalink

    Runs a series of optimization passes on LowFirrtl

    Runs a series of optimization passes on LowFirrtl

    Note

    This is currently required for correct Verilog emission TODO Fix the above note

  46. abstract class MPortDir extends FirrtlNode

    Permalink
  47. case class MaxWidth(args: Seq[Width]) extends Width with HasMapWidth with Product with Serializable

    Permalink
  48. class MemoizedHash[T] extends AnyRef

    Permalink
  49. class MiddleFirrtlCompiler extends Compiler

    Permalink

    Emits middle Firrtl input circuit

  50. class MiddleFirrtlEmitter extends FirrtlEmitter

    Permalink
  51. class MiddleFirrtlToLowFirrtl extends CoreTransform

    Permalink

    Expands all aggregate types into many ground-typed components.

    Expands all aggregate types into many ground-typed components. Must accept a well-formed graph of only middle Firrtl features. Operates on working IR nodes.

  52. case class MinWidth(args: Seq[Width]) extends Width with HasMapWidth with Product with Serializable

    Permalink
  53. case class MinusWidth(arg1: Width, arg2: Width) extends Width with HasMapWidth with Product with Serializable

    Permalink
  54. class ModuleGraph extends AnyRef

    Permalink

    Maintains a one to many graph of each modules instantiated child module.

    Maintains a one to many graph of each modules instantiated child module. This graph can be searched for a path from a child module back to one of it's parents. If one is found a recursive loop has happened The graph is a map between the name of a node to set of names of that nodes children

  55. class Namespace extends AnyRef

    Permalink
  56. final case class OneFilePerModule(targetDir: String) extends OutputConfig with Product with Serializable

    Permalink
  57. sealed abstract class OutputConfig extends AnyRef

    Permalink

    Firrtl output configuration specified by FirrtlExecutionOptions

    Firrtl output configuration specified by FirrtlExecutionOptions

    Derived from the fields of the execution options

    See also

    FirrtlExecutionOptions.getOutputConfig

  58. case class ParameterNotSpecifiedException(message: String) extends ParserException with Product with Serializable

    Permalink
  59. case class ParameterRedefinedException(message: String) extends ParserException with Product with Serializable

    Permalink
  60. class ParserException extends Exception

    Permalink
  61. case class PlusWidth(arg1: Width, arg2: Width) extends Width with HasMapWidth with Product with Serializable

    Permalink
  62. class RenameMap extends AnyRef

    Permalink
  63. class ResolveAndCheck extends CoreTransform

    Permalink

    Resolves types, kinds, and genders, and checks the circuit legality.

    Resolves types, kinds, and genders, and checks the circuit legality. Operates on working IR nodes and high Firrtl.

  64. abstract class SeqTransform extends Transform with SeqTransformBased

    Permalink

    For transformations that are simply a sequence of transforms

  65. trait SeqTransformBased extends AnyRef

    Permalink
  66. final case class SingleFile(targetFile: String) extends OutputConfig with Product with Serializable

    Permalink
  67. abstract class Transform extends LazyLogging

    Permalink

    The basic unit of operating on a Firrtl AST

  68. case class VRandom(width: BigInt) extends Expression with Product with Serializable

    Permalink
  69. case class VarWidth(name: String) extends Width with HasMapWidth with Product with Serializable

    Permalink
  70. class VerilogCompiler extends Compiler

    Permalink

    Emits Verilog

  71. class VerilogEmitter extends SeqTransform with Emitter

    Permalink
  72. class Visitor extends FIRRTLBaseVisitor[FirrtlNode]

    Permalink
  73. case class WDefInstance(info: Info, name: String, module: String, tpe: Type) extends Statement with IsDeclaration with Product with Serializable

    Permalink
  74. case class WDefInstanceConnector(info: Info, name: String, module: String, tpe: Type, portCons: Seq[(Expression, Expression)]) extends Statement with IsDeclaration with Product with Serializable

    Permalink
  75. class WGeq extends Constraint

    Permalink
  76. case class WRef(name: String, tpe: Type, kind: Kind, gender: Gender) extends Expression with Product with Serializable

    Permalink
  77. case class WSubAccess(expr: Expression, index: Expression, tpe: Type, gender: Gender) extends Expression with Product with Serializable

    Permalink
  78. case class WSubField(expr: Expression, name: String, tpe: Type, gender: Gender) extends Expression with Product with Serializable

    Permalink
  79. case class WSubIndex(expr: Expression, value: Int, tpe: Type, gender: Gender) extends Expression with Product with Serializable

    Permalink
  80. class WrappedExpression extends AnyRef

    Permalink
  81. class WrappedType extends AnyRef

    Permalink
  82. class WrappedWidth extends AnyRef

    Permalink

Value Members

  1. object Addw extends PrimOp with Product with Serializable

    Permalink
  2. object BIGENDER extends Gender with Product with Serializable

    Permalink
  3. object ChirrtlForm extends CircuitForm with Product with Serializable

    Permalink

    Chirrtl Form

    Chirrtl Form

    The form of the circuit emitted by Chisel. Not a true Firrtl form. Includes cmem, smem, and mport IR nodes which enable declaring memories separately form their ports. A "Higher" form than HighForm

    See CDefMemory and CDefMPort

  4. object CompilerUtils extends LazyLogging

    Permalink
  5. object Driver

    Permalink

    The driver provides methods to access the firrtl compiler.

    The driver provides methods to access the firrtl compiler. Invoke the compiler with either a FirrtlExecutionOption

    Examples:
    1. firrtl.Driver.execute(Array("--top-name Dummy --compiler verilog".split(" +"))

      each approach has its own endearing aspects

    2. ,
    3. val optionsManager = new ExecutionOptionsManager("firrtl")
      optionsManager.register(
          FirrtlExecutionOptionsKey ->
          new FirrtlExecutionOptions(topName = "Dummy", compilerName = "verilog"))
      firrtl.Driver.execute(optionsManager)

      or a series of command line arguments

    See also

    CompilerUtils.mergeTransforms to see how customTransformations are inserted

    firrtlTests/DriverSpec.scala in the test directory for a lot more examples

  6. object Dshlw extends PrimOp with Product with Serializable

    Permalink
  7. object EmitAllModulesAnnotation extends EmitAnnotation

    Permalink
  8. object EmitCircuitAnnotation extends EmitAnnotation

    Permalink
  9. object EmittedCircuitAnnotation

    Permalink
  10. object EmittedFirrtlCircuitAnnotation extends EmittedAnnotation[EmittedFirrtlCircuit]

    Permalink
  11. object EmittedFirrtlModuleAnnotation extends EmittedAnnotation[EmittedFirrtlModule]

    Permalink
  12. object EmittedModuleAnnotation

    Permalink
  13. object EmittedVerilogCircuitAnnotation extends EmittedAnnotation[EmittedVerilogCircuit]

    Permalink
  14. object EmittedVerilogModuleAnnotation extends EmittedAnnotation[EmittedVerilogModule]

    Permalink
  15. object EmptyExpression extends Expression with Product with Serializable

    Permalink
  16. object ExpKind extends Kind with Product with Serializable

    Permalink
  17. object FEMALE extends Gender with Product with Serializable

    Permalink
  18. object FileUtils

    Permalink
  19. object HighForm extends CircuitForm with Product with Serializable

    Permalink

    High Form

    High Form

    As detailed in the Firrtl specification https://github.com/ucb-bar/firrtl/blob/master/spec/spec.pdf

    Also see firrtl.ir

  20. object InstanceKind extends Kind with Product with Serializable

    Permalink
  21. object LowForm extends CircuitForm with Product with Serializable

    Permalink

    Low Form

    Low Form

    The "lowest" form. In addition to the restrictions in MidForm:

    • All aggregate types (vector/bundle) must have been removed
    • All implicit truncations must be made explicit
  22. object MALE extends Gender with Product with Serializable

    Permalink
  23. object MInfer extends MPortDir with Product with Serializable

    Permalink
  24. object MRead extends MPortDir with Product with Serializable

    Permalink
  25. object MReadWrite extends MPortDir with Product with Serializable

    Permalink
  26. object MWrite extends MPortDir with Product with Serializable

    Permalink
  27. object Mappers

    Permalink
  28. object MemKind extends Kind with Product with Serializable

    Permalink
  29. object MemoizedHash

    Permalink
  30. object MidForm extends CircuitForm with Product with Serializable

    Permalink

    Middle Form

    Middle Form

    A "lower" form than HighForm with the following restrictions:

    • All widths must be explicit
    • All whens must be removed
    • There can only be a single connection to any element
  31. object Namespace

    Permalink
  32. object NodeKind extends Kind with Product with Serializable

    Permalink
  33. object Parser extends LazyLogging

    Permalink
  34. object PoisonKind extends Kind with Product with Serializable

    Permalink
  35. object PortKind extends Kind with Product with Serializable

    Permalink
  36. object PrimOps extends LazyLogging

    Permalink

    Definitions and Utility functions for ir.PrimOps

  37. object RegKind extends Kind with Product with Serializable

    Permalink
  38. object RenameMap

    Permalink

    RenameMap maps old names to modified names.

    RenameMap maps old names to modified names. Generated by transformations that modify names

  39. object Shlw extends PrimOp with Product with Serializable

    Permalink
  40. object Subw extends PrimOp with Product with Serializable

    Permalink
  41. object TargetDirAnnotation extends GlobalCircuitAnnotation

    Permalink

    annotations.GlobalCircuitAnnotation that contains the CommonOptions target directory

  42. object UNKNOWNGENDER extends Gender with Product with Serializable

    Permalink
  43. object UnknownForm extends CircuitForm with Product with Serializable

    Permalink

    Unknown Form

    Unknown Form

    Often passes may modify a circuit (e.g. InferTypes), but return a circuit in the same form it was given.

    For this use case, use UnknownForm. It cannot be compared against other forms.

    TODO(azidar): Replace with PreviousForm, which more explicitly encodes this requirement.

  44. object Utils extends LazyLogging

    Permalink
  45. object WDefInstance extends Serializable

    Permalink
  46. object WGeq

    Permalink
  47. object WInvalid extends Expression with Product with Serializable

    Permalink
  48. object WRef extends Serializable

    Permalink
  49. object WSubField extends Serializable

    Permalink
  50. object WVoid extends Expression with Product with Serializable

    Permalink
  51. object WireKind extends Kind with Product with Serializable

    Permalink
  52. object WrappedExpression

    Permalink
  53. object WrappedType

    Permalink
  54. object WrappedWidth

    Permalink
  55. package analyses

    Permalink
  56. package annotations

    Permalink
  57. package antlr

    Permalink
  58. object bitWidth

    Permalink
  59. object castRhs

    Permalink
  60. object connectFields

    Permalink
  61. object flattenType

    Permalink
  62. object fromBits

    Permalink
  63. object getWidth

    Permalink
  64. package graph

    Permalink
  65. package ir

    Permalink
  66. package passes

    Permalink
  67. object seqCat

    Permalink
  68. object toBits

    Permalink

    Given an expression, return an expression consisting of all sub-expressions concatenated (or flattened).

  69. package transforms

    Permalink
  70. package util

    Permalink

Ungrouped