source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Update_Prediction_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.5 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_update_prediction_table_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_update_prediction_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
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace prediction_unit {
20namespace update_prediction_table {
21
22
23  class Parameters : public morpheo::behavioural::Parameters
24  {
25    //-----[ fields ]------------------------------------------------------------
26  public : uint32_t   _nb_context             ;
27  public : uint32_t * _size_queue             ; // [nb_context]
28  public : uint32_t   _size_address           ;
29  public : uint32_t   _nb_inst_predict        ;
30  public : uint32_t   _nb_inst_decod          ;
31  public : uint32_t   _nb_inst_branch_complete;
32  public : uint32_t   _nb_inst_update         ;
33  public : uint32_t   _size_history           ;
34  public : uint32_t * _size_ras_index         ; // [nb_context]
35
36  public : uint32_t   _size_context_id        ;
37  public : uint32_t   _size_depth             ;
38  public : uint32_t   _max_size_ras_index     ;
39                     
40  public : bool       _have_port_context_id   ;
41  public : bool       _have_port_depth        ;
42  public : bool       _have_port_history      ;
43   
44    //-----[ methods ]-----------------------------------------------------------
45  public : Parameters  (uint32_t   nb_context             ,
46                        uint32_t * size_queue             ,
47                        uint32_t   size_address           ,
48                        uint32_t   nb_inst_predict        ,
49                        uint32_t   nb_inst_decod          ,
50                        uint32_t   nb_inst_branch_complete,
51                        uint32_t   nb_inst_update         ,
52                        uint32_t   size_history           ,
53                        uint32_t * size_ras_index         );
54//public : Parameters  (Parameters & param) ;
55  public : ~Parameters () ;
56
57  public :        Parameters_test msg_error  (void);
58
59  public :        std::string     print      (uint32_t depth);
60  public : friend std::ostream&   operator<< (std::ostream& output_stream,
61                                            morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::update_prediction_table::Parameters & x);
62  };
63
64}; // end namespace update_prediction_table
65}; // end namespace prediction_unit
66}; // end namespace front_end
67}; // end namespace multi_front_end
68}; // end namespace core
69
70}; // end namespace behavioural
71}; // end namespace morpheo             
72
73#endif
Note: See TracBrowser for help on using the repository browser.