30 #ifndef __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__ 31 #define __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__ 34 #include <unordered_map> 41 #include "mem/ruby/protocol/CacheRequestType.hh" 42 #include "mem/ruby/protocol/CacheResourceType.hh" 43 #include "mem/ruby/protocol/RubyRequest.hh" 48 #include "params/RubyCache.hh" 55 typedef std::shared_ptr<ReplacementData>
ReplData;
127 void print(std::ostream& out)
const;
216 #endif // __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__ Stats::Scalar m_demand_misses
Addr cacheProbe(Addr address) const
Stats::Vector m_accessModeType
void recordCacheContents(int cntrl, CacheRecorder *tr) const
Cycles is a wrapper class for representing cycle counts, i.e.
void recordRequestType(CacheRequestType requestType, Addr addr)
Stats::Formula m_demand_accesses
void print(std::ostream &out) const
bool isBlockNotBusy(int64_t cache_set, int64_t loc)
int findTagInSetIgnorePermissions(int64_t cacheSet, Addr tag) const
bool testCacheAccess(Addr address, RubyRequestType type, DataBlock *&data_ptr)
Stats::Scalar m_hw_prefetches
std::shared_ptr< ReplacementData > ReplData
void clearLocked(Addr addr)
A vector of scalar stats.
AbstractCacheEntry * allocate(Addr address, AbstractCacheEntry *new_entry)
bool isLocked(Addr addr, int context)
void regStats()
Callback to set stat parameters.
bool m_use_occupancy
Set to true when using WeightedLRU replacement policy, otherwise, set to false.
Stats::Scalar numTagArrayStalls
Declaration of Statistics objects.
A common base class of cache replacement policy objects.
This is a simple scalar statistic, like a counter.
void printData(std::ostream &out) const
Cycles getLatency() const
void deallocate(Addr address)
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
bool cacheAvail(Addr address) const
BaseReplacementPolicy * m_replacementPolicy_ptr
We use BaseReplacementPolicy from Classic system here, hence we can use different replacement policie...
Cycles getTagLatency() const
AbstractCacheEntry * getNullEntry() const
std::unordered_map< Addr, int > m_tag_index
int getCacheAssoc() const
void setMRU(Addr address)
std::vector< std::vector< ReplData > > replacement_data
We store all the ReplacementData in a 2-dimensional array.
std::ostream & operator<<(std::ostream &out, const CacheMemory &obj)
CacheMemory(const Params *p)
bool isBlockInvalid(int64_t cache_set, int64_t loc)
bool tryCacheAccess(Addr address, RubyRequestType type, DataBlock *&data_ptr)
Stats::Scalar m_demand_hits
int findTagInSet(int64_t line, Addr tag) const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Cycles getDataLatency() const
Stats::Scalar numDataArrayWrites
Addr getAddressAtIdx(int idx) const
bool m_is_instruction_only_cache
CacheMemory & operator=(const CacheMemory &obj)
bool isTagPresent(Addr address) const
Stats::Scalar m_sw_prefetches
int getReplacementWeight(int64_t set, int64_t loc)
void setLocked(Addr addr, int context)
Stats::Scalar numTagArrayWrites
Stats::Scalar numDataArrayStalls
Stats::Scalar numDataArrayReads
Stats::Scalar numTagArrayReads
Stats::Formula m_prefetches
bool checkResourceAvailable(CacheResourceType res, Addr addr)
AbstractCacheEntry * lookup(Addr address)
Abstract superclass for simulation objects.
int64_t addressToCacheSet(Addr address) const
std::vector< std::vector< AbstractCacheEntry * > > m_cache
void allocateVoid(Addr address, AbstractCacheEntry *new_entry)