source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/include/Statistics.h @ 45

Last change on this file since 45 was 45, checked in by rosiere, 17 years ago
  • Documentation : specification d'un cache de donnée non bloquant
  • Modification de l'aborescence
File size: 1.8 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_stage_1_ifetch_predictor_meta_predictor_Statistics_h
3#define morpheo_behavioural_stage_1_ifetch_predictor_meta_predictor_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/Stage_1_Ifetch/Predictor/Meta_Predictor/include/Parameters.h"
17
18//using namespace morpheo::behavioural::generic::group;
19
20namespace morpheo                    {
21namespace behavioural {
22namespace stage_1_ifetch {
23namespace predictor {
24namespace meta_predictor {
25
26
27  class Statistics : public morpheo::behavioural::Statistics
28  {
29    // -----[ fields ]----------------------------------------------------
30  private  : const Parameters                                   _parameters;
31
32    // -----[ methods ]---------------------------------------------------
33  public   : Statistics  (string                                      name                       ,
34                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
35                          Parameters                                  parameters
36                          );
37//public   : Statistics  (Statistics & stat);
38  public   : ~Statistics () ;
39   
40  public   : string   print_body (uint32_t depth);
41  public   : string   print      (uint32_t depth);
42  public   : string   print      (uint32_t depth, string component_stat);
43  public   : void     add        ();
44
45  public   : friend ostream& operator<< (ostream& output_stream,
46                                         const Statistics & x);
47
48  };
49
50}; // end namespace meta_predictor
51}; // end namespace predictor
52}; // end namespace stage_1_ifetch
53
54}; // end namespace behavioural
55}; // end namespace morpheo
56
57#endif
58#endif
Note: See TracBrowser for help on using the repository browser.