Packages

c

org.opalj.ai

AIResult

sealed abstract class AIResult extends AnyRef

Encapsulates the result of the abstract interpretation of a method. If the abstract interpretation was cancelled, the result encapsulates the current state of the evaluation which can be used to continue the abstract interpretation later on if necessary/desired.

Source
AIResult.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AIResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val cfJoins: IntTrieSet

    The instructions where two or more control flow paths join.

    The instructions where two or more control flow paths join.

    Note

    This information could be recomputed on-demand but is stored for performance reasons.

    See also

    org.opalj.br.Code.cfPCs, org.opalj.br.Code.cfJoins, org.opalj.br.Code.predecessorPCs

  2. abstract val code: Code

    The code for which the abstract interpretation was performed.

  3. abstract val domain: Domain

    The domain object that was used to perform the abstract interpretation.

  4. abstract val evaluatedPCs: IntArrayStack

    The list of evaluated instructions ordered by the evaluation time; subroutines are identified using the SUBROUTINE marker ids.

  5. abstract val liveVariables: LiveVariables

    The set of statically known live Variables.

  6. abstract val localsArray: Domain.LocalsArray

    The values stored in the registers.

    The values stored in the registers.

    For those instructions that were never executed (potentially dead code if the abstract interpretation succeeded) the locals array will be empty (the value will be null).

  7. abstract val memoryLayoutBeforeSubroutineCall: List[(PC, Domain.OperandsArray, Domain.LocalsArray)]

    Contains the memory layout before the call to a subroutine.

    Contains the memory layout before the call to a subroutine. This list is empty if the abstract interpretation completed successfully.

  8. abstract val operandsArray: Domain.OperandsArray

    The array of the operand lists in effect before the execution of the instruction with the respective program counter.

    The array of the operand lists in effect before the execution of the instruction with the respective program counter.

    For those instructions that were never executed (potentially dead code if the abstract interpretation succeeded) the operands array will be empty (the value will be null).

  9. abstract val subroutinesLocalsArray: Domain.LocalsArray

    Contains the memory layout related to the method's subroutines (if any).

    Contains the memory layout related to the method's subroutines (if any).

    Note

    This value is null if the method does not have subroutines (Java 6 and newer class files never contain subroutines) or if no subroutine was analyzed so far.

  10. abstract val subroutinesOperandsArray: Domain.OperandsArray

    Contains the memory layout related to the method's subroutines (if any).

    Contains the memory layout related to the method's subroutines (if any).

    Note

    This value is null if the method does not have subroutines (Java 6 and newer class files never contain subroutines) or if no subroutine was analyzed so far.

  11. abstract val subroutinesWereEvaluated: Boolean

    True if and only if a subroutine (JSR) was actually evaluated.

  12. abstract def wasAborted: Boolean

    Returns true if the abstract interpretation was aborted.

  13. abstract val worklist: List[PC]

    The list of instructions that need to be interpreted next.

    The list of instructions that need to be interpreted next. This list is empty if the abstract interpretation succeed.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. lazy val evaluatedInstructions: BitSet

    Returns the information whether an instruction with a specific PC was evaluated at least once.

  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. def stateToString: String

    Textual representation of the state encapsulated by this result.

  16. lazy val subroutinePCs: IntArraySet

    Returns all instructions that belong to a subroutine.

  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wasEvaluated(pc: Int): Boolean

    Returns true if the instruction with the given pc was evaluated at least once.

    Returns true if the instruction with the given pc was evaluated at least once.

    This operation is much more efficient than performing an exists check on the list of evaluated instructions!

    Annotations
    @inline()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped