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 - org.opalj.bi) that can be used to create arbitrary representations.
    • a library to create a one-to-one in-memory representation of Java bytecode (Bytecode Disassembler - org.opalj.da).
    • a library to convert this representation to Java class files (Bytecode Creator - org.opalj.bc).
    • a library to create a representation of Java bytecode that facilitates writing simple static analyses (Bytecode Representation - org.opalj.br).
    • a library to create a stackless, three-address code representation of Java bytecode that facilitates writing complex static analyses (Three Address Code - org.opalj.tac).
    • 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 (Dependencies Extraction - org.opalj.de) and to facilitate checking architecture definitions (Architecture Validation - org.opalj.av).
    • a library for the lightweight manipulation and creation of Java bytecode (Bytecode Assembler - org.opalj.ba).
    • a library for parsing Android packages (APK - org.opalj.apk).
    • libraries for writing static analyses using the interprocedural finite distributive subset (IFDS - org.opalj.ifds) and interprocedural distributive environment (IDE - org.opal.ide) algorithms.

    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 br

    In this representation of Java bytecode references to a Java class file's constant pool and to attributes are replaced by direct references to the corresponding constant pool entries.

    In this representation of Java bytecode references to a Java class file's constant pool and to attributes are replaced by direct references to the corresponding constant pool entries. This facilitates developing analyses and fosters comprehension.

    Based on the fact that indirect references to constant pool entries are resolved and replaced by direct references this representation is called the resolved representation.

    This representation of Java bytecode is considered as OPAL's standard representation for writing simple Scala based analyses. This representation is engineered such that it facilitates writing analyses that use pattern matching.

    Definition Classes
    opalj
  • package fpcf
    Definition Classes
    br
  • package properties
    Definition Classes
    fpcf
  • package fieldaccess
    Definition Classes
    properties
  • CompleteFieldAccesses
  • DirectFieldAccesses
  • DirectFieldAccessesBase
  • FieldAccessInformation
  • FieldAccessInformationPropertyMetaInformation
  • FieldAccesses
  • FieldReadAccessInformation
  • FieldWriteAccessInformation
  • IncompleteFieldAccesses
  • IndirectFieldAccesses
  • IndirectFieldAccessesBase
  • MethodFieldAccessInformation
  • MethodFieldAccessInformationPropertyMetaInformation
  • MethodFieldReadAccessInformation
  • MethodFieldWriteAccessInformation
  • NoFieldReadAccessInformation
  • NoFieldWriteAccessInformation
  • NoMethodFieldReadAccessInformation
  • NoMethodFieldWriteAccessInformation

