com.ibm.wala.shrikeBT.analysis
Class Verifier
java.lang.Object
com.ibm.wala.shrikeBT.analysis.Analyzer
com.ibm.wala.shrikeBT.analysis.Verifier
public final class Verifier
- extends Analyzer
This class typechecks intermediate code. It's very easy to use:
MethodData md = ...;
try {
(new Verifier(md)).verify();
} catch (Verifier.FailureException ex) {
System.out.println("Verification failed at instruction "
+ ex.getOffset() + ": " + ex.getReason());
}
For full verification you need to provide class hierarchy information using setClassHierarchy. Without this information, we can't
compute the exact types of variables at control flow merge points. If you don't provide a hierarchy, or the hierarchy you provide
is partial, then the Verifier will be optimistic.
This method can also be used to gather type information for every stack and local variable at every program point. Just call
computeTypes() instead of verify() and then retrieve the results with getLocalTypes() and getStackTypes().
| Fields inherited from class com.ibm.wala.shrikeBT.analysis.Analyzer |
backEdges, basicBlockStarts, classType, handlers, hierarchy, instructions, isStatic, locals, maxLocals, maxStack, noEdges, noStrings, signature, stacks, stackSizes |
| Methods inherited from class com.ibm.wala.shrikeBT.analysis.Analyzer |
computeTypes, createAnalyzer, findCommonSupertype, getBackEdges, getBasicBlockStarts, getInstructions, getLocalTypes, getReachableFrom, getReachableFrom, getReachableFromUpdate, getReachingToUpdate, getStackSizes, getStackTypes, initTypeInfo, isSubtypeOf, setClassHierarchy |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Verifier
public Verifier(boolean isStatic,
java.lang.String classType,
java.lang.String signature,
IInstruction[] instructions,
ExceptionHandler[][] handlers)
- Initialize a verifier.
Verifier
public Verifier(MethodData info)
throws java.lang.NullPointerException
- Initialize a verifier.
- Throws:
java.lang.NullPointerException - if info is null
verify
public void verify()
throws Analyzer.FailureException
- Try to verify the method. If verification is unsuccessful, we throw an exception.
- Throws:
FailureException - the method contains invalid bytecode
Analyzer.FailureException
verifyCollectAll
public void verifyCollectAll()
throws Analyzer.FailureException
- Throws:
Analyzer.FailureException
computeTypes
public void computeTypes()
throws Analyzer.FailureException
- Throws:
Analyzer.FailureException