use of com.jopdesign.dfa.analyses.CallStringReceiverTypes in project jop by jop-devel.
the class DFATool method runReceiverAnalysis.
public Map<InstructionHandle, ContextMap<CallString, Set<String>>> runReceiverAnalysis(int callstringLength) {
CallStringReceiverTypes recTys = new CallStringReceiverTypes(callstringLength);
@SuppressWarnings({ "unchecked" }) Map<InstructionHandle, ContextMap<CallString, Set<String>>> receiverResults = runAnalysis(recTys);
setReceivers(recTys);
return receiverResults;
}
Aggregations