final class DominanceFrontiers extends ControlDependencies
- Alphabetic
- By Inheritance
- DominanceFrontiers
- ControlDependencies
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- def apply(n: Int): IntArraySet
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def df(n: Int): IntArraySet
Returns the nodes in the dominance frontier of the given node.
- def dominanceFrontiers: IndexedSeq[IntArraySet]
- 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() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def maxNode: Int
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toDot(isNodeValid: (Int) => Boolean = _ => true): String
Creates a dot graph which depicts the dominance frontiers.
Creates a dot graph which depicts the dominance frontiers.
- isNodeValid
A function that returns
true
if the given int value identifies a valid node. If the underlying graph is not a sparse graph; i.e., if every index in the range [0...maxNode] identifies a valid node, then the default function, which always returnstrue
, can be used.
- def toString(): String
- Definition Classes
- AnyRef → Any
- def transitiveDF(n: Int): IntTrieSet
- 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])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def xIsControlDependentOn(x: Int)(f: (Int) => Unit): Unit
Calls the function
f
with those nodes on which the given nodex
is control dependent on.Calls the function
f
with those nodes on which the given nodex
is control dependent on.- Definition Classes
- DominanceFrontiers → ControlDependencies
- def xIsDirectlyControlDependentOn(x: Int): IntArraySet
- returns
The nodes/basic blocks on which the given node/basic block is directly control dependent on. That is, the set of nodes which directly control whether x is executed or not. Directly means that there is at least one path between a node Y in
Control(X)/*the returned set*/
and X, whose selection is controlled by Y and which contains no nodes that may prevent the execution of X.
- Definition Classes
- DominanceFrontiers → ControlDependencies
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated