source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/include/Parameters.h @ 109

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

1) Configuration : instance configuration file : regroup similar instance
2) Configuration : timing default = 0
3) Debug/Commit_unit : Add watch dog timer
4) Issue_queue : Test parameters : add test if type is optionnal
5) Cor_glue : Fix insert index
6) Free_list : remove bank_by_pop (else deadlock)
7) Update Free List : add register to source event

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_ifetch_queue_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_ifetch_queue_Parameters_h
3
4/*
5 * $Id: Parameters.h 109 2009-02-16 20:28:31Z 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 ifetch_unit {
20namespace ifetch_queue {
21
22
23  class Parameters : public morpheo::behavioural::Parameters
24  {
25    //-----[ fields ]------------------------------------------------------------
26  public : uint32_t _size_queue                           ;
27  public : uint32_t _nb_instruction                       ;
28//public : uint32_t _size_branch_update_prediction        ;
29//public : uint32_t _size_general_data                    ;
30  public : uint32_t _nb_instruction_in_queue              ;
31
32//public : uint32_t _size_queue_ptr                       ;
33//public : uint32_t _size_instruction_ptr                 ;
34
35//public : bool     _have_port_queue_ptr                  ;
36//public : bool     _have_port_instruction_ptr            ;
37//public : bool     _have_port_branch_update_prediction_id;
38
39    //-----[ methods ]-----------------------------------------------------------
40  public : Parameters  (uint32_t size_queue                   ,
41                        uint32_t nb_instruction               ,
42                        uint32_t size_branch_update_prediction,
43                        uint32_t size_general_data            ,
44                        bool     is_toplevel=false);
45//   public : Parameters  (Parameters & param) ;
46  public : ~Parameters () ;
47
48  public :        void            copy       (void);
49
50  public :        Parameters_test msg_error  (void);
51
52  public :        std::string     print      (uint32_t depth);
53  public : friend std::ostream&   operator<< (std::ostream& output_stream,
54                                              morpheo::behavioural::core::multi_front_end::front_end::ifetch_unit::ifetch_queue::Parameters & x);
55  };
56
57}; // end namespace ifetch_queue
58}; // end namespace ifetch_unit
59}; // end namespace front_end
60}; // end namespace multi_front_end
61}; // end namespace core
62
63}; // end namespace behavioural
64}; // end namespace morpheo             
65
66#endif
Note: See TracBrowser for help on using the repository browser.