trait ICFG[Statement, Callable <: Entity] extends AnyRef
Interface representing the interprocedural control flow graph.
- Source
- ICFG.scala
- Alphabetic
- By Inheritance
- ICFG
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def getCallable(stmt: Statement): Callable
Get the callable a statement belongs to
- abstract def getCallees(stmt: Statement): Set[Callable]
Get all possible callees a call statement could call
- abstract def getCallers(callable: Callable): Set[Statement]
Get all possible statements that could call a callable
- abstract def getNextStatements(stmt: Statement): Set[Statement]
Get all statements that can directly follow the given one
- abstract def getStartStatements(callable: Callable): Set[Statement]
Get all statements a callable can be entered at
- abstract def isAbnormalExitStatement(stmt: Statement): Boolean
Check whether a statement exits a callable in an abnormal way (e.g.
Check whether a statement exits a callable in an abnormal way (e.g. by throwing an exception)
- abstract def isCallStatement(stmt: Statement): Boolean
Check whether a statement is a call statement
- abstract def isNormalExitStatement(stmt: Statement): Boolean
Check whether a statement exits a callable in a normal way (e.g.
Check whether a statement exits a callable in a normal way (e.g. with a return)
Concrete 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() @IntrinsicCandidate()
- 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()
- def isExitStatement(stmt: Statement): Boolean
Check whether a statement exits a callable (in a normal or abnormal way)
- 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
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- 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])
- 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
- Deprecated