source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Meta_Predictor_Glue/src/Meta_Predictor_Glue_statistics.cpp @ 4

Last change on this file since 4 was 4, checked in by rosiere, 17 years ago
File size: 803 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Meta_Predictor_Glue/include/Meta_Predictor_Glue.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace stage_1_ifetch {
14namespace predictor {
15namespace meta_predictor {
16namespace meta_predictor_glue {
17
18
19  string Meta_Predictor_Glue::statistics (uint32_t depth)
20  {
21    log_printf(FUNC,Meta_Predictor_Glue,"statistics","Begin");
22
23    string txt = _stat->print(depth);
24   
25    log_printf(FUNC,Meta_Predictor_Glue,"statistics","End");
26
27    return txt;
28  };
29
30}; // end namespace meta_predictor_glue
31}; // end namespace meta_predictor
32}; // end namespace predictor
33}; // end namespace stage_1_ifetch
34
35}; // end namespace behavioural
36}; // end namespace morpheo             
37#endif
Note: See TracBrowser for help on using the repository browser.