source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/src/Statistics_print_body.cpp @ 59

Last change on this file since 59 was 59, checked in by rosiere, 17 years ago

Add Load store queue -> but not terminated and tested
Add article to sympa 2007 -> but no started

File size: 1.1 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_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 multi_execute_unit {
20namespace execute_unit {
21namespace load_store_unit {
22
23
24#undef  FUNCTION
25#define FUNCTION "Load_store_unit::print_body"
26  string Statistics::print_body (uint32_t depth)
27  {
28    log_printf(FUNC,Load_store_unit,FUNCTION,"Begin");
29
30    string        tab = string(depth,'\t');
31    ostringstream msg;
32
33    msg << tab << "";
34   
35    log_printf(FUNC,Load_store_unit,FUNCTION,"End");
36
37    return msg.str();
38  };
39
40}; // end namespace load_store_unit
41}; // end namespace execute_unit
42}; // end namespace multi_execute_unit
43}; // end namespace execute_loop
44}; // end namespace multi_execute_loop
45}; // end namespace core
46
47}; // end namespace behavioural
48}; // end namespace morpheo             
49#endif
Note: See TracBrowser for help on using the repository browser.