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

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

Ajout du composant Meta_Predictor

File size: 1.1 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace stage_1_ifetch {
14namespace predictor {
15namespace meta_predictor {
16
17
18  Statistics::Statistics (string                                      name                       ,
19                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
20                          Parameters                                  parameters
21                          ) :
22    morpheo::behavioural::Statistics(name                  ,
23                                     parameters_statistics ),
24    _parameters(parameters)
25  {
26    log_printf(FUNC,Meta_Predictor,"Statistics","Begin");
27    log_printf(FUNC,Meta_Predictor,"Statistics","End");
28  };
29 
30  Statistics::~Statistics () 
31  { 
32    log_printf(FUNC,Meta_Predictor,"~Statistics","Begin");
33    log_printf(FUNC,Meta_Predictor,"~Statistics","End");
34  };
35
36}; // end namespace meta_predictor
37}; // end namespace predictor
38}; // end namespace stage_1_ifetch
39
40}; // end namespace behavioural
41}; // end namespace morpheo             
42#endif
Note: See TracBrowser for help on using the repository browser.