Object

firrtl.passes

LowerTypes

Related Doc: package passes

Permalink

object LowerTypes extends Transform

Removes all aggregate types from a firrtl.ir.Circuit

Source
LowerTypes.scala
Example:
  1. wire foo : { a : UInt<32>, b : UInt<16> }

    lowers to

    wire foo_a : UInt<32>
    wire foo_b : UInt<16>
Note

Assumes firrtl.ir.Connects and firrtl.ir.IsInvalids only operate on firrtl.ir.Expressions of ground type

,

Assumes firrtl.ir.SubAccesses have been removed

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

Type Members

  1. type MemDataTypeMap = HashMap[String, Type]

    Permalink

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. val delim: String

    Permalink

    Delimiter used in lowering names

  7. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. 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
    LowerTypesTransform
  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: UnknownForm.type

    Permalink

    The firrtl.CircuitForm that this transform requires to operate on

    The firrtl.CircuitForm that this transform requires to operate on

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

    Permalink
    Definition Classes
    Any
  15. val logger: Logger

    Permalink
    Definition Classes
    LazyLogging
  16. def lowerTypes(renames: RenameMap)(m: DefModule): DefModule

    Permalink
  17. def lowerTypesExp(memDataTypeMap: MemDataTypeMap, info: Info, mname: String)(e: Expression): Expression

    Permalink
  18. def lowerTypesMemExp(memDataTypeMap: MemDataTypeMap, info: Info, mname: String)(e: Expression): Seq[Expression]

    Permalink
  19. def lowerTypesStmt(memDataTypeMap: MemDataTypeMap, minfo: Info, mname: String, renames: RenameMap)(s: Statement): Statement

    Permalink
  20. def loweredName(s: Seq[String]): String

    Permalink
  21. def loweredName(e: Expression): String

    Permalink

    Expands a chain of referential firrtl.ir.Expressions into the equivalent lowered name

    Expands a chain of referential firrtl.ir.Expressions into the equivalent lowered name

    e

    firrtl.ir.Expression made up of _only_ firrtl.WRef, firrtl.WSubField, and firrtl.WSubIndex

    returns

    Lowered name of e

  22. def name: String

    Permalink

    A convenience function useful for debugging and error messages

    A convenience function useful for debugging and error messages

    Definition Classes
    TransformTransformLike
  23. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  26. def outputForm: UnknownForm.type

    Permalink

    The firrtl.CircuitForm that this transform outputs

    The firrtl.CircuitForm that this transform outputs

    Definition Classes
    LowerTypesTransform
  27. def renameExps(renames: RenameMap, e: Expression, root: String): Seq[String]

    Permalink
  28. def renameExps(renames: RenameMap, n: String, t: Type): Seq[String]

    Permalink
  29. def renameExps(renames: RenameMap, n: String, t: Type, root: String): Seq[String]

    Permalink
  30. 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
  31. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  33. def transform(state: CircuitState): CircuitState

    Permalink

    A mathematical transform on some type

    A mathematical transform on some type

    returns

    an output object of the same type

    Definition Classes
    TransformTransformLike
  34. final def wait(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. 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 Transform

Inherited from TransformLike[CircuitState]

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped