| [88] | 1 | #ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_execute_loop_glue_Parameters_h |
|---|
| 2 | #define morpheo_behavioural_core_multi_execute_loop_execute_loop_execute_loop_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 "Behavioural/include/Parameters.h" |
|---|
| 12 | #include "Common/include/Debug.h" |
|---|
| 13 | |
|---|
| 14 | namespace morpheo { |
|---|
| 15 | namespace behavioural { |
|---|
| 16 | namespace core { |
|---|
| 17 | namespace multi_execute_loop { |
|---|
| 18 | namespace execute_loop { |
|---|
| 19 | namespace execute_loop_glue { |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | class Parameters : public morpheo::behavioural::Parameters |
|---|
| 23 | { |
|---|
| 24 | //-----[ fields ]------------------------------------------------------------ |
|---|
| 25 | public : uint32_t _nb_gpr_write ; |
|---|
| 26 | public : uint32_t _nb_spr_write ; |
|---|
| 27 | //public : uint32_t _size_ooo_engine_id ; |
|---|
| 28 | //public : uint32_t _size_general_register ; |
|---|
| 29 | //public : uint32_t _size_special_register ; |
|---|
| 30 | //public : uint32_t _size_general_data ; |
|---|
| 31 | //public : uint32_t _size_special_data ; |
|---|
| 32 | |
|---|
| 33 | //public : bool _have_port_ooo_engine_id; |
|---|
| 34 | |
|---|
| 35 | //-----[ methods ]----------------------------------------------------------- |
|---|
| 36 | public : Parameters (uint32_t nb_gpr_write , |
|---|
| 37 | uint32_t nb_spr_write , |
|---|
| 38 | uint32_t size_ooo_engine_id , |
|---|
| 39 | uint32_t size_general_register , |
|---|
| 40 | uint32_t size_special_register , |
|---|
| 41 | uint32_t size_general_data , |
|---|
| 42 | uint32_t size_special_data , |
|---|
| 43 | bool is_toplevel=false ); |
|---|
| 44 | // public : Parameters (Parameters & param) ; |
|---|
| 45 | public : ~Parameters () ; |
|---|
| 46 | |
|---|
| 47 | public : void copy (void); |
|---|
| 48 | |
|---|
| 49 | public : Parameters_test msg_error (void); |
|---|
| 50 | |
|---|
| 51 | public : std::string print (uint32_t depth); |
|---|
| 52 | public : friend std::ostream& operator<< (std::ostream& output_stream, |
|---|
| 53 | morpheo::behavioural::core::multi_execute_loop::execute_loop::execute_loop_glue::Parameters & x); |
|---|
| 54 | }; |
|---|
| 55 | |
|---|
| 56 | }; // end namespace execute_loop_glue |
|---|
| 57 | }; // end namespace execute_loop |
|---|
| 58 | }; // end namespace multi_execute_loop |
|---|
| 59 | }; // end namespace core |
|---|
| 60 | |
|---|
| 61 | }; // end namespace behavioural |
|---|
| 62 | }; // end namespace morpheo |
|---|
| 63 | |
|---|
| 64 | #endif |
|---|