source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Special_Register_unit/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.1 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_special_register_unit_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_special_register_unit_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 special_register_unit {
20
21
22  class Parameters : public morpheo::behavioural::Parameters
23  {
24    //-----[ fields ]------------------------------------------------------------
25  public : uint32_t     _nb_front_end          ;
26  public : uint32_t   * _nb_context            ;//[nb_front_end]
27  public : uint32_t     _nb_inst_reexecute     ;
28  public : bool     *** _implement_group       ;//[nb_front_end][nb_context][NB_GROUP]
29
30  public : uint32_t     _max_nb_context        ;
31//public : uint32_t     _size_front_end_id     ;
32//public : uint32_t     _size_context_id       ;
33//                   
34//public : bool         _have_port_front_end_id;
35//public : bool         _have_port_context_id  ;
36
37
38    //-----[ methods ]-----------------------------------------------------------
39  public : Parameters  (uint32_t     nb_front_end          ,
40                        uint32_t   * nb_context            ,
41                        uint32_t     nb_inst_reexecute     ,
42                        bool     *** implement_group       ,
43                        bool         is_toplevel=false
44                        );
45//   public : Parameters  (Parameters & param) ;
46  public : ~Parameters () ;
47
48  public :        void            copy       (void);
49
50  public :        Parameters_test msg_error  (void);
51
52  public :        std::string     print      (uint32_t depth);
53  public : friend std::ostream&   operator<< (std::ostream& output_stream,
54                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::special_register_unit::Parameters & x);
55  };
56
57}; // end namespace special_register_unit
58}; // end namespace ooo_engine
59}; // end namespace multi_ooo_engine
60}; // end namespace core
61
62}; // end namespace behavioural
63}; // end namespace morpheo             
64
65#endif
Note: See TracBrowser for help on using the repository browser.