![JAR search and dependency download from the Maven repository](/logo.png)
soot.jimple.infoflow.ipc.IIPCManager 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
/*******************************************************************************
* Copyright (c) 2012 Secure Software Engineering Group at EC SPRIDE.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Contributors: Christian Fritz, Steven Arzt, Siegfried Rasthofer, Eric
* Bodden, and others.
******************************************************************************/
package soot.jimple.infoflow.ipc;
import heros.InterproceduralCFG;
import soot.SootMethod;
import soot.Unit;
import soot.jimple.Stmt;
public interface IIPCManager {
/**
* determines if a method called by the Stmt is an IPC method or not
* @param sCallSite a Stmt which should include an invokeExrp calling a method
* @param cfg the interprocedural controlflow graph
* @return true if source method is called
*/
public abstract boolean isIPC(Stmt sCallSite, InterproceduralCFG cfg);
public abstract void updateJimpleForICC();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy