source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/src/Statistics_print_body.cpp @ 48

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

Modification des Makefile : pas de creation inutile de shell

File size: 996 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/include/Statistics.h"
10
11#include <sstream>
12using namespace std;
13
14namespace morpheo                    {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace prediction_unit {
20namespace direction {
21
22namespace meta_predictor {
23
24
25  string Statistics::print_body (uint32_t depth)
26  {
27    log_printf(FUNC,Meta_Predictor,"print_body","Begin");
28
29    string        tab = string(depth,'\t');
30    ostringstream msg;
31
32    msg << tab << "";
33   
34    log_printf(FUNC,Meta_Predictor,"print_body","End");
35
36    return msg.str();
37  };
38
39}; // end namespace meta_predictor
40
41}; // end namespace core
42}; // end namespace multi_front_end
43}; // end namespace front_end
44}; // end namespace prediction_unit
45}; // end namespace direction
46
47
48}; // end namespace behavioural
49}; // end namespace morpheo             
50#endif
Note: See TracBrowser for help on using the repository browser.