Trait

spinal.lib.misc.pipeline

NodeBaseApi

Related Doc: package pipeline

Permalink

trait NodeBaseApi extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeBaseApi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class BundlePimper[T <: Bundle] extends AnyRef

    Permalink

Abstract Value Members

  1. abstract def apply(subKey: Seq[Any]): OffsetApi

    Permalink

    Allows converting a list of key into values.

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

  2. abstract def apply[T <: Data](key: Payload[T]): T

    Permalink

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

  3. abstract def apply(key: NamedTypeKey): Data

    Permalink
  4. abstract def cancel: Bool

    Permalink
  5. abstract def isCancel: Bool

    Permalink
  6. abstract def isCanceling: Bool

    Permalink

    True when the current node is being cleaned up.

  7. abstract def isFiring: Bool

    Permalink

    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.

  8. abstract def isMoving: Bool

    Permalink

    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. Useful to "reset" some states.

  9. abstract def isReady: Bool

    Permalink
  10. abstract def isValid: Bool

    Permalink
  11. abstract def ready: Bool

    Permalink
  12. abstract def valid: Bool

    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 apply[T <: Data](key: Payload[T], subKey: Any): T

    Permalink

    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.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. implicit def bundlePimper[T <: Bundle](stageable: Payload[T]): BundlePimper[T]

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  12. def insert[T <: Data](that: T): Payload[T]

    Permalink

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

  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. implicit def stageablePiped2[T <: Data](stageable: Payload[T]): T

    Permalink
  18. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped