Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package opalj

    OPAL is a Scala-based framework for the static analysis, manipulation and creation of Java bytecode.

    OPAL is a Scala-based framework for the static analysis, manipulation and creation of Java bytecode. OPAL is designed with performance, scalability and adaptability in mind.

    Its main components are:

    • a library (Common) which provides generally useful data-structures and algorithms for static analyses.
    • a framework for implementing lattice based static analyses (Static Analysis Infrastructure)
    • a framework for parsing Java bytecode (Bytecode Infrastructure) that can be used to create arbitrary representations.
    • a library to create a one-to-one in-memory representation of Java bytecode (Bytecode Disassembler).
    • a library to create a representation of Java bytecode that facilitates writing simple static analyses (Bytecode Representation - org.opalj.br).
    • a scalable, easily customizable framework for the abstract interpretation of Java bytecode (Abstract Interpretation Framework - org.opalj.ai).
    • a library to extract dependencies between code elements and to facilitate checking architecture definitions.
    • a library for the lightweight manipulation and creation of Java bytecode (Bytecode Assembler).

    General Design Decisions

    Thread Safety

    Unless explicitly noted, OPAL is thread safe. I.e., the classes defined by OPAL can be considered to be thread safe unless otherwise stated. (For example, it is possible to read and process class files concurrently without explicit synchronization on the client side.)

    No null Values

    Unless explicitly noted, OPAL does not null values I.e., fields that are accessible will never contain null values and methods will never return null. If a method accepts null as a value for a parameter or returns a null value it is always explicitly documented. In general, the behavior of methods that are passed null values is undefined unless explicitly documented.

    No Typecasts for Collections

    For efficiency reasons, OPAL sometimes uses mutable data-structures internally. After construction time, these data-structures are generally represented using their generic interfaces (e.g., scala.collection.{Set,Map}). However, a downcast (e.g., to add/remove elements) is always forbidden as it would effectively prevent thread-safety.

    Assertions

    OPAL makes heavy use of Scala's Assertion Facility to facilitate writing correct code. Hence, for production builds (after thorough testing(!)) it is highly recommend to build OPAL again using -Xdisable-assertions.

    Definition Classes
    org
  • package ai

    Implementation of an abstract interpretation (ai) framework – also referred to as OPAL.

    Implementation of an abstract interpretation (ai) framework – also referred to as OPAL.

    Please note that OPAL/the abstract interpreter just refers to the classes and traits defined in this package (ai). The classes and traits defined in the sub-packages (in particular in domain) are not considered to be part of the core of OPAL/the abstract interpreter.

    Definition Classes
    opalj
    Note

    This framework assumes that the analyzed bytecode is valid; i.e., the JVM's bytecode verifier would be able to verify the code. Furthermore, load-time errors (e.g., LinkageErrors) are – by default – completely ignored to facilitate the analysis of parts of a project. In general, if the presented bytecode is not valid, the result is undefined (i.e., OPAL may report meaningless results, crash or run indefinitely).

    See also

    org.opalj.ai.AI - Implements the abstract interpreter that processes a methods code and uses an analysis-specific domain to perform the abstract computations.

    org.opalj.ai.Domain - The core interface between the abstract interpretation framework and the abstract domain that is responsible for performing the abstract computations.

  • package fpcf
    Definition Classes
    ai
  • package domain
    Definition Classes
    fpcf
  • L1DefaultDomainWithCFGAndDefUseAndSignatureRefinement
  • MethodCallsDomainWithMethodLockup
  • PrimitiveTACAIDomainWithSignatureRefinement
  • PropertyStoreBased
  • RefinedTypeLevelFieldAccessInstructions
  • RefinedTypeLevelInvokeInstructions
t

org.opalj.ai.fpcf.domain

RefinedTypeLevelFieldAccessInstructions

