case class RecFloating(exponentSize: Int, mantissaSize: Int) extends Bundle with Product with Serializable

Floating point value recoded using Berkeley encoding (see https://github.com/ucb-bar/berkeley-hardfloat)

exponentSize

Recoded exponent size (1 bit wider than the IEEE754 equivalent float)

mantissaSize

Mantissa field size with the implicit one not included

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RecFloating
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Bundle
  7. ValCallbackRec
  8. ValCallback
  9. MultiData
  10. Data
  11. InComponent
  12. OverridedEqualsHashCode
  13. SpinalTagReady
  14. Assignable
  15. NameableByComponent
  16. Nameable
  17. OwnableRef
  18. ContextUser
  19. ScalaLocated
  20. GlobalDataUser
  21. AnyRef
  22. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RecFloating(exponentSize: Int, mantissaSize: Int)

    exponentSize

    Recoded exponent size (1 bit wider than the IEEE754 equivalent float)

    mantissaSize

    Mantissa field size with the implicit one not included

Type Members

  1. abstract type RefOwnerType
    Definition Classes
    OwnableRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. def ##(right: Data): Bits

    Concatenation between two signals

    Concatenation between two signals

    Definition Classes
    Data
  3. final def ##(): Int
    Definition Classes
    AnyRef → Any
  4. def #*(count: Int): Bits

    Return the count time concatenation of the signal.

    Return the count time concatenation of the signal.

    Definition Classes
    Data
  5. def :=(that: BigDecimal): Unit

    Assign double value to the Floating

    Assign double value to the Floating

    that

    BigDecimal value

  6. def <(that: BigDecimal): Bool

    Less than constant

    Less than constant

    that

    other side of the comparison

    returns

    true is this value is smaller than that

  7. def <(that: RecFloating): Bool

    Less than

    Less than

    that

    other side of the comparison

    returns

    true is this value is smaller than that

  8. def <=(that: BigDecimal): Bool

    Less than or equal to constant

    Less than or equal to constant

    that

    other side of the comparison

    returns

    true is this value is smaller or equal to that

  9. def <=(that: RecFloating): Bool

    Less than or equal

    Less than or equal

    that

    other side of the comparison

    returns

    true is this value is smaller or equal to that

  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def ===(that: BigDecimal): Bool

    Equals to constant

    Equals to constant

    that

    other side of the comparison

    returns

    true is this value equals to that

  12. def ===(that: RecFloating): Bool

    Equals

    Equals

    that

    other side of the comparison

    returns

    true is this value equals to that

  13. def >(that: BigDecimal): Bool

    Greater than constant

    Greater than constant

    that

    other side of the comparison

    returns

    true is this value is greater than that

  14. def >(that: RecFloating): Bool

    Greater than

    Greater than

    that

    other side of the comparison

    returns

    true is this value is greater than that

  15. def >=(that: BigDecimal): Bool

    Greater than or equal to constant

    Greater than or equal to constant

    that

    other side of the comparison

    returns

    true is this value is greater of equal to that

  16. def >=(that: RecFloating): Bool

    Greater than or equal

    Greater than or equal

    that

    other side of the comparison

    returns

    true is this value is greater of equal to that

  17. def IFparent: Data
    Definition Classes
    Data
  18. val _spinalTags: LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  19. def abs: RecFloating

    Absolute value

    Absolute value

    returns

    Absolute value of this float

  20. def addAttribute(attribute: Attribute): RecFloating.this.type
    Definition Classes
    DataSpinalTagReady
  21. def addAttribute(name: String, value: Int): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  22. def addAttribute(name: String, value: String): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  23. def addAttribute(name: String): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  24. def addTag[T <: SpinalTag](spinalTag: T): RecFloating.this.type
    Definition Classes
    MultiDataSpinalTagReady
  25. def addTags(h: SpinalTag, tail: SpinalTag*): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  26. def addTags[T <: SpinalTag](tags: Iterable[T]): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  27. def allowDirectionLessIo(): RecFloating.this.type

    Allow a signal of an io Bundle to be directionless.

    Allow a signal of an io Bundle to be directionless.

    Definition Classes
    Data
    See also

    IO Bundle Error Documentation

  28. def allowOverride(): RecFloating.this.type

    Allow a signal to be overridden.

    Allow a signal to be overridden.

    Definition Classes
    Data
    See also

    Assignment overlap Error Documentation

  29. def allowPartialyAssigned(): RecFloating.this.type

    Allow a register to be partially assigned

    Allow a register to be partially assigned

    Definition Classes
    Data
  30. def allowPruning(): RecFloating.this.type
    Definition Classes
    Data
  31. def allowSimplifyIt(): RecFloating.this.type
    Definition Classes
    Data
  32. def allowUnsetRegToAvoidLatch(): RecFloating.this.type

    Allow a register to have only an init (no assignments)

    Allow a register to have only an init (no assignments)

    Definition Classes
    Data
    See also

    "Register with only init" Error Documentation

  33. def as[T <: Data](dataType: HardType[T]): T
    Definition Classes
    Data
  34. def asBits: Bits

    Cast signal to Bits

    Cast signal to Bits

    Definition Classes
    MultiDataData
  35. def asData: Data
    Definition Classes
    Data
  36. def asInOut(): RecFloating.this.type

    Set a signal as inout

    Set a signal as inout

    Definition Classes
    MultiDataData
  37. def asInput(): RecFloating.this.type

    Set a data as input

    Set a data as input

    Definition Classes
    MultiDataData
  38. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  39. def asOutput(): RecFloating.this.type

    Set a data as output

    Set a data as output

    Definition Classes
    MultiDataData
  40. def asReversedBits: Bits

    Concatenate the bits of the elements in reverse order.

    Concatenate the bits of the elements in reverse order.

    This does not recurse, so elements which are composite will appear in forward order.

    Definition Classes
    MultiData
  41. def assignAllByName(that: Bundle): Unit

    Assign the bundle with an other bundle by name

    Assign the bundle with an other bundle by name

    Definition Classes
    Bundle
  42. def assignDontCare(): RecFloating.this.type

    Assign the default 'x' value to all signals composing this type.

    Assign the default 'x' value to all signals composing this type.

    Definition Classes
    Data
    See also

    Data type documentation

    "Don't care term" wikipedia article

  43. def assignDontCareToUnasigned(): RecFloating.this.type
    Definition Classes
    Data
  44. def assignFormalRandom(kind: RandomExpKind): Unit
    Definition Classes
    MultiDataData
  45. final def assignFrom(that: AnyRef, target: AnyRef = this)(implicit loc: Location): Unit
    Definition Classes
    Data
  46. def assignFromBits(bits: Bits, hi: Int, lo: Int): Unit
    Definition Classes
    MultiDataData
  47. def assignFromBits(bits: Bits): Unit
    Definition Classes
    MultiDataData
  48. def assignFromBits(bits: Bits, offset: Int, bitCount: BitCount): Unit
    Definition Classes
    Data
  49. def assignFromImpl(that: AnyRef, target: AnyRef, kind: AnyRef)(implicit loc: Location): Unit
    Attributes
    protected
    Definition Classes
    BundleAssignable
  50. def assignSomeByName(that: Bundle): Unit

    Assign all possible signal fo the bundle with an other bundle by name

    Assign all possible signal fo the bundle with an other bundle by name

    Definition Classes
    Bundle
  51. def assignTo(that: SInt): Unit

    Overrides assignment operator

    Overrides assignment operator

    that

    Integer number that will be assigned to the converted floating value

  52. def assignTo(that: UInt): Unit

    Overrides assignment operator

    Overrides assignment operator

    that

    Integer number that will be assigned to the converted floating value

  53. def assignUnassignedByName(that: MultiData): Unit
    Definition Classes
    MultiData
  54. def bundleAssign(that: Bundle)(f: (Data, Data) ⇒ Unit): Unit
    Definition Classes
    Bundle
  55. def checkDir(that: Bundle): Boolean

    for interface find modport

    for interface find modport

    Definition Classes
    Bundle
  56. def clearAll(): RecFloating.this.type

    Clear all bits to False and return itself

    Clear all bits to False and return itself

    Definition Classes
    Data
  57. def clone(): Bundle
    Definition Classes
    BundleData → AnyRef
  58. def component: Component
    Definition Classes
    ContextUser
  59. final def compositAssignFrom(that: AnyRef, target: AnyRef, kind: AnyRef)(implicit loc: Location): Unit
    Definition Classes
    Assignable
  60. val compositeAssign: Assignable
    Definition Classes
    Assignable
  61. def copyDirectionOfImpl(that: Data): RecFloating.this.type
    Definition Classes
    MultiDataData
  62. def dirString(): String
    Definition Classes
    Data
  63. def dontSimplifyIt(): RecFloating.this.type
    Definition Classes
    Data
  64. def elements: ArrayBuffer[(String, Data)]
    Definition Classes
    BundleMultiData
  65. var elementsCache: ArrayBuffer[(String, Data)]
    Definition Classes
    Bundle
  66. def elementsString: String
    Definition Classes
    MultiData
  67. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  68. def equals(obj: Any): Boolean
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  69. def existsTag(cond: (SpinalTag) ⇒ Boolean): Boolean
    Definition Classes
    SpinalTagReady
  70. val exponent: Bits

    Exponent field (Berkeley encoded)

  71. val exponentSize: Int
  72. def filterTag(cond: (SpinalTag) ⇒ Boolean): Iterable[SpinalTag]
    Definition Classes
    SpinalTagReady
  73. def find(name: String): Data
    Definition Classes
    MultiData
  74. def findTag(cond: (SpinalTag) ⇒ Boolean): Option[SpinalTag]
    Definition Classes
    SpinalTagReady
  75. def flatten: Seq[BaseType]
    Definition Classes
    MultiDataData
  76. def flattenForeach(body: (BaseType) ⇒ Unit): Unit
    Definition Classes
    MultiDataData
  77. def flattenLocalName: Seq[String]
    Definition Classes
    MultiDataData
  78. def flip(): RecFloating.this.type

    Flip the direction of the signal.

    Flip the direction of the signal.

    in and out are swapped, inout stay the same.

    Definition Classes
    MultiDataData
  79. def foreachReflectableNameables(doThat: (Any) ⇒ Unit): Unit
    Definition Classes
    Nameable
  80. def foreachTag(body: (SpinalTag) ⇒ Unit): Unit
    Definition Classes
    SpinalTagReady
  81. def freeze(): RecFloating.this.type
    Definition Classes
    MultiDataData
  82. def fromFloating(that: Floating): RecFloating

    Import from an IEEE 754 floating point number

  83. def fromSFix(that: SFix): RecFloating

    Import from SFix

  84. def fromSInt(that: SInt): RecFloating

    Import from SInt

  85. def fromUFix(that: UFix): RecFloating

    Import from UFix

  86. def fromUInt(that: UInt): RecFloating

    Import from UInt

  87. def getAheadValue(): RecFloating.this.type

    For a register, get the value it will have at the next clock, as a combinational signal.

    For a register, get the value it will have at the next clock, as a combinational signal.

    Definition Classes
    Data
  88. def getBitsWidth: Int

    Return the width of the data

    Return the width of the data

    Definition Classes
    MultiDataData
  89. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  90. def getComponent(): Component
    Definition Classes
    DataInComponentNameableByComponent
  91. def getComponents(): Seq[Component]

    Get current component with all parents

    Get current component with all parents

    Definition Classes
    InComponent
  92. def getDirection: IODirection
    Definition Classes
    Data
  93. def getDisplayName(): String
    Definition Classes
    Nameable
  94. def getExponentBias: Int

    Value of the exponent bias for this float configuration

  95. def getExponentZero: Int

    Value of the recoded exponent corresponding to the smallest exponent

  96. def getInstanceCounter: Int
    Definition Classes
    ContextUser
  97. def getMode: Byte
    Attributes
    protected
    Definition Classes
    Nameable
  98. def getMuxType[T <: Data](list: TraversableOnce[T]): HardType[T]
    Definition Classes
    Data
  99. def getName(default: String): String
    Definition Classes
    NameableByComponentNameable
  100. def getName(): String
    Definition Classes
    NameableByComponentNameable
  101. def getPartialName(): String
    Definition Classes
    Nameable
  102. def getPath(from: Component, to: Component): Seq[Component]
    Definition Classes
    NameableByComponent
  103. def getRealSource: Any
    Definition Classes
    Assignable
  104. def getRealSourceNoRec: Any
    Definition Classes
    DataAssignable
  105. def getRefOwnersChain(): List[Any]
    Definition Classes
    OwnableRef
  106. def getRootParent: Data
    Definition Classes
    Data
  107. def getRtlPath(separator: String = "/"): String
    Definition Classes
    Data
  108. def getScalaLocationLong: String
    Definition Classes
    ScalaLocated
  109. def getScalaLocationShort: String
    Definition Classes
    ScalaLocated
  110. def getScalaTrace(): Throwable
    Definition Classes
    ScalaLocated
  111. def getTag[T <: SpinalTag](clazz: Class[T]): Option[T]
    Definition Classes
    SpinalTagReady
  112. def getTags(): LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  113. def getTagsOf[T <: SpinalTag]()(implicit tag: ClassTag[T]): Iterable[T]
    Definition Classes
    SpinalTagReady
  114. def getTypeString: String
    Definition Classes
    Bundle
  115. def getZero: RecFloating.this.type

    Create a signal set to 0

    Create a signal set to 0

    Definition Classes
    MultiDataData
  116. val globalData: GlobalData
    Definition Classes
    GlobalDataUser
  117. var hardtype: HardType[_]
    Definition Classes
    Bundle
  118. def hasTag[T <: SpinalTag](clazz: Class[T]): Boolean
    Definition Classes
    SpinalTagReady
  119. def hasTag(spinalTag: SpinalTag): Boolean
    Definition Classes
    SpinalTagReady
  120. def hashCode(): Int
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  121. def init(that: BigDecimal): RecFloating.this.type

    Initialization function

    Initialization function

    that

    initialization value

    returns

    returns initialized object

  122. final def initFrom(that: AnyRef, target: AnyRef = this): Unit
    Definition Classes
    Data
  123. def instanceAttributes(language: Language): Iterable[Attribute]
    Definition Classes
    SpinalTagReady
  124. def instanceAttributes: Iterable[Attribute]
    Definition Classes
    SpinalTagReady
  125. def isAnalog: Boolean
    Definition Classes
    Data
  126. def isComb: Boolean
    Definition Classes
    Data
  127. def isCompletelyUnnamed: Boolean
    Definition Classes
    Nameable
  128. def isDirectionLess: Boolean
    Definition Classes
    Data
  129. def isEmptyOfTag: Boolean
    Definition Classes
    SpinalTagReady
  130. def isInOut: Boolean
    Definition Classes
    Data
  131. def isInfinite: Bool
  132. def isInput: Boolean
    Definition Classes
    Data
  133. def isInputOrInOut: Boolean
    Definition Classes
    Data
  134. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  135. def isNaN: Bool

    Return true is the value is a NaN

  136. final def isNamed: Boolean
    Definition Classes
    Nameable
  137. def isNormal: Bool

    Return true if the number is normal

  138. def isOutput: Boolean
    Definition Classes
    Data
  139. def isOutputOrInOut: Boolean
    Definition Classes
    Data
  140. def isPositive: Bool

    Return true if the value is positive

  141. def isPriorityApplicable(namePriority: Byte): Boolean
    Definition Classes
    Nameable
  142. def isQNaN: Bool

    Return true if the value is a Quiet NaN

  143. def isReg: Boolean
    Definition Classes
    Data
  144. def isRegOnAssign: Boolean
    Definition Classes
    Data
  145. def isSNaN: Bool

    Return true if the value is a Signalling NaN

  146. def isSpecial: Bool

    Return true if the number is a special case (NaN or Inf)

  147. def isSubnormal: Bool

    Return true if the number is subnormal

  148. def isUnnamed: Boolean
    Definition Classes
    NameableByComponentNameable
  149. def isZero: Bool

    Return true if the number is +- zero

  150. val mantissa: Bits

    Mantissa field without the implicit first bit

  151. val mantissaSize: Int
  152. val name: String
    Definition Classes
    Nameable
  153. val nameableRef: Nameable
    Attributes
    protected
    Definition Classes
    Nameable
    Annotations
    @DontName()
  154. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  155. def noBackendCombMerge(): RecFloating.this.type

    Put the combinatorial logic driving this signal in a separate process

    Put the combinatorial logic driving this signal in a separate process

    Definition Classes
    Data
  156. def noCombLoopCheck(): RecFloating.this.type

    Disable combinatorial loop checking for this Data

    Disable combinatorial loop checking for this Data

    Definition Classes
    Data
    See also

    Combinatorial loop Error Documentation

  157. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  158. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  159. def onEachAttributes(doIt: (Attribute) ⇒ Unit): Unit
    Definition Classes
    SpinalTagReady
  160. def overrideLocalName(name: String): RecFloating.this.type
    Definition Classes
    Nameable
  161. val parent: Data
    Definition Classes
    Data
  162. val parentScope: ScopeStatement
    Definition Classes
    ContextUser
  163. def pull(propagateName: Boolean): RecFloating.this.type
    Definition Classes
    Data
  164. def pull(): RecFloating.this.type

    Pull a signal to the top level (use for debugging)

    Pull a signal to the top level (use for debugging)

    Definition Classes
    Data
  165. def purify(): RecFloating.this.type
    Definition Classes
    Data
  166. def randBoot(u: Unit): RecFloating.this.type

    Useful for register that doesn't need a reset value in RTL, but need a random value for simulation (avoid x-propagation)

    Useful for register that doesn't need a reset value in RTL, but need a random value for simulation (avoid x-propagation)

    Definition Classes
    Data
  167. val refOwner: RefOwnerType
    Definition Classes
    OwnableRef
    Annotations
    @DontName()
  168. def reflectNames(): Unit
    Definition Classes
    Nameable
  169. def removeAssignments(data: Boolean = true, init: Boolean = true, initial: Boolean = true): RecFloating.this.type
    Definition Classes
    Data
  170. def removeDataAssignments(): RecFloating.this.type
    Definition Classes
    Data
  171. def removeInitAssignments(): RecFloating.this.type
    Definition Classes
    Data
  172. def removeTag(spinalTag: SpinalTag): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  173. def removeTags(tags: Iterable[SpinalTag]): RecFloating.this.type
    Definition Classes
    SpinalTagReady
  174. def resized: RecFloating.this.type

    Return a version of the signal which is allowed to be automatically resized where needed.

    Return a version of the signal which is allowed to be automatically resized where needed.

    The resize operation is deferred until the point of assignment later. The resize may widen or truncate, retaining the LSB.

    Definition Classes
    Data
    See also

    Width checking Documentation

  175. def rootIF(): Interface

    root interface

    root interface

    Definition Classes
    Data
  176. def rootIFList(): List[Interface]
    Definition Classes
    Data
  177. def rootIFrec(now: Data, lastRoot: List[Interface]): List[Interface]
    Definition Classes
    Data
  178. val scalaTrace: Throwable
    Definition Classes
    ScalaLocated
  179. def setAll(): RecFloating.this.type

    Set all bits to True and return itself

    Set all bits to True and return itself

    Definition Classes
    Data
  180. def setAsAnalog(): RecFloating.this.type
    Definition Classes
    Data
  181. def setAsComb(): RecFloating.this.type

    Set baseType to Combinatorial

    Set baseType to Combinatorial

    Definition Classes
    MultiDataData
  182. def setAsDirectionLess(): RecFloating.this.type

    Remove the direction (in, out, inout) to a signal

    Remove the direction (in, out, inout) to a signal

    Definition Classes
    MultiDataData
  183. def setAsReg(): RecFloating.this.type

    Set baseType to reg

    Set baseType to reg

    Definition Classes
    MultiDataData
  184. def setCompositeName(nameable: Nameable, postfix: String, namePriority: Byte): RecFloating.this.type
    Definition Classes
    Nameable
  185. def setCompositeName(nameable: Nameable, postfix: String, weak: Boolean): RecFloating.this.type
    Definition Classes
    Nameable
  186. def setCompositeName(nameable: Nameable, postfix: String): RecFloating.this.type
    Definition Classes
    Nameable
  187. def setCompositeName(nameable: Nameable, namePriority: Byte): RecFloating.this.type
    Definition Classes
    Nameable
  188. def setCompositeName(nameable: Nameable, weak: Boolean): RecFloating.this.type
    Definition Classes
    Nameable
  189. def setCompositeName(nameable: Nameable): RecFloating.this.type
    Definition Classes
    Nameable
  190. def setLambdaName(isNameBody: ⇒ Boolean)(nameGen: ⇒ String): RecFloating.this.type
    Definition Classes
    Nameable
  191. def setName(name: String, namePriority: Byte): RecFloating.this.type
    Definition Classes
    Nameable
  192. def setName(name: String, weak: Boolean): RecFloating.this.type
    Definition Classes
    Nameable
  193. def setName(name: String): RecFloating.this.type
    Definition Classes
    Nameable
  194. def setNameAsWeak(): RecFloating.this.type
    Definition Classes
    Nameable
  195. def setOutputAsReg(): RecFloating.this.type

    Recursively set baseType to reg only for output

    Recursively set baseType to reg only for output

    Definition Classes
    Data
  196. def setPartialName(name: String, namePriority: Byte, owner: Any): RecFloating.this.type
    Definition Classes
    Nameable
  197. def setPartialName(name: String, namePriority: Byte): RecFloating.this.type
    Definition Classes
    Nameable
  198. def setPartialName(name: String, weak: Boolean): RecFloating.this.type
    Definition Classes
    Nameable
  199. def setPartialName(owner: Nameable, name: String, namePriority: Byte): RecFloating.this.type
    Definition Classes
    Nameable
  200. def setPartialName(owner: Nameable, name: String, weak: Boolean): RecFloating.this.type
    Definition Classes
    Nameable
  201. def setPartialName(name: String): RecFloating.this.type
    Definition Classes
    Nameable
  202. def setPartialName(owner: Nameable, name: String): RecFloating.this.type
    Definition Classes
    Nameable
  203. def setPartialName(owner: Nameable): RecFloating.this.type
    Definition Classes
    Nameable
  204. def setRefOwner(that: Any): Unit
    Definition Classes
    OwnableRef
  205. def setScalaLocated(source: ScalaLocated): RecFloating.this.type
    Definition Classes
    ScalaLocated
  206. def setWeakName(name: String): RecFloating.this.type
    Definition Classes
    Nameable
  207. val sign: Bool

    Sign field (true when negative)

  208. def spinalTags: LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  209. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  210. def toFloating: Floating

    Convert to classic IEEE 754 floating point number

  211. def toIo(): RecFloating.this.type
    Definition Classes
    Data
  212. def toMuxInput[T <: Data](muxOutput: T): T
    Definition Classes
    Data
  213. def toSFix(peak: ExpNumber, resolution: ExpNumber): SFix

    Convert floating point to SFix with resolution

  214. def toSFix(peak: ExpNumber, width: BitCount): SFix

    Convert floating point to SFix with width

  215. def toSInt(width: Int): SInt

    Convert floating point to SInt

  216. def toString(): String
    Definition Classes
    BundleNameable → AnyRef → Any
  217. def toUFix(peak: ExpNumber, resolution: ExpNumber): UFix

    Convert floating point to SFix with resolution

  218. def toUFix(peak: ExpNumber, width: BitCount): UFix

    Convert floating point to SFix with width

  219. def toUInt(width: Int): UInt

    Convert floating point to UInt

  220. def unfreeze(): RecFloating.this.type
    Definition Classes
    MultiDataData
  221. def unsetName(): RecFloating.this.type
    Definition Classes
    Nameable
  222. def valCallback[T](ref: T, name: String): T
    Definition Classes
    ValCallbackRec → ValCallback
  223. def valCallbackOn(ref: Any, name: String, refs: Set[Any]): Unit
    Definition Classes
    ValCallbackRec
  224. def valCallbackRec(ref: Any, name: String): Unit
    Definition Classes
    BundleValCallbackRec
  225. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  226. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  227. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  228. def wrapNext(): RecFloating.this.type
    Definition Classes
    Data
  229. def zipByName(that: MultiData, rec: ArrayBuffer[(BaseType, BaseType)] = ArrayBuffer()): ArrayBuffer[(BaseType, BaseType)]
    Definition Classes
    MultiData

Deprecated Value Members

  1. def asDirectionLess(): RecFloating.this.type
    Definition Classes
    Data
    Annotations
    @deprecated
    Deprecated

    (Since version ???) use setAsDirectionLess instead

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated
  3. def genIf(cond: Boolean): RecFloating.this.type

    Generate this if condition is true

    Generate this if condition is true

    Definition Classes
    Data
    Annotations
    @deprecated
    Deprecated

    does not work with <>, use 'someBool generate Type()' or 'if(condition) Type() else null' instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Bundle

Inherited from ValCallbackRec

Inherited from ValCallback

Inherited from MultiData

Inherited from Data

Inherited from InComponent

Inherited from OverridedEqualsHashCode

Inherited from SpinalTagReady

Inherited from Assignable

Inherited from NameableByComponent

Inherited from Nameable

Inherited from OwnableRef

Inherited from ContextUser

Inherited from ScalaLocated

Inherited from GlobalDataUser

Inherited from AnyRef

Inherited from Any

Ungrouped