Chisel

Node

Related Docs: object Node | package Chisel

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: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. def ##(b: Node): Node

  3. final def ##(): Int

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

  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. def W0Wtransform(): Unit

  7. def ^^(src: Node): Unit

  8. val _id: Int

  9. def _isComplementOf(x: Node): Boolean

  10. def addConsumers(): Unit

  11. final def asInstanceOf[T0]: T0

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

  13. def canCSE: Boolean

  14. lazy val chiselName: String

  15. var clock: Clock

  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. var cntrIdx: Int

  18. var component: Module

  19. def componentOf: Module

  20. val consumers: LinkedHashSet[Node]

  21. def dblLitValue: Double

  22. var depth: Int

  23. var driveRand: Boolean

  24. lazy val emitIndex: Int

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

    Definition Classes
    AnyRef
  26. def equals(that: Any): Boolean

    Definition Classes
    Node → AnyRef → Any
  27. def equalsForCSE(x: Node): Boolean

  28. def extract(b: Bundle): List[Node]

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

  30. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  31. def floLitValue: Float

  32. def forceMatchingWidths: Unit

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

    Definition Classes
    AnyRef → Any
  34. def getLit: Literal

  35. def getNode: Node

  36. def getWidth(): Int

  37. def getWidthW(): Width

  38. def hashCode(): Int

    Definition Classes
    Node → AnyRef → Any
  39. def hashCodeForCSE: Int

  40. def infer: Boolean

  41. var inferWidth: (⇒ Node) ⇒ Width

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

  43. def init(n: String, widthFunc: (⇒ Node) ⇒ Width, ins: Node*): Node

  44. def initOf(n: String, widthfunc: (⇒ Node) ⇒ Width, ins: Iterable[Node]): Node

  45. val inputs: ArrayBuffer[Node]

  46. def isByValue: Boolean

  47. lazy val isInObject: Boolean

  48. lazy val isInVCD: Boolean

  49. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  50. def isIo: Boolean

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

  52. def isKnownWidth: Boolean

  53. final def isLit: Boolean

  54. def isReg: Boolean

  55. var isTypeNode: Boolean

  56. def isUsedByClockHi: Boolean

  57. var isWidthWalked: Boolean

  58. val line: StackTraceElement

  59. def litOf: Literal

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

  61. def matchWidth(w: Width): Node

  62. def maybeFlatten: Seq[Node]

  63. var modified: Boolean

  64. var name: String

    Definition Classes
    nameable
  65. var nameHolder: nameable

  66. def nameIt(path: String, isNamingIo: Boolean): Unit

  67. 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
  68. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  69. def needWidth(): Int

  70. final def notify(): Unit

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

    Definition Classes
    AnyRef
  72. var parents: LinkedHashSet[Node]

  73. 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.

  74. var prune: Boolean

  75. def removeTypeNodes(): Unit

  76. def replaceTree(newNode: Node): Unit

  77. def review(): Unit

  78. var sccIndex: Int

  79. var sccLowlink: Int

  80. def setName(n: String): Unit

  81. def setWidth(w: Int): Unit

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

    Definition Classes
    AnyRef
  83. def toBits(): UInt

  84. def toNode: Node

  85. def toString(): String

    Definition Classes
    AnyRef → Any
  86. def usesInClockHi(i: Node): Boolean

  87. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  90. var width_: Width

Inherited from nameable

Inherited from AnyRef

Inherited from Any

Ungrouped