Ejemplo n.º 1
0
    protected IntSet getPossibleTargetNumbers(CallSiteReference site) {
      Object t = targets.get(site.getProgramCounter());

      if (t == null) {
        return null;
      } else if (t instanceof CGNode) {
        return SparseIntSet.singleton(getCallGraph().getNumber((CGNode) t));
      } else {
        return (IntSet) t;
      }
    }
Ejemplo n.º 2
0
 public SparseIntSet getSources(int i) {
   return SparseIntSet.singleton(i);
 }
Ejemplo n.º 3
0
 public SparseIntSet getTargets(int i) {
   return SparseIntSet.singleton(i);
 }