source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Direction_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.9 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_direction_glue_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_direction_glue_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Types.h"
13#include "Behavioural/include/Parameters.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_front_end {
19namespace front_end {
20namespace prediction_unit {
21namespace direction {
22namespace direction_glue {
23
24
25  class Parameters : public morpheo::behavioural::Parameters
26  {
27    //-----[ fields ]------------------------------------------------------------
28  public : Tpredictor_t _predictor_scheme;
29  public : uint32_t     _nb_inst_predict ;
30  public : uint32_t     _nb_inst_update  ;
31  public : uint32_t     _size_address    ;
32  public : uint32_t     _size_history    ;
33
34  public : bool         _have_component_meta_predictor;
35  public : bool         _have_port_history;
36
37    //-----[ methods ]-----------------------------------------------------------
38  public : Parameters  (Tpredictor_t predictor_scheme,
39                        uint32_t     nb_inst_predict ,
40                        uint32_t     nb_inst_update  ,
41                        uint32_t     size_address    ,
42                        uint32_t     size_history    );
43    //   public : Parameters  (Parameters & param) ;
44  public : ~Parameters () ;
45
46  public :        Parameters_test msg_error  (void);
47
48  public :        std::string     print      (uint32_t depth);
49  public : friend std::ostream&   operator<< (std::ostream& output_stream,
50                                            morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::direction_glue::Parameters & x);
51  };
52
53}; // end namespace direction_glue
54}; // end namespace direction
55}; // end namespace prediction_unit
56}; // end namespace front_end
57}; // end namespace multi_front_end
58}; // end namespace core
59
60}; // end namespace behavioural
61}; // end namespace morpheo             
62
63#endif
Note: See TracBrowser for help on using the repository browser.