Ignore:
Timestamp:
Mar 27, 2008, 11:04:49 AM (16 years ago)
Author:
rosiere
Message:

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Makefile

    r75 r78  
    133133                        done;                                                                                   \
    134134                        declare -i NUM_TYPE;                                                                    \
    135                         $(READ) NUM_TYPE;                                                                       \
     135                        read NUM_TYPE;                                                                          \
    136136                                                                                                                \
    137137                        if $(TEST) "$$NUM_TYPE" -ge "$$CPT"; then                                               \
     
    143143                        $(ECHO) "";                                                                             \
    144144                        $(ECHO) "Give the name of the documents :";                                             \
    145                         $(READ) FILENAME;                                                                       \
     145                        read FILENAME;                                                                          \
    146146                                                                                                                \
    147147                        if $(TEST) -z "$$FILENAME" -o -d "$(DIR_TYPE)/$$FILENAME.type";                         \
    148148                        then                                                                                    \
    149149                                $(ECHO) "Invalid name : string is empty, or filename is already used";          \
    150                                 exit;                                                                   \
     150                                exit;                                                                           \
    151151                        fi;                                                                                     \
    152152                                                                                                                \
     
    194194                                CPT=$$(($$CPT+1));                                                              \
    195195                        done;                                                                                   \
    196                         $(READ) NUM_FILE;                                                                       \
     196                        read NUM_FILE;                                                                          \
    197197                                                                                                                \
    198198                        if $(TEST) "$$NUM_FILE" -ge "$$CPT"; then                                               \
     
    201201                                                                                                                \
    202202                        $(ECHO) "Please reenter the document id to confirm the delete";                         \
    203                         $(READ) NUM_FILE_CONFIRM;                                                               \
     203                        read NUM_FILE_CONFIRM;                                                                  \
    204204                                                                                                                \
    205205                        if $(TEST) "$$NUM_FILE" -eq "0" -o "$$NUM_FILE" -ne "$$NUM_FILE_CONFIRM"; then          \
     
    245245                                CPT=$$(($$CPT+1));                                                              \
    246246                        done;                                                                                   \
    247                         $(READ) NUM_FILE;                                                                       \
     247                        read NUM_FILE;                                                                          \
    248248                                                                                                                \
    249249                        if $(TEST) "$$NUM_FILE" -ge "$$CPT"; then                                               \
     
    261261                                                                                                                \
    262262                        $(ECHO) "Give the new name of the documents :";                                         \
    263                         $(READ) FILENAME_DEST;                                                                  \
     263                        read FILENAME_DEST;                                                                     \
    264264                                                                                                                \
    265265                        if $(TEST) -z "$$FILENAME_DEST" -o -d "$(DIR_TYPE)/$$FILENAME_DEST.type";               \
     
    277277                        $(ECHO) "Rename file      : $(DIR_PACKAGE)/$$FILENAME_SRC.sty";                         \
    278278                        $(MV) $(DIR_PACKAGE)/$$FILENAME_SRC.sty   $(DIR_PACKAGE)/$$FILENAME_DEST.sty;           \
     279                                                                                                                \
     280                        $(ECHO) "Rename file      : $(DIR_PACKAGE)/$$FILENAME_SRC.tex";                         \
     281                        $(MV) $(DIR_PACKAGE)/$$FILENAME_SRC.tex   $(DIR_PACKAGE)/$$FILENAME_DEST.tex;           \
    279282                                                                                                                \
    280283                        $(ECHO) "Rename directory : $(DIR_DOCUMENTS)/$$FILENAME_SRC";                           \
     
    310313                                CPT=$$(($$CPT+1));                                                              \
    311314                        done;                                                                                   \
    312                         $(READ) NUM_FILE;                                                                       \
     315                        read NUM_FILE;                                                                          \
    313316                                                                                                                \
    314317                        if $(TEST) "$$NUM_FILE" -ge "$$CPT"; then                                               \
     
    333336                                CPT=$$(($$CPT+1));                                                              \
    334337                        done;                                                                                   \
    335                         $(READ) NUM_LANG;                                                                       \
     338                        read NUM_LANG;                                                                          \
    336339                                                                                                                \
    337340                        if $(TEST) "$$NUM_LANG" -ge "$$CPT"; then                                               \
     
    359362                            CPT=$$(($$CPT+1));                                                                  \
    360363                        done;                                                                                   \
    361                         $(READ) NUM_FORMAT;                                                                     \
     364                        read NUM_FORMAT;                                                                        \
    362365                                                                                                                \
    363366                        if $(TEST) "$$NUM_FORMAT" -ge "$$CPT"; then                                             \
     
    412415                        @\
    413416                        $(ECHO) "Generate   files     : $*.eps";        \
    414                         $(CD) $(DIR_GRAPH); $(GNUPLOT) $*.p;
     417                        cd $(DIR_GRAPH); $(GNUPLOT) $*.p;
    415418
    416419#--------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.