Ignore:
Timestamp:
Apr 20, 2009, 11:29:17 PM (15 years ago)
Author:
rosiere
Message:

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

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/src/Decod_queue_deallocation.cpp

    r112 r115  
    112112                  }
    113113
    114               DELETE1(reg_QUEUE,_param->_nb_bank); break;
     114              DELETE1(reg_QUEUE,_param->_nb_bank);
     115              break;
    115116            }
    116117          }
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/src/Decod_queue_function_multi_fifo_genMealy_decod_out.cpp

    r111 r115  
    6363            // ....... max ...X... min ....... KO
    6464           
    65             Tcontrol_t   is_valid      = ((depth == depth_min) or
    66                                           depth_full or
    67                                           ((depth_min <= depth_max)?
    68                                            ((depth >= depth_min) and (depth <=depth_max)):
    69                                            ((depth >= depth_min) or  (depth <=depth_max))));
     65            Tcontrol_t is_valid = true;
     66
     67//             Tcontrol_t   is_valid      = ((depth == depth_min) or
     68//                                           depth_full or
     69//                                           ((depth_min <= depth_max)?
     70//                                            ((depth >= depth_min) and (depth <=depth_max)):
     71//                                            ((depth >= depth_min) or  (depth <=depth_max))));
    7072            //Tcontrol_t is_valid        = ((depth == depth_min) or
    7173            //                              ((depth_min < depth_max)?
  • 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

    r111 r115  
    6666              // ....... max ...X... min ....... KO
    6767             
    68               Tcontrol_t   is_valid      = ((depth == depth_min) or
    69                                             depth_full or
    70                                             ((depth_min <= depth_max)?
    71                                              ((depth >= depth_min) and (depth <=depth_max)):
    72                                              ((depth >= depth_min) or  (depth <=depth_max))));
     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))));
    7374              //Tcontrol_t is_valid        = ((depth == depth_min) or
    7475              //                              ((depth_min < depth_max)?
Note: See TracChangeset for help on using the changeset viewer.