source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Update_Prediction_Table/src/Update_Prediction_Table_statistics_deallocation.cpp @ 88

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id: Update_Prediction_Table_statistics_deallocation.cpp 88 2008-12-10 18:31:39Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Update_Prediction_Table/include/Update_Prediction_Table.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace prediction_unit {
17namespace update_prediction_table {
18
19
20#undef  FUNCTION
21#define FUNCTION "Update_Prediction_Table::statistics_deallocation"
22  void Update_Prediction_Table::statistics_deallocation (void)
23  {
24    log_printf(FUNC,Update_Prediction_Table,FUNCTION,"Begin");
25
26    log_printf(INFO,Update_Prediction_Table,FUNCTION,"Generate Statistics file");
27   
28    delete    _stat;
29//     delete [] _stat_nb_branch_hit       ;
30//     delete [] _stat_nb_branch_miss      ;
31//     delete [] _stat_nb_branch_unused    ;
32//     delete [] _stat_queue_nb_cycle_empty;
33//     delete [] _stat_queue_nb_cycle_full ;
34//     delete [] _stat_queue_nb_elt        ;
35   
36    log_printf(FUNC,Update_Prediction_Table,FUNCTION,"End");
37  };
38
39}; // end namespace update_prediction_table
40}; // end namespace prediction_unit
41}; // end namespace front_end
42}; // end namespace multi_front_end
43}; // end namespace core
44
45}; // end namespace behavioural
46}; // end namespace morpheo             
47#endif
Note: See TracBrowser for help on using the repository browser.