source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Branch_History_Table/include/Parameters.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_branch_history_table_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_branch_history_table_Parameters_h
3
4/*
5 * $Id: Parameters.h 81 2008-04-15 18:40:01Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13// Internal structure
14#include "Behavioural/Generic/Shifter/include/Parameters.h"
15#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Parameters.h"
16#include <math.h>
17
18namespace morpheo {
19namespace behavioural {
20namespace core {
21namespace multi_front_end {
22namespace front_end {
23namespace prediction_unit {
24namespace direction {
25
26namespace meta_predictor {
27namespace two_level_branch_predictor {
28namespace branch_history_table {
29
30
31  class Parameters : public morpheo::behavioural::Parameters
32  {
33    //-----[ fields ]------------------------------------------------------------
34  public : const uint32_t _size_shifter      ;
35  public : const uint32_t _nb_shifter        ;
36  public : const uint32_t _nb_prediction     ;
37  public : const uint32_t _nb_branch_complete;
38
39  public :       morpheo::behavioural::generic::shifter::Parameters      * _param_shifter;
40  public :       morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters * _param_registerfile;
41
42    //-----[ methods ]-----------------------------------------------------------
43  public : Parameters  (uint32_t size_shifter      ,
44                        uint32_t nb_shifter        ,
45                        uint32_t nb_prediction     ,
46                        uint32_t nb_branch_complete);
47  public : Parameters  (Parameters & param) ;
48  public : ~Parameters () ;
49
50  public : string msg_error (void);
51
52  public :        string   print      (uint32_t depth);
53  public : friend ostream& operator<< (ostream& output_stream,
54                                       morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::meta_predictor::two_level_branch_predictor::branch_history_table::Parameters & x);
55  };
56
57}; // end namespace branch_history_table
58}; // end namespace two_level_branch_predictor
59}; // end namespace meta_predictor
60
61}; // end namespace core
62}; // end namespace multi_front_end
63}; // end namespace front_end
64}; // end namespace prediction_unit
65}; // end namespace direction
66
67}; // end namespace behavioural
68}; // end namespace morpheo             
69
70#endif
Note: See TracBrowser for help on using the repository browser.