Ignore:
Timestamp:
Jun 3, 2009, 10:15:51 AM (15 years ago)
Author:
rosiere
Message:

Modif for performance :
1) Load Store Unit : store send request to valid exeception
2) Commit_unit : retire can bypass store
3) Commit_unit : add stat to manage store instruction
4) Load Store Unit and Load Store Pointer Manager : add store_queue_ptr_read
5) Fix lot of bug

Location:
trunk/IPs/systemC/Environment
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/Environment/Common/include/Debug.h

    r117 r122  
    33
    44#define DEBUG_true        true
    5 #define DEBUG_ENVIRONMENT true
    6 #define DEBUG_CACHE       true
    7 #define DEBUG_DATA        true
    8 #define DEBUG_ENDIANNESS  true
    9 #define DEBUG_QUEUE       true
    10 #define DEBUG_RAMLOCK     true
    11 #define DEBUG_SIM2OS      true
    12 #define DEBUG_TTY         true
     5#define DEBUG_ENVIRONMENT false
     6#define DEBUG_CACHE       false
     7#define DEBUG_DATA        false
     8#define DEBUG_ENDIANNESS  false
     9#define DEBUG_QUEUE       false
     10#define DEBUG_RAMLOCK     false
     11#define DEBUG_SIM2OS      false
     12#define DEBUG_TTY         false
    1313
    1414#define MSG_ENVIRONMENT "[ENVIRONMENT]"
     
    1717  do                                                                    \
    1818    {                                                                   \
    19       fprintf(stdout,str);                                              \
    20     }                                                                   \
     19      if (DEBUG_ ## component == true )                                 \
     20        {                                                               \
     21          fprintf(stdout,str);                                          \
     22        }                                                               \
     23    }                                                                   \
    2124  while(0)
    2225
  • trunk/IPs/systemC/Environment/Data/src/loadexec.c

    r117 r122  
    102102  bfd      *exec;
    103103  static   int x;
    104   int      i;
    105104  raminfo  ringo;
    106105
Note: See TracChangeset for help on using the changeset viewer.