source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/src/Statistics_print_body.cpp @ 60

Last change on this file since 60 was 60, checked in by rosiere, 17 years ago
File size: 918 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace core {
17namespace multi_execute_loop {
18namespace execute_loop {
19namespace register_unit {
20
21
22#undef  FUNCTION
23#define FUNCTION "Register_unit::print_body"
24  string Statistics::print_body (uint32_t depth)
25  {
26    log_printf(FUNC,Register_unit,FUNCTION,"Begin");
27
28    string        tab = string(depth,'\t');
29    ostringstream msg;
30
31    msg << tab << "";
32   
33    log_printf(FUNC,Register_unit,FUNCTION,"End");
34
35    return msg.str();
36  };
37
38}; // end namespace register_unit
39}; // end namespace execute_loop
40}; // end namespace multi_execute_loop
41}; // end namespace core
42
43}; // end namespace behavioural
44}; // end namespace morpheo             
45#endif
Note: See TracBrowser for help on using the repository browser.