Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / mini / Makefile.am
1 count=100000
2 mtest=for_loop
3 monodir=$(top_builddir)
4 libs=   \
5         $(monodir)/mono/metadata/libmonoruntime.la      \
6         $(monodir)/mono/metadata/libmetadata.la \
7         $(monodir)/mono/io-layer/libwapi.la     \
8         $(monodir)/mono/utils/libmonoutils.la \
9         $(LIBGC_LIBS)   \
10         $(ICU_LIBS)
11
12 MCS=mcs
13 RUNTIME=mono
14
15 INCLUDES = \
16         -I$(top_srcdir)         \
17         $(LIBGC_CFLAGS)         \
18         $(GMODULE_CFLAGS)               \
19         $(GLIB_CFLAGS)
20
21 if PLATFORM_WIN32
22 export HOST_CC
23 # The mingw math.h has "extern inline" functions that dont appear in libs, so
24 # optimisation is required to actually inline them
25 AM_CFLAGS = -O
26 endif
27
28 # hack for automake to have the same source file in a library and a bin
29 genmdesc_CFLAGS = $(AM_CFLAGS)
30
31 if NO_VERSION_SCRIPT
32 monoldflags=
33 else
34 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
35 endif
36 libmono_la_LDFLAGS=$(monoldflags)
37
38 if JIT_SUPPORTED
39 bin_PROGRAMS = mono
40
41 noinst_PROGRAMS = genmdesc
42
43 lib_LTLIBRARIES = libmono.la
44 endif
45
46 mono_SOURCES = \
47         main.c
48
49 mono_LDADD = \
50         libmono.la              \
51         $(GLIB_LIBS)            \
52         $(GMODULE_LIBS) -lm     \
53         $(ICU_LIBS)
54
55 mono_LDFLAGS = \
56         -export-dynamic
57
58 genmdesc_SOURCES = \
59         mini.h          \
60         genmdesc.c      \
61         helpers.c
62
63 genmdesc_LDADD = \
64         $(libs) -lm     \
65         $(GLIB_LIBS)            \
66         $(GMODULE_LIBS)
67
68 x86_sources = \
69     mini-exceptions.c   \
70         mini-x86.c              \
71         mini-x86.h              \
72         exceptions-x86.c        \
73         tramp-x86.c
74
75 ppc_sources = \
76         mini-ppc.c              \
77         mini-ppc.h              \
78         exceptions-ppc.c        \
79         tramp-ppc.c
80
81 sparc_sources = \
82         mini-sparc.c            \
83         mini-sparc.h            \
84     mini-exceptions.c   \
85         exceptions-sparc.c      \
86         tramp-sparc.c
87
88 s390_sources = \
89         mini-s390.c             \
90         mini-s390.h             \
91         exceptions-s390.c       \
92         tramp-s390.c
93
94 common_sources = \
95         mini.c          \
96         mini.h          \
97         trace.c         \
98         trace.h         \
99         mini-ops.h      \
100         mini-arch.h     \
101         dominators.c    \
102         cfold.c         \
103         regalloc.c      \
104         regalloc.h      \
105         inssel.c        \
106         inssel.h        \
107         helpers.c       \
108         liveness.c      \
109         ssa.c           \
110         abcremoval.c    \
111         driver.c        \
112         debug-mini.c    \
113         linear-scan.c   \
114         aot.c           \
115         graph.c 
116
117 test_sources =          \
118         basic-calls.cs  \
119         basic-long.cs   \
120         bench.cs                \
121         objects.cs              \
122         arrays.cs               \
123         basic-float.cs  \
124         basic.cs                \
125         exceptions.cs   \
126         iltests.il              \
127         test.cs
128
129 regtests=basic.exe arrays.exe basic-float.exe basic-long.exe objects.exe basic-calls.exe iltests.exe exceptions.exe bench.exe
130
131 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-long32.brg $(srcdir)/inssel-float.brg
132
133 if X86
134 libmono_la_SOURCES = \
135         $(common_sources) $(x86_sources)
136
137 arch_BURGSRC= $(srcdir)/inssel-x86.brg
138 arch_built=cpu-pentium.h
139 endif
140
141 if POWERPC
142 libmono_la_SOURCES = \
143         $(common_sources) $(ppc_sources)
144
145 arch_BURGSRC= $(srcdir)/inssel-ppc.brg
146 arch_built=cpu-g4.h
147 endif
148
149 if SPARC
150 libmono_la_SOURCES = \
151         $(common_sources) $(sparc_sources)
152
153 arch_BURGSRC= $(srcdir)/inssel-sparc.brg
154 arch_built=cpu-sparc.h
155 endif
156
157 if S390
158 libmono_la_SOURCES = \
159         $(common_sources) $(s390_sources)
160
161 arch_BURGSRC= $(srcdir)/inssel-s390.brg
162 arch_built=cpu-s390.h
163 endif
164
165 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
166
167 libmonoincludedir = $(includedir)/mono/jit
168
169 libmonoinclude_HEADERS = jit.h
170
171 libmono_la_LIBADD = \
172         $(libs)
173
174 %.exe: %.cs TestDriver.dll
175         $(MCS) /unsafe $< /r:TestDriver.dll
176
177 %.exe: %.il
178         ilasm /output=$*.exe $<
179
180 TestDriver.dll: TestDriver.cs
181         $(MCS) /out:TestDriver.dll /target:library TestDriver.cs
182
183 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
184         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
185
186 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
187         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
188
189 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
190         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
191
192 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
193         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390
194
195 inssel.c inssel.h: $(BURGSRC)
196         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
197
198 testi: mono test.exe
199         ./mono -v -v --ncompile 1 --compile Test:$(mtest) test.exe
200
201 # ensure the tests are actually correct
202 checktests: $(regtests)
203         for i in $(regtests); do $(RUNTIME) $$i; done
204
205 rcheck: mono $(regtests)
206         ./mono --regression $(regtests)
207
208 aotcheck: mono $(regtests)
209         for i in $(regtests); do ./mono --aot $$i; done
210         ./mono --verbose --regression $(regtests)
211         rm -f *.exe.so
212
213 bench: mono test.exe
214         time ./mono --ncompile $(count) --compile Test:$(mtest) test.exe
215
216 mbench: test.exe
217         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
218
219 stat1: mono bench.exe
220         ./mono --verbose --statfile stats.pl --regression bench.exe
221         perl viewstat.pl stats.pl
222
223 stat2: mono basic.exe
224         ./mono --verbose --statfile stats.pl --regression basic.exe
225         perl viewstat.pl -e stats.pl
226
227 stat3: mono bench.exe
228         ./mono --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
229         perl viewstat.pl stats.pl
230
231 docu: mini.sgm
232         docbook2txt mini.sgm
233
234 clean:
235         rm -f mono a.out gmon.out *.o test.exe
236
237 pkgconfigdir = $(libdir)/pkgconfig
238
239 if JIT_SUPPORTED
240 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
241 endif
242
243 CLEANFILES= $(BUILT_SOURCES)
244 EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript $(test_sources) \
245         propagated_relations_table.def build_relations_propagation_table.pl \
246         $(x86_sources) inssel-x86.brg cpu-pentium.md \
247         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
248         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
249         $(s390_sources) inssel-s390.brg cpu-s390.md
250