source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/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: 1.2 KB
Line 
1#ifndef morpheo_behavioural_generic_queue_Parameters_h
2#define morpheo_behavioural_generic_queue_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#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17namespace generic {
18namespace queue {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : const uint32_t _size_queue;
25  public : const uint32_t _size_data ;
26   
27
28    //-----[ methods ]-----------------------------------------------------------
29  public : Parameters  (uint32_t size_queue,
30                        uint32_t size_data );
31  public : Parameters  (Parameters & param) ;
32  public : ~Parameters () ;
33
34  public :        Parameters_test msg_error  (void);
35
36  public :        std::string   print      (uint32_t depth);
37  public : friend std::ostream& operator<< (std::ostream& output_stream,
38                                            morpheo::behavioural::generic::queue::Parameters & x);
39  };
40
41}; // end namespace queue
42}; // end namespace generic
43
44}; // end namespace behavioural
45}; // end namespace morpheo             
46
47#endif
Note: See TracBrowser for help on using the repository browser.