source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/src/Two_Level_Branch_Predictor_Glue_statistics.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

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