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

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 2.3 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$
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  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : const uint32_t    _nb_ooo_engine        ;
28  public : const uint32_t    _size_general_data    ;
29  public : const uint32_t    _size_special_data    ;
30  public : const uint32_t    _nb_gpr_read          ;
31  public : const uint32_t    _nb_spr_read          ;   
32  public : const uint32_t    _nb_gpr_write         ;
33  public : const uint32_t    _nb_spr_write         ;
34  public : const uint32_t  * _nb_inst_insert_rob   ;
35  public : const uint32_t  * _nb_inst_retire_rob   ;
36
37  public : const bool        _have_port_ooo_engine_id;
38   
39    //-----[ methods ]-----------------------------------------------------------
40  public : Parameters  (const uint32_t   nb_ooo_engine        ,
41                        const uint32_t   size_general_data    ,
42                        const uint32_t   size_special_data    ,
43                        const uint32_t   nb_gpr_read          ,
44                        const uint32_t   nb_spr_read          ,   
45                        const uint32_t   nb_gpr_write         ,
46                        const uint32_t   nb_spr_write         ,
47                        const uint32_t * nb_inst_insert_rob   ,
48                        const uint32_t * nb_inst_retire_rob   );
49  public : Parameters  (Parameters & param) ;
50  public : ~Parameters () ;
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_execute_loop::execute_loop::register_unit::register_unit_glue::Parameters & x);
57  };
58
59}; // end namespace register_unit_glue
60}; // end namespace register_unit
61}; // end namespace execute_loop
62}; // end namespace multi_execute_loop
63}; // end namespace core
64
65}; // end namespace behavioural
66}; // end namespace morpheo             
67
68#endif
Note: See TracBrowser for help on using the repository browser.