Ignore:
Timestamp:
Jan 21, 2009, 10:53:13 PM (15 years ago)
Author:
rosiere
Message:

Fix Bug :
1) Load Store Unit : check big endian
2) Commit unit & RAT : add retire_event interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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_deallocation.cpp

    r88 r104  
    77
    88#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_Address_Translation_unit/include/Register_Address_Translation_unit.h"
     9#include "Behavioural/include/Allocation.h"
    910
    1011namespace morpheo                    {
     
    6566        if (_param->_have_port_context_id)
    6667        delete []  in_RETIRE_CONTEXT_ID        ;
    67         delete []  in_RETIRE_EVENT_STATE       ;
    6868        delete []  in_RETIRE_WRITE_RD          ;
    6969        delete []  in_RETIRE_WRITE_RE          ;
     
    7575        delete [] out_RETIRE_RESTORE_RE_PHY_OLD;
    7676
    77         delete [] internal_RENAME_ACK;
    78         delete [] internal_INSERT_ACK;
    79         delete [] internal_RETIRE_ACK;
     77        DELETE1(internal_RENAME_ACK                    ,_param->_nb_inst_insert);
     78        DELETE1(internal_INSERT_ACK                    ,_param->_nb_inst_insert);
     79        DELETE1(internal_RETIRE_ACK                    ,_param->_nb_inst_retire);
     80        DELETE2(internal_RETIRE_EVENT_ACK              ,_param->_nb_front_end,_param->_nb_context[it1]);
     81
     82        DELETE2_SIGNAL( in_RETIRE_EVENT_VAL            ,_param->_nb_front_end, _param->_nb_context[it1],1);
     83        DELETE2_SIGNAL(out_RETIRE_EVENT_ACK            ,_param->_nb_front_end, _param->_nb_context[it1],1);
     84        DELETE2_SIGNAL( in_RETIRE_EVENT_STATE          ,_param->_nb_front_end, _param->_nb_context[it1],_param->_size_event_state);
    8085       
    8186        delete [] rat_gpr             ;
Note: See TracChangeset for help on using the changeset viewer.