Ignore:
Timestamp:
Aug 2, 2010, 8:56:05 PM (14 years ago)
Author:
rosiere
Message:

Add statistics in stage IFETCH, DECODE and COMMIT (insert, retire and commit)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_statistics_declaration.cpp

    r138 r141  
    2323    if (_param->_nb_port_read>0)
    2424    _stat_port_read         = _stat->create_counters("port_read",_param->_nb_port_read,"",
    25                                                      _("Usage of read port %d."),
    26                                                      _("Percent of usage read port %d."),
    27                                                      _("Average of usage read port.")
     25                                                     _("Cycle number cycle with %d read(s)."),
     26                                                     _("Percent of cycle number cycle with %d read(s)."),
     27                                                     _("Average of read per cycle.")
    2828                                                     );
    2929
    3030    if (_param->_nb_port_write>0)
    3131    _stat_port_write        = _stat->create_counters("port_write",_param->_nb_port_write,"",
    32                                                      _("Usage of write port %d."),
    33                                                      _("Percent of usage write port %d."),
    34                                                      _("Average of usage write port.")
     32                                                     _("Cycle number cycle with %d write(s)."),
     33                                                     _("Percent of cycle number cycle with %d write(s)."),
     34                                                     _("Average of write per cycle.")
    3535                                                     );
    3636    if (_param->_nb_port_read_write>0)
    3737    _stat_port_read_write   = _stat->create_counters("port_read_write",_param->_nb_port_read_write,"",
    38                                                      _("Usage of read_write port."),
    39                                                      _("Percent of usage read_write port %d."),
    40                                                      _("Average of usage read_write port.")
     38                                                     _("Cycle number cycle with %d read_write(s)."),
     39                                                     _("Percent of cycle number cycle with %d read_write(s)."),
     40                                                     _("Average of read_write per cycle.")
    4141                                                     );
    4242
Note: See TracChangeset for help on using the changeset viewer.