source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Reexecute_unit/include/Types.h @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1#ifndef morpheo_behavioural_core_multi_ooo_engine_ooo_engine_reexecute_unit_Types_h
2#define morpheo_behavioural_core_multi_ooo_engine_ooo_engine_reexecute_unit_Types_h
3
4/*
5 * $Id: Types.h 88 2008-12-10 18:31:39Z rosiere $
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 reexecute_unit {
19 
20  typedef enum
21    {
22      STATE_EMPTY     ,
23      STATE_SPR_ACCESS,
24      STATE_REEXECUTE
25    } state_t;
26 
27  typedef struct 
28  {
29    state_t            state         ;
30    Tcontext_t         context_id    ;
31    Tcontext_t         front_end_id  ;
32    Tpacket_t          packet_id     ;
33    Tcontrol_t         spr_wen       ;
34    Tcontrol_t         reexecute     ;
35    Ttype_t            type          ;
36    Toperation_t       operation     ;
37    Tgeneral_data_t    address       ;
38    Tgeneral_data_t    data          ;
39    Tcontrol_t         write_rd      ;
40    Tgeneral_address_t num_reg_rd    ;
41  } entry_t;
42 
43  typedef struct
44  {
45    Tcontrol_t         spr_wen       ;
46    Tcontrol_t         reexecute     ;
47    Ttype_t            type          ;
48    Toperation_t       operation     ;
49    Tcontrol_t         write_rd      ;
50  } info_t;
51
52
53}; // end namespace reexecute_unit
54}; // end namespace ooo_engine
55}; // end namespace multi_ooo_engine
56}; // end namespace core
57
58}; // end namespace behavioural
59}; // end namespace morpheo             
60
61#endif
Note: See TracBrowser for help on using the repository browser.