source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Stat_type.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)

  • Property svn:executable set to *
File size: 505 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_Stat_type_h
3#define morpheo_behavioural_Stat_type_h
4
5#include <string>
6#include <map>
7#include <utility>
8
9namespace morpheo {
10namespace behavioural {
11
12  typedef enum{TYPE_VARIABLE, TYPE_COUNTER} counter_type_t;
13
14  typedef double counter_t ;
15
16  typedef enum{add, sub, mul, div, inc, dec} operator_t;
17
18//typedef std::pair<operator_t, std::string> pair_operator_string_t;
19//typedef std::pair<std::string, operator_t> pair_string_operator_t;
20
21};
22};
23#endif
24#endif
Note: See TracBrowser for help on using the repository browser.