source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/include/Parameters.h @ 110

Last change on this file since 110 was 110, checked in by rosiere, 15 years ago

1) OOO_egine : add stat to depiste low perf source
2) Commit : add stat
3) LSU_Pointer : retire - always ack (else combinatory loop). insert - max nb_inst_memory
4) TopLevel? : add debug_idle_time to stop combinatory loop.
5) Issue_queue : add reexecute_queue, new implementation (routage after issue_queue)
6) Decod / Predictor : add "can_continue"

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_Parameters_h
3
4/*
5 * $Id: Parameters.h 110 2009-02-19 16:31:47Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace prediction_unit {
20namespace direction {
21namespace meta_predictor {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (bool is_toplevel=false);
30//public : Parameters  (Parameters & param) ;
31  public : ~Parameters (void);
32
33  public :        void            copy       (void);
34
35  public :        Parameters_test msg_error  (void);
36
37  public :        std::string     print      (uint32_t depth);
38  public : friend std::ostream&   operator<< (std::ostream& output,
39                                              morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::meta_predictor::Parameters & x);
40  };
41
42}; // end namespace meta_predictor
43}; // end namespace direction
44}; // end namespace prediction_unit
45}; // end namespace front_end
46}; // end namespace multi_front_end
47}; // end namespace core
48
49}; // end namespace behavioural
50}; // end namespace morpheo             
51
52#endif
Note: See TracBrowser for help on using the repository browser.