Ignore:
Timestamp:
Mar 18, 2009, 11:36:26 PM (16 years ago)
Author:
rosiere
Message:

1) Stat_list : fix retire old and new register bug
2) Stat_list : remove read_counter and valid flag, because validation of destination is in retire step (not in commit step)
3) Model : add class Model (cf Morpheo.sim)
4) Allocation : alloc_interface_begin and alloc_interface_end to delete temporary array.
5) Script : add distexe.sh
6) Add Comparator, Multiplier, Divider. But this component are not implemented
7) Software : add Dhrystone

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Softwares/Makefile.Software

    r111 r112  
    3232#-----[ To the compilation ]------------------------------------------------------
    3333OPTIMIZE                        = -O2 -std=c99 -fomit-frame-pointer -fdelayed-branch -mror -mcmov -msext -mhard-mul -msoft-div -msoft-float
     34
    3435#Option :
    3536# -fomit-frame-pointer                  : n'utilise pas le pointeur de frame
     
    5455
    5556# Tools's option
    56 OR32_CC_OPT                     = -Wall $(INCDIR) $(OPTIMIZE) -Wlong-long
     57OR32_CC_OPT                     = -Wall $(INCDIR) $(OPTIMIZE) -Wlong-long -DMorpheo
    5758# -DHAVE_LIBC
    5859OR32_AS_OPT                     =
    59 OR32_LD_OPT                     = -T$(DIR_LDSCRIPT)/or32.ld $(LIBDIR) $(LIBNAME)
     60OR32_LD_OPT                     = -T$(DIR_LDSCRIPT)/or32.ld $(LIBDIR) $(LIBNAME) $(OR1K_LIBDIR) $(OR1K_LIBNAME)
    6061OR32_OBJDUMP_OPT                = -D
    6162OR32_NM_OPT                     = -n
     
    8182                                $(ECHO) "List symbols       : $*.x.nm";         \
    8283                                $(OR32_NM)      $(OR32_NM_OPT)      $^ > $@.nm; \
    83                                 $(ECHO) "Display info       : $*.x.txt";                \
    84                                 $(OR32_OBJDUMP) $(OR32_OBJDUMP_OPT) $@ > $@.txt;
     84                                $(ECHO) "Display info       : $*.x.txt";        \
     85                                $(OR32_OBJDUMP) $(OR32_OBJDUMP_OPT) $@ > $@.txt;\
     86                                echo $($(GREP) "l.jal 0" $@.txt);
    8587
    8688$(DIR_OBJ)/%.o                  : %.s   
Note: See TracChangeset for help on using the changeset viewer.