Packages

c

chisel3.util

QueueIO

class QueueIO[T <: Data] extends Bundle

An I/O Bundle for Queues

Source
Decoupled.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueueIO
  2. Bundle
  3. Record
  4. Aggregate
  5. Data
  6. SourceInfoDoc
  7. NamedComponent
  8. HasId
  9. InstanceId
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueueIO(gen: T, entries: Int)

    gen

    The type of data to queue

    entries

    The max number of entries in the queue.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def :=(that: Data)(implicit sourceInfo: SourceInfo, connectionCompileOptions: CompileOptions): Unit
    Definition Classes
    Data
  4. final def <>(that: Data)(implicit sourceInfo: SourceInfo, connectionCompileOptions: CompileOptions): Unit
    Definition Classes
    Data
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. macro def asTypeOf[T <: Data](that: T): T
    Definition Classes
    Data
  8. final macro def asUInt(): UInt
    Definition Classes
    Data
  9. def binding: Option[Binding]
    Attributes
    protected[chisel3]
    Definition Classes
    Data
  10. def bindingToString: String
    Attributes
    protected
    Definition Classes
    Data
  11. def binding_=(target: Binding): Unit
    Attributes
    protected
    Definition Classes
    Data
  12. def circuitName: String
    Attributes
    protected
    Definition Classes
    HasId
  13. def className: String
    Definition Classes
    Bundle → Record
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  15. def cloneType: QueueIO.this.type
    Definition Classes
    Bundle → Data
  16. val count: UInt

    The current amount of data in the queue

  17. val deq: DecoupledIO[T]

    I/O to dequeue data (client is consumer and Queue object is producer), is Chisel.DecoupledIO

  18. def do_asTypeOf[T <: Data](that: T)(implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): T
    Definition Classes
    Data
  19. def do_asUInt(implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): UInt
    Definition Classes
    Aggregate → Data
  20. final lazy val elements: ListMap[String, Data]
    Definition Classes
    Bundle → Record
  21. val enq: DecoupledIO[T]

    I/O to enqueue data (client is producer, and Queue object is consumer), is Chisel.DecoupledIO flipped.

  22. val entries: Int
  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[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getElements: Seq[Data]
    Definition Classes
    Record → Aggregate
  28. final def getWidth: Int
    Definition Classes
    Data
  29. def hashCode(): Int
    Definition Classes
    HasId → AnyRef → Any
  30. def ignoreSeq: Boolean
    Definition Classes
    Bundle
  31. def instanceName: String
    Definition Classes
    HasId → InstanceId
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. def isLit(): Boolean
    Definition Classes
    Data
  34. final def isWidthKnown: Boolean
    Definition Classes
    Data
  35. def litOption(): Option[BigInt]
    Definition Classes
    Aggregate → Data
  36. def litValue(): BigInt
    Definition Classes
    Data
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. def parentModName: String
    Definition Classes
    HasId → InstanceId
  41. def parentPathName: String
    Definition Classes
    HasId → InstanceId
  42. def pathName: String
    Definition Classes
    HasId → InstanceId
  43. def suggestName(name: ⇒ String): QueueIO.this.type
    Definition Classes
    HasId
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. final def toAbsoluteTarget: ReferenceTarget
    Definition Classes
    NamedComponent → InstanceId
  46. def toPrintable: Printable
    Definition Classes
    Bundle → Record → Data
  47. def toString(): String
    Definition Classes
    Record → AnyRef → Any
  48. final def toTarget: ReferenceTarget
    Definition Classes
    NamedComponent → InstanceId
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  52. final def widthOption: Option[Int]
    Definition Classes
    Data

Deprecated Value Members

  1. def litArg(): Option[LitArg]
    Definition Classes
    Data
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) litArg is deprecated, use litOption or litTo*Option

  2. final def toNamed: ComponentName
    Definition Classes
    NamedComponent → InstanceId
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) toNamed API is deprecated -- use toTarget instead

Inherited from Bundle

Inherited from Record

Inherited from Aggregate

Inherited from Data

Inherited from SourceInfoDoc

Inherited from NamedComponent

Inherited from HasId

Inherited from internal.InstanceId

Inherited from AnyRef

Inherited from Any

Ungrouped