Class ConcreteTypeKey
- java.lang.Object
-
- com.ibm.wala.ipa.callgraph.propagation.ConcreteTypeKey
-
- All Implemented Interfaces:
ContextItem,InstanceKey
public final class ConcreteTypeKey extends Object implements InstanceKey
An instance key which represents a unique set for each concrete type.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.ibm.wala.ipa.callgraph.ContextItem
ContextItem.Value<T>
-
-
Constructor Summary
Constructors Constructor Description ConcreteTypeKey(IClass type)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)IClassgetConcreteType()For now, we assert that each InstanceKey represents a set of classes which are all of the same concrete type (modulo the fact that all arrays of references are considered concrete type []Object;)Iterator<Pair<CGNode,NewSiteReference>>getCreationSites(CallGraph CG)Get the creation sites ofthis, i.e., the statements that may allocate objects represented bythis.static InstanceKey[]getInstanceKeysForPEI(SSAInstruction pei, IR ir, IClassHierarchy cha)IClassgetType()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
ConcreteTypeKey
public ConcreteTypeKey(IClass type)
-
-
Method Detail
-
getType
public IClass getType()
-
getConcreteType
public IClass getConcreteType()
Description copied from interface:InstanceKeyFor now, we assert that each InstanceKey represents a set of classes which are all of the same concrete type (modulo the fact that all arrays of references are considered concrete type []Object;)- Specified by:
getConcreteTypein interfaceInstanceKey
-
getInstanceKeysForPEI
public static InstanceKey[] getInstanceKeysForPEI(SSAInstruction pei, IR ir, IClassHierarchy cha)
- Parameters:
pei- a PEI instructioncha- governing class hierarchy- Returns:
- a set of ConcreteTypeKeys that represent the exceptions the PEI may throw.
- Throws:
IllegalArgumentException- if pei is null
-
getCreationSites
public Iterator<Pair<CGNode,NewSiteReference>> getCreationSites(CallGraph CG)
Description copied from interface:InstanceKeyGet the creation sites ofthis, i.e., the statements that may allocate objects represented bythis. A creation site is a pair (n,s), where n is the containingCGNodein the givenCallGraphCGand s is the allocatingNewSiteReference.- Specified by:
getCreationSitesin interfaceInstanceKey
-
-