object Lookupable
- Source
- Lookupable.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Lookupable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- class SimpleLookupable[X] extends Lookupable[X]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit val lookupBigInt: SimpleLookupable[BigInt]
- implicit val lookupBoolean: SimpleLookupable[Boolean]
- implicit val lookupByte: SimpleLookupable[Byte]
- implicit val lookupChar: SimpleLookupable[Char]
- implicit def lookupData[B <: Data](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Lookupable[B] { type C = B }
- implicit def lookupEither[L, R](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions, lookupableL: Lookupable[L], lookupableR: Lookupable[R]): Lookupable[Either[L, R]] { type C = Either[lookupableL.C,lookupableR.C] }
- implicit val lookupFloat: SimpleLookupable[Float]
- implicit def lookupInstance[B <: BaseModule](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Lookupable[Instance[B]] { type C = chisel3.experimental.hierarchy.core.Instance[B] }
- implicit val lookupInt: SimpleLookupable[Int]
- implicit def lookupIsInstantiable[B <: IsInstantiable](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Lookupable[B] { type C = chisel3.experimental.hierarchy.core.Instance[B] }
- implicit def lookupIsLookupable[B <: IsLookupable](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): SimpleLookupable[B]
- implicit def lookupIterable[B, F[_] <: Iterable[_]](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions, lookupable: Lookupable[B]): Lookupable[F[B]] { type C = F[lookupable.C] }
- implicit val lookupLong: SimpleLookupable[Long]
- implicit def lookupMem[B <: MemBase[_]](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Lookupable[B] { type C = B }
- implicit def lookupModule[B <: BaseModule](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Lookupable[B] { type C = chisel3.experimental.hierarchy.core.Instance[B] }
- implicit def lookupOption[B](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions, lookupable: Lookupable[B]): Lookupable[Option[B]] { type C = Option[lookupable.C] }
- implicit val lookupShort: SimpleLookupable[Short]
- implicit val lookupString: SimpleLookupable[String]
- implicit def lookupTuple2[X, Y](implicit sourceInfo: SourceInfo, compileOptions: CompileOptions, lookupableX: Lookupable[X], lookupableY: Lookupable[Y]): Lookupable[(X, Y)] { type C = (lookupableX.C, lookupableY.C) }
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
This is the documentation for Chisel.
Package structure
The chisel3 package presents the public API of Chisel. It contains the concrete core types
UInt,SInt,Bool,FixedPoint,Clock, andReg, the abstract typesBits,Aggregate, andData, and the aggregate typesBundleandVec.The Chisel package is a compatibility layer that attempts to provide chisel2 compatibility in chisel3.
Utility objects and methods are found in the
utilpackage.The
testerspackage defines the basic interface for chisel testers.