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/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h

    r75 r78  
    2424  public : const uint32_t _nb_entity ; // number of entity
    2525  public : const uint32_t _nb_access ; // number of port to select an entity
    26   public : const uint32_t _nb_update ; // number of port to update the internal entity
     26//public : const uint32_t _nb_update ; // number of port to update the internal entity
    2727  public : const uint32_t _size_table; // Size of victim_pseudo_lru's table
     28  public : const bool     _table_global;
     29  public : const uint32_t _size_address;
    2830
    2931    //-----[ methods ]-----------------------------------------------------------
    3032  public : Parameters  (uint32_t nb_entity ,
    3133                        uint32_t nb_access ,
    32                         uint32_t nb_update ,
    33                         uint32_t size_table);
     34//                      uint32_t nb_update ,
     35                        uint32_t size_table,
     36                        bool     table_global);
    3437  public : Parameters  (Parameters & param) ;
    3538  public : ~Parameters () ;
    3639
    37   public :        std::string  msg_error  (void);
    38   public :        std::string   print      (uint32_t depth);
    39   public : friend std::ostream& operator<< (std::ostream& output_stream,
    40                                             morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x);
     40  public :        Parameters_test msg_error  (void);
     41  public :        std::string     print      (uint32_t depth);
     42  public : friend std::ostream&   operator<< (std::ostream& output_stream,
     43                                              morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x);
    4144  };
    4245
Note: See TracChangeset for help on using the changeset viewer.