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/Read_queue/src/Parameters.cpp

    r76 r77  
    2727                          uint32_t nb_general_register,
    2828                          uint32_t nb_special_register,
    29                           uint32_t nb_operation       ,
    30                           uint32_t nb_type            ,
    3129                          uint32_t nb_gpr_write       ,
    3230                          uint32_t nb_spr_write       ,
     
    4240    _nb_general_register   (nb_general_register  ),
    4341    _nb_special_register   (nb_special_register  ),
    44     _nb_operation          (nb_operation         ),
    45     _nb_type               (nb_type              ),
    4642    _nb_gpr_write          (nb_gpr_write         ),
    4743    _nb_spr_write          (nb_spr_write         ),
     
    5753    _size_general_register (static_cast<uint32_t>(log2(_nb_general_register))),
    5854    _size_special_register (static_cast<uint32_t>(log2(_nb_special_register))),
    59     _size_operation        (static_cast<uint32_t>(log2(_nb_operation       ))),
    60     _size_type             (static_cast<uint32_t>(log2(_nb_type            ))),
    6155
    6256    _have_port_context_id    (_size_context_id    > 0),
     
    10498    _nb_general_register   (param._nb_general_register   ),
    10599    _nb_special_register   (param._nb_special_register   ),
    106     _nb_operation          (param._nb_operation          ),
    107     _nb_type               (param._nb_type               ),
    108100    _nb_gpr_write          (param._nb_gpr_write          ),
    109101    _nb_spr_write          (param._nb_spr_write          ),
     
    119111    _size_general_register (param._size_general_register ),
    120112    _size_special_register (param._size_special_register ),
    121     _size_operation        (param._size_operation        ),
    122     _size_type             (param._size_type             ),
    123113
    124114    _have_port_context_id    (param._have_port_context_id   ),
Note: See TracChangeset for help on using the changeset viewer.