source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Issue_queue/src/Issue_queue_transition.cpp

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

Modif for performance :
1) Load Store Unit : store send request to valid exeception
2) Commit_unit : retire can bypass store
3) Commit_unit : add stat to manage store instruction
4) Load Store Unit and Load Store Pointer Manager : add store_queue_ptr_read
5) Fix lot of bug

  • Property svn:keywords set to Id
File size: 8.9 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id: Issue_queue_transition.cpp 122 2009-06-03 08:15:51Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Issue_queue/include/Issue_queue.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_ooo_engine {
15namespace ooo_engine {
16namespace issue_queue {
17
18
19#undef  FUNCTION
20#define FUNCTION "Issue_queue::transition"
21  void Issue_queue::transition (void)
22  {
23    log_begin(Issue_queue,FUNCTION);
24    log_function(Issue_queue,FUNCTION,_name.c_str());
25
26    if (PORT_READ(in_NRESET) == 0)
27      {
28        _priority_in ->reset();
29        _reexecute_queue.clear();
30      }
31    else
32      {
33        _priority_in ->transition();
34
35        // ===================================================================
36        // =====[ REEXECUTE_UNIT ]============================================
37        // ===================================================================
38
39        for (uint32_t i=0; i<_param->_nb_inst_reexecute; ++i)
40          if (PORT_READ(in_REEXECUTE_VAL [i]) and internal_REEXECUTE_ACK [i])
41            {
42              log_printf(TRACE,Issue_queue,FUNCTION,"  * REEXECUTE [%d]",i);
43#ifdef STATISTICS
44              if (usage_is_set(_usage,USE_STATISTICS))
45                (*_stat_nb_inst_reexecute) ++;
46#endif
47              entry_t * entry = new entry_t
48                (
49                 (_param->_have_port_context_id    )?PORT_READ(in_REEXECUTE_CONTEXT_ID            [i]):0,
50                 (_param->_have_port_front_end_id  )?PORT_READ(in_REEXECUTE_FRONT_END_ID          [i]):0,
51                 (_param->_have_port_rob_ptr       )?PORT_READ(in_REEXECUTE_PACKET_ID             [i]):0,
52                                                     PORT_READ(in_REEXECUTE_OPERATION             [i]),
53                                                     PORT_READ(in_REEXECUTE_TYPE                  [i]),
54                                                     PORT_READ(in_REEXECUTE_STORE_QUEUE_PTR_WRITE [i]),
55                                                     PORT_READ(in_REEXECUTE_STORE_QUEUE_PTR_READ  [i]),
56                                                     PORT_READ(in_REEXECUTE_STORE_QUEUE_EMPTY     [i]),
57                 (_param->_have_port_load_queue_ptr)?PORT_READ(in_REEXECUTE_LOAD_QUEUE_PTR_WRITE  [i]):0,
58                                                     PORT_READ(in_REEXECUTE_HAS_IMMEDIAT          [i]),
59                                                     PORT_READ(in_REEXECUTE_IMMEDIAT              [i]),
60                                                     PORT_READ(in_REEXECUTE_READ_RA               [i]),
61                                                     PORT_READ(in_REEXECUTE_NUM_REG_RA            [i]),
62                                                     PORT_READ(in_REEXECUTE_READ_RB               [i]),
63                                                     PORT_READ(in_REEXECUTE_NUM_REG_RB            [i]),
64                                                     PORT_READ(in_REEXECUTE_READ_RC               [i]),
65                                                     PORT_READ(in_REEXECUTE_NUM_REG_RC            [i]),
66                                                     PORT_READ(in_REEXECUTE_WRITE_RD              [i]),
67                                                     PORT_READ(in_REEXECUTE_NUM_REG_RD            [i]),
68                                                     PORT_READ(in_REEXECUTE_WRITE_RE              [i]),
69                                                     PORT_READ(in_REEXECUTE_NUM_REG_RE            [i])
70                 );
71
72              _reexecute_queue.push_back(entry);
73            }
74
75        // ===================================================================
76        // =====[ ISSUE_OUT ]=================================================
77        // ===================================================================
78
79        for (uint32_t i=0; i<_param->_nb_inst_issue; ++i)
80          if (internal_ISSUE_OUT_VAL [i] and PORT_READ(in_ISSUE_OUT_ACK [i]))
81            {
82#ifdef STATISTICS
83              if (usage_is_set(_usage,USE_STATISTICS))
84                (*_stat_nb_inst_issue_out ) ++;
85#endif
86              if (internal_ISSUE_OUT_FROM_REEXECUTE [i])
87                {
88                  entry_t * entry = internal_ISSUE_OUT_ENTRY    [i];
89                 
90                  log_printf(TRACE,Issue_queue,FUNCTION,"  * ISSUE_OUT [%d] - From Reexecute_queue",i);
91                 
92                  _reexecute_queue.remove(entry);
93                 
94                  delete entry;
95                }
96                // else ... in function specific
97            }
98      }
99
100    // specific implementation
101    (this->*function_transition) ();
102
103    // ===================================================================
104    // =====[ PRINT ]====================================================
105    // ===================================================================
106
107#if defined(DEBUG) and DEBUG_Issue_queue and (DEBUG >= DEBUG_TRACE)
108    log_printf(TRACE,Issue_queue,FUNCTION,"  * Dump Issue_queue");
109
110    if (_param->_queue_scheme == ISSUE_QUEUE_SCHEME_IN_ORDER)
111      {
112    log_printf(TRACE,Issue_queue,FUNCTION,"    * reg_NUM_BANK_HEAD : %d",reg_NUM_BANK_HEAD);
113    log_printf(TRACE,Issue_queue,FUNCTION,"    * reg_NUM_BANK_TAIL : %d",reg_NUM_BANK_TAIL);
114      }
115
116    for (uint32_t i=0; i<_param->_nb_bank; i++)
117      {
118        log_printf(TRACE,Issue_queue,FUNCTION,"    * Bank [%d] size : %d",i,(int)_issue_queue[i].size());
119
120        uint32_t j = 0;
121        for (std::list<entry_t*>::iterator it=_issue_queue[i].begin();it!=_issue_queue[i].end(); ++it)
122          {
123            log_printf(TRACE,Issue_queue,FUNCTION,"      [%.4d] %.2d %.2d %.4d, %.2d %.3d, %.2d %.2d %.1d %.2d, %.1d %.8x, %.1d %.4d, %.1d %.4d, %.1d %.4d, %.1d %.4d, %.1d %.4d",
124                       j,
125                       
126                       (*it)->_context_id           ,
127                       (*it)->_front_end_id         ,
128                       (*it)->_packet_id            ,
129                       
130                       (*it)->_type                 ,
131                       (*it)->_operation            ,
132                       
133                       (*it)->_store_queue_ptr_write,
134                       (*it)->_store_queue_ptr_read ,
135                       (*it)->_store_queue_empty    ,
136                       (*it)->_load_queue_ptr_write ,
137                       
138                       (*it)->_has_immediat         ,
139                       (*it)->_immediat             ,
140                       
141                       (*it)->_read_ra              ,
142                       (*it)->_num_reg_ra           ,
143                       
144                       (*it)->_read_rb              ,
145                       (*it)->_num_reg_rb           ,
146                       
147                       (*it)->_read_rc              ,
148                       (*it)->_num_reg_rc           ,
149                       
150                       (*it)->_write_rd             ,
151                       (*it)->_num_reg_rd           ,
152                       
153                       (*it)->_write_re             ,
154                       (*it)->_num_reg_re           );
155           
156                ++j;
157              }
158      }
159
160    {
161      log_printf(TRACE,Issue_queue,FUNCTION,"    * Reexecute_queue - size : %d",(int)_reexecute_queue.size());
162     
163      uint32_t i = 0;
164
165      for (std::list<entry_t*>::iterator it=_reexecute_queue.begin();it!=_reexecute_queue.end(); ++it)
166        {
167          log_printf(TRACE,Issue_queue,FUNCTION,"      [%.4d] %.2d %.2d %.4d, %.2d %.3d, %.2d %.2d %.1d %.2d, %.1d %.8x, %.1d %.4d, %.1d %.4d, %.1d %.4d, %.1d %.4d, %.1d %.4d",
168                     i,
169                     
170                     (*it)->_context_id           ,
171                     (*it)->_front_end_id         ,
172                     (*it)->_packet_id            ,
173                     
174                     (*it)->_type                 ,
175                     (*it)->_operation            ,
176                     
177                     (*it)->_store_queue_ptr_write,
178                     (*it)->_store_queue_ptr_read ,
179                     (*it)->_store_queue_empty    ,
180                     (*it)->_load_queue_ptr_write ,
181                     
182                     (*it)->_has_immediat         ,
183                     (*it)->_immediat             ,
184                     
185                     (*it)->_read_ra              ,
186                     (*it)->_num_reg_ra           ,
187                     
188                     (*it)->_read_rb              ,
189                     (*it)->_num_reg_rb           ,
190                     
191                     (*it)->_read_rc              ,
192                     (*it)->_num_reg_rc           ,
193                     
194                     (*it)->_write_rd             ,
195                     (*it)->_num_reg_rd           ,
196                     
197                     (*it)->_write_re             ,
198                     (*it)->_num_reg_re           );
199          ++i;
200        }
201    }
202#endif
203
204#ifdef STATISTICS
205    if (usage_is_set(_usage,USE_STATISTICS))
206      for (uint32_t i=0; i<_param->_nb_bank; i++)
207        *(_stat_bank_nb_inst [i]) += _issue_queue[i].size();
208#endif
209
210
211
212#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
213    end_cycle ();
214#endif
215
216    log_end(Issue_queue,FUNCTION);
217  };
218
219}; // end namespace issue_queue
220}; // end namespace ooo_engine
221}; // end namespace multi_ooo_engine
222}; // end namespace core
223
224}; // end namespace behavioural
225}; // end namespace morpheo             
226#endif
Note: See TracBrowser for help on using the repository browser.