source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/src/Decod_queue_function_one_fifo_genMealy_decod_out.cpp @ 115

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

1) Write queue with mealy
2) Network : fix bug
3) leak memory

  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id: Decod_queue_function_one_fifo_genMealy_decod_out.cpp 115 2009-04-20 21:29:17Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/include/Decod_queue.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace decod_unit {
17namespace decod_queue {
18
19
20#undef  FUNCTION
21#define FUNCTION "Decod_queue::function_one_fifo_genMealy_decod_out"
22  void Decod_queue::function_one_fifo_genMealy_decod_out (void)
23  {
24    log_begin(Decod_queue,FUNCTION);
25    log_function(Decod_queue,FUNCTION,_name.c_str());
26
27    Tcontrol_t val [_param->_nb_inst_decod];
28    for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
29      {
30        val                    [i] = 0;
31        internal_DECOD_OUT_VAL [i] = 0;
32        internal_DECOD_OUT_ACK [i] = 0;
33      }
34
35    if (not reg_QUEUE->empty())
36      for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
37        {
38          uint32_t index = reg_LAST_SLOT + i;
39
40          // Stop
41          if (index >= _param->_nb_inst_decod)
42            break;
43
44          if (reg_QUEUE->front()->_val [index])
45            {
46              log_printf(TRACE,Decod_queue,FUNCTION,_("  * Queue is not empty, slot [%d] is valid."),i);
47             
48              Tcontext_t context         = reg_QUEUE->front()->_context_id    [index];
49              Tdepth_t   depth           = reg_QUEUE->front()->_depth         [index];
50              Tdepth_t   depth_min       = (_param->_have_port_depth)?PORT_READ(in_DEPTH_MIN [context]):0;
51              Tdepth_t   depth_max       = (_param->_have_port_depth)?PORT_READ(in_DEPTH_MAX [context]):0;
52              Tcontrol_t depth_full      = PORT_READ(in_DEPTH_FULL[context]);
53
54              // is a valid instruction ?
55              // If DEPTH_CURRENT :
56              // equal at     DEPTH_MIN            -> not speculative
57              // not include ]DEPTH_MIN:DEPTH_MAX] -> previous branch miss
58              //     include ]DEPTH_MIN:DEPTH_MAX] -> speculative
59             
60              // All case
61              // ....... min ...X... max ....... OK
62              // ....... min ....... max ...X... KO
63              // ...X... min ....... max ....... KO
64              // ....... max ....... min ...X... OK
65              // ...X... max ....... min ....... OK
66              // ....... max ...X... min ....... KO
67             
68              Tcontrol_t is_valid = true;
69//               Tcontrol_t   is_valid      = ((depth == depth_min) or
70//                                             depth_full or
71//                                             ((depth_min <= depth_max)?
72//                                              ((depth >= depth_min) and (depth <=depth_max)):
73//                                              ((depth >= depth_min) or  (depth <=depth_max))));
74              //Tcontrol_t is_valid        = ((depth == depth_min) or
75              //                              ((depth_min < depth_max)?
76              //                               (depth<=depth_max):
77              //                               ((depth > depth_min) or (depth <= depth_max))));
78              //Tcontrol_t is_valid        = depth <= depth_max;
79
80              log_printf(TRACE,Decod_queue,FUNCTION,"    * is_valid : %d",is_valid);
81              log_printf(TRACE,Decod_queue,FUNCTION,"      * context      : %d",context);
82              log_printf(TRACE,Decod_queue,FUNCTION,"      * depth        : %d",depth);
83              log_printf(TRACE,Decod_queue,FUNCTION,"      * depth_min    : %d",depth_min);
84              log_printf(TRACE,Decod_queue,FUNCTION,"      * depth_max    : %d",depth_max);
85              log_printf(TRACE,Decod_queue,FUNCTION,"      * depth_full   : %d",depth_full);
86#ifdef DEBUG
87              log_printf(TRACE,Decod_queue,FUNCTION,"      * address      : 0x%x (0x%x)",reg_QUEUE->front()->_address     [index],reg_QUEUE->front()->_address     [index]<<2);
88#endif
89              log_printf(TRACE,Decod_queue,FUNCTION,"      * address_next : 0x%x (0x%x)",reg_QUEUE->front()->_address_next[index],reg_QUEUE->front()->_address_next[index]<<2);
90              internal_DECOD_OUT_VAL [index] = 1; // in all case, val is set (entry is not empty, and instruction is valid)
91              if (is_valid)
92                {
93                  val                    [i]     = 1;
94                  internal_DECOD_OUT_ACK [index] = PORT_READ(in_DECOD_OUT_ACK [i]);
95                }
96              else
97                {
98                  // Consume the instruction (to erase)
99                  internal_DECOD_OUT_ACK [index] = 1;
100                }
101            }
102      }
103
104    for (uint32_t i=0; i<_param->_nb_inst_decod; i++)
105      {
106        log_printf(TRACE,Decod_queue,FUNCTION,"  * DECOD_OUT_VAL : %d",val [i]);
107       
108        PORT_WRITE(out_DECOD_OUT_VAL [i],val [i]);
109      }
110
111    log_end(Decod_queue,FUNCTION);
112  };
113
114}; // end namespace decod_queue
115}; // end namespace decod_unit
116}; // end namespace front_end
117}; // end namespace multi_front_end
118}; // end namespace core
119
120}; // end namespace behavioural
121}; // end namespace morpheo             
122#endif
Note: See TracBrowser for help on using the repository browser.