Packages

o

chisel3.util.SparseVec

DefaultValueBehavior

object DefaultValueBehavior

Source
SparseVec.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultValueBehavior
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Type extends AnyRef

    A type that specifies what the default value of a SparseVec is.

  2. case class UserSpecified(value: UInt) extends Type with Product with Serializable

    Return a user-specified value.

Value Members

  1. case object DynamicIndexEquivalent extends Type with Product with Serializable

    Return the same result as if this were a dynamic index initialized to DontCare.

  2. case object Indeterminate extends Type with Product with Serializable

    Allow Chisel and FIRRTL compilers to take advantage of undefined behavior.

    Allow Chisel and FIRRTL compilers to take advantage of undefined behavior. Any value may be returned.