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 cg
    Definition Classes
    tac
  • AllocationSiteBasedPointsToCallGraphKey
  • CFA_1_0_CallGraphKey
  • CFA_1_1_CallGraphKey
  • CHACallGraphKey
  • CTACallGraphKey
  • CallGraph
  • CallGraphKey
  • CallGraphSerializer
  • FTACallGraphKey
  • MTACallGraphKey
  • PropagationBasedCallGraphKey
  • RTACallGraphKey
  • TypeBasedPointsToCallGraphKey
  • TypeIteratorKey
  • XTACallGraphKey
  • package common
    Definition Classes
    tac
  • package fpcf
    Definition Classes
    tac

package cg

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class CallGraph extends AnyRef

    The proxy class for all call-graph related properties.

    The proxy class for all call-graph related properties. All information will be queried from the property store (org.opalj.fpcf.PropertyStore), therefore, all values for Callees and Callers in the property store must be final when instantiating this class.

  2. trait CallGraphKey extends ProjectInformationKey[CallGraph, Nothing]

    An abstract org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph.

    An abstract org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph. Uses the call graph analyses modules specified in the config file under the key "org.opalj.tac.cg.CallGraphKey.modules".

  3. trait PropagationBasedCallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on Tip and Palsberg's propagation-based algorithms.

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on Tip and Palsberg's propagation-based algorithms.

    See also

    CallGraphKey for further details. If the org.opalj.br.analyses.cg.LibraryEntryPointsFinder is scheduled the analysis will schedule org.opalj.tac.fpcf.analyses.cg.xta.LibraryInstantiatedTypesBasedEntryPointsAnalysis. Note, that initial instantiated types (org.opalj.br.analyses.cg.InitialInstantiatedTypesKey) and entry points (org.opalj.br.analyses.cg.InitialEntryPointsKey) can be configured before hand. Furthermore, you can configure the analysis mode (Library or Application) in the configuration of these keys.

Value Members

  1. object AllocationSiteBasedPointsToCallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    See also

    CallGraphKey for further details.

  2. object CFA_1_0_CallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    See also

    CallGraphKey for further details.

  3. object CFA_1_1_CallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    See also

    CallGraphKey for further details.

  4. object CHACallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on class hierarchy analysis (CHA).

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on class hierarchy analysis (CHA).

    See also

    CallGraphKey for further details.

  5. object CTACallGraphKey extends PropagationBasedCallGraphKey
  6. object CallGraphKey extends ProjectInformationKey[CallGraph, CallGraph]
  7. object CallGraphSerializer

    Provides the functionality to serialize a CallGraph into a .json file according to the format required by the JCG (https://bitbucket.org/delors/jcg) project.

  8. object FTACallGraphKey extends PropagationBasedCallGraphKey
  9. object MTACallGraphKey extends PropagationBasedCallGraphKey
  10. object RTACallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on rapid type analysis (RTA).

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on rapid type analysis (RTA).

    See also

    CallGraphKey for further details. If the org.opalj.br.analyses.cg.LibraryEntryPointsFinder is scheduled the analysis will schedule org.opalj.tac.fpcf.analyses.cg.xta.LibraryInstantiatedTypesBasedEntryPointsAnalysis. Note, that initial instantiated types (org.opalj.br.analyses.cg.InitialInstantiatedTypesKey) and entry points (org.opalj.br.analyses.cg.InitialEntryPointsKey) can be configured before hand. Furthermore, you can configure the analysis mode (Library or Application) in the configuration of these keys.

  11. object TypeBasedPointsToCallGraphKey extends CallGraphKey

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    A org.opalj.br.analyses.ProjectInformationKey to compute a CallGraph based on the points-to analysis.

    See also

    CallGraphKey for further details.

  12. object TypeIteratorKey extends ProjectInformationKey[TypeIterator, () => TypeIterator]

    An org.opalj.br.analyses.ProjectInformationKey to get the TypeIterator used to compute the current project's call graph.

    An org.opalj.br.analyses.ProjectInformationKey to get the TypeIterator used to compute the current project's call graph. This key is intended to be set up by a corresponding org.opalj.tac.cg.CallGraphKey.

  13. object XTACallGraphKey extends PropagationBasedCallGraphKey

Ungrouped