Class ConstantPropagationStore
- java.lang.Object
-
- org.checkerframework.dataflow.constantpropagation.ConstantPropagationStore
-
- All Implemented Interfaces:
Store<ConstantPropagationStore>
public class ConstantPropagationStore extends java.lang.Object implements Store<ConstantPropagationStore>
A store that records information about constant values.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.checkerframework.dataflow.analysis.Store
Store.FlowRule, Store.Kind
-
-
Constructor Summary
Constructors Modifier Constructor Description ConstantPropagationStore()Creates a new ConstantPropagationStore.protectedConstantPropagationStore(java.util.Map<Node,Constant> contents)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanAlias(JavaExpression a, JavaExpression b)Can the objectsaandbbe aliases? Returns a conservative answer (i.e., returnstrueif not enough information is available to determine aliasing).ConstantPropagationStorecopy()Returns an exact copy of this store.booleanequals(@Nullable java.lang.Object o)Returns true if this is equal to the given argument.ConstantgetInformation(Node n)inthashCode()ConstantPropagationStoreleastUpperBound(ConstantPropagationStore other)Compute the least upper bound of two stores.voidmergeInformation(Node n, Constant val)voidsetInformation(Node n, Constant val)java.lang.StringtoString()java.lang.Stringvisualize(CFGVisualizer<?,ConstantPropagationStore,?> viz)Delegate visualization responsibility to a visualizer.ConstantPropagationStorewidenedUpperBound(ConstantPropagationStore previous)Compute an upper bound of two stores that is wider than the least upper bound of the two stores.
-
-
-
Method Detail
-
copy
public ConstantPropagationStore copy()
Description copied from interface:StoreReturns an exact copy of this store.- Specified by:
copyin interfaceStore<ConstantPropagationStore>- Returns:
- an exact copy of this store
-
leastUpperBound
public ConstantPropagationStore leastUpperBound(ConstantPropagationStore other)
Description copied from interface:StoreCompute the least upper bound of two stores.Important: This method must fulfill the following contract:
- Does not change
this. - Does not change
other. - Returns a fresh object which is not aliased yet.
- Returns an object of the same (dynamic) type as
this, even if the signature is more permissive. - Is commutative.
- Specified by:
leastUpperBoundin interfaceStore<ConstantPropagationStore>
- Does not change
-
widenedUpperBound
public ConstantPropagationStore widenedUpperBound(ConstantPropagationStore previous)
Description copied from interface:StoreCompute an upper bound of two stores that is wider than the least upper bound of the two stores. Used to jump to a higher abstraction to allow faster termination of the fixed point computations inAnalysis.previousmust be the previous store.A particular analysis might not require widening and should implement this method by calling leastUpperBound.
Important: This method must fulfill the following contract:
- Does not change
this. - Does not change
previous. - Returns a fresh object which is not aliased yet.
- Returns an object of the same (dynamic) type as
this, even if the signature is more permissive. - Is commutative.
- Specified by:
widenedUpperBoundin interfaceStore<ConstantPropagationStore>- Parameters:
previous- must be the previous store
- Does not change
-
equals
public boolean equals(@Nullable java.lang.Object o)
Description copied from interface:StoreReturns true if this is equal to the given argument.- Specified by:
equalsin interfaceStore<ConstantPropagationStore>- Overrides:
equalsin classjava.lang.Object- Parameters:
o- the object to compare against this- Returns:
- true if this is equal to the given argument
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
canAlias
public boolean canAlias(JavaExpression a, JavaExpression b)
Description copied from interface:StoreCan the objectsaandbbe aliases? Returns a conservative answer (i.e., returnstrueif not enough information is available to determine aliasing).- Specified by:
canAliasin interfaceStore<ConstantPropagationStore>
-
visualize
public java.lang.String visualize(CFGVisualizer<?,ConstantPropagationStore,?> viz)
Description copied from interface:StoreDelegate visualization responsibility to a visualizer.- Specified by:
visualizein interfaceStore<ConstantPropagationStore>- Parameters:
viz- the visualizer to visualize this store- Returns:
- the String representation of this store
-
-