source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Dependency_checking_unit/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.2 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_dependency_checking_unit_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_dependency_checking_unit_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
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_ooo_engine {
18namespace ooo_engine {
19namespace rename_unit {
20namespace register_translation_unit {
21namespace dependency_checking_unit {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : uint32_t   _nb_front_end          ;
28  public : uint32_t   _max_nb_context        ;
29  public : uint32_t   _nb_general_register   ;
30  public : uint32_t   _nb_special_register   ;
31  public : uint32_t   _nb_inst_insert        ;
32
33  public : uint32_t   _size_front_end_id     ;
34  public : uint32_t   _size_context_id       ;
35  public : uint32_t   _size_general_register ;
36  public : uint32_t   _size_special_register ;
37                     
38  public : uint32_t   _have_port_context_id  ;
39  public : uint32_t   _have_port_front_end_id;
40
41    //-----[ methods ]-----------------------------------------------------------
42  public : Parameters  (uint32_t nb_front_end          ,
43                        uint32_t max_nb_context        ,
44                        uint32_t nb_general_register   ,
45                        uint32_t nb_special_register   ,
46                        uint32_t nb_inst_insert        );
47//   public : Parameters  (Parameters & param) ;
48  public : ~Parameters () ;
49
50  public :        std::string   msg_error  (void);
51
52  public :        std::string   print      (uint32_t depth);
53  public : friend std::ostream& operator<< (std::ostream& output_stream,
54                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::register_translation_unit::dependency_checking_unit::Parameters & x);
55  };
56
57}; // end namespace dependency_checking_unit
58}; // end namespace register_translation_unit
59}; // end namespace rename_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.