final class ExitNode extends CFGNode
Represents the artificial exit node of a control flow graph. The graph contains an explicit exit node to make it trivial to navigate to all instructions that may cause a(n ab)normal return from the method.
- Source
- ExitNode.scala
- Alphabetic
- By Inheritance
- ExitNode
- CFGNode
- Node
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ExitNode(normalReturn: Boolean)
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 addPredecessor(predecessor: CFGNode): Unit
- Definition Classes
- CFGNode
- def addPredecessors(predecessor: IterableOnce[CFGNode]): Unit
- Definition Classes
- CFGNode
- def addSuccessor(successor: CFGNode): Unit
- def asBasicBlock: BasicBlock
- Definition Classes
- CFGNode
- def asCatchNode: CatchNode
- Definition Classes
- CFGNode
- 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()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(other: Any): Boolean
- Definition Classes
- Node → AnyRef → Any
- final def foreachSuccessor(f: (Node) => Unit): Unit
Applies the given function for each successor node.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def hasSuccessors: Boolean
Returns
true
if this node has successor nodes. - def hashCode(): Int
The hash code of this node.
The hash code of this node. By default the hash code is the unique id.
- Definition Classes
- Node → AnyRef → Any
- def isAbnormalReturnExitNode: Boolean
- def isBasicBlock: Boolean
- def isCatchNode: Boolean
- def isExitNode: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNormalReturnExitNode: Boolean
- def isStartOfSubroutine: Boolean
- def mayThrowException: Boolean
Returns
true
if the last instruction of this basic block throws/may throw an exception; whether the exception is handled or not is not relevant!Returns
true
if the last instruction of this basic block throws/may throw an exception; whether the exception is handled or not is not relevant!- Definition Classes
- CFGNode
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nodeId: Int
An identifier that uniquely identifies this node in the graph to which this node belongs.
- final val normalReturn: Boolean
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def predecessors: Set[CFGNode]
- Definition Classes
- CFGNode
- def reachable(reflexive: Boolean = false): Set[CFGNode]
Computes the set of all CFGNodes that are reachable from this one.
- def removePredecessor(predecessor: CFGNode): Unit
- Definition Classes
- CFGNode
- def successors: Set[CFGNode]
- Definition Classes
- CFGNode
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toHRR: Option[String]
Returns a human readable representation (HRR) of this node.
- def toString(): String
- Definition Classes
- ExitNode → AnyRef → Any
- def visualProperties: Map[String, String]
- 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])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated