WALA/com.ibm.wala.cast/source/java/com/ibm/wala/cast/ipa/callgraph/ScopeMappingKeysContextSele...

81 lines
2.4 KiB
Java

package com.ibm.wala.cast.ipa.callgraph;
import com.ibm.wala.cast.ipa.callgraph.ScopeMappingInstanceKeys.ScopeMappingInstanceKey;
import com.ibm.wala.classLoader.CallSiteReference;
import com.ibm.wala.classLoader.IMethod;
import com.ibm.wala.ipa.callgraph.CGNode;
import com.ibm.wala.ipa.callgraph.Context;
import com.ibm.wala.ipa.callgraph.ContextItem;
import com.ibm.wala.ipa.callgraph.ContextKey;
import com.ibm.wala.ipa.callgraph.ContextSelector;
import com.ibm.wala.ipa.callgraph.propagation.InstanceKey;
import com.ibm.wala.util.intset.IntSet;
import com.ibm.wala.util.intset.IntSetUtil;
public class ScopeMappingKeysContextSelector implements ContextSelector {
public static final ContextKey scopeKey = new ContextKey() {
public String toString() { return "SCOPE KEY"; }
};
public static class ScopeMappingContext implements Context {
private final Context base;
private final ScopeMappingInstanceKey key;
private ScopeMappingContext(Context base, ScopeMappingInstanceKey key) {
this.base = base;
this.key = key;
}
public ContextItem get(ContextKey name) {
if (scopeKey.equals(name)) {
return key;
} else {
return base.get(name);
}
}
private int hashcode = -1;
public int hashCode() {
if (hashcode == -1) {
hashcode = base.hashCode()*key.hashCode();
}
return hashcode;
}
public String toString() {
return "context for " + key;
}
public boolean equals(Object o) {
return (o instanceof ScopeMappingContext) &&
key.equals(((ScopeMappingContext)o).key) &&
base.equals(((ScopeMappingContext)o).base);
}
}
private final ContextSelector base;
public ScopeMappingKeysContextSelector(ContextSelector base) {
this.base = base;
}
public Context getCalleeTarget(CGNode caller, CallSiteReference site, IMethod callee, InstanceKey[] receiver) {
Context bc = base.getCalleeTarget(caller, site, callee, receiver);
if (receiver[0] instanceof ScopeMappingInstanceKey) {
return new ScopeMappingContext(bc, (ScopeMappingInstanceKey) receiver[0]);
} else {
return bc;
}
}
private static final IntSet thisParameter = IntSetUtil.make(new int[]{0});
public IntSet getRelevantParameters(CGNode caller, CallSiteReference site) {
return thisParameter;
}
}