Class

treadle.blackboxes

PlusArgReader

Related Doc: package blackboxes

Permalink

class PlusArgReader extends ScalaBlackBox

Allows overriding values at simulation time

Source
PlusArgReader.scala
Linear Supertypes
ScalaBlackBox, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PlusArgReader
  2. ScalaBlackBox
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PlusArgReader(instanceName: String)

    Permalink

    instanceName

    name assigned to instance

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. def clockChange(transition: Transition, clockName: String): Unit

    Permalink

    Called whenever the cycle command of the engine is called.

    Called whenever the cycle command of the engine is called.

    clockName

    name of the clock, only need if there are multiple clocks

    Definition Classes
    PlusArgReaderScalaBlackBox
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def completeName(componentName: String): String

    Permalink
    Definition Classes
    ScalaBlackBox
  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def finish(): Unit

    Permalink

    Called by TreadleTester#finish override this method to perform any cleanup necessary

    Called by TreadleTester#finish override this method to perform any cleanup necessary

    Definition Classes
    ScalaBlackBox
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def getDependencies: Seq[(String, Set[String])]

    Permalink

    returns a list of dependencies between ports.

    returns a list of dependencies between ports.

    Definition Classes
    PlusArgReaderScalaBlackBox
    Note

    There is one bit of hand-waving magic to make black boxes work when they have internal state. In order to satisfy the single pass assignment to every wire, black boxes with state must specify that their inputs depend on their outputs, in order to get the correct topological sort. See the AsyncResetBlackBox test to see an example of how this was done.

  14. def getOutput(inputValues: Seq[BigInt], tpe: Type, outputName: String): BigInt

    Permalink

    getOutput is called to determine the value for the named output at the current state of the system.

    getOutput is called to determine the value for the named output at the current state of the system. The proper way to do this is to not use the inputValues. Instead useinputChanged to supply a black box with its inputs.

    inputValues

    This is a list of BigInt values that are in the same order as the outputDependencies lists them

    tpe

    The concrete type of this output

    outputName

    The name of this output

    returns

    Computed current concrete value for the name output

    Definition Classes
    PlusArgReaderScalaBlackBox
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def inputChanged(name: String, value: BigInt): Unit

    Permalink

    This method will be called for each input symbol of the black box.

    This method will be called for each input symbol of the black box. This method should be overridden

    name

    the name of the input to this black box

    value

    the latest value computed for this input. It may not be different than the current value

    Definition Classes
    PlusArgReaderScalaBlackBox
  17. val instanceName: String

    Permalink

    name assigned to instance

  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. var mask: BigInt

    Permalink
  20. var myPlus: BigInt

    Permalink
  21. def name: String

    Permalink
    Definition Classes
    PlusArgReaderScalaBlackBox
  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def outputDependencies(outputName: String): Seq[String]

    Permalink

    returns a list of names of inputs that this output depends on.

    returns a list of names of inputs that this output depends on.

    outputName

    the output whose dependencies are being described

    Definition Classes
    PlusArgReaderScalaBlackBox
    Note

    The order of this list will determine the order of the inputValues argument to the getOutput method

  26. var plusArgName: String

    Permalink
  27. var plusArgType: String

    Permalink
  28. def setParams(params: Seq[Param]): Unit

    Permalink

    Add any parameters to the black box implementation

    Add any parameters to the black box implementation

    Definition Classes
    PlusArgReaderScalaBlackBox
  29. def setPlusArgs(plusArgs: Seq[PlusArg]): Unit

    Permalink

    allows blackbox to see if any plus args on command line are targeted at it

    allows blackbox to see if any plus args on command line are targeted at it

    plusArgs

    list of args

    Definition Classes
    PlusArgReaderScalaBlackBox
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ScalaBlackBox

Inherited from AnyRef

Inherited from Any

Ungrouped