source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_unit_Glue/src/Register_translation_unit_Glue_deallocation.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.8 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/Register_translation_unit_Glue.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::deallocation"
22  void Register_translation_unit_Glue::deallocation (void)
23  {
24    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"Begin");
25
26    if (_usage & USE_SYSTEMC)
27      {
28        delete     in_CLOCK ;
29        delete     in_NRESET;
30
31        delete []  in_INSERT_RENAME_VAL    ;
32        delete [] out_INSERT_RENAME_ACK    ;
33        delete [] out_INSERT_INSERT_VAL    ;
34        delete []  in_INSERT_INSERT_ACK    ;
35        delete [] out_INSERT_RAT_INSERT_VAL;
36        delete []  in_INSERT_RAT_RENAME_ACK;
37        delete []  in_INSERT_RAT_INSERT_ACK;
38        delete [] out_INSERT_FREE_LIST_VAL ;
39        delete []  in_INSERT_FREE_LIST_ACK ;
40        delete [] out_INSERT_STAT_LIST_VAL ;
41        delete []  in_INSERT_STAT_LIST_ACK ;
42
43        delete []  in_RETIRE_VAL           ;
44        delete [] out_RETIRE_ACK           ;
45        delete [] out_RETIRE_RAT_VAL       ;
46        delete []  in_RETIRE_RAT_ACK       ;
47        delete [] out_RETIRE_STAT_LIST_VAL ;
48        delete []  in_RETIRE_STAT_LIST_ACK ;
49      }
50    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
51
52    delete _component;
53
54    log_printf(FUNC,Register_translation_unit_Glue,FUNCTION,"End");
55  };
56
57}; // end namespace register_translation_unit_glue
58}; // end namespace register_translation_unit
59}; // end namespace rename_unit
60}; // end namespace ooo_engine
61}; // end namespace multi_ooo_engine
62}; // end namespace core
63
64}; // end namespace behavioural
65}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.