trait RefinedTypeLevelFieldAccessInstructions extends TypeLevelFieldAccessInstructions with PropertyStoreBased

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RefinedTypeLevelFieldAccessInstructions
  2. PropertyStoreBased
  3. TheProject
  4. LogContextProvider
  5. ThePropertyStore
  6. TypeLevelFieldAccessInstructions
  7. FieldAccessesDomain
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val UsedPropertiesBound: SinglePropertiesBoundType

    The type of the bound of the properties that are used.

    The type of the bound of the properties that are used.

    Definition Classes
    PropertyStoreBased
    Note

    We are restricted to SinglePropertiesBoundType to facilitate matching the bounds.

  2. abstract val dependees: EOptionPSet[Entity, Property]
    Definition Classes
    PropertyStoreBased
  3. implicit abstract def project: SomeProject

    Returns the project that is currently analyzed.

    Returns the project that is currently analyzed.

    Definition Classes
    TheProject

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. implicit final def classHierarchy: ClassHierarchy

    Returns the project's class hierarchy.

    Returns the project's class hierarchy.

    Definition Classes
    TheProject
    Annotations
    @inline()
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. def doGetfield(pc: Int, objectref: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, fieldValue: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue): Computation[(RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, (RefinedTypeLevelFieldAccessInstructions.this)#ExceptionValue]
  8. def doGetstatic(pc: Int, fieldValue: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue): Computation[(RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, Nothing]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def getfield(pc: PC, objectref: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, declaringClass: ObjectType, fieldName: String, fieldType: FieldType): Computation[(RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, (RefinedTypeLevelFieldAccessInstructions.this)#ExceptionValue]

    Returns the field's value and/or a new NullPointerException if the given objectref represents the value null.

    Returns the field's value and/or a new NullPointerException if the given objectref represents the value null.

    returns

    The field's value or a new NullPointerException.

    Definition Classes
    RefinedTypeLevelFieldAccessInstructionsTypeLevelFieldAccessInstructionsFieldAccessesDomain
  13. def getstatic(pc: PC, declaringClass: ObjectType, fieldName: String, fieldType: FieldType): Computation[(RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, Nothing]

    Returns the field's value.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. implicit final def logContext: LogContext
    Definition Classes
    TheProjectLogContextProvider
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. implicit final lazy val propertyStore: PropertyStore
    Definition Classes
    TheProjectThePropertyStore
  21. def putfield(pc: Int, objectref: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, value: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, declaringClass: ObjectType, fieldName: String, fieldType: FieldType): Computation[Nothing, (RefinedTypeLevelFieldAccessInstructions.this)#ExceptionValue]

    Sets the field's value if the given objectref is not null(in the Domain).

    Sets the field's value if the given objectref is not null(in the Domain). In the latter case a NullPointerException is thrown.

    Definition Classes
    TypeLevelFieldAccessInstructionsFieldAccessesDomain
  22. def putstatic(pc: Int, value: (RefinedTypeLevelFieldAccessInstructions.this)#DomainValue, declaringClass: ObjectType, fieldName: String, fieldType: FieldType): Computation[Nothing, Nothing]

    Sets the field's value.

    Sets the field's value.

    Definition Classes
    TypeLevelFieldAccessInstructionsFieldAccessesDomain
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def usesProperties: Set[PropertyKind]

    The properties potentially queried by this domain.

    The properties potentially queried by this domain. I.e., it must list all properties that are potentially queried by any instance.

    This method must call its super method and accumulate the results (we have stackable traits!).

    Definition Classes
    RefinedTypeLevelFieldAccessInstructionsPropertyStoreBased
  26. final def usesPropertyBounds: Set[PropertyBounds]
    Definition Classes
    PropertyStoreBased
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from PropertyStoreBased

Inherited from TheProject

Inherited from LogContextProvider

Inherited from ThePropertyStore

Inherited from FieldAccessesDomain

Inherited from AnyRef

Inherited from Any

Ungrouped