source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/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: 3.3 KB
RevLine 
[54]1#ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_read_unit_read_unit_read_queue_Parameters_h
2#define morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_read_unit_read_unit_read_queue_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
[66]13#include "Behavioural/include/Types.h"
14
[54]15#include <math.h>
16
17namespace morpheo {
18namespace behavioural {
19namespace core {
20namespace multi_execute_loop {
21namespace execute_loop {
22namespace multi_read_unit {
23namespace read_unit {
24namespace read_queue {
25
26
27  class Parameters : public morpheo::behavioural::Parameters
28  {
29    //-----[ fields ]------------------------------------------------------------
[55]30  public : const uint32_t    _size_queue           ;
[54]31  public : const uint32_t    _nb_context           ;
[66]32  public : const uint32_t    _nb_front_end         ;
33  public : const uint32_t    _nb_ooo_engine        ;
[54]34  public : const uint32_t    _nb_packet            ;
35  public : const uint32_t    _size_general_data    ;
36  public : const uint32_t    _size_special_data    ;
37  public : const uint32_t    _nb_general_register  ;
38  public : const uint32_t    _nb_special_register  ;
39  public : const uint32_t    _nb_gpr_write         ;
40  public : const uint32_t    _nb_spr_write         ;
[76]41  public : const uint32_t    _size_store_queue     ;
42  public : const uint32_t    _size_load_queue      ;
[54]43
44  public : const uint32_t    _nb_gpr_read          ;
45  public : const uint32_t    _nb_spr_read          ;   
46  public : const uint32_t    _size_context_id      ;
[66]47  public : const uint32_t    _size_front_end_id    ;
48  public : const uint32_t    _size_ooo_engine_id   ;
49  public : const uint32_t    _size_rob_id          ;
[54]50  public : const uint32_t    _size_general_register;
51  public : const uint32_t    _size_special_register;
52
[68]53  public : const bool        _have_port_context_id   ;
54  public : const bool        _have_port_front_end_id ;
55  public : const bool        _have_port_ooo_engine_id;
56  public : const bool        _have_port_rob_id       ;
[78]57  public : const bool        _have_port_load_queue_ptr;
[68]58
59  public : const uint32_t    _size_internal_queue;
60
[54]61    //-----[ methods ]-----------------------------------------------------------
[55]62  public : Parameters  (uint32_t size_queue         ,
63                        uint32_t nb_context         ,
[66]64                        uint32_t nb_front_end       ,
65                        uint32_t nb_ooo_engine      ,
[55]66                        uint32_t nb_packet          ,
67                        uint32_t size_general_data  ,
68                        uint32_t size_special_data  ,
69                        uint32_t nb_general_register,
70                        uint32_t nb_special_register,
71                        uint32_t nb_gpr_write       ,
[76]72                        uint32_t nb_spr_write       ,
73                        uint32_t size_store_queue   ,
74                        uint32_t size_load_queue    );
75
[54]76  public : Parameters  (Parameters & param) ;
77  public : ~Parameters () ;
78
[78]79  public : Parameters_test      msg_error (void);
[54]80
[75]81  public :        std::string   print      (uint32_t depth);
82  public : friend std::ostream& operator<< (std::ostream& output_stream,
83                                            morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::read_queue::Parameters & x);
[54]84  };
85
86}; // end namespace read_queue
87}; // end namespace read_unit
88}; // end namespace multi_read_unit
89}; // end namespace execute_loop
90}; // end namespace multi_execute_loop
91}; // end namespace core
92
93}; // end namespace behavioural
94}; // end namespace morpheo             
95
96#endif
Note: See TracBrowser for help on using the repository browser.