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 @ 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.6 KB
Line 
1/*
2 * $Id$
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.