source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod/src/Decod_genMealy.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 11.8 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id: Decod_genMealy.cpp 88 2008-12-10 18:31:39Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod/include/Decod.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace decod_unit {
17namespace decod {
18
19
20#undef  FUNCTION
21#define FUNCTION "Decod::genMealy"
22  void Decod::genMealy (void)
23  {
24    log_begin(Decod,FUNCTION);
25    log_function(Decod,FUNCTION,_name.c_str());
26
27    //-----------------------------------
28    // Initialization
29    //-----------------------------------
30    Tcontrol_t context_event_val = false;
31    Tcontrol_t ifetch_ack [_param->_nb_context][_param->_max_nb_inst_fetch];
32    for (uint32_t i=0; i<_param->_nb_context; i++)
33      for (uint32_t j=0; j<_param->_nb_inst_fetch[i]; j++)
34        ifetch_ack [i][j] = false;
35
36    Tcontrol_t predict_val [_param->_nb_inst_decod];
37    Tcontrol_t decod_val   [_param->_nb_inst_decod];
38    for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
39      {
40        decod_val   [i] = false;
41        predict_val [i] = false;
42      }
43
44    Tcontrol_t can_continue      [_param->_nb_context];
45    Tcontrol_t can_continue_next [_param->_nb_context];   
46
47    for (uint32_t i=0; i<_param->_nb_context; i++)
48      {
49        internal_CONTEXT_HAVE_TRANSACTION [i] = false;
50        internal_CONTEXT_ADDRESS_PREVIOUS [i] = reg_CONTEXT_ADDRESS_PREVIOUS [i];
51        internal_CONTEXT_IS_DELAY_SLOT    [i] = reg_CONTEXT_IS_DELAY_SLOT    [i];
52       
53        can_continue                      [i] = PORT_READ(in_CONTEXT_DECOD_ENABLE [i]);
54        can_continue_next                 [i] = PORT_READ(in_CONTEXT_DECOD_ENABLE [i]);
55      }
56   
57    //-----------------------------------
58    // Loop of decod
59    //-----------------------------------
60    // scan all decod "slot_out"
61    std::list<generic::priority::select_t> * select = _priority->select();
62    std::list<generic::priority::select_t>::iterator it=select->begin();
63    for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
64      {
65        while ((it != select->end())    and  // have a no scanned "slot_in" ?
66               (decod_val [i] == false) and  // have not a previous selected entry?
67               (context_event_val == false)) // Have not a context_event (spr_access, exception, ...)
68          {
69            predict_val [i] = false;
70
71            Tcontext_t x = it->grp;
72            uint32_t   y = it->elt;
73
74            // Test if this instruction is valid
75            if ((PORT_READ(in_IFETCH_VAL [x][y]) == 1) and // entry is valid
76                (can_continue [x]                == 1))    // context can decod instruction (have not a previous event)
77              {
78                log_printf(TRACE,Decod,FUNCTION,"  * IFETCH [%d][%d]",x,y);   
79
80                can_continue [x] = can_continue_next [x];
81
82                decod_val  [i]    = true;                        // fetch_val and decod_enable
83                ifetch_ack [x][y] = PORT_READ(in_DECOD_ACK [i]); // fetch_val and decod_enable and decod_ack
84
85                Tgeneral_data_t addr = PORT_READ(in_IFETCH_ADDRESS [x])+y;
86
87                _decod_instruction->_instruction      = PORT_READ(in_IFETCH_INSTRUCTION [x][y]);
88                _decod_instruction->_context_id       = x;
89                _decod_instruction->_address_previous = internal_CONTEXT_ADDRESS_PREVIOUS [x];
90                _decod_instruction->_address          = addr; //Compute the current address
91                _decod_instruction->_address_next     = addr+1;
92                _decod_instruction->_is_delay_slot    = internal_CONTEXT_IS_DELAY_SLOT [x];
93
94                // Test IFetch exception
95                Texception_t ifetch_exception = PORT_READ(in_IFETCH_EXCEPTION [x]);
96
97                if (ifetch_exception == EXCEPTION_IFETCH_NONE)
98                  {
99                    // Decod !
100                    log_printf(TRACE,Decod,FUNCTION,"  * DECOD [%d]",i);
101                    log_printf(TRACE,Decod,FUNCTION,"    * context       : %d",x);
102                    log_printf(TRACE,Decod,FUNCTION,"    * fetch         : %d",y);
103                    log_printf(TRACE,Decod,FUNCTION,"    * address       : %.8x (%.8x)",addr,(addr<<2));
104                    log_printf(TRACE,Decod,FUNCTION,"    * is_delay_slot : %d",internal_CONTEXT_IS_DELAY_SLOT [x]);
105                   
106                    instruction_decod (_decod_instruction, _decod_param[x]);
107                  }
108                else
109                  {
110                    // No decod : nop
111                    instruction_l_nop (_decod_instruction, _decod_param[x]);
112
113                    _decod_instruction->_exception_use = EXCEPTION_USE_NONE;
114                    _decod_instruction->_exception     = exception_ifetch_to_exception_decod(ifetch_exception);
115                   
116                    // INSTRUCTION_TLB 
117                    // INSTRUCTION_PAGE
118                    // BUS_ERROR       
119                    if (_decod_instruction->_is_delay_slot)
120                      _decod_instruction->_address_next       = _decod_instruction->_address_previous;
121                    else
122                      _decod_instruction->_address_next       = _decod_instruction->_address;
123                   
124                    _decod_instruction->_event_type         = EVENT_TYPE_EXCEPTION;
125                  }
126
127                Ttype_t  type  = _decod_instruction->_type;
128                Tdepth_t depth = (_param->_have_port_depth)?PORT_READ(in_CONTEXT_DEPTH [x]):0; // DEPTH_CURRENT
129
130                if (_param->_have_port_context_id)
131                PORT_WRITE(out_DECOD_CONTEXT_ID    [i], x);
132                if (_param->_have_port_depth)
133                PORT_WRITE(out_DECOD_DEPTH         [i], depth);
134                PORT_WRITE(out_DECOD_TYPE          [i], type);
135                PORT_WRITE(out_DECOD_OPERATION     [i], _decod_instruction->_operation     );
136                PORT_WRITE(out_DECOD_NO_EXECUTE    [i], _decod_instruction->_no_execute    );
137                PORT_WRITE(out_DECOD_IS_DELAY_SLOT [i], _decod_instruction->_is_delay_slot );
138                PORT_WRITE(out_DECOD_ADDRESS       [i], addr);
139                PORT_WRITE(out_DECOD_HAS_IMMEDIAT  [i], _decod_instruction->_has_immediat  );
140                PORT_WRITE(out_DECOD_IMMEDIAT      [i], _decod_instruction->_immediat      );
141                PORT_WRITE(out_DECOD_READ_RA       [i], _decod_instruction->_read_ra       );
142                PORT_WRITE(out_DECOD_NUM_REG_RA    [i], _decod_instruction->_num_reg_ra    );
143                PORT_WRITE(out_DECOD_READ_RB       [i], _decod_instruction->_read_rb       );
144                PORT_WRITE(out_DECOD_NUM_REG_RB    [i], _decod_instruction->_num_reg_rb    );
145                PORT_WRITE(out_DECOD_READ_RC       [i], _decod_instruction->_read_rc       );
146                PORT_WRITE(out_DECOD_NUM_REG_RC    [i], _decod_instruction->_num_reg_rc    );
147                PORT_WRITE(out_DECOD_WRITE_RD      [i], _decod_instruction->_write_rd      );
148                PORT_WRITE(out_DECOD_NUM_REG_RD    [i], _decod_instruction->_num_reg_rd    );
149                PORT_WRITE(out_DECOD_WRITE_RE      [i], _decod_instruction->_write_re      );
150                PORT_WRITE(out_DECOD_NUM_REG_RE    [i], _decod_instruction->_num_reg_re    );
151                PORT_WRITE(out_DECOD_EXCEPTION_USE [i], _decod_instruction->_exception_use );
152//              PORT_WRITE(out_DECOD_EXCEPTION     [i], _decod_instruction->_exception     );
153
154                if (type == TYPE_BRANCH)
155                  {
156                    log_printf(TRACE,Decod,FUNCTION,"    * type is branch");
157                    log_printf(TRACE,Decod,FUNCTION,"      * address src  : %.8x (%.8x)",_decod_instruction->_address     ,_decod_instruction->_address     <<2);
158                    log_printf(TRACE,Decod,FUNCTION,"      * address dest : %.8x (%.8x)",_decod_instruction->_address_next,_decod_instruction->_address_next<<2);
159
160                    predict_val [i]     = ifetch_ack  [x][y] // and decod_val [i]
161                      ;
162                    decod_val   [i]    &= PORT_READ(in_PREDICT_ACK [i]);// predict_ack and fetch_val and decod_enable               
163                    ifetch_ack  [x][y] &= PORT_READ(in_PREDICT_ACK [i]);// predict_ack and fetch_val and decod_enable and decod_ack
164
165                    if (_param->_have_port_context_id)
166                    PORT_WRITE(out_PREDICT_CONTEXT_ID                  [i],x);
167                    PORT_WRITE(out_PREDICT_MATCH_INST_IFETCH_PTR       [i],y == ((_param->_have_port_inst_ifetch_ptr)?PORT_READ(in_IFETCH_INST_IFETCH_PTR [x]):0));
168                    PORT_WRITE(out_PREDICT_BRANCH_STATE                [i],PORT_READ(in_IFETCH_BRANCH_STATE                [x]));
169                    if (_param->_have_port_depth)
170                    PORT_WRITE(out_PREDICT_BRANCH_UPDATE_PREDICTION_ID [i],PORT_READ(in_IFETCH_BRANCH_UPDATE_PREDICTION_ID [x]));
171                    PORT_WRITE(out_PREDICT_BRANCH_CONDITION            [i],_decod_instruction->_branch_condition  );
172//                  PORT_WRITE(out_PREDICT_BRANCH_STACK_WRITE          [i],_decod_instruction->_branch_stack_write);
173                    PORT_WRITE(out_PREDICT_BRANCH_DIRECTION            [i],_decod_instruction->_branch_direction  );
174                    PORT_WRITE(out_PREDICT_ADDRESS_SRC                 [i],_decod_instruction->_address           );
175                    PORT_WRITE(out_PREDICT_ADDRESS_DEST                [i],_decod_instruction->_address_next      );
176               
177                    //can_continue_next [x] = PORT_READ(in_PREDICT_CAN_CONTINUE [i]); // can continue is set if direction is "not take" (also, continue is sequential order)
178                    can_continue_next [x] = false; // one branch per context, the DS don't execute
179                  }
180
181                Tevent_type_t event_type = _decod_instruction->_event_type;
182                if (event_type != EVENT_TYPE_NONE)
183                  {
184                    // speculative jump at the exception handler
185                    // if type = TYPE_BRANCH, also event_type == EVENT_TYPE_NONE
186                    context_event_val   = ifetch_ack  [x][y] // and decod_val [i]
187                      ;
188                    decod_val   [i]    &= PORT_READ(in_CONTEXT_EVENT_ACK);// context_event_ack and fetch_val and decod_enable             
189                    ifetch_ack  [x][y] &= PORT_READ(in_CONTEXT_EVENT_ACK);// context_event_ack and fetch_val and decod_enable and decod_ack
190
191                    if (_param->_have_port_context_id)
192                    PORT_WRITE(out_CONTEXT_EVENT_CONTEXT_ID   , x);
193                    if (_param->_have_port_depth)
194                    PORT_WRITE(out_CONTEXT_EVENT_DEPTH        , depth);
195                    PORT_WRITE(out_CONTEXT_EVENT_TYPE         , _decod_instruction->_event_type    );
196                    PORT_WRITE(out_CONTEXT_EVENT_IS_DELAY_SLOT, _decod_instruction->_is_delay_slot );
197                    PORT_WRITE(out_CONTEXT_EVENT_ADDRESS      , _decod_instruction->_address       );
198                    PORT_WRITE(out_CONTEXT_EVENT_ADDRESS_EPCR , _decod_instruction->_address_next  );
199                  }
200
201                // fetch_ack =
202                //   ((event_type == EVENT_TYPE_NONE) or ((event_type != EVENT_TYPE_NONE) and context_event_ack)) and
203                //   ((type       == TYPE_BRANCH    ) or ((type       != TYPE_BRANCH    ) and predict_ack      )) and
204                //   fetch_val and decod_ack and decod_enable and true (is decod_val)
205
206                // To compute the "next previous" address
207                Tcontrol_t have_transaction = ifetch_ack [x][y];
208
209                internal_CONTEXT_HAVE_TRANSACTION [x] |= have_transaction;
210                if (have_transaction)
211                  {
212                    internal_CONTEXT_ADDRESS_PREVIOUS [x] = addr;
213                    internal_CONTEXT_IS_DELAY_SLOT    [x] = (type == TYPE_BRANCH); // next is a delay slot if current have branch type
214                  }
215
216                can_continue [x] &= have_transaction; // to have a in order decod !!! if a previous instruction can decod, also next instruction can't decod.
217              }
218
219            log_printf(TRACE,Decod,FUNCTION,"    - num_(decod, context, fetch) : %d %d %d",i, x, y);
220            log_printf(TRACE,Decod,FUNCTION,"      - ifetch_ack        : %d",ifetch_ack  [x][y]);
221            log_printf(TRACE,Decod,FUNCTION,"      - context_event_val : %d",context_event_val );
222            log_printf(TRACE,Decod,FUNCTION,"      - predict_val       : %d",predict_val [i]   );
223            log_printf(TRACE,Decod,FUNCTION,"      - decod_val         : %d",decod_val   [i]   );
224           
225            it ++;
226          }
227      }
228    //-----------------------------------
229    // Write output
230    //-----------------------------------
231
232    for (uint32_t i=0; i<_param->_nb_context; i++)
233      for (uint32_t j=0; j<_param->_nb_inst_fetch[i]; j++)
234        PORT_WRITE(out_IFETCH_ACK [i][j], ifetch_ack [i][j]);
235
236    PORT_WRITE(out_CONTEXT_EVENT_VAL, context_event_val);
237
238    for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
239      {
240        PORT_WRITE(out_PREDICT_VAL [i], predict_val [i]);
241        PORT_WRITE(out_DECOD_VAL   [i], decod_val   [i]);
242       
243#ifdef STATISTICS
244        internal_DECOD_VAL [i] = decod_val [i];
245#endif
246      }
247
248    log_end(Decod,FUNCTION);
249  };
250
251}; // end namespace decod
252}; // end namespace decod_unit
253}; // end namespace front_end
254}; // end namespace multi_front_end
255}; // end namespace core
256
257}; // end namespace behavioural
258}; // end namespace morpheo             
259#endif
Note: See TracBrowser for help on using the repository browser.