Package

spinal

core

Permalink

package core

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. core
  2. BaseTypeCast
  3. UFixCast
  4. SFixCast
  5. BaseTypeFactory
  6. UFixFactory
  7. SFixFactory
  8. TypeFactory
  9. VecFactory
  10. SIntFactory
  11. UIntFactory
  12. BitsFactory
  13. BoolFactory
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Area extends Nameable with ContextUser with OwnableRef with ScalaLocated with ValCallbackRec

    Permalink

    Sometime, creating a Component to define some logic is overkill.

    Sometime, creating a Component to define some logic is overkill. For this kind of cases you can use Area to define a group of signals/logic.

    Example:
    1. val tickConter = new Area{
        val tick = Reg(UInt(8 bits) init(0)
        tick := tick + 1
      }
    See also

    Area Documentation

  2. trait AssertNodeSeverity extends AnyRef

    Permalink
  3. trait Assignable extends AnyRef

    Permalink

    Assignable trait

  4. trait Attribute extends SpinalTag

    Permalink
  5. class AttributeFlag extends Attribute

    Permalink
  6. sealed trait AttributeKind extends AnyRef

    Permalink
  7. class AttributeString extends Attribute

    Permalink
  8. abstract class BaseType extends Data with DeclarationStatement with StatementDoubleLinkedContainer[BaseType, AssignmentStatement] with Expression

    Permalink

    Abstract base class of all Spinal types

  9. trait BaseTypeCast extends SFixCast with UFixCast

    Permalink

    Base type Cast

  10. trait BaseTypeFactory extends BoolFactory with BitsFactory with UIntFactory with SIntFactory with VecFactory with SFixFactory with UFixFactory

    Permalink

    Base type factory

  11. implicit class BigDecimalBuilder extends AnyRef

    Permalink

    BigDecimal Builder

  12. case class BigIntBuilder(i: BigInt) extends Product with Serializable

    Permalink

    BigInt Builder

  13. case class BitCount(value: Int) extends Product with Serializable

    Permalink

    Represent the number of bit of a data

  14. abstract class BitVector extends BaseType with Widthable

    Permalink

    BitVector is a family of types for storing multiple bits of information in a single value.

    BitVector is a family of types for storing multiple bits of information in a single value. This type has three subtypes that can be used to model different behaviours:

    • Bits
    • UInt (unsigned integer)
    • SInt (signed integer)
    See also

    BitVector Documentation

  15. abstract class BitVectorLiteralFactory[T <: BitVector] extends AnyRef

    Permalink

    Base class to create Bit Vector from literal

  16. class Bits extends BitVector with DataPrimitives[Bits] with BitwiseOp[Bits]

    Permalink

    The Bits type corresponds to a vector of bits that does not convey any arithmetic meaning.

    The Bits type corresponds to a vector of bits that does not convey any arithmetic meaning.

    Example:
    1. val myBits1 = Bits(32 bits)
      val myBits2 = B(25, 8 bits)
      val myBits3 = B"8'xFF"
      val myBits4 = B"1001_0011
    See also

    Bits Documentation

  17. trait BitsFactory extends AnyRef

    Permalink

    Bits factory used for instance by the IODirection to create a in/out Bits

  18. trait BitwiseOp[T <: Data] extends AnyRef

    Permalink

    Bitwise Operation

    Bitwise Operation

    T

    the type which is associated with the bitwise operation

  19. abstract class BlackBox extends Component

    Permalink

    A blackbox allows the user to integrate an existing VHDL/Verilog component into the design by just specifying the interfaces.

    A blackbox allows the user to integrate an existing VHDL/Verilog component into the design by just specifying the interfaces.

    Example:
    1.  class Ram_1w_1r(wordWidth: Int, wordCount: Int) extends BlackBox {
           val generic = new Generic {
               val wordCount = Ram_1w_1r.this.wordCount
               val wordWidth = Ram_1w_1r.this.wordWidth
           }
           val io = new Bundle {
               val clk = in Bool
               val wr = new Bundle {
                   val en   = in Bool
                   val addr = in UInt (log2Up(wordCount) bit)
                   val data = in Bits (wordWidth bit)
               }
               val rd = new Bundle {
                   val en   = in Bool
                   val addr = in UInt (log2Up(wordCount) bit)
                   val data = out Bits (wordWidth bit)
               }
           }
           mapClockDomain(clock=io.clk)
      }
  20. abstract class BlackBoxULogic extends BlackBox

    Permalink

    Create a blackBox with std_ulogic instead of std_logic

  21. class Bool extends BaseType with DataPrimitives[Bool] with BitwiseOp[Bool]

    Permalink

    The Bool type corresponds to a boolean value (True or False)

    The Bool type corresponds to a boolean value (True or False)

    Example:
    1. val myBool = Bool()
      myBool := False
      myBool := Bool(false)
    See also

    Bool Documentation

  22. case class BoolEdges() extends Bundle with Product with Serializable

    Permalink

    Bundle for the edge detection

  23. trait BoolFactory extends AnyRef

    Permalink

    Bool factory used for instance by the IODirection to create a in/out Bool

  24. class Bundle extends MultiData with Nameable with ValCallbackRec

    Permalink
  25. class BundleCase extends Bundle

    Permalink
  26. case class ClockDomain(clock: Bool, reset: Bool = null, dummyArg: DummyTrait = null, softReset: Bool = null, clockEnable: Bool = null, config: ClockDomainConfig = GlobalData.get.commonClockConfig, frequency: ClockFrequency = UnknownFrequency(), clockEnableDivisionRate: DivisionRate = ClockDomain.UnknownDivisionRate()) extends Product with Serializable

    Permalink

    clock and reset signals can be combined to create a clock domain.

    clock and reset signals can be combined to create a clock domain. Clock domains could be applied to some area of the design and then all synchronous elements instantiated into this area will then implicitly use this clock domain. Clock domain application work like a stack, which mean, if you are in a given clock domain, you can still apply another clock domain locally

    See also

    ClockDomain Documentation

  27. sealed trait ClockDomainBoolTag extends SpinalTag

    Permalink
  28. case class ClockDomainConfig(clockEdge: EdgeKind = RISING, resetKind: ResetKind = ASYNC, resetActiveLevel: Polarity = HIGH, softResetActiveLevel: Polarity = HIGH, clockEnableActiveLevel: Polarity = HIGH) extends Product with Serializable

    Permalink
  29. case class ClockDomainTag(clockDomain: ClockDomain) extends SpinalTag with Product with Serializable

    Permalink
  30. case class ClockDrivedTag(driver: Bool) extends SpinalTag with Product with Serializable

    Permalink
  31. case class ClockDriverTag(drived: Bool) extends SpinalTag with Product with Serializable

    Permalink
  32. class ClockEnableArea extends Area with PostInitCallback

    Permalink

    Clock Area with a specila clock enable

  33. case class ClockEnableTag(clockDomain: ClockDomain) extends ClockDomainBoolTag with Product with Serializable

    Permalink
  34. case class ClockSyncTag(a: Bool, b: Bool) extends SpinalTag with Product with Serializable

    Permalink
  35. case class ClockTag(clockDomain: ClockDomain) extends ClockDomainBoolTag with Product with Serializable

    Permalink
  36. class ClockingArea extends Area with PostInitCallback

    Permalink

    Clock domains could be applied to some area of the design and then all synchronous elements instantiated into this area will then implicitly use this clock domain.

    Clock domains could be applied to some area of the design and then all synchronous elements instantiated into this area will then implicitly use this clock domain.

    See also

    ClockDomain Documentation

  37. abstract class Component extends NameableByComponent with ContextUser with ScalaLocated with PostInitCallback with Stackable with OwnableRef with SpinalTagReady with OverridedEqualsHashCode with ValCallbackRec

    Permalink

    Abstract class used to create a new Component

    Abstract class used to create a new Component

    Example:
    1. class MyAndGate extends Component {
        val io = new Bundle{
          val a,b = in Bool
          val res = out Bool
        }
        io.res := io.a & io.b
      }
    See also

    Component Documentation

  38. trait ConditionalContext extends GlobalDataUser

    Permalink
  39. trait ContextUser extends GlobalDataUser with ScalaLocated

    Permalink
  40. case class CyclesCount(value: BigInt) extends Product with Serializable

    Permalink

    Cycles number representation

  41. trait Data extends ContextUser with NameableByComponent with Assignable with SpinalTagReady with GlobalDataUser with ScalaLocated with OwnableRef with OverridedEqualsHashCode

    Permalink
  42. class DataPimper[T <: Data] extends DataPrimitives[T]

    Permalink

    Should not extends AnyVal, Because it create kind of strange call stack move that make error reporting miss accurate

  43. trait DataPrimitives[T <: Data] extends AnyRef

    Permalink
  44. trait DataWrapper extends Data

    Permalink
  45. class DefaultTag extends SpinalTag

    Permalink
  46. case class Device(vendor: String = "?", family: String = "?", name: String = "?") extends Product with Serializable

    Permalink

    target device

  47. class DontName extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  48. case class DoubleBuilder(d: Double) extends Product with Serializable

    Permalink

    Double Builder

  49. trait DummyTrait extends AnyRef

    Permalink
  50. case class DumpWaveConfig(depth: Int = 0, vcdPath: String = "wave.vcd") extends Product with Serializable

    Permalink
  51. sealed trait EdgeKind extends AnyRef

    Permalink
  52. class ElseWhenClause extends AnyRef

    Permalink
  53. implicit class ElseWhenClauseBuilder extends AnyRef

    Permalink

    Implicit clause builder for elseWhen

  54. class EnumLiteral[T <: SpinalEnum] extends Literal with InferableEnumEncodingImpl

    Permalink

    Node representation which contains the value of an SpinalEnumElement

  55. class EnumPoison extends Literal with InferableEnumEncodingImpl

    Permalink
  56. case class ExpNumber(value: Int) extends Product with Serializable

    Permalink

    Exponent representation

  57. class ExternalDriverTag extends SpinalTag

    Permalink
  58. type FixedFrequency = core.ClockDomain.FixedFrequency

    Permalink
  59. class GenerationFlags extends AnyRef

    Permalink
  60. class Generic extends AnyRef

    Permalink

    Create a generic for a BlackBox

    Create a generic for a BlackBox

    Example:
    1. class myMemory(sizeMem: Int) extends BlackBox{
          val generic = new Generic{
           val size = sizeMem
          }
          val io = new Bundle { ... }
      }
  61. case class GenericValue(e: Expression) extends SpinalTag with Product with Serializable

    Permalink
  62. class GlobalData extends AnyRef

    Permalink

    Global data

  63. trait GlobalDataUser extends AnyRef

    Permalink

    Get a link to the globalData

  64. class HardType[T <: Data] extends AnyRef

    Permalink
  65. case class HertzNumber(v: BigDecimal) extends PhysicalNumber[HertzNumber] with Product with Serializable

    Permalink

    Frequency representation

  66. type IClockDomainFrequency = ClockFrequency

    Permalink
  67. trait IODirection extends BaseTypeFactory

    Permalink

    Trait used to set the direction of a data

  68. class IfDefTag extends SpinalTag

    Permalink
  69. abstract class ImplicitArea[T] extends Area

    Permalink

    Create an Area which can be assign to a data

    Create an Area which can be assign to a data

    Example:
    1. class Counter extends ImplicitArea[UInt]{
         val cnt = Reg(UInt(8 bits)
         ...
         override def implicitValue: UInt = cnt
      }
      val myCounter = Counter()
      io.myUInt = myCounter
  70. final class IntBuilder extends AnyVal

    Permalink

    Integer Builder

  71. sealed trait Language extends AnyRef

    Permalink
  72. implicit class LiteralBuilder extends AnyRef

    Permalink

    Literal builder S/U/B"e.g. : B"8'xFF"

  73. class MaskedBoolean extends AnyRef

    Permalink

    Masked Literal

    Masked Literal

    Example:
    1. val itMatch = myBits === M"00--10--" // - don't care value
  74. class MaskedLiteral extends AnyRef

    Permalink
  75. class Mem[T <: Data] extends DeclarationStatement with StatementDoubleLinkedContainer[Mem[_], MemPortStatement] with WidthProvider with SpinalTagReady

    Permalink
  76. trait MemBlackboxingPolicy extends AnyRef

    Permalink
  77. trait MemPortStatement extends LeafStatement with StatementDoubleLinkedContainerElement[Mem[_], MemPortStatement]

    Permalink
  78. class MemReadAsync extends MemPortStatement with WidthProvider with SpinalTagReady with ContextUser with Expression

    Permalink
  79. class MemReadSync extends MemPortStatement with WidthProvider with SpinalTagReady with ContextUser with Expression

    Permalink
  80. class MemReadWrite extends MemPortStatement with WidthProvider with SpinalTagReady with ContextUser with Expression

    Permalink
  81. trait MemTechnologyKind extends AnyRef

    Permalink
  82. class MemWrite extends MemPortStatement with WidthProvider with SpinalTagReady

    Permalink
  83. class MemWritePayload[T <: Data] extends Bundle

    Permalink
  84. trait MinMaxProvider extends AnyRef

    Permalink

    Min max base function

  85. abstract class MultiData extends Data

    Permalink

    Base class for multi data like Vec, Bundle

  86. trait Nameable extends OwnableRef with ContextUser

    Permalink
  87. trait NameableByComponent extends Nameable with GlobalDataUser

    Permalink
  88. class NamingScope extends AnyRef

    Permalink
  89. trait Num[T <: Data] extends AnyRef

    Permalink

    Base operations for numbers

    Base operations for numbers

    T

    the type which is associated with the base operation

  90. trait OverridedEqualsHashCode extends AnyRef

    Permalink
  91. trait OwnableRef extends AnyRef

    Permalink
  92. abstract class PhysicalNumber[T <: PhysicalNumber[_]] extends AnyRef

    Permalink

    Base class for the Physical representation (Hertz, Time, ...)

  93. sealed trait Polarity extends AnyRef

    Permalink
  94. case class PosCount(value: Int) extends Product with Serializable

    Permalink

    Position representation

  95. class Ram_1w_1ra extends BlackBox

    Permalink

    Ram 1w 1ra

  96. class Ram_1w_1rs extends BlackBox

    Permalink

    Ram 1w 1rs

  97. class Ram_1wors extends BlackBox

    Permalink

    Ram 1wors

  98. class Ram_1wrs extends BlackBox

    Permalink

    Ram 1wrs

  99. class Ram_2c_1w_1rs extends BlackBox

    Permalink

    Ram 2c 1w 1rs

  100. class Ram_2wrs extends BlackBox

    Permalink

    Ram 2wrs

  101. implicit class RangePimper extends AnyRef

    Permalink

    Implicit Range helper

  102. trait ReadUnderWritePolicy extends AnyRef

    Permalink
  103. case class Ref[T](value: T) extends Product with Serializable

    Permalink

    Use to give value by reference to a function

  104. class ResetArea extends Area with PostInitCallback

    Permalink

    ResetArea allow to reset an area with a special reset combining with the current reset (cumulative)

  105. sealed trait ResetKind extends AnyRef

    Permalink
  106. case class ResetTag(clockDomain: ClockDomain) extends ClockDomainBoolTag with Product with Serializable

    Permalink
  107. sealed trait RoundType extends AnyRef

    Permalink
  108. class SFix extends XFix[SFix, SInt]

    Permalink

    Signed fix point

    Signed fix point

    See also

    SFix Documentation

  109. class SFix2D extends Bundle

    Permalink
  110. trait SFixCast extends AnyRef

    Permalink
  111. trait SFixFactory extends TypeFactory

    Permalink
  112. class SInt extends BitVector with Num[SInt] with MinMaxProvider with DataPrimitives[SInt] with BitwiseOp[SInt]

    Permalink

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

    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

  113. trait SIntFactory extends AnyRef

    Permalink

    SInt factory used for instance by the IODirection to create a in/out SInt

  114. implicit class SIntPimper extends AnyRef

    Permalink

    Implicit SInt helper

  115. class SafeStack[T] extends AnyRef

    Permalink

    Safe Stack

  116. class SafeStackWithStackable[T <: Stackable] extends SafeStack[T]

    Permalink
  117. trait ScalaLocated extends GlobalDataUser

    Permalink
  118. case class SlicesCount(value: Int) extends Product with Serializable

    Permalink

    Slice size representation

  119. class SlowArea extends ClockingArea

    Permalink

    Define a clock domain which is x time slower than the current clock

  120. case class SpinalConfig(mode: SpinalMode = null, flags: HashSet[Any] = mutable.HashSet[Any](), debugComponents: HashSet[Class[_]] = mutable.HashSet[Class[_]](), keepAll: Boolean = false, defaultConfigForClockDomains: ClockDomainConfig = ClockDomainConfig(), onlyStdLogicVectorAtTopLevelIo: Boolean = false, defaultClockDomainFrequency: IClockDomainFrequency = UnknownFrequency(), targetDirectory: String = ".", oneFilePerComponent: Boolean = false, netlistFileName: String = null, dumpWave: DumpWaveConfig = null, globalPrefix: String = "", privateNamespace: Boolean = false, formalAsserts: Boolean = false, anonymSignalPrefix: String = null, device: Device = Device(), inlineRom: Boolean = false, genVhdlPkg: Boolean = true, verbose: Boolean = false, mergeAsyncProcess: Boolean = false, asyncResetCombSensitivity: Boolean = false, anonymSignalUniqueness: Boolean = false, noRandBoot: Boolean = false, randBootFixValue: Boolean = true, noAssert: Boolean = false, phasesInserters: ArrayBuffer[(ArrayBuffer[Phase]) ⇒ Unit] = ..., transformationPhases: ArrayBuffer[Phase] = ArrayBuffer[Phase](), memBlackBoxers: ArrayBuffer[Phase] = ..., rtlHeader: String = null, _withEnumString: Boolean = true) extends Product with Serializable

    Permalink

    Spinal configuration for the generation of the RTL

  121. class SpinalEnum extends Nameable with ScalaLocated

    Permalink

    Base class for creating enumeration

    Base class for creating enumeration

    Example:
    1. object MyEnum extends SpinalEnum(binarySequential){
        val s1, s2, s3, s4 = newElement()
      }

      SpinalEnum contains a list of SpinalEnumElement that is the definition of an element. SpinalEnumCraft is the hardware representation of the the element.

    See also

    Enumeration Documentation

  122. class SpinalEnumCraft[T <: SpinalEnum] extends BaseType with InferableEnumEncodingImpl with DataPrimitives[SpinalEnumCraft[T]]

    Permalink

    Hardware representation of an enumeration

  123. class SpinalEnumElement[T <: SpinalEnum] extends Nameable

    Permalink

    Definition of an element of the enumeration

  124. trait SpinalEnumEncoding extends Nameable with ScalaLocated

    Permalink

    Trait to define an encoding

  125. class SpinalExit extends Exception

    Permalink
  126. trait SpinalMode extends AnyRef

    Permalink
  127. class SpinalReport[T <: Component] extends AnyRef

    Permalink

    Spinal report give after the generation of the RTL

  128. trait SpinalTag extends AnyRef

    Permalink
  129. trait SpinalTagReady extends AnyRef

    Permalink
  130. trait Stackable extends AnyRef

    Permalink
  131. class SwitchContext extends AnyRef

    Permalink
  132. case class TimeNumber(v: BigDecimal) extends PhysicalNumber[TimeNumber] with Product with Serializable

    Permalink

    Time representation

  133. trait TypeFactory extends AnyRef

    Permalink
  134. class UFix extends XFix[UFix, UInt]

    Permalink

    Unsigned fix point

    Unsigned fix point

    See also

    UFix Documentation

  135. class UFix2D extends Bundle

    Permalink

    Two-dimensional XFix

  136. trait UFixCast extends AnyRef

    Permalink
  137. trait UFixFactory extends TypeFactory

    Permalink
  138. class UInt extends BitVector with Num[UInt] with MinMaxProvider with DataPrimitives[UInt] with BitwiseOp[UInt]

    Permalink

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

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

    Example:
    1. val myUInt = UInt(8 bits)
       myUInt := U(2,8 bits)
       myUInt := U(2)
       myUInt := U"0000_0101"
       myUInt := U"h1A"
    See also

    UInt Documentation

  139. case class UInt2D(xBitCount: BitCount, yBitCount: BitCount) extends Bundle with Product with Serializable

    Permalink

    Define an UInt 2D point

    Define an UInt 2D point

    xBitCount

    width of the x point

    yBitCount

    width of the y point

    Example:
    1. val positionOnScreen = Reg(UInt2D(log2Up(p.screenResX) bits, log2Up(p.screenResY) bits))
  140. trait UIntFactory extends AnyRef

    Permalink

    UInt factory used for instance by the IODirection to create a in/out UInt

  141. implicit class UIntPimper extends AnyRef

    Permalink

    Implicit UInt helper

  142. type UnknownFrequency = core.ClockDomain.UnknownFrequency

    Permalink
  143. trait ValCallbackRec extends ValCallback

    Permalink

    The Bundle is a composite type that defines a group of named signals (of any SpinalHDL basic type) under a single name.

    The Bundle is a composite type that defines a group of named signals (of any SpinalHDL basic type) under a single name. The Bundle can be used to model data structures, buses and interfaces.

    Example:
    1. val cmd = new Bundle{
        val init   = in Bool
        val start  = in Bool
        val result = out Bits(32 bits)
      }
    See also

    Bundle Documentation

  144. class VarAssignementTag extends SpinalTag

    Permalink
  145. class Vec[T <: Data] extends MultiData with IndexedSeq[T]

    Permalink

    The Vec is a composite type that defines a group of indexed signals (of any SpinalHDL basic type) under a single name

    The Vec is a composite type that defines a group of indexed signals (of any SpinalHDL basic type) under a single name

    Example:
    1. val myVecOfSInt = Vec(SInt(8 bits), 2)
    See also

    Vec Documentation

  146. class VecAccessAssign[T <: Data] extends Assignable

    Permalink
  147. class VecBuilder extends AnyRef

    Permalink
    Definition Classes
    VecFactory
  148. trait VecFactory extends AnyRef

    Permalink

    Vec factory

  149. class WhenContext extends ConditionalContext with ScalaLocated

    Permalink

    else / else if statement

    else / else if statement

    See also

    when Documentation

  150. abstract class XFix[T <: XFix[T, R], R <: BitVector with Num[R]] extends MultiData

    Permalink

    Base class for SFix and UFix

  151. type dontName = spinal.core.DontName @scala.annotation.meta.field

    Permalink

Value Members

  1. object ASYNC extends ResetKind

    Permalink
  2. object AllowMixedWidth extends SpinalTag

    Permalink
  3. object Analog

    Permalink

    Set a data to Analog

  4. object AnnotationUtils

    Permalink
  5. object ArrayManager

    Permalink
  6. object B extends BitVectorLiteralFactory[Bits]

    Permalink

    Used to create a new Bits or cast to Bits

  7. object BOOT extends ResetKind

    Permalink
  8. object BaseType

    Permalink
  9. implicit def BigIntToBits(that: BigInt): Bits

    Permalink
  10. implicit def BigIntToBuilder(value: BigInt): BigIntBuilder

    Permalink
  11. implicit def BigIntToSInt(that: BigInt): SInt

    Permalink
  12. implicit def BigIntToUInt(that: BigInt): UInt

    Permalink
  13. def Bits(width: BitCount): Bits

    Permalink

    Create a new Bits of a given width

    Create a new Bits of a given width

    Definition Classes
    BitsFactory
  14. def Bits(): Bits

    Permalink

    Create a new Bits

    Create a new Bits

    Definition Classes
    BitsFactory
  15. def Bool(value: Boolean): Bool

    Permalink

    Create a new Bool initialized with a boolean value

    Create a new Bool initialized with a boolean value

    Definition Classes
    BoolFactory
  16. def Bool(): Bool

    Permalink

    Create a new Bool

    Create a new Bool

    Definition Classes
    BoolFactory
  17. implicit def BooleanPimped[T <: Data](that: Boolean): BooleanPimped

    Permalink
  18. object COMMENT_ATTRIBUTE extends AttributeKind

    Permalink
  19. object Cat

    Permalink

    Concatenate a list of data

  20. object Clock

    Permalink
  21. object ClockDomain extends Serializable

    Permalink
  22. object CombInit

    Permalink

    Declare a register with an initialize value

  23. object Component

    Permalink
  24. object ConditionalContext

    Permalink
  25. object CyclesCount extends Serializable

    Permalink
  26. object DEFAULT_ATTRIBUTE extends AttributeKind

    Permalink
  27. object Data

    Permalink
  28. object DataAssign

    Permalink
  29. implicit def DataPimped[T <: Data](that: T): DataPimper[T]

    Permalink

    Implicit Data helper

  30. object Device extends Serializable

    Permalink
  31. implicit def DoubleToBuilder(value: Double): DoubleBuilder

    Permalink
  32. object Driver

    Permalink
  33. object ERROR extends AssertNodeSeverity

    Permalink
  34. implicit def EnumCtoEnumC2[T <: SpinalEnum, T2 <: T](craft: SpinalEnumCraft[T2]): SpinalEnumCraft[T]

    Permalink
  35. implicit def EnumCtoEnumC3[T <: SpinalEnum, T2 <: T](craft: SpinalEnumCraft[T]): SpinalEnumCraft[T2]

    Permalink
  36. implicit def EnumElementToCraft[T <: SpinalEnum](element: SpinalEnumElement[T]): SpinalEnumCraft[T]

    Permalink
  37. implicit def EnumEtoEnumE2[T <: SpinalEnum, T2 <: T](element: SpinalEnumElement[T2]): SpinalEnumElement[T]

    Permalink

    Implicit enum conversion

  38. implicit def EnumEtoEnumE3[T <: SpinalEnum, T2 <: T](element: SpinalEnumElement[T]): SpinalEnumElement[T2]

    Permalink
  39. object FAILURE extends AssertNodeSeverity

    Permalink
  40. object FALLING extends EdgeKind

    Permalink
  41. def False: Bool

    Permalink
  42. def FixedFrequency(value: HertzNumber): core.ClockDomain.FixedFrequency

    Permalink
  43. object Formal

    Permalink
  44. object GenerationFlags

    Permalink
  45. object GlobalData

    Permalink
  46. object HIGH extends Polarity

    Permalink
  47. object HardType

    Permalink
  48. object ImplicitArea

    Permalink
  49. object Info

    Permalink
  50. object InitAssign

    Permalink
  51. implicit def IntToBits(that: Int): Bits

    Permalink
  52. implicit def IntToBuilder(value: Int): IntBuilder

    Permalink

    Implicit Int/BigInt/Double to Builder

  53. implicit def IntToSInt(that: Int): SInt

    Permalink
  54. implicit def IntToUInt(that: Int): UInt

    Permalink

    Implicit conversion from Int/BigInt/String to UInt/SInt/Bits

  55. object LOW extends Polarity

    Permalink
  56. object Language

    Permalink
  57. object LocatedPendingError

    Permalink
  58. implicit def LongToBits(that: Long): Bits

    Permalink
  59. implicit def LongToSInt(that: Long): SInt

    Permalink
  60. implicit def LongToUInt(that: Long): UInt

    Permalink
  61. object MaskedLiteral

    Permalink
  62. object Mem

    Permalink
  63. object MemReadAsync

    Permalink
  64. object MemReadSync

    Permalink
  65. object MemReadWrite

    Permalink
  66. object MemWrite

    Permalink
  67. object Mux

    Permalink

    Mux operation

  68. object NOTE extends AssertNodeSeverity

    Permalink
  69. object Nameable

    Permalink
  70. object OwnableRef

    Permalink
  71. object PendingError

    Permalink
  72. object RISING extends EdgeKind

    Permalink
  73. object Reg

    Permalink

    Create a register

  74. object RegInit

    Permalink

    Declare a register with an initialize value

  75. object RegNext

    Permalink

    Register a signal of one clock

  76. object RegNextWhen

    Permalink

    Register a signal when a condition is true

  77. object RoundType

    Permalink
  78. object S extends BitVectorLiteralFactory[SInt]

    Permalink

    Used to create a new SInt or cast to SInt

  79. object SF

    Permalink
  80. def SFix(peak: ExpNumber, resolution: ExpNumber): SFix

    Permalink
    Definition Classes
    SFixFactory
  81. def SFix(peak: ExpNumber, width: BitCount): SFix

    Permalink
    Definition Classes
    SFixFactory
  82. object SFix2D

    Permalink

    Two-dimensionnal SFix

  83. def SInt(width: BitCount): SInt

    Permalink

    Create a new SInt of a given width

    Create a new SInt of a given width

    Definition Classes
    SIntFactory
  84. def SInt(): SInt

    Permalink

    Create a new SInt

    Create a new SInt

    Definition Classes
    SIntFactory
  85. object SYNC extends ResetKind

    Permalink
  86. object ScalaLocated

    Permalink
  87. object Select

    Permalink
  88. object Spinal

    Permalink
  89. object SpinalConfig extends Serializable

    Permalink
  90. object SpinalEnumEncoding

    Permalink

    Used to create a custom encoding

    Used to create a custom encoding

    Example:
    1. object BR extends SpinalEnum{
        val NE, EQ, J, JR = newElement()
        defaultEncoding = SpinalEnumEncoding("opt")(
            EQ -> 0,
            NE -> 1,
            J  -> 2,
            JR -> 3 )
      }
  91. object SpinalError

    Permalink
  92. object SpinalExit extends Serializable

    Permalink
  93. object SpinalInfo

    Permalink
  94. object SpinalLog

    Permalink
  95. object SpinalMap

    Permalink

    Spinal map

  96. object SpinalProgress

    Permalink
  97. object SpinalSystemVerilog

    Permalink
  98. object SpinalTagReady

    Permalink
  99. object SpinalVerilog

    Permalink
  100. object SpinalVhdl

    Permalink
  101. object SpinalWarning

    Permalink
  102. object SystemVerilog extends SpinalMode

    Permalink
  103. def True: Bool

    Permalink

    True / False definition

  104. object U extends BitVectorLiteralFactory[UInt]

    Permalink

    Used to create a new UInt or cast to UInt

  105. object UF

    Permalink
  106. def UFix(peak: ExpNumber, resolution: ExpNumber): UFix

    Permalink
    Definition Classes
    UFixFactory
  107. def UFix(peak: ExpNumber, width: BitCount): UFix

    Permalink
    Definition Classes
    UFixFactory
  108. object UFix2D

    Permalink

    Two-dimensionnal UFix

  109. def UInt(width: BitCount): UInt

    Permalink

    Create a new UInt of a given width

    Create a new UInt of a given width

    Definition Classes
    UIntFactory
  110. def UInt(): UInt

    Permalink

    Create a new UInt

    Create a new UInt

    Definition Classes
    UIntFactory
  111. object UInt2D extends Serializable

    Permalink
  112. def UnknownFrequency(): core.ClockDomain.UnknownFrequency

    Permalink
  113. object VHDL extends SpinalMode

    Permalink
  114. def Vec[T <: Data](firstElement: T, followingElements: T*): Vec[T]

    Permalink
    Definition Classes
    VecFactory
  115. def Vec[T <: Data](gen: ⇒ T, size: Int): Vec[T]

    Permalink
    Definition Classes
    VecFactory
  116. def Vec[T <: Data](elements: TraversableOnce[T], dataType: HardType[T] = null): Vec[T]

    Permalink
    Definition Classes
    VecFactory
  117. val Vec: VecBuilder

    Permalink
    Definition Classes
    VecFactory
  118. object Verilator

    Permalink
  119. object Verilog extends SpinalMode

    Permalink
  120. object WARNING extends AssertNodeSeverity

    Permalink
  121. object addDefaultGenericValue extends SpinalTag

    Permalink

    In VHDL add the generic value in the definition of the blackbox

  122. object allowAssignmentOverride extends SpinalTag

    Permalink
  123. object allowDirectionLessIoTag extends SpinalTag

    Permalink
  124. def assert(assertion: Bool, message: Seq[Any], severity: AssertNodeSeverity): AssertStatement

    Permalink
  125. def assert(assertion: Bool, message: String, severity: AssertNodeSeverity): AssertStatement

    Permalink
  126. def assert(assertion: Bool, message: Seq[Any]): AssertStatement

    Permalink
  127. def assert(assertion: Bool, message: String): AssertStatement

    Permalink
  128. def assert(assertion: Bool, severity: AssertNodeSeverity): AssertStatement

    Permalink
  129. def assert(assertion: Bool): AssertStatement

    Permalink
  130. final def assert(assertion: Boolean, message: ⇒ Any): Unit

    Permalink
    Annotations
    @elidable( ASSERTION ) @inline()
  131. def assert(assertion: Boolean): Unit

    Permalink

    Assertion

    Assertion

    Annotations
    @elidable( ASSERTION )
  132. def assume(assertion: Bool): AssertStatement

    Permalink
  133. object auto extends MemTechnologyKind

    Permalink
  134. object binaryOneHot extends SpinalEnumEncoding

    Permalink

    Binary One hot encoding

    Binary One hot encoding

    Example:
    1. 001, 010, 100
  135. object binarySequential extends SpinalEnumEncoding

    Permalink

    Binary Sequential

    Binary Sequential

    Example:
    1. 000, 001, 010, 011, 100, 101, ....
  136. object blackboxAll extends MemBlackboxingPolicy

    Permalink
  137. object blackboxAllWhatsYouCan extends MemBlackboxingPolicy

    Permalink
  138. object blackboxOnlyIfRequested extends MemBlackboxingPolicy

    Permalink
  139. object blackboxRequestedAndUninferable extends MemBlackboxingPolicy

    Permalink
  140. object cloneOf

    Permalink

    Return a new data with the same data structure than the given parameter (including bit width)

  141. def cover(assertion: Bool): AssertStatement

    Permalink
  142. object crossClockBuffer extends SpinalTag

    Permalink
  143. object crossClockDomain extends SpinalTag

    Permalink
  144. object default

    Permalink

    default statement of a switch case

    default statement of a switch case

    See also

    switch Documentation

  145. object distributedLut extends MemTechnologyKind

    Permalink
  146. object dontCare extends ReadUnderWritePolicy

    Permalink
  147. object ifGen

    Permalink
  148. implicit lazy val implicitConversions: implicitConversions

    Permalink

    Scala implicit

  149. object in extends IODirection

    Permalink

    Set a data to input

  150. object inWithNull extends IODirection

    Permalink

    Set a data to in if the data is not null

  151. object inferred extends SpinalEnumEncoding

    Permalink

    Inferred encoding

  152. object inout extends IODirection

    Permalink

    Set a data to inout

  153. package internals

    Permalink
  154. object is

    Permalink

    is statement of a switch case

    is statement of a switch case

    See also

    switch Documentation

  155. object isPow2

    Permalink

    Check if a number is a power of 2

  156. object log2Up

    Permalink

    Give number of bit to encode a given number of states

  157. object native extends SpinalEnumEncoding

    Permalink

    Native encoding

  158. object noBackendCombMerge extends SpinalTag

    Permalink
  159. object noCombinatorialLoopCheck extends SpinalTag

    Permalink
  160. object noNumericType extends SpinalTag

    Permalink

    Transform all unsigned/signed into std_logic_vector

  161. object out extends IODirection

    Permalink

    Set a data to output

  162. object outWithNull extends IODirection

    Permalink

    Set a data to out if the data is not null

  163. def postTypeFactory[T <: Data](that: T): T

    Permalink
    Definition Classes
    TypeFactory
  164. implicit lazy val postfixOps: postfixOps

    Permalink
  165. object ramBlock extends MemTechnologyKind

    Permalink
  166. object randomBoot extends SpinalTag

    Permalink
  167. object readFirst extends ReadUnderWritePolicy

    Permalink
  168. implicit lazy val reflectiveCalls: reflectiveCalls

    Permalink
  169. object registerFile extends MemTechnologyKind

    Permalink
  170. def report(message: Seq[Any], severity: AssertNodeSeverity): AssertStatement

    Permalink
  171. def report(message: String, severity: AssertNodeSeverity): AssertStatement

    Permalink
  172. def report(message: Seq[Any]): AssertStatement

    Permalink
  173. def report(message: String): AssertStatement

    Permalink
  174. object roundUp

    Permalink

    Round up a BigInt

  175. object signalCache

    Permalink
  176. package sim

    Permalink

    Simulation package

  177. object switch

    Permalink

    case/switch statement

    case/switch statement

    Example:
    1. switch(x){
          is(value1){
              //execute when x === value1
          }
          is(value2){
              //execute when x === value2
          }
          default{
             //execute if none of precedent condition meet
          }
       }
    See also

    switch Documentation

  178. object tagAutoResize extends SpinalTag

    Permalink
  179. object tagTruncated extends SpinalTag

    Permalink
  180. object uLogic extends SpinalTag

    Permalink

    Create a Ulogic tag used by Blackbox in order to transform std_logic into std_ulogic

  181. object unsetRegIfNoAssignementTag extends SpinalTag

    Permalink
  182. object unusedTag extends SpinalTag

    Permalink
  183. object weakCloneOf

    Permalink

    Return a new data with the same data structure than the given parameter (execept bit width)

  184. object when

    Permalink

    If statement

    If statement

    Example:
    1. when(cond1){
        myCnt := 0
      }elsewhen(cond2){
        myCnt := myCnt + 1
      }otherwise{
        myCnt := myCnt - 1
      }
    See also

    when Documentation

  185. object widthOf

    Permalink

    Return the number of bit of the given data

  186. object writeFirst extends ReadUnderWritePolicy

    Permalink

Deprecated Value Members

  1. object Sel

    Permalink

    Sel operation

    Sel operation

    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use Select instead

  2. object cloneable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use HardType instead

  3. def toSFix(sint: SInt): SFix

    Permalink
    Definition Classes
    SFixCast
    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use xxx.toSFix instead

  4. def toUFix(uint: UInt): UFix

    Permalink
    Definition Classes
    UFixCast
    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use xxx.toUFix instead

  5. object wrap

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use HardType instead

Inherited from BaseTypeCast

Inherited from UFixCast

Inherited from SFixCast

Inherited from BaseTypeFactory

Inherited from UFixFactory

Inherited from SFixFactory

Inherited from TypeFactory

Inherited from VecFactory

Inherited from SIntFactory

Inherited from UIntFactory

Inherited from BitsFactory

Inherited from BoolFactory

Inherited from AnyRef

Inherited from Any

Ungrouped