source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Parameters_Statistics.h @ 71

Last change on this file since 71 was 71, checked in by rosiere, 16 years ago

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File size: 970 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_Parameters_Statistics_h
3#define morpheo_behavioural_Parameters_Statistics_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Common/include/Debug.h"
13#include <stdint.h>
14
15namespace morpheo              {
16namespace behavioural          {
17
18  class Parameters_Statistics
19  {
20    // -----[ fields ]----------------------------------------------------
21    // Constant
22  public   : const uint32_t   _nb_cycle_before_begin; // nb cycle before the begining of statistics
23  public   : const uint32_t   _period_save;           // period between two save
24   
25    // -----[ methods ]---------------------------------------------------
26  public   :                  Parameters_Statistics  (uint32_t   nb_cycle_before_begin,
27                                                      uint32_t   period_save          );
28  public   :                  ~Parameters_Statistics ();
29  };
30
31}; // end namespace behavioural         
32}; // end namespace morpheo             
33
34#endif
35#endif
Note: See TracBrowser for help on using the repository browser.