Packages

  • package root
    Definition Classes
    root
  • package vexiiriscv
    Definition Classes
    root
  • package misc
    Definition Classes
    vexiiriscv
  • object MulSpliter

    MulSpliter is a tool which will cut a multiplication into multiple smaller multiplications Those smaller multiplication results would need to be summed together.

    MulSpliter is a tool which will cut a multiplication into multiple smaller multiplications Those smaller multiplication results would need to be summed together. MulSpliter Doesn't generate any hardware by itself, but instead provide you with the datamodel of the work to do. Usefull for large multiplications which need to be pipelined on multiple cycles when retiming isn't good

    Definition Classes
    misc
  • Splits

case class Splits(offsetA: Int, offsetB: Int, widthA: Int, widthB: Int, signedA: Boolean, signedB: Boolean, id: Int) extends Product with Serializable

A and B being the input operands offsetX, widthX, signedX specifying the operand

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Splits
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Splits(offsetA: Int, offsetB: Int, widthA: Int, widthB: Int, signedA: Boolean, signedB: Boolean, id: Int)

Value Members

  1. val endC: Int
  2. val id: Int
  3. val offsetA: Int
  4. val offsetB: Int
  5. val offsetC: Int
  6. val signedA: Boolean
  7. val signedB: Boolean
  8. def signedC: Boolean
  9. def toMulU(srcA: Bits, srcB: Bits, signedWidth: Int): UInt
  10. val widthA: Int
  11. val widthB: Int
  12. val widthC: Int