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 tac

    Common definitions related to the definition and processing of three address code.

    Common definitions related to the definition and processing of three address code.

    Definition Classes
    opalj
  • package fpcf
    Definition Classes
    tac
  • package properties
    Definition Classes
    fpcf
  • package cg
    Definition Classes
    properties
  • Callees
  • CalleesPropertyMetaInformation
  • Callers
  • CallersImplWithOtherCalls
  • CallersImplementation
  • CallersOnlyWithConcreteCallers
  • CallersPropertyMetaInformation
  • CallersWithUnknownContext
  • CallersWithVMLevelCall
  • CallersWithoutUnknownContext
  • CallersWithoutVMLevelCall
  • ConcreteCallees
  • EmptyConcreteCallers
  • InstantiatedTypes
  • InstantiatedTypesPropertyMetaInformation
  • LoadedClasses
  • LoadedClassesMetaInformation
  • NoCallees
  • NoCalleesDueToNotReachableMethod
  • NoCallers
  • NoInstantiatedTypes
  • NoLoadedClasses
  • OnlyCallersWithUnknownContext
  • OnlyVMCallersAndWithUnknownContext
  • OnlyVMLevelCallers
t

org.opalj.tac.fpcf.properties.cg

CallersWithVMLevelCall

sealed trait CallersWithVMLevelCall extends Callers

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CallersWithVMLevelCall
  2. Callers
  3. CallersPropertyMetaInformation
  4. OrderedProperty
  5. Property
  6. PropertyMetaInformation
  7. PropertyKind
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final type Self = Callers

Abstract Value Members

  1. abstract def callContexts(method: DeclaredMethod)(implicit typeIterator: TypeIterator): IterableOnce[(Context, Context, Int, Boolean)]
    Definition Classes
    Callers
  2. abstract def calleeContexts(method: DeclaredMethod)(implicit typeIterator: TypeIterator): IterableOnce[Context]
    Definition Classes
    Callers
  3. abstract def callersForContextId(calleeContextId: Int): LongLinkedSet
    Definition Classes
    Callers
  4. abstract def forNewCalleeContexts(old: Callers, method: DeclaredMethod)(handleContext: (Context) => Unit)(implicit typeIterator: TypeIterator): Unit
    Definition Classes
    Callers
  5. abstract def forNewCallerContexts(old: Callers, method: DeclaredMethod)(handleContext: (Context, Context, Int, Boolean) => Unit)(implicit typeIterator: TypeIterator): Unit
    Definition Classes
    Callers
  6. abstract def hasCallersWithUnknownContext: Boolean
    Definition Classes
    Callers
  7. abstract def isEmpty: Boolean
    Definition Classes
    Callers
  8. abstract def nonEmpty: Boolean
    Definition Classes
    Callers
  9. abstract def size: Int
    Definition Classes
    Callers
  10. abstract def updated(calleeContext: Context, callerContext: Context, pc: Int, isDirect: Boolean): Callers

    Returns a new callers object, containing all callers of this object and a call from caller at program counter pc.

    Returns a new callers object, containing all callers of this object and a call from caller at program counter pc.

    In case, the specified call is already contained, this is returned, i.e. the reference does not change when the of callers set remains unchanged.

    Definition Classes
    Callers
  11. abstract def updatedWithUnknownContext(): Callers
    Definition Classes
    Callers

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. 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
  6. 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
  7. def callers(method: DeclaredMethod)(implicit typeIterator: TypeIterator): IterableOnce[(DeclaredMethod, Int, Boolean)]
    Definition Classes
    Callers
  8. def checkIsEqualOrBetterThan(e: Entity, other: Callers): 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
    CallersOrderedProperty
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. final def hasVMLevelCallers: Boolean
    Definition Classes
    CallersWithVMLevelCallCallers
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. 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
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def isOrderedProperty: Boolean

    Returns true if this property inherits from OrderedProperty.

    Returns true if this property inherits from OrderedProperty.

    Definition Classes
    Property
  18. final def key: PropertyKey[Callers]

    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
    CallersPropertyMetaInformation
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    Callers → AnyRef → Any
  24. final def updatedWithVMLevelCall(): CallersWithVMLevelCall
    Definition Classes
    CallersWithVMLevelCallCallers
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. 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 Callers

Inherited from OrderedProperty

Inherited from Property

Inherited from PropertyKind

Inherited from AnyRef

Inherited from Any

Ungrouped