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

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 2.9 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 88 2008-12-10 18:31:39Z 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_upt_queue            ; // [nb_context]
28  public : uint32_t * _size_ufpt_queue           ; // [nb_context]
29//public : uint32_t   _size_address              ;
30  public : uint32_t   _nb_inst_predict           ;
31  public : uint32_t   _nb_inst_decod             ;
32  public : uint32_t   _nb_inst_branch_complete   ;
33  public : uint32_t   _nb_inst_update            ;
34  public : uint32_t   _size_history              ;
35  public : uint32_t * _size_ras_index            ; // [nb_context]
36  public : const bool _not_accurate_block_predict;
37
38//public : uint32_t   _size_context_id           ;
39//public : uint32_t * _size_depth                ; // [nb_context]
40//public : uint32_t   _max_size_depth            ;
41  public : uint32_t   _max_size_ras_index        ;
42                                                 
43//public : bool       _have_port_context_id      ;
44//public : bool     * _have_port_depth           ; // [nb_context]
45//public : bool       _have_port_max_depth       ;
46  public : bool       _have_port_history         ;
47   
48    //-----[ methods ]-----------------------------------------------------------
49  public : Parameters  (uint32_t   nb_context             ,
50                        uint32_t * size_upt_queue         ,
51                        uint32_t * size_ufpt_queue        ,
52                        uint32_t   size_address           ,
53                        uint32_t   nb_inst_predict        ,
54                        uint32_t   nb_inst_decod          ,
55                        uint32_t   nb_inst_branch_complete,
56                        uint32_t   nb_inst_update         ,
57                        uint32_t   size_history           ,
58                        uint32_t * size_ras_index         ,
59                        bool       is_toplevel=false);
60//public : Parameters  (Parameters & param) ;
61  public : ~Parameters () ;
62
63  public :        void            copy       (void);
64
65  public :        Parameters_test msg_error  (void);
66
67  public :        std::string     print      (uint32_t depth);
68  public : friend std::ostream&   operator<< (std::ostream& output_stream,
69                                            morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::update_prediction_table::Parameters & x);
70  };
71
72}; // end namespace update_prediction_table
73}; // end namespace prediction_unit
74}; // end namespace front_end
75}; // end namespace multi_front_end
76}; // end namespace core
77
78}; // end namespace behavioural
79}; // end namespace morpheo             
80
81#endif
Note: See TracBrowser for help on using the repository browser.