source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Context_State/include/Parameters.h @ 106

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

1) RAT : Fix bug when update and event in same cycle
2) Context State : Compute depth
3) Load Store Unit : In check logic, translate all access in little endian. More easy to check
4) UFPT : End Event

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_context_state_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_context_state_Parameters_h
3
4/*
5 * $Id: Parameters.h 106 2009-02-09 22:55:26Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include "Common/include/Debug.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace context_state {
20
21
22  class Parameters : public morpheo::behavioural::Parameters
23  {
24    //-----[ fields ]------------------------------------------------------------
25
26  public : uint32_t   _nb_context                   ;
27  public : uint32_t   _nb_decod_unit                ;
28  public : uint32_t   _nb_inst_branch_complete      ;
29  public : uint32_t * _nb_inst_branch_speculated    ; //[nb_context]
30//public : uint32_t * _size_depth                   ; //[nb_context]
31//public : uint32_t   _size_general_data            ;
32//public : uint32_t * _size_nb_inst_decod           ; //[nb_decod_unit]
33//public : uint32_t   _size_nb_inst_commit          ;
34  public : uint32_t * _link_context_to_decod_unit   ; //[nb_context]
35
36    //-----[ methods ]-----------------------------------------------------------
37  public : Parameters  (uint32_t   nb_context,
38                        uint32_t   nb_decod_unit,
39                        uint32_t   nb_inst_branch_complete,
40                        uint32_t * nb_inst_branch_speculated,
41                        uint32_t   size_general_data,
42                        uint32_t * size_nb_inst_decod,           
43                        uint32_t   size_nb_inst_commit,         
44                        uint32_t * link_context_to_decod_unit,
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::context_state::Parameters & x);
56  };
57
58}; // end namespace context_state
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.