Class/Object

firrtl_interpreter.vcd

VCD

Related Docs: object VCD | package vcd

Permalink

case class VCD(date: String, version: String, comment: String, timeScale: String, scope: String, ignoreUnderscoredNames: Boolean) extends LazyLogging with Product with Serializable

Accumulates changes to wires in a running circuit. If a wire is changed that it doesn't know about it will add it to the list. Only actual changed values will be seen in final output. This version only supports a single top level scope because right now that is what the firrtl-interpreter supports. It probably is not too too hard to add, all wires are initialized to 'x' in this version.

date

date file was created

version

this software version, but I suppose this could be a DUT version

comment

could be a comment

timeScale

seems to be more text (I like to work in picoseconds)

scope

Not really used here except as the name of the top level module

Source
VCD.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, LazyLogging, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VCD
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. LazyLogging
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VCD(date: String, version: String, comment: String, timeScale: String, scope: String, ignoreUnderscoredNames: Boolean)

    Permalink

    date

    date file was created

    version

    this software version, but I suppose this could be a DUT version

    comment

    could be a comment

    timeScale

    seems to be more text (I like to work in picoseconds)

    scope

    Not really used here except as the name of the top level module

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 addWire(wireName: String, width: Int): Unit

    Permalink
  5. var aliasedWires: HashMap[String, HashSet[Wire]]

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val comment: String

    Permalink

    could be a comment

  9. var currentIdNumber: Int

    Permalink
  10. val date: String

    Permalink

    date file was created

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

    Permalink
    Definition Classes
    AnyRef
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getIdString(value: Int = currentIdNumber, currentString: String = ""): String

    Permalink
  15. val ignoreUnderscoredNames: Boolean

    Permalink
  16. def incrementId(): Unit

    Permalink
  17. def incrementTime(increment: Int = 1): Unit

    Permalink
  18. def info: String

    Permalink
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. val lastValues: HashMap[String, Change]

    Permalink
  21. val logger: Logger

    Permalink
    Definition Classes
    LazyLogging
  22. def lowerClock(): Unit

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. def raiseClock(): Unit

    Permalink
  27. val scope: String

    Permalink

    Not really used here except as the name of the top level module

  28. var scopeRoot: Scope

    Permalink
  29. def serialize: String

    Permalink
  30. def serializeChanges: String

    Permalink
  31. def serializeStartup: String

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

    Permalink
    Definition Classes
    AnyRef
  33. val timeScale: String

    Permalink

    seems to be more text (I like to work in picoseconds)

  34. var timeStamp: Long

    Permalink
  35. val valuesAtTime: HashMap[Long, HashSet[Change]]

    Permalink
  36. val version: String

    Permalink

    this software version, but I suppose this could be a DUT version

  37. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def wireChanged(wireName: String, value: BigInt, width: Int = 1): Unit

    Permalink
  41. val wires: HashMap[String, Wire]

    Permalink
  42. def write(fileName: String): Unit

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped