Ignore:
Timestamp:
Jan 19, 2008, 12:09:01 PM (16 years ago)
Author:
rosiere
Message:

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_genMealy_read.cpp

    r62 r71  
    1919    log_printf(FUNC,RegisterFile,"genMealy_read","Begin");
    2020
    21 #ifdef STATISTICS
    22     _stat_nb_read = 0;
    23 #endif   
    24 
    2521    for (uint32_t i=0; i<_param->_nb_port_read; i++)
    2622      {
     
    3834
    3935#ifdef STATISTICS
    40             _stat_nb_read ++;
     36            (*_stat_nb_read) ++;
    4137#endif   
    4238            // Write in registerFile
     
    6864
    6965            log_printf(TRACE,RegisterFile,"genMealy_read","[%d] -> %.8x",static_cast<uint32_t>(address),static_cast<uint32_t>(data));
    70 
    71 #ifdef STATISTICS
    72             _stat_nb_read ++;
    73 #endif   
    74             // Write in registerFile
    75            
    7666          }
    7767        else
Note: See TracChangeset for help on using the changeset viewer.