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_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/src/Read_unit_to_Execution_unit_genMealy.cpp

    r97 r117  
    2222  void Read_unit_to_Execution_unit::genMealy (void)
    2323  {
    24     log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"Begin");
     24    log_begin(Read_unit_to_Execution_unit,FUNCTION);
     25    log_function(Read_unit_to_Execution_unit,FUNCTION,_name.c_str());
    2526
    2627    bool execute_unit_use [_param->_nb_execute_unit][_param->_max_nb_execute_unit_port];
     
    3536          bool       ack = false;
    3637         
    37           log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"Test Read_unit[%d][%d]",i,j);
     38          log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"  * Test Read_unit[%d][%d]",i,j);
    3839         
    3940          if (PORT_READ(in_READ_UNIT_OUT_VAL [i][j]) == true)
    4041            {
    41               log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION," * have a valid entry.");
     42              log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"    * have a valid entry.");
    4243             
    4344              Tcontext_t context_id    = (_param->_have_port_context_id   )?PORT_READ(in_READ_UNIT_OUT_CONTEXT_ID    [i][j]):0;
     
    5152#ifdef DEBUG_TEST
    5253              if (_destination[i][num_thread][type].empty())
    53                 throw ERRORMORPHEO(FUNCTION,"Invalid Operation : They have no execute_unit to receive a operation from the read_unit ["+toString(i)+"], thread ["+toString(num_thread)+"] and a operation's type ["+toString(type)+"].");
     54                throw ERRORMORPHEO(FUNCTION,toString(_("Invalid Operation : They have no execute_unit to receive a operation from the read_unit [%d], thread [%d] and a operation's type [%s]."),i,num_thread,toString(type).c_str()));
    5455#endif
    5556             
     
    6263                  uint32_t port = (*it).elt;
    6364                 
    64                   log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"   * Test destination [%d][%d].",dest,port);
     65                  log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"      * Test destination [%d][%d].",dest,port);
    6566                 
    6667                  if (execute_unit_use [dest][port] == false)
    6768                    {
    68                       log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"     * Is ok! Link.");
     69                      log_printf(TRACE,Read_unit_to_Execution_unit,FUNCTION,"        * Is ok! Link.");
    6970                     
    7071                      // have find !!!
     
    104105        PORT_WRITE(out_EXECUTE_UNIT_IN_VAL[i][j], execute_unit_use[i][j]);
    105106
    106     log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"End");
     107    log_end(Read_unit_to_Execution_unit,FUNCTION);
    107108  };
    108109
Note: See TracChangeset for help on using the changeset viewer.