Class

chisel3.iotesters

PeekPokeTester

Related Doc: package iotesters

Permalink

abstract class PeekPokeTester[+T <: Module] extends AnyRef

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

Instance Constructors

  1. new PeekPokeTester(dut: T, base: Int = 16, logFile: Option[File] = None)

    Permalink

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. implicit val _base: Int

    Permalink
  5. implicit val _verbose: Boolean

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val backend: Backend

    Permalink

    *************************

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val dut: T

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def expect(signal: Bundle, expected: Map[String, BigInt]): Boolean

    Permalink

    Return true or false if an aggregate signal (Bundle) matches the expected map of values.

    Return true or false if an aggregate signal (Bundle) matches the expected map of values. TODO: deal with Vecs

    signal

    the Bundle to "expect"

    expected

    a map of signal names ("dotted" Bundle notation) to BigInt values

    returns

    true if the specified values match, false otherwise.

  13. def expect(signal: Aggregate, expected: IndexedSeq[BigInt]): Boolean

    Permalink
  14. def expect(signal: Bits, expected: Int, msg: ⇒ String): Boolean

    Permalink
  15. def expect(signal: Bits, expected: BigInt, msg: ⇒ String = ""): Boolean

    Permalink
  16. def expect(good: Boolean, msg: ⇒ String): Boolean

    Permalink
  17. def fail: Unit

    Permalink
  18. def finalize(): Unit

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

    Permalink
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def incTime(n: Int): Unit

    Permalink
    Attributes
    protected[chisel3.iotesters]
  23. implicit def int(x: Bits): BigInt

    Permalink

    Convert Bits to BigInt

  24. implicit def int(x: Boolean): BigInt

    Permalink

    Convert a Boolean to BigInt

  25. def intToUnsignedBigInt(x: Int): BigInt

    Permalink

    Convert an Int to unsigned (effectively 32-bit) BigInt

    Convert an Int to unsigned (effectively 32-bit) BigInt

    x

    number to be converted

  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. implicit val logger: PrintStream

    Permalink
  28. implicit def longToInt(x: Long): Int

    Permalink
  29. def longToUnsignedBigInt(x: Long): BigInt

    Permalink

    Convert an Int to unsigned (effectively 64-bit) BigInt

    Convert an Int to unsigned (effectively 64-bit) BigInt

    x

    long to be converted

  30. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  33. val optionsManager: TesterOptionsManager

    Permalink
  34. def peek(signal: Bundle): LinkedHashMap[String, BigInt]

    Permalink

    Peek an aggregate (Bundle) signal.

    Peek an aggregate (Bundle) signal.

    signal

    the signal to peek

    returns

    a map of signal names ("dotted" Bundle) to BigInt values.

  35. def peek(signal: Aggregate): IndexedSeq[BigInt]

    Permalink
  36. def peek(signal: Bits): BigInt

    Permalink
  37. def peek(path: String): BigInt

    Permalink
  38. def peekAt[TT <: Bits](data: Mem[TT], off: Int): BigInt

    Permalink
  39. def poke(signal: Aggregate, value: IndexedSeq[BigInt]): Unit

    Permalink
  40. def poke(signal: Bundle, map: Map[String, BigInt]): Unit

    Permalink

    Poke a Bundle given a map of elements and values.

    Poke a Bundle given a map of elements and values.

    signal

    the bundle to be poked

    map

    a map from names (using '.' to delimit bundle elements), to BigInt values

  41. def poke(signal: Bits, value: Int): Unit

    Permalink
  42. def poke(signal: Bits, value: BigInt): Unit

    Permalink
  43. def poke(path: String, value: Int): Unit

    Permalink
  44. def poke(path: String, value: BigInt): Unit

    Permalink
  45. def pokeAt[TT <: Bits](data: Mem[TT], value: BigInt, off: Int): Unit

    Permalink
  46. def println(msg: String = ""): Unit

    Permalink
  47. def reset(n: Int = 1): Unit

    Permalink
  48. val rnd: Random

    Permalink
  49. def step(n: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
  51. def t: Long

    Permalink
  52. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped