source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod/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: 873 bytes
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_decod_unit_decod_Types_h
2#define morpheo_behavioural_core_multi_front_end_front_end_decod_unit_decod_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_front_end {
17namespace front_end {
18namespace decod_unit {
19namespace decod {
20
21  class select_t
22  {
23  public : uint32_t _context ;
24  public : uint32_t _inst_fetch;
25   
26  public : select_t (uint32_t context,
27                     uint32_t inst_fetch)
28    {
29      _context    = context ;
30      _inst_fetch = inst_fetch;
31    }
32  };
33
34
35}; // end namespace decod
36}; // end namespace decod_unit
37}; // end namespace front_end
38}; // end namespace multi_front_end
39}; // end namespace core
40
41}; // end namespace behavioural
42}; // end namespace morpheo             
43
44#endif
Note: See TracBrowser for help on using the repository browser.