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