source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_select/src/Rename_select.cpp @ 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: 8.9 KB
Line 
1/*
2 * $Id: Rename_select.cpp 111 2009-02-27 18:37:40Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Rename_select/include/Rename_select.h"
9
10namespace morpheo                    {
11namespace behavioural {
12namespace core {
13namespace multi_ooo_engine {
14namespace ooo_engine {
15namespace rename_unit {
16namespace rename_select {
17
18
19#undef  FUNCTION
20#define FUNCTION "Rename_select::Rename_select"
21  Rename_select::Rename_select
22  (
23#ifdef SYSTEMC
24   sc_module_name name,
25#else
26   string name,
27#endif
28#ifdef STATISTICS
29   morpheo::behavioural::Parameters_Statistics * param_statistics,
30#endif
31   morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::rename_select::Parameters * param,
32   morpheo::behavioural::Tusage_t usage
33   ):
34    _name              (name)
35    ,_param            (param)
36    ,_usage            (usage)
37  {
38    log_printf(FUNC,Rename_select,FUNCTION,"Begin");
39
40#if DEBUG_Core == true
41    log_printf(INFO,Core,FUNCTION,_("<%s> Parameters"),_name.c_str());
42
43    std::cout << *param << std::endl;
44#endif   
45
46    log_printf(INFO,Rename_select,FUNCTION,"Allocation");
47
48    allocation (
49#ifdef STATISTICS
50                param_statistics
51#endif
52                );
53
54#ifdef STATISTICS
55    if (usage_is_set(_usage,USE_STATISTICS))
56      { 
57        log_printf(INFO,Rename_select,FUNCTION,"Allocation of statistics");
58
59        statistics_declaration(param_statistics);
60      }
61#endif
62
63#ifdef VHDL
64    if (usage_is_set(_usage,USE_VHDL))
65      {
66        // generate the vhdl
67        log_printf(INFO,Rename_select,FUNCTION,"Generate the vhdl");
68       
69        vhdl();
70      }
71#endif
72
73#ifdef SYSTEMC
74    if (usage_is_set(_usage,USE_SYSTEMC))
75      {
76        log_printf(INFO,Rename_select,FUNCTION,"Method - transition");
77
78        SC_METHOD (transition);
79        dont_initialize ();
80        sensitive << (*(in_CLOCK)).pos();
81       
82# ifdef SYSTEMCASS_SPECIFIC
83        // List dependency information
84# endif   
85
86        log_printf(INFO,Rename_select,FUNCTION,"Method - genMealy");
87
88        SC_METHOD (genMealy);
89        dont_initialize ();
90        sensitive << (*(in_CLOCK)).neg();
91        for (uint32_t i=0; i<_param->_nb_front_end; i++)
92          for (uint32_t j=0; j<_param->_nb_inst_decod [i]; j++)
93            {
94              sensitive << (*(in_RENAME_IN_VAL           [i][j]))
95                        << (*(in_RENAME_IN_TYPE          [i][j]))
96                        << (*(in_RENAME_IN_OPERATION     [i][j]))
97                        << (*(in_RENAME_IN_NO_EXECUTE    [i][j]))
98                        << (*(in_RENAME_IN_IS_DELAY_SLOT [i][j]))
99#ifdef DEBUG
100                        << (*(in_RENAME_IN_ADDRESS       [i][j]))
101#endif
102                        << (*(in_RENAME_IN_ADDRESS_NEXT  [i][j]))
103                        << (*(in_RENAME_IN_HAS_IMMEDIAT  [i][j]))
104                        << (*(in_RENAME_IN_IMMEDIAT      [i][j]))
105                        << (*(in_RENAME_IN_READ_RA       [i][j]))
106                        << (*(in_RENAME_IN_NUM_REG_RA    [i][j]))
107                        << (*(in_RENAME_IN_READ_RB       [i][j]))
108                        << (*(in_RENAME_IN_NUM_REG_RB    [i][j]))
109                        << (*(in_RENAME_IN_READ_RC       [i][j]))
110                        << (*(in_RENAME_IN_NUM_REG_RC    [i][j]))
111                        << (*(in_RENAME_IN_WRITE_RD      [i][j]))
112                        << (*(in_RENAME_IN_NUM_REG_RD    [i][j]))
113                        << (*(in_RENAME_IN_WRITE_RE      [i][j]))
114                        << (*(in_RENAME_IN_NUM_REG_RE    [i][j]))
115                        << (*(in_RENAME_IN_EXCEPTION_USE [i][j]))
116                        << (*(in_RENAME_IN_EXCEPTION     [i][j]));
117              if (_param->_have_port_front_end_id)
118              sensitive << (*(in_RENAME_IN_FRONT_END_ID  [i][j]));
119              if (_param->_have_port_context_id)
120              sensitive << (*(in_RENAME_IN_CONTEXT_ID    [i][j]));
121              if (_param->_have_port_depth)
122              sensitive << (*(in_RENAME_IN_DEPTH         [i][j]));
123            }
124
125        for (uint32_t i=0; i<_param->_nb_front_end; i++)
126          for (uint32_t j=0; j<_param->_nb_context [i]; j++)
127            sensitive << (*(in_RETIRE_EVENT_STATE [i][j]));
128
129        for (uint32_t i=0; i<_param->_nb_inst_rename; i++)
130          sensitive << (*(in_RENAME_OUT_ACK          [i]));
131       
132# ifdef SYSTEMCASS_SPECIFIC
133        // List dependency information
134       
135        for (uint32_t i=0; i<_param->_nb_front_end; i++)
136          for (uint32_t j=0; j<_param->_nb_inst_decod [i]; j++)
137            for (uint32_t x=0; x<_param->_nb_inst_rename; x++)
138              {
139                (*(out_RENAME_IN_ACK            [i][j])) (*(in_RENAME_IN_VAL           [i][j]));
140                (*(out_RENAME_IN_ACK            [i][j])) (*(in_RENAME_OUT_ACK          [x]   ));
141              }
142
143        for (uint32_t x=0; x<_param->_nb_inst_rename; x++)
144          {
145            for (uint32_t i=0; i<_param->_nb_front_end; i++)
146              for (uint32_t j=0; j<_param->_nb_inst_decod [i]; j++)
147                {
148                  (*(out_RENAME_OUT_VAL           [x])) (*(in_RENAME_IN_VAL           [i][j]));
149
150                  if (_param->_have_port_front_end_id)
151                    {
152                  (*(out_RENAME_OUT_FRONT_END_ID  [x])) (*(in_RENAME_IN_VAL           [i][j]));
153                  (*(out_RENAME_OUT_FRONT_END_ID  [x])) (*(in_RENAME_IN_FRONT_END_ID  [i][j]));
154                    }
155                  if (_param->_have_port_context_id)
156                    {
157                  (*(out_RENAME_OUT_CONTEXT_ID    [x])) (*(in_RENAME_IN_VAL           [i][j]));
158                  (*(out_RENAME_OUT_CONTEXT_ID    [x])) (*(in_RENAME_IN_CONTEXT_ID    [i][j]));
159                    }
160                  if (_param->_have_port_depth)
161                    {
162                  (*(out_RENAME_OUT_DEPTH         [x])) (*(in_RENAME_IN_VAL           [i][j]));
163                  (*(out_RENAME_OUT_DEPTH         [x])) (*(in_RENAME_IN_DEPTH         [i][j]));
164                    }
165                  (*(out_RENAME_OUT_TYPE          [x])) (*(in_RENAME_IN_VAL           [i][j]));
166                  (*(out_RENAME_OUT_TYPE          [x])) (*(in_RENAME_IN_TYPE          [i][j]));
167                  (*(out_RENAME_OUT_OPERATION     [x])) (*(in_RENAME_IN_VAL           [i][j]));
168                  (*(out_RENAME_OUT_OPERATION     [x])) (*(in_RENAME_IN_OPERATION     [i][j]));
169                  (*(out_RENAME_OUT_NO_EXECUTE    [x])) (*(in_RENAME_IN_VAL           [i][j]));
170                  (*(out_RENAME_OUT_NO_EXECUTE    [x])) (*(in_RENAME_IN_NO_EXECUTE    [i][j]));
171                  (*(out_RENAME_OUT_IS_DELAY_SLOT [x])) (*(in_RENAME_IN_VAL           [i][j]));
172                  (*(out_RENAME_OUT_IS_DELAY_SLOT [x])) (*(in_RENAME_IN_IS_DELAY_SLOT [i][j]));
173#ifdef DEBUG
174                  (*(out_RENAME_OUT_ADDRESS       [x])) (*(in_RENAME_IN_VAL           [i][j]));
175                  (*(out_RENAME_OUT_ADDRESS       [x])) (*(in_RENAME_IN_ADDRESS       [i][j]));
176#endif
177                  (*(out_RENAME_OUT_ADDRESS_NEXT  [x])) (*(in_RENAME_IN_VAL           [i][j]));
178                  (*(out_RENAME_OUT_ADDRESS_NEXT  [x])) (*(in_RENAME_IN_ADDRESS_NEXT  [i][j]));
179                  (*(out_RENAME_OUT_HAS_IMMEDIAT  [x])) (*(in_RENAME_IN_VAL           [i][j]));
180                  (*(out_RENAME_OUT_HAS_IMMEDIAT  [x])) (*(in_RENAME_IN_HAS_IMMEDIAT  [i][j]));
181                  (*(out_RENAME_OUT_IMMEDIAT      [x])) (*(in_RENAME_IN_VAL           [i][j]));
182                  (*(out_RENAME_OUT_IMMEDIAT      [x])) (*(in_RENAME_IN_IMMEDIAT      [i][j]));
183                  (*(out_RENAME_OUT_READ_RA       [x])) (*(in_RENAME_IN_VAL           [i][j]));
184                  (*(out_RENAME_OUT_READ_RA       [x])) (*(in_RENAME_IN_READ_RA       [i][j]));
185                  (*(out_RENAME_OUT_NUM_REG_RA    [x])) (*(in_RENAME_IN_VAL           [i][j]));
186                  (*(out_RENAME_OUT_NUM_REG_RA    [x])) (*(in_RENAME_IN_NUM_REG_RA    [i][j]));
187                  (*(out_RENAME_OUT_READ_RB       [x])) (*(in_RENAME_IN_VAL           [i][j]));
188                  (*(out_RENAME_OUT_READ_RB       [x])) (*(in_RENAME_IN_READ_RB       [i][j]));
189                  (*(out_RENAME_OUT_NUM_REG_RB    [x])) (*(in_RENAME_IN_VAL           [i][j]));
190                  (*(out_RENAME_OUT_NUM_REG_RB    [x])) (*(in_RENAME_IN_NUM_REG_RB    [i][j]));
191                  (*(out_RENAME_OUT_READ_RC       [x])) (*(in_RENAME_IN_VAL           [i][j]));
192                  (*(out_RENAME_OUT_READ_RC       [x])) (*(in_RENAME_IN_READ_RC       [i][j]));
193                  (*(out_RENAME_OUT_NUM_REG_RC    [x])) (*(in_RENAME_IN_VAL           [i][j]));
194                  (*(out_RENAME_OUT_NUM_REG_RC    [x])) (*(in_RENAME_IN_NUM_REG_RC    [i][j]));
195                  (*(out_RENAME_OUT_WRITE_RD      [x])) (*(in_RENAME_IN_VAL           [i][j]));
196                  (*(out_RENAME_OUT_WRITE_RD      [x])) (*(in_RENAME_IN_WRITE_RD      [i][j]));
197                  (*(out_RENAME_OUT_NUM_REG_RD    [x])) (*(in_RENAME_IN_VAL           [i][j]));
198                  (*(out_RENAME_OUT_NUM_REG_RD    [x])) (*(in_RENAME_IN_NUM_REG_RD    [i][j]));
199                  (*(out_RENAME_OUT_WRITE_RE      [x])) (*(in_RENAME_IN_VAL           [i][j]));
200                  (*(out_RENAME_OUT_WRITE_RE      [x])) (*(in_RENAME_IN_WRITE_RE      [i][j]));
201                  (*(out_RENAME_OUT_NUM_REG_RE    [x])) (*(in_RENAME_IN_VAL           [i][j]));
202                  (*(out_RENAME_OUT_NUM_REG_RE    [x])) (*(in_RENAME_IN_NUM_REG_RE    [i][j]));
203                  (*(out_RENAME_OUT_EXCEPTION_USE [x])) (*(in_RENAME_IN_VAL           [i][j]));
204                  (*(out_RENAME_OUT_EXCEPTION_USE [x])) (*(in_RENAME_IN_EXCEPTION_USE [i][j]));
205                  (*(out_RENAME_OUT_EXCEPTION     [x])) (*(in_RENAME_IN_VAL           [i][j]));
206                  (*(out_RENAME_OUT_EXCEPTION     [x])) (*(in_RENAME_IN_EXCEPTION     [i][j]));
207                }
208          }
209# endif   
210       
211#endif
212      }
213    log_printf(FUNC,Rename_select,FUNCTION,"End");
214  };
215   
216#undef  FUNCTION
217#define FUNCTION "Rename_select::~Rename_select"
218  Rename_select::~Rename_select (void)
219  {
220    log_printf(FUNC,Rename_select,FUNCTION,"Begin");
221
222#ifdef STATISTICS
223    if (usage_is_set(_usage,USE_STATISTICS))
224      {
225        log_printf(INFO,Rename_select,FUNCTION,"Generate Statistics file");
226       
227        delete _stat;
228      }
229#endif
230
231    log_printf(INFO,Rename_select,FUNCTION,"Deallocation");
232    deallocation ();
233
234    log_printf(FUNC,Rename_select,FUNCTION,"End");
235  };
236
237}; // end namespace rename_select
238}; // end namespace rename_unit
239}; // end namespace ooo_engine
240}; // end namespace multi_ooo_engine
241}; // end namespace core
242
243}; // end namespace behavioural
244}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.