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

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 2.0 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 88 2008-12-10 18:31:39Z 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    //-----[ methods ]-----------------------------------------------------------
36  public : Parameters  (uint32_t   nb_context          ,
37                        uint32_t   nb_inst_decod       ,
38                        uint32_t   size_queue          ,
39                        uint32_t   size_general_data   ,
40                        uint32_t * nb_branch_speculated,
41                        bool       is_toplevel=false   );
42//   public : Parameters  (Parameters & param) ;
43  public : ~Parameters () ;
44
45  public :        void            copy       (void);
46
47  public :        Parameters_test msg_error  (void);
48
49  public :        std::string     print      (uint32_t depth);
50  public : friend std::ostream&   operator<< (std::ostream& output_stream,
51                                              morpheo::behavioural::core::multi_front_end::front_end::decod_unit::decod_queue::Parameters & x);
52  };
53
54}; // end namespace decod_queue
55}; // end namespace decod_unit
56}; // end namespace front_end
57}; // end namespace multi_front_end
58}; // end namespace core
59
60}; // end namespace behavioural
61}; // end namespace morpheo             
62
63#endif
Note: See TracBrowser for help on using the repository browser.