Ignore:
Timestamp:
Sep 6, 2007, 6:30:49 PM (17 years ago)
Author:
rosiere
Message:
  • Banc de registre multi banc
  • Banc de registre générique.
Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/src
Files:
3 edited

Legend:

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

    r43 r53  
    1515#undef  FUNCTION
    1616#define FUNCTION "Statistics::Statistics"
    17   Statistics::Statistics  (string                name                 ,
    18                            Parameters_Statistics parameters_statistics):
     17  Statistics::Statistics  (string                  name                 ,
     18                           Parameters_Statistics * parameters_statistics):
    1919    _name                  (name                 ),
    2020    _parameters_statistics (parameters_statistics)
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Statistics_compute_cycle_xxx.cpp

    r43 r53  
    1818  {
    1919    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    20     uint32_t _return = _parameters_statistics._nb_cycle_before_begin + num_statistics*_parameters_statistics._period_save;
     20    uint32_t _return = _parameters_statistics->_nb_cycle_before_begin + num_statistics*_parameters_statistics->_period_save;
    2121    log_printf(FUNC,Behavioural,FUNCTION,"End");
    2222   
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Statistics_test_if_save.cpp

    r43 r53  
    2626
    2727    // Test if allors a new counters ...
    28     if ( ((_nb_statistics == 0) && (_period_current >= _parameters_statistics._nb_cycle_before_begin)) ||
    29          ((_nb_statistics >  0) && (_period_current >= _parameters_statistics._period_save          )) )
     28    if ( ((_nb_statistics == 0) && (_period_current >= _parameters_statistics->_nb_cycle_before_begin)) ||
     29         ((_nb_statistics >  0) && (_period_current >= _parameters_statistics->_period_save          )) )
    3030      {
    3131        save<Counters,Parameters_Counters>(counters,parameters);
Note: See TracChangeset for help on using the changeset viewer.