source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/Statistics_print_body.cpp @ 15

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

Interface normalisé
Début du banc de registres multi niveaux

File size: 827 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural                {
16namespace generic                    {
17namespace registerfile               {
18namespace registerfile_monolithic    {
19
20  string Statistics::print_body (uint32_t depth)
21  {
22    string        tab = string(depth,'\t');
23    ostringstream msg;
24
25    msg << _stat_port_read ->print(depth+1);
26    msg << _stat_port_write->print(depth+1);
27   
28    return msg.str();
29  };
30
31}; // end namespace registerfile_monolithic
32}; // end namespace registerfile
33}; // end namespace generic
34}; // end namespace behavioural         
35}; // end namespace morpheo             
36#endif
Note: See TracBrowser for help on using the repository browser.