Fri Nov 12 17:56:26 CET 2004 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / mini / Makefile.am
1 count=100000
2 mtest=for_loop
3 monodir=$(top_builddir)
4
5 # This is needed for automake dependency generation
6 if INCLUDED_LIBGC
7 libgc_libs=$(monodir)/libgc/libmonogc.la
8 libgc_static_libs=$(monodir)/libgc/libmonogc-static.la
9 else
10 libgc_libs=$(LIBGC_LIBS)
11 libgc_static_libs=$(LIBGC_STATIC_LIBS)
12 endif
13
14 libs=   \
15         $(monodir)/mono/metadata/libmonoruntime.la      \
16         $(monodir)/mono/metadata/libmetadata.la \
17         $(monodir)/mono/io-layer/libwapi.la     \
18         $(monodir)/mono/utils/libmonoutils.la \
19         $(GMODULE_LIBS) \
20         $(GLIB_LIBS)    \
21         $(libgc_libs)   \
22         $(ICU_LIBS)
23
24 static_libs=    \
25         $(monodir)/mono/metadata/libmonoruntime-static.la       \
26         $(monodir)/mono/metadata/libmetadata-static.la  \
27         $(monodir)/mono/io-layer/libwapi.la     \
28         $(monodir)/mono/utils/libmonoutils.la \
29         $(GMODULE_LIBS) \
30         $(GLIB_LIBS)    \
31         $(libgc_static_libs) \
32         $(ICU_LIBS)
33
34 MCS=mcs
35 RUNTIME=mono
36
37 INCLUDES = \
38         -I$(top_srcdir)         \
39         $(LIBGC_CFLAGS)         \
40         $(GMODULE_CFLAGS)               \
41         $(GLIB_CFLAGS)
42
43 if PLATFORM_WIN32
44 export HOST_CC
45 # The mingw math.h has "extern inline" functions that dont appear in libs, so
46 # optimisation is required to actually inline them
47 AM_CFLAGS = -O
48 endif
49
50 # hack for automake to have the same source file in a library and a bin
51 genmdesc_CFLAGS = $(AM_CFLAGS)
52
53 if NO_VERSION_SCRIPT
54 monoldflags=
55 else
56 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
57 endif
58
59 if PLATFORM_WIN32
60 libmono_la_LDFLAGS=-no-undefined -version-info 1:0:0 $(monoldflags)
61 else
62 libmono_la_LDFLAGS=$(monoldflags)
63 endif
64
65 if JIT_SUPPORTED
66 bin_PROGRAMS = mono
67
68 noinst_PROGRAMS = genmdesc
69
70 lib_LTLIBRARIES = libmono.la
71 noinst_LTLIBRARIES = libmono-static.la
72 endif
73
74 mono_SOURCES = \
75         main.c
76
77 if STATIC_MONO
78 # Link libmono into mono statically
79 # This leads to higher performance, especially with TLS
80 MONO_LIB=libmono-static.la
81 else 
82 MONO_LIB=libmono.la
83 endif
84
85 mono_LDADD = \
86         $(MONO_LIB)                     \
87         $(GLIB_LIBS)            \
88         $(GMODULE_LIBS) -lm     \
89         $(ICU_LIBS)
90
91 mono_LDFLAGS = \
92         $(static_flags) -export-dynamic $(monoldflags)
93
94 genmdesc_SOURCES = \
95         mini.h          \
96         genmdesc.c      \
97         helpers.c
98
99 # Don't link this against libmetadata to speed up rebuilds
100 genmdesc_LDADD = \
101         $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
102         $(GLIB_LIBS)            \
103         $(GMODULE_LIBS)
104
105 x86_sources = \
106     mini-exceptions.c   \
107         mini-x86.c              \
108         mini-x86.h              \
109         exceptions-x86.c        \
110         tramp-x86.c
111
112 amd64_sources = \
113         mini-exceptions.c       \
114         mini-amd64.c            \
115         mini-amd64.h            \
116         exceptions-amd64.c      \
117         tramp-amd64.c
118
119 ppc_sources = \
120         mini-ppc.c              \
121         mini-ppc.h              \
122         exceptions-ppc.c        \
123         tramp-ppc.c
124
125 sparc_sources = \
126         mini-sparc.c            \
127         mini-sparc.h            \
128     mini-exceptions.c   \
129         exceptions-sparc.c      \
130         tramp-sparc.c
131
132 s390_sources = \
133         mini-s390.c             \
134         mini-s390.h             \
135         exceptions-s390.c       \
136         tramp-s390.c
137
138 s390x_sources = \
139         mini-s390x.c            \
140         mini-s390x.h            \
141         exceptions-s390x.c      \
142         tramp-s390x.c
143
144 common_sources = \
145         mini.c          \
146         mini.h          \
147         trace.c         \
148         trace.h         \
149         mini-ops.h      \
150         mini-arch.h     \
151         dominators.c    \
152         cfold.c         \
153         regalloc.c      \
154         regalloc.h      \
155         helpers.c       \
156         liveness.c      \
157         ssa.c           \
158         abcremoval.c    \
159         abcremoval.h    \
160         driver.c        \
161         debug-mini.c    \
162         linear-scan.c   \
163         aot.c           \
164         graph.c 
165
166 test_sources =          \
167         basic-calls.cs  \
168         basic-long.cs   \
169         bench.cs                \
170         objects.cs              \
171         arrays.cs               \
172         basic-float.cs  \
173         basic-math.cs   \
174         basic.cs                \
175         exceptions.cs   \
176         iltests.il              \
177         test.cs
178
179 regtests=basic.exe arrays.exe basic-float.exe basic-math.exe basic-long.exe objects.exe basic-calls.exe iltests.exe exceptions.exe bench.exe
180
181 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
182
183 if X86
184 libmono_la_SOURCES = \
185         $(common_sources) $(x86_sources)
186
187 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
188 arch_built=cpu-pentium.h
189 endif
190
191 if AMD64
192 libmono_la_SOURCES = \
193         $(common_sources) $(amd64_sources)
194 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
195 arch_built=cpu-amd64.h
196 endif
197
198 if POWERPC
199 libmono_la_SOURCES = \
200         $(common_sources) $(ppc_sources)
201
202 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
203 arch_built=cpu-g4.h
204 endif
205
206 if SPARC
207 libmono_la_SOURCES = \
208         $(common_sources) $(sparc_sources)
209
210 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
211 arch_built=cpu-sparc.h
212 endif
213
214 if SPARC64
215 libmono_la_SOURCES = \
216         $(common_sources) $(sparc_sources)
217
218 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
219 arch_built=cpu-sparc.h
220 endif
221
222 if S390
223 libmono_la_SOURCES = \
224         $(common_sources) $(s390_sources)
225
226 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
227 arch_built=cpu-s390.h
228 endif
229
230 if S390x
231 libmono_la_SOURCES = \
232         $(common_sources) $(s390x_sources)
233
234 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
235 arch_built=cpu-s390x.h
236 endif
237
238 nodist_libmono_la_SOURCES = inssel.c inssel.h
239
240 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
241 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
242 libmono_static_la_LDFLAGS = -static
243 libmono_static_la_LIBADD = $(static_libs)
244
245 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
246
247 libmonoincludedir = $(includedir)/mono/jit
248
249 libmonoinclude_HEADERS = jit.h
250
251 libmono_la_LIBADD = \
252         $(libs)
253
254 %.exe: %.cs TestDriver.dll
255         $(MCS) /out:$*.exe /unsafe $< /r:TestDriver.dll
256
257 %.exe: %.il
258         ilasm /output=$*.exe $<
259
260 TestDriver.dll: $(srcdir)/TestDriver.cs
261         $(MCS) /out:TestDriver.dll /target:library $(srcdir)/TestDriver.cs
262
263 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
264         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
265
266 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
267         ./genmdesc $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
268
269 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
270         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
271
272 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
273         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
274
275 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
276         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390
277
278 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
279         ./genmdesc $(srcdir)/cpu-s390x.md cpu-s390x.h s390x
280
281 inssel.c inssel.h: $(BURGSRC)
282         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
283
284 testi: mono test.exe
285         ./mono -v -v --ncompile 1 --compile Test:$(mtest) test.exe
286
287 # ensure the tests are actually correct
288 checktests: $(regtests)
289         for i in $(regtests); do $(RUNTIME) $$i; done
290
291 rcheck: mono $(regtests)
292         ./mono --regression $(regtests)
293
294 aotcheck: mono $(regtests)
295         for i in $(regtests); do ./mono --aot $$i; done
296         ./mono --verbose --regression $(regtests)
297         rm -f *.exe.so
298
299 bench: mono test.exe
300         time ./mono --ncompile $(count) --compile Test:$(mtest) test.exe
301
302 mbench: test.exe
303         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
304
305 stat1: mono bench.exe
306         ./mono --verbose --statfile stats.pl --regression bench.exe
307         perl viewstat.pl stats.pl
308
309 stat2: mono basic.exe
310         ./mono --verbose --statfile stats.pl --regression basic.exe
311         perl viewstat.pl -e stats.pl
312
313 stat3: mono bench.exe
314         ./mono --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
315         perl viewstat.pl stats.pl
316
317 docu: mini.sgm
318         docbook2txt mini.sgm
319
320 clean:
321         rm -f mono a.out gmon.out *.o test.exe
322
323 pkgconfigdir = $(libdir)/pkgconfig
324
325 if JIT_SUPPORTED
326 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
327 endif
328
329 CLEANFILES= $(BUILT_SOURCES)
330 EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript $(test_sources) \
331         inssel-long.brg inssel-long32.brg \
332         $(x86_sources) inssel-x86.brg cpu-pentium.md \
333         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
334         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
335         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
336         $(s390_sources) inssel-s390.brg cpu-s390.md \
337         $(s390x_sources) inssel-s390x.brg cpu-s390x.md
338