Package proguard.analysis.cpa.bam
Class BamCacheImpl<ContentT extends AbstractState<ContentT>>
- java.lang.Object
-
- proguard.analysis.cpa.bam.BamCacheImpl<ContentT>
-
- Type Parameters:
ContentT
- The content of the jvm states. For example, this can be aSetAbstractState
of taints for taint analysis or aValueAbstractState
for value analysis.
- All Implemented Interfaces:
BamCache<ContentT>
public class BamCacheImpl<ContentT extends AbstractState<ContentT>> extends java.lang.Object implements BamCache<ContentT>
A simple implementation ofBamCache
where the cache is implemented as aHashMap
.
-
-
Constructor Summary
Constructors Constructor Description BamCacheImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<BlockAbstraction<ContentT>>
get(Precision precision, MethodSignature blockKey)
Returns a collection of all the cache entries for a specified method with a certain precision, empty in case there are not such entries.BlockAbstraction<ContentT>
get(JvmAbstractState<ContentT> stateKey, Precision precisionKey, MethodSignature blockKey)
Gets the block abstraction identified by the provided keys from the cache.java.util.Collection<BlockAbstraction<ContentT>>
get(MethodSignature blockKey)
Returns a collection of all the cache entries for a specified method, empty in case there are not such entries.java.util.Set<MethodSignature>
getAllMethods()
Returns a set of all the methods that have an entry in the cache.void
put(JvmAbstractState<ContentT> stateKey, Precision precisionKey, MethodSignature blockKey, BlockAbstraction<ContentT> blockAbstraction)
Adds the block abstraction identified by the provided keys to the cache.int
size()
Returns the size of the cache.java.util.Collection<BlockAbstraction<ContentT>>
values()
Returns block abstractions stored in the cache.
-
-
-
Method Detail
-
put
public void put(JvmAbstractState<ContentT> stateKey, Precision precisionKey, MethodSignature blockKey, BlockAbstraction<ContentT> blockAbstraction)
Description copied from interface:BamCache
Adds the block abstraction identified by the provided keys to the cache.- Specified by:
put
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
get
public BlockAbstraction<ContentT> get(JvmAbstractState<ContentT> stateKey, Precision precisionKey, MethodSignature blockKey)
Description copied from interface:BamCache
Gets the block abstraction identified by the provided keys from the cache.- Specified by:
get
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
- Returns:
- The requested block abstraction, null in case of cache-miss.
-
get
public java.util.Collection<BlockAbstraction<ContentT>> get(MethodSignature blockKey)
Description copied from interface:BamCache
Returns a collection of all the cache entries for a specified method, empty in case there are not such entries.- Specified by:
get
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
get
public java.util.Collection<BlockAbstraction<ContentT>> get(Precision precision, MethodSignature blockKey)
Description copied from interface:BamCache
Returns a collection of all the cache entries for a specified method with a certain precision, empty in case there are not such entries.- Specified by:
get
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
values
public java.util.Collection<BlockAbstraction<ContentT>> values()
Description copied from interface:BamCache
Returns block abstractions stored in the cache.- Specified by:
values
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
size
public int size()
Description copied from interface:BamCache
Returns the size of the cache.- Specified by:
size
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
getAllMethods
public java.util.Set<MethodSignature> getAllMethods()
Description copied from interface:BamCache
Returns a set of all the methods that have an entry in the cache.- Specified by:
getAllMethods
in interfaceBamCache<ContentT extends AbstractState<ContentT>>
-
-