Ignore:
Timestamp:
May 12, 2010, 7:34:01 PM (14 years ago)
Author:
rosiere
Message:

1) add counters_t type for interface
2) fix in check load in load_store_unit
3) add parameters (but not yet implemented)
4) change environment and add script (distcc_env.sh ...)
5) add warning if an unser change rename flag with l.mtspr instruction
6) ...

Location:
trunk/IPs/systemC/processor/Morpheo/Common/include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h

    r129 r138  
    2727#include "Common/include/Systemc.h"
    2828#include "Common/include/Message.h"
    29 #include "Common/include/FromString.h"
    3029#include "Common/include/ChangeCase.h"
    3130#include "Behavioural/include/Debug_component.h"
     
    6867#define debug_test_simulation_time                                      \
    6968  (not debug_cycle_test or                                              \
    70    ( (simulation_cycle() >= debug_cycle_start) and                    \
    71     ((simulation_cycle() <= debug_cycle_stop) or                      \
    72       (debug_cycle_stop == -1))))
     69  ((simulation_cycle() >= debug_cycle_start) and                        \
     70   ((simulation_cycle() <= debug_cycle_stop) or                         \
     71    (debug_cycle_stop == -1))))
    7372#else
    7473#define debug_test_simulation_time true
     
    8281                                                                        \
    8382      if (debug_test_simulation_time and                                \
    84           ((debug == DEBUG_ALL ) or                                     \
    85            (( DEBUG_ ## level <= debug) and                             \
    86             ( morpheo::behavioural::_model.get_debug(NAME_ ## component))))) \
     83          (( DEBUG_ ## level <= debug) and                              \
     84           ( morpheo::behavioural::_model.get_debug(NAME_ ## component)))) \
    8785        {                                                               \
    8886          if (DEBUG_ ## level <= DEBUG_INFO)                            \
     
    156154  do                                                                    \
    157155    {                                                                   \
    158       fprintf(stdout,_("%s "),MSG_BREAKPOINT);                                     \
    159       fprintf(stdout,_("Breakpoint in file %s, line %d.\n"),__FILE__,__LINE__);    \
    160       fprintf(stdout,_("%s "),MSG_NONE);                                           \
    161       fprintf(stdout,str);                                                              \
    162       fprintf(stdout,_("\n"));                                                     \
    163       fprintf(stdout,_("%s "),MSG_NONE);                                           \
    164       fprintf(stdout,_("Enter any key to continue\n"));                            \
     156      fmsg(_("%s "),MSG_BREAKPOINT);                                    \
     157      fmsg(_("Breakpoint in file %s, line %d.\n"),__FILE__,__LINE__);   \
     158      fmsg(_("%s "),MSG_NONE);                                          \
     159      fmsg(str);                                                        \
     160      fmsg(_("\n"));                                                    \
     161      fmsg(_("%s "),MSG_NONE);                                          \
     162      fmsg(_("Enter any key to continue\n"));                           \
    165163      getchar();                                                        \
    166164    } while(0)
     
    182180#endif
    183181
    184 
    185   template<> inline debug_verbosity_t fromString<debug_verbosity_t> (const std::string& x)
    186   {
    187     std::string y=x;
    188     LowerCase(y);
    189 
    190     if ( (y.compare("0")     == 0) or
    191          (y.compare("none")  == 0))
    192       return DEBUG_NONE ;
    193     if ( (y.compare("1")     == 0) or
    194          (y.compare("info")  == 0))
    195       return DEBUG_INFO ;
    196     if ( (y.compare("2")     == 0) or
    197          (y.compare("trace") == 0))
    198       return DEBUG_TRACE;
    199     if ( (y.compare("3")     == 0) or
    200          (y.compare("func")  == 0))
    201       return DEBUG_FUNC ;
    202     if ( (y.compare("4")     == 0) or
    203          (y.compare("all")   == 0))
    204       return DEBUG_ALL  ;
    205 
    206 #ifdef DEBUG
    207     return DEBUG;
    208 #else
    209     return DEBUG_NONE ;
    210 #endif
    211   }
    212 
    213182}; // end namespace morpheo
    214183#endif // !DEBUG_H
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Debug_type.h

    r118 r138  
    1515 */
    1616
     17#include "Common/include/ToString.h"
     18#include "Common/include/FromString.h"
     19
    1720
    1821namespace morpheo {
     
    2730  } debug_verbosity_t;
    2831
     32  template<> inline std::string toString<debug_verbosity_t>(const debug_verbosity_t& x)
     33  {
     34    switch (x)
     35      {
     36      case DEBUG_NONE  : return "debug_none" ; break;
     37      case DEBUG_INFO  : return "debug_info" ; break;
     38      case DEBUG_TRACE : return "debug_trace"; break;
     39      case DEBUG_FUNC  : return "debug_func" ; break;
     40      case DEBUG_ALL   : return "debug_all"  ; break;
     41      default    : return ""      ; break;
     42      }
     43  };
     44
     45  template<> inline debug_verbosity_t fromString<debug_verbosity_t>(const std::string& x)
     46  {
     47    if ((x.compare(toString(static_cast<uint32_t>(DEBUG_NONE ))) == 0) or
     48        (x.compare(toString(                      DEBUG_NONE  )) == 0))
     49      return DEBUG_NONE;
     50
     51    if ((x.compare(toString(static_cast<uint32_t>(DEBUG_INFO ))) == 0) or
     52        (x.compare(toString(                      DEBUG_INFO  )) == 0))
     53      return DEBUG_INFO;
     54
     55    if ((x.compare(toString(static_cast<uint32_t>(DEBUG_TRACE))) == 0) or
     56        (x.compare(toString(                      DEBUG_TRACE )) == 0))
     57      return DEBUG_TRACE;
     58
     59    if ((x.compare(toString(static_cast<uint32_t>(DEBUG_FUNC ))) == 0) or
     60        (x.compare(toString(                      DEBUG_FUNC  )) == 0))
     61      return DEBUG_FUNC;
     62
     63    if ((x.compare(toString(static_cast<uint32_t>(DEBUG_ALL  ))) == 0) or
     64        (x.compare(toString(                      DEBUG_ALL   )) == 0))
     65      return DEBUG_ALL;
     66
     67#ifdef DEBUG
     68    return DEBUG;
     69#else
     70    return DEBUG_NONE ;
     71#endif
     72  };
     73
    2974}; // end namespace morpheo
    3075#endif
  • trunk/IPs/systemC/processor/Morpheo/Common/include/ErrorMorpheo.h

    r136 r138  
    3939      _msg = toString(_("%s %s"),MSG_ERROR,msg.c_str());
    4040#endif
    41       msg("%s",_msg.c_str());
     41//     msg("%s",_msg.c_str());
    4242    }
    4343  public  :             ~ErrorMorpheo (void)       throw() {}
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Time.h

    r113 r138  
    1010#include <sys/time.h>
    1111#include "Common/include/Systemc.h"
     12#include "Common/include/Message.h"
    1213
    1314namespace morpheo {
Note: See TracChangeset for help on using the changeset viewer.