Class

spinal.core

SInt

Related Doc: package core

Permalink

class SInt extends BitVector with Num[SInt] with MinMaxProvider with DataPrimitives[SInt] with BaseTypePrimitives[SInt] with BitwiseOp[SInt]

The SInt type corresponds to a vector of bits that can be used for signed integer arithmetic.

Example:
  1. val mySInt = SInt(8 bits)
    mySInt    := S(4, 8 bits) + S"0000_1111"
    mySInt    := S(4) - S"h1A"
See also

SInt Documentation

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SInt
  2. BitwiseOp
  3. BaseTypePrimitives
  4. DataPrimitives
  5. MinMaxProvider
  6. Num
  7. BitVector
  8. Widthable
  9. WidthProvider
  10. BaseType
  11. Expression
  12. StatementDoubleLinkedContainer
  13. DoubleLinkedContainer
  14. DeclarationStatement
  15. LeafStatement
  16. Statement
  17. BaseNode
  18. ExpressionContainer
  19. Data
  20. InComponent
  21. OverridedEqualsHashCode
  22. SpinalTagReady
  23. Assignable
  24. NameableByComponent
  25. Nameable
  26. OwnableRef
  27. ContextUser
  28. ScalaLocated
  29. GlobalDataUser
  30. AnyRef
  31. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SInt()

    Permalink

