source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_select/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_ooo_engine_ooo_engine_rename_unit_rename_select_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_rename_select_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#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_select/include/Types.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_ooo_engine {
19namespace ooo_engine {
20namespace rename_unit {
21namespace rename_select {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : uint32_t          _nb_front_end          ;
28  public : uint32_t *        _nb_context            ;//[nb_front_end]
29  public : uint32_t          _max_branch_speculated ;
30//public : uint32_t          _size_general_data     ;
31  public : uint32_t          _nb_inst_rename        ;
32  public : uint32_t *        _nb_inst_decod         ;//[nb_front_end]
33  public : uint32_t          _nb_front_end_select   ;
34  public : Tpriority_t       _priority              ;
35  public : Tload_balancing_t _load_balancing        ;
36
37  public : uint32_t          _max_nb_inst_decod     ;
38//public : uint32_t          _size_depth            ;
39//public : uint32_t          _size_front_end_id     ;
40//public : uint32_t          _size_context_id       ;
41
42//public : bool              _have_port_front_end_id;
43//public : bool              _have_port_context_id  ;
44//public : bool              _have_port_depth       ;
45
46    //-----[ methods ]-----------------------------------------------------------
47  public : Parameters  (uint32_t          nb_front_end         ,
48                        uint32_t *        nb_context           ,
49//                      uint32_t          size_front_end_id    ,
50//                      uint32_t          size_context_id      ,
51                        uint32_t          max_branch_speculated,
52                        uint32_t          size_general_data    ,
53                        uint32_t          nb_inst_rename       ,
54                        uint32_t *        nb_inst_decod        ,
55                        uint32_t          nb_front_end_select  ,
56                        Tpriority_t       priority             ,
57                        Tload_balancing_t load_balancing       ,
58                        bool              is_toplevel=true);
59//public : Parameters  (Parameters & param) ;
60  public : ~Parameters () ;
61
62  public :        void            copy       (void);
63
64  public :        Parameters_test msg_error  (void);
65
66  public :        std::string     print      (uint32_t depth);
67  public : friend std::ostream&   operator<< (std::ostream& output_stream,
68                                              morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::rename_select::Parameters & x);
69  };
70
71}; // end namespace rename_select
72}; // end namespace rename_unit
73}; // end namespace ooo_engine
74}; // end namespace multi_ooo_engine
75}; // end namespace core
76
77}; // end namespace behavioural
78}; // end namespace morpheo             
79
80#endif
Note: See TracBrowser for help on using the repository browser.