source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/src/Parameters.cpp @ 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.4 KB
Line 
1/*
2 * $Id: Parameters.cpp 110 2009-02-19 16:31:47Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace core {
13namespace multi_front_end {
14namespace front_end {
15namespace prediction_unit {
16namespace direction {
17namespace meta_predictor {
18
19
20#undef  FUNCTION
21#define FUNCTION "Meta_Predictor::Parameters"
22  Parameters::Parameters (bool is_toplevel)
23  {
24    log_begin(Meta_Predictor,FUNCTION);
25
26    test();
27
28    if (is_toplevel)
29      {
30        copy();
31      }
32
33    log_end(Meta_Predictor,FUNCTION);
34  };
35 
36// #undef  FUNCTION
37// #define FUNCTION "Meta_Predictor::Parameters (copy)"
38//   Parameters::Parameters (Parameters & param)
39//   {
40//     log_begin(Meta_Predictor,FUNCTION);
41//     test();
42//     log_end(Meta_Predictor,FUNCTION);
43//   };
44
45#undef  FUNCTION
46#define FUNCTION "Meta_Predictor::~Parameters"
47  Parameters::~Parameters (void) 
48  {
49    log_begin(Meta_Predictor,FUNCTION);
50    log_end(Meta_Predictor,FUNCTION);
51  };
52
53#undef  FUNCTION
54#define FUNCTION "Meta_Predictor::copy"
55  void Parameters::copy (void) 
56  {
57    log_begin(Meta_Predictor,FUNCTION);
58    log_end(Meta_Predictor,FUNCTION);
59  };
60
61}; // end namespace meta_predictor
62}; // end namespace direction
63}; // end namespace prediction_unit
64}; // end namespace front_end
65}; // end namespace multi_front_end
66}; // end namespace core
67
68}; // end namespace behavioural
69}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.