| Package | Description |
|---|---|
| soot |
Base Soot classes, shared by different intermediate representations.
|
| soot.coffi |
Contains classes from the Coffi tool, by Clark Verbrugge.
|
| soot.jimple |
Public classes for the Jimple intermediate representation.
|
| soot.jimple.internal |
Internal, messy, implementation-specific classes for the Jimple intermediate representation.
|
| soot.jimple.toolkits.annotation.arraycheck |
Classes that carry out an analysis to determine whether or not array bounds
checks are necessary.
|
| soot.jimple.toolkits.annotation.callgraph | |
| soot.jimple.toolkits.annotation.purity | |
| soot.jimple.toolkits.base |
A toolkit to optimize the Jimple IR.
|
| soot.jimple.toolkits.callgraph | |
| soot.jimple.toolkits.infoflow | |
| soot.jimple.toolkits.pointer | |
| soot.jimple.toolkits.pointer.nativemethods | |
| soot.jimple.toolkits.pointer.util | |
| soot.jimple.toolkits.reflection | |
| soot.jimple.toolkits.scalar |
A toolkit for scalar optimization of Jimple.
|
| soot.toolkits.graph |
Toolkit to produce and manipulate various types of control flow
graphs.
|
| soot.toolkits.graph.interaction | |
| soot.toolkits.graph.pdg |
| Modifier and Type | Field and Description |
|---|---|
protected SootMethod |
Body.method
The method associated with this Body.
|
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<SootMethod> |
SootClass.methodList |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
Scene.getMainMethod() |
SootMethod |
Body.getMethod()
Returns the method associated with this Body.
|
SootMethod |
SootClass.getMethod(NumberedString subsignature) |
SootMethod |
SootClass.getMethod(java.lang.String subsignature) |
SootMethod |
Scene.getMethod(java.lang.String methodSignature) |
SootMethod |
SootClass.getMethod(java.lang.String name,
java.util.List parameterTypes)
Attempts to retrieve the method with the given name and parameters.
|
SootMethod |
SootClass.getMethod(java.lang.String name,
java.util.List parameterTypes,
Type returnType) |
SootMethod |
SootClass.getMethodByName(java.lang.String name)
Attempts to retrieve the method with the given name.
|
SootMethod |
SootMethod.method() |
SootMethod |
MethodOrMethodContext.method() |
SootMethod |
MethodContext.method() |
SootMethod |
SootMethodRef.resolve() |
SootMethod |
Hierarchy.resolveConcreteDispatch(SootClass concreteType,
SootMethod m)
Given an object of actual type C (o = new C()), returns the method which will be called
on an o.f() invocation.
|
SootMethod |
FastHierarchy.resolveConcreteDispatch(SootClass concreteType,
SootMethod m)
Given an object of actual type C (o = new C()), returns the method which will be called
on an o.f() invocation.
|
SootMethod |
Hierarchy.resolveSpecialDispatch(SpecialInvokeExpr ie,
SootMethod container)
Returns the target for the given SpecialInvokeExpr.
|
SootMethod |
FastHierarchy.resolveSpecialDispatch(SpecialInvokeExpr ie,
SootMethod container)
Returns the target for the given SpecialInvokeExpr.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<SootMethod> |
EntryPoints.all()
Returns all the entry points.
|
java.util.List<SootMethod> |
EntryPoints.allInits()
Returns a list of all constructors.
|
java.util.List<SootMethod> |
EntryPoints.application()
Returns only the application entry points, not including entry points
invoked implicitly by the VM.
|
java.util.List<SootMethod> |
EntryPoints.clinits()
Returns a list of all static initializers.
|
java.util.List<SootMethod> |
EntryPoints.clinitsOf(SootClass cl)
Returns a list of all clinits of class cl and its superclasses.
|
java.util.List<SootMethod> |
Scene.getEntryPoints()
Get the set of entry points that are used to build the call graph.
|
java.util.List<SootMethod> |
SootClass.getMethods() |
java.util.List<SootMethod> |
EntryPoints.implicit()
Returns only the entry points invoked implicitly by the VM.
|
java.util.List<SootMethod> |
EntryPoints.inits()
Returns a list of all constructors taking no arguments.
|
java.util.List<SootMethod> |
EntryPoints.mainsOfApplicationClasses()
Returns a list of all concrete main(String[]) methods of all
application classes.
|
java.util.Iterator<SootMethod> |
SootClass.methodIterator()
Returns an iterator over the methods in this class.
|
java.util.List<SootMethod> |
EntryPoints.methodsOfApplicationClasses()
Returns a list of all concrete methods of all application classes.
|
java.util.Set<SootMethod> |
FastHierarchy.resolveAbstractDispatch(SootClass abstractType,
SootMethod m)
Given an object of declared type C, returns the methods which could
be called on an o.f() invocation.
|
java.util.Collection<SootMethod> |
FastHierarchy.resolveConcreteDispatch(java.util.Collection concreteTypes,
SootMethod m,
RefType declaredTypeOfBase) |
java.util.Collection<SootMethod> |
FastHierarchy.resolveConcreteDispatchWithoutFailing(java.util.Collection concreteTypes,
SootMethod m,
RefType declaredTypeOfBase) |
| Modifier and Type | Method and Description |
|---|---|
void |
SootClass.addMethod(SootMethod m)
Adds the given method to this class.
|
java.util.List |
MethodToContexts.get(SootMethod m) |
Body |
UnknownMethodSource.getBody(SootMethod m,
java.lang.String phaseName) |
Body |
MethodSource.getBody(SootMethod m,
java.lang.String phaseName)
Returns a filled-out body for the given SootMethod.
|
boolean |
Hierarchy.isVisible(SootClass from,
SootMethod m)
Returns true if the method m is visible from code in the class from.
|
void |
SideEffectTester.newMethod(SootMethod m) |
void |
SootClass.removeMethod(SootMethod m)
Removes the given method from this class.
|
java.util.List |
Hierarchy.resolveAbstractDispatch(java.util.List classes,
SootMethod m)
Returns a list of possible targets for the given method and set of receiver types.
|
java.util.List |
Hierarchy.resolveAbstractDispatch(SootClass c,
SootMethod m)
Given an abstract dispatch to an object of type c and a method m, gives
a list of possible receiver methods.
|
java.util.Set<SootMethod> |
FastHierarchy.resolveAbstractDispatch(SootClass abstractType,
SootMethod m)
Given an object of declared type C, returns the methods which could
be called on an o.f() invocation.
|
java.util.Collection<SootMethod> |
FastHierarchy.resolveConcreteDispatch(java.util.Collection concreteTypes,
SootMethod m,
RefType declaredTypeOfBase) |
java.util.List |
Hierarchy.resolveConcreteDispatch(java.util.List classes,
SootMethod m)
Given a set of definite receiver types, returns a list of possible targets.
|
SootMethod |
Hierarchy.resolveConcreteDispatch(SootClass concreteType,
SootMethod m)
Given an object of actual type C (o = new C()), returns the method which will be called
on an o.f() invocation.
|
SootMethod |
FastHierarchy.resolveConcreteDispatch(SootClass concreteType,
SootMethod m)
Given an object of actual type C (o = new C()), returns the method which will be called
on an o.f() invocation.
|
java.util.Collection<SootMethod> |
FastHierarchy.resolveConcreteDispatchWithoutFailing(java.util.Collection concreteTypes,
SootMethod m,
RefType declaredTypeOfBase) |
SootMethod |
Hierarchy.resolveSpecialDispatch(SpecialInvokeExpr ie,
SootMethod container)
Returns the target for the given SpecialInvokeExpr.
|
SootMethod |
FastHierarchy.resolveSpecialDispatch(SpecialInvokeExpr ie,
SootMethod container)
Returns the target for the given SpecialInvokeExpr.
|
void |
Body.setMethod(SootMethod method)
Sets the method associated with this Body.
|
static MethodOrMethodContext |
MethodContext.v(SootMethod method,
Context context) |
| Modifier and Type | Method and Description |
|---|---|
void |
Scene.setEntryPoints(java.util.List<SootMethod> entryPoints)
Change the set of entry point methods used to build the call graph.
|
| Constructor and Description |
|---|
Body(SootMethod m)
Creates a Body associated to the given method.
|
| Modifier and Type | Field and Description |
|---|---|
SootMethod |
method_info.jmethod |
| Modifier and Type | Field and Description |
|---|---|
static java.util.HashMap<SootMethod,int[]> |
CFG.methodsToVEM |
| Modifier and Type | Method and Description |
|---|---|
Body |
CoffiMethodSource.getBody(SootMethod m,
java.lang.String phaseName) |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
InvokeExpr.getMethod() |
| Modifier and Type | Method and Description |
|---|---|
JimpleBody |
Jimple.newBody(SootMethod m)
Returns an empty JimpleBody associated with method m.
|
void |
NaiveSideEffectTester.newMethod(SootMethod m) |
| Constructor and Description |
|---|
StmtBody(SootMethod m)
Creates a StmtBody associated with the given method.
|
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
JDynamicInvokeExpr.getBootstrapMethod() |
SootMethod |
AbstractInvokeExpr.getMethod() |
| Modifier and Type | Method and Description |
|---|---|
void |
ClassFieldAnalysis.ScanMethod(SootMethod method,
java.util.Set<SootField> candidates,
java.util.Hashtable<SootField,soot.jimple.toolkits.annotation.arraycheck.IntValueContainer> fieldinfo) |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
CallGraphInfo.getCenter() |
SootMethod |
CallGraphGrapher.getNextMethod() |
SootMethod |
MethInfo.method() |
| Modifier and Type | Method and Description |
|---|---|
void |
MethInfo.method(SootMethod m) |
void |
CallGraphInfo.setCenter(SootMethod sm) |
void |
CallGraphGrapher.setNextMethod(SootMethod m) |
| Constructor and Description |
|---|
CallGraphInfo(SootMethod sm,
java.util.ArrayList<MethInfo> outputs,
java.util.ArrayList<MethInfo> inputs) |
MethInfo(SootMethod meth,
boolean b,
Kind kind) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
PurityInterproceduralAnalysis.analyseMethod(SootMethod method,
java.lang.Object dst) |
protected abstract void |
AbstractInterproceduralAnalysis.analyseMethod(SootMethod method,
java.lang.Object dst)
Compute the summary for a method by analysing its body.
|
static PurityGraph |
PurityGraph.conservativeGraph(SootMethod m,
boolean withEffect)
Conservative constructor for unanalysable calls.
|
static PurityGraph |
PurityGraph.freshGraph(SootMethod m)
Special constructor for "pure" methods returning a fresh object.
|
java.lang.Object |
AbstractInterproceduralAnalysis.getSummaryFor(SootMethod m)
Query the analysis result.
|
protected java.lang.Object |
PurityInterproceduralAnalysis.summaryOfUnanalysedMethod(SootMethod method) |
protected abstract java.lang.Object |
AbstractInterproceduralAnalysis.summaryOfUnanalysedMethod(SootMethod method)
Whenever the analyse requires the summary of a method you filtered-out,
this function is called instead of analyseMethod.
|
boolean |
SootMethodFilter.want(SootMethod m) |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
ExceptionCheckerError.method() |
| Modifier and Type | Method and Description |
|---|---|
void |
ExceptionCheckerError.method(SootMethod sm) |
| Constructor and Description |
|---|
ExceptionCheckerError(SootMethod m,
SootClass sc,
Stmt s,
SourceLnPosTag pos) |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.HashSet<SootMethod> |
OnFlyCallGraphBuilder.DefaultReflectionModel.warnedAlready |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
VirtualCallSite.container() |
SootMethod |
VirtualCalls.resolveNonSpecial(RefType t,
NumberedString subSig) |
SootMethod |
VirtualCalls.resolveSpecial(SpecialInvokeExpr iie,
NumberedString subSig,
SootMethod container) |
SootMethod |
Edge.src() |
SootMethod |
ContextSensitiveEdge.src()
The method in which the call occurs; may be null for calls not
occurring in a specific method (eg.
|
SootMethod |
Edge.tgt() |
SootMethod |
ContextSensitiveEdge.tgt()
The target method of the call edge.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<SootMethod> |
TopologicalOrderer.order() |
| Modifier and Type | Method and Description |
|---|---|
void |
OneCFAContextManager.addStaticEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind) |
void |
ObjSensContextManager.addStaticEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind) |
void |
ContextManager.addStaticEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind) |
void |
ContextInsensitiveContextManager.addStaticEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind) |
void |
OneCFAContextManager.addVirtualEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind,
Context typeContext) |
void |
ObjSensContextManager.addVirtualEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind,
Context typeContext) |
void |
ContextManager.addVirtualEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind,
Context typeContext) |
void |
ContextInsensitiveContextManager.addVirtualEdge(MethodOrMethodContext src,
Unit srcUnit,
SootMethod target,
Kind kind,
Context typeContext) |
void |
ReflectionModel.classForName(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.DefaultReflectionModel.classForName(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.TraceBasedReflectionModel.classForName(SootMethod container,
Stmt forNameInvokeStmt)
Adds an edge to all class initializers of all possible receivers
of Class.forName() calls within source.
|
void |
ReflectionModel.classNewInstance(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.DefaultReflectionModel.classNewInstance(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.TraceBasedReflectionModel.classNewInstance(SootMethod container,
Stmt newInstanceInvokeStmt)
Adds an edge to the constructor of the target class from this call to
Class.newInstance(). |
void |
ReflectionModel.contructorNewInstance(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.DefaultReflectionModel.contructorNewInstance(SootMethod source,
Stmt s) |
void |
OnFlyCallGraphBuilder.TraceBasedReflectionModel.contructorNewInstance(SootMethod container,
Stmt newInstanceInvokeStmt)
Adds a special edge of kind
Kind.REFL_CONSTR_NEWINSTANCE to all possible target constructors
of this call to Constructor.newInstance(Object...). |
java.util.Iterator |
ContextSensitiveCallGraph.edgesInto(Context tgtCtxt,
SootMethod tgt)
Returns all ContextSensitiveEdge's into method tgt in context tgtCtxt.
|
java.util.Iterator |
ContextSensitiveCallGraph.edgesOutOf(Context srcCtxt,
SootMethod src)
Returns all ContextSensitiveEdge's out of method src
in context srcCtxt.
|
java.util.Iterator |
ContextSensitiveCallGraph.edgesOutOf(Context srcCtxt,
SootMethod src,
Unit srcUnit)
Returns all ContextSensitiveEdge's out of unit srcUnit in method src
in context srcCtxt.
|
Edge |
CallGraph.findEdge(Unit u,
SootMethod callee)
Find the specific call edge that is going out from the callsite u and the call target is callee.
|
boolean |
CallGraph.isEntryMethod(SootMethod method)
Does this method have no incoming edge?
|
void |
ReflectionModel.methodInvoke(SootMethod container,
Stmt invokeStmt) |
void |
OnFlyCallGraphBuilder.DefaultReflectionModel.methodInvoke(SootMethod container,
Stmt invokeStmt) |
void |
OnFlyCallGraphBuilder.TraceBasedReflectionModel.methodInvoke(SootMethod container,
Stmt invokeStmt)
Adds a special edge of kind
Kind.REFL_INVOKE to all possible target methods
of this call to Method.invoke(Object, Object...). |
void |
VirtualCalls.resolve(Type t,
Type declaredType,
NumberedString subSig,
SootMethod container,
ChunkedQueue targets) |
void |
VirtualCalls.resolve(Type t,
Type declaredType,
Type sigType,
NumberedString subSig,
SootMethod container,
ChunkedQueue targets) |
SootMethod |
VirtualCalls.resolveSpecial(SpecialInvokeExpr iie,
NumberedString subSig,
SootMethod container) |
| Constructor and Description |
|---|
VirtualCallSite(Stmt stmt,
SootMethod container,
InstanceInvokeExpr iie,
NumberedString subSig,
Kind kind) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<SootMethod> |
LocalObjectsAnalysis.getAllMethodsForClass(SootClass sootClass) |
static java.util.List<SootMethod> |
ClassLocalObjectsAnalysis.getAllReachableMethods(SootClass sc) |
java.util.List<SootMethod> |
UseFinder.getExtMethods(SootClass sc) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
CallChain.containsMethod(SootMethod sm) |
CallLocalityContext |
ClassLocalObjectsAnalysis.getContextFor(SootMethod sm) |
protected MutableDirectedGraph |
InfoFlowAnalysis.getInvokeAbbreviatedInfoFlowGraph(InvokeExpr ie,
SootMethod context) |
protected HashMutableDirectedGraph |
InfoFlowAnalysis.getInvokeInfoFlowSummary(InvokeExpr ie,
Stmt is,
SootMethod context) |
CallLocalityContext |
ClassLocalObjectsAnalysis.getMergedContext(SootMethod method) |
SmartMethodInfoFlowAnalysis |
InfoFlowAnalysis.getMethodInfoFlowAnalysis(SootMethod sm) |
SmartMethodInfoFlowAnalysis |
ClassInfoFlowAnalysis.getMethodInfoFlowAnalysis(SootMethod method) |
HashMutableDirectedGraph |
InfoFlowAnalysis.getMethodInfoFlowSummary(SootMethod sm)
Returns a BACKED MutableDirectedGraph whose nodes are EquivalentValue
wrapped Refs.
|
MutableDirectedGraph |
ClassInfoFlowAnalysis.getMethodInfoFlowSummary(SootMethod method) |
HashMutableDirectedGraph |
InfoFlowAnalysis.getMethodInfoFlowSummary(SootMethod sm,
boolean doFullAnalysis) |
HashMutableDirectedGraph |
ClassInfoFlowAnalysis.getMethodInfoFlowSummary(SootMethod method,
boolean doFullAnalysis) |
SmartMethodLocalObjectsAnalysis |
ClassLocalObjectsAnalysis.getMethodLocalObjectsAnalysis(SootMethod sm) |
CallChain |
LocalObjectsAnalysis.getNextCallChainBetween(ReachableMethods rm,
SootMethod start,
SootMethod end,
Edge endToPath,
CallChain path,
java.util.List previouslyFound) |
CallChain |
LocalObjectsAnalysis.getNextCallChainBetween(SootMethod start,
SootMethod goal,
java.util.List previouslyFound) |
static EquivalentValue |
InfoFlowAnalysis.getNodeForFieldRef(SootMethod sm,
SootField sf)
Returns an unmodifiable list of EquivalentValue wrapped Refs that sink
flows from when method sm is called.
|
static EquivalentValue |
InfoFlowAnalysis.getNodeForFieldRef(SootMethod sm,
SootField sf,
Local realLocal) |
static EquivalentValue |
InfoFlowAnalysis.getNodeForParameterRef(SootMethod sm,
int i) |
static EquivalentValue |
InfoFlowAnalysis.getNodeForReturnRef(SootMethod sm) |
static EquivalentValue |
InfoFlowAnalysis.getNodeForThisRef(SootMethod sm) |
boolean |
LocalObjectsAnalysis.hasNonLocalEffects(SootMethod containingMethod,
InvokeExpr ie,
SootMethod context) |
static boolean |
SmartMethodLocalObjectsAnalysis.isObjectLocal(InfoFlowAnalysis dfa,
SootMethod method,
CallLocalityContext context,
Value local) |
boolean |
ClassLocalObjectsAnalysis.isObjectLocal(Value localOrRef,
SootMethod sm) |
boolean |
LocalObjectsAnalysis.isObjectLocalToContext(Value localOrRef,
SootMethod sm,
SootMethod context) |
boolean |
LocalObjectsAnalysis.isObjectLocalToParent(Value localOrRef,
SootMethod sm) |
boolean |
ClassLocalObjectsAnalysis.parameterIsLocal(SootMethod method,
EquivalentValue parameterRef) |
protected boolean |
ClassLocalObjectsAnalysis.parameterIsLocal(SootMethod method,
EquivalentValue parameterRef,
boolean includePrimitiveDataFlowIfAvailable) |
protected boolean |
ClassLocalObjectsAnalysis.thisIsLocal(SootMethod method,
EquivalentValue thisRef) |
HashMutableDirectedGraph |
ClassInfoFlowAnalysis.triviallyConservativeInfoFlowAnalysis(SootMethod sm)
Does not require the method to have a body
|
| Constructor and Description |
|---|
SmartMethodLocalObjectsAnalysis(SootMethod method,
InfoFlowAnalysis dfa) |
| Constructor and Description |
|---|
ClassLocalObjectsAnalysis(LocalObjectsAnalysis loa,
InfoFlowAnalysis dfa,
InfoFlowAnalysis primitiveDfa,
UseFinder uf,
SootClass sootClass,
java.util.List<SootMethod> entryMethods) |
| Modifier and Type | Field and Description |
|---|---|
protected SootMethod |
LocalMustAliasAnalysis.container
the containing method
|
| Modifier and Type | Method and Description |
|---|---|
protected RWSet |
SideEffectAnalysis.addValue(Value v,
SootMethod m,
Stmt s) |
void |
SideEffectAnalysis.findNTRWSets(SootMethod method) |
void |
PASideEffectTester.newMethod(SootMethod m)
Call this when starting to analyze a new method to setup the cache.
|
RWSet |
SideEffectAnalysis.nonTransitiveReadSet(SootMethod method) |
RWSet |
SideEffectAnalysis.nonTransitiveWriteSet(SootMethod method) |
RWSet |
SideEffectAnalysis.readSet(SootMethod method,
Stmt stmt) |
RWSet |
SideEffectAnalysis.writeSet(SootMethod method,
Stmt stmt) |
| Modifier and Type | Method and Description |
|---|---|
static void |
NativeMethodClass.defaultMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params) |
void |
JavaIoFileSystemNative.java_io_FileSystem_getFileSystem(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a variable pointing to the file system constant
public static native java.io.FileSystem getFileSystem();
|
void |
JavaIoObjectInputStreamNative.java_io_ObjectInputStream_allocateNewArray(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
private static native java.lang.Object allocateNewArray(java.lang.Class,
int);
|
void |
JavaIoObjectInputStreamNative.java_io_ObjectInputStream_allocateNewObject(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Serialization has to be avoided by static analyses, since each
object comes out of the same place.
|
void |
JavaIoObjectInputStreamNative.java_io_ObjectInputStream_latestUserDefinedLoader(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: conservatively returns a reference pointing to the only copy
of the class loader.
|
void |
JavaIoObjectOutputStreamNative.java_io_ObjectOutputStream_getObjectFieldValue(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
The object in field is retrieved out by field ID.
|
void |
JavaLangClassNative.java_lang_Class_forName0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: the semantic of forName0 follows forName method.
|
void |
JavaLangClassNative.java_lang_Class_getClassLoader0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
returns the class loader object for this class.
|
void |
JavaLangClassNative.java_lang_Class_getComponentType(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the Class representing the component type of an array.
|
void |
JavaLangClassNative.java_lang_Class_getConstructor0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a constructor of a class
private native java.lang.reflect.Constructor
getConstructor0(java.lang.Class[], int);
|
void |
JavaLangClassNative.java_lang_Class_getConstructors0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a Constructor object that reflects the specified public
constructor of the class represented by this Class object.
|
void |
JavaLangClassNative.java_lang_Class_getDeclaredClasses0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns an array of Class objects reflecting all the classes and
interfaces declared as members of the class represented by this
Class object.
|
void |
JavaLangClassNative.java_lang_Class_getDeclaredConstructors0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns an array of Constructor objects reflecting all the classes and
interfaces declared as members of the class represented by this
Class object.
|
void |
JavaLangClassNative.java_lang_Class_getDeclaringClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
If the class or interface represented by this Class object is a
member of another class, returns the Class object representing the
class in which it was declared.
|
void |
JavaLangClassNative.java_lang_Class_getField0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a Field object that reflects the specified public member
field of the class or interface represented by this Class object.
|
void |
JavaLangClassNative.java_lang_Class_getFields0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns an array containing Field objects reflecting all the
accessible public fields of the class or interface represented by
this Class object.
|
void |
JavaLangClassNative.java_lang_Class_getInterfaces(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Determines the interfaces implemented by the class or interface
represented by this object.
|
void |
JavaLangClassNative.java_lang_Class_getMethod0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a Method object that reflects the specified public member
method of the class or interface represented by this Class
object.
|
void |
JavaLangClassNative.java_lang_Class_getMethods0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns an array containing Method objects reflecting all the
public member methods of the class or interface represented by
this Class object, including those declared by the class or
interface and and those inherited from superclasses and
superinterfaces.
|
void |
JavaLangClassNative.java_lang_Class_getName(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the class name.
|
void |
JavaLangClassNative.java_lang_Class_getPrimitiveClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Undocumented.
|
void |
JavaLangClassNative.java_lang_Class_getProtectionDomain0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
private native java.security.ProtectionDomain getProtectionDomain0();
|
void |
JavaLangClassNative.java_lang_Class_getSigners(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Gets the signers of this class.
|
void |
JavaLangClassNative.java_lang_Class_getSuperclass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
returns the super class of this class
public native java.lang.Class getSuperclass();
|
void |
JavaLangClassNative.java_lang_Class_newInstance0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: creates an object.
|
void |
JavaLangClassNative.java_lang_Class_setProtectionDomain0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Sets or returns the ProtectionDomain of this class,
called by getProtectiondomain.
|
void |
JavaLangClassNative.java_lang_Class_setSigners(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Sets the signers of a class.
|
void |
JavaLangClassLoaderNative.java_lang_ClassLoader_defineClass0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Converts an array of bytes into an instance of class
Class.
|
void |
JavaLangClassLoaderNative.java_lang_ClassLoader_findBootstrapClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: undocumented, finding the bootstrap class
Assuming all classes
private native
java.lang.Class findBootstrapClass(java.lang.String)
throws java.lang.ClassNotFoundException;
|
void |
JavaLangClassLoaderNative.java_lang_ClassLoader_findLoadedClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Finds the class with the given name if it had been previously
loaded through this class loader.
|
void |
JavaLangClassLoaderNative.java_lang_ClassLoader_getCallerClassLoader(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a variable pointing to the only class loader
static native java.lang.ClassLoader getCallerClassLoader();
|
void |
JavaLangObjectNative.java_lang_Object_clone(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Creates and returns a copy of this object.
|
void |
JavaLangObjectNative.java_lang_Object_getClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
The return variable is assigned an abstract object represneting
all classes (UnknowClassObject) from environment.
|
void |
JavaLangPackageNative.java_lang_Package_getSystemPackage0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
This is an undocumented private native method, it returns the first
(without caller) method's package.
|
void |
JavaLangPackageNative.java_lang_Package_getSystemPackages0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
private static native java.lang.String getSystemPackages0()[];
|
void |
JavaLangReflectArrayNative.java_lang_reflect_Array_get(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the value of the indexed component in the specified array
object.
|
void |
JavaLangReflectArrayNative.java_lang_reflect_Array_multiNewArray(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Treat this method as
|
void |
JavaLangReflectArrayNative.java_lang_reflect_Array_newArray(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Treat this method as
|
void |
JavaLangReflectArrayNative.java_lang_reflect_Array_set(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params) |
void |
JavaLangReflectConstructorNative.java_lang_reflect_Constructor_newInstance(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Uses the constructor represented by this Constructor object to
create and initialize a new instance of the constructor's
declaring class, with the specified initialization
parameters.
|
void |
JavaLangReflectFieldNative.java_lang_reflect_Field_get(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the value of the field represented by this Field, on the
specified object.
|
void |
JavaLangReflectFieldNative.java_lang_reflect_Field_set(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: make all fields pointing to @param1
public native void set(java.lang.Object, java.lang.Object)
throws java.lang.IllegalArgumentException,
java.lang.IllegalAccessException;
|
void |
JavaLangReflectMethodNative.java_lang_reflect_Method_invoke(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
nvokes the underlying method represented by this Method object,
on the specified object with the specified parameters.
|
void |
JavaLangReflectProxyNative.java_lang_reflect_Proxy_defineClass0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
We have to assume all possible classes will be returned.
|
void |
JavaLangRuntimeNative.java_lang_Runtime_execInternal(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
execInternal is called by all exec method.
|
void |
JavaLangSecurityManagerNative.java_lang_SecurityManager_currentClassLoader0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the class loader of the most recently executing method
from a class defined using a non-system class loader.
|
void |
JavaLangSecurityManagerNative.java_lang_SecurityManager_currentLoadedClass0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a variable pointing to all class objects.
|
void |
JavaLangSecurityManagerNative.java_lang_SecurityManager_getClassContext(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the current execution stack as an array of classes.
|
void |
JavaLangStringNative.java_lang_String_intern(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a canonical representation for the string object.
|
void |
JavaLangSystemNative.java_lang_System_arraycopy(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Copies an array from the specified source array, beginning at the
specified position, to the specified position of the destination
array.
|
void |
JavaLangSystemNative.java_lang_System_getCallerClass(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Undocumented, used by class loading.
|
void |
JavaLangSystemNative.java_lang_System_initProperties(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: this method is not documented, it should do following:
|
void |
JavaLangSystemNative.java_lang_System_mapLibraryName(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: it is platform-dependent, create a new string, needs to be verified.
|
void |
JavaLangSystemNative.java_lang_System_setErr0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: the same explanation as setIn0:
System.err = parameter
private static native void setErr0(java.io.PrintStream);
|
void |
JavaLangSystemNative.java_lang_System_setIn0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: this native method is not documented in JDK API.
|
void |
JavaLangSystemNative.java_lang_System_setOut0(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: the same explanation as setIn0:
G.v().out = parameter
private static native void setOut0(java.io.PrintStream);
|
void |
JavaLangThreadNative.java_lang_Thread_currentThread(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns the single variable pointing to all thread objects.
|
void |
JavaLangThrowableNative.java_lang_Throwable_fillInStackTrace(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: this method just fills in the stack state in this throwable
object content.
|
void |
JavaNetInetAddressImplNative.java_net_InetAddressImpl_getHostByAddr(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Create a string object
native java.lang.String getHostByAddr(int)
throws java.net.UnknownHostException;
|
void |
JavaNetInetAddressImplNative.java_net_InetAddressImpl_getLocalHostName(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Returns a variable pointing to a string constant
I am not sure if repeated calls of methods in this class will
return the same object or not.
|
void |
JavaSecurityAccessControllerNative.java_security_AccessController_doPrivileged(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
java.security.AccessController
|
void |
JavaSecurityAccessControllerNative.java_security_AccessController_getInheritedAccessControlContext(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
NOTE: not documented and not called by anyone
static native
java.security.AccessControlContext getInheritedAccessControlContext();
|
void |
JavaSecurityAccessControllerNative.java_security_AccessController_getStackAccessControlContext(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Creates an access control context object.
|
void |
JavaUtilJarJarFileNative.java_util_jar_JarFile_getMetaInfoEntryNames(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
The methods returns an array of strings.
|
void |
JavaUtilResourceBundleNative.java_util_ResourceBundle_getClassContext(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Undocumented, returns an array of all possible classes.
|
void |
JavaUtilTimeZoneNative.java_util_TimeZone_getSystemTimeZoneID(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
It should return a constant for TimeZone
Gets the TimeZone for the given ID.
|
void |
SunMiscUnsafeNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
SunMiscSignalNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
SunMiscSignalHandlerNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
abstract void |
NativeMethodClass.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params) |
void |
JavaUtilZipZipFileNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilZipZipEntryNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilZipInflaterNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilZipCRC32Native.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilTimeZoneNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilResourceBundleNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaUtilJarJarFileNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaSecurityAccessControllerNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaNetInetAddressNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaNetInetAddressImplNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangThrowableNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangThreadNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangSystemNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangStringNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangStrictMathNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangShutdownNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangSecurityManagerNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangRuntimeNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangReflectProxyNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangReflectMethodNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangReflectFieldNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangReflectConstructorNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangReflectArrayNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangPackageNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangObjectNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangFloatNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangDoubleNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangClassNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangClassLoaderNativeLibraryNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaLangClassLoaderNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoObjectStreamClassNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoObjectOutputStreamNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoObjectInputStreamNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoFileSystemNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoFileOutputStreamNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoFileInputStreamNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
JavaIoFileDescriptorNative.simulateMethod(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
Implements the abstract method simulateMethod.
|
void |
SunMiscUnsafeNative.sun_misc_Unsafe_allocateInstance(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params) |
| Constructor and Description |
|---|
NativeMethodNotSupportedException(SootMethod method) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
NativeMethodDriver.process(SootMethod method,
ReferenceVariable thisVar,
ReferenceVariable returnVar,
ReferenceVariable[] params)
The entry point of native method simulation.
|
ReferenceVariable |
NativeHelper.tempLocalVariable(SootMethod method) |
protected abstract ReferenceVariable |
NativeHelper.tempLocalVariableImpl(SootMethod method) |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.classForNameReceivers |
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.classNewInstanceReceivers |
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.constructorNewInstanceReceivers |
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.fieldGetReceivers |
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.fieldSetReceivers |
protected java.util.Map<SootMethod,java.util.Set<java.lang.String>> |
ReflectionTraceInfo.methodInvokeReceivers |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<SootMethod> |
ReflectionTraceInfo.constructorNewInstanceConstructors(SootMethod container) |
java.util.Set<SootMethod> |
ReflectionTraceInfo.methodInvokeMethods(SootMethod container) |
java.util.Set<SootMethod> |
ReflectionTraceInfo.methodsContainingReflectiveCalls() |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<SootClass> |
ReflectionTraceInfo.classForNameClasses(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.classForNameClassNames(SootMethod container) |
java.util.Set<SootClass> |
ReflectionTraceInfo.classNewInstanceClasses(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.classNewInstanceClassNames(SootMethod container) |
java.util.Set<SootMethod> |
ReflectionTraceInfo.constructorNewInstanceConstructors(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.constructorNewInstanceSignatures(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.fieldGetSignatures(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.fieldSetSignatures(SootMethod container) |
java.util.Set<SootMethod> |
ReflectionTraceInfo.methodInvokeMethods(SootMethod container) |
java.util.Set<java.lang.String> |
ReflectionTraceInfo.methodInvokeSignatures(SootMethod container) |
| Constructor and Description |
|---|
FastAvailableExpressionsAnalysis(DirectedGraph dg,
SootMethod m,
SideEffectTester st) |
PessimisticAvailableExpressionsAnalysis(DirectedGraph dg,
SootMethod m,
SideEffectTester st) |
| Modifier and Type | Field and Description |
|---|---|
protected SootMethod |
UnitGraph.method |
| Modifier and Type | Method and Description |
|---|---|
void |
InteractionHandler.setNextMethod(SootMethod m) |
| Modifier and Type | Field and Description |
|---|---|
protected SootMethod |
RegionAnalysis.m_method |
| Modifier and Type | Method and Description |
|---|---|
SootMethod |
Region.getSootMethod() |
SootMethod |
PDGRegion.getSootMethod() |
SootMethod |
IRegion.getSootMethod() |
| Constructor and Description |
|---|
PDGRegion(int id,
java.util.List<PDGNode> nodes,
SootMethod m,
SootClass c,
UnitGraph ug,
PDGNode node) |
PDGRegion(int id,
SootMethod m,
SootClass c,
UnitGraph ug,
PDGNode node) |
Region(int id,
java.util.List<Block> blocks,
SootMethod m,
SootClass c,
UnitGraph ug) |
Region(int id,
SootMethod m,
SootClass c,
UnitGraph ug) |
RegionAnalysis(UnitGraph cfg,
SootMethod m,
SootClass c) |
Copyright © 2012-2019 RoboVM AB. All Rights Reserved.