Ignore:
Timestamp:
Aug 4, 2010, 10:09:03 PM (14 years ago)
Author:
rosiere
Message:

1) Full parallel compilation
2) Add statistics in ROB : list instruction affinity

Location:
trunk/IPs/systemC/processor/Morpheo/Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/Makefile.deps

    r113 r142  
    88# DIR_MORPHEO must be defined
    99
    10 Common                  =       yes
     10Common                          =       yes
    1111
    1212#-----[ Directory ]----------------------------------------
    1313
    14 Common_DIR              =       $(DIR_MORPHEO)/Common
     14Common_DIR                      =       $(DIR_MORPHEO)/Common
    1515
    1616#-----[ Library ]------------------------------------------
    1717
    18 Common_SOURCES          =       $(Common_DIR)/src/*.cpp
     18Common_SOURCES                  =       $(Common_DIR)/src/*.cpp
    1919
    20 Common_LIBRARY          =       -lCommon
     20Common_LIBRARY                  =       -lCommon
    2121
    22 Common_DIR_LIBRARY      =       -L$(Common_DIR)/lib
     22Common_DIR_LIBRARY              =       -L$(Common_DIR)/lib
    2323
    2424#-----[ Rules ]--------------------------------------------
    2525
    26 Common_library          :
    27                         @\
    28                         $(MAKE) --directory=$(Common_DIR) --makefile=Makefile
     26Common_library_only             :
     27                                @\
     28                                $(MAKE) --directory=$(Common_DIR) --makefile=Makefile
    2929
    30 Common_library_clean    :
    31                         @\
    32                         $(MAKE) --directory=$(Common_DIR) --makefile=Makefile clean
     30Common_library_clean_only       :
     31                                @\
     32                                $(MAKE) --directory=$(Common_DIR) --makefile=Makefile clean
     33
     34Common_library                  : Common_library_only
     35
     36Common_library_clean            : Common_library_clean_only
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h

    r138 r142  
    7373#define debug_test_simulation_time true
    7474#endif
     75
     76  /*
     77# define log_test(level, component)                                     \
     78  do                                                                    \
     79    {                                                                   \
     80      debug_init();                                                     \
     81                                                                        \
     82      msgInformation("debug_test_simuation_time : %d",debug_test_simulation_time); \
     83      msgInformation("level                     : %d",( DEBUG_ ## level <= debug)); \
     84      msgInformation("component                 : %d", morpheo::behavioural::_model.get_debug(NAME_ ## component)); \
     85    } while(0)
     86  */
    7587 
    7688#ifdef DEBUG
Note: See TracChangeset for help on using the changeset viewer.