soot.jimple.infoflow.solver.memory.IMemoryManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
The newest version!
package soot.jimple.infoflow.solver.memory;
/**
* Common interface of all memory managers that can be used with FlowDroid's
* solvers. Note that not every solver is required to support memory managers.
*
* @author Steven Arzt
*
*/
public interface IMemoryManager {
/**
* Tells the memory manager to handle the given object. Implementations are
* free to replace the incoming object with a different reference.
* @param obj The object to handle
* @return The new reference that shall be used instead of the old one
*/
public D handleMemoryObject(D obj);
/**
* Tells the memory manager to optimize the given generated object. The
* output was computed from the input object using a flow function.
* @param input The original input to the flow function
* @param output The output of the flow function
* @return The new refrence to use instead of the original output
*/
public D handleGeneratedMemoryObject(D input, D output);
/**
* Checks whether the given abstraction at the given call site is essential
* and must be kept. Non-essential taint abstractions will not be registered
* as neighbors for join points if the "single join point abstraction" option
* is enabled
* @param abs The abstraction
* @param relatedCallSite The call site over which the abstraction is being
* propagated
* @return True if the abstraction is essential and must be kept, otherwise
* false
*/
public boolean isEssentialJoinPoint(D abs, N relatedCallSite);
}