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/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.5 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_pattern_history_table_Statistics_h
3#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_pattern_history_table_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/Counter/include/Statistics.h"
16#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Statistics.h"
17//#include "Behavioural/Generic/Group/include/Statistics.h"
18#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Parameters.h"
19
20//using namespace morpheo::behavioural::generic::group;
21
22namespace morpheo                    {
23namespace behavioural {
24namespace core {
25namespace multi_front_end {
26namespace front_end {
27namespace prediction_unit {
28namespace direction {
29
30namespace meta_predictor {
31namespace two_level_branch_predictor {
32namespace pattern_history_table {
33
34
35  class Statistics : public morpheo::behavioural::Statistics
36  {
37    // -----[ fields ]----------------------------------------------------
38  private  : const Parameters                                   _parameters;
39
40    // -----[ methods ]---------------------------------------------------
41  public   : Statistics  (string                                      name                       ,
42                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
43                          Parameters                                  parameters
44                          );
45//public   : Statistics  (Statistics & stat);
46  public   : ~Statistics () ;
47   
48  public   : string   print_body (uint32_t depth);
49  public   : string   print      (uint32_t depth);
50  public   : string   print      (uint32_t depth,
51                                  string   component_stat);
52  public   : void     add        ();
53
54  public   : friend ostream& operator<< (ostream& output_stream,
55                                         const Statistics & x);
56
57  };
58
59}; // end namespace pattern_history_table
60}; // end namespace two_level_branch_predictor
61}; // end namespace meta_predictor
62
63}; // end namespace core
64}; // end namespace multi_front_end
65}; // end namespace front_end
66}; // end namespace prediction_unit
67}; // end namespace direction
68
69
70}; // end namespace behavioural
71}; // end namespace morpheo
72
73#endif
74#endif
Note: See TracBrowser for help on using the repository browser.