source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Identification.h @ 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.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.