Packages

c

org.opalj.ai

AIAborted

sealed abstract class AIAborted extends AIResult

Encapsulates the intermediate result of an aborted abstract interpretation of a method.

Source
AIResult.scala
Linear Supertypes
AIResult, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AIAborted
  2. AIResult
  3. AnyRef
  4. 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.

    Definition Classes
    AIResult
    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.

    The code for which the abstract interpretation was performed.

    Definition Classes
    AIResult
  3. abstract def continueInterpretation(ai: AI[_ >: domain.type]): AIResult
  4. abstract val domain: Domain

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

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

    Definition Classes
    AIResult
  5. abstract val evaluatedPCs: IntArrayStack

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

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

    Definition Classes
    AIResult
  6. abstract val liveVariables: LiveVariables

    The set of statically known live Variables.

    The set of statically known live Variables.

    Definition Classes
    AIResult
  7. 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).

    Definition Classes
    AIResult
  8. 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.

    Definition Classes
    AIResult
  9. 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).

    Definition Classes
    AIResult
  10. 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).

    Definition Classes
    AIResult
    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 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).

    Definition Classes
    AIResult
    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.

  12. abstract val subroutinesWereEvaluated: Boolean

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

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

    Definition Classes
    AIResult
  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.

    Definition Classes
    AIResult

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.

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

    Definition Classes
    AIResult
  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.

    Textual representation of the state encapsulated by this result.

    Definition Classes
    AIAbortedAIResult
  16. lazy val subroutinePCs: IntArraySet

    Returns all instructions that belong to a subroutine.

    Returns all instructions that belong to a subroutine.

    Definition Classes
    AIResult
  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. def wasAborted: Boolean

    Returns true if the abstract interpretation was aborted.

    Returns true if the abstract interpretation was aborted.

    Definition Classes
    AIAbortedAIResult
  23. 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!

    Definition Classes
    AIResult
    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 AIResult

Inherited from AnyRef

Inherited from Any

Ungrouped