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

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 2.3 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 88 2008-12-10 18:31:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_ooo_engine {
18namespace ooo_engine {
19namespace rename_unit {
20namespace rename_unit_glue {
21
22
23  class Parameters : public morpheo::behavioural::Parameters
24  {
25    //-----[ fields ]------------------------------------------------------------
26  public : uint32_t    _nb_front_end          ;
27  public : uint32_t  * _nb_context            ;//[nb_front_end]
28  public : uint32_t    _nb_inst_insert        ;
29  public : uint32_t    _nb_inst_retire        ;
30//public : uint32_t    _size_general_data     ;
31//public : uint32_t    _size_special_register ;
32
33//public : uint32_t    _size_front_end_id     ;
34//public : uint32_t    _size_context_id       ;
35
36//public : bool        _have_port_front_end_id;
37//public : bool        _have_port_context_id  ;
38
39    //-----[ methods ]-----------------------------------------------------------
40  public : Parameters  (uint32_t    nb_front_end         ,
41                        uint32_t  * nb_context           ,
42//                      uint32_t    size_front_end_id    ,
43//                      uint32_t    size_context_id      ,
44                        uint32_t    nb_inst_insert       ,
45                        uint32_t    nb_inst_retire       ,
46                        uint32_t    size_general_data    ,
47                        uint32_t    size_special_register,
48                        bool        is_toplevel=false
49                        );
50//   public : Parameters  (Parameters & param) ;
51  public : ~Parameters () ;
52
53  public :        void            copy       (void);
54
55  public :        Parameters_test msg_error  (void);
56
57  public :        std::string     print      (uint32_t depth);
58  public : friend std::ostream&   operator<< (std::ostream& output_stream,
59                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::rename_unit_glue::Parameters & x);
60  };
61
62}; // end namespace rename_unit_glue
63}; // end namespace rename_unit
64}; // end namespace ooo_engine
65}; // end namespace multi_ooo_engine
66}; // end namespace core
67
68}; // end namespace behavioural
69}; // end namespace morpheo             
70
71#endif
Note: See TracBrowser for help on using the repository browser.