Class

chisel3.core

LegacyModule

Related Doc: package core

Permalink

abstract class LegacyModule extends ImplicitModule

Legacy Module class that restricts IOs to just io, clock, and reset, and provides a constructor for threading through explicit clock and reset.

While this class isn't planned to be removed anytime soon (there are benefits to restricting IO), the clock and reset constructors will be phased out. Recommendation is to wrap the module in a withClock/withReset/withClockAndReset block, or directly hook up clock or reset IO pins.

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LegacyModule
  2. ImplicitModule
  3. UserModule
  4. BaseModule
  5. HasId
  6. InstanceId
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LegacyModule()(implicit moduleCompileOptions: CompileOptions)

    Permalink
  2. new LegacyModule(_clock: Clock, _reset: Bool)(implicit moduleCompileOptions: CompileOptions)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version chisel3) Module constructor with override _clock, _reset deprecated, use withClockAndReset

  3. new LegacyModule(_reset: Bool)(implicit moduleCompileOptions: CompileOptions)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version chisel3) Module constructor with override _reset deprecated, use withReset

  4. new LegacyModule(_clock: Clock)(implicit moduleCompileOptions: CompileOptions)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version chisel3) Module constructor with override _clock deprecated, use withClock

  5. new LegacyModule(override_clock: Option[Clock] = None, override_reset: Option[Bool] = None)(implicit moduleCompileOptions: CompileOptions)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version chisel3) Module constructor with override_clock and override_reset deprecated, use withClockAndReset

Abstract Value Members

  1. abstract def io: Record

    Permalink

Concrete 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. def IO[T <: Data](iodef: T): iodef.type

    Permalink

    This must wrap the datatype used to set the io field of any Module.

    This must wrap the datatype used to set the io field of any Module. i.e. All concrete modules must have defined io in this form: [lazy] val io[: io type] = IO(...[: io type])

    Items in [] are optional.

    The granted iodef WILL NOT be cloned (to allow for more seamless use of anonymous Bundles in the IO) and thus CANNOT have been bound to any logic. This will error if any node is bound (e.g. due to logic in a Bundle constructor, which is considered improper).

    Also registers a Data as a port, also performing bindings. Cannot be called once ports are requested (so that all calls to ports will return the same information). Internal API.

    TODO(twigg): Specifically walk the Data definition to call out which nodes are problematic.

    Attributes
    protected
    Definition Classes
    BaseModule
  5. def _autoWrapPorts(): Unit

    Permalink

    Compatibility function.

    Compatibility function. Allows Chisel2 code which had ports without the IO wrapper to compile under Bindings checks. Does nothing in non-compatibility mode.

    Should NOT be used elsewhere. This API will NOT last.

    TODO: remove this, perhaps by removing Bindings checks in compatibility mode.

    Definition Classes
    BaseModule
  6. var _closed: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  7. def _ioPortBound(): Boolean

    Permalink
    Attributes
    protected
  8. def annotate(annotation: ChiselAnnotation): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. val clock: Clock

    Permalink
    Definition Classes
    ImplicitModule
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val compileOptions: CompileOptions

    Permalink
    Definition Classes
    UserModule
  13. def desiredName: String

    Permalink

    Desired name of this module.

    Desired name of this module. Override this to give this module a custom, perhaps parametric, name.

    Definition Classes
    BaseModule
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    HasId → AnyRef → Any
  16. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def getCommands: Seq[Command]

    Permalink
    Attributes
    protected
    Definition Classes
    UserModule
  19. def getIds: Seq[HasId]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  20. def getModulePorts: Seq[Data]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  21. lazy val getPorts: Seq[Port]

    Permalink
    Definition Classes
    UserModule
  22. def hashCode(): Int

    Permalink
    Definition Classes
    HasId → AnyRef → Any
  23. def instanceName: String

    Permalink

    Signal name (for simulation).

    Signal name (for simulation).

    Definition Classes
    BaseModule → HasId → InstanceId
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final val name: String

    Permalink

    Legalized name of this module.

    Legalized name of this module.

    Definition Classes
    BaseModule
  26. def nameIds(rootClass: Class[_]): HashMap[HasId, String]

    Permalink

    Called at the Module.apply(...) level after this Module has finished elaborating.

    Called at the Module.apply(...) level after this Module has finished elaborating. Returns a map of nodes -> names, for named nodes.

    Helper method.

    Attributes
    protected
    Definition Classes
    LegacyModuleBaseModule
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  30. var override_clock: Option[Clock]

    Permalink
    Attributes
    protected
  31. var override_reset: Option[Bool]

    Permalink
    Attributes
    protected
  32. def parentModName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  33. def parentPathName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  34. def pathName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  35. def portsContains(elem: Data): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  36. def portsSize: Int

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  37. val reset: Bool

    Permalink
    Definition Classes
    ImplicitModule
  38. def suggestName(name: ⇒ String): LegacyModule.this.type

    Permalink
    Definition Classes
    HasId
  39. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from ImplicitModule

Inherited from UserModule

Inherited from BaseModule

Inherited from HasId

Inherited from InstanceId

Inherited from AnyRef

Inherited from Any

Ungrouped