Ignore:
Timestamp:
Feb 5, 2008, 5:21:20 PM (16 years ago)
Author:
rosiere
Message:
  • Add two component :
    • network between read unit and execute unit
    • network between execute unit and write unit
  • remove parameters "nb_operation" and "nb_type"
  • in write_queue add the special case : load_speculative
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/src/Parameters.cpp

    r74 r77  
    2626                          uint32_t nb_packet          ,
    2727                          uint32_t size_general_data  ,
    28                           uint32_t size_special_data  ,
    29                           uint32_t nb_operation       ,
    30                           uint32_t nb_type            ):
     28                          uint32_t size_special_data  ):
    3129    _size_queue              (size_queue         ),
    3230    _nb_context              (nb_context         ),
     
    3634    _size_general_data       (size_general_data  ),
    3735    _size_special_data       (size_special_data  ),
    38     _nb_operation            (nb_operation       ),
    39     _nb_type                 (nb_type            ),
    4036
    4137    _size_context_id         (log2(_nb_context         )),
     
    4339    _size_ooo_engine_id      (log2(_nb_ooo_engine      )),
    4440    _size_packet_id          (log2(_nb_packet          )),
    45     _size_operation          (log2(_nb_operation       )),
    46     _size_type               (log2(_nb_type            )),
    4741
    4842    _have_port_context_id    (_size_context_id    > 0),
     
    6660    _size_general_data       (param._size_general_data      ),
    6761    _size_special_data       (param._size_special_data      ),
    68     _nb_operation            (param._nb_operation           ),
    69     _nb_type                 (param._nb_type                ),
    7062
    7163    _size_context_id         (param._size_context_id        ),
     
    7365    _size_ooo_engine_id      (param._size_ooo_engine_id     ),
    7466    _size_packet_id          (param._size_packet_id         ),
    75     _size_operation          (param._size_operation         ),
    76     _size_type               (param._size_type              ),
    7767
    7868    _have_port_context_id    (param._have_port_context_id   ),
Note: See TracChangeset for help on using the changeset viewer.