source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/src/Statistics.cpp @ 48

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

Modification des Makefile : pas de creation inutile de shell

File size: 1.5 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace prediction_unit {
17namespace direction {
18
19namespace meta_predictor {
20namespace two_level_branch_predictor {
21namespace pattern_history_table {
22
23
24  Statistics::Statistics (string                                      name                       ,
25                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
26                          Parameters                                  parameters
27                          ) :
28    morpheo::behavioural::Statistics(name                  ,
29                                     parameters_statistics ),
30    _parameters(parameters)
31  {
32    log_printf(FUNC,Pattern_History_Table,"Statistics","Begin");
33    log_printf(FUNC,Pattern_History_Table,"Statistics","End");
34  };
35 
36  Statistics::~Statistics () 
37  { 
38    log_printf(FUNC,Pattern_History_Table,"~Statistics","Begin");
39    log_printf(FUNC,Pattern_History_Table,"~Statistics","End");
40  };
41
42}; // end namespace pattern_history_table
43}; // end namespace two_level_branch_predictor
44}; // end namespace meta_predictor
45
46}; // end namespace core
47}; // end namespace multi_front_end
48}; // end namespace front_end
49}; // end namespace prediction_unit
50}; // end namespace direction
51
52
53}; // end namespace behavioural
54}; // end namespace morpheo             
55#endif
Note: See TracBrowser for help on using the repository browser.