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

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

1) Add Vhdl component
2) Inhib VHDL Seltest interface

  • Property svn:keywords set to Id
File size: 2.4 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 135 2009-07-17 08:59:05Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include "Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/include/Types.h"
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_front_end {
19namespace front_end {
20namespace decod_unit {
21namespace decod_queue {
22
23
24  class Parameters : public morpheo::behavioural::Parameters
25  {
26    //-----[ fields ]------------------------------------------------------------
27  public : uint32_t              _nb_context             ;
28  public : uint32_t              _nb_inst_decod          ;
29  public : uint32_t              _size_queue             ;
30  public : Tdecod_queue_scheme_t _queue_scheme           ;
31//public : uint32_t              _size_general_data      ;
32  public : uint32_t            * _nb_branch_speculated   ; //[nb_context]
33  public : uint32_t              _nb_instruction_in_queue;
34   
35  public : uint32_t              _nb_bank;
36  public : uint32_t              _size_internal_queue    ; // data size in queue
37
38    //-----[ methods ]-----------------------------------------------------------
39  public : Parameters  (uint32_t              nb_context          ,
40                        uint32_t              nb_inst_decod       ,
41                        uint32_t              size_queue          ,
42                        Tdecod_queue_scheme_t queue_scheme        ,
43                        uint32_t              size_general_data   ,
44                        uint32_t            * nb_branch_speculated,
45                        bool                  is_toplevel=false   );
46//   public : Parameters  (Parameters & param) ;
47  public : ~Parameters () ;
48
49  public :        void            copy       (void);
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}; // end namespace behavioural
64}; // end namespace morpheo             
65
66#endif
Note: See TracBrowser for help on using the repository browser.