case class FieldWriteAccessInformation(encodedDirectAccesses: LongLinkedSet, encodedDirectAccessReceivers: LongMap[AccessReceiver], encodedDirectAccessParameters: LongMap[AccessParameter], encodedIndirectAccesses: LongLinkedSet, encodedIndirectAccessReceivers: LongMap[AccessReceiver], encodedIndirectAccessParameters: LongMap[AccessParameter]) extends FieldAccessInformation[FieldWriteAccessInformation] with FieldAccessInformationPropertyMetaInformation[FieldWriteAccessInformation] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FieldWriteAccessInformation
  2. Serializable
  3. Product
  4. Equals
  5. FieldAccessInformation
  6. FieldAccessInformationPropertyMetaInformation
  7. OrderedProperty
  8. Property
  9. PropertyMetaInformation
  10. PropertyKind
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FieldWriteAccessInformation(encodedDirectAccesses: LongLinkedSet, encodedDirectAccessReceivers: LongMap[AccessReceiver], encodedDirectAccessParameters: LongMap[AccessParameter], encodedIndirectAccesses: LongLinkedSet, encodedIndirectAccessReceivers: LongMap[AccessReceiver], encodedIndirectAccessParameters: LongMap[AccessParameter])

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. def accesses: Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def asOrderedProperty: OrderedProperty

    Returns this if this property inherits from OrderedProperty.

    Returns this if this property inherits from OrderedProperty.

    Used, e.g., by the framework to support debugging analyses.

    Definition Classes
    Property
  7. def bottomness: Int

    Returns a value between zero and 9 which describes how close the value is to its absolute bottom.

    Returns a value between zero and 9 which describes how close the value is to its absolute bottom. Zero means the value is very close to the bottom and 9 means the value is far away from the bottom.

    The default value is "5".

    Definition Classes
    OrderedProperty
  8. def checkIsEqualOrBetterThan(e: Entity, other: Self): Unit

    Tests if this property is equal or better than the given one (better means that the value is above the given value in the underlying lattice.)

    Tests if this property is equal or better than the given one (better means that the value is above the given value in the underlying lattice.)

    Definition Classes
    FieldAccessInformationOrderedProperty
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. def createPropertyKey(propertyName: String, fallbackValue: FieldWriteAccessInformation): PropertyKey[FieldWriteAccessInformation]

    Creates a property key to be associated with every field access property of the respective type.

    Creates a property key to be associated with every field access property of the respective type. The fallback is computed via the fallback reason to ensure an analysis for the information was scheduled.

    Attributes
    protected
    Definition Classes
    FieldAccessInformationPropertyMetaInformation
  11. def directAccesses: Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  12. val encodedDirectAccessParameters: LongMap[AccessParameter]
    Attributes
    protected[this]
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  13. val encodedDirectAccessReceivers: LongMap[AccessReceiver]
    Attributes
    protected[this]
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  14. val encodedDirectAccesses: LongLinkedSet
    Attributes
    protected
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  15. val encodedIndirectAccessParameters: LongMap[AccessParameter]
    Attributes
    protected[this]
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  16. val encodedIndirectAccessReceivers: LongMap[AccessReceiver]
    Attributes
    protected[this]
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  17. val encodedIndirectAccesses: LongLinkedSet
    Attributes
    protected
    Definition Classes
    FieldWriteAccessInformationFieldAccessInformation
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  20. def getEncodedAccessSet[V](accesses: IntMap[IntMap[V]]): LongMap[V]
    Attributes
    protected
    Definition Classes
    FieldAccessInformationPropertyMetaInformation
  21. def getNewestAccesses(newestDirectAccesses: Int, newestIndirectAccesses: Int): Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  22. def getNewestNDirectAccesses(n: Int): Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  23. def getNewestNIndirectAccesses(n: Int): Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  24. final def id: Int

    The id uniquely identifies this property's category.

    The id uniquely identifies this property's category. All property objects of the same kind have to use the same id which is guaranteed since they share the same PropertyKey

    Definition Classes
    PropertyMetaInformationPropertyKind
  25. def included(other: FieldWriteAccessInformation, seenDirectAccesses: Int, seenIndirectAccesses: Int): FieldWriteAccessInformation
  26. def included(other: FieldWriteAccessInformation, seenDirectAccesses: Int, seenIndirectAccesses: Int, propertyFactory: (LongLinkedSet, LongMap[AccessReceiver], LongMap[AccessParameter], LongLinkedSet, LongMap[AccessReceiver], LongMap[AccessParameter]) => FieldWriteAccessInformation): FieldWriteAccessInformation
    Attributes
    protected
    Definition Classes
    FieldAccessInformation
  27. def indirectAccesses: Iterator[(Int, PC, AccessReceiver, AccessParameter)]
    Definition Classes
    FieldAccessInformation
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def isOrderedProperty: Boolean

    Returns true if this property inherits from OrderedProperty.

    Returns true if this property inherits from OrderedProperty.

    Definition Classes
    Property
  30. final def key: PropertyKey[FieldWriteAccessInformation]

    The key uniquely identifies this property's category.

    The key uniquely identifies this property's category. All property objects of the same kind have to use the same key.

    In general each Property kind is expected to have a companion object that stores the unique PropertyKey.

    Definition Classes
    FieldWriteAccessInformationPropertyMetaInformation
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  34. def numAccesses: Int
    Definition Classes
    FieldAccessInformation
  35. def numDirectAccesses: Int
    Definition Classes
    FieldAccessInformation
  36. def numIndirectAccesses: Int
    Definition Classes
    FieldAccessInformation
  37. def productElementNames: Iterator[String]
    Definition Classes
    Product
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. 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
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from OrderedProperty

Inherited from Property

Inherited from PropertyKind

Inherited from AnyRef

Inherited from Any

Ungrouped