Ignore:
Timestamp:
May 16, 2009, 4:42:39 PM (15 years ago)
Author:
rosiere
Message:

1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Commit_unit/src/Commit_unit_genMealy_commit.cpp

    r100 r117  
    4949            // packet_id number can
    5050            Tpacket_t packet_id       = (_param->_have_port_rob_ptr  )?PORT_READ(in_COMMIT_PACKET_ID [i]):0;
    51             uint32_t  num_bank        = packet_id >> _param->_shift_num_bank;
     51            uint32_t  num_bank        = packet_id & _param->_mask_num_bank;
    5252            uint32_t  num_bank_access = bank_nb_access [num_bank];
    5353           
     
    6262                internal_BANK_COMMIT_NUM_INST [num_bank][num_bank_access] = i;
    6363               
    64                 Tpacket_t num_packet = packet_id & _param->_mask_size_bank;
     64                Tpacket_t num_packet = packet_id >> _param->_shift_num_slot;
    6565               
    6666                // find the good entry !!!
Note: See TracChangeset for help on using the changeset viewer.