Object

firrtl.passes

ExpandWhens

Related Doc: package passes

Permalink

object ExpandWhens extends Transform with Pass

Expand Whens

This pass does the following things: $ - Remove last connect semantics $ - Remove conditional blocks $ - Eliminate concept of scoping $ - Consolidate attaches

Note

Assumes all references are declared

,

Assumes bulk connects and isInvalids have been expanded

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExpandWhens
  2. Pass
  3. Transform
  4. LazyLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Defaults = Seq[Map[WrappedExpression, Expression]]

    Permalink

    List of all netlists of each declared scope, ordered from closest to farthest

    List of all netlists of each declared scope, ordered from closest to farthest

    Note

    Note immutable.Map because conversion from mutable.LinkedHashMap to mutable.Map is VERY slow

  2. class InfoMap extends HashMap[String, Info]

    Permalink

    Collects Info data serialized names for nodes, aggregating into MultiInfo when necessary

  3. type Netlist = LinkedHashMap[WrappedExpression, Expression]

    Permalink

    Maps a reference to whatever connects to it.

    Maps a reference to whatever connects to it. Used to resolve last connect semantics

  4. type NodeMap = HashMap[MemoizedHash[Expression], String]

    Permalink

    Maps an expression to a declared node name.

    Maps an expression to a declared node name. Used to memoize predicates

  5. type Simlist = ArrayBuffer[Statement]

    Permalink

    Contains all simulation constructs

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def execute(state: CircuitState): CircuitState

    Permalink

    Perform the transform, encode renaming with RenameMap, and can delete annotations Called by runTransform.

    Perform the transform, encode renaming with RenameMap, and can delete annotations Called by runTransform.

    state

    Input Firrtl AST

    returns

    A transformed Firrtl AST

    Definition Classes
    PassTransform
  9. def expandWhens(m: Module): (Netlist, Simlist, Seq[Attach], Statement, InfoMap)

    Permalink

    Expands a module's when statements

    Expands a module's when statements

    m

    Module to expand

    Note

    Statement contains all declarations in the module (including DefNode's)

    ,

    Seq[Attach] contains all Attach statements (unsimplified)

    ,

    Simlist contains all simulation constructs in m

    ,

    Netlist maps a reference to whatever connects to it

  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. def inputForm: CircuitForm

    Permalink

    The firrtl.CircuitForm that this transform requires to operate on

    The firrtl.CircuitForm that this transform requires to operate on

    Definition Classes
    PassTransform
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. val logger: Logger

    Permalink
    Definition Classes
    LazyLogging
  16. def name: String

    Permalink

    A convenience function useful for debugging and error messages

    A convenience function useful for debugging and error messages

    Definition Classes
    Transform
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. def outputForm: CircuitForm

    Permalink

    The firrtl.CircuitForm that this transform outputs

    The firrtl.CircuitForm that this transform outputs

    Definition Classes
    PassTransform
  21. def run(c: Circuit): Circuit

    Permalink

    Returns circuit with when and last connection semantics resolved

    Returns circuit with when and last connection semantics resolved

    Definition Classes
    ExpandWhensPass
  22. final def runTransform(state: CircuitState): CircuitState

    Permalink

    Perform the transform and update annotations.

    Perform the transform and update annotations.

    state

    Input Firrtl AST

    returns

    A transformed Firrtl AST

    Definition Classes
    Transform
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. final def getMyAnnotations(state: CircuitState): Seq[Annotation]

    Permalink

    Convenience method to get annotations relevant to this Transform

    Convenience method to get annotations relevant to this Transform

    state

    The CircuitState form which to extract annotations

    returns

    A collection of annotations

    Definition Classes
    Transform
    Annotations
    @deprecated
    Deprecated

    (Since version 1.1) Just collect the actual Annotation types the transform wants

Inherited from Pass

Inherited from Transform

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped