source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Makefile.deps @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

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 size: 2.9 KB
Line 
1#
2# $Id$
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Register_translation_unit                       = yes
11
12ifndef Behavioural
13include                                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Dependency_checking_unit
16include                                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Dependency_checking_unit/Makefile.deps
17endif
18ifndef Free_List_unit
19include                                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Free_List_unit/Makefile.deps
20endif
21ifndef Register_Address_Translation_unit
22include                                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_Address_Translation_unit/Makefile.deps
23endif
24ifndef Stat_List_unit
25include                                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Stat_List_unit/Makefile.deps
26endif
27ifndef Register_translation_unit_Glue
28include                                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Register_translation_unit_Glue/Makefile.deps
29endif
30
31
32
33#-----[ Directory ]----------------------------------------
34
35Register_translation_unit_DIR                   =       $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit
36
37#-----[ Library ]------------------------------------------
38
39Register_translation_unit_LIBRARY               =       -lRegister_translation_unit                     \
40                                                        $(Behavioural_LIBRARY)                          \
41                                                        $(Register_Address_Translation_unit_LIBRARY)    \
42                                                        $(Free_List_unit_LIBRARY)                       \
43                                                        $(Stat_List_unit_LIBRARY)                       \
44                                                        $(Dependency_checking_unit_LIBRARY)             \
45                                                        $(Register_translation_unit_Glue_LIBRARY)
46
47Register_translation_unit_DIR_LIBRARY           =       -L$(Register_translation_unit_DIR)/lib          \
48                                                        $(Behavioural_DIR_LIBRARY)                      \
49                                                        $(Register_Address_Translation_unit_DIR_LIBRARY)\
50                                                        $(Free_List_unit_DIR_LIBRARY)                   \
51                                                        $(Stat_List_unit_DIR_LIBRARY)                   \
52                                                        $(Dependency_checking_unit_DIR_LIBRARY)         \
53                                                        $(Register_translation_unit_Glue_DIR_LIBRARY)
54
55#-----[ Rules ]--------------------------------------------
56
57Register_translation_unit_library               :
58                                                @\
59                                                $(MAKE) Behavioural_library;                            \
60                                                $(MAKE) Register_Address_Translation_unit_library;      \
61                                                $(MAKE) Free_List_unit_library;                         \
62                                                $(MAKE) Stat_List_unit_library;                         \
63                                                $(MAKE) Dependency_checking_unit_library;               \
64                                                $(MAKE) Register_translation_unit_Glue_library;         \
65                                                $(MAKE) --directory=$(Register_translation_unit_DIR) --makefile=Makefile;
66
67Register_translation_unit_library_clean :
68                                                @\
69                                                $(MAKE) Behavioural_library_clean;                      \
70                                                $(MAKE) Register_Address_Translation_unit_library_clean;\
71                                                $(MAKE) Free_List_unit_library_clean;                   \
72                                                $(MAKE) Stat_List_unit_library_clean;                   \
73                                                $(MAKE) Dependency_checking_unit_library_clean;         \
74                                                $(MAKE) Register_translation_unit_Glue_library_clean;   \
75                                                $(MAKE) --directory=$(Register_translation_unit_DIR) --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.