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_Read_unit/Read_unit/Reservation_station/src/Parameters.cpp

    r76 r77  
    3030                          uint32_t nb_general_register,
    3131                          uint32_t nb_special_register,
    32                           uint32_t nb_operation       ,
    33                           uint32_t nb_type            ,
    3432                          uint32_t nb_gpr_write       ,
    3533                          uint32_t nb_spr_write       ,
     
    4846    _nb_general_register   (nb_general_register  ),
    4947    _nb_special_register   (nb_special_register  ),
    50     _nb_operation          (nb_operation         ),
    51     _nb_type               (nb_type              ),
    5248    _nb_gpr_write          (nb_gpr_write         ),
    5349    _nb_spr_write          (nb_spr_write         ),
     
    6359    _size_general_register (static_cast<uint32_t>(log2(_nb_general_register))),
    6460    _size_special_register (static_cast<uint32_t>(log2(_nb_special_register))),
    65     _size_operation        (static_cast<uint32_t>(log2(_nb_operation       ))),
    66     _size_type             (static_cast<uint32_t>(log2(_nb_type            ))),
    6761
    6862    _have_port_context_id    (_size_context_id    > 0),
     
    8983    _nb_general_register   (param._nb_general_register   ),
    9084    _nb_special_register   (param._nb_special_register   ),
    91     _nb_operation          (param._nb_operation          ),
    92     _nb_type               (param._nb_type               ),
    9385    _nb_gpr_write          (param._nb_gpr_write          ),
    9486    _nb_spr_write          (param._nb_spr_write          ),
     
    10496    _size_general_register (param._size_general_register ),
    10597    _size_special_register (param._size_special_register ),
    106     _size_operation        (param._size_operation        ),
    107     _size_type             (param._size_type             ),
    10898
    10999    _have_port_context_id    (param._have_port_context_id   ),
Note: See TracChangeset for help on using the changeset viewer.