Packages

class Area extends NodeMirror with core.Area

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Area
  2. Area
  3. OverridedEqualsHashCode
  4. ValCallbackRec
  5. ValCallback
  6. NameableByComponent
  7. Nameable
  8. ContextUser
  9. ScalaLocated
  10. GlobalDataUser
  11. OwnableRef
  12. NodeMirror
  13. NodeApi
  14. NodeBaseApi
  15. AnyRef
  16. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Area(i: Int)

Type Members

  1. class BundlePimper[T <: Bundle] extends AnyRef
    Definition Classes
    NodeBaseApi
  2. abstract type RefOwnerType
    Definition Classes
    OwnableRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _context: Capture
    Definition Classes
    Area
  5. def apply(subKey: Seq[Any]): OffsetApi

    Allows converting a list of key into values.

    Allows converting a list of key into values. ex : node(1 to 2)(MY_STAGEABLE)

    Definition Classes
    NodeApiNodeBaseApi
  6. def apply[T <: Data](key: Payload[T]): T

    Return the hardware signal for this Payload key at the point of this Node in the pipeline.

    Return the hardware signal for this Payload key at the point of this Node in the pipeline.

    Definition Classes
    NodeApiNodeBaseApi
  7. def apply(key: NamedTypeKey): Data
    Definition Classes
    NodeApiNodeBaseApi
  8. def apply[T <: Data](key: Payload[T], subKey: Any): T

    Return the hardware signal for this (Payload, subKey) key at the point of this Node in the pipeline.

    Return the hardware signal for this (Payload, subKey) key at the point of this Node in the pipeline.

    This eases the construction of multi-lane hardware. For instance, when you have a multi-issue CPU pipeline, you can use the lane Int id as secondary key.

    Definition Classes
    NodeBaseApi
  9. def arbitrateFrom[T <: Data](that: Flow[T]): Unit
    Definition Classes
    NodeApi
  10. def arbitrateFrom[T <: Data](that: Stream[T]): Unit
    Definition Classes
    NodeApi
  11. def arbitrateTo[T <: Data](that: Flow[T]): Unit
    Definition Classes
    NodeApi
  12. def arbitrateTo[T <: Data](that: Stream[T]): Unit
    Definition Classes
    NodeApi
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. implicit def bundlePimper[T <: Bundle](stageable: Payload[T]): BundlePimper[T]
    Definition Classes
    NodeBaseApi
  15. def cancel: Bool

    The signal which specifies if the node’s transaction in being canceled from the pipeline.

    The signal which specifies if the node’s transaction in being canceled from the pipeline.

    It is driven by the downstream. The signal has no meaning when there is no transaction (valid being deasserted).

    Created on demand, thus it's important to use isReady to get the signal value.

    Definition Classes
    NodeApiNodeBaseApi
    See also

    Node documentation

  16. def childNamePriority: Byte
    Definition Classes
    Area
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  18. def component: Component
    Definition Classes
    ContextUser
  19. def defaultKey: Any
    Definition Classes
    NodeApi
  20. def driveFrom[T <: Data](that: Flow[T])(con: (Node, T) ⇒ Unit): Unit
    Definition Classes
    NodeApi
  21. def driveFrom[T <: Data](that: Stream[T])(con: (Node, T) ⇒ Unit): Unit
    Definition Classes
    NodeApi
  22. def driveTo[T <: Data](that: Flow[T])(con: (T, Node) ⇒ Unit): Unit
    Definition Classes
    NodeApi
  23. def driveTo[T <: Data](that: Stream[T])(con: (T, Node) ⇒ Unit): Unit
    Definition Classes
    NodeApi
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def equals(obj: Any): Boolean
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  26. def foreachReflectableNameables(doThat: (Any) ⇒ Unit): Unit
    Definition Classes
    Nameable
  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  28. def getDisplayName(): String
    Definition Classes
    Nameable
  29. def getInstanceCounter: Int
    Definition Classes
    ContextUser
  30. def getMode: Byte
    Attributes
    protected
    Definition Classes
    Nameable
  31. def getName(default: String): String
    Definition Classes
    NameableByComponentNameable
  32. def getName(): String
    Definition Classes
    NameableByComponentNameable
  33. def getNode: Node
    Definition Classes
    NodeMirrorNodeApi
  34. def getPartialName(): String
    Definition Classes
    Nameable
  35. def getPath(from: Component, to: Component): Seq[Component]
    Definition Classes
    NameableByComponent
  36. def getRefOwnersChain(): List[Any]
    Definition Classes
    OwnableRef
  37. def getScalaLocationLong: String
    Definition Classes
    ScalaLocated
  38. def getScalaLocationShort: String
    Definition Classes
    ScalaLocated
  39. def getScalaTrace(): Throwable
    Definition Classes
    ScalaLocated
  40. val globalData: GlobalData
    Definition Classes
    GlobalDataUser
  41. def hashCode(): Int
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  42. def insert[T <: Data](that: T): Payload[T]

    Return a new Payload which is connected to the given Data hardware signal starting from this Node in the pipeline.

    Return a new Payload which is connected to the given Data hardware signal starting from this Node in the pipeline.

    Definition Classes
    NodeBaseApi
  43. def isCancel: Bool

    Read-only accessor of cancel

    Read-only accessor of cancel

    Definition Classes
    NodeApiNodeBaseApi
  44. def isCanceling: Bool

    True when the node transaction is being cleaned up.

    True when the node transaction is being cleaned up.

    Meaning that it will not appear anywhere in the pipeline in future cycles. It is equivalent to isValid && isCancel.

    Definition Classes
    NodeApiNodeBaseApi
  45. def isCompletelyUnnamed: Boolean
    Definition Classes
    Nameable
  46. def isFiring: Bool

    True when the current transaction is successfully moving forward (isReady && !isRemoved).

    True when the current transaction is successfully moving forward (isReady && !isRemoved).

    Useful to validate state changes.

    Definition Classes
    NodeApiNodeBaseApi
  47. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  48. def isMoving: Bool

    True when it is the last cycle that the current transaction is present on this node.

    True when it is the last cycle that the current transaction is present on this node.

    More precisely, True when the node transaction will not be present anymore on the node (starting from the next cycle), either because downstream is ready to take the transaction, or because the transaction is canceled from the pipeline. (valid && (ready || cancel)).

    Useful to “reset” states.

    Definition Classes
    NodeApiNodeBaseApi
  49. final def isNamed: Boolean
    Definition Classes
    Nameable
  50. def isPriorityApplicable(namePriority: Byte): Boolean
    Definition Classes
    Nameable
  51. def isReady: Bool

    Read-only accessor of ready

    Read-only accessor of ready

    Definition Classes
    NodeApiNodeBaseApi
  52. def isUnnamed: Boolean
    Definition Classes
    NameableByComponentNameable
  53. def isValid: Bool

    Read-only accessor of valid

    Read-only accessor of valid

    Definition Classes
    NodeApiNodeBaseApi
  54. val name: String
    Definition Classes
    Nameable
  55. val nameableRef: Nameable
    Attributes
    protected
    Definition Classes
    Nameable
    Annotations
    @DontName()
  56. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  57. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  58. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  59. def overrideLocalName(name: String): Area.this.type
    Definition Classes
    Nameable
  60. val parentScope: ScopeStatement
    Definition Classes
    ContextUser
  61. def ready: Bool

    The signal which specifies if the node’s transaction can proceed downstream.

    The signal which specifies if the node’s transaction can proceed downstream.

    It is driven by the downstream to create backpressure. The signal has no meaning when there is no transaction (valid being deasserted).

    Created on demand, thus it's important to use isReady to get the signal value.

    Definition Classes
    NodeApiNodeBaseApi
    See also

    Node documentation

  62. val refOwner: RefOwnerType
    Definition Classes
    OwnableRef
    Annotations
    @DontName()
  63. def reflectNames(): Unit
    Definition Classes
    Nameable
  64. def rework[T](body: ⇒ T): T
    Definition Classes
    Area
  65. val scalaTrace: Throwable
    Definition Classes
    ScalaLocated
  66. def setCompositeName(nameable: Nameable, postfix: String, namePriority: Byte): Area.this.type
    Definition Classes
    Nameable
  67. def setCompositeName(nameable: Nameable, postfix: String, weak: Boolean): Area.this.type
    Definition Classes
    Nameable
  68. def setCompositeName(nameable: Nameable, postfix: String): Area.this.type
    Definition Classes
    Nameable
  69. def setCompositeName(nameable: Nameable, namePriority: Byte): Area.this.type
    Definition Classes
    Nameable
  70. def setCompositeName(nameable: Nameable, weak: Boolean): Area.this.type
    Definition Classes
    Nameable
  71. def setCompositeName(nameable: Nameable): Area.this.type
    Definition Classes
    Nameable
  72. def setLambdaName(isNameBody: ⇒ Boolean)(nameGen: ⇒ String): Area.this.type
    Definition Classes
    Nameable
  73. def setName(name: String, namePriority: Byte): Area.this.type
    Definition Classes
    Nameable
  74. def setName(name: String, weak: Boolean): Area.this.type
    Definition Classes
    Nameable
  75. def setName(name: String): Area.this.type
    Definition Classes
    Nameable
  76. def setNameAsWeak(): Area.this.type
    Definition Classes
    Nameable
  77. def setPartialName(name: String, namePriority: Byte, owner: Any): Area.this.type
    Definition Classes
    Nameable
  78. def setPartialName(name: String, namePriority: Byte): Area.this.type
    Definition Classes
    Nameable
  79. def setPartialName(name: String, weak: Boolean): Area.this.type
    Definition Classes
    Nameable
  80. def setPartialName(owner: Nameable, name: String, namePriority: Byte): Area.this.type
    Definition Classes
    Nameable
  81. def setPartialName(owner: Nameable, name: String, weak: Boolean): Area.this.type
    Definition Classes
    Nameable
  82. def setPartialName(name: String): Area.this.type
    Definition Classes
    Nameable
  83. def setPartialName(owner: Nameable, name: String): Area.this.type
    Definition Classes
    Nameable
  84. def setPartialName(owner: Nameable): Area.this.type
    Definition Classes
    Nameable
  85. def setRefOwner(that: Any): Unit
    Definition Classes
    OwnableRef
  86. def setScalaLocated(source: ScalaLocated): Area.this.type
    Definition Classes
    ScalaLocated
  87. def setWeakName(name: String): Area.this.type
    Definition Classes
    Nameable
  88. implicit def stageablePiped2[T <: Data](stageable: Payload[T]): T
    Definition Classes
    NodeBaseApi
  89. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  90. def toFlow[T <: Data](con: (Node) ⇒ T): Flow[T]
    Definition Classes
    NodeApi
  91. def toStream[T <: Data](con: (Node) ⇒ T): Stream[T]
    Definition Classes
    NodeApi
  92. def toString(): String
    Definition Classes
    AreaNameable → AnyRef → Any
  93. def unsetName(): Area.this.type
    Definition Classes
    Nameable
  94. def valCallback[T](ref: T, name: String): T
    Definition Classes
    ValCallbackRec → ValCallback
  95. def valCallbackOn(ref: Any, name: String, refs: Set[Any]): Unit
    Definition Classes
    ValCallbackRec
  96. def valCallbackRec(obj: Any, name: String): Unit
    Definition Classes
    AreaValCallbackRec
  97. def valid: Bool

    The signal which specifies if a transaction is present on the node.

    The signal which specifies if a transaction is present on the node.

    It is driven by the upstream. Once asserted, it must only be de-asserted the cycle after which either both valid and ready or cancel are high. valid must not depend on ready.

    Created on demand, thus it's important to use isValid to get the signal value.

    Definition Classes
    NodeApiNodeBaseApi
    See also

    Node documentation

  98. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  99. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  100. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from core.Area

Inherited from OverridedEqualsHashCode

Inherited from ValCallbackRec

Inherited from ValCallback

Inherited from NameableByComponent

Inherited from Nameable

Inherited from ContextUser

Inherited from ScalaLocated

Inherited from GlobalDataUser

Inherited from OwnableRef

Inherited from NodeMirror

Inherited from NodeApi

Inherited from NodeBaseApi

Inherited from AnyRef

Inherited from Any

Ungrouped