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/Icache_Access/src/Parameters_msg_error.cpp

    r88 r117  
    4444   
    4545    for (uint32_t i=0; i<_nb_front_end; i++)
    46       for (uint32_t j=0; j<_nb_context [i]; j++)
    47         {
    48           uint32_t num_thread = _translate_context_to_thread [i][j];
    49           if (num_thread >= _nb_thread)
    50             test.error(toString(_("Context [%d][%d] is linked with an invalid thread id.\n"),i,j));
    51           else
    52             if (thread_link [num_thread] == true)
    53               test.error(toString(_("Context [%d][%d] is linked with an already used thread id.\n"),i,j));
     46      {
     47        for (uint32_t j=0; j<_nb_context [i]; j++)
     48          {
     49            uint32_t num_thread = _translate_context_to_thread [i][j];
     50
     51            if (num_thread >= _nb_thread)
     52              test.error(toString(_("Context [%d][%d] is linked with an invalid thread id.\n"),i,j));
    5453            else
    55               thread_link [num_thread] = true;
    56         }
     54              if (thread_link [num_thread] == true)
     55                test.error(toString(_("Context [%d][%d] is linked with an already used thread id.\n"),i,j));
     56              else
     57                thread_link [num_thread] = true;
     58          }
     59      }
    5760
    5861    for (uint32_t i=0; i<_nb_thread; ++i)
Note: See TracChangeset for help on using the changeset viewer.