Ignore:
Timestamp:
Apr 20, 2009, 11:29:17 PM (15 years ago)
Author:
rosiere
Message:

1) Write queue with mealy
2) Network : fix bug
3) leak memory

File:
1 edited

Legend:

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

    r112 r115  
    187187       
    188188        // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
     189        for (uint32_t i=0; i<_param->_nb_bank; ++i)
     190          while(not _rob[i].empty())
     191            {
     192              entry_t * entry = _rob[i].front();
     193              delete entry;
     194              _rob[i].pop_front();
     195            }
     196
    189197        DELETE2(_nb_cycle_idle           ,_param->_nb_front_end,_param->_nb_context [it1]);
    190198        DELETE1(_rob                     ,_param->_nb_bank);
Note: See TracChangeset for help on using the changeset viewer.