Chisel

Node

abstract class Node extends nameable

*Node* defines the root class of the class hierarchy for a [Composite Pattern](http://en.wikipedia.org/wiki/Composite_pattern).

A digital logic graph is encoded as adjacency graph where instances of *Node* describe vertices and *inputs*, *consumers* member fields are used to traverse the directed graph respectively backward (from output to input) and forward (from input to output).

Linear Supertypes
nameable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Node
  2. nameable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Node()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. def ##(b: Node): Node

  4. final def ##(): Int

    Definition Classes
    AnyRef → Any
  5. def <>(src: Node): Unit

  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def ^^(src: Node): Unit

  9. def addConsumers(): Unit

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def assign(src: Node): Unit

  12. def bitSet(off: UInt, dat: UInt): UInt

  13. def clearlyEquals(x: Node): Boolean

  14. var clock: Clock

  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. var component: Module

  17. def componentOf: Module

  18. val consumers: ArrayBuffer[Node]

  19. var depth: Int

  20. var driveRand: Boolean

  21. def emitIndex(): Int

  22. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  24. def extract(b: Bundle): List[Node]

  25. def extract(widths: Array[Int]): List[UInt]

  26. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. var flattened: Boolean

  28. def forceMatchingWidths: Unit

  29. var genError: Boolean

  30. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  31. def getLit: Literal

  32. def getNode(): Node

  33. def getWidth(): Int

  34. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  35. var index: Int

  36. def infer: Boolean

  37. var inferCount: Int

  38. var inferWidth: (Node) ⇒ Int

  39. def init(n: String, w: Int, ins: Node*): Node

  40. def init(n: String, width: (Node) ⇒ Int, ins: Node*): Node

  41. def initOf(n: String, width: (Node) ⇒ Int, ins: List[Node]): Node

  42. val inputs: ArrayBuffer[Node]

  43. def isByValue: Boolean

  44. var isClkInput: Boolean

  45. var isFixedWidth: Boolean

  46. def isInObject: Boolean

  47. def isInVCD: Boolean

  48. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  49. def isIo: Boolean

  50. def isIo_=(isIo: Boolean): Unit

  51. def isLit: Boolean

  52. def isMemOutput: Boolean

  53. var isPrintArg: Boolean

  54. def isRamWriteInput(i: Node): Boolean

  55. def isReg: Boolean

  56. var isScanArg: Boolean

  57. var isSigned: Boolean

  58. var isTypeNode: Boolean

  59. def isUsedByRam: Boolean

  60. var isWidthWalked: Boolean

  61. var line: StackTraceElement

  62. def litOf: Literal

  63. def litValue(default: BigInt = BigInt(-1)): BigInt

  64. def matchWidth(w: Int): Node

  65. def maxNum: BigInt

  66. def maybeFlatten: Seq[Node]

  67. def minNum: BigInt

  68. var name: String

    Definition Classes
    nameable
  69. var nameHolder: nameable

  70. def nameIt(path: String): Unit

  71. var named: Boolean

    _named_ is used to indicates name was set explicitely and should not be overriden by a _nameIt_ generator.

    _named_ is used to indicates name was set explicitely and should not be overriden by a _nameIt_ generator.

    Definition Classes
    nameable
  72. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  73. final def notify(): Unit

    Definition Classes
    AnyRef
  74. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  75. def printTree(writer: PrintStream, depth: Int = 4, indent: String = ""): Unit

    Prints all members of a node and recursively its inputs up to a certain depth level.

    Prints all members of a node and recursively its inputs up to a certain depth level. This method is purely used for debugging.

  76. var prune: Boolean

  77. def removeTypeNodes(): Unit

  78. var sccIndex: Int

  79. var sccLowlink: Int

  80. def setIsClkInput: Unit

  81. def setIsSigned: Unit

  82. def setName(n: String): Unit

  83. def signed: Node.this.type

  84. var stack: Array[StackTraceElement]

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

    Definition Classes
    AnyRef
  86. def toString(): String

    Definition Classes
    AnyRef → Any
  87. def traceNode(c: Module, stack: Stack[() ⇒ Any]): Any

  88. def traceableNodes: Array[Node]

  89. def value: BigInt

  90. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. final def wait(arg0: Long, arg1: Int): Unit

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  93. var walked: Boolean

  94. def width: Int

  95. var width_: Int

  96. def width_=(w: Int): Unit

    Sets the width of a Node.

Inherited from nameable

Inherited from AnyRef

Inherited from Any

Ungrouped