Ignore:
Timestamp:
Mar 18, 2009, 11:36:26 PM (15 years ago)
Author:
rosiere
Message:

1) Stat_list : fix retire old and new register bug
2) Stat_list : remove read_counter and valid flag, because validation of destination is in retire step (not in commit step)
3) Model : add class Model (cf Morpheo.sim)
4) Allocation : alloc_interface_begin and alloc_interface_end to delete temporary array.
5) Script : add distexe.sh
6) Add Comparator, Multiplier, Divider. But this component are not implemented
7) Software : add Dhrystone

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces.cpp

    r81 r112  
    3939#endif
    4040
    41     if (_list_interface->empty()== false)
    42       {
    43         std::list<Interface_fifo*>::iterator i     = _list_interface->begin();
    44 
    45         while (i != _list_interface->end())
    46           {
    47             delete (*i);
    48             ++i;
    49           }
    50       }
     41    for (std::list<Interface_fifo*>::iterator it = _list_interface->begin();
     42         it!=_list_interface->end();
     43         ++it)
     44      delete (*it);
    5145
    5246    delete _list_interface;
Note: See TracChangeset for help on using the changeset viewer.