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

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

Import Morpheo

File size: 1.3 KB
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/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace stage_1_ifetch {
14namespace predictor {
15namespace meta_predictor {
16namespace two_level_branch_predictor {
17
18
19  Statistics::Statistics (string                                      name                       ,
20                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
21                          Parameters                                  parameters
22                          ) :
23    morpheo::behavioural::Statistics(name                  ,
24                                     parameters_statistics ),
25    _parameters(parameters)
26  {
27    log_printf(FUNC,Two_Level_Branch_Predictor,"Statistics","Begin");
28    log_printf(FUNC,Two_Level_Branch_Predictor,"Statistics","End");
29  };
30 
31  Statistics::~Statistics () 
32  { 
33    log_printf(FUNC,Two_Level_Branch_Predictor,"~Statistics","Begin");
34    log_printf(FUNC,Two_Level_Branch_Predictor,"~Statistics","End");
35  };
36
37}; // end namespace two_level_branch_predictor
38}; // end namespace meta_predictor
39}; // end namespace predictor
40}; // end namespace stage_1_ifetch
41
42}; // end namespace behavioural
43}; // end namespace morpheo             
44#endif
Note: See TracBrowser for help on using the repository browser.