Packages

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

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. Protected

Instance Constructors

  1. new SInt()

Type Members

  1. abstract type RefOwnerType
    Definition Classes
    OwnableRef
  2. type T = SInt

    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
    Definition Classes
    AnyRef → Any
  2. def ##(right: Data): Bits

    Concatenation between two data

    Concatenation between two data

    Definition Classes
    Data
  3. final def ##: Int
    Definition Classes
    AnyRef → Any
  4. def %(right: SInt): SInt

    Modulo

    Modulo

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

    Logical AND operator

    Logical AND operator

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

    Multiplication

    Multiplication

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

    Addition

    Addition

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

    Safe Addition with 1 bit expand

    Safe Addition with 1 bit expand

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

    Safe Addition with saturation

    Safe Addition with saturation

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

    Substraction

    Substraction

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

    Safe Substraction with 1 bit expand

    Safe Substraction with 1 bit expand

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

    Safe Substraction with saturation

    Safe Substraction with saturation

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

    Division

    Division

    Definition Classes
    SIntNum
  14. def :=(value: String): Unit
  15. def :=(rangesValue: (Any, Any), _rangesValues: (Any, Any)*): Unit

    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)
  16. def :=(that: SInt): Unit

    Assign a data to this

    Assign a data to this

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

    Is less than right

    Is less than right

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

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

  19. def <<(that: Int): SInt

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

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

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

    Is equal or less than right

    Is equal or less than right

    Definition Classes
    SIntNum
  21. def <>(that: SInt): Unit

    Auto connection between two data

    Auto connection between two data

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

    BitVector is not equal to MaskedLiteral

    BitVector is not equal to MaskedLiteral

    Definition Classes
    BitVector
  24. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  25. def ===(that: SInt): Bool

    Comparison between two data

    Comparison between two data

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

    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"
  27. def >(right: SInt): Bool

    Is greater than right

    Is greater than right

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

    Is equal or greater than right

    Is equal or greater than right

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

    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 = mySInt >> myUIntShift
  30. def >>(that: Int): SInt

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

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

    Definition Classes
    SIntNum
  31. def @@(that: Bool): SInt

    Concatenation between a SInt and a Bool

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

    Concatenation between a SInt and UInt

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

    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
  34. def Q: QFormat
    Definition Classes
    Num
  35. def \(that: SInt): SInt

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

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

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

    Logical XOR operator

    Logical XOR operator

    Definition Classes
    SIntBitwiseOp
  37. def _fixEntry(roundN: Int, roundType: RoundType, satN: Int): SInt
    Attributes
    protected
  38. val _spinalTags: LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  39. def addAttribute(attribute: Attribute): SInt.this.type
    Definition Classes
    BaseTypeDataSpinalTagReady
  40. def addAttribute(name: String, value: Int): SInt.this.type
    Definition Classes
    SpinalTagReady
  41. def addAttribute(name: String, value: String): SInt.this.type
    Definition Classes
    SpinalTagReady
  42. def addAttribute(name: String): SInt.this.type
    Definition Classes
    SpinalTagReady
  43. def addTag[T <: SpinalTag](spinalTag: T): SInt.this.type
    Definition Classes
    SpinalTagReady
  44. def addTags[T <: SpinalTag](tags: Iterable[T]): SInt.this.type
    Definition Classes
    SpinalTagReady
  45. val algoIncrementale: Int
    Definition Classes
    BaseNode
  46. val algoInt: Int
    Definition Classes
    BaseNode
  47. def allowDirectionLessIo: SInt.this.type
    Definition Classes
    Data
  48. def allowOverride: SInt.this.type

    Allow a data to be overrided

    Allow a data to be overrided

    Definition Classes
    Data
  49. def allowPartialyAssigned: SInt.this.type
    Definition Classes
    Data
  50. def allowPruning(): SInt.this.type
    Definition Classes
    Data
  51. def allowSimplifyIt(): SInt.this.type
    Definition Classes
    BaseTypeData
  52. def allowUnsetRegToAvoidLatch: SInt.this.type
    Definition Classes
    Data
  53. def andMask(that: Bool): SInt.this.type
    Definition Classes
    BitVector
  54. def andR: Bool

    Logical AND of all bits

    Logical AND of all bits

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

    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)
  56. def apply(offset: Int, bitCount: BitCount): SInt.this.type

    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)
  57. def apply(bitId: UInt): Bool

    Return the bit at index bitId

    Return the bit at index bitId

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

    Return the bit at index bitId

    Return the bit at index bitId

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

    Return a range of bits

    Return a range of bits

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

    Cast data to Bits

    Cast data to Bits

    Definition Classes
    SIntData
  62. def asBool: Bool
    Definition Classes
    BitVector
  63. def asBools: Vec[Bool]

    Cast the BitVector into a Vector of Bool

    Cast the BitVector into a Vector of Bool

    returns

    a vector of Bool

    Definition Classes
    BitVector
  64. def asData: Data
    Definition Classes
    Data
  65. def asInOut(): SInt.this.type

    set a data as inout

    set a data as inout

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

    Set a data as input

    Set a data as input

    Definition Classes
    BaseTypeData
  67. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  68. def asOutput(): SInt.this.type

    Set a data as output

    Set a data as output

    Definition Classes
    BaseTypeData
  69. def asUInt: UInt

    Cast a SInt into an UInt

    Cast a SInt into an UInt

    returns

    a UInt data

    Example:
    1. myUInt := mySInt.asUInt
  70. def assignDontCare(): SInt.this.type
    Definition Classes
    SIntData
  71. final def assignFrom(that: AnyRef, target: AnyRef = this): Unit
    Definition Classes
    Data
  72. def assignFromBits(bits: Bits, hi: Int, lo: Int): Unit
    Definition Classes
    SIntData
  73. def assignFromBits(bits: Bits): Unit
    Definition Classes
    SIntData
  74. def assignFromBits(bits: Bits, offset: Int, bitCount: BitCount): Unit
    Definition Classes
    Data
  75. def bitsRange: Range
    Definition Classes
    BitVector
  76. def ceil(n: Int, align: Boolean = true): SInt

    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
  77. def ceil(width: BitCount, align: Boolean): SInt

    lowest n bits Round Operation by BitCount

    lowest n bits Round Operation by BitCount

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

    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
  79. def ceilToInf(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  80. def cldCount: Int
    Definition Classes
    DoubleLinkedContainer
  81. def clearAll(): SInt.this.type

    Clear all bits

    Clear all bits

    Definition Classes
    BitVector
  82. var clockDomain: ClockDomain
    Definition Classes
    BaseType
  83. def clone(): SInt.this.type
    Definition Classes
    BitVectorBaseTypeData → AnyRef
  84. def component: Component
    Definition Classes
    ContextUser
  85. final def compositAssignFrom(that: AnyRef, target: AnyRef, kind: AnyRef): Unit
    Definition Classes
    Assignable
  86. val compositeAssign: Assignable
    Definition Classes
    Assignable
  87. def copyDirectionOf(that: SInt): Unit
    Definition Classes
    DataPrimitives
  88. def copyDirectionOfImpl(that: Data): SInt.this.type
    Definition Classes
    BaseTypeData
  89. def default(that: => SInt): SInt

    Set a default value to a data

    Set a default value to a data

    Definition Classes
    DataPrimitives
  90. def dirString(): String
    Definition Classes
    Data
  91. def dlcAppend(that: AssignmentStatement): SInt.this.type
    Definition Classes
    DoubleLinkedContainer
  92. def dlcForeach[T >: AssignmentStatement](func: (T) => Unit): Unit
    Definition Classes
    DoubleLinkedContainer
  93. def dlcHasOnlyOne: Boolean
    Definition Classes
    DoubleLinkedContainer
  94. val dlcHead: AssignmentStatement
    Definition Classes
    DoubleLinkedContainer
  95. def dlcIsEmpty: Boolean
    Definition Classes
    DoubleLinkedContainer
  96. val dlcLast: AssignmentStatement
    Definition Classes
    DoubleLinkedContainer
  97. def dlcPrepend(that: AssignmentStatement): SInt.this.type
    Definition Classes
    DoubleLinkedContainer
  98. def dontSimplifyIt(): SInt.this.type
    Definition Classes
    BaseTypeData
  99. def drop(n: Int): Bits

    Drop lowerst n bits

    Drop lowerst n bits

    returns

    data10bits(9 downto 4)

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

    Drop highest n bits

    Drop highest n bits

    returns

    data10bits(5 downto 0)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.dropHigh(4)
  101. def dropLow(n: Int): Bits
    Definition Classes
    BitVector
  102. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  103. def equals(obj: Any): Boolean
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  104. def existsTag(cond: (SpinalTag) => Boolean): Boolean
    Definition Classes
    SpinalTagReady
  105. def expand: SInt
  106. def filterTag(cond: (SpinalTag) => Boolean): Iterable[SpinalTag]
    Definition Classes
    SpinalTagReady
  107. def findTag(cond: (SpinalTag) => Boolean): Option[SpinalTag]
    Definition Classes
    SpinalTagReady
  108. def fixTo(q: QFormat): SInt
  109. def fixTo(q: QFormat, roundType: RoundType): SInt
  110. def fixTo(q: QFormat, roundType: RoundType, sym: Boolean): SInt
  111. def fixTo(section: Inclusive): SInt
  112. def fixTo(section: Inclusive, roundType: RoundType): SInt
  113. def fixTo(section: Inclusive, roundType: RoundType, sym: Boolean): SInt
  114. def flatten: Seq[BaseType]
    Definition Classes
    BaseTypeData
  115. def flattenForeach(body: (BaseType) => Unit): Unit
    Definition Classes
    BaseTypeData
  116. def flattenLocalName: Seq[String]
    Definition Classes
    BaseTypeData
  117. def flip(): SInt.this.type

    flip the direction of the data

    flip the direction of the data

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

    return w(this)-n bits

    return w(this)-n bits

    Definition Classes
    SIntNum
  119. def floor(width: BitCount): SInt
    Definition Classes
    Num
  120. def floorToZero(n: Int): SInt

    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
  121. def floorToZero(width: BitCount): SInt
    Definition Classes
    Num
  122. def foreachClockDomain(func: (ClockDomain) => Unit): Unit
    Definition Classes
    BaseTypeStatement
  123. def foreachDrivingExpression(func: (Expression) => Unit): Unit
    Definition Classes
    ExpressionContainer
  124. def foreachExpression(func: (Expression) => Unit): Unit
  125. def foreachReflectableNameables(doThat: (Any) => Unit): Unit
    Definition Classes
    Nameable
  126. def foreachStatements(func: (AssignmentStatement) => Unit): Unit
  127. def foreachTag(body: (SpinalTag) => Unit): Unit
    Definition Classes
    SpinalTagReady
  128. def freeze(): SInt.this.type
    Definition Classes
    BaseTypeData
  129. def genIf(cond: Boolean): SInt.this.type

    Generate this if condition is true

    Generate this if condition is true

    Definition Classes
    Data
  130. def getAllTrue: SInt.this.type
    Definition Classes
    SIntBitVector
  131. def getBitsWidth: Int

    Return the width of the data

    Return the width of the data

    Definition Classes
    BitVectorData
  132. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  133. def getComponent(): Component
    Definition Classes
    DataInComponentNameableByComponent
  134. def getComponents(): Seq[Component]

    Get current component with all parents

    Get current component with all parents

    Definition Classes
    InComponent
  135. def getDirection: IODirection
    Definition Classes
    Data
  136. def getDisplayName(): String
    Definition Classes
    Nameable
  137. def getDrivingReg: SInt.this.type
    Definition Classes
    BaseType
  138. def getInstanceCounter: Int
    Definition Classes
    ContextUser
  139. def getMode: Byte
    Attributes
    protected
    Definition Classes
    Nameable
  140. def getName(default: String): String
    Definition Classes
    NameableByComponentNameable
  141. def getName(): String
    Definition Classes
    NameableByComponentNameable
  142. def getPartialName(): String
    Definition Classes
    Nameable
  143. def getRealSource: Any
    Definition Classes
    Assignable
  144. def getRealSourceNoRec: Any
    Definition Classes
    DataAssignable
  145. def getRefOwnersChain(): List[Any]
    Definition Classes
    OwnableRef
  146. def getRootParent: Data
    Definition Classes
    Data
  147. def getScalaLocationLong: String
    Definition Classes
    ScalaLocated
  148. def getScalaLocationShort: String
    Definition Classes
    ScalaLocated
  149. def getScalaTrace(): Throwable
    Definition Classes
    ScalaLocated
  150. def getSingleDriver: Option[SInt.this.type]
    Definition Classes
    BaseType
  151. def getTag[T <: SpinalTag](clazz: Class[T]): Option[T]
    Definition Classes
    SpinalTagReady
  152. def getTags(): LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  153. def getTypeObject: TypeSInt
    Definition Classes
    SIntExpression
  154. def getWidth: Int
    Definition Classes
    WidthableWidthProvider
  155. def getWidthNoInferation: Int

    Return the width

    Return the width

    Definition Classes
    BitVector
  156. def getWidthStringNoInferation: String
    Definition Classes
    BitVector
  157. def getZero: SInt.this.type

    Create a data set to 0

    Create a data set to 0

    Definition Classes
    SIntData
  158. def getZeroUnconstrained: SInt.this.type
    Definition Classes
    SIntBitVector
  159. val globalData: GlobalData
    Definition Classes
    GlobalDataUser
  160. def hasAssignement: Boolean
    Definition Classes
    BaseType
  161. def hasDataAssignment: Boolean
    Definition Classes
    BaseType
  162. def hasInit: Boolean

    Does the base type have initial value

    Does the base type have initial value

    Definition Classes
    BaseType
  163. def hasOnlyOneStatement: Boolean
  164. def hasTag[T <: SpinalTag](clazz: Class[T]): Boolean
    Definition Classes
    SpinalTagReady
  165. def hasTag(spinalTag: SpinalTag): Boolean
    Definition Classes
    SpinalTagReady
  166. def hashCode(): Int
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  167. def head: AssignmentStatement
  168. def high: Int

    Return the upper bound

    Return the upper bound

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

    Set initial value to a data

    Set initial value to a data

    Definition Classes
    DataPrimitives
  170. final def initFrom(that: AnyRef, target: AnyRef = this): Unit
    Definition Classes
    Data
  171. def initial(that: SInt): SInt
    Definition Classes
    BaseTypePrimitives
  172. def initialFrom(that: AnyRef, target: AnyRef = this): Unit
    Definition Classes
    BaseType
  173. def insertNext(s: Statement): Unit
    Definition Classes
    Statement
  174. def instanceAttributes(language: Language): Iterable[Attribute]
    Definition Classes
    SpinalTagReady
  175. def instanceAttributes: Iterable[Attribute]
    Definition Classes
    SpinalTagReady
  176. def isAnalog: Boolean
    Definition Classes
    BaseTypeData
  177. def isComb: Boolean
    Definition Classes
    BaseTypeData
  178. def isCompletelyUnnamed: Boolean
    Definition Classes
    Nameable
  179. def isDirectionLess: Boolean
    Definition Classes
    Data
  180. def isEmptyOfTag: Boolean
    Definition Classes
    SpinalTagReady
  181. def isFrozen(): Boolean
    Definition Classes
    BaseType
  182. def isInOut: Boolean
    Definition Classes
    Data
  183. def isInput: Boolean
    Definition Classes
    Data
  184. def isInputOrInOut: Boolean
    Definition Classes
    Data
  185. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  186. def isNamed: Boolean
    Definition Classes
    NameableByComponentNameable
  187. def isOutput: Boolean
    Definition Classes
    Data
  188. def isOutputOrInOut: Boolean
    Definition Classes
    Data
  189. def isPriorityApplicable(namePriority: Byte): Boolean
    Definition Classes
    Nameable
  190. def isReg: Boolean
    Definition Classes
    BaseTypeData
  191. def isTypeNode: Boolean

    Is the baseType a node

    Is the baseType a node

    Definition Classes
    BaseType
  192. def isUnnamed: Boolean
    Definition Classes
    Nameable
  193. def isUsingResetSignal: Boolean

    Is the basetype using reset signal

    Is the basetype using reset signal

    Definition Classes
    BaseType
  194. def isUsingSoftResetSignal: Boolean

    Is the basetype using soft reset signal

    Is the basetype using soft reset signal

    Definition Classes
    BaseType
  195. def isVital: Boolean

    Check if the baseType is vital

    Check if the baseType is vital

    Definition Classes
    BaseType
  196. def keep(): SInt.this.type
    Definition Classes
    Data
  197. val lastScopeStatement: Statement
    Definition Classes
    Statement
  198. def lsb: Bool

    Return the least significant bit

    Return the least significant bit

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

    Return the maximum value between this and right

    Return the maximum value between this and right

    Definition Classes
    Num
  200. def maxValue: BigInt
    Definition Classes
    SIntMinMaxProvider
  201. def min(right: SInt): SInt

    Return the minimum value between this and right

    Return the minimum value between this and right

    Definition Classes
    Num
  202. def minValue: BigInt
    Definition Classes
    SIntMinMaxProvider
  203. def msb: Bool

    Return the most significant bit

    Return the most significant bit

    Definition Classes
    BitVector
  204. def mux[T2 <: Data](mappings: (Any, T2)*): T2
    Definition Classes
    BaseType
  205. def muxList[T2 <: Data](defaultValue: T2, mappings: Seq[(Any, T2)]): T2
    Definition Classes
    BaseType
  206. def muxList[T2 <: Data](mappings: Seq[(Any, T2)]): T2
    Definition Classes
    BaseType
  207. def muxListDc[T2 <: Data](mappings: Seq[(Any, T2)]): T2
    Definition Classes
    BaseType
  208. val name: String
    Attributes
    protected
    Definition Classes
    Nameable
  209. val nameableRef: Nameable
    Attributes
    protected
    Definition Classes
    Nameable
    Annotations
    @DontName()
  210. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  211. def newExtract(offset: UInt, size: Int, extract: BitVectorRangedAccessFloating): SInt.this.type

    Extract a range of bits of the BitVector

    Extract a range of bits of the BitVector

    Definition Classes
    BitVector
  212. def newExtract(hi: Int, lo: Int, accessFactory: => BitVectorRangedAccessFixed): SInt.this.type

    Extract a range of bits of the BitVector

    Extract a range of bits of the BitVector

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

    Extract a bit of the BitVector

    Extract a bit of the BitVector

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

    Extract a bit of the BitVector

    Extract a bit of the BitVector

    Definition Classes
    BitVector
  215. val nextScopeStatement: Statement
    Definition Classes
    Statement
  216. def noBackendCombMerge: SInt.this.type
    Definition Classes
    Data
  217. def noCombLoopCheck: SInt.this.type
    Definition Classes
    Data
  218. def normalizeInputs: Unit
    Definition Classes
    BaseTypeExpressionContainer
  219. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  220. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  221. def onEachAttributes(doIt: (Attribute) => Unit): Unit
    Definition Classes
    SpinalTagReady
  222. def opName: String
    Definition Classes
    SIntExpression
  223. def orMask(that: Bool): SInt.this.type
    Definition Classes
    BitVector
  224. def orR: Bool

    Logical OR of all bits

    Logical OR of all bits

    Definition Classes
    BitVector
  225. def overrideLocalName(name: String): SInt.this.type
    Definition Classes
    Nameable
  226. val parent: Data
    Definition Classes
    Data
  227. val parentScope: ScopeStatement
    Definition Classes
    ContextUser
  228. def pull(): SInt.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
  229. def purify(): SInt.this.type
    Definition Classes
    Data
  230. def randBoot(u: Unit): SInt.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
  231. val refOwner: RefOwnerType
    Definition Classes
    OwnableRef
    Annotations
    @DontName()
  232. def reflectNames(): Unit
    Definition Classes
    Nameable
  233. def remapDrivingExpressions(func: (Expression) => Expression): Unit
    Definition Classes
    ExpressionContainer
  234. def remapExpressions(func: (Expression) => Expression): Unit
  235. def removeAssignments(): SInt.this.type

    Remove all assignments of the base type

    Remove all assignments of the base type

    Definition Classes
    BaseTypeData
  236. def removeStatement(): Unit
    Definition Classes
    BaseTypeStatement
  237. def removeStatementFromScope(): Unit
    Definition Classes
    Statement
  238. def removeTag(spinalTag: SpinalTag): SInt.this.type
    Definition Classes
    SpinalTagReady
  239. def removeTags(tags: Iterable[SpinalTag]): SInt.this.type
    Definition Classes
    SpinalTagReady
  240. def resize(width: BitCount): SInt
    Definition Classes
    SIntBitVector
  241. def resize(width: Int): SInt.this.type

    Resize the bitVector to width

    Resize the bitVector to width

    returns

    a resized bitVector

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

    Resized data regarding target

    Resized data regarding target

    Definition Classes
    Data
  243. def reversed: SInt
  244. def rootScopeStatement: ScopeStatement
    Definition Classes
    BaseTypeStatement
  245. def rotateLeft(that: Int): SInt

    Left rotation of that bits

    Left rotation of that bits

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

    Left rotation of that Bits

    Left rotation of that Bits

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

    Right rotation of that bits

    Right rotation of that bits

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

    Right rotation of that Bits

    Right rotation of that Bits

    Definition Classes
    BitVector
  249. def round(n: Int, align: Boolean = true): SInt
    Definition Classes
    SIntNum
  250. def round(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  251. def roundDown(n: Int, align: Boolean): SInt

    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
  252. def roundDown(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  253. def roundToInf(n: Int, align: Boolean = true): SInt

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

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

    Definition Classes
    SIntNum
  254. def roundToInf(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  255. def roundToZero(n: Int, align: Boolean): SInt

    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
  256. def roundToZero(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  257. def roundUp(n: Int, align: Boolean = true): SInt

    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
  258. def roundUp(width: BitCount, align: Boolean): SInt
    Definition Classes
    Num
  259. def sat(m: Int): SInt

    Saturation highest m bits

    Saturation highest m bits

    Definition Classes
    SIntNum
  260. def sat(width: BitCount): SInt
    Definition Classes
    Num
  261. def satWithSym(m: Int): SInt
  262. val scalaTrace: Throwable
    Definition Classes
    ScalaLocated
  263. def setAll(): SInt.this.type

    Set all bits

    Set all bits

    Definition Classes
    SIntBitVector
  264. def setAllTo(value: Bool): SInt.this.type

    Set all bits to value

    Set all bits to value

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

    Set all bits to value

    Set all bits to value

    Definition Classes
    BitVector
  266. def setAsAnalog(): SInt.this.type
    Definition Classes
    BaseTypeData
  267. def setAsComb(): SInt.this.type

    Set baseType to Combinatorial

    Set baseType to Combinatorial

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

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

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

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

    Set baseType to reg

    Set baseType to reg

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

    Set baseType to Node

    Set baseType to Node

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

    Set the baseType to vital

    Set the baseType to vital

    Definition Classes
    BaseType
  272. def setCompositeName(nameable: Nameable, postfix: String, namePriority: Byte): SInt.this.type
    Definition Classes
    Nameable
  273. def setCompositeName(nameable: Nameable, postfix: String, weak: Boolean): SInt.this.type
    Definition Classes
    Nameable
  274. def setCompositeName(nameable: Nameable, postfix: String): SInt.this.type
    Definition Classes
    Nameable
  275. def setCompositeName(nameable: Nameable, namePriority: Byte): SInt.this.type
    Definition Classes
    Nameable
  276. def setCompositeName(nameable: Nameable, weak: Boolean): SInt.this.type
    Definition Classes
    Nameable
  277. def setCompositeName(nameable: Nameable): SInt.this.type
    Definition Classes
    Nameable
  278. def setName(name: String, namePriority: Byte): SInt.this.type
    Definition Classes
    Nameable
  279. def setName(name: String, weak: Boolean): SInt.this.type
    Definition Classes
    Nameable
  280. def setName(name: String): SInt.this.type
    Definition Classes
    Nameable
  281. def setNameAsWeak(): SInt.this.type
    Definition Classes
    Nameable
  282. def setPartialName(name: String, namePriority: Byte, owner: Any): SInt.this.type
    Definition Classes
    Nameable
  283. def setPartialName(name: String, namePriority: Byte): SInt.this.type
    Definition Classes
    Nameable
  284. def setPartialName(name: String, weak: Boolean): SInt.this.type
    Definition Classes
    Nameable
  285. def setPartialName(owner: Nameable, name: String, namePriority: Byte): SInt.this.type
    Definition Classes
    Nameable
  286. def setPartialName(owner: Nameable, name: String, weak: Boolean): SInt.this.type
    Definition Classes
    Nameable
  287. def setPartialName(name: String): SInt.this.type
    Definition Classes
    Nameable
  288. def setPartialName(owner: Nameable, name: String): SInt.this.type
    Definition Classes
    Nameable
  289. def setRefOwner(that: Any): Unit
    Definition Classes
    OwnableRef
  290. def setScalaLocated(source: ScalaLocated): SInt.this.type
    Definition Classes
    ScalaLocated
  291. def setWeakName(name: String): SInt.this.type
    Definition Classes
    Nameable
  292. def setWidth(width: Int): SInt.this.type

    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
  293. def sign: Bool
  294. def simplifyNode: Expression
    Definition Classes
    Expression
  295. def sliceBy(divisor: List[Int]): List[Bits]
    Definition Classes
    BitVector
  296. def sliceBy(divisor: Int*): List[Bits]

    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))
  297. def spinalTags: LinkedHashSet[SpinalTag]
    Definition Classes
    SpinalTagReady
  298. def splitAt(n: Int): (Bits, Bits)

    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)
  299. def stabilized(func: (Expression) => Expression, seed: Expression): Expression
    Definition Classes
    ExpressionContainer
  300. def subdivideIn(sliceWidth: BitCount): Vec[T]
    Definition Classes
    BitVector
  301. def subdivideIn(sliceCount: SlicesCount): Vec[T]
    Definition Classes
    BitVector
  302. def subdivideIn(sliceWidth: BitCount, strict: Boolean): Vec[T]

    Split the BitVector into slice of x bits * @example

    Split the BitVector into slice of x bits * @example

    val res = myBits.subdiviedIn(3 bits)
    sliceWidth

    the width of the slice

    returns

    a Vector of slices

    Definition Classes
    BitVector
  303. def subdivideIn(sliceCount: SlicesCount, strict: Boolean): Vec[T]

    Split the BitVector into x slice

    Split the BitVector into x slice

    sliceCount

    the width of the slice

    returns

    a Vector of slices

    Definition Classes
    BitVector
    Example:
    1. val res = myBits.subdiviedIn(3 slices)
  304. def swichAssign[T2 <: BaseType](sel: T2)(mappings: (Any, SInt)*): Unit
    Definition Classes
    DataPrimitives
  305. def symmetry: SInt

    SInt symmetric

    SInt symmetric

    returns

    return a SInt which minValue equal -maxValue

    Example:
    1. val symmetrySInt = mySInt.symmetry
  306. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  307. def tag(q: QFormat): SInt
    Definition Classes
    SIntNum
  308. def take(n: Int): Bits

    Take lowerst n bits

    Take lowerst n bits

    returns

    data10bits(3 downto 0)

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

    Take highest n bits

    Take highest n bits

    returns

    data10bits(9 downto 6)

    Definition Classes
    BitVector
    Example:
    1. val res = data10bits.takeHigh(4)
  310. def takeLow(n: Int): Bits
    Definition Classes
    BitVector
  311. def toIo(): SInt.this.type
    Definition Classes
    Data
  312. def toString(): String
    Definition Classes
    BitVectorBaseTypeExpressionNameable → AnyRef → Any
  313. def toStringMultiLine(): String
    Definition Classes
    BaseNode
  314. def trim(m: Int): SInt

    highest m bits Discard

    highest m bits Discard

    Definition Classes
    SIntNum
  315. def trim(width: BitCount): SInt
    Definition Classes
    Num
  316. def unary_-: SInt

    Negative number

    Negative number

    returns

    return a negative number

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

    Inverse bitwise operator

    Inverse bitwise operator

    Definition Classes
    SIntBitwiseOp
  318. def unfreeze(): SInt.this.type
    Definition Classes
    BaseTypeData
  319. def unsetName(): SInt.this.type
    Definition Classes
    Nameable
  320. def valueRange: Range
  321. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  322. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  323. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  324. def walkDrivingExpressions(func: (Expression) => Unit): Unit
    Definition Classes
    ExpressionContainer
  325. def walkExpression(func: (Expression) => Unit): Unit
    Definition Classes
    ExpressionContainer
  326. def walkExpressionPostorder(func: (Expression) => Unit): Unit
    Definition Classes
    ExpressionContainer
  327. def walkParentTreeStatements(func: (TreeStatement) => Unit): Unit
    Definition Classes
    Statement
  328. def walkParentTreeStatementsUntilRootScope(func: (TreeStatement) => Unit): Unit
    Definition Classes
    Statement
  329. def walkRemapDrivingExpressions(func: (Expression) => Expression): Unit
    Definition Classes
    ExpressionContainer
  330. def walkRemapExpressions(func: (Expression) => Expression): Unit
    Definition Classes
    ExpressionContainer
  331. def wrapCast[T <: BaseType](result: T, node: Cast): T
    Definition Classes
    BaseType
  332. def wrapNext(): SInt.this.type
    Definition Classes
    Data
  333. def xorR: Bool

    Logical XOR of all bits

    Logical XOR of all bits

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

    Logical OR operator

    Logical OR operator

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

    Logical shift left (output width == input width)

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

    Logical shift left (output width == input width)

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

    Logical shift Right (output width == input width)

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

    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
    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 range: Range

    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 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