soot.jimple.infoflow.aliasing.AbstractInteractiveAliasStrategy 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
package soot.jimple.infoflow.aliasing;
import java.util.Set;
import soot.SootMethod;
import soot.Value;
import soot.jimple.Stmt;
import soot.jimple.infoflow.InfoflowManager;
import soot.jimple.infoflow.data.Abstraction;
public abstract class AbstractInteractiveAliasStrategy extends AbstractAliasStrategy {
public AbstractInteractiveAliasStrategy(InfoflowManager manager) {
super(manager);
}
@Override
public void computeAliasTaints
(final Abstraction d1, final Stmt src,
final Value targetValue, Set taintSet,
SootMethod method, Abstraction newAbs) {
// nothing to do here
}
}