Class/Object

firrtl_interpreter

FirrtlTerp

Related Docs: object FirrtlTerp | package firrtl_interpreter

Permalink

class FirrtlTerp extends SimpleLogger

This is the Firrtl interpreter. It is the top level control engine that controls the simulation of a circuit running.

It coordinates updating of the circuit's inputs (other elements, nodes, registers, etc can be forced to values) and querying the circuits outputs (or optionally other circuit components)

This mainly involves updating of a circuit state instance by using a expression evaluator on a dependency graph.

Source
FirrtlTerp.scala
Linear Supertypes
SimpleLogger, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FirrtlTerp
  2. SimpleLogger
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FirrtlTerp(ast: Circuit, interpreterOptions: InterpreterOptions)

    Permalink

    ast

    the circuit to be simulated

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val ast: Circuit

    Permalink

    the circuit to be simulated

  6. val blackBoxFactories: Seq[BlackBoxFactory]

    Permalink
  7. def checkStopped(attemptedCommand: String = "command"): Boolean

    Permalink
  8. var circuitState: CircuitState

    Permalink
  9. def clearStop(): Unit

    Permalink

    Once a stop has occured, the intepreter will not allow pokes until the stop has been cleared

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def cycle(showState: Boolean = false): Unit

    Permalink
  12. val dependencyGraph: DependencyGraph

    Permalink
  13. def disableVCD(): Unit

    Permalink
  14. def doCycles(n: Int): Unit

    Permalink
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def evaluateCircuit(specificDependencies: Seq[String] = Seq()): Unit

    Permalink
  18. val evaluator: LoFirrtlExpressionEvaluator

    Permalink
  19. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def getValue(name: String): Concrete

    Permalink
  22. def hasInput(name: String): Boolean

    Permalink
  23. def hasOutput(name: String): Boolean

    Permalink
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. val interpreterOptions: InterpreterOptions

    Permalink
  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. var lastStopResult: Option[Int]

    Permalink
  28. def log(msg: ⇒ String): Unit

    Permalink
    Definition Classes
    SimpleLogger
  29. val loweredAst: Circuit

    Permalink
  30. def makeVCDLogger(fileName: String, showUnderscored: Boolean): Unit

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

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

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

    Permalink
    Definition Classes
    AnyRef
  34. def reEvaluate(name: String): Unit

    Permalink
  35. def setValue(name: String, value: Concrete, force: Boolean = true): Concrete

    Permalink
  36. def setValueWithBigInt(name: String, value: BigInt, force: Boolean = true, registerPoke: Boolean = false): Concrete

    Permalink
  37. def setVerbose(value: Boolean): Unit

    Permalink

    turns on evaluator debugging.

    turns on evaluator debugging. Can make output quite verbose.

    value

    The desired verbose setting

    Definition Classes
    FirrtlTerpSimpleLogger
  38. def stopResult: Int

    Permalink
  39. def stopped: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  41. val timer: Timer

    Permalink
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. var verbose: Boolean

    Permalink
    Definition Classes
    SimpleLogger
  44. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. def writeVCD(): Unit

    Permalink

Inherited from SimpleLogger

Inherited from AnyRef

Inherited from Any

Ungrouped