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

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

1) Decod_queue : multi implementation (one_fifo, multi_fifo)
2) Issue_queue : multi implementation (in_order, out_of_order)
3) Direction : Add Meta predictor
4) Context_State : re add Branch_complete, More priority to Load miss (is not speculative)
5) Return_Address_Stack : update reg_PREDICT pointer on decod miss prediction
6) UPT : Fix bug in multi event
7) Prediction_glue : in read_stack case, insert in UPT pc_next
8) Rename select : when rob have an event (need flush), read_r{a,b,c} and write_r{d,e} is set at 0

  • Property svn:keywords set to Id
File size: 2.3 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 111 2009-02-27 18:37:40Z 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
37    //-----[ methods ]-----------------------------------------------------------
38  public : Parameters  (uint32_t              nb_context          ,
39                        uint32_t              nb_inst_decod       ,
40                        uint32_t              size_queue          ,
41                        Tdecod_queue_scheme_t queue_scheme        ,
42                        uint32_t              size_general_data   ,
43                        uint32_t            * nb_branch_speculated,
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::decod_unit::decod_queue::Parameters & x);
55  };
56
57}; // end namespace decod_queue
58}; // end namespace decod_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.