source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_unit_Glue/include/Parameters.h @ 139

Last change on this file since 139 was 139, checked in by rosiere, 14 years ago
  • Add test for all configuration
  • RAT : add rat scheme (depth_save)
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_rename_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_rename_unit_glue_Parameters_h
3
4/*
5 * $Id: Parameters.h 139 2010-07-30 14:47:27Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13#include "Behavioural/include/Types.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_ooo_engine {
19namespace ooo_engine {
20namespace rename_unit {
21namespace rename_unit_glue {
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        _nb_inst_insert        ;
30  public : uint32_t        _nb_inst_retire        ;
31//public : uint32_t        _size_general_data     ;
32//public : uint32_t        _size_special_register ;
33  public : Trat_scheme_t   _rat_scheme            ;
34
35//public : uint32_t    _size_front_end_id     ;
36//public : uint32_t    _size_context_id       ;
37
38//public : bool        _have_port_front_end_id;
39//public : bool        _have_port_context_id  ;
40
41    //-----[ methods ]-----------------------------------------------------------
42  public : Parameters  (uint32_t        nb_front_end         ,
43                        uint32_t      * nb_context           ,
44//                      uint32_t        size_front_end_id    ,
45//                      uint32_t        size_context_id      ,
46                        uint32_t        nb_inst_insert       ,
47                        uint32_t        nb_inst_retire       ,
48                        uint32_t        size_general_data    ,
49                        uint32_t        size_special_register,
50                        Trat_scheme_t   rat_scheme           ,
51                        bool            is_toplevel=false
52                        );
53//   public : Parameters  (Parameters & param) ;
54  public : ~Parameters () ;
55
56  public :        void            copy       (void);
57
58  public :        Parameters_test msg_error  (void);
59
60  public :        std::string     print      (uint32_t depth);
61  public : friend std::ostream&   operator<< (std::ostream& output_stream,
62                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::rename_unit_glue::Parameters & x);
63  };
64
65}; // end namespace rename_unit_glue
66}; // end namespace rename_unit
67}; // end namespace ooo_engine
68}; // end namespace multi_ooo_engine
69}; // end namespace core
70
71}; // end namespace behavioural
72}; // end namespace morpheo             
73
74#endif
Note: See TracBrowser for help on using the repository browser.