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
Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vst/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vst/include/New_Component.h

    r76 r78  
    5353#ifdef SYSTEMC
    5454    // ~~~~~[ Interface ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    55     // Interface
     55    // ~~~~~[ Interface : "" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    5656  public    : SC_CLOCK                      *  in_CLOCK        ;
    5757  public    : SC_IN (Tcontrol_t)            *  in_NRESET       ;
     
    104104
    105105#ifdef STATISTICS
    106   public  : void        statistics_declaration    (morpheo::behavioural::Parameters_Statistics * param_statistics);
     106  public  : void        statistics_allocation     (morpheo::behavioural::Parameters_Statistics * param_statistics);
     107  public  : void        statistics_deallocation   (void);
    107108#endif
    108109#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vst/include/Parameters.h

    r77 r78  
    2222    //-----[ methods ]-----------------------------------------------------------
    2323  public : Parameters  ();
    24   public : Parameters  (Parameters & param) ;
     24//   public : Parameters  (Parameters & param) ;
    2525  public : ~Parameters () ;
    2626
    27   public :        std::string  msg_error  (void);
     27  public :        Parameters_test msg_error  (void);
    2828
    29   public :        std::string   print      (uint32_t depth);
    30   public : friend std::ostream& operator<< (std::ostream& output_stream,
     29  public :        std::string     print      (uint32_t depth);
     30  public : friend std::ostream&   operator<< (std::ostream& output_stream,
    3131                                            morpheo::behavioural::@NAMESPACE_USE::Parameters & x);
    3232  };
Note: See TracChangeset for help on using the changeset viewer.