class FIFO[A] extends Top[FIFO[A]] with LocalMem1[A, FIFO] with Ref[Queue[Any], FIFO[A]]

Linear Supertypes
types.LocalMem1[A, FIFO], types.LocalMem[A, FIFO], types.Mem[A, FIFO], argon.lang.Top[FIFO[A]], Ref[Queue[Any], FIFO[A]], Exp[Queue[Any], FIFO[A]], ExpType[Queue[Any], spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance], Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FIFO
  2. LocalMem1
  3. LocalMem
  4. Mem
  5. Top
  6. Ref
  7. Exp
  8. ExpType
  9. Equals
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FIFO()

Type Members

  1. type L = Queue[Any]
    Definition Classes
    Ref → Exp → ExpType

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. def !==(that: Any): argon.lang.Bit
    Definition Classes
    Top
  3. final def ##(): Int
    Definition Classes
    AnyRef → Any
  4. def ++(that: Any): argon.lang.Text
    Definition Classes
    Top
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ===(that: Any): argon.lang.Bit
    Definition Classes
    Top
  7. val A: lang.Bits[A]
    Definition Classes
    FIFOMem
  8. val __neverMutable: Boolean
    Attributes
    protected
    Definition Classes
    Mem → ExpType
  9. def __read(addr: Seq[lang.Idx], ens: Set[lang.Bit]): A
    Definition Classes
    FIFOLocalMem
  10. def __reset(ens: Set[lang.Bit]): lang.Void
    Definition Classes
    FIFOLocalMem
  11. val __typeArgs: Seq[Type[_]]
    Attributes
    protected
    Definition Classes
    FIFO → ExpType
  12. val __typeParams: Seq[lang.Bits[A]]
    Attributes
    protected
    Definition Classes
    FIFO → ExpType
  13. val __typePrefix: String
    Attributes
    protected
    Definition Classes
    FIFO → ExpType
  14. def __write(data: A, addr: Seq[lang.Idx], ens: Set[lang.Bit]): lang.Void
    Definition Classes
    FIFOLocalMem
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. final def canEqual(that: Any): Boolean
    Definition Classes
    Ref → Equals
  17. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  18. def conflictable: FIFO[A]

    Allow "unsafe" banking, where two enq's can technically happen simultaneously and one will be dropped.

    Allow "unsafe" banking, where two enq's can technically happen simultaneously and one will be dropped. Use in cases where FIFOs are used in stream controllers and have enq's in multiple places that the user knows are mutually exclusive

  19. def deq(en: lang.Bit): A

    Creates a conditional dequeue (destructive read) port to this FIFO enabled by en.

    Creates a conditional dequeue (destructive read) port to this FIFO enabled by en. *

  20. def deq(): A

    Creates a dequeue (destructive read) port to this FIFO.

    Creates a dequeue (destructive read) port to this FIFO. *

  21. def enq(data: A, en: lang.Bit): lang.Void

    Creates a conditional enqueue (write) port to this FIFO of data enabled by en.

    Creates a conditional enqueue (write) port to this FIFO of data enabled by en. *

  22. def enq(data: A): lang.Void

    Creates an enqueue (write) port to this FIFO of data.

    Creates an enqueue (write) port to this FIFO of data. *

  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def eql(that: FIFO[A]): argon.lang.Bit
    Definition Classes
    Top
  25. final def equals(x: Any): Boolean
    Definition Classes
    Ref → Equals → AnyRef → Any
  26. val evMem: <:<[FIFO[A], lang.LocalMem[A, FIFO]]
    Definition Classes
    FIFOLocalMemMem
  27. implicit val evRef: <:<[spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance, Ref[Queue[Any], spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance]]
    Attributes
    protected[argon]
    Definition Classes
    ExpType
  28. def extract: Option[Any]
    Attributes
    protected
    Definition Classes
    Exp
  29. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def fresh: FIFO[A]
    Attributes
    protected
    Definition Classes
    FIFO → ExpType
  31. final def from(c: Any, warnOnLoss: Boolean, errorOnLoss: Boolean, isParam: Boolean, saturating: Boolean, unbiased: Boolean): spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance
    Definition Classes
    ExpType
  32. def gather(dram: DRAMSparseTile[A]): lang.Void

    Creates a sparse gather from the given region of DRAM to this on-chip memory.

    Creates a sparse gather from the given region of DRAM to this on-chip memory.

    Definition Classes
    LocalMem1
  33. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. def getFrom(c: Any, isParam: Boolean, saturating: Boolean, unbiased: Boolean): Option[(spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance, Boolean)]
    Definition Classes
    ExpType
  35. final def hashCode(): Int
    Definition Classes
    Ref → AnyRef → Any
  36. def infix_!=(that: Any): argon.lang.Bit
    Definition Classes
    Top
  37. def infix_==(that: Any): argon.lang.Bit
    Definition Classes
    Top
  38. def isAlmostEmpty: lang.Bit

    Returns true when this FIFO contains exactly one element, false otherwise.

    Returns true when this FIFO contains exactly one element, false otherwise. *

  39. def isAlmostFull: lang.Bit

    Returns true when this FIFO can fit exactly one more element, false otherwise.

    Returns true when this FIFO can fit exactly one more element, false otherwise. *

  40. def isEmpty: lang.Bit

    Returns true when this FIFO contains no elements, false otherwise.

    Returns true when this FIFO contains no elements, false otherwise. *

  41. def isFull: lang.Bit

    Returns true when this FIFO cannot fit any more elements, false otherwise.

    Returns true when this FIFO cannot fit any more elements, false otherwise. *

  42. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  43. def load(dram: DRAM1[A]): lang.Void

    Create a dense burst load from the given region of DRAM to this on-chip memory.

    Create a dense burst load from the given region of DRAM to this on-chip memory.

    Definition Classes
    LocalMem1
  44. def me: spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance
    Attributes
    protected
    Definition Classes
    ExpType
  45. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. def neql(that: FIFO[A]): argon.lang.Bit
    Definition Classes
    Top
  47. def noduplicate: FIFO[A]

    Do not attempt to bank memory by duplication

  48. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  49. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  50. def numel: lang.I32

    Returns the number of elements currently in this FIFO.

    Returns the number of elements currently in this FIFO. *

  51. def peek(): A

    Creates a non-destructive read port to this FIFO.

    Creates a non-destructive read port to this FIFO. *

  52. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  53. final def toString(): String
    Definition Classes
    Ref → AnyRef → Any
  54. def toText: argon.lang.Text
    Definition Classes
    Top
  55. def unrelated(that: Any): Unit
    Attributes
    protected
    Definition Classes
    Top
  56. def value(c: Any): Option[(Queue[Any], Boolean)]
    Attributes
    protected
    Definition Classes
    ExpType
  57. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  60. final def withCheck[T](x: ⇒ T)(eql: (T) ⇒ Boolean): Option[(T, Boolean)]
    Attributes
    protected
    Definition Classes
    ExpType

Inherited from types.LocalMem1[A, FIFO]

Inherited from types.LocalMem[A, FIFO]

Inherited from types.Mem[A, FIFO]

Inherited from argon.lang.Top[FIFO[A]]

Inherited from Ref[Queue[Any], FIFO[A]]

Inherited from Exp[Queue[Any], FIFO[A]]

Inherited from ExpType[Queue[Any], spatial.lang.FIFO[A] @scala.annotation.unchecked.uncheckedVariance]

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped