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/include/Signal.h

    r75 r78  
    5151
    5252    // -----[ fields ]----------------------------------------------------
    53   private   : const std::string          _name          ;
     53  private   : const std::string     _name          ;
    5454  private   : const direction_t     _direction     ;
    5555  private   : const presence_port_t _presence_port ;
    5656  private   :       uint32_t        _size          ;
    5757
    58   private   : Signal *              _connect_to_signal;   // the actual implementaion, this signal link with one signal (but if signal is an output, it can be connect with many signal ...)
    59   private   : Signal *              _connect_from_signal; // producter of signal. If NULL, then producteur is the current entity
    60   private   : bool                  _is_allocate   ; // Have allocate a sc_in or sc_out port
    61   private   : void *                _sc_signal     ; // sc_in or sc_out associated at this signal
    62   private   : void *                _sc_signal_map ; // sc_out generated this signal
    63   private   : bool                  _is_map_as_src ;
    64   private   : bool                  _is_map_as_dest;
    65   private   : type_info_t           _type_info     ;
     58  private   : Signal *              _connect_to_signal       ;   // the actual implementaion, this signal link with one signal (but if signal is an output, it can be connect with many signal ...)
     59  private   : Signal *              _connect_from_signal     ; // producter of signal. If NULL, then producteur is the current entity
     60  private   : bool                  _is_allocate             ; // Have allocate a sc_in or sc_out port
     61  private   : void *                _sc_signal               ; // sc_in or sc_out associated at this signal
     62  private   : void *                _sc_signal_map           ; // sc_out generated this signal
     63  private   : bool                  _is_map_as_toplevel_dest ;
     64  private   : bool                  _is_map_as_component_src ;
     65  private   : bool                  _is_map_as_component_dest;
     66  private   : type_info_t           _type_info               ;
    6667
    6768#ifdef VHDL_TESTBENCH
     
    9091  public    : bool              presence_testbench      (void);
    9192
    92   public    : bool              test_map                (bool top_level);
     93  public    : bool              test_map                (uint32_t depth, bool top_level);
    9394
    9495  public    : void              link                    (Signal * signal_dest,
Note: See TracChangeset for help on using the changeset viewer.