/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package com.ibm.wala.ipa.callgraph.propagation; import java.util.Iterator; import com.ibm.wala.classLoader.IClass; import com.ibm.wala.classLoader.NewSiteReference; import com.ibm.wala.ipa.callgraph.CGNode; import com.ibm.wala.ipa.callgraph.CallGraph; import com.ibm.wala.util.Predicate; import com.ibm.wala.util.collections.FilterIterator; import com.ibm.wala.util.collections.MapIterator; import com.ibm.wala.util.collections.Pair; import com.ibm.wala.util.functions.Function; /** * An {@link InstanceKey} which represents the set of all allocation sites * of a given type in a {@link CGNode}. * An instance key which represents a unique set for ALL allocation sites of a * given type in a CGNode */ public class SmushedAllocationSiteInNode extends AbstractTypeInNode { public SmushedAllocationSiteInNode(CGNode node, IClass type) { super(node, type); } @Override public boolean equals(Object obj) { // instanceof is OK because this class is final if (obj instanceof SmushedAllocationSiteInNode) { SmushedAllocationSiteInNode other = (SmushedAllocationSiteInNode) obj; return getNode().equals(other.getNode()) && getConcreteType().equals(other.getConcreteType()); } else { return false; } } @Override public int hashCode() { return getNode().hashCode() * 8293 + getConcreteType().hashCode(); } @Override public String toString() { return "SMUSHED " + getNode() + " : " + getConcreteType(); } @Override public Iterator<Pair<CGNode, NewSiteReference>> getCreationSites(CallGraph CG) { return new MapIterator<NewSiteReference,Pair<CGNode, NewSiteReference>>( new FilterIterator<NewSiteReference>( getNode().iterateNewSites(), new Predicate<NewSiteReference>() { @Override public boolean test(NewSiteReference o) { return o.getDeclaredType().equals(getConcreteType().getReference()); } }), new Function<NewSiteReference,Pair<CGNode, NewSiteReference>>() { @Override public Pair<CGNode, NewSiteReference> apply(NewSiteReference object) { return Pair.make(getNode(), object); } }); } }