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.
File:
1 edited

Legend:

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

    r2 r53  
    1616@NAMESPACE_BEGIN
    1717
     18#undef  FUNCTION
     19#define FUNCTION "@COMPONENT::print"
    1820  string Statistics::print (uint32_t depth)
    1921  {
    20     log_printf(FUNC,@COMPONENT,"print","Begin");
     22    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
    2123
    2224    string        tab = string(depth,'\t');
     
    2729        << tab << "</@COMPONENT_LOWER>" << endl;
    2830   
    29     log_printf(FUNC,@COMPONENT,"print","End");
     31    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
    3032
    3133    return msg.str();
    3234  };
    3335
     36#undef  FUNCTION
     37#define FUNCTION "@COMPONENT::operator<<"
    3438  ostream& operator<< (ostream& output_stream ,
    3539                       morpheo::behavioural::@NAMESPACE_USE::Statistics & x)
    3640  {
     41    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
     42
    3743    output_stream << x.print(0);
     44
     45    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
    3846
    3947    return output_stream;
Note: See TracChangeset for help on using the changeset viewer.