Interface DeadStoreStats
public interface DeadStoreStats
-
Method Summary
Modifier and TypeMethodDescriptiongetDeadStores
(List<StoreInfo> storeInfos) Side effect operation of populating isStoreDead and setStoreDeadStatusReasons in the StoreInfo object and returns back the same list of StoreInfo objects.void
preFetchStats
(List<StoreInfo> storeInfos) Pre fetches the dead store stats for the given stores, to then be accessible to getDeadStores() In the case where fetching dead store stats is latency intensive, this method can be used to pre-populate dead store stats
-
Method Details
-
getDeadStores
Side effect operation of populating isStoreDead and setStoreDeadStatusReasons in the StoreInfo object and returns back the same list of StoreInfo objects. -
preFetchStats
Pre fetches the dead store stats for the given stores, to then be accessible to getDeadStores() In the case where fetching dead store stats is latency intensive, this method can be used to pre-populate dead store stats- Parameters:
storeInfos
- List of StoreInfo objects to pre-fetch stats for.
-