source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/include/Parameters.h @ 76

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

Add new component : Read_unit (no tested)
Change functionnal_unit : now use type and operation to execute the good function
Change New_Component's script

File size: 3.5 KB
Line 
1#ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_read_unit_read_unit_read_queue_Parameters_h
2#define morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_read_unit_read_unit_read_queue_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include "Behavioural/include/Types.h"
14
15#include <math.h>
16
17namespace morpheo {
18namespace behavioural {
19namespace core {
20namespace multi_execute_loop {
21namespace execute_loop {
22namespace multi_read_unit {
23namespace read_unit {
24namespace read_queue {
25
26
27  class Parameters : public morpheo::behavioural::Parameters
28  {
29    //-----[ fields ]------------------------------------------------------------
30  public : const uint32_t    _size_queue           ;
31  public : const uint32_t    _nb_context           ;
32  public : const uint32_t    _nb_front_end         ;
33  public : const uint32_t    _nb_ooo_engine        ;
34  public : const uint32_t    _nb_packet            ;
35  public : const uint32_t    _size_general_data    ;
36  public : const uint32_t    _size_special_data    ;
37  public : const uint32_t    _nb_general_register  ;
38  public : const uint32_t    _nb_special_register  ;
39  public : const uint32_t    _nb_operation         ;
40  public : const uint32_t    _nb_type              ;
41  public : const uint32_t    _nb_gpr_write         ;
42  public : const uint32_t    _nb_spr_write         ;
43  public : const uint32_t    _size_store_queue     ;
44  public : const uint32_t    _size_load_queue      ;
45
46  public : const uint32_t    _nb_gpr_read          ;
47  public : const uint32_t    _nb_spr_read          ;   
48  public : const uint32_t    _size_context_id      ;
49  public : const uint32_t    _size_front_end_id    ;
50  public : const uint32_t    _size_ooo_engine_id   ;
51  public : const uint32_t    _size_rob_id          ;
52  public : const uint32_t    _size_general_register;
53  public : const uint32_t    _size_special_register;
54  public : const uint32_t    _size_operation       ;
55  public : const uint32_t    _size_type            ;
56
57  public : const bool        _have_port_context_id   ;
58  public : const bool        _have_port_front_end_id ;
59  public : const bool        _have_port_ooo_engine_id;
60  public : const bool        _have_port_rob_id       ;
61
62  public : const uint32_t    _size_internal_queue;
63
64    //-----[ methods ]-----------------------------------------------------------
65  public : Parameters  (uint32_t size_queue         ,
66                        uint32_t nb_context         ,
67                        uint32_t nb_front_end       ,
68                        uint32_t nb_ooo_engine      ,
69                        uint32_t nb_packet          ,
70                        uint32_t size_general_data  ,
71                        uint32_t size_special_data  ,
72                        uint32_t nb_general_register,
73                        uint32_t nb_special_register,
74                        uint32_t nb_operation       ,
75                        uint32_t nb_type            ,
76                        uint32_t nb_gpr_write       ,
77                        uint32_t nb_spr_write       ,
78                        uint32_t size_store_queue   ,
79                        uint32_t size_load_queue    );
80
81  public : Parameters  (Parameters & param) ;
82  public : ~Parameters () ;
83
84  public : std::string          msg_error (void);
85
86  public :        std::string   print      (uint32_t depth);
87  public : friend std::ostream& operator<< (std::ostream& output_stream,
88                                            morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::read_queue::Parameters & x);
89  };
90
91}; // end namespace read_queue
92}; // end namespace read_unit
93}; // end namespace multi_read_unit
94}; // end namespace execute_loop
95}; // end namespace multi_execute_loop
96}; // end namespace core
97
98}; // end namespace behavioural
99}; // end namespace morpheo             
100
101#endif
Note: See TracBrowser for help on using the repository browser.