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

Last change on this file since 66 was 66, checked in by rosiere, 17 years ago
  • un pas de plus vers la compatibilite avec systemC
  • modification de l'interface de read_queue : context_id devient context_id, front_end_id et ooo_engine_id
File size: 3.1 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
44  public : const uint32_t    _nb_gpr_read          ;
45  public : const uint32_t    _nb_spr_read          ;   
46  public : const uint32_t    _size_context_id      ;
47  public : const uint32_t    _size_front_end_id    ;
48  public : const uint32_t    _size_ooo_engine_id   ;
49  public : const uint32_t    _size_rob_id          ;
50  public : const uint32_t    _size_general_register;
51  public : const uint32_t    _size_special_register;
52  public : const uint32_t    _size_operation       ;
53  public : const uint32_t    _size_type            ;
54
55    //-----[ methods ]-----------------------------------------------------------
56  public : Parameters  (uint32_t size_queue         ,
57                        uint32_t nb_context         ,
58                        uint32_t nb_front_end       ,
59                        uint32_t nb_ooo_engine      ,
60                        uint32_t nb_packet          ,
61                        uint32_t size_general_data  ,
62                        uint32_t size_special_data  ,
63                        uint32_t nb_general_register,
64                        uint32_t nb_special_register,
65                        uint32_t nb_operation       ,
66                        uint32_t nb_type            ,
67                        uint32_t nb_gpr_write       ,
68                        uint32_t nb_spr_write       );
69  public : Parameters  (Parameters & param) ;
70  public : ~Parameters () ;
71
72  public : string msg_error (void);
73
74  public :        string   print      (uint32_t depth);
75  public : friend ostream& operator<< (ostream& output_stream,
76                                       morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::read_queue::Parameters & x);
77  };
78
79}; // end namespace read_queue
80}; // end namespace read_unit
81}; // end namespace multi_read_unit
82}; // end namespace execute_loop
83}; // end namespace multi_execute_loop
84}; // end namespace core
85
86}; // end namespace behavioural
87}; // end namespace morpheo             
88
89#endif
Note: See TracBrowser for help on using the repository browser.