| 1 | #ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_load_store_pointer_unit_Parameters_h |
|---|
| 2 | #define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_load_store_pointer_unit_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 | |
|---|
| 14 | namespace morpheo { |
|---|
| 15 | namespace behavioural { |
|---|
| 16 | namespace core { |
|---|
| 17 | namespace multi_ooo_engine { |
|---|
| 18 | namespace ooo_engine { |
|---|
| 19 | namespace rename_unit { |
|---|
| 20 | namespace load_store_pointer_unit { |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | class Parameters : public morpheo::behavioural::Parameters |
|---|
| 24 | { |
|---|
| 25 | //-----[ fields ]------------------------------------------------------------ |
|---|
| 26 | public : uint32_t _nb_front_end ; |
|---|
| 27 | public : uint32_t * _nb_context ; //[nb_front_end] |
|---|
| 28 | public : uint32_t _nb_load_store_queue ; |
|---|
| 29 | public : uint32_t * _size_store_queue ; //[nb_load_store_queue] |
|---|
| 30 | public : uint32_t * _size_load_queue ; //[nb_load_store_queue] |
|---|
| 31 | public : uint32_t ** _link_load_store_unit_with_thread; //[nb_front_end][nb_context] |
|---|
| 32 | public : uint32_t _nb_inst_insert ; |
|---|
| 33 | public : uint32_t _nb_inst_retire ; |
|---|
| 34 | |
|---|
| 35 | public : uint32_t _size_front_end_id ; |
|---|
| 36 | public : uint32_t _size_context_id ; |
|---|
| 37 | public : uint32_t _size_store_queue_ptr ; |
|---|
| 38 | public : uint32_t _size_load_queue_ptr ; |
|---|
| 39 | |
|---|
| 40 | public : uint32_t _have_port_front_end_id ; |
|---|
| 41 | public : uint32_t _have_port_context_id ; |
|---|
| 42 | public : uint32_t _have_port_load_queue_ptr ; |
|---|
| 43 | |
|---|
| 44 | //-----[ methods ]----------------------------------------------------------- |
|---|
| 45 | public : Parameters (uint32_t nb_front_end , |
|---|
| 46 | uint32_t * nb_context , |
|---|
| 47 | uint32_t nb_load_store_queue , |
|---|
| 48 | uint32_t * size_store_queue , |
|---|
| 49 | uint32_t * size_load_queue , |
|---|
| 50 | uint32_t ** link_load_store_unit_with_thread, |
|---|
| 51 | uint32_t nb_inst_insert , |
|---|
| 52 | uint32_t nb_inst_retire ); |
|---|
| 53 | |
|---|
| 54 | // public : Parameters (Parameters & param) ; |
|---|
| 55 | public : ~Parameters () ; |
|---|
| 56 | |
|---|
| 57 | public : std::string 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_ooo_engine::ooo_engine::rename_unit::load_store_pointer_unit::Parameters & x); |
|---|
| 62 | }; |
|---|
| 63 | |
|---|
| 64 | }; // end namespace load_store_pointer_unit |
|---|
| 65 | }; // end namespace rename_unit |
|---|
| 66 | }; // end namespace ooo_engine |
|---|
| 67 | }; // end namespace multi_ooo_engine |
|---|
| 68 | }; // end namespace core |
|---|
| 69 | }; // end namespace behavioural |
|---|
| 70 | }; // end namespace morpheo |
|---|
| 71 | |
|---|
| 72 | #endif |
|---|