Packages

o

org.opalj.tac.fpcf.analyses.cg

AllocationsUtil

object AllocationsUtil

Source
AllocationsUtil.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllocationsUtil
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def continuationForAllocation[DataType, ContextType <: Context](eps: SomeEPS, context: ContextType, value: (DataType) => (V, Array[Stmt[V]]), dataType: (Entity) => Boolean, failure: (DataType) => Unit)(process: (DataType, ContextType, Int, Array[Stmt[V]]) => Unit)(implicit typeIterator: TypeIterator, state: TypeIteratorState, ps: PropertyStore): Unit

    Provides an easy way to handle updates to allocation sites dependees registered by the methods in this class.

    Provides an easy way to handle updates to allocation sites dependees registered by the methods in this class. This method handles dependencies where the depender satisfies the dataType predicate (beware of type erasure!). It is of utmost importance to handle all possible dependencies to ensure termination!

  2. def handleAllocation[ContextType <: Context](allocationContext: ContextType, allocationPC: Int, data: AnyRef, failure: () => Unit)(process: (ContextType, Int, Array[Stmt[V]]) => Unit)(implicit state: TypeIteratorState, ps: PropertyStore): Unit

    Processes a single allocation site in a given context method.

  3. def handleAllocations[ContextType <: Context](value: V, context: ContextType, depender: Entity, stmts: Array[Stmt[V]], typeFilter: (ReferenceType) => Boolean, failure: () => Unit)(process: (ContextType, Int, Array[Stmt[V]]) => Unit)(implicit typeIterator: TypeIterator, state: TypeIteratorState, ps: PropertyStore): Unit

    Processes allocation sites for a given local variable.

    Processes allocation sites for a given local variable. Clients MUST handle dependencies where the depender is the given one and the dependee provides further allocation sites.