Type Members

  1. abstract type RefOwnerType

    Permalink
    Definition Classes
    OwnableRef
  2. type T = SInt

    Permalink

    Used to know the data type of the children class of BitVector

    Used to know the data type of the children class of BitVector

    Definition Classes
    SIntBitVector

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. def ##(right: Data): Bits

    Permalink

    Concatenation between two data

    Concatenation between two data

    Definition Classes
    Data
  3. final def ##(): Int

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

    Permalink
    Definition Classes
    Data
  5. def %(right: SInt): SInt

    Permalink

    Modulo

    Modulo

    Definition Classes
    SIntNum
  6. def &(right: SInt): SInt

    Permalink

    Bitwise AND operator

    Bitwise AND operator

    Definition Classes
    SIntBitwiseOp
  7. def *(right: SInt): SInt

    Permalink

    Multiplication

    Multiplication

    Definition Classes
    SIntNum
  8. def +(right: SInt): SInt

    Permalink

    Addition

    Addition

    Definition Classes
    SIntNum
  9. def +^(right: SInt): SInt

    Permalink

    Safe Addition with 1 bit expand

    Safe Addition with 1 bit expand

    Definition Classes
    SIntNum
  10. def +|(right: SInt): SInt

    Permalink

    Safe Addition with saturation

    Safe Addition with saturation

    Definition Classes
    SIntNum
  11. def -(right: SInt): SInt

    Permalink

    Substraction

    Substraction

    Definition Classes
    SIntNum
  12. def -^(right: SInt): SInt

    Permalink

    Safe Substraction with 1 bit expand

    Safe Substraction with 1 bit expand

    Definition Classes
    SIntNum
  13. def -|(right: SInt): SInt

    Permalink

    Safe Substraction with saturation

    Safe Substraction with saturation

    Definition Classes
    SIntNum
  14. def /(right: SInt): SInt

    Permalink

    Division

    Division

    Definition Classes
    SIntNum
  15. def :=(value: String): Unit

    Permalink
  16. def :=(rangesValue: (Any, Any), _rangesValues: (Any, Any)*): Unit

    Permalink

    Assign a range value to a SInt

    Assign a range value to a SInt

    rangesValue

    The first range value

    _rangesValues

    Others range values

    Example:
    1. core.io.interrupt = (0 -> uartCtrl.io.interrupt, 1 -> timerCtrl.io.interrupt, default -> false)
  17. def :=(that: SInt)(implicit loc: Location): Unit

    Permalink

    Assign a data to this

    Assign a data to this

    Definition Classes
    DataPrimitives
  18. def <(right: SInt): Bool

    Permalink

    Is less than right

    Is less than right

    Definition Classes
    SIntNum
  19. def <<(that: UInt): SInt

    Permalink

    Logical shift Left (output width will increase of : w(this) + max(that) bits

    Logical shift Left (output width will increase of : w(this) + max(that) bits

    Definition Classes
    SIntNum
  20. def <<(that: Int): SInt

    Permalink

    Arithmetic left shift (w(T) = w(this) + shift)

    Arithmetic left shift (w(T) = w(this) + shift)

    Definition Classes
    SIntNum
  21. def <=(right: SInt): Bool

    Permalink

    Is equal or less than right

    Is equal or less than right

    Definition Classes
    SIntNum
  22. def <>(that: SInt)(implicit loc: Location): Unit

    Permalink

    Auto connection between two data

    Auto connection between two data

    Definition Classes
    DataPrimitives
  23. def =/=(that: SInt): Bool

    Permalink
    Definition Classes
    DataPrimitives
  24. def =/=(that: MaskedLiteral): Bool

    Permalink

    BitVector is not equal to MaskedLiteral

    BitVector is not equal to MaskedLiteral

    Definition Classes
    BitVector
  25. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  26. def ===(that: SInt): Bool

    Permalink

    Comparison between two data

    Comparison between two data

    Definition Classes
    DataPrimitives
  27. def ===(that: MaskedLiteral): Bool

    Permalink

    Compare a BitVector with a MaskedLiteral (M"110--0")

    Compare a BitVector with a MaskedLiteral (M"110--0")

    that

    the maskedLiteral

    returns

    a Bool data containing the result of the comparison

    Definition Classes
    BitVector
    Example:
    1. val myBool = myBits === M"0-1"
  28. def >(right: SInt): Bool

    Permalink

    Is greater than right

    Is greater than right

    Definition Classes
    SIntNum
  29. def >=(right: SInt): Bool

    Permalink

    Is equal or greater than right

    Is equal or greater than right

    Definition Classes
    SIntNum
  30. def >>(that: UInt): SInt

    Permalink

    Logical shift Right (output width == input width)

    Logical shift Right (output width == input width)

    that

    the number of right shift

    returns

    a Bits of width : w(this)

    Definition Classes
    SIntNum
    Example:
    1. val result = mySInt >> myUIntShift
  31. def >>(that: Int): SInt

    Permalink

    Arithmetic right shift (w(T) = w(this) - shift)

    Arithmetic right shift (w(T) = w(this) - shift)

    Definition Classes
    SIntNum
  32. def @*(count: Int): SInt

    Permalink
  33. def @@(that: Bool): SInt

    Permalink

    Concatenation between a SInt and a Bool

  34. def @@(that: UInt): SInt

    Permalink

    Concatenation between a SInt and UInt

  35. def @@(that: SInt): SInt

    Permalink

    Concatenation between two SInt

    Concatenation between two SInt

    that

    an SInt to append

    returns

    a new SInt of width (width(this) + width(right))

    Example:
    1. val mySInt = sInt1 @@ sInt2
  36. def IFparent: Data

    Permalink
    Definition Classes
    Data
  37. def Q: QFormat

    Permalink
    Definition Classes
    Num
  38. def \(that: SInt): SInt

    Permalink

    Use as \= to have the same behavioral as VHDL variable

    Use as \= to have the same behavioral as VHDL variable

    Definition Classes
    DataPrimitives
  39. def ^(right: SInt): SInt

    Permalink

    Bitwise XOR operator

    Bitwise XOR operator

    Definition Classes
    SIntBitwiseOp
  40. def _fixEntry(roundN: Int, roundType: RoundType, satN: Int): SInt

    Permalink
    Attributes
    protected
  41. var _spinalTags: LinkedHashSet[SpinalTag]

    Permalink
    Definition Classes
    SpinalTagReady
  42. def addAttribute(attribute: Attribute): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeDataSpinalTagReady
  43. def addAttribute(name: String, value: Int): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  44. def addAttribute(name: String, value: String): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  45. def addAttribute(name: String): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  46. def addTag[T <: SpinalTag](spinalTag: T): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  47. def addTags(h: SpinalTag, tail: SpinalTag*): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  48. def addTags[T <: SpinalTag](tags: Iterable[T]): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  49. var algoIncrementale: Int

    Permalink
    Definition Classes
    BaseNode
  50. var algoInt: Int

    Permalink
    Definition Classes
    BaseNode
  51. def allowDirectionLessIo(): SInt.this.type

    Permalink

    Allow a Data of an io Bundle to be directionless

    Allow a Data of an io Bundle to be directionless

    See https://spinalhdl.github.io/SpinalDoc-RTD/master/SpinalHDL/Design%20errors/iobundle.html

    Definition Classes
    Data
  52. def allowOverride(): SInt.this.type

    Permalink

    Allow a Data to be overriden

    Allow a Data to be overriden

    See https://spinalhdl.github.io/SpinalDoc-RTD/master/SpinalHDL/Design%20errors/assignment_overlap.html

    Definition Classes
    Data
  53. def allowPartialyAssigned(): SInt.this.type

    Permalink

    Allow a register to be partially assigned

    Allow a register to be partially assigned

    Definition Classes
    Data
  54. def allowPruning(): SInt.this.type

    Permalink
    Definition Classes
    Data
  55. def allowSimplifyIt(): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  56. def allowUnsetRegToAvoidLatch(): SInt.this.type

    Permalink

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

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

    See https://spinalhdl.github.io/SpinalDoc-RTD/master/SpinalHDL/Design%20errors/unassigned_register.html#register-with-only-init

    Definition Classes
    Data
  57. def andMask(that: Bool): SInt.this.type

    Permalink
    Definition Classes
    BitVector
  58. def andR: Bool

    Permalink

    Logical AND of all bits

    Logical AND of all bits

    Definition Classes
    BitVector
  59. def apply(offset: UInt, bitCount: BitCount): SInt.this.type

    Permalink

    Return a range of bits at offset and of width bitCount

    Return a range of bits at offset and of width bitCount

    Definition Classes
    SIntBitVector
    Example:
    1. val myBool = myBits(myUInt, 2 bits)
  60. def apply(offset: Int, bitCount: BitCount): SInt.this.type

    Permalink

    Return a range of bits at offset and of width bitCount

    Return a range of bits at offset and of width bitCount

    Definition Classes
    SIntBitVector
    Example:
    1. val myBool = myBits(3, 2 bits)
  61. def apply(bitId: UInt): Bool

    Permalink

    Return the bit at index bitId

    Return the bit at index bitId

    Definition Classes
    SIntBitVector
    Example:
    1. val myBool = myBits(myUInt)
  62. def apply(bitId: Int): Bool

    Permalink

    Return the bit at index bitId

    Return the bit at index bitId

    Definition Classes
    SIntBitVector
    Example:
    1. val myBool = myBits(3)
  63. def apply(range: Range): SInt.this.type

    Permalink

    Return a range of bits

    Return a range of bits

    Definition Classes
    BitVector
    Example:
    1. val myBool = myBits(3 downto 1)
  64. def as[T <: Data](dataType: HardType[T]): T

    Permalink
    Definition Classes
    Data
  65. def asBits: Bits

    Permalink

    Cast data to Bits

    Cast data to Bits

    Definition Classes
    SIntData
  66. def asBool: Bool

    Permalink
    Definition Classes
    BitVector
  67. def asBools: Vec[Bool]

    Permalink

    Cast the BitVector into a Vector of Bool

    Cast the BitVector into a Vector of Bool

    returns

    a vector of Bool

    Definition Classes
    BitVector
  68. def asData: Data

    Permalink
    Definition Classes
    Data
  69. def asInOut(): SInt.this.type

    Permalink

    set a data as inout

    set a data as inout

    Definition Classes
    BaseTypeData
  70. def asInput(): SInt.this.type

    Permalink

    Set a data as input

    Set a data as input

    Definition Classes
    BaseTypeData
  71. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  72. def asOutput(): SInt.this.type

    Permalink

    Set a data as output

    Set a data as output

    Definition Classes
    BaseTypeData
  73. def asUInt: UInt

    Permalink

    Cast a SInt into an UInt

    Cast a SInt into an UInt

    returns

    a UInt data

    Example:
    1. myUInt := mySInt.asUInt
  74. def assignDontCare(): SInt.this.type

    Permalink
    Definition Classes
    SIntData
  75. def assignDontCareToUnasigned(): SInt.this.type

    Permalink
    Definition Classes
    Data
  76. def assignFormalRandom(kind: RandomExpKind): Unit

    Permalink
    Definition Classes
    SIntData
  77. final def assignFrom(that: AnyRef, target: AnyRef = this)(implicit loc: Location): Unit

    Permalink
    Definition Classes
    Data
  78. def assignFromBits(bits: Bits, hi: Int, lo: Int): Unit

    Permalink
    Definition Classes
    SIntData
  79. def assignFromBits(bits: Bits): Unit

    Permalink
    Definition Classes
    SIntData
  80. def assignFromBits(bits: Bits, offset: Int, bitCount: BitCount): Unit

    Permalink
    Definition Classes
    Data
  81. def assignFromImpl(that: AnyRef, target: AnyRef, kind: AnyRef)(implicit loc: Location): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseTypeAssignable
  82. def bitsRange: Range

    Permalink
    Definition Classes
    BitVector
  83. def ceil(n: Int, align: Boolean = true): SInt

    Permalink

    SInt ceil

    SInt ceil

    n

    : ceil lowerest n bit

    returns

    a new SInt of width (w - n + 1)

    Definition Classes
    SIntNum
    Example:
    1. val mySInt = SInt(w bits).ceil
  84. def ceil(width: BitCount, align: Boolean): SInt

    Permalink

    lowest n bits Round Operation by BitCount

    lowest n bits Round Operation by BitCount

    Definition Classes
    Num
  85. def ceilToInf(n: Int, align: Boolean = true): SInt

    Permalink

    SInt roundUp lowest m bits, friendly for hardware timing and area sign * ceil(abs(x))

    SInt roundUp lowest m bits, friendly for hardware timing and area sign * ceil(abs(x))

    Definition Classes
    SIntNum
  86. def ceilToInf(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  87. def cldCount: Int

    Permalink
    Definition Classes
    DoubleLinkedContainer
  88. def clearAll(): SInt.this.type

    Permalink

    Clear all bits

    Clear all bits

    Definition Classes
    BitVectorData
  89. var clockDomain: ClockDomain

    Permalink
    Definition Classes
    BaseType
  90. def clone(): SInt.this.type

    Permalink
    Definition Classes
    BitVectorBaseTypeData → AnyRef
  91. def component: Component

    Permalink
    Definition Classes
    ContextUser
  92. final def compositAssignFrom(that: AnyRef, target: AnyRef, kind: AnyRef)(implicit loc: Location): Unit

    Permalink
    Definition Classes
    Assignable
  93. var compositeAssign: Assignable

    Permalink
    Definition Classes
    Assignable
  94. def copyDirectionOf(that: SInt): Unit

    Permalink
    Definition Classes
    DataPrimitives
  95. def copyDirectionOfImpl(that: Data): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  96. def default(that: ⇒ SInt): SInt

    Permalink

    Set a default value to a data

    Set a default value to a data

    Definition Classes
    DataPrimitives
  97. def dirString(): String

    Permalink
    Definition Classes
    Data
  98. def dlcAppend(that: AssignmentStatement): SInt.this.type

    Permalink
    Definition Classes
    DoubleLinkedContainer
  99. def dlcForeach[T >: AssignmentStatement](func: (T) ⇒ Unit): Unit

    Permalink
    Definition Classes
    DoubleLinkedContainer
  100. def dlcHasOnlyOne: Boolean

    Permalink
    Definition Classes
    DoubleLinkedContainer
  101. var dlcHead: AssignmentStatement

    Permalink
    Definition Classes
    DoubleLinkedContainer
  102. def dlcIsEmpty: Boolean

    Permalink
    Definition Classes
    DoubleLinkedContainer
  103. var dlcLast: AssignmentStatement

    Permalink
    Definition Classes
    DoubleLinkedContainer
  104. def dlcPrepend(that: AssignmentStatement): SInt.this.type

    Permalink
    Definition Classes
    DoubleLinkedContainer
  105. def dontSimplifyIt(): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  106. def drop(n: Int): Bits

    Permalink

    Drop lowerst n bits

    Drop lowerst n bits

    returns

    data10bits(9 downto 4)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.drop(4)
  107. def dropHigh(n: Int): Bits

    Permalink

    Drop highest n bits

    Drop highest n bits

    returns

    data10bits(5 downto 0)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.dropHigh(4)
  108. def dropLow(n: Int): Bits

    Permalink
    Definition Classes
    BitVector
  109. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  110. def equals(obj: Any): Boolean

    Permalink
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  111. def existsTag(cond: (SpinalTag) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    SpinalTagReady
  112. def expand: SInt

    Permalink
  113. def filterTag(cond: (SpinalTag) ⇒ Boolean): Iterable[SpinalTag]

    Permalink
    Definition Classes
    SpinalTagReady
  114. def findTag(cond: (SpinalTag) ⇒ Boolean): Option[SpinalTag]

    Permalink
    Definition Classes
    SpinalTagReady
  115. def fixTo(q: QFormat): SInt

    Permalink
  116. def fixTo(q: QFormat, roundType: RoundType): SInt

    Permalink
  117. def fixTo(q: QFormat, roundType: RoundType, sym: Boolean): SInt

    Permalink
  118. def fixTo(section: Inclusive): SInt

    Permalink
  119. def fixTo(section: Inclusive, roundType: RoundType): SInt

    Permalink
  120. def fixTo(section: Inclusive, roundType: RoundType, sym: Boolean): SInt

    Permalink
  121. def flatten: Seq[BaseType]

    Permalink
    Definition Classes
    BaseTypeData
  122. def flattenForeach(body: (BaseType) ⇒ Unit): Unit

    Permalink
    Definition Classes
    BaseTypeData
  123. def flattenLocalName: Seq[String]

    Permalink
    Definition Classes
    BaseTypeData
  124. def flip(): SInt.this.type

    Permalink

    flip the direction of the data

    flip the direction of the data

    Definition Classes
    Data
  125. def floor(n: Int): SInt

    Permalink

    return w(this)-n bits

    return w(this)-n bits

    Definition Classes
    SIntNum
  126. def floor(width: BitCount): SInt

    Permalink
    Definition Classes
    Num
  127. def floorToZero(n: Int): SInt

    Permalink

    SInt roundUp lowest m bits, friendly for hardware timing and area sign * floor(abs(x))

    SInt roundUp lowest m bits, friendly for hardware timing and area sign * floor(abs(x))

    Definition Classes
    SIntNum
  128. def floorToZero(width: BitCount): SInt

    Permalink
    Definition Classes
    Num
  129. def foreachClockDomain(func: (ClockDomain) ⇒ Unit): Unit

    Permalink
    Definition Classes
    BaseTypeStatement
  130. def foreachDrivingExpression(func: (Expression) ⇒ Unit): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  131. def foreachExpression(func: (Expression) ⇒ Unit): Unit

    Permalink
  132. def foreachReflectableNameables(doThat: (Any) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Nameable
  133. def foreachStatements(func: (AssignmentStatement) ⇒ Unit): Unit

    Permalink
  134. def foreachTag(body: (SpinalTag) ⇒ Unit): Unit

    Permalink
    Definition Classes
    SpinalTagReady
  135. def freeze(): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  136. def getAheadValue(): SInt.this.type

    Permalink

    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
    BaseTypeData
  137. def getAllTrue: SInt.this.type

    Permalink
    Definition Classes
    SIntBitVector
  138. def getBitsWidth: Int

    Permalink

    Return the width of the data

    Return the width of the data

    Definition Classes
    BitVectorData
  139. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  140. def getComponent(): Component

    Permalink
    Definition Classes
    DataInComponentNameableByComponent
  141. def getComponents(): Seq[Component]

    Permalink

    Get current component with all parents

    Get current component with all parents

    Definition Classes
    InComponent
  142. def getDirection: IODirection

    Permalink
    Definition Classes
    Data
  143. def getDisplayName(): String

    Permalink
    Definition Classes
    Nameable
  144. def getDrivingReg(reportError: Boolean = true): SInt.this.type

    Permalink
    Definition Classes
    BaseType
  145. def getInstanceCounter: Int

    Permalink
    Definition Classes
    ContextUser
  146. def getMode: Byte

    Permalink
    Attributes
    protected
    Definition Classes
    Nameable
  147. def getMuxType[T <: Data](list: TraversableOnce[T]): HardType[T]

    Permalink
    Definition Classes
    BitVectorData
  148. def getName(default: String): String

    Permalink
    Definition Classes
    NameableByComponentNameable
  149. def getName(): String

    Permalink
    Definition Classes
    NameableByComponentNameable
  150. def getPartialName(): String

    Permalink
    Definition Classes
    Nameable
  151. def getPath(from: Component, to: Component): Seq[Component]

    Permalink
    Definition Classes
    NameableByComponent
  152. def getRealSource: Any

    Permalink
    Definition Classes
    Assignable
  153. def getRealSourceNoRec: Any

    Permalink
    Definition Classes
    DataAssignable
  154. def getRefOwnersChain(): List[Any]

    Permalink
    Definition Classes
    OwnableRef
  155. def getRootParent: Data

    Permalink
    Definition Classes
    Data
  156. def getRtlPath(separator: String = "/"): String

    Permalink
    Definition Classes
    Data
  157. def getScalaLocationLong: String

    Permalink
    Definition Classes
    ScalaLocated
  158. def getScalaLocationShort: String

    Permalink
    Definition Classes
    ScalaLocated
  159. def getScalaTrace(): Throwable

    Permalink
    Definition Classes
    ScalaLocated
  160. def getSingleDriver: Option[SInt.this.type]

    Permalink
    Definition Classes
    BaseType
  161. def getTag[T <: SpinalTag](clazz: Class[T]): Option[T]

    Permalink
    Definition Classes
    SpinalTagReady
  162. def getTags(): LinkedHashSet[SpinalTag]

    Permalink
    Definition Classes
    SpinalTagReady
  163. def getTypeObject: TypeSInt.type

    Permalink
    Definition Classes
    SIntExpression
  164. def getWidth: Int

    Permalink
    Definition Classes
    WidthableWidthProvider
  165. def getWidthNoInferation: Int

    Permalink

    Return the width

    Return the width

    Definition Classes
    BitVector
  166. def getWidthStringNoInferation: String

    Permalink
    Definition Classes
    BitVector
  167. def getZero: SInt.this.type

    Permalink

    Create a data set to 0

    Create a data set to 0

    Definition Classes
    SIntData
  168. def getZeroUnconstrained: SInt.this.type

    Permalink
    Definition Classes
    SIntBitVector
  169. var globalData: GlobalData

    Permalink
    Definition Classes
    GlobalDataUser
  170. def hasAssignement: Boolean

    Permalink
    Definition Classes
    BaseType
  171. def hasDataAssignment: Boolean

    Permalink
    Definition Classes
    BaseType
  172. def hasInit: Boolean

    Permalink

    Does the base type have initial value

    Does the base type have initial value

    Definition Classes
    BaseType
  173. def hasOnlyOneStatement: Boolean

    Permalink
  174. def hasTag[T <: SpinalTag](clazz: Class[T]): Boolean

    Permalink
    Definition Classes
    SpinalTagReady
  175. def hasTag(spinalTag: SpinalTag): Boolean

    Permalink
    Definition Classes
    SpinalTagReady
  176. def hashCode(): Int

    Permalink
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  177. def head: AssignmentStatement

    Permalink
  178. def high: Int

    Permalink

    Return the upper bound

    Return the upper bound

    Definition Classes
    BitVector
  179. def init(that: SInt): SInt

    Permalink

    Set initial value to a data

    Set initial value to a data

    Definition Classes
    DataPrimitives
  180. final def initFrom(that: AnyRef, target: AnyRef = this): Unit

    Permalink
    Definition Classes
    Data
  181. def initial(that: SInt): SInt

    Permalink
    Definition Classes
    BaseTypePrimitives
  182. def initialFrom(that: AnyRef, target: AnyRef = this): Unit

    Permalink
    Definition Classes
    BaseType
  183. def insertNext(s: Statement): Unit

    Permalink
    Definition Classes
    Statement
  184. def instanceAttributes(language: Language): Iterable[Attribute]

    Permalink
    Definition Classes
    SpinalTagReady
  185. def instanceAttributes: Iterable[Attribute]

    Permalink
    Definition Classes
    SpinalTagReady
  186. def isAnalog: Boolean

    Permalink
    Definition Classes
    BaseTypeData
  187. def isComb: Boolean

    Permalink
    Definition Classes
    BaseTypeData
  188. def isCompletelyUnnamed: Boolean

    Permalink
    Definition Classes
    Nameable
  189. def isDirectionLess: Boolean

    Permalink
    Definition Classes
    Data
  190. def isEmptyOfTag: Boolean

    Permalink
    Definition Classes
    SpinalTagReady
  191. def isFrozen(): Boolean

    Permalink
    Definition Classes
    BaseType
  192. def isInOut: Boolean

    Permalink
    Definition Classes
    Data
  193. def isInput: Boolean

    Permalink
    Definition Classes
    Data
  194. def isInputOrInOut: Boolean

    Permalink
    Definition Classes
    Data
  195. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  196. final def isNamed: Boolean

    Permalink
    Definition Classes
    Nameable
  197. def isOutput: Boolean

    Permalink
    Definition Classes
    Data
  198. def isOutputOrInOut: Boolean

    Permalink
    Definition Classes
    Data
  199. def isPriorityApplicable(namePriority: Byte): Boolean

    Permalink
    Definition Classes
    Nameable
  200. def isReg: Boolean

    Permalink
    Definition Classes
    BaseTypeData
  201. def isRegOnAssign: Boolean

    Permalink
    Definition Classes
    BitVectorData
  202. def isTypeNode: Boolean

    Permalink

    Is the baseType a node

    Is the baseType a node

    Definition Classes
    BaseType
  203. def isUnknown: Bool

    Permalink
    Definition Classes
    BitVector
  204. def isUnnamed: Boolean

    Permalink
    Definition Classes
    NameableByComponentNameable
  205. def isUsingResetSignal: Boolean

    Permalink

    Is the basetype using reset signal

    Is the basetype using reset signal

    Definition Classes
    BaseType
  206. def isUsingSoftResetSignal: Boolean

    Permalink

    Is the basetype using soft reset signal

    Is the basetype using soft reset signal

    Definition Classes
    BaseType
  207. def isVital: Boolean

    Permalink

    Check if the baseType is vital

    Check if the baseType is vital

    Definition Classes
    BaseType
  208. var lastScopeStatement: Statement

    Permalink
    Definition Classes
    Statement
  209. def lsb: Bool

    Permalink

    Return the least significant bit

    Return the least significant bit

    Definition Classes
    BitVector
  210. def max(right: SInt): SInt

    Permalink

    Return the maximum value between this and right

    Return the maximum value between this and right

    Definition Classes
    Num
  211. def maxValue: BigInt

    Permalink
    Definition Classes
    SIntMinMaxProvider
  212. def min(right: SInt): SInt

    Permalink

    Return the minimum value between this and right

    Return the minimum value between this and right

    Definition Classes
    Num
  213. def minValue: BigInt

    Permalink
    Definition Classes
    SIntMinMaxProvider
  214. def msb: Bool

    Permalink

    Return the most significant bit

    Return the most significant bit

    Definition Classes
    BitVector
  215. def mux[T2 <: Data](mappings: (Any, T2)*): T2

    Permalink
    Definition Classes
    BaseType
  216. def muxDc[T2 <: Data](mappings: (Any, T2)*): T2

    Permalink
    Definition Classes
    BaseType
  217. def muxList[T2 <: Data](defaultValue: T2, mappings: Seq[(Any, T2)]): T2

    Permalink
    Definition Classes
    BaseType
  218. def muxList[T2 <: Data](mappings: Seq[(Any, T2)]): T2

    Permalink
    Definition Classes
    BaseType
  219. def muxListDc[T2 <: Data](mappings: Seq[(Any, T2)]): T2

    Permalink
    Definition Classes
    BaseType
  220. var name: String

    Permalink
    Definition Classes
    Nameable
  221. var nameableRef: Nameable

    Permalink
    Attributes
    protected
    Definition Classes
    Nameable
  222. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  223. def newExtract(offset: UInt, size: Int, extract: BitVectorRangedAccessFloating)(implicit loc: Location): SInt.this.type

    Permalink

    Extract a range of bits of the BitVector

    Extract a range of bits of the BitVector

    Definition Classes
    BitVector
  224. def newExtract(hi: Int, lo: Int, accessFactory: ⇒ BitVectorRangedAccessFixed): SInt.this.type

    Permalink

    Extract a range of bits of the BitVector

    Extract a range of bits of the BitVector

    Definition Classes
    BitVector
  225. def newExtract(bitId: UInt, extract: BitVectorBitAccessFloating): Bool

    Permalink

    Extract a bit of the BitVector

    Extract a bit of the BitVector

    Definition Classes
    BitVector
  226. def newExtract(bitId: Int, extract: BitVectorBitAccessFixed): Bool

    Permalink

    Extract a bit of the BitVector

    Extract a bit of the BitVector

    Definition Classes
    BitVector
  227. var nextScopeStatement: Statement

    Permalink
    Definition Classes
    Statement
  228. def noBackendCombMerge(): SInt.this.type

    Permalink

    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
  229. def noCombLoopCheck(): SInt.this.type

    Permalink

    Disable combinatorial loop checking for this Data

    Disable combinatorial loop checking for this Data

    See https://spinalhdl.github.io/SpinalDoc-RTD/master/SpinalHDL/Design%20errors/combinatorial_loop.html

    Definition Classes
    Data
  230. def normalizeInputs: Unit

    Permalink
    Definition Classes
    BaseTypeExpressionContainer
  231. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  232. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  233. def onEachAttributes(doIt: (Attribute) ⇒ Unit): Unit

    Permalink
    Definition Classes
    SpinalTagReady
  234. def opName: String

    Permalink
    Definition Classes
    SIntExpression
  235. def orMask(that: Bool): SInt.this.type

    Permalink
    Definition Classes
    BitVector
  236. def orR: Bool

    Permalink

    Logical OR of all bits

    Logical OR of all bits

    Definition Classes
    BitVector
  237. def overrideLocalName(name: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  238. var parent: Data

    Permalink
    Definition Classes
    Data
  239. var parentScope: ScopeStatement

    Permalink
    Definition Classes
    ContextUser
  240. def pull(propagateName: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Data
  241. def pull(): SInt.this.type

    Permalink

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

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

    Definition Classes
    Data
  242. def purify(): SInt.this.type

    Permalink
    Definition Classes
    Data
  243. def randBoot(u: Unit): SInt.this.type

    Permalink

    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
  244. var refOwner: RefOwnerType

    Permalink
    Definition Classes
    OwnableRef
  245. def reflectNames(): Unit

    Permalink
    Definition Classes
    Nameable
  246. def remapClockDomain(func: (ClockDomain) ⇒ ClockDomain): Unit

    Permalink
    Definition Classes
    BaseTypeStatement
  247. def remapDrivingExpressions(func: (Expression) ⇒ Expression): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  248. def remapExpressions(func: (Expression) ⇒ Expression): Unit

    Permalink
  249. def removeAssignments(data: Boolean = true, init: Boolean = true, initial: Boolean = true): SInt.this.type

    Permalink

    Remove all assignments of the base type

    Remove all assignments of the base type

    Definition Classes
    BaseTypeData
  250. def removeDataAssignments(): SInt.this.type

    Permalink
    Definition Classes
    Data
  251. def removeInitAssignments(): SInt.this.type

    Permalink
    Definition Classes
    Data
  252. def removeStatement(): Unit

    Permalink
    Definition Classes
    BaseTypeStatement
  253. def removeStatementFromScope(): Unit

    Permalink
    Definition Classes
    Statement
  254. def removeTag(spinalTag: SpinalTag): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  255. def removeTags(tags: Iterable[SpinalTag]): SInt.this.type

    Permalink
    Definition Classes
    SpinalTagReady
  256. def resize(width: BitCount): SInt

    Permalink
    Definition Classes
    SIntBitVector
  257. def resize(width: Int): SInt.this.type

    Permalink

    Resize the bitVector to width

    Resize the bitVector to width

    returns

    a resized bitVector

    Definition Classes
    SIntBitVector
    Example:
    1. val res = myBits.resize(10)
  258. def resized: SInt.this.type

    Permalink

    Resized data regarding target

    Resized data regarding target

    Definition Classes
    Data
  259. def reversed: SInt.this.type

    Permalink
    Definition Classes
    SIntBitVector
  260. def rootIF(): Interface

    Permalink

    root interface

    root interface

    Definition Classes
    Data
  261. def rootIFList(): List[Interface]

    Permalink
    Definition Classes
    Data
  262. def rootIFrec(now: Data, lastRoot: List[Interface]): List[Interface]

    Permalink
    Definition Classes
    Data
  263. def rootScopeStatement: ScopeStatement

    Permalink
    Definition Classes
    BaseTypeStatement
  264. def rotateLeft(that: Int): SInt

    Permalink

    Left rotation of that bits

    Left rotation of that bits

    Definition Classes
    SIntBitVector
  265. def rotateLeft(that: UInt): T

    Permalink

    Left rotation of that Bits

    Left rotation of that Bits

    Definition Classes
    BitVector
  266. def rotateRight(that: Int): SInt

    Permalink

    Right rotation of that bits

    Right rotation of that bits

    Definition Classes
    SIntBitVector
  267. def rotateRight(that: UInt): T

    Permalink

    Right rotation of that Bits

    Right rotation of that Bits

    Definition Classes
    BitVector
  268. def round(n: Int, align: Boolean = true): SInt

    Permalink
    Definition Classes
    SIntNum
  269. def round(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  270. def roundDown(n: Int, align: Boolean): SInt

    Permalink

    SInt roundDown lowest m bits, complex for hardware , not recommended The algorithm represented by python code : ceil(x - 0.5)

    SInt roundDown lowest m bits, complex for hardware , not recommended The algorithm represented by python code : ceil(x - 0.5)

    Definition Classes
    SIntNum
  271. def roundDown(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  272. def roundToEven(n: Int, align: Boolean): SInt

    Permalink
    Definition Classes
    SIntNum
  273. def roundToEven(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  274. def roundToInf(n: Int, align: Boolean = true): SInt

    Permalink

    SInt roundToInf sign * floor(abs(x) + 0.5)

    SInt roundToInf sign * floor(abs(x) + 0.5)

    Definition Classes
    SIntNum
  275. def roundToInf(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  276. def roundToOdd(n: Int, align: Boolean): SInt

    Permalink
    Definition Classes
    SIntNum
  277. def roundToOdd(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  278. def roundToZero(n: Int, align: Boolean): SInt

    Permalink

    SInt roundToZero The algorithm represented by python code : sign * ceil(abs(x) - 0.5)

    SInt roundToZero The algorithm represented by python code : sign * ceil(abs(x) - 0.5)

    Definition Classes
    SIntNum
  279. def roundToZero(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  280. def roundUp(n: Int, align: Boolean = true): SInt

    Permalink

    SInt roundUp lowest m bits, friendly for hardware timing and area floor(x + 0.5)

    SInt roundUp lowest m bits, friendly for hardware timing and area floor(x + 0.5)

    Definition Classes
    SIntNum
  281. def roundUp(width: BitCount, align: Boolean): SInt

    Permalink
    Definition Classes
    Num
  282. def sat(m: Int): SInt

    Permalink

    Saturation highest m bits

    Saturation highest m bits

    Definition Classes
    SIntNum
  283. def sat(width: BitCount): SInt

    Permalink
    Definition Classes
    Num
  284. def satWithSym(m: Int): SInt

    Permalink
  285. var scalaTrace: Throwable

    Permalink
    Definition Classes
    ScalaLocated
  286. def setAll(): SInt.this.type

    Permalink

    Set all bits

    Set all bits

    Definition Classes
    SIntBitVectorData
  287. def setAllTo(value: Bool): SInt.this.type

    Permalink

    Set all bits to value

    Set all bits to value

    Definition Classes
    BitVector
  288. def setAllTo(value: Boolean): SInt.this.type

    Permalink

    Set all bits to value

    Set all bits to value

    Definition Classes
    BitVector
  289. def setAsAnalog(): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  290. def setAsComb(): SInt.this.type

    Permalink

    Set baseType to Combinatorial

    Set baseType to Combinatorial

    Definition Classes
    BaseTypeData
  291. def setAsDirectionLess(): SInt.this.type

    Permalink

    remove the direction (in,out,inout) to a data

    remove the direction (in,out,inout) to a data

    Definition Classes
    BaseTypeData
  292. def setAsReg(): SInt.this.type

    Permalink

    Set baseType to reg

    Set baseType to reg

    Definition Classes
    BaseTypeData
  293. def setAsTypeNode(): SInt.this.type

    Permalink

    Set baseType to Node

    Set baseType to Node

    Definition Classes
    BaseType
  294. def setAsVital(): SInt.this.type

    Permalink

    Set the baseType to vital

    Set the baseType to vital

    Definition Classes
    BaseType
  295. def setCompositeName(nameable: Nameable, postfix: String, namePriority: Byte): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  296. def setCompositeName(nameable: Nameable, postfix: String, weak: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  297. def setCompositeName(nameable: Nameable, postfix: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  298. def setCompositeName(nameable: Nameable, namePriority: Byte): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  299. def setCompositeName(nameable: Nameable, weak: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  300. def setCompositeName(nameable: Nameable): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  301. def setLambdaName(isNameBody: ⇒ Boolean)(nameGen: ⇒ String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  302. def setName(name: String, namePriority: Byte): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  303. def setName(name: String, weak: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  304. def setName(name: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  305. def setNameAsWeak(): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  306. def setOutputAsReg(): SInt.this.type

    Permalink

    Recursively set baseType to reg only for output

    Recursively set baseType to reg only for output

    Definition Classes
    Data
  307. def setPartialName(name: String, namePriority: Byte, owner: Any): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  308. def setPartialName(name: String, namePriority: Byte): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  309. def setPartialName(name: String, weak: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  310. def setPartialName(owner: Nameable, name: String, namePriority: Byte): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  311. def setPartialName(owner: Nameable, name: String, weak: Boolean): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  312. def setPartialName(name: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  313. def setPartialName(owner: Nameable, name: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  314. def setPartialName(owner: Nameable): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  315. def setRefOwner(that: Any): Unit

    Permalink
    Definition Classes
    OwnableRef
  316. def setScalaLocated(source: ScalaLocated): SInt.this.type

    Permalink
    Definition Classes
    ScalaLocated
  317. def setWeakName(name: String): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  318. def setWidth(width: Int): SInt.this.type

    Permalink

    Set the width of the BitVector

    Set the width of the BitVector

    width

    the width of the data

    returns

    the BitVector of a given size

    Definition Classes
    BitVector
  319. def sign: Bool

    Permalink
  320. def simplifyNode: Expression

    Permalink
    Definition Classes
    Expression
  321. def sliceBy(divisor: List[Int]): List[Bits]

    Permalink
    Definition Classes
    BitVector
  322. def sliceBy(divisor: Int*): List[Bits]

    Permalink

    apart by a list of width

    apart by a list of width

    returns

    (List(A(1 downto 0), A(2 downto 4), A(9 downto 3))

    Definition Classes
    BitVector
    Example:
    1. val res = A.sliceBy(2, 3, 5)
      val res = A.sliceBy(List(2, 3, 5))
  323. def spinalTags: LinkedHashSet[SpinalTag]

    Permalink
    Definition Classes
    SpinalTagReady
  324. def splitAt(n: Int): (Bits, Bits)

    Permalink

    Split at n st bits

    Split at n st bits

    returns

    (data10bits(8 downto 4), data10bits(3 downto 0))

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.splitAt(4)
  325. def stabilized(func: (Expression) ⇒ Expression, seed: Expression): Expression

    Permalink
    Definition Classes
    ExpressionContainer
  326. def subdivideIn(sliceWidth: BitCount): Vec[T]

    Permalink
    Definition Classes
    BitVector
  327. def subdivideIn(sliceCount: SlicesCount): Vec[T]

    Permalink
    Definition Classes
    BitVector
  328. def subdivideIn(sliceWidth: BitCount, strict: Boolean): Vec[T]

    Permalink

    Split the BitVector into slice of x bits

    Split the BitVector into slice of x bits

    sliceWidth

    the width of the slice

    strict

    allow subdivideIn to generate vectors with varying size

    returns

    a Vector of slices

    Definition Classes
    BitVector
    Example:
    1. val res = myBits.subdivideIn(3 bits)
  329. def subdivideIn(sliceCount: SlicesCount, strict: Boolean): Vec[T]

    Permalink

    Split the BitVector into x slice

    Split the BitVector into x slice

    sliceCount

    the width of the slice

    strict

    allow subdivideIn to generate vectors with varying size

    returns

    a Vector of slices

    Definition Classes
    BitVector
    Example:
    1. val res = myBits.subdivideIn(3 slices)
  330. def switchAssign[T2 <: BaseType](sel: T2)(mappings: (Any, SInt)*): Unit

    Permalink
    Definition Classes
    DataPrimitives
  331. def symmetry: SInt

    Permalink

    SInt symmetric

    SInt symmetric

    returns

    return a SInt which minValue equal -maxValue

    Example:
    1. val symmetrySInt = mySInt.symmetry
  332. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  333. def tag(q: QFormat): SInt

    Permalink
    Definition Classes
    SIntNum
  334. def take(n: Int): Bits

    Permalink

    Take lowerst n bits

    Take lowerst n bits

    returns

    data10bits(3 downto 0)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.take(4)
  335. def takeHigh(n: Int): Bits

    Permalink

    Take highest n bits

    Take highest n bits

    returns

    data10bits(9 downto 6)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.takeHigh(4)
  336. def takeLow(n: Int): Bits

    Permalink
    Definition Classes
    BitVector
  337. def toIo(): SInt.this.type

    Permalink
    Definition Classes
    Data
  338. def toMuxInput[T <: Data](muxOutput: T): T

    Permalink
    Definition Classes
    Data
  339. def toString(): String

    Permalink
    Definition Classes
    BitVectorBaseTypeExpressionNameable → AnyRef → Any
  340. def toStringMultiLine(): String

    Permalink
    Definition Classes
    BaseNode
  341. def toStringRec(level: Int = 1): String

    Permalink
    Definition Classes
    Expression
  342. def trim(m: Int): SInt

    Permalink

    highest m bits Discard

    highest m bits Discard

    Definition Classes
    SIntNum
  343. def trim(width: BitCount): SInt

    Permalink
    Definition Classes
    Num
  344. def twoComplement(enable: Bool, plusOneEnable: Bool = null): SInt

    Permalink
  345. def unary_-: SInt

    Permalink

    Negative number

    Negative number

    returns

    return a negative number

    Example:
    1. val result = -mySInt
  346. def unary_~: SInt

    Permalink

    Inverse bitwise operator

    Inverse bitwise operator

    Definition Classes
    SIntBitwiseOp
  347. def unfreeze(): SInt.this.type

    Permalink
    Definition Classes
    BaseTypeData
  348. def unsetName(): SInt.this.type

    Permalink
    Definition Classes
    Nameable
  349. def valueRange: Range

    Permalink
  350. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  352. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  353. def walkDrivingExpressions(func: (Expression) ⇒ Unit): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  354. def walkExpression(func: (Expression) ⇒ Unit): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  355. def walkExpressionPostorder(func: (Expression) ⇒ Unit): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  356. def walkParentTreeStatements(func: (TreeStatement) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Statement
  357. def walkParentTreeStatementsUntilRootScope(func: (TreeStatement) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Statement
  358. def walkRemapDrivingExpressions(func: (Expression) ⇒ Expression): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  359. def walkRemapExpressions(func: (Expression) ⇒ Expression): Unit

    Permalink
    Definition Classes
    ExpressionContainer
  360. def wrapCast[T <: BaseType](result: T, node: Cast): T

    Permalink
    Definition Classes
    BaseType
  361. def wrapNext(): SInt.this.type

    Permalink
    Definition Classes
    Data
  362. def xorMask(that: Bool): SInt.this.type

    Permalink
    Definition Classes
    BitVector
  363. def xorR: Bool

    Permalink

    Logical XOR of all bits

    Logical XOR of all bits

    Definition Classes
    BitVector
  364. def |(right: SInt): SInt

    Permalink

    Bitwise OR operator

    Bitwise OR operator

    Definition Classes
    SIntBitwiseOp
  365. def |<<(that: UInt): SInt

    Permalink

    Logical shift left (output width == input width)

  366. def |<<(that: Int): SInt

    Permalink

    Logical shift left (output width == input width)

  367. def |>>(that: UInt): SInt

    Permalink

    Logical shift Right (output width == input width)

  368. def |>>(that: Int): SInt

    Permalink

    Logical shift right (output width == input width)

    Logical shift right (output width == input width)

    that

    the number of right shift

    returns

    a Bits of width : w(this)

    Example:
    1. val result = myUInt |>> 4

Deprecated Value Members

  1. def asDirectionLess(): SInt.this.type

    Permalink
    Definition Classes
    Data
    Annotations
    @deprecated
    Deprecated

    (Since version ???) use setAsDirectionLess instead

  2. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  3. def genIf(cond: Boolean): SInt.this.type

    Permalink

    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

  4. def range: Range

    Permalink

    Return the range

    Return the range

    Definition Classes
    BitVector
    Annotations
    @deprecated
    Deprecated

    Use bitsRange instead

Inherited from BitwiseOp[SInt]

Inherited from BaseTypePrimitives[SInt]

Inherited from DataPrimitives[SInt]

Inherited from MinMaxProvider

Inherited from Num[SInt]

Inherited from BitVector

Inherited from Widthable

Inherited from WidthProvider

Inherited from BaseType

Inherited from Expression

Inherited from DeclarationStatement

Inherited from LeafStatement

Inherited from Statement

Inherited from BaseNode

Inherited from ExpressionContainer

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