source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_unit_Glue/src/Parameters.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/*
2 * $Id: Parameters.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_unit_Glue/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace core {
13namespace multi_ooo_engine {
14namespace ooo_engine {
15namespace rename_unit {
16namespace register_translation_unit {
17namespace register_translation_unit_glue {
18
19
20#undef  FUNCTION
21#define FUNCTION "Register_translation_unit_Glue::Parameters"
22  Parameters::Parameters (uint32_t nb_inst_insert,
23                          uint32_t nb_inst_retire)
24  {
25    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"Begin");
26
27    _nb_inst_insert = nb_inst_insert;
28    _nb_inst_retire = nb_inst_retire;
29
30    test();
31    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"End");
32  };
33 
34// #undef  FUNCTION
35// #define FUNCTION "Register_translation_unit_Glue::Parameters (copy)"
36//   Parameters::Parameters (Parameters & param)
37//   {
38//     log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"Begin");
39//     test();
40//     log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"End");
41//   };
42
43#undef  FUNCTION
44#define FUNCTION "Register_translation_unit_Glue::~Parameters"
45  Parameters::~Parameters () 
46  {
47    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"Begin");
48    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"End");
49  };
50
51}; // end namespace register_translation_unit_glue
52}; // end namespace register_translation_unit
53}; // end namespace rename_unit
54}; // end namespace ooo_engine
55}; // end namespace multi_ooo_engine
56}; // end namespace core
57
58}; // end namespace behavioural
59}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.