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

Last change on this file since 146 was 146, checked in by rosiere, 13 years ago

1) Integration of RegisterFile_Internal_Banked in RegisterFile?
2) Erase "read_write" interface in RegisterFile_Monolithic component
3) Add smith predictor parameters in Load_store_pointer_unit.
4) Fix not statistics flags

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_Parameters_h
3
4/*
5 * $Id: Parameters.h 146 2011-02-01 20:57:54Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Types.h"
13#include "Behavioural/include/Parameters.h"
14
15#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Direction_Glue/include/Parameters.h"
16#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/include/Parameters.h"
17
18namespace morpheo {
19namespace behavioural {
20namespace core {
21namespace multi_front_end {
22namespace front_end {
23namespace prediction_unit {
24namespace direction {
25
26  class Parameters : public morpheo::behavioural::Parameters
27  {
28    //-----[ fields ]------------------------------------------------------------
29  public : Tpredictor_t   _predictor_scheme          ;
30  public : uint32_t       _nb_inst_predict           ;
31  public : uint32_t       _nb_inst_update            ;
32//public : uint32_t       _size_address              ;
33  public : bool           _have_bht               [3];
34  public : uint32_t       _bht_size_shifter       [3];
35  public : uint32_t       _bht_nb_shifter         [3];
36  public : bool           _have_pht               [3];
37  public : uint32_t       _pht_size_counter       [3];
38  public : uint32_t       _pht_nb_counter         [3];
39  public : uint32_t       _pht_size_address_share [3];
40  public : Tpht_scheme_t  _pht_scheme             [3];
41
42  public : uint32_t       _size_history;
43                         
44  public : bool           _have_component_meta_predictor;
45  public : bool           _have_port_history;
46
47  public : morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::direction_glue::Parameters * _param_glue;
48  public : morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::meta_predictor::Parameters * _param_meta_predictor;
49
50    //-----[ methods ]-----------------------------------------------------------
51  public : Parameters  (Tpredictor_t   predictor_scheme          ,
52                        uint32_t       nb_inst_predict           ,
53                        uint32_t       nb_inst_update            ,
54                        uint32_t       size_address              ,
55                        bool           have_bht               [3],
56                        uint32_t       bht_size_shifter       [3],
57                        uint32_t       bht_nb_shifter         [3],
58                        bool           have_pht               [3],
59                        uint32_t       pht_size_counter       [3],
60                        uint32_t       pht_nb_counter         [3],
61                        uint32_t       pht_size_address_share [3],
62                        Tpht_scheme_t  pht_scheme             [3],
63                        bool           is_toplevel=false
64                        );
65
66//   public : Parameters  (Parameters & param) ;
67  public : ~Parameters () ;
68
69  public :        void            copy       (void);
70
71  public :        Parameters_test msg_error  (void);
72
73  public :        std::string     print      (uint32_t depth);
74  public : friend std::ostream&   operator<< (std::ostream& output_stream,
75                                            morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::Parameters & x);
76  };
77
78}; // end namespace direction
79}; // end namespace prediction_unit
80}; // end namespace front_end
81}; // end namespace multi_front_end
82}; // end namespace core
83
84}; // end namespace behavioural
85}; // end namespace morpheo             
86
87#endif
Note: See TracBrowser for help on using the repository browser.