source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Special_Register_unit/include/Parameters.h @ 117

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

1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_special_register_unit_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_special_register_unit_Parameters_h
3
4/*
5 * $Id: Parameters.h 117 2009-05-16 14:42:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_ooo_engine {
18namespace ooo_engine {
19namespace special_register_unit {
20
21
22  class Parameters : public morpheo::behavioural::Parameters
23  {
24    //-----[ fields ]------------------------------------------------------------
25  public : uint32_t     _nb_front_end          ;
26  public : uint32_t   * _nb_context            ;//[nb_front_end]
27  public : uint32_t     _nb_inst_reexecute     ;
28  public : bool     *** _implement_group       ;//[nb_front_end][nb_context][NB_GROUP]
29  public : uint32_t  ** _translate_num_context_to_num_thread; //[nb_front_end][nb_context]
30
31  public : uint32_t     _max_nb_context        ;
32//public : uint32_t     _size_front_end_id     ;
33//public : uint32_t     _size_context_id       ;
34//                   
35//public : bool         _have_port_front_end_id;
36//public : bool         _have_port_context_id  ;
37
38
39    //-----[ methods ]-----------------------------------------------------------
40  public : Parameters  (uint32_t     nb_front_end          ,
41                        uint32_t   * nb_context            ,
42                        uint32_t     nb_inst_reexecute     ,
43                        bool     *** implement_group       ,
44                        uint32_t  ** translate_num_context_to_num_thread, //[nb_front_end][nb_context]
45                        bool         is_toplevel=false
46                        );
47//   public : Parameters  (Parameters & param) ;
48  public : ~Parameters () ;
49
50  public :        void            copy       (void);
51
52  public :        Parameters_test msg_error  (void);
53
54  public :        std::string     print      (uint32_t depth);
55  public : friend std::ostream&   operator<< (std::ostream& output_stream,
56                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::special_register_unit::Parameters & x);
57  };
58
59}; // end namespace special_register_unit
60}; // end namespace ooo_engine
61}; // end namespace multi_ooo_engine
62}; // end namespace core
63
64}; // end namespace behavioural
65}; // end namespace morpheo             
66
67#endif
Note: See TracBrowser for help on using the repository browser.