source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_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.3 KB
Line 
1#ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_register_unit_register_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_execute_loop_execute_loop_register_unit_register_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#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_execute_loop {
19namespace execute_loop {
20namespace register_unit {
21namespace register_unit_glue {
22
23
24
25
26  class Parameters : public morpheo::behavioural::Parameters
27  {
28    //-----[ fields ]------------------------------------------------------------
29  public : uint32_t    _nb_ooo_engine        ;
30//public : uint32_t    _size_general_data    ;
31//public : uint32_t    _size_special_data    ;
32  public : uint32_t    _nb_gpr_read          ;
33  public : uint32_t    _nb_spr_read          ;   
34  public : uint32_t    _nb_gpr_write         ;
35  public : uint32_t    _nb_spr_write         ;
36  public : uint32_t  * _nb_inst_insert_rob   ;
37  public : uint32_t  * _nb_inst_retire_rob   ;
38
39//public : bool        _have_port_ooo_engine_id;
40   
41    //-----[ methods ]-----------------------------------------------------------
42  public : Parameters  (uint32_t   nb_ooo_engine        ,
43                        uint32_t   size_general_data    ,
44                        uint32_t   size_special_data    ,
45                        uint32_t   nb_gpr_read          ,
46                        uint32_t   nb_spr_read          ,   
47                        uint32_t   nb_gpr_write         ,
48                        uint32_t   nb_spr_write         ,
49                        uint32_t * nb_inst_insert_rob   ,
50                        uint32_t * nb_inst_retire_rob   ,
51                        bool       is_toplevel=false);
52//public : Parameters  (Parameters & param) ;
53  public : ~Parameters () ;
54   
55  public :        void            copy       (void);
56   
57  public :        Parameters_test msg_error  (void);
58
59  public :        std::string   print      (uint32_t depth);
60  public : friend std::ostream& operator<< (std::ostream& output_stream,
61                                            morpheo::behavioural::core::multi_execute_loop::execute_loop::register_unit::register_unit_glue::Parameters & x);
62  };
63
64}; // end namespace register_unit_glue
65}; // end namespace register_unit
66}; // end namespace execute_loop
67}; // end namespace multi_execute_loop
68}; // end namespace core
69
70}; // end namespace behavioural
71}; // end namespace morpheo             
72
73#endif
Note: See TracBrowser for help on using the repository browser.