source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Free_List_unit/include/Parameters.h @ 109

Last change on this file since 109 was 109, checked in by rosiere, 15 years ago

1) Configuration : instance configuration file : regroup similar instance
2) Configuration : timing default = 0
3) Debug/Commit_unit : Add watch dog timer
4) Issue_queue : Test parameters : add test if type is optionnal
5) Cor_glue : Fix insert index
6) Free_list : remove bank_by_pop (else deadlock)
7) Update Free List : add register to source event

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_free_list_unit_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_free_list_unit_Parameters_h
3
4/*
5 * $Id: Parameters.h 109 2009-02-16 20:28:31Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Types.h"
13#include "Behavioural/include/Parameters.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_ooo_engine {
19namespace ooo_engine {
20namespace rename_unit {
21namespace register_translation_unit {
22namespace free_list_unit {
23
24
25  class Parameters : public morpheo::behavioural::Parameters
26  {
27    //-----[ fields ]------------------------------------------------------------
28  public : uint32_t    _nb_thread            ;
29  public : uint32_t    _nb_general_register  ;
30  public : uint32_t    _nb_special_register  ;
31  public : uint32_t    _nb_bank              ;
32  public : uint32_t    _nb_pop               ;
33  public : uint32_t    _nb_push              ;
34  public : Tpriority_t _priority             ;
35
36//public : uint32_t    _size_general_register;
37//public : uint32_t    _size_special_register;
38
39//   public : uint32_t    _nb_bank_by_pop       ;
40  public : uint32_t    _bank_gpr_nb_slot     ;
41  public : uint32_t    _bank_gpr_size_slot   ;
42  public : uint32_t    _bank_spr_nb_slot     ;
43  public : uint32_t    _bank_spr_size_slot   ;
44  public : uint32_t    _mask_gpr             ;
45  public : uint32_t    _mask_spr             ;
46
47    //-----[ methods ]-----------------------------------------------------------
48  public : Parameters  (uint32_t    nb_thread          ,
49                        uint32_t    nb_general_register,
50                        uint32_t    nb_special_register,
51                        uint32_t    nb_bank            ,
52                        uint32_t    nb_pop             ,
53                        uint32_t    nb_push            ,
54                        Tpriority_t priority           ,
55                        bool        is_toplevel=false);
56//   public : Parameters  (Parameters & param) ;
57  public : ~Parameters () ;
58
59  public :        Parameters_test msg_error  (void);
60
61  public :        void            copy       (void);
62
63  public :        std::string     print      (uint32_t depth);
64  public : friend std::ostream&   operator<< (std::ostream& output_stream,
65                                              morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::register_translation_unit::free_list_unit::Parameters & x);
66  };
67
68}; // end namespace free_list_unit
69}; // end namespace register_translation_unit
70}; // end namespace rename_unit
71}; // end namespace ooo_engine
72}; // end namespace multi_ooo_engine
73}; // end namespace core
74
75}; // end namespace behavioural
76}; // end namespace morpheo             
77
78#endif
Note: See TracBrowser for help on using the repository browser.