summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.cc')
-rw-r--r--src/gpgpu-sim/gpu-cache.cc780
1 files changed, 641 insertions, 139 deletions
diff --git a/src/gpgpu-sim/gpu-cache.cc b/src/gpgpu-sim/gpu-cache.cc
index 8886398..ba81440 100644
--- a/src/gpgpu-sim/gpu-cache.cc
+++ b/src/gpgpu-sim/gpu-cache.cc
@@ -29,7 +29,6 @@
#include "stat-tool.h"
#include <assert.h>
-#define MAX_DEFAULT_CACHE_SIZE_MULTIBLIER 4
// used to allocate memory that is large enough to adapt the changes in cache size across kernels
const char * cache_request_status_str(enum cache_request_status status)
@@ -38,7 +37,8 @@ const char * cache_request_status_str(enum cache_request_status status)
"HIT",
"HIT_RESERVED",
"MISS",
- "RESERVATION_FAIL"
+ "RESERVATION_FAIL",
+ "SECTOR_MISS"
};
assert(sizeof(static_cache_request_status_str) / sizeof(const char*) == NUM_CACHE_REQUEST_STATUS);
@@ -47,6 +47,22 @@ const char * cache_request_status_str(enum cache_request_status status)
return static_cache_request_status_str[status];
}
+const char * cache_fail_status_str(enum cache_reservation_fail_reason status)
+{
+ static const char * static_cache_reservation_fail_reason_str[] = {
+ "LINE_ALLOC_FAIL",
+ "MISS_QUEUE_FULL",
+ "MSHR_ENRTY_FAIL",
+ "MSHR_MERGE_ENRTY_FAIL",
+ "MSHR_RW_PENDING"
+ };
+
+ assert(sizeof(static_cache_reservation_fail_reason_str) / sizeof(const char*) == NUM_CACHE_RESERVATION_FAIL_STATUS);
+ assert(status < NUM_CACHE_RESERVATION_FAIL_STATUS);
+
+ return static_cache_reservation_fail_reason_str[status];
+}
+
unsigned l1d_cache_config::set_index(new_addr_type addr) const{
unsigned set_index = m_nset; // Default to linear set index function
unsigned lower_xor = 0;
@@ -54,10 +70,11 @@ unsigned l1d_cache_config::set_index(new_addr_type addr) const{
switch(m_set_index_function){
case FERMI_HASH_SET_FUNCTION:
+ case BITWISE_XORING_FUNCTION:
/*
* Set Indexing function from "A Detailed GPU Cache Model Based on Reuse Distance Theory"
* Cedric Nugteren et al.
- * ISCA 2014
+ * HPCA 2014
*/
if(m_nset == 32 || m_nset == 64){
// Lower xor value is bits 7-11
@@ -80,6 +97,36 @@ unsigned l1d_cache_config::set_index(new_addr_type addr) const{
}
break;
+ case HASH_IPOLY_FUNCTION:
+ /*
+ * Set Indexing function from "Pseudo-randomly interleaved memory."
+ * Rau, B. R et al.
+ * ISCA 1991
+ *
+ * "Sacat: streaming-aware conflict-avoiding thrashing-resistant gpgpu cache management scheme."
+ * Khairy et al.
+ * IEEE TPDS 2017.
+ */
+ if(m_nset == 32 || m_nset == 64){
+ std::bitset<64> a(addr);
+ std::bitset<6> index;
+ index[0] = a[25]^a[24]^a[23]^a[22]^a[21]^a[18]^a[17]^a[15]^a[12]^a[7]; //10
+ index[1] = a[26]^a[25]^a[24]^a[23]^a[22]^a[19]^a[18]^a[16]^a[13]^a[8]; //10
+ index[2] = a[26]^a[22]^a[21]^a[20]^a[19]^a[18]^a[15]^a[14]^a[12]^a[9]; //10
+ index[3] = a[23]^a[22]^a[21]^a[20]^a[19]^a[16]^a[15]^a[13]^a[10]; //9
+ index[4] = a[24]^a[23]^a[22]^a[21]^a[20]^a[17]^a[16]^a[14]^a[11]; //9
+
+ if(m_nset == 64)
+ index[5] = a[12];
+
+ set_index = index.to_ulong();
+
+ }else{ /* Else incorrect number of sets for the hashing function */
+ assert("\nGPGPU-Sim cache configuration error: The number of sets should be "
+ "32 or 64 for the hashing set index function.\n" && 0);
+ }
+ break;
+
case CUSTOM_SET_FUNCTION:
/* No custom set function implemented */
break;
@@ -87,6 +134,10 @@ unsigned l1d_cache_config::set_index(new_addr_type addr) const{
case LINEAR_SET_FUNCTION:
set_index = (addr >> m_line_sz_log2) & (m_nset-1);
break;
+
+ default:
+ assert("\nUndefined set index function.\n" && 0);
+ break;
}
// Linear function selected or custom set index function not implemented
@@ -113,13 +164,16 @@ unsigned l2_cache_config::set_index(new_addr_type addr) const{
tag_array::~tag_array()
{
+ unsigned cache_lines_num = m_config.get_max_num_lines();
+ for(unsigned i=0; i<cache_lines_num; ++i)
+ delete m_lines[i];
delete[] m_lines;
}
tag_array::tag_array( cache_config &config,
int core_id,
int type_id,
- cache_block_t* new_lines)
+ cache_block_t** new_lines)
: m_config( config ),
m_lines( new_lines )
{
@@ -137,7 +191,21 @@ tag_array::tag_array( cache_config &config,
: m_config( config )
{
//assert( m_config.m_write_policy == READ_ONLY ); Old assert
- m_lines = new cache_block_t[MAX_DEFAULT_CACHE_SIZE_MULTIBLIER*config.get_num_lines()];
+ unsigned cache_lines_num = config.get_max_num_lines();
+ m_lines = new cache_block_t*[cache_lines_num];
+ if(config.m_cache_type == NORMAL)
+ {
+ for(unsigned i=0; i<cache_lines_num; ++i)
+ m_lines[i] = new line_cache_block();
+ }
+ else if(config.m_cache_type == SECTOR)
+ {
+ for(unsigned i=0; i<cache_lines_num; ++i)
+ m_lines[i] = new sector_cache_block();
+ }
+ else
+ assert(0);
+
init( core_id, type_id );
}
@@ -147,15 +215,41 @@ void tag_array::init( int core_id, int type_id )
m_miss = 0;
m_pending_hit = 0;
m_res_fail = 0;
+ m_sector_miss = 0;
// initialize snapshot counters for visualizer
m_prev_snapshot_access = 0;
m_prev_snapshot_miss = 0;
m_prev_snapshot_pending_hit = 0;
m_core_id = core_id;
m_type_id = type_id;
+ is_used = false;
}
-enum cache_request_status tag_array::probe( new_addr_type addr, unsigned &idx ) const {
+void tag_array::add_pending_line(mem_fetch *mf){
+ assert(mf);
+ new_addr_type addr = m_config.block_addr(mf->get_addr());
+ line_table::const_iterator i = pending_lines.find(addr);
+ if ( i == pending_lines.end() ) {
+ pending_lines[addr] = mf->get_inst().get_uid();
+ }
+}
+
+void tag_array::remove_pending_line(mem_fetch *mf){
+ assert(mf);
+ new_addr_type addr = m_config.block_addr(mf->get_addr());
+ line_table::const_iterator i = pending_lines.find(addr);
+ if ( i != pending_lines.end() ) {
+ pending_lines.erase(addr);
+ }
+}
+
+enum cache_request_status tag_array::probe( new_addr_type addr, unsigned &idx, mem_fetch* mf, bool probe_mode) const {
+ mem_access_sector_mask_t mask = mf->get_access_sector_mask();
+ return probe(addr, idx, mask, probe_mode, mf);
+}
+
+
+enum cache_request_status tag_array::probe( new_addr_type addr, unsigned &idx, mem_access_sector_mask_t mask, bool probe_mode, mem_fetch* mf) const {
//assert( m_config.m_write_policy == READ_ONLY );
unsigned set_index = m_config.set_index(addr);
new_addr_type tag = m_config.tag(addr);
@@ -169,35 +263,45 @@ enum cache_request_status tag_array::probe( new_addr_type addr, unsigned &idx )
// check for hit or pending hit
for (unsigned way=0; way<m_config.m_assoc; way++) {
unsigned index = set_index*m_config.m_assoc+way;
- cache_block_t *line = &m_lines[index];
+ cache_block_t *line = m_lines[index];
if (line->m_tag == tag) {
- if ( line->m_status == RESERVED ) {
+ if ( line->get_status(mask) == RESERVED ) {
idx = index;
return HIT_RESERVED;
- } else if ( line->m_status == VALID ) {
+ } else if ( line->get_status(mask) == VALID ) {
idx = index;
return HIT;
- } else if ( line->m_status == MODIFIED ) {
+ } else if ( line->get_status(mask) == MODIFIED) {
+ if(line->is_readable(mask)) {
+ idx = index;
+ return HIT;
+ }
+ else {
+ idx = index;
+ return SECTOR_MISS;
+ }
+
+ } else if ( line->is_valid_line() && line->get_status(mask) == INVALID ) {
idx = index;
- return HIT;
- } else {
- assert( line->m_status == INVALID );
+ return SECTOR_MISS;
+ }else {
+ assert( line->get_status(mask) == INVALID );
}
}
- if (line->m_status != RESERVED) {
+ if (!line->is_reserved_line()) {
all_reserved = false;
- if (line->m_status == INVALID) {
+ if (line->is_invalid_line()) {
invalid_line = index;
} else {
// valid line : keep track of most appropriate replacement candidate
if ( m_config.m_replacement_policy == LRU ) {
- if ( line->m_last_access_time < valid_timestamp ) {
- valid_timestamp = line->m_last_access_time;
+ if ( line->get_last_access_time() < valid_timestamp ) {
+ valid_timestamp = line->get_last_access_time();
valid_line = index;
}
} else if ( m_config.m_replacement_policy == FIFO ) {
- if ( line->m_alloc_time < valid_timestamp ) {
- valid_timestamp = line->m_alloc_time;
+ if ( line->get_alloc_time() < valid_timestamp ) {
+ valid_timestamp = line->get_alloc_time();
valid_line = index;
}
}
@@ -215,40 +319,59 @@ enum cache_request_status tag_array::probe( new_addr_type addr, unsigned &idx )
idx = valid_line;
} else abort(); // if an unreserved block exists, it is either invalid or replaceable
+
+ if(probe_mode && m_config.is_streaming()){
+ line_table::const_iterator i = pending_lines.find(m_config.block_addr(addr));
+ assert(mf);
+ if ( !mf->is_write() && i != pending_lines.end() ) {
+ if(i->second != mf->get_inst().get_uid())
+ return SECTOR_MISS;
+ }
+ }
+
return MISS;
}
-enum cache_request_status tag_array::access( new_addr_type addr, unsigned time, unsigned &idx )
+enum cache_request_status tag_array::access( new_addr_type addr, unsigned time, unsigned &idx, mem_fetch* mf)
{
bool wb=false;
- cache_block_t evicted;
- enum cache_request_status result = access(addr,time,idx,wb,evicted);
+ evicted_block_info evicted;
+ enum cache_request_status result = access(addr,time,idx,wb,evicted,mf);
assert(!wb);
return result;
}
-enum cache_request_status tag_array::access( new_addr_type addr, unsigned time, unsigned &idx, bool &wb, cache_block_t &evicted )
+enum cache_request_status tag_array::access( new_addr_type addr, unsigned time, unsigned &idx, bool &wb, evicted_block_info &evicted, mem_fetch* mf )
{
m_access++;
+ is_used = true;
shader_cache_access_log(m_core_id, m_type_id, 0); // log accesses to cache
- enum cache_request_status status = probe(addr,idx);
+ enum cache_request_status status = probe(addr,idx,mf);
switch (status) {
case HIT_RESERVED:
m_pending_hit++;
case HIT:
- m_lines[idx].m_last_access_time=time;
+ m_lines[idx]->set_last_access_time(time, mf->get_access_sector_mask());
break;
case MISS:
m_miss++;
shader_cache_access_log(m_core_id, m_type_id, 1); // log cache misses
if ( m_config.m_alloc_policy == ON_MISS ) {
- if( m_lines[idx].m_status == MODIFIED ) {
+ if( m_lines[idx]->is_modified_line()) {
wb = true;
- evicted = m_lines[idx];
+ evicted.set_info(m_lines[idx]->m_block_addr, m_lines[idx]->get_modified_size());
}
- m_lines[idx].allocate( m_config.tag(addr), m_config.block_addr(addr), time );
+ m_lines[idx]->allocate( m_config.tag(addr), m_config.block_addr(addr), time, mf->get_access_sector_mask());
}
break;
+ case SECTOR_MISS:
+ assert(m_config.m_cache_type == SECTOR);
+ m_sector_miss++;
+ shader_cache_access_log(m_core_id, m_type_id, 1); // log cache misses
+ if ( m_config.m_alloc_policy == ON_MISS ) {
+ ((sector_cache_block*)m_lines[idx])->allocate_sector( time, mf->get_access_sector_mask() );
+ }
+ break;
case RESERVATION_FAIL:
m_res_fail++;
shader_cache_access_log(m_core_id, m_type_id, 1); // log cache misses
@@ -261,37 +384,70 @@ enum cache_request_status tag_array::access( new_addr_type addr, unsigned time,
return status;
}
-void tag_array::fill( new_addr_type addr, unsigned time )
+void tag_array::fill( new_addr_type addr, unsigned time, mem_fetch* mf)
{
- assert( m_config.m_alloc_policy == ON_FILL );
+ fill(addr, time, mf->get_access_sector_mask());
+}
+
+void tag_array::fill( new_addr_type addr, unsigned time, mem_access_sector_mask_t mask )
+{
+ //assert( m_config.m_alloc_policy == ON_FILL );
unsigned idx;
- enum cache_request_status status = probe(addr,idx);
- assert(status==MISS); // MSHR should have prevented redundant memory request
- m_lines[idx].allocate( m_config.tag(addr), m_config.block_addr(addr), time );
- m_lines[idx].fill(time);
+ enum cache_request_status status = probe(addr,idx,mask);
+ //assert(status==MISS||status==SECTOR_MISS); // MSHR should have prevented redundant memory request
+ if(status==MISS)
+ m_lines[idx]->allocate( m_config.tag(addr), m_config.block_addr(addr), time, mask );
+ else if (status==SECTOR_MISS) {
+ assert(m_config.m_cache_type == SECTOR);
+ ((sector_cache_block*)m_lines[idx])->allocate_sector( time, mask );
+ }
+
+ m_lines[idx]->fill(time, mask);
}
-void tag_array::fill( unsigned index, unsigned time )
+void tag_array::fill( unsigned index, unsigned time, mem_fetch* mf)
{
assert( m_config.m_alloc_policy == ON_MISS );
- m_lines[index].fill(time);
+ m_lines[index]->fill(time, mf->get_access_sector_mask());
}
+
+//TODO: we need write back the flushed data to the upper level
void tag_array::flush()
{
+ if(!is_used)
+ return;
+
for (unsigned i=0; i < m_config.get_num_lines(); i++)
- m_lines[i].m_status = INVALID;
+ if(m_lines[i]->is_modified_line()) {
+ for(unsigned j=0; j < SECTOR_CHUNCK_SIZE; j++)
+ m_lines[i]->set_status(INVALID, mem_access_sector_mask_t().set(j)) ;
+ }
+
+ is_used = false;
+}
+
+void tag_array::invalidate()
+{
+ if(!is_used)
+ return;
+
+ for (unsigned i=0; i < m_config.get_num_lines(); i++)
+ for(unsigned j=0; j < SECTOR_CHUNCK_SIZE; j++)
+ m_lines[i]->set_status(INVALID, mem_access_sector_mask_t().set(j)) ;
+
+ is_used = false;
}
float tag_array::windowed_miss_rate( ) const
{
unsigned n_access = m_access - m_prev_snapshot_access;
- unsigned n_miss = m_miss - m_prev_snapshot_miss;
+ unsigned n_miss = (m_miss+m_sector_miss) - m_prev_snapshot_miss;
// unsigned n_pending_hit = m_pending_hit - m_prev_snapshot_pending_hit;
float missrate = 0.0f;
if (n_access != 0)
- missrate = (float) n_miss / n_access;
+ missrate = (float) (n_miss+m_sector_miss) / n_access;
return missrate;
}
@@ -299,23 +455,24 @@ void tag_array::new_window()
{
m_prev_snapshot_access = m_access;
m_prev_snapshot_miss = m_miss;
+ m_prev_snapshot_miss = m_miss + m_sector_miss;
m_prev_snapshot_pending_hit = m_pending_hit;
}
void tag_array::print( FILE *stream, unsigned &total_access, unsigned &total_misses ) const
{
m_config.print(stream);
- fprintf( stream, "\t\tAccess = %d, Miss = %d (%.3g), PendingHit = %d (%.3g)\n",
- m_access, m_miss, (float) m_miss / m_access,
+ fprintf( stream, "\t\tAccess = %d, Miss = %d, Sector_Miss = %d, Total_Miss = %d (%.3g), PendingHit = %d (%.3g)\n",
+ m_access, m_miss, m_sector_miss, (m_miss+m_sector_miss), (float) (m_miss+m_sector_miss) / m_access,
m_pending_hit, (float) m_pending_hit / m_access);
- total_misses+=m_miss;
+ total_misses+=(m_miss+m_sector_miss);
total_access+=m_access;
}
void tag_array::get_stats(unsigned &total_access, unsigned &total_misses, unsigned &total_hit_res, unsigned &total_res_fail) const{
// Update statistics from the tag array
total_access = m_access;
- total_misses = m_miss;
+ total_misses = (m_miss+m_sector_miss);
total_hit_res = m_pending_hit;
total_res_fail = m_res_fail;
}
@@ -324,16 +481,17 @@ void tag_array::get_stats(unsigned &total_access, unsigned &total_misses, unsign
bool was_write_sent( const std::list<cache_event> &events )
{
for( std::list<cache_event>::const_iterator e=events.begin(); e!=events.end(); e++ ) {
- if( *e == WRITE_REQUEST_SENT )
+ if( (*e).m_cache_event_type == WRITE_REQUEST_SENT )
return true;
}
return false;
}
-bool was_writeback_sent( const std::list<cache_event> &events )
+bool was_writeback_sent( const std::list<cache_event> &events, cache_event& wb_event)
{
for( std::list<cache_event>::const_iterator e=events.begin(); e!=events.end(); e++ ) {
- if( *e == WRITE_BACK_REQUEST_SENT )
+ if( (*e).m_cache_event_type == WRITE_BACK_REQUEST_SENT )
+ wb_event = *e;
return true;
}
return false;
@@ -342,7 +500,16 @@ bool was_writeback_sent( const std::list<cache_event> &events )
bool was_read_sent( const std::list<cache_event> &events )
{
for( std::list<cache_event>::const_iterator e=events.begin(); e!=events.end(); e++ ) {
- if( *e == READ_REQUEST_SENT )
+ if( (*e).m_cache_event_type == READ_REQUEST_SENT )
+ return true;
+ }
+ return false;
+}
+
+bool was_writeallocate_sent( const std::list<cache_event> &events )
+{
+ for( std::list<cache_event>::const_iterator e=events.begin(); e!=events.end(); e++ ) {
+ if( (*e).m_cache_event_type == WRITE_ALLOCATE_SENT )
return true;
}
return false;
@@ -375,11 +542,27 @@ void mshr_table::add( new_addr_type block_addr, mem_fetch *mf ){
}
}
+/// check is_read_after_write_pending
+bool mshr_table::is_read_after_write_pending( new_addr_type block_addr){
+ std::list<mem_fetch*> my_list = m_data[block_addr].m_list;
+ bool write_found = false;
+ for (std::list<mem_fetch*>::iterator it=my_list.begin(); it != my_list.end(); ++it)
+ {
+ if((*it)->is_write()) //Pending Write Request
+ write_found = true;
+ else if(write_found) //Pending Read Request and we found previous Write
+ return true;
+ }
+
+ return false;
+
+}
+
/// Accept a new cache fill response: mark entry ready for processing
void mshr_table::mark_ready( new_addr_type block_addr, bool &has_atomic ){
assert( !busy() );
table::iterator a = m_data.find(block_addr);
- assert( a != m_data.end() ); // don't remove same request twice
+ assert( a != m_data.end() );
m_current_response.push_back( block_addr );
has_atomic = a->second.m_has_atomic;
assert( m_current_response.size() <= m_data.size() );
@@ -417,9 +600,11 @@ void mshr_table::display( FILE *fp ) const{
/***************************************************************** Caches *****************************************************************/
cache_stats::cache_stats(){
m_stats.resize(NUM_MEM_ACCESS_TYPE);
+ m_fail_stats.resize(NUM_MEM_ACCESS_TYPE);
for(unsigned i=0; i<NUM_MEM_ACCESS_TYPE; ++i){
m_stats[i].resize(NUM_CACHE_REQUEST_STATUS, 0);
- }
+ m_fail_stats[i].resize(NUM_CACHE_RESERVATION_FAIL_STATUS, 0);
+ }
m_cache_port_available_cycles = 0;
m_cache_data_port_busy_cycles = 0;
m_cache_fill_port_busy_cycles = 0;
@@ -431,7 +616,8 @@ void cache_stats::clear(){
///
for(unsigned i=0; i<NUM_MEM_ACCESS_TYPE; ++i){
std::fill(m_stats[i].begin(), m_stats[i].end(), 0);
- }
+ std::fill(m_fail_stats[i].begin(), m_fail_stats[i].end(), 0);
+ }
m_cache_port_available_cycles = 0;
m_cache_data_port_busy_cycles = 0;
m_cache_fill_port_busy_cycles = 0;
@@ -446,6 +632,14 @@ void cache_stats::inc_stats(int access_type, int access_outcome){
m_stats[access_type][access_outcome]++;
}
+void cache_stats::inc_fail_stats(int access_type, int fail_outcome){
+
+ if(!check_fail_valid(access_type, fail_outcome))
+ assert(0 && "Unknown cache access type or access fail");
+
+ m_fail_stats[access_type][fail_outcome]++;
+}
+
enum cache_request_status cache_stats::select_stats_status(enum cache_request_status probe, enum cache_request_status access) const {
///
@@ -454,29 +648,47 @@ enum cache_request_status cache_stats::select_stats_status(enum cache_request_st
///
if(probe == HIT_RESERVED && access != RESERVATION_FAIL)
return probe;
+ else if(probe == SECTOR_MISS && access == MISS)
+ return probe;
else
return access;
}
-unsigned &cache_stats::operator()(int access_type, int access_outcome){
+unsigned &cache_stats::operator()(int access_type, int access_outcome, bool fail_outcome){
///
/// Simple method to read/modify the stat corresponding to (access_type, access_outcome)
/// Used overloaded () to avoid the need for separate read/write member functions
///
- if(!check_valid(access_type, access_outcome))
- assert(0 && "Unknown cache access type or access outcome");
+ if(fail_outcome) {
+ if(!check_fail_valid(access_type, access_outcome))
+ assert(0 && "Unknown cache access type or fail outcome");
- return m_stats[access_type][access_outcome];
+ return m_fail_stats[access_type][access_outcome];
+ }
+ else {
+ if(!check_valid(access_type, access_outcome))
+ assert(0 && "Unknown cache access type or access outcome");
+
+ return m_stats[access_type][access_outcome];
+ }
}
-unsigned cache_stats::operator()(int access_type, int access_outcome) const{
+unsigned cache_stats::operator()(int access_type, int access_outcome, bool fail_outcome) const{
///
/// Const accessor into m_stats.
///
- if(!check_valid(access_type, access_outcome))
- assert(0 && "Unknown cache access type or access outcome");
+ if(fail_outcome) {
+ if(!check_fail_valid(access_type, access_outcome))
+ assert(0 && "Unknown cache access type or fail outcome");
- return m_stats[access_type][access_outcome];
+ return m_fail_stats[access_type][access_outcome];
+ }
+ else {
+ if(!check_valid(access_type, access_outcome))
+ assert(0 && "Unknown cache access type or access outcome");
+
+ return m_stats[access_type][access_outcome];
+ }
}
cache_stats cache_stats::operator+(const cache_stats &cs){
@@ -486,9 +698,12 @@ cache_stats cache_stats::operator+(const cache_stats &cs){
cache_stats ret;
for(unsigned type=0; type<NUM_MEM_ACCESS_TYPE; ++type){
for(unsigned status=0; status<NUM_CACHE_REQUEST_STATUS; ++status){
- ret(type, status) = m_stats[type][status] + cs(type, status);
+ ret(type, status, false) = m_stats[type][status] + cs(type, status, false);
+ }
+ for(unsigned status=0; status<NUM_CACHE_RESERVATION_FAIL_STATUS; ++status){
+ ret(type, status, true) = m_fail_stats[type][status] + cs(type, status, true);
+ }
}
- }
ret.m_cache_port_available_cycles = m_cache_port_available_cycles + cs.m_cache_port_available_cycles;
ret.m_cache_data_port_busy_cycles = m_cache_data_port_busy_cycles + cs.m_cache_data_port_busy_cycles;
ret.m_cache_fill_port_busy_cycles = m_cache_fill_port_busy_cycles + cs.m_cache_fill_port_busy_cycles;
@@ -501,8 +716,11 @@ cache_stats &cache_stats::operator+=(const cache_stats &cs){
///
for(unsigned type=0; type<NUM_MEM_ACCESS_TYPE; ++type){
for(unsigned status=0; status<NUM_CACHE_REQUEST_STATUS; ++status){
- m_stats[type][status] += cs(type, status);
+ m_stats[type][status] += cs(type, status, false);
}
+ for(unsigned status=0; status<NUM_CACHE_RESERVATION_FAIL_STATUS; ++status){
+ m_fail_stats[type][status] += cs(type, status, true);
+ }
}
m_cache_port_available_cycles += cs.m_cache_port_available_cycles;
m_cache_data_port_busy_cycles += cs.m_cache_data_port_busy_cycles;
@@ -528,19 +746,34 @@ void cache_stats::print_stats(FILE *fout, const char *cache_name) const{
cache_request_status_str((enum cache_request_status)status),
m_stats[type][status]);
if(status != RESERVATION_FAIL)
- total_access[type]+= m_stats[type][status];
+ total_access[type]+= m_stats[type][status];
}
}
for (unsigned type = 0; type < NUM_MEM_ACCESS_TYPE; ++type) {
- if(total_access[type] > 0)
- fprintf(fout, "\t%s[%s][%s] = %u\n",
- m_cache_name.c_str(),
- mem_access_type_str((enum mem_access_type)type),
- "TOTAL_ACCESS",
- total_access[type]);
+ if(total_access[type] > 0)
+ fprintf(fout, "\t%s[%s][%s] = %u\n",
+ m_cache_name.c_str(),
+ mem_access_type_str((enum mem_access_type)type),
+ "TOTAL_ACCESS",
+ total_access[type]);
}
}
+void cache_stats::print_fail_stats(FILE *fout, const char *cache_name) const{
+ std::string m_cache_name = cache_name;
+ for (unsigned type = 0; type < NUM_MEM_ACCESS_TYPE; ++type) {
+ for (unsigned fail = 0; fail < NUM_CACHE_RESERVATION_FAIL_STATUS; ++fail) {
+ if(m_fail_stats[type][fail] > 0){
+ fprintf(fout, "\t%s[%s][%s] = %u\n",
+ m_cache_name.c_str(),
+ mem_access_type_str((enum mem_access_type)type),
+ cache_fail_status_str((enum cache_reservation_fail_reason)fail),
+ m_fail_stats[type][fail]);
+ }
+ }
+ }
+}
+
void cache_sub_stats::print_port_stats(FILE *fout, const char *cache_name) const
{
float data_port_util = 0.0f;
@@ -580,10 +813,10 @@ void cache_stats::get_sub_stats(struct cache_sub_stats &css) const{
for (unsigned type = 0; type < NUM_MEM_ACCESS_TYPE; ++type) {
for (unsigned status = 0; status < NUM_CACHE_REQUEST_STATUS; ++status) {
- if(status == HIT || status == MISS || status == HIT_RESERVED)
+ if(status == HIT || status == MISS || status == SECTOR_MISS || status == HIT_RESERVED)
t_css.accesses += m_stats[type][status];
- if(status == MISS)
+ if(status == MISS || status == SECTOR_MISS)
t_css.misses += m_stats[type][status];
if(status == HIT_RESERVED)
@@ -611,6 +844,16 @@ bool cache_stats::check_valid(int type, int status) const{
return false;
}
+bool cache_stats::check_fail_valid(int type, int fail) const{
+ ///
+ /// Verify a valid access_type/access_status
+ ///
+ if((type >= 0) && (type < NUM_MEM_ACCESS_TYPE) && (fail >= 0) && (fail < NUM_CACHE_RESERVATION_FAIL_STATUS))
+ return true;
+ else
+ return false;
+}
+
void cache_stats::sample_cache_port_utility(bool data_port_busy, bool fill_port_busy)
{
m_cache_port_available_cycles += 1;
@@ -639,15 +882,18 @@ void baseline_cache::bandwidth_management::use_data_port(mem_fetch *mf, enum cac
unsigned data_cycles = data_size / port_width + ((data_size % port_width > 0)? 1 : 0);
m_data_port_occupied_cycles += data_cycles;
} break;
- case HIT_RESERVED:
+ case HIT_RESERVED:
case MISS: {
// the data array is accessed to read out the entire line for write-back
- if (was_writeback_sent(events)) {
- unsigned data_cycles = m_config.m_line_sz / port_width;
+ // in case of sector cache we need to write bank only the modified sectors
+ cache_event ev(WRITE_BACK_REQUEST_SENT);
+ if (was_writeback_sent(events, ev)) {
+ unsigned data_cycles = ev.m_evicted_block.m_modified_size / port_width;
m_data_port_occupied_cycles += data_cycles;
}
} break;
- case RESERVATION_FAIL:
+ case SECTOR_MISS:
+ case RESERVATION_FAIL:
// Does not consume any port bandwidth
break;
default:
@@ -660,7 +906,7 @@ void baseline_cache::bandwidth_management::use_data_port(mem_fetch *mf, enum cac
void baseline_cache::bandwidth_management::use_fill_port(mem_fetch *mf)
{
// assume filling the entire line with the returned request
- unsigned fill_cycles = m_config.m_line_sz / m_config.m_data_port_width;
+ unsigned fill_cycles = m_config.get_atom_sz() / m_config.m_data_port_width;
m_fill_port_occupied_cycles += fill_cycles;
}
@@ -707,21 +953,43 @@ void baseline_cache::cycle(){
/// Interface for response from lower memory level (model bandwidth restictions in caller)
void baseline_cache::fill(mem_fetch *mf, unsigned time){
+
+ if(m_config.m_mshr_type == SECTOR_ASSOC) {
+ assert(mf->get_original_mf());
+ extra_mf_fields_lookup::iterator e = m_extra_mf_fields.find(mf->get_original_mf());
+ assert( e != m_extra_mf_fields.end() );
+ e->second.pending_read--;
+
+ if(e->second.pending_read > 0) {
+ //wait for the other requests to come back
+ delete mf;
+ return;
+ } else {
+ mem_fetch *temp = mf;
+ mf = mf->get_original_mf();
+ delete temp;
+ }
+ }
+
extra_mf_fields_lookup::iterator e = m_extra_mf_fields.find(mf);
assert( e != m_extra_mf_fields.end() );
assert( e->second.m_valid );
mf->set_data_size( e->second.m_data_size );
+ mf->set_addr( e->second.m_addr );
if ( m_config.m_alloc_policy == ON_MISS )
- m_tag_array->fill(e->second.m_cache_index,time);
- else if ( m_config.m_alloc_policy == ON_FILL )
- m_tag_array->fill(e->second.m_block_addr,time);
+ m_tag_array->fill(e->second.m_cache_index,time,mf);
+ else if ( m_config.m_alloc_policy == ON_FILL ) {
+ m_tag_array->fill(e->second.m_block_addr,time,mf);
+ if(m_config.is_streaming())
+ m_tag_array->remove_pending_line(mf);
+ }
else abort();
bool has_atomic = false;
m_mshrs.mark_ready(e->second.m_block_addr, has_atomic);
if (has_atomic) {
assert(m_config.m_alloc_policy == ON_MISS);
- cache_block_t &block = m_tag_array->get_block(e->second.m_cache_index);
- block.m_status = MODIFIED; // mark line as dirty for atomic operation
+ cache_block_t* block = m_tag_array->get_block(e->second.m_cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask()); // mark line as dirty for atomic operation
}
m_extra_mf_fields.erase(mf);
m_bandwidth_management.use_fill_port(mf);
@@ -749,45 +1017,59 @@ void baseline_cache::send_read_request(new_addr_type addr, new_addr_type block_a
unsigned time, bool &do_miss, std::list<cache_event> &events, bool read_only, bool wa){
bool wb=false;
- cache_block_t e;
+ evicted_block_info e;
send_read_request(addr, block_addr, cache_index, mf, time, do_miss, wb, e, events, read_only, wa);
}
/// Read miss handler. Check MSHR hit or MSHR available
void baseline_cache::send_read_request(new_addr_type addr, new_addr_type block_addr, unsigned cache_index, mem_fetch *mf,
- unsigned time, bool &do_miss, bool &wb, cache_block_t &evicted, std::list<cache_event> &events, bool read_only, bool wa){
+ unsigned time, bool &do_miss, bool &wb, evicted_block_info &evicted, std::list<cache_event> &events, bool read_only, bool wa){
- bool mshr_hit = m_mshrs.probe(block_addr);
- bool mshr_avail = !m_mshrs.full(block_addr);
+ new_addr_type mshr_addr = m_config.mshr_addr(mf->get_addr());
+ bool mshr_hit = m_mshrs.probe(mshr_addr);
+ bool mshr_avail = !m_mshrs.full(mshr_addr);
if ( mshr_hit && mshr_avail ) {
if(read_only)
- m_tag_array->access(block_addr,time,cache_index);
+ m_tag_array->access(block_addr,time,cache_index,mf);
else
- m_tag_array->access(block_addr,time,cache_index,wb,evicted);
+ m_tag_array->access(block_addr,time,cache_index,wb,evicted,mf);
- m_mshrs.add(block_addr,mf);
+ m_mshrs.add(mshr_addr,mf);
do_miss = true;
+
} else if ( !mshr_hit && mshr_avail && (m_miss_queue.size() < m_config.m_miss_queue_size) ) {
if(read_only)
- m_tag_array->access(block_addr,time,cache_index);
+ m_tag_array->access(block_addr,time,cache_index,mf);
else
- m_tag_array->access(block_addr,time,cache_index,wb,evicted);
+ m_tag_array->access(block_addr,time,cache_index,wb,evicted,mf);
- m_mshrs.add(block_addr,mf);
- m_extra_mf_fields[mf] = extra_mf_fields(block_addr,cache_index, mf->get_data_size());
- mf->set_data_size( m_config.get_line_sz() );
+ m_mshrs.add(mshr_addr,mf);
+ if(m_config.is_streaming() && m_config.m_cache_type == SECTOR){
+ m_tag_array->add_pending_line(mf);
+ }
+ m_extra_mf_fields[mf] = extra_mf_fields(mshr_addr,mf->get_addr(),cache_index, mf->get_data_size(), m_config);
+ mf->set_data_size( m_config.get_atom_sz() );
+ mf->set_addr( mshr_addr );
m_miss_queue.push_back(mf);
mf->set_status(m_miss_queue_status,time);
if(!wa)
- events.push_back(READ_REQUEST_SENT);
+ events.push_back(cache_event(READ_REQUEST_SENT));
+
do_miss = true;
}
+ else if(mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_MERGE_ENRTY_FAIL);
+ else if (!mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_ENRTY_FAIL);
+ else
+ assert(0);
}
/// Sends write request to lower level memory (write or writeback)
void data_cache::send_write_request(mem_fetch *mf, cache_event request, unsigned time, std::list<cache_event> &events){
- events.push_back(request);
+
+ events.push_back(request);
m_miss_queue.push_back(mf);
mf->set_status(m_miss_queue_status,time);
}
@@ -798,40 +1080,44 @@ void data_cache::send_write_request(mem_fetch *mf, cache_event request, unsigned
/// Write-back hit: Mark block as modified
cache_request_status data_cache::wr_hit_wb(new_addr_type addr, unsigned cache_index, mem_fetch *mf, unsigned time, std::list<cache_event> &events, enum cache_request_status status ){
new_addr_type block_addr = m_config.block_addr(addr);
- m_tag_array->access(block_addr,time,cache_index); // update LRU state
- cache_block_t &block = m_tag_array->get_block(cache_index);
- block.m_status = MODIFIED;
+ m_tag_array->access(block_addr,time,cache_index,mf); // update LRU state
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask());
return HIT;
}
/// Write-through hit: Directly send request to lower level memory
cache_request_status data_cache::wr_hit_wt(new_addr_type addr, unsigned cache_index, mem_fetch *mf, unsigned time, std::list<cache_event> &events, enum cache_request_status status ){
- if(miss_queue_full(0))
+ if(miss_queue_full(0)) {
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
return RESERVATION_FAIL; // cannot handle request this cycle
+ }
new_addr_type block_addr = m_config.block_addr(addr);
- m_tag_array->access(block_addr,time,cache_index); // update LRU state
- cache_block_t &block = m_tag_array->get_block(cache_index);
- block.m_status = MODIFIED;
+ m_tag_array->access(block_addr,time,cache_index,mf); // update LRU state
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask());
// generate a write-through
- send_write_request(mf, WRITE_REQUEST_SENT, time, events);
+ send_write_request(mf, cache_event(WRITE_REQUEST_SENT), time, events);
return HIT;
}
/// Write-evict hit: Send request to lower level memory and invalidate corresponding block
cache_request_status data_cache::wr_hit_we(new_addr_type addr, unsigned cache_index, mem_fetch *mf, unsigned time, std::list<cache_event> &events, enum cache_request_status status ){
- if(miss_queue_full(0))
+ if(miss_queue_full(0)) {
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
return RESERVATION_FAIL; // cannot handle request this cycle
+ }
// generate a write-through/evict
- cache_block_t &block = m_tag_array->get_block(cache_index);
- send_write_request(mf, WRITE_REQUEST_SENT, time, events);
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ send_write_request(mf, cache_event(WRITE_REQUEST_SENT), time, events);
// Invalidate block
- block.m_status = INVALID;
+ block->set_status(INVALID, mf->get_access_sector_mask());
return HIT;
}
@@ -850,34 +1136,46 @@ enum cache_request_status data_cache::wr_hit_global_we_local_wb(new_addr_type ad
/// Write-allocate miss: Send write request to lower level memory
// and send a read request for the same block
enum cache_request_status
-data_cache::wr_miss_wa( new_addr_type addr,
+data_cache::wr_miss_wa_naive( new_addr_type addr,
unsigned cache_index, mem_fetch *mf,
unsigned time, std::list<cache_event> &events,
enum cache_request_status status )
{
new_addr_type block_addr = m_config.block_addr(addr);
+ new_addr_type mshr_addr = m_config.mshr_addr(mf->get_addr());
// Write allocate, maximum 3 requests (write miss, read request, write back request)
// Conservatively ensure the worst-case request can be handled this cycle
- bool mshr_hit = m_mshrs.probe(block_addr);
- bool mshr_avail = !m_mshrs.full(block_addr);
+ bool mshr_hit = m_mshrs.probe(mshr_addr);
+ bool mshr_avail = !m_mshrs.full(mshr_addr);
if(miss_queue_full(2)
|| (!(mshr_hit && mshr_avail)
- && !(!mshr_hit && mshr_avail
- && (m_miss_queue.size() < m_config.m_miss_queue_size))))
+ && !(!mshr_hit && mshr_avail && (m_miss_queue.size() < m_config.m_miss_queue_size)))) {
+ //check what is the exactly the failure reason
+ if(miss_queue_full(2) )
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
+ else if(mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_MERGE_ENRTY_FAIL);
+ else if (!mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_ENRTY_FAIL);
+ else
+ assert(0);
+
return RESERVATION_FAIL;
+ }
- send_write_request(mf, WRITE_REQUEST_SENT, time, events);
+ send_write_request(mf, cache_event(WRITE_REQUEST_SENT), time, events);
// Tries to send write allocate request, returns true on success and false on failure
//if(!send_write_allocate(mf, addr, block_addr, cache_index, time, events))
// return RESERVATION_FAIL;
const mem_access_t *ma = new mem_access_t( m_wr_alloc_type,
mf->get_addr(),
- mf->get_data_size(),
+ m_config.get_atom_sz(),
false, // Now performing a read
mf->get_access_warp_mask(),
- mf->get_access_byte_mask() );
+ mf->get_access_byte_mask(),
+ mf->get_access_sector_mask());
mem_fetch *n_mf = new mem_fetch( *ma,
NULL,
@@ -889,20 +1187,22 @@ data_cache::wr_miss_wa( new_addr_type addr,
bool do_miss = false;
bool wb = false;
- cache_block_t evicted;
+ evicted_block_info evicted;
// Send read request resulting from write miss
send_read_request(addr, block_addr, cache_index, n_mf, time, do_miss, wb,
evicted, events, false, true);
+ events.push_back(cache_event(WRITE_ALLOCATE_SENT));
+
if( do_miss ){
// If evicted block is modified and not a write-through
// (already modified lower level)
if( wb && (m_config.m_write_policy != WRITE_THROUGH) ) {
+ assert(status == MISS); //SECTOR_MISS and HIT_RESERVED should not send write back
mem_fetch *wb = m_memfetch_creator->alloc(evicted.m_block_addr,
- m_wrbk_type,m_config.get_line_sz(),true);
- m_miss_queue.push_back(wb);
- wb->set_status(m_miss_queue_status,time);
+ m_wrbk_type,evicted.m_modified_size,true);
+ send_write_request(wb, cache_event(WRITE_BACK_REQUEST_SENT, evicted), time, events);
}
return MISS;
}
@@ -910,6 +1210,177 @@ data_cache::wr_miss_wa( new_addr_type addr,
return RESERVATION_FAIL;
}
+
+enum cache_request_status
+data_cache::wr_miss_wa_fetch_on_write( new_addr_type addr,
+ unsigned cache_index, mem_fetch *mf,
+ unsigned time, std::list<cache_event> &events,
+ enum cache_request_status status )
+{
+ new_addr_type block_addr = m_config.block_addr(addr);
+ new_addr_type mshr_addr = m_config.mshr_addr(mf->get_addr());
+
+ if(mf->get_access_byte_mask().count() == m_config.get_atom_sz())
+ {
+ //if the request writes to the whole cache line/sector, then, write and set cache line Modified.
+ //and no need to send read request to memory or reserve mshr
+
+ if(miss_queue_full(0)) {
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
+ return RESERVATION_FAIL; // cannot handle request this cycle
+ }
+
+ bool wb = false;
+ evicted_block_info evicted;
+
+ cache_request_status status = m_tag_array->access(block_addr,time,cache_index,wb,evicted,mf);
+ assert(status != HIT);
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask());
+ if(status == HIT_RESERVED)
+ block->set_ignore_on_fill(true, mf->get_access_sector_mask());
+
+ if( status != RESERVATION_FAIL ){
+ // If evicted block is modified and not a write-through
+ // (already modified lower level)
+ if( wb && (m_config.m_write_policy != WRITE_THROUGH) ) {
+ mem_fetch *wb = m_memfetch_creator->alloc(evicted.m_block_addr,
+ m_wrbk_type,evicted.m_modified_size,true);
+ send_write_request(wb, cache_event(WRITE_BACK_REQUEST_SENT, evicted), time, events);
+ }
+ return MISS;
+ }
+ return RESERVATION_FAIL;
+ }
+ else
+ {
+ bool mshr_hit = m_mshrs.probe(mshr_addr);
+ bool mshr_avail = !m_mshrs.full(mshr_addr);
+ if(miss_queue_full(1)
+ || (!(mshr_hit && mshr_avail)
+ && !(!mshr_hit && mshr_avail && (m_miss_queue.size() < m_config.m_miss_queue_size)))) {
+ //check what is the exactly the failure reason
+ if(miss_queue_full(1) )
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
+ else if(mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_MERGE_ENRTY_FAIL);
+ else if (!mshr_hit && !mshr_avail)
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_ENRTY_FAIL);
+ else
+ assert(0);
+
+ return RESERVATION_FAIL;
+ }
+
+
+ //prevent Write - Read - Write in pending mshr
+ //allowing another write will override the value of the first write, and the pending read request will read incorrect result from the second write
+ if(m_mshrs.probe(mshr_addr) && m_mshrs.is_read_after_write_pending(mshr_addr) && mf->is_write())
+ {
+ //assert(0);
+ m_stats.inc_fail_stats(mf->get_access_type(), MSHR_RW_PENDING);
+ return RESERVATION_FAIL;
+ }
+
+ const mem_access_t *ma = new mem_access_t( m_wr_alloc_type,
+ mf->get_addr(),
+ m_config.get_atom_sz(),
+ false, // Now performing a read
+ mf->get_access_warp_mask(),
+ mf->get_access_byte_mask(),
+ mf->get_access_sector_mask());
+
+ mem_fetch *n_mf = new mem_fetch( *ma,
+ NULL,
+ mf->get_ctrl_size(),
+ mf->get_wid(),
+ mf->get_sid(),
+ mf->get_tpc(),
+ mf->get_mem_config(),
+ NULL,
+ mf);
+
+
+ new_addr_type block_addr = m_config.block_addr(addr);
+ bool do_miss = false;
+ bool wb = false;
+ evicted_block_info evicted;
+ send_read_request( addr,
+ block_addr,
+ cache_index,
+ n_mf, time, do_miss, wb, evicted, events, false, true);
+
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_modified_on_fill(true, mf->get_access_sector_mask());
+
+ events.push_back(cache_event(WRITE_ALLOCATE_SENT));
+
+ if( do_miss ){
+ // If evicted block is modified and not a write-through
+ // (already modified lower level)
+ if(wb && (m_config.m_write_policy != WRITE_THROUGH) ){
+ mem_fetch *wb = m_memfetch_creator->alloc(evicted.m_block_addr,
+ m_wrbk_type,evicted.m_modified_size,true);
+ send_write_request(wb, cache_event(WRITE_BACK_REQUEST_SENT, evicted), time, events);
+ }
+ return MISS;
+ }
+ return RESERVATION_FAIL;
+ }
+}
+
+enum cache_request_status
+data_cache::wr_miss_wa_lazy_fetch_on_read( new_addr_type addr,
+ unsigned cache_index, mem_fetch *mf,
+ unsigned time, std::list<cache_event> &events,
+ enum cache_request_status status )
+{
+
+ new_addr_type block_addr = m_config.block_addr(addr);
+ new_addr_type mshr_addr = m_config.mshr_addr(mf->get_addr());
+
+
+ //if the request writes to the whole cache line/sector, then, write and set cache line Modified.
+ //and no need to send read request to memory or reserve mshr
+
+ if(miss_queue_full(0)) {
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
+ return RESERVATION_FAIL; // cannot handle request this cycle
+ }
+
+ bool wb = false;
+ evicted_block_info evicted;
+
+ cache_request_status m_status = m_tag_array->access(block_addr,time,cache_index,wb,evicted,mf);
+ assert(m_status != HIT);
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask());
+ if(m_status == HIT_RESERVED) {
+ block->set_ignore_on_fill(true, mf->get_access_sector_mask());
+ block->set_modified_on_fill(true, mf->get_access_sector_mask());
+ }
+
+ if(mf->get_access_byte_mask().count() == m_config.get_atom_sz())
+ {
+ block->set_m_readable(true, mf->get_access_sector_mask());
+ } else
+ {
+ block->set_m_readable(false, mf->get_access_sector_mask());
+ }
+
+ if( m_status != RESERVATION_FAIL ){
+ // If evicted block is modified and not a write-through
+ // (already modified lower level)
+ if( wb && (m_config.m_write_policy != WRITE_THROUGH) ) {
+ mem_fetch *wb = m_memfetch_creator->alloc(evicted.m_block_addr,
+ m_wrbk_type,evicted.m_modified_size,true);
+ send_write_request(wb, cache_event(WRITE_BACK_REQUEST_SENT, evicted), time, events);
+ }
+ return MISS;
+ }
+ return RESERVATION_FAIL;
+}
+
/// No write-allocate miss: Simply send write request to lower level memory
enum cache_request_status
data_cache::wr_miss_no_wa( new_addr_type addr,
@@ -919,11 +1390,14 @@ data_cache::wr_miss_no_wa( new_addr_type addr,
std::list<cache_event> &events,
enum cache_request_status status )
{
- if(miss_queue_full(0))
- return RESERVATION_FAIL; // cannot handle request this cycle
+ if(miss_queue_full(0)) {
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
+ return RESERVATION_FAIL; // cannot handle request this cycle
+ }
+
// on miss, generate write through (no write buffering -- too many threads for that)
- send_write_request(mf, WRITE_REQUEST_SENT, time, events);
+ send_write_request(mf, cache_event(WRITE_REQUEST_SENT), time, events);
return MISS;
}
@@ -941,13 +1415,13 @@ data_cache::rd_hit_base( new_addr_type addr,
enum cache_request_status status )
{
new_addr_type block_addr = m_config.block_addr(addr);
- m_tag_array->access(block_addr,time,cache_index);
+ m_tag_array->access(block_addr,time,cache_index,mf);
// Atomics treated as global read/write requests - Perform read, mark line as
// MODIFIED
if(mf->isatomic()){
assert(mf->get_access_type() == GLOBAL_ACC_R);
- cache_block_t &block = m_tag_array->get_block(cache_index);
- block.m_status = MODIFIED; // mark line as dirty
+ cache_block_t* block = m_tag_array->get_block(cache_index);
+ block->set_status(MODIFIED, mf->get_access_sector_mask()) ; // mark line as dirty
}
return HIT;
}
@@ -963,15 +1437,17 @@ data_cache::rd_miss_base( new_addr_type addr,
unsigned time,
std::list<cache_event> &events,
enum cache_request_status status ){
- if(miss_queue_full(1))
+ if(miss_queue_full(1)) {
// cannot handle request this cycle
// (might need to generate two requests)
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
return RESERVATION_FAIL;
+ }
new_addr_type block_addr = m_config.block_addr(addr);
bool do_miss = false;
bool wb = false;
- cache_block_t evicted;
+ evicted_block_info evicted;
send_read_request( addr,
block_addr,
cache_index,
@@ -982,12 +1458,12 @@ data_cache::rd_miss_base( new_addr_type addr,
// (already modified lower level)
if(wb && (m_config.m_write_policy != WRITE_THROUGH) ){
mem_fetch *wb = m_memfetch_creator->alloc(evicted.m_block_addr,
- m_wrbk_type,m_config.get_line_sz(),true);
+ m_wrbk_type,evicted.m_modified_size,true);
send_write_request(wb, WRITE_BACK_REQUEST_SENT, time, events);
}
return MISS;
}
- return RESERVATION_FAIL;
+ return RESERVATION_FAIL;
}
/// Access cache for read_only_cache: returns RESERVATION_FAIL if
@@ -998,16 +1474,16 @@ read_only_cache::access( new_addr_type addr,
unsigned time,
std::list<cache_event> &events )
{
- assert( mf->get_data_size() <= m_config.get_line_sz());
+ assert( mf->get_data_size() <= m_config.get_atom_sz());
assert(m_config.m_write_policy == READ_ONLY);
assert(!mf->get_is_write());
new_addr_type block_addr = m_config.block_addr(addr);
unsigned cache_index = (unsigned)-1;
- enum cache_request_status status = m_tag_array->probe(block_addr,cache_index);
+ enum cache_request_status status = m_tag_array->probe(block_addr,cache_index,mf);
enum cache_request_status cache_status = RESERVATION_FAIL;
if ( status == HIT ) {
- cache_status = m_tag_array->access(block_addr,time,cache_index); // update LRU state
+ cache_status = m_tag_array->access(block_addr,time,cache_index,mf); // update LRU state
}else if ( status != RESERVATION_FAIL ) {
if(!miss_queue_full(0)){
bool do_miss=false;
@@ -1018,7 +1494,10 @@ read_only_cache::access( new_addr_type addr,
cache_status = RESERVATION_FAIL;
}else{
cache_status = RESERVATION_FAIL;
+ m_stats.inc_fail_stats(mf->get_access_type(), MISS_QUEUE_FULL);
}
+ }else {
+ m_stats.inc_fail_stats(mf->get_access_type(), LINE_ALLOC_FAIL);
}
m_stats.inc_stats(mf->get_access_type(), m_stats.select_stats_status(status, cache_status));
@@ -1047,10 +1526,13 @@ data_cache::process_tag_probe( bool wr,
access_status = (this->*m_wr_hit)( addr,
cache_index,
mf, time, events, probe_status );
- }else if ( probe_status != RESERVATION_FAIL ) {
+ }else if ( (probe_status != RESERVATION_FAIL) || (probe_status == RESERVATION_FAIL && m_config.m_write_alloc_policy == NO_WRITE_ALLOCATE) ) {
access_status = (this->*m_wr_miss)( addr,
cache_index,
mf, time, events, probe_status );
+ }else {
+ //the only reason for reservation fail here is LINE_ALLOC_FAIL (i.e all lines are reserved)
+ m_stats.inc_fail_stats(mf->get_access_type(), LINE_ALLOC_FAIL);
}
}else{ // Read
if(probe_status == HIT){
@@ -1061,6 +1543,9 @@ data_cache::process_tag_probe( bool wr,
access_status = (this->*m_rd_miss)( addr,
cache_index,
mf, time, events, probe_status );
+ }else {
+ //the only reason for reservation fail here is LINE_ALLOC_FAIL (i.e all lines are reserved)
+ m_stats.inc_fail_stats(mf->get_access_type(), LINE_ALLOC_FAIL);
}
}
@@ -1080,12 +1565,12 @@ data_cache::access( new_addr_type addr,
std::list<cache_event> &events )
{
- assert( mf->get_data_size() <= m_config.get_line_sz());
+ assert( mf->get_data_size() <= m_config.get_atom_sz());
bool wr = mf->get_is_write();
new_addr_type block_addr = m_config.block_addr(addr);
unsigned cache_index = (unsigned)-1;
enum cache_request_status probe_status
- = m_tag_array->probe( block_addr, cache_index );
+ = m_tag_array->probe( block_addr, cache_index, mf, true);
enum cache_request_status access_status
= process_tag_probe( wr, probe_status, addr, cache_index, mf, time, events );
m_stats.inc_stats(mf->get_access_type(),
@@ -1134,7 +1619,7 @@ enum cache_request_status tex_cache::access( new_addr_type addr, mem_fetch *mf,
// at this point, we will accept the request : access tags and immediately allocate line
new_addr_type block_addr = m_config.block_addr(addr);
unsigned cache_index = (unsigned)-1;
- enum cache_request_status status = m_tags.access(block_addr,time,cache_index);
+ enum cache_request_status status = m_tags.access(block_addr,time,cache_index,mf);
enum cache_request_status cache_status = RESERVATION_FAIL;
assert( status != RESERVATION_FAIL );
assert( status != HIT_RESERVED ); // as far as tags are concerned: HIT or MISS
@@ -1142,12 +1627,12 @@ enum cache_request_status tex_cache::access( new_addr_type addr, mem_fetch *mf,
if ( status == MISS ) {
// we need to send a memory request...
unsigned rob_index = m_rob.push( rob_entry(cache_index, mf, block_addr) );
- m_extra_mf_fields[mf] = extra_mf_fields(rob_index);
+ m_extra_mf_fields[mf] = extra_mf_fields(rob_index, m_config);
mf->set_data_size(m_config.get_line_sz());
- m_tags.fill(cache_index,time); // mark block as valid
+ m_tags.fill(cache_index,time,mf); // mark block as valid
m_request_fifo.push(mf);
mf->set_status(m_request_queue_status,time);
- events.push_back(READ_REQUEST_SENT);
+ events.push_back(cache_event(READ_REQUEST_SENT));
cache_status = MISS;
} else {
// the value *will* *be* in the cache already
@@ -1174,7 +1659,7 @@ void tex_cache::cycle(){
unsigned rob_index = m_rob.next_pop_index();
const rob_entry &r = m_rob.peek(rob_index);
assert( r.m_request == e.m_request );
- assert( r.m_block_addr == m_config.block_addr(e.m_request->get_addr()) );
+ //assert( r.m_block_addr == m_config.block_addr(e.m_request->get_addr()) );
if ( r.m_ready ) {
assert( r.m_index == e.m_cache_index );
m_cache[r.m_index].m_valid = true;
@@ -1197,6 +1682,23 @@ void tex_cache::cycle(){
/// Place returning cache block into reorder buffer
void tex_cache::fill( mem_fetch *mf, unsigned time )
{
+ if(m_config.m_mshr_type == SECTOR_TEX_FIFO) {
+ assert(mf->get_original_mf());
+ extra_mf_fields_lookup::iterator e = m_extra_mf_fields.find(mf->get_original_mf());
+ assert( e != m_extra_mf_fields.end() );
+ e->second.pending_read--;
+
+ if(e->second.pending_read > 0) {
+ //wait for the other requests to come back
+ delete mf;
+ return;
+ } else {
+ mem_fetch *temp = mf;
+ mf = mf->get_original_mf();
+ delete temp;
+ }
+ }
+
extra_mf_fields_lookup::iterator e = m_extra_mf_fields.find(mf);
assert( e != m_extra_mf_fields.end() );
assert( e->second.m_valid );