source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_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: 1.7 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_register_translation_unit_glue_Parameters_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_register_translation_unit_register_translation_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
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_ooo_engine {
18namespace ooo_engine {
19namespace rename_unit {
20namespace register_translation_unit {
21namespace register_translation_unit_glue {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : uint32_t _nb_inst_insert;
28  public : uint32_t _nb_inst_retire;
29   
30    //-----[ methods ]-----------------------------------------------------------
31  public : Parameters  (uint32_t nb_inst_insert,
32                        uint32_t nb_inst_retire);
33
34//   public : Parameters  (Parameters & param) ;
35  public : ~Parameters () ;
36
37  public :        std::string   msg_error  (void);
38
39  public :        std::string   print      (uint32_t depth);
40  public : friend std::ostream& operator<< (std::ostream& output_stream,
41                                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::register_translation_unit::register_translation_unit_glue::Parameters & x);
42  };
43
44}; // end namespace register_translation_unit_glue
45}; // end namespace register_translation_unit
46}; // end namespace rename_unit
47}; // end namespace ooo_engine
48}; // end namespace multi_ooo_engine
49}; // end namespace core
50
51}; // end namespace behavioural
52}; // end namespace morpheo             
53
54#endif
Note: See TracBrowser for help on using the repository browser.