Ignore:
Timestamp:
Mar 27, 2008, 11:04:49 AM (16 years ago)
Author:
rosiere
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/include/Parameters.h

    r77 r78  
    1111#include "Common/include/Debug.h"
    1212#include "Behavioural/include/Parameters.h"
    13 #include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/include/Types.h"
     13#include "Behavioural/include/Types.h"
     14#include "Behavioural/include/Identification.h"
    1415
    1516namespace morpheo {
     
    3839  public : const uint32_t    _size_load_queue        ;
    3940  public : const Tpriority_t _priority               ;
    40   public :       bool     ** _table_routing          ; //array [nb_read_unit][nb_execute_unit]
    41   public :       bool     ** _table_execute_type     ; //array [nb_execute_unit][nb_type]
    42   public :       bool     ** _table_execute_thread   ; //array [nb_execute_unit][nb_thread]
     41  public :       bool     ** _table_routing          ; //[nb_read_unit][nb_execute_unit]
     42  public :       bool     ** _table_execute_type     ; //[nb_execute_unit][nb_type]
     43  public :       bool     ** _table_execute_thread   ; //[nb_execute_unit][nb_thread]
    4344
    4445  public : const uint32_t    _size_context_id        ;
     
    5354  public : const bool        _have_port_ooo_engine_id;
    5455  public : const bool        _have_port_packet_id    ;
     56  public : const bool        _have_port_load_queue_ptr;
    5557
    5658  public : const uint32_t    _nb_thread              ;
     
    7880  public : ~Parameters () ;
    7981
    80   public :        std::string  msg_error  (void);
     82  public :        Parameters_test msg_error  (void);
    8183
    8284  public :        std::string   print      (uint32_t depth);
Note: See TracChangeset for help on using the changeset viewer.