Packages

class AutoBlackBox extends FixedIOExtModule[AutoBundleFromVerilog]

Source
AutoBlackBox.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AutoBlackBox
  2. FixedIOExtModule
  3. FixedIOBaseModule
  4. ExtModule
  5. BaseBlackBox
  6. BaseModule
  7. IsInstantiable
  8. HasId
  9. InstanceId
  10. AnyRef
  11. Any
Implicitly
  1. by BaseModuleExtensions
  2. by IsInstantiableExtensions
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AutoBlackBox(verilog: String, signalFilter: (String) => Boolean = _ => true)(implicit __sourceInfo: SourceInfo)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toany2stringadd[AutoBlackBox] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (AutoBlackBox, B)
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toArrowAssoc[AutoBlackBox] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def IO[T <: Data](iodef: => T)(implicit sourceInfo: SourceInfo): T

    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 must be a chisel type and not be bound to hardware.

    Also registers an 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
  7. implicit val __sourceInfo: SourceInfo
  8. def _bindIoInPlace(iodef: Data)(implicit sourceInfo: SourceInfo): Unit

    Chisel2 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
    Definition Classes
    BaseModule
  9. val _body: Block
    Attributes
    protected
    Definition Classes
    BaseModule
  10. var _closed: Boolean
    Attributes
    protected
    Definition Classes
    BaseModule
  11. def _moduleDefinitionIdentifierProposal: String
    Attributes
    protected
    Definition Classes
    BaseModule
  12. def _sourceInfo: SourceInfo
    Definition Classes
    AutoBlackBoxBaseModule
  13. def _traitModuleDefinitionIdentifierProposal: Option[String]
    Attributes
    protected
    Definition Classes
    BaseModule
  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  16. final val definitionIdentifier: String

    Represents an eagerly-determined unique and descriptive identifier for this module

    Represents an eagerly-determined unique and descriptive identifier for this module

    Definition Classes
    BaseModule
  17. def desiredName: String

    The 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 getSimpleName method 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

    Definition Classes
    AutoBlackBoxBaseModule
    Note

    If you want a custom or parametric name, override this method.

  18. def endIOCreation()(implicit si: SourceInfo): Unit

    Disallow any more IO creation for this module.

    Disallow any more IO creation for this module.

    Definition Classes
    BaseModule
  19. def ensuring(cond: (AutoBlackBox) => Boolean, msg: => Any): AutoBlackBox
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toEnsuring[AutoBlackBox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (AutoBlackBox) => Boolean): AutoBlackBox
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toEnsuring[AutoBlackBox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: => Any): AutoBlackBox
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toEnsuring[AutoBlackBox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): AutoBlackBox
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toEnsuring[AutoBlackBox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def equals(that: Any): Boolean
    Definition Classes
    HasId → AnyRef → Any
  25. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  26. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getInstantiatingBlock: Option[Block]
    Attributes
    protected[chisel3]
    Definition Classes
    BaseModule
  28. def getModulePorts: Seq[Data]
    Attributes
    protected[chisel3]
    Definition Classes
    BaseModule
  29. def hasBody: Boolean
    Attributes
    protected
    Definition Classes
    BaseModule
  30. def hasSeed: Boolean

    returns

    Whether either autoName or suggestName has been called

    Definition Classes
    HasId
  31. def hashCode(): Int
    Definition Classes
    HasId → AnyRef → Any
  32. def instanceName: String

    Signal name (for simulation).

    Signal name (for simulation).

    Definition Classes
    BaseModule → HasId → InstanceId
  33. final val io: AutoBundleFromVerilog
    Definition Classes
    FixedIOBaseModule
    Annotations
    @public()
  34. final val ioGenerator: AutoBundleFromVerilog

    A generator of IO

    A generator of IO

    Definition Classes
    FixedIOExtModuleFixedIOBaseModule
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def localModulePrefix: Option[String]

    Additional module prefix, applies to this module if defined (unless localModulePrefixAppliesToSelf is false) and all children.

    Additional module prefix, applies to this module if defined (unless localModulePrefixAppliesToSelf is false) and all children.

    Definition Classes
    BaseModule
  37. def localModulePrefixAppliesToSelf: Boolean

    Should localModulePrefix apply to this module? Defaults to true.

    Should localModulePrefix apply to this module? Defaults to true.

    Users should override to false if localModulePrefix should apply only to children.

    Definition Classes
    BaseModule
  38. def localModulePrefixUseSeparator: Boolean

    Should the localModulePrefix include a separator between prefix and the Module name

    Should the localModulePrefix include a separator between prefix and the Module name

    Defaults to true, users can override to false if they don't want a separator.

    Definition Classes
    BaseModule
  39. def moduleBuilt(): Unit

    Called once the module's definition has been fully built.

    Called once the module's definition has been fully built. At this point the module can be instantiated through its definition.

    Attributes
    protected[chisel3]
    Definition Classes
    BaseModule
  40. final val modulePrefix: String

    The resolved module prefix used for this Module.

    The resolved module prefix used for this Module.

    Includes localModulePrefix if defined and if localModulePrefixAppliesToSelf is true.

    Definition Classes
    BaseModule
  41. final lazy val name: String

    Legalized name of this module.

    Legalized name of this module.

    Definition Classes
    BaseModule
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  44. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. val params: Map[String, Param]
    Definition Classes
    ExtModule
  46. def parentModName: String
    Definition Classes
    HasId → InstanceId
  47. def parentPathName: String
    Definition Classes
    HasId → InstanceId
  48. def pathName: String
    Definition Classes
    HasId → InstanceId
  49. def portsContains(elem: Data): Boolean
    Attributes
    protected
    Definition Classes
    BaseModule
  50. def portsSize: Int
    Attributes
    protected
    Definition Classes
    BaseModule
  51. val signalFilter: (String) => Boolean
  52. def suggestName(seed: => String): AutoBlackBox.this.type

    Takes 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 whether autoSeed was called, suggestName will always take precedence.

    seed

    The seed for the name of this component

    returns

    this object

    Definition Classes
    HasId
  53. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  54. final def toAbsoluteTarget: IsModule

    Returns a FIRRTL ModuleTarget that references this object

    Returns a FIRRTL ModuleTarget that references this object

    Definition Classes
    BaseModuleInstanceId
    Note

    Should not be called until circuit elaboration is complete

  55. def toDefinition: Definition[AutoBlackBox]
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toBaseModuleExtensions[AutoBlackBox] performed by method BaseModuleExtensions in chisel3.experimental.BaseModule.
    Definition Classes
    BaseModuleExtensions
  56. final def toNamed: ModuleName

    Returns a FIRRTL ModuleName that references this object

    Returns a FIRRTL ModuleName that references this object

    Definition Classes
    BaseModuleInstanceId
    Note

    Should not be called until circuit elaboration is complete

  57. final def toRelativeTarget(root: Option[BaseModule]): IsModule

    Returns a FIRRTL ModuleTarget that references this object, relative to an optional root.

    Returns a FIRRTL ModuleTarget that references this object, relative to an optional root.

    If root is defined, the target is a hierarchical path starting from root.

    If root is not defined, the target is a hierarchical path equivalent to toAbsoluteTarget.

    Definition Classes
    BaseModule
    Note

    If root is defined, and has not finished elaboration, this must be called within atModuleBodyEnd.

    ,

    The BaseModule must be a descendant of root, if it is defined.

    ,

    This doesn't have special handling for Views.

  58. final def toRelativeTargetToHierarchy(root: Option[Hierarchy[BaseModule]]): IsModule

    Returns a FIRRTL ModuleTarget that references this object, relative to an optional root.

    Returns a FIRRTL ModuleTarget that references this object, relative to an optional root.

    If root is defined, the target is a hierarchical path starting from root.

    If root is not defined, the target is a hierarchical path equivalent to toAbsoluteTarget.

    Definition Classes
    BaseModule
    Note

    If root is defined, and has not finished elaboration, this must be called within atModuleBodyEnd.

    ,

    The BaseModule must be a descendant of root, if it is defined.

    ,

    This doesn't have special handling for Views.

  59. def toString(): String
    Definition Classes
    AnyRef → Any
  60. final def toTarget: ModuleTarget

    Returns a FIRRTL ModuleTarget that references this object

    Returns a FIRRTL ModuleTarget that references this object

    Definition Classes
    BaseModuleInstanceId
    Note

    Should not be called until circuit elaboration is complete

  61. val verilog: String
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  64. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

  1. def toInstance: Instance[AutoBlackBox]
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toBaseModuleExtensions[AutoBlackBox] 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:
    (autoBlackBox: BaseModuleExtensions[AutoBlackBox]).toInstance
    Definition Classes
    BaseModuleExtensions

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toStringFormat[AutoBlackBox] 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, formatted resolves to the new method in String which has reversed parameters.

  2. def toInstance: Instance[AutoBlackBox]
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toIsInstantiableExtensions[AutoBlackBox] 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:
    (autoBlackBox: IsInstantiableExtensions[AutoBlackBox]).toInstance
    Definition Classes
    IsInstantiableExtensions
    Annotations
    @deprecated
    Deprecated

    (Since version Chisel 7.0.0) Use of @instantiable on user-defined types is deprecated. Implement Lookupable for your type instead.

  3. def [B](y: B): (AutoBlackBox, B)
    Implicit
    This member is added by an implicit conversion from AutoBlackBox toArrowAssoc[AutoBlackBox] 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.

Inherited from ExtModule

Inherited from BaseBlackBox

Inherited from BaseModule

Inherited from IsInstantiable

Inherited from HasId

Inherited from InstanceId

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion BaseModuleExtensions fromAutoBlackBox to BaseModuleExtensions[AutoBlackBox]

Inherited by implicit conversion IsInstantiableExtensions fromAutoBlackBox to IsInstantiableExtensions[AutoBlackBox]

Inherited by implicit conversion any2stringadd fromAutoBlackBox to any2stringadd[AutoBlackBox]

Inherited by implicit conversion StringFormat fromAutoBlackBox to StringFormat[AutoBlackBox]

Inherited by implicit conversion Ensuring fromAutoBlackBox to Ensuring[AutoBlackBox]

Inherited by implicit conversion ArrowAssoc fromAutoBlackBox to ArrowAssoc[AutoBlackBox]

Ungrouped