source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/include/Parameters.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: 976 bytes
Line 
1#ifndef morpheo_behavioural_@DEFINE_Parameters_h
2#define morpheo_behavioural_@DEFINE_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16@NAMESPACE_BEGIN
17
18  class Parameters : public morpheo::behavioural::Parameters
19  {
20    //-----[ fields ]------------------------------------------------------------
21
22    //-----[ methods ]-----------------------------------------------------------
23  public : Parameters  ();
24//   public : Parameters  (Parameters & param) ;
25  public : ~Parameters () ;
26
27  public :        Parameters_test msg_error  (void);
28
29  public :        std::string     print      (uint32_t depth);
30  public : friend std::ostream&   operator<< (std::ostream& output_stream,
31                                            morpheo::behavioural::@NAMESPACE_USE::Parameters & x);
32  };
33
34@NAMESPACE_END
35}; // end namespace behavioural
36}; // end namespace morpheo             
37
38#endif
Note: See TracBrowser for help on using the repository browser.