abstract class BaseModule extends HasId with IsInstantiable
Abstract base class for Modules, an instantiable organizational unit for RTL.
- Annotations
- @nowarn()
- Source
- Module.scala
- Alphabetic
- By Inheritance
- BaseModule
- IsInstantiable
- HasId
- InstanceId
- AnyRef
- Any
- by BaseModuleExtensions
- by IsInstantiableExtensions
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-  new BaseModule()
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-    def +(other: String): String- Implicit
- This member is added by an implicit conversion from BaseModule toany2stringadd[BaseModule] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
 
-    def ->[B](y: B): (BaseModule, B)- Implicit
- This member is added by an implicit conversion from BaseModule toArrowAssoc[BaseModule] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-    def IO[T <: Data](iodef: => T)(implicit sourceInfo: SourceInfo): TThis 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 must be a chisel type and not be bound to hardware. 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
 
-    def _bindIoInPlace(iodef: Data)(implicit sourceInfo: SourceInfo): UnitChisel2 code didn't require the IO(...) wrapper and would assign a Chisel type directly to io, then do operations on it. Chisel2 code didn't require the IO(...) wrapper and would assign a Chisel type directly to io, then do operations on it. This binds a Chisel type in-place (mutably) as an IO. - Attributes
- protected
 
-    var _closed: Boolean- Attributes
- protected
 
-    def _moduleDefinitionIdentifierProposal: String- Attributes
- protected
 
-    def _traitModuleDefinitionIdentifierProposal: Option[String]- Attributes
- protected
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def circuitName: String- Attributes
- protected
- Definition Classes
- HasId
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
-   final  val definitionIdentifier: StringRepresents an eagerly-determined unique and descriptive identifier for this module 
-    def desiredName: StringThe desired name of this module (which will be used in generated FIRRTL IR or Verilog). The desired name of this module (which will be used in generated FIRRTL IR or Verilog). The name of a module approximates the behavior of the Java Reflection getSimpleNamemethod https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html#getSimpleName-- with some modifications:- Anonymous modules will get an "_Anon"tag - Modules defined in functions will use their class name and not a numeric name- Note
- If you want a custom or parametric name, override this method. 
 
-    def ensuring(cond: (BaseModule) => Boolean, msg: => Any): BaseModule- Implicit
- This member is added by an implicit conversion from BaseModule toEnsuring[BaseModule] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: (BaseModule) => Boolean): BaseModule- Implicit
- This member is added by an implicit conversion from BaseModule toEnsuring[BaseModule] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: Boolean, msg: => Any): BaseModule- Implicit
- This member is added by an implicit conversion from BaseModule toEnsuring[BaseModule] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: Boolean): BaseModule- Implicit
- This member is added by an implicit conversion from BaseModule toEnsuring[BaseModule] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(that: Any): Boolean- Definition Classes
- HasId → AnyRef → Any
 
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-    def getModulePorts: Seq[Data]- Attributes
- protected[chisel3]
 
-    def hasSeed: Boolean- returns
- Whether either autoName or suggestName has been called 
 - Definition Classes
- HasId
 
-    def hashCode(): Int- Definition Classes
- HasId → AnyRef → Any
 
-    def instanceName: StringSignal name (for simulation). Signal name (for simulation). - Definition Classes
- BaseModule → HasId → InstanceId
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  lazy val name: StringLegalized name of this module. 
-   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()
 
-    def parentModName: String- Definition Classes
- HasId → InstanceId
 
-    def parentPathName: String- Definition Classes
- HasId → InstanceId
 
-    def pathName: String- Definition Classes
- HasId → InstanceId
 
-    def portsContains(elem: Data): Boolean- Attributes
- protected
 
-    def portsSize: Int- Attributes
- protected
 
-    def suggestName(seed: => String): BaseModule.this.typeTakes the first seed suggested. Takes the first seed suggested. Multiple calls to this function will be ignored. If the final computed name conflicts with another name, it may get uniquified by appending a digit at the end. Is a higher priority than autoSeed, in that regardless of whetherautoSeedwas called, suggestName will always take precedence.- seed
- The seed for the name of this component 
- returns
- this object 
 - Definition Classes
- HasId
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-   final  def toAbsoluteTarget: IsModuleReturns a FIRRTL ModuleTarget that references this object Returns a FIRRTL ModuleTarget that references this object - Definition Classes
- BaseModule → InstanceId
- Note
- Should not be called until circuit elaboration is complete 
 
-    def toDefinition: Definition[BaseModule]- Implicit
- This member is added by an implicit conversion from BaseModule toBaseModuleExtensions[BaseModule] performed by method BaseModuleExtensions in chisel3.experimental.BaseModule.
- Definition Classes
- BaseModuleExtensions
 
-   final  def toNamed: ModuleNameReturns a FIRRTL ModuleName that references this object Returns a FIRRTL ModuleName that references this object - Definition Classes
- BaseModule → InstanceId
- Note
- Should not be called until circuit elaboration is complete 
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def toTarget: ModuleTargetReturns a FIRRTL ModuleTarget that references this object Returns a FIRRTL ModuleTarget that references this object - Definition Classes
- BaseModule → InstanceId
- Note
- Should not be called until circuit elaboration is complete 
 
-   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()
 
Shadowed Implicit Value Members
-    def toInstance: Instance[BaseModule]- Implicit
- This member is added by an implicit conversion from BaseModule toBaseModuleExtensions[BaseModule] performed by method BaseModuleExtensions in chisel3.experimental.BaseModule.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
 To access this member you can use a type ascription:(baseModule: BaseModuleExtensions[BaseModule]).toInstance 
- Definition Classes
- BaseModuleExtensions
 
-    def toInstance: Instance[BaseModule]- Implicit
- This member is added by an implicit conversion from BaseModule toIsInstantiableExtensions[BaseModule] performed by method IsInstantiableExtensions in chisel3.experimental.hierarchy.core.IsInstantiable.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
 To access this member you can use a type ascription:(baseModule: IsInstantiableExtensions[BaseModule]).toInstance 
- Definition Classes
- IsInstantiableExtensions
 
Deprecated Value Members
-    def formatted(fmtstr: String): String- Implicit
- This member is added by an implicit conversion from BaseModule toStringFormat[BaseModule] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
- (Since version 2.12.16) Use - formatString.format(value)instead of- value.formatted(formatString), or use the- f""string interpolator. In Java 15 and later,- formattedresolves to the new method in String which has reversed parameters.
 
-    def →[B](y: B): (BaseModule, B)- Implicit
- This member is added by an implicit conversion from BaseModule toArrowAssoc[BaseModule] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
- (Since version 2.13.0) Use - ->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.