source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/include/Parameters.h

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

1) Add new algo in ifetch queue
2) Add Cancel bit
3) new config

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1#ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_register_unit_register_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_execute_loop_execute_loop_register_unit_register_unit_glue_Parameters_h
3
4/*
5 * $Id: Parameters.h 136 2009-10-20 18:52:15Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_execute_loop {
19namespace execute_loop {
20namespace register_unit {
21namespace register_unit_glue {
22
23
24
25
26  class Parameters : public morpheo::behavioural::Parameters
27  {
28    //-----[ fields ]------------------------------------------------------------
29  public : uint32_t    _nb_ooo_engine        ;
30//public : uint32_t    _size_general_data    ;
31//public : uint32_t    _size_special_data    ;
32  public : uint32_t    _nb_gpr_read          ;
33  public : uint32_t    _nb_spr_read          ;   
34  public : uint32_t    _nb_gpr_write         ;
35  public : uint32_t    _nb_spr_write         ;
36  public : uint32_t    _nb_inst_issue        ;
37//   public : uint32_t  * _nb_inst_insert_rob   ;
38//   public : uint32_t  * _nb_inst_retire_rob   ;
39
40//public : bool        _have_port_ooo_engine_id;
41   
42    //-----[ methods ]-----------------------------------------------------------
43  public : Parameters  (uint32_t   nb_ooo_engine        ,
44                        uint32_t   size_general_data    ,
45                        uint32_t   size_special_data    ,
46                        uint32_t   nb_gpr_read          ,
47                        uint32_t   nb_spr_read          ,   
48                        uint32_t   nb_gpr_write         ,
49                        uint32_t   nb_spr_write         ,
50                        uint32_t   nb_inst_issue        ,
51//                      uint32_t * nb_inst_insert_rob   ,
52//                      uint32_t * nb_inst_retire_rob   ,
53                        bool       is_toplevel=false);
54//public : Parameters  (Parameters & param) ;
55  public : ~Parameters () ;
56   
57  public :        void            copy       (void);
58   
59  public :        Parameters_test msg_error  (void);
60
61  public :        std::string   print      (uint32_t depth);
62  public : friend std::ostream& operator<< (std::ostream& output_stream,
63                                            morpheo::behavioural::core::multi_execute_loop::execute_loop::register_unit::register_unit_glue::Parameters & x);
64  };
65
66}; // end namespace register_unit_glue
67}; // end namespace register_unit
68}; // end namespace execute_loop
69}; // end namespace multi_execute_loop
70}; // end namespace core
71
72}; // end namespace behavioural
73}; // end namespace morpheo             
74
75#endif
Note: See TracBrowser for help on using the repository browser.