Packages

case class PrintfOp(symbol: Symbol, info: Info, string: StringLit, args: Seq[ExpressionResult], fieldWidths: Seq[Int], clockTransition: ClockTransitionGetter, condition: IntExpressionResult, scheduler: Scheduler, addWallTime: Boolean) extends Assigner with Product with Serializable

Source
PrintfOp.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, Assigner, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrintfOp
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Assigner
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PrintfOp(symbol: Symbol, info: Info, string: StringLit, args: Seq[ExpressionResult], fieldWidths: Seq[Int], clockTransition: ClockTransitionGetter, condition: IntExpressionResult, scheduler: Scheduler, addWallTime: Boolean)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val addWallTime: Boolean
  5. val args: Seq[ExpressionResult]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asIs(b: BigInt): BigInt
  8. val clockTransition: ClockTransitionGetter
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. val condition: IntExpressionResult
  11. def constructFormatter(formatString: String, bitWidths: Seq[Int]): (String, Seq[(BigInt) ⇒ Any])

    Create a format string and a list format functions in order to implement the printf Figures out how many columns each output field show have from the bit widths We do this to match verilator's printf behavior more closely.

    Create a format string and a list format functions in order to implement the printf Figures out how many columns each output field show have from the bit widths We do this to match verilator's printf behavior more closely. The problem type is binary that does not have a %-conversion code and char which requires a non-numeric value. This is why the format functions are BigInt => Any

    formatString

    The raw format string from the firrtl printf statement

    bitWidths

    The bit widths of each argument

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def executeVerilogPrint(allArgs: Seq[BigInt]): String
  14. val fieldWidths: Seq[Int]
  15. val filterFunctions: Seq[(BigInt) ⇒ Any]
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def getRenderMode: Boolean
    Definition Classes
    Assigner
  19. val info: Info
    Definition Classes
    PrintfOpAssigner
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def isVerbose: Boolean
    Definition Classes
    Assigner
  22. def makeChar(b: BigInt): Char
  23. def makeHex(base: BigInt)(b: BigInt): BigInt
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. val paddedFormatString: String
  28. def render: String
    Definition Classes
    Assigner
  29. def run: FuncUnit
    Definition Classes
    PrintfOpAssigner
  30. val scheduler: Scheduler
  31. def setLeanMode(isLean: Boolean): Unit
    Definition Classes
    Assigner
  32. def setRender(value: Boolean): Unit
    Definition Classes
    Assigner
  33. def setVerbose(value: Boolean): Unit
    Definition Classes
    Assigner
  34. val string: StringLit
  35. val symbol: Symbol
    Definition Classes
    PrintfOpAssigner
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toBinary(b: BigInt): String
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Assigner

Inherited from AnyRef

Inherited from Any

Ungrouped