class DataAnalyzer extends AnyRef
Base type data analyzer. It provides some utilities that help designer analyze the circuit at runtime.
- Alphabetic
- By Inheritance
- DataAnalyzer
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
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]) @HotSpotIntrinsicCandidate() @native()
- 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
- @HotSpotIntrinsicCandidate() @native()
- def getFanIn(cond: (BaseType) => Boolean): LinkedHashSet[BaseType]
Get the fan-ins matching the condition
Get the fan-ins matching the condition
- cond
a predicate to filter the fan-ins
- returns
a set of fan-in signals
- def getFanIn: LinkedHashSet[BaseType]
Get all the fan-in signals of this data
Get all the fan-in signals of this data
- returns
a set of fan-in signals.
- def getFanOut(cond: (BaseType) => Boolean): LinkedHashSet[BaseType]
Get the fan-outs matching the condition
Get the fan-outs matching the condition
- cond
a predicate to filter the fan-outs
- returns
a set of fan-out signals
- def getFanOut: LinkedHashSet[BaseType]
Get all the fan-out signals of this data
Get all the fan-out signals of this data
- returns
a set of fan-out signals.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- 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])
- def walkFanIn(cond: (BaseType) => Boolean)(func: (BaseType) => Unit): Unit
Iterate on the filtered fan-ins.
Iterate on the filtered fan-ins.
- cond
a predicate to filter the fan-ins
- func
the function applied on the data
- def walkFanOut(cond: (BaseType) => Boolean)(func: (BaseType) => Unit): Unit
Iterate on the filtered fan-outs.
Iterate on the filtered fan-outs.
- cond
a predicate to filter the fan-outs
- func
the function applied on the data
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)