source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_unit_Glue/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.0 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_register_translation_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_register_translation_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 "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_ooo_engine {
18namespace ooo_engine {
19namespace rename_unit {
20namespace register_translation_unit {
21namespace register_translation_unit_glue {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : uint32_t _nb_inst_insert;
28  public : uint32_t _nb_inst_retire;
29//public : uint32_t _size_general_register;
30//public : uint32_t _size_special_register;
31   
32    //-----[ methods ]-----------------------------------------------------------
33  public : Parameters  (uint32_t nb_inst_insert,
34                        uint32_t nb_inst_retire,
35                        uint32_t size_general_register,
36                        uint32_t size_special_register,
37                        bool     is_toplevel=false
38                        );
39
40//   public : Parameters  (Parameters & param) ;
41  public : ~Parameters () ;
42
43  public :        void            copy       (void);
44
45  public :        Parameters_test msg_error  (void);
46
47  public :        std::string     print      (uint32_t depth);
48  public : friend std::ostream&   operator<< (std::ostream& output_stream,
49                                              morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::register_translation_unit::register_translation_unit_glue::Parameters & x);
50  };
51
52}; // end namespace register_translation_unit_glue
53}; // end namespace register_translation_unit
54}; // end namespace rename_unit
55}; // end namespace ooo_engine
56}; // end namespace multi_ooo_engine
57}; // end namespace core
58
59}; // end namespace behavioural
60}; // end namespace morpheo             
61
62#endif
Note: See TracBrowser for help on using the repository browser.