2009-05-11 19:38:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2009-07-07 00:49:47 +02:00
|
|
|
* CacheMemory.hh
|
2009-05-11 19:38:43 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
2009-07-07 00:49:47 +02:00
|
|
|
* $Id: CacheMemory.hh,v 3.7 2004/06/18 20:15:15 beckmann Exp $
|
2009-05-11 19:38:43 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CACHEMEMORY_H
|
|
|
|
#define CACHEMEMORY_H
|
|
|
|
|
2009-05-11 19:38:45 +02:00
|
|
|
#include "mem/ruby/common/Global.hh"
|
|
|
|
#include "mem/protocol/AccessPermission.hh"
|
|
|
|
#include "mem/ruby/common/Address.hh"
|
2009-07-07 00:49:47 +02:00
|
|
|
#include "mem/ruby/recorder/CacheRecorder.hh"
|
2009-05-11 19:38:45 +02:00
|
|
|
#include "mem/protocol/CacheRequestType.hh"
|
|
|
|
#include "mem/gems_common/Vector.hh"
|
|
|
|
#include "mem/ruby/common/DataBlock.hh"
|
|
|
|
#include "mem/protocol/MachineType.hh"
|
|
|
|
#include "mem/ruby/slicc_interface/RubySlicc_ComponentMapping.hh"
|
|
|
|
#include "mem/ruby/system/PseudoLRUPolicy.hh"
|
|
|
|
#include "mem/ruby/system/LRUPolicy.hh"
|
2009-07-07 00:49:47 +02:00
|
|
|
#include "mem/ruby/slicc_interface/AbstractCacheEntry.hh"
|
|
|
|
#include "mem/ruby/system/System.hh"
|
|
|
|
#include "mem/ruby/slicc_interface/AbstractController.hh"
|
2009-07-20 16:40:43 +02:00
|
|
|
#include "mem/ruby/profiler/CacheProfiler.hh"
|
|
|
|
#include "mem/protocol/CacheMsg.hh"
|
2009-05-11 19:38:43 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class CacheMemory {
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructors
|
2009-07-07 00:49:47 +02:00
|
|
|
CacheMemory(const string & name);
|
|
|
|
void init(const vector<string> & argv);
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~CacheMemory();
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
// factory
|
|
|
|
// static CacheMemory* createCache(int level, int num, char split_type, AbstractCacheEntry* (*entry_factory)());
|
|
|
|
// static CacheMemory* getCache(int cache_id);
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
// Public Methods
|
|
|
|
void printConfig(ostream& out);
|
|
|
|
|
|
|
|
// perform a cache access and see if we hit or not. Return true on a hit.
|
|
|
|
bool tryCacheAccess(const Address& address, CacheRequestType type, DataBlock*& data_ptr);
|
|
|
|
|
|
|
|
// similar to above, but doesn't require full access check
|
|
|
|
bool testCacheAccess(const Address& address, CacheRequestType type, DataBlock*& data_ptr);
|
|
|
|
|
|
|
|
// tests to see if an address is present in the cache
|
|
|
|
bool isTagPresent(const Address& address) const;
|
|
|
|
|
|
|
|
// Returns true if there is:
|
|
|
|
// a) a tag match on this address or there is
|
|
|
|
// b) an unused line in the same cache "way"
|
|
|
|
bool cacheAvail(const Address& address) const;
|
|
|
|
|
|
|
|
// find an unused entry and sets the tag appropriate for the address
|
2009-07-07 00:49:47 +02:00
|
|
|
void allocate(const Address& address, AbstractCacheEntry* new_entry);
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
// Explicitly free up this address
|
|
|
|
void deallocate(const Address& address);
|
|
|
|
|
|
|
|
// Returns with the physical address of the conflicting cache line
|
|
|
|
Address cacheProbe(const Address& address) const;
|
|
|
|
|
|
|
|
// looks an address up in the cache
|
2009-07-07 00:49:47 +02:00
|
|
|
AbstractCacheEntry& lookup(const Address& address);
|
|
|
|
const AbstractCacheEntry& lookup(const Address& address) const;
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
// Get/Set permission of cache block
|
|
|
|
AccessPermission getPermission(const Address& address) const;
|
|
|
|
void changePermission(const Address& address, AccessPermission new_perm);
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
int getLatency() const { return m_latency; }
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
// Hook for checkpointing the contents of the cache
|
|
|
|
void recordCacheContents(CacheRecorder& tr) const;
|
2009-07-07 00:49:47 +02:00
|
|
|
void setAsInstructionCache(bool is_icache) { m_is_instruction_only_cache = is_icache; }
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
// Set this address to most recently used
|
|
|
|
void setMRU(const Address& address);
|
|
|
|
|
2009-07-20 16:40:43 +02:00
|
|
|
void profileMiss(const CacheMsg & msg);
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
void getMemoryValue(const Address& addr, char* value,
|
|
|
|
unsigned int size_in_bytes );
|
|
|
|
void setMemoryValue(const Address& addr, char* value,
|
|
|
|
unsigned int size_in_bytes );
|
|
|
|
|
2009-07-13 18:13:29 +02:00
|
|
|
void setLocked (const Address& addr, int context);
|
|
|
|
void clearLocked (const Address& addr);
|
|
|
|
bool isLocked (const Address& addr, int context);
|
2009-05-11 19:38:43 +02:00
|
|
|
// Print cache contents
|
|
|
|
void print(ostream& out) const;
|
|
|
|
void printData(ostream& out) const;
|
|
|
|
|
2009-07-20 16:40:43 +02:00
|
|
|
void printStats(ostream& out) const;
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
private:
|
|
|
|
// Private Methods
|
|
|
|
|
|
|
|
// convert a Address to its location in the cache
|
|
|
|
Index addressToCacheSet(const Address& address) const;
|
|
|
|
|
|
|
|
// Given a cache tag: returns the index of the tag in a set.
|
|
|
|
// returns -1 if the tag is not found.
|
|
|
|
int findTagInSet(Index line, const Address& tag) const;
|
|
|
|
int findTagInSetIgnorePermissions(Index cacheSet, const Address& tag) const;
|
|
|
|
|
|
|
|
// Private copy constructor and assignment operator
|
|
|
|
CacheMemory(const CacheMemory& obj);
|
|
|
|
CacheMemory& operator=(const CacheMemory& obj);
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
private:
|
|
|
|
const string m_cache_name;
|
|
|
|
AbstractController* m_controller;
|
|
|
|
int m_latency;
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
// Data Members (m_prefix)
|
2009-07-07 00:49:47 +02:00
|
|
|
bool m_is_instruction_only_cache;
|
|
|
|
bool m_is_data_only_cache;
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
// The first index is the # of cache lines.
|
|
|
|
// The second index is the the amount associativity.
|
2009-07-07 00:49:47 +02:00
|
|
|
Vector<Vector<AbstractCacheEntry*> > m_cache;
|
2009-07-13 18:13:29 +02:00
|
|
|
Vector<Vector<int> > m_locked;
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
AbstractReplacementPolicy *m_replacementPolicy_ptr;
|
|
|
|
|
2009-07-20 16:40:43 +02:00
|
|
|
CacheProfiler* m_profiler_ptr;
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
int m_cache_num_sets;
|
|
|
|
int m_cache_num_set_bits;
|
|
|
|
int m_cache_assoc;
|
2009-05-11 19:38:46 +02:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
static Vector< CacheMemory* > m_all_caches;
|
2009-05-11 19:38:43 +02:00
|
|
|
};
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
// Output operator declaration
|
|
|
|
//ostream& operator<<(ostream& out, const CacheMemory<ENTRY>& obj);
|
|
|
|
|
|
|
|
// ******************* Definitions *******************
|
|
|
|
|
|
|
|
// Output operator definition
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
ostream& operator<<(ostream& out, const CacheMemory& obj)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
obj.print(out);
|
|
|
|
out << flush;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ****************************************************************
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
CacheMemory::CacheMemory(const string & name)
|
|
|
|
: m_cache_name(name)
|
|
|
|
{
|
2009-07-20 16:40:43 +02:00
|
|
|
m_profiler_ptr = new CacheProfiler(name);
|
2009-07-07 00:49:47 +02:00
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
inline
|
|
|
|
void CacheMemory::init(const vector<string> & argv)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
2009-07-07 00:49:47 +02:00
|
|
|
int cache_size = 0;
|
|
|
|
string policy;
|
|
|
|
|
|
|
|
m_controller = NULL;
|
|
|
|
for (uint32 i=0; i<argv.size(); i+=2) {
|
|
|
|
if (argv[i] == "size_kb") {
|
|
|
|
cache_size = atoi(argv[i+1].c_str());
|
|
|
|
} else if (argv[i] == "latency") {
|
|
|
|
m_latency = atoi(argv[i+1].c_str());
|
|
|
|
} else if (argv[i] == "assoc") {
|
|
|
|
m_cache_assoc = atoi(argv[i+1].c_str());
|
|
|
|
} else if (argv[i] == "replacement_policy") {
|
|
|
|
policy = argv[i+1];
|
|
|
|
} else if (argv[i] == "controller") {
|
|
|
|
m_controller = RubySystem::getController(argv[i+1]);
|
|
|
|
} else {
|
|
|
|
cerr << "WARNING: CacheMemory: Unknown configuration parameter: " << argv[i] << endl;
|
|
|
|
}
|
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
m_cache_num_sets = cache_size / m_cache_assoc;
|
|
|
|
m_cache_num_set_bits = log_int(m_cache_num_sets);
|
|
|
|
|
|
|
|
if(policy == "PSEUDO_LRU")
|
2009-05-11 19:38:43 +02:00
|
|
|
m_replacementPolicy_ptr = new PseudoLRUPolicy(m_cache_num_sets, m_cache_assoc);
|
2009-07-07 00:49:47 +02:00
|
|
|
else if (policy == "LRU")
|
2009-05-11 19:38:43 +02:00
|
|
|
m_replacementPolicy_ptr = new LRUPolicy(m_cache_num_sets, m_cache_assoc);
|
|
|
|
else
|
|
|
|
assert(false);
|
2009-07-07 00:49:47 +02:00
|
|
|
|
|
|
|
m_cache.setSize(m_cache_num_sets);
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked.setSize(m_cache_num_sets);
|
2009-05-11 19:38:43 +02:00
|
|
|
for (int i = 0; i < m_cache_num_sets; i++) {
|
|
|
|
m_cache[i].setSize(m_cache_assoc);
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked[i].setSize(m_cache_assoc);
|
2009-05-11 19:38:43 +02:00
|
|
|
for (int j = 0; j < m_cache_assoc; j++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
m_cache[i][j] = NULL;
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked[i][j] = -1;
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
2009-07-07 00:49:47 +02:00
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
CacheMemory::~CacheMemory()
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
if(m_replacementPolicy_ptr != NULL)
|
|
|
|
delete m_replacementPolicy_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::printConfig(ostream& out)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
2009-07-07 00:49:47 +02:00
|
|
|
out << "Cache config: " << m_cache_name << endl;
|
|
|
|
if (m_controller != NULL)
|
|
|
|
out << " controller: " << m_controller->getName() << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_associativity: " << m_cache_assoc << endl;
|
|
|
|
out << " num_cache_sets_bits: " << m_cache_num_set_bits << endl;
|
|
|
|
const int cache_num_sets = 1 << m_cache_num_set_bits;
|
|
|
|
out << " num_cache_sets: " << cache_num_sets << endl;
|
2009-07-07 00:49:47 +02:00
|
|
|
out << " cache_set_size_bytes: " << cache_num_sets * RubySystem::getBlockSizeBytes() << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_set_size_Kbytes: "
|
2009-07-07 00:49:47 +02:00
|
|
|
<< double(cache_num_sets * RubySystem::getBlockSizeBytes()) / (1<<10) << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_set_size_Mbytes: "
|
2009-07-07 00:49:47 +02:00
|
|
|
<< double(cache_num_sets * RubySystem::getBlockSizeBytes()) / (1<<20) << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_size_bytes: "
|
2009-07-07 00:49:47 +02:00
|
|
|
<< cache_num_sets * RubySystem::getBlockSizeBytes() * m_cache_assoc << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_size_Kbytes: "
|
2009-07-07 00:49:47 +02:00
|
|
|
<< double(cache_num_sets * RubySystem::getBlockSizeBytes() * m_cache_assoc) / (1<<10) << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
out << " cache_size_Mbytes: "
|
2009-07-07 00:49:47 +02:00
|
|
|
<< double(cache_num_sets * RubySystem::getBlockSizeBytes() * m_cache_assoc) / (1<<20) << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// PRIVATE METHODS
|
|
|
|
|
|
|
|
// convert a Address to its location in the cache
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
Index CacheMemory::addressToCacheSet(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
2009-07-07 00:49:47 +02:00
|
|
|
return address.bitSelect(RubySystem::getBlockSizeBits(), RubySystem::getBlockSizeBits() + m_cache_num_set_bits-1);
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Given a cache index: returns the index of the tag in a set.
|
|
|
|
// returns -1 if the tag is not found.
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
int CacheMemory::findTagInSet(Index cacheSet, const Address& tag) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(tag == line_address(tag));
|
|
|
|
// search the set for the tags
|
|
|
|
for (int i=0; i < m_cache_assoc; i++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
if ((m_cache[cacheSet][i] != NULL) &&
|
|
|
|
(m_cache[cacheSet][i]->m_Address == tag) &&
|
|
|
|
(m_cache[cacheSet][i]->m_Permission != AccessPermission_NotPresent)) {
|
2009-05-11 19:38:43 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1; // Not found
|
|
|
|
}
|
|
|
|
|
|
|
|
// Given a cache index: returns the index of the tag in a set.
|
|
|
|
// returns -1 if the tag is not found.
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
int CacheMemory::findTagInSetIgnorePermissions(Index cacheSet, const Address& tag) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(tag == line_address(tag));
|
|
|
|
// search the set for the tags
|
|
|
|
for (int i=0; i < m_cache_assoc; i++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
if (m_cache[cacheSet][i] != NULL && m_cache[cacheSet][i]->m_Address == tag)
|
2009-05-11 19:38:43 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1; // Not found
|
|
|
|
}
|
|
|
|
|
|
|
|
// PUBLIC METHODS
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
bool CacheMemory::tryCacheAccess(const Address& address,
|
|
|
|
CacheRequestType type,
|
|
|
|
DataBlock*& data_ptr)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
DEBUG_EXPR(CACHE_COMP, HighPrio, address);
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
if(loc != -1){ // Do we even have a tag match?
|
2009-07-07 00:49:47 +02:00
|
|
|
AbstractCacheEntry* entry = m_cache[cacheSet][loc];
|
2009-05-11 19:38:43 +02:00
|
|
|
m_replacementPolicy_ptr->touch(cacheSet, loc, g_eventQueue_ptr->getTime());
|
2009-07-07 00:49:47 +02:00
|
|
|
data_ptr = &(entry->getDataBlk());
|
2009-05-11 19:38:43 +02:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
if(entry->m_Permission == AccessPermission_Read_Write) {
|
2009-05-11 19:38:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
2009-07-07 00:49:47 +02:00
|
|
|
if ((entry->m_Permission == AccessPermission_Read_Only) &&
|
2009-05-11 19:38:43 +02:00
|
|
|
(type == CacheRequestType_LD || type == CacheRequestType_IFETCH)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// The line must not be accessible
|
|
|
|
}
|
|
|
|
data_ptr = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
bool CacheMemory::testCacheAccess(const Address& address,
|
|
|
|
CacheRequestType type,
|
|
|
|
DataBlock*& data_ptr)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
DEBUG_EXPR(CACHE_COMP, HighPrio, address);
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
if(loc != -1){ // Do we even have a tag match?
|
2009-07-07 00:49:47 +02:00
|
|
|
AbstractCacheEntry* entry = m_cache[cacheSet][loc];
|
2009-05-11 19:38:43 +02:00
|
|
|
m_replacementPolicy_ptr->touch(cacheSet, loc, g_eventQueue_ptr->getTime());
|
2009-07-07 00:49:47 +02:00
|
|
|
data_ptr = &(entry->getDataBlk());
|
2009-05-11 19:38:43 +02:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
return (m_cache[cacheSet][loc]->m_Permission != AccessPermission_NotPresent);
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
data_ptr = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// tests to see if an address is present in the cache
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
bool CacheMemory::isTagPresent(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int location = findTagInSet(cacheSet, address);
|
|
|
|
|
|
|
|
if (location == -1) {
|
|
|
|
// We didn't find the tag
|
|
|
|
DEBUG_EXPR(CACHE_COMP, LowPrio, address);
|
|
|
|
DEBUG_MSG(CACHE_COMP, LowPrio, "No tag match");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
DEBUG_EXPR(CACHE_COMP, LowPrio, address);
|
|
|
|
DEBUG_MSG(CACHE_COMP, LowPrio, "found");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if there is:
|
|
|
|
// a) a tag match on this address or there is
|
|
|
|
// b) an unused line in the same cache "way"
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
bool CacheMemory::cacheAvail(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
|
|
|
|
for (int i=0; i < m_cache_assoc; i++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
AbstractCacheEntry* entry = m_cache[cacheSet][i];
|
|
|
|
if (entry != NULL) {
|
|
|
|
if (entry->m_Address == address || // Already in the cache
|
|
|
|
entry->m_Permission == AccessPermission_NotPresent) { // We found an empty entry
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
2009-05-11 19:38:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::allocate(const Address& address, AbstractCacheEntry* entry)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
assert(!isTagPresent(address));
|
|
|
|
assert(cacheAvail(address));
|
|
|
|
DEBUG_EXPR(CACHE_COMP, HighPrio, address);
|
|
|
|
|
|
|
|
// Find the first open slot
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
for (int i=0; i < m_cache_assoc; i++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
if (m_cache[cacheSet][i] == NULL ||
|
|
|
|
m_cache[cacheSet][i]->m_Permission == AccessPermission_NotPresent) {
|
|
|
|
m_cache[cacheSet][i] = entry; // Init entry
|
|
|
|
m_cache[cacheSet][i]->m_Address = address;
|
|
|
|
m_cache[cacheSet][i]->m_Permission = AccessPermission_Invalid;
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked[cacheSet][i] = -1;
|
2009-05-11 19:38:43 +02:00
|
|
|
|
|
|
|
m_replacementPolicy_ptr->touch(cacheSet, i, g_eventQueue_ptr->getTime());
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ERROR_MSG("Allocate didn't find an available entry");
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::deallocate(const Address& address)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
assert(isTagPresent(address));
|
|
|
|
DEBUG_EXPR(CACHE_COMP, HighPrio, address);
|
2009-07-07 00:49:47 +02:00
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int location = findTagInSet(cacheSet, address);
|
|
|
|
if (location != -1){
|
|
|
|
delete m_cache[cacheSet][location];
|
|
|
|
m_cache[cacheSet][location] = NULL;
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked[cacheSet][location] = -1;
|
2009-07-07 00:49:47 +02:00
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns with the physical address of the conflicting cache line
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
Address CacheMemory::cacheProbe(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
assert(!cacheAvail(address));
|
|
|
|
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
2009-07-07 00:49:47 +02:00
|
|
|
return m_cache[cacheSet][m_replacementPolicy_ptr->getVictim(cacheSet)]->m_Address;
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// looks an address up in the cache
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
AbstractCacheEntry& CacheMemory::lookup(const Address& address)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
assert(loc != -1);
|
2009-07-07 00:49:47 +02:00
|
|
|
return *m_cache[cacheSet][loc];
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// looks an address up in the cache
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
const AbstractCacheEntry& CacheMemory::lookup(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
assert(loc != -1);
|
2009-07-07 00:49:47 +02:00
|
|
|
return *m_cache[cacheSet][loc];
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
AccessPermission CacheMemory::getPermission(const Address& address) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
return lookup(address).m_Permission;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::changePermission(const Address& address, AccessPermission new_perm)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
lookup(address).m_Permission = new_perm;
|
2009-07-13 18:59:13 +02:00
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
2009-07-13 18:13:29 +02:00
|
|
|
m_locked[cacheSet][loc] = -1;
|
2009-05-11 19:38:43 +02:00
|
|
|
assert(getPermission(address) == new_perm);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sets the most recently used bit for a cache block
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::setMRU(const Address& address)
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
Index cacheSet;
|
|
|
|
|
|
|
|
cacheSet = addressToCacheSet(address);
|
|
|
|
m_replacementPolicy_ptr->touch(cacheSet,
|
|
|
|
findTagInSet(cacheSet, address),
|
|
|
|
g_eventQueue_ptr->getTime());
|
|
|
|
}
|
|
|
|
|
2009-07-20 16:40:43 +02:00
|
|
|
inline
|
|
|
|
void CacheMemory::profileMiss(const CacheMsg & msg)
|
|
|
|
{
|
|
|
|
m_profiler_ptr->addStatSample(msg.getType(), msg.getAccessMode(),
|
|
|
|
msg.getSize(), msg.getPrefetch());
|
|
|
|
}
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::recordCacheContents(CacheRecorder& tr) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
2009-07-07 00:49:47 +02:00
|
|
|
for (int i = 0; i < m_cache_num_sets; i++) {
|
2009-05-11 19:38:43 +02:00
|
|
|
for (int j = 0; j < m_cache_assoc; j++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
AccessPermission perm = m_cache[i][j]->m_Permission;
|
2009-05-11 19:38:43 +02:00
|
|
|
CacheRequestType request_type = CacheRequestType_NULL;
|
|
|
|
if (perm == AccessPermission_Read_Only) {
|
2009-07-07 00:49:47 +02:00
|
|
|
if (m_is_instruction_only_cache) {
|
2009-05-11 19:38:43 +02:00
|
|
|
request_type = CacheRequestType_IFETCH;
|
|
|
|
} else {
|
|
|
|
request_type = CacheRequestType_LD;
|
|
|
|
}
|
|
|
|
} else if (perm == AccessPermission_Read_Write) {
|
|
|
|
request_type = CacheRequestType_ST;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request_type != CacheRequestType_NULL) {
|
2009-07-07 00:49:47 +02:00
|
|
|
// tr.addRecord(m_chip_ptr->getID(), m_cache[i][j].m_Address,
|
|
|
|
// Address(0), request_type, m_replacementPolicy_ptr->getLastAccess(i, j));
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
2009-07-07 00:49:47 +02:00
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::print(ostream& out) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
2009-07-07 00:49:47 +02:00
|
|
|
out << "Cache dump: " << m_cache_name << endl;
|
2009-05-11 19:38:43 +02:00
|
|
|
for (int i = 0; i < m_cache_num_sets; i++) {
|
|
|
|
for (int j = 0; j < m_cache_assoc; j++) {
|
2009-07-07 00:49:47 +02:00
|
|
|
if (m_cache[i][j] != NULL) {
|
|
|
|
out << " Index: " << i
|
|
|
|
<< " way: " << j
|
|
|
|
<< " entry: " << *m_cache[i][j] << endl;
|
|
|
|
} else {
|
|
|
|
out << " Index: " << i
|
|
|
|
<< " way: " << j
|
|
|
|
<< " entry: NULL" << endl;
|
|
|
|
}
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2009-07-07 00:49:47 +02:00
|
|
|
void CacheMemory::printData(ostream& out) const
|
2009-05-11 19:38:43 +02:00
|
|
|
{
|
|
|
|
out << "printData() not supported" << endl;
|
|
|
|
}
|
|
|
|
|
2009-07-20 16:40:43 +02:00
|
|
|
inline
|
|
|
|
void CacheMemory::printStats(ostream& out) const
|
|
|
|
{
|
|
|
|
m_profiler_ptr->printStats(out);
|
|
|
|
}
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
inline
|
|
|
|
void CacheMemory::getMemoryValue(const Address& addr, char* value,
|
|
|
|
unsigned int size_in_bytes ){
|
|
|
|
AbstractCacheEntry& entry = lookup(line_address(addr));
|
2009-05-11 19:38:43 +02:00
|
|
|
unsigned int startByte = addr.getAddress() - line_address(addr).getAddress();
|
|
|
|
for(unsigned int i=0; i<size_in_bytes; ++i){
|
2009-07-07 00:49:47 +02:00
|
|
|
value[i] = entry.getDataBlk().getByte(i + startByte);
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
inline
|
|
|
|
void CacheMemory::setMemoryValue(const Address& addr, char* value,
|
|
|
|
unsigned int size_in_bytes ){
|
|
|
|
AbstractCacheEntry& entry = lookup(line_address(addr));
|
2009-05-11 19:38:43 +02:00
|
|
|
unsigned int startByte = addr.getAddress() - line_address(addr).getAddress();
|
|
|
|
assert(size_in_bytes > 0);
|
|
|
|
for(unsigned int i=0; i<size_in_bytes; ++i){
|
2009-07-07 00:49:47 +02:00
|
|
|
entry.getDataBlk().setByte(i + startByte, value[i]);
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
// entry = lookup(line_address(addr));
|
2009-05-11 19:38:43 +02:00
|
|
|
}
|
|
|
|
|
2009-07-13 18:13:29 +02:00
|
|
|
inline
|
|
|
|
void
|
|
|
|
CacheMemory::setLocked(const Address& address, int context)
|
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
assert(loc != -1);
|
|
|
|
m_locked[cacheSet][loc] = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void
|
|
|
|
CacheMemory::clearLocked(const Address& address)
|
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
assert(loc != -1);
|
|
|
|
m_locked[cacheSet][loc] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
bool
|
|
|
|
CacheMemory::isLocked(const Address& address, int context)
|
|
|
|
{
|
|
|
|
assert(address == line_address(address));
|
|
|
|
Index cacheSet = addressToCacheSet(address);
|
|
|
|
int loc = findTagInSet(cacheSet, address);
|
|
|
|
assert(loc != -1);
|
|
|
|
return m_locked[cacheSet][loc] == context;
|
|
|
|
}
|
|
|
|
|
2009-05-11 19:38:43 +02:00
|
|
|
#endif //CACHEMEMORY_H
|
|
|
|
|