Ignore:
Timestamp:
Sep 28, 2010, 1:19:10 PM (14 years ago)
Author:
rosiere
Message:

1) compatible gcc 4.4.3
2) Translation file in MORPHEO_PREFIX directory

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Commit_unit/src/Commit_unit_transition.cpp

    r142 r144  
    721721                // Take num instruction
    722722                uint32_t x = internal_BANK_RETIRE_NUM_RENAME_UNIT [num_bank];
     723#ifdef DEBUG
    723724                uint32_t y = internal_BANK_RETIRE_NUM_INST        [num_bank];
    724                
     725#endif               
    725726                log_printf(TRACE,Commit_unit,FUNCTION,"  * RETIRE            [%d][%d]",x,y);
    726727                log_printf(TRACE,Commit_unit,FUNCTION,"    * num_bank     : %d",num_bank     );
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_Address_Translation_unit/src/Parameters.cpp

    r139 r144  
    88#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_Address_Translation_unit/include/Parameters.h"
    99#include "Common/include/Max.h"
     10
    1011namespace morpheo {
    1112namespace behavioural {
     
    1617namespace register_translation_unit {
    1718namespace register_address_translation_unit {
    18 
    1919
    2020#undef  FUNCTION
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_Address_Translation_unit/src/Register_Address_Translation_unit_function_depth_save_transition.cpp

    r139 r144  
    190190              // the retire interface became of the Re Order Buffer, also is in program sequence !
    191191
     192#ifdef DEBUG
    192193              Tcontext_t front_end_id = (_param->_have_port_front_end_id)?PORT_READ(in_RETIRE_FRONT_END_ID [i]):0;
    193194              Tcontext_t context_id   = (_param->_have_port_context_id  )?PORT_READ(in_RETIRE_CONTEXT_ID   [i]):0;
     195#endif
    194196              Tcontrol_t write_rd     = PORT_READ(in_RETIRE_WRITE_RD [i]);
    195197              Tcontrol_t write_re     = PORT_READ(in_RETIRE_WRITE_RE [i]);
     
    204206              if (write_rd == 1)
    205207                {
     208#ifdef DEBUG
    206209                  Tgeneral_address_t num_reg_rd_log     = PORT_READ(in_RETIRE_NUM_REG_RD_LOG     [i]);
     210#endif
    207211
    208212                  log_printf(TRACE,Register_Address_Translation_unit,FUNCTION,"    * num_reg_rd_log     : %d",num_reg_rd_log    );
     
    210214                  if (not restore)
    211215                    {
     216#ifdef DEBUG
    212217                  Tgeneral_address_t num_reg_rd_phy_new = PORT_READ(in_RETIRE_NUM_REG_RD_PHY_NEW [i]);
    213 
     218#endif
    214219                  log_printf(TRACE,Register_Address_Translation_unit,FUNCTION,"    * num_reg_rd_phy_new : %d",num_reg_rd_phy_new);
    215220
     
    221226              if (write_re == 1)
    222227                {
     228#ifdef DEBUG
    223229                  Tspecial_address_t num_reg_re_log     = PORT_READ(in_RETIRE_NUM_REG_RE_LOG     [i]);
     230#endif
    224231
    225232                  log_printf(TRACE,Register_Address_Translation_unit,FUNCTION,"    * num_reg_re_log     : %d",num_reg_re_log    );
     
    227234                  if (not restore)
    228235                    {
     236#ifdef DEBUG
    229237                  Tspecial_address_t num_reg_re_phy_new = PORT_READ(in_RETIRE_NUM_REG_RE_PHY_NEW [i]);
     238#endif
    230239
    231240                  log_printf(TRACE,Register_Address_Translation_unit,FUNCTION,"    * num_reg_re_phy_new : %d",num_reg_re_phy_new);
Note: See TracChangeset for help on using the changeset viewer.