source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Identification.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1#ifndef morpheo_behavioural_Identification_h
2#define morpheo_behavioural_Identification_h
3
4#include "Behavioural/include/Types.h"
5#include "Common/include/BitManipulation.h"
6
7namespace morpheo {
8namespace behavioural {
9 
10  uint32_t   get_nb_thread      (uint32_t   nb_context        ,
11                                 uint32_t   nb_front_end      ,
12                                 uint32_t   nb_ooo_engine     ); 
13  Tcontext_t get_num_thread     (Tcontext_t num_context_id    ,
14                                 uint32_t   size_context_id   ,
15                                 Tcontext_t num_front_end_id  ,
16                                 uint32_t   size_front_end_id ,
17                                 Tcontext_t num_ooo_engine_id ,
18                                 uint32_t   size_ooo_engine_id);
19  Tcontext_t get_num_context    (Tcontext_t num_thread        ,
20                                 uint32_t   size_context_id   ,
21                                 uint32_t   size_front_end_id ,
22                                 uint32_t   size_ooo_engine_id);
23  Tcontext_t get_num_front_end  (Tcontext_t num_thread        ,
24                                 uint32_t   size_context_id   ,
25                                 uint32_t   size_front_end_id ,
26                                 uint32_t   size_ooo_engine_id);
27  Tcontext_t get_num_ooo_engine (Tcontext_t num_thread        ,
28                                 uint32_t   size_context_id   ,
29                                 uint32_t   size_front_end_id ,
30                                 uint32_t   size_ooo_engine_id);
31
32}; // end namespace behavioural
33}; // end namespace morpheo             
34#endif
Note: See TracBrowser for help on using the repository browser.