source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_select/include/Types.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: 921 bytes
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_rename_select_Types_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_rename_unit_rename_select_Types_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Types.h"
12
13namespace morpheo {
14namespace behavioural {
15namespace core {
16namespace multi_ooo_engine {
17namespace ooo_engine {
18namespace rename_unit {
19namespace rename_select {
20
21  class select_t
22  {
23  public : uint32_t _front_end ;
24  public : uint32_t _inst_decod;
25   
26  public : select_t (uint32_t front_end,
27                     uint32_t inst_decod)
28    {
29      _front_end  = front_end ;
30      _inst_decod = inst_decod;
31    }
32  };
33
34}; // end namespace rename_select
35}; // end namespace rename_unit
36}; // end namespace ooo_engine
37}; // end namespace multi_ooo_engine
38}; // end namespace core
39}; // end namespace behavioural
40}; // end namespace morpheo             
41
42#endif
Note: See TracBrowser for help on using the repository browser.