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. lazy val evaluatedInstructions: BitSet

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

  2. def stateToString: String

    Textual representation of the state encapsulated by this result.

  3. lazy val subroutinePCs: IntArraySet

    Returns all instructions that belong to a subroutine.

  4. 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()