Changeset 117 for trunk/Softwares


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

Location:
trunk/Softwares
Files:
132 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Softwares/Dhrystone/src/c/main.c

    r114 r117  
    1212int main()
    1313{
    14   dhry21(100);
     14  dhry21(10);
    1515   
    1616  exit (0);
  • trunk/Softwares/Makefile

    r112 r117  
    1717SOFT                            =       Minimal_soft                                            \
    1818                                        Dhrystone                                               \
     19                                        MiBench                                                 \
     20                                        SPECINT2000                                             \
    1921                                        Test/*
    2022
  • trunk/Softwares/Makefile.Software

    r114 r117  
    5555
    5656# Tools's option
    57 OR32_CC_OPT                     = -Wall $(INCDIR) $(OPTIMIZE) -Wlong-long -DMorpheo
     57OR32_CC_OPT                     = -Wall $(INCDIR) $(OPTIMIZE) -Wlong-long -DMorpheo $(FLAGS)
    5858# -DHAVE_LIBC
    5959OR32_AS_OPT                     =
     
    8989                                @\
    9090                                $(ECHO) "Compilation        : $*.s";            \
    91                                 $(OR32_CC) $(OR32_CC_OPT)     -o $@   -c $^ ;   \
    92                                 $(OR32_CC) $(OR32_CC_OPT)  -S -o $@.s -c $^ ;
    93 #                               @$(OR32_AS) $(OR32_AS_OPT) $^ -o $@
     91                                $(OR32_CC) $(OR32_CC_OPT)     -o $@   -c $^ ;
     92#                               $(OR32_CC) $(OR32_CC_OPT)  -S -o $@.s -c $^ ;
    9493
    9594$(DIR_OBJ)/%.o                  : %.c
    9695                                @\
    9796                                $(ECHO) "Compilation        : $*.c";            \
    98                                 $(OR32_CC) $(OR32_CC_OPT)     -o $@   -c $^ ;   \
    99                                 $(OR32_CC) $(OR32_CC_OPT)  -S -o $@.s -c $^ ;
     97                                $(OR32_CC) $(OR32_CC_OPT)     -o $@   -c $^ ;
     98#                               $(OR32_CC) $(OR32_CC_OPT)  -S -o $@.s -c $^ ;
    10099
    101100#-----[ Maintenance ]-------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.