source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/include/Parameters.h @ 113

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

1) Add modelsim simulation systemC
2) Modelsim cosimulation systemC / VHDL is not finish !!!! (cf execute_queue and write_unit)
3) Add multi architecture
5) Add template for comparator, multiplier and divider
6) Change Message
Warning) Various test macro have change, many selftest can't compile

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1#ifndef morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_write_unit_write_unit_execute_queue_Parameters_h
2#define morpheo_behavioural_core_multi_execute_loop_execute_loop_multi_write_unit_write_unit_execute_queue_Parameters_h
3
4/*
5 * $Id: Parameters.h 113 2009-04-14 18:39:12Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo {
16namespace behavioural {
17namespace core {
18namespace multi_execute_loop {
19namespace execute_loop {
20namespace multi_write_unit {
21namespace write_unit {
22namespace execute_queue {
23
24
25  class Parameters : public morpheo::behavioural::Parameters
26  {
27    //-----[ fields ]------------------------------------------------------------
28  public : uint32_t            _size_queue                   ;
29  public : uint32_t            _nb_context                   ;
30  public : uint32_t            _nb_front_end                 ;
31  public : uint32_t            _nb_ooo_engine                ;
32  public : uint32_t            _nb_packet                    ;
33//public : uint32_t            _size_general_data            ;
34//public : uint32_t            _size_special_data            ;
35
36//public : uint32_t            _size_context_id              ;
37//public : uint32_t            _size_front_end_id            ;
38//public : uint32_t            _size_ooo_engine_id           ;
39//public : uint32_t            _size_packet_id               ;
40  public : uint32_t            _size_internal_queue          ;
41
42//public : bool                _have_port_context_id         ;
43//public : bool                _have_port_front_end_id       ;
44//public : bool                _have_port_ooo_engine_id      ;
45//public : bool                _have_port_packet_id          ;
46
47    //-----[ methods ]-----------------------------------------------------------
48  public : Parameters  (uint32_t size_queue         ,
49                        uint32_t nb_context         ,
50                        uint32_t nb_front_end       ,
51                        uint32_t nb_ooo_engine      ,
52                        uint32_t nb_packet          ,
53                        uint32_t size_general_data  ,
54                        uint32_t size_special_data  ,
55                        bool     is_toplevel=true);
56//public : Parameters  (Parameters & param) ;
57  public : ~Parameters () ;
58
59  public :        void            copy       (void);
60
61  public :        Parameters_test msg_error  (void);
62
63  public :        std::string     id         (void) const;
64
65  public :        std::string     print      (uint32_t depth);
66  public : friend std::ostream&   operator<< (std::ostream& output_stream,
67                                              morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_write_unit::write_unit::execute_queue::Parameters & x);
68  };
69
70}; // end namespace execute_queue
71}; // end namespace write_unit
72}; // end namespace multi_write_unit
73}; // end namespace execute_loop
74}; // end namespace multi_execute_loop
75}; // end namespace core
76}; // end namespace behavioural
77}; // end namespace morpheo             
78
79#endif
Note: See TracBrowser for help on using the repository browser.