source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/include/Statistics.h @ 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: 2.3 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_two_level_branch_predictor_glue_Statistics_h
3#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_two_level_branch_predictor_glue_Statistics_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Common/include/Debug.h"
13#include "Behavioural/include/Statistics.h"
14#include "Behavioural/include/Parameters_Statistics.h"
15//#include "Behavioural/Generic/Group/include/Statistics.h"
16#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/include/Parameters.h"
17
18//using namespace morpheo::behavioural::generic::group;
19
20namespace morpheo                    {
21namespace behavioural {
22namespace core {
23namespace multi_front_end {
24namespace front_end {
25namespace prediction_unit {
26namespace direction {
27
28namespace meta_predictor {
29namespace two_level_branch_predictor {
30namespace two_level_branch_predictor_glue {
31
32
33  class Statistics : public morpheo::behavioural::Statistics
34  {
35    // -----[ fields ]----------------------------------------------------
36  private  : const Parameters                                   _parameters;
37
38    // -----[ methods ]---------------------------------------------------
39  public   : Statistics  (string                                      name                       ,
40                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
41                          Parameters                                  parameters
42                          );
43//public   : Statistics  (Statistics & stat);
44  public   : ~Statistics () ;
45   
46  public   : string   print_body (uint32_t depth);
47  public   : string   print      (uint32_t depth);
48  public   : void     add        ();
49
50  public   : friend ostream& operator<< (ostream& output_stream,
51                                         const Statistics & x);
52
53  };
54
55}; // end namespace two_level_branch_predictor_glue
56}; // end namespace two_level_branch_predictor
57}; // end namespace meta_predictor
58
59}; // end namespace core
60}; // end namespace multi_front_end
61}; // end namespace front_end
62}; // end namespace prediction_unit
63}; // end namespace direction
64
65
66}; // end namespace behavioural
67}; // end namespace morpheo
68
69#endif
70#endif
Note: See TracBrowser for help on using the repository browser.