Ignore:
Timestamp:
May 1, 2008, 6:48:45 PM (16 years ago)
Author:
rosiere
Message:
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_test_map.cpp

    r81 r82  
    1414#undef  FUNCTION
    1515#define FUNCTION "Entity::test_map"
    16   bool Entity::test_map (uint32_t depth, bool top_level)
     16  bool Entity::test_map (uint32_t depth, bool top_level, bool is_behavioural)
    1717  {
    1818    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    1919 
    2020    std::string tab  = std::string(depth,'\t');
    21     log_printf(NONE,Behavioural,FUNCTION, "%s* Test mapping : Entity \"%s\"",tab.c_str(),_name.c_str());
     21    log_printf(NONE,Behavioural,FUNCTION, "%s* Entity \"%s\"",tab.c_str(),_name.c_str());
    2222 
    23     bool _return = _interfaces->test_map(depth+1,top_level);
     23    bool _return = _interfaces->test_map(depth+1,top_level, is_behavioural);
    2424
    2525#ifndef DEBUG
     
    3535  };
    3636
     37// #undef  FUNCTION
     38// #define FUNCTION "Entity::test_equi"
     39//   bool Entity::test_equi (uint32_t depth)
     40//   {
     41//     log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     42 
     43//     std::string tab  = std::string(depth,'\t');
     44//     log_printf(NONE,Behavioural,FUNCTION, "%s* Entity \"%s\"",tab.c_str(),_name.c_str());
     45 
     46//     bool _return = _interfaces->test_equi(depth+1);
     47
     48// #ifndef DEBUG
     49//     if (_return == false)
     50//       {
     51//      std::cerr << "In entity \"" << _name << "\" (type : \"" << _type << "\"), a lot of port is not connected !" << std::endl;
     52//       }
     53// #endif
     54
     55//     log_printf(FUNC,Behavioural,FUNCTION,"End");
     56   
     57//     return _return;
     58//   };
     59
    3760}; // end namespace behavioural         
    3861}; // end namespace morpheo             
Note: See TracChangeset for help on using the changeset viewer.