source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/include/Parameters.h @ 82

Last change on this file since 82 was 82, checked in by rosiere, 16 years ago
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_decod_unit_decod_queue_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_decod_unit_decod_queue_Parameters_h
3
4/*
5 * $Id: Parameters.h 82 2008-05-01 16:48:45Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace decod_unit {
20namespace decod_queue {
21
22
23  class Parameters : public morpheo::behavioural::Parameters
24  {
25    //-----[ fields ]------------------------------------------------------------
26  public : uint32_t            _nb_context           ;
27  public : uint32_t            _nb_inst_decod        ;
28  public : uint32_t            _size_queue           ;
29  public : uint32_t            _size_general_data    ;
30  public : uint32_t          * _nb_branch_speculated ; //[nb_context]
31
32  public : uint32_t            _nb_bank              ;
33  public : uint32_t            _size_bank            ;
34                                                     
35  public : uint32_t            _size_context_id      ;
36  public : uint32_t            _size_depth           ;
37  public : uint32_t            _size_nb_inst         ;
38                                                     
39  public : bool                _have_port_context_id ;
40  public : bool                _have_port_depth      ;
41
42    //-----[ methods ]-----------------------------------------------------------
43  public : Parameters  (uint32_t   nb_context          ,
44                        uint32_t   nb_inst_decod       ,
45                        uint32_t   size_queue          ,
46                        uint32_t   size_general_data   ,
47                        uint32_t * nb_branch_speculated);
48//   public : Parameters  (Parameters & param) ;
49  public : ~Parameters () ;
50
51  public :        Parameters_test msg_error  (void);
52
53  public :        std::string     print      (uint32_t depth);
54  public : friend std::ostream&   operator<< (std::ostream& output_stream,
55                                              morpheo::behavioural::core::multi_front_end::front_end::decod_unit::decod_queue::Parameters & x);
56  };
57
58}; // end namespace decod_queue
59}; // end namespace decod_unit
60}; // end namespace front_end
61}; // end namespace multi_front_end
62}; // end namespace core
63
64}; // end namespace behavioural
65}; // end namespace morpheo             
66
67#endif
Note: See TracBrowser for help on using the repository browser.