source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_statistics_print.cpp @ 72

Last change on this file since 72 was 71, checked in by rosiere, 16 years ago

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File size: 573 bytes
RevLine 
[2]1#ifdef STATISTICS
2/*
3 * $Id$
4 *
[71]5 * [ Description ]
[2]6 *
7 */
8
9#include "Behavioural/@DIRECTORY/include/@COMPONENT.h"
10
11namespace morpheo {
12namespace behavioural {
13@NAMESPACE_BEGIN
14
[53]15#undef  FUNCTION
[71]16#define FUNCTION "@COMPONENT::statistics_print"
17  std::string @COMPONENT::statistics_print (uint32_t depth)
[2]18  {
[53]19    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
[2]20
[71]21    std::string txt = _stat->print(depth);
[2]22   
[53]23    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
[2]24
25    return txt;
26  };
27
28@NAMESPACE_END
29}; // end namespace behavioural
30}; // end namespace morpheo             
31#endif
Note: See TracBrowser for help on using the repository browser.