2008-04-21 Martin Baulig <martin@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/io-layer/libwapi.la     \
17         $(monodir)/mono/utils/libmonoutils.la \
18         $(GLIB_LIBS)    \
19         $(libgc_libs)
20
21 static_libs=    \
22         $(monodir)/mono/metadata/libmonoruntime-static.la       \
23         $(monodir)/mono/io-layer/libwapi.la     \
24         $(monodir)/mono/utils/libmonoutils.la \
25         $(GLIB_LIBS)    \
26         $(libgc_static_libs)
27
28 CLASS=$(mcs_topdir)/class/lib/net_2_0
29
30 RUNTIME = MONO_PATH=$(CLASS) $(top_builddir)/runtime/mono-wrapper
31 RUNTIME_AOTCHECK = MONO_PATH=$(CLASS):. $(top_builddir)/runtime/mono-wrapper
32
33 MCS = $(RUNTIME) $(CLASS)/gmcs.exe -unsafe -nowarn:0162
34 ILASM = $(RUNTIME) $(CLASS)/ilasm.exe
35
36 AM_CFLAGS = \
37         -I$(top_srcdir)         \
38         $(LIBGC_CFLAGS)         \
39         $(GLIB_CFLAGS)
40         $(PLATFORM_CFLAGS) $(ARCH_CFLAGS)
41
42 if PLATFORM_WIN32
43 export HOST_CC
44 # The mingw math.h has "extern inline" functions that dont appear in libs, so
45 # optimisation is required to actually inline them
46 PLATFORM_CFLAGS = -O
47 endif
48
49 # hack for automake to have the same source file in a library and a bin
50 genmdesc_CFLAGS = $(AM_CFLAGS)
51
52 if NO_VERSION_SCRIPT
53 monoldflags=$(export_ldflags)
54 monobinldflags=$(export_ldflags)
55 else
56 monoldflags=-Wl,-version-script=$(srcdir)/ldscript $(export_ldflags)
57 monobinldflags=-Wl,-version-script=$(srcdir)/ldscript.mono $(export_ldflags)
58 endif
59
60 if PLATFORM_WIN32
61 libmono_la_LDFLAGS=-no-undefined -avoid-version $(monoldflags)
62 else
63 libmono_la_LDFLAGS=$(monoldflags)
64 endif
65
66 if JIT_SUPPORTED
67
68 if PLATFORM_WIN32
69 bin_PROGRAMS = mono monow
70 else
71 bin_PROGRAMS = mono
72 endif
73
74 noinst_PROGRAMS = genmdesc
75
76 lib_LTLIBRARIES = libmono.la
77 noinst_LTLIBRARIES = libmono-static.la
78 endif
79
80 mono_SOURCES = \
81         main.c
82
83 if STATIC_MONO
84 # Link libmono into mono statically
85 # This leads to higher performance, especially with TLS
86 MONO_LIB=libmono-static.la
87 else 
88 MONO_LIB=libmono.la
89 endif
90
91 mono_LDADD = \
92         $(MONO_LIB)                     \
93         $(GLIB_LIBS)            \
94         -lm
95
96 mono_LDFLAGS = \
97         $(static_flags) -export-dynamic $(monobinldflags)
98
99 # Create monow.exe, linked for the 'windows' subsystem
100 if PLATFORM_WIN32
101 monow_LDADD = $(mono_LDADD)
102 monow_LDFLAGS = $(mono_LDFLAGS) -mwindows
103 monow_SOURCES = $(mono_SOURCES)
104 endif
105
106 genmdesc_SOURCES = \
107         mini.h          \
108         genmdesc.c      \
109         helpers.c
110
111 # Don't link this against libmonoruntime to speed up rebuilds
112 genmdesc_LDADD = \
113         $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
114         $(GLIB_LIBS)
115
116 x86_sources = \
117         mini-x86.c              \
118         mini-x86.h              \
119         exceptions-x86.c        \
120         tramp-x86.c
121
122 amd64_sources = \
123         mini-amd64.c            \
124         mini-amd64.h            \
125         exceptions-amd64.c      \
126         tramp-amd64.c
127
128 ppc_sources = \
129         mini-ppc.c              \
130         mini-ppc.h              \
131         exceptions-ppc.c        \
132         tramp-ppc.c
133
134 arm_sources = \
135         mini-arm.c              \
136         mini-arm.h              \
137         exceptions-arm.c        \
138         tramp-arm.c
139
140 mips_sources = \
141         mini-mips.c             \
142         mini-mips.h             \
143         exceptions-mips.c       \
144         tramp-mips.c
145
146 sparc_sources = \
147         mini-sparc.c            \
148         mini-sparc.h            \
149         exceptions-sparc.c      \
150         tramp-sparc.c
151
152 s390_sources = \
153         mini-s390.c             \
154         mini-s390.h             \
155         exceptions-s390.c       \
156         tramp-s390.c
157
158 s390x_sources = \
159         mini-s390x.c            \
160         mini-s390x.h            \
161         exceptions-s390x.c      \
162         tramp-s390x.c
163
164 ia64_sources = \
165         mini-ia64.c                     \
166         mini-ia64.h                     \
167         exceptions-ia64.c       \
168         tramp-ia64.c
169
170 alpha_sources = \
171         mini-alpha.c    \
172         mini-alpha.h    \
173         exceptions-alpha.c      \
174         tramp-alpha.c
175
176 hppa_sources = \
177         mini-hppa.c     \
178         mini-hppa.h     \
179         exceptions-hppa.c       \
180         tramp-hppa.c
181
182 common_sources = \
183         mini.c          \
184         mini.h          \
185         version.h       \
186         optflags-def.h          \
187         jit-icalls.h \
188         jit-icalls.c \
189         trace.c         \
190         trace.h         \
191         patch-info.h    \
192         mini-ops.h      \
193         mini-arch.h     \
194         dominators.c    \
195         cfold.c         \
196         regalloc.c      \
197         regalloc.h      \
198         helpers.c       \
199         liveness.c      \
200         ssa.c           \
201         abcremoval.c    \
202         abcremoval.h    \
203         ssapre.c        \
204         ssapre.h        \
205         aliasing.c      \
206         aliasing.h      \
207         local-propagation.c     \
208         simple-cee-ops.h \
209         simple-mini-ops.h \
210         driver.c        \
211         debug-mini.c    \
212         debug-mini.h    \
213         linear-scan.c   \
214         aot-compiler.c          \
215         aot-runtime.c           \
216         graph.c         \
217         mini-exceptions.c       \
218         mini-codegen.c          \
219         mini-trampolines.c  \
220         declsec.c       \
221         declsec.h       \
222         wapihandles.c   \
223         branch-opts.c   \
224         generic-sharing.c
225
226 test_sources =          \
227         basic-calls.cs  \
228         basic-long.cs   \
229         bench.cs                \
230         objects.cs              \
231         arrays.cs               \
232         basic-float.cs  \
233         basic-math.cs   \
234         basic.cs                \
235         exceptions.cs   \
236         devirtualization.cs     \
237         iltests.il.in           \
238         test.cs                 \
239         generics.cs     \
240         generics-variant-types.il
241
242 if MONO_DEBUGGER_SUPPORTED
243 if AMD64
244 mono_debugger_arch_sources = mdb-debug-info64.s
245 else
246 if X86
247 mono_debugger_arch_sources = mdb-debug-info32.s
248 endif
249 endif
250 mono_debugger_sources = debug-debugger.c debug-debugger.h $(mono_debugger_arch_sources)
251 else
252 mono_debugger_sources =
253 endif
254
255 regtests=basic.exe basic-float.exe basic-long.exe basic-calls.exe objects.exe arrays.exe basic-math.exe exceptions.exe iltests.exe devirtualization.exe generics.exe bench.exe
256
257 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
258
259 if X86
260 arch_sources = $(x86_sources) $(mono_debugger_sources)
261 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
262 arch_built=cpu-x86.h
263 arch_define=__i386__
264 endif
265
266 if AMD64
267 arch_sources = $(amd64_sources) $(mono_debugger_sources)
268 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
269 arch_built=cpu-amd64.h
270 arch_define=__x86_64__
271 endif
272
273 if POWERPC
274 arch_sources = $(ppc_sources)
275 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
276 arch_built=cpu-ppc.h
277 arch_define=__ppc__
278 endif
279
280 if MIPS
281 arch_sources = $(mips_sources)
282 arch_BURGSRC= $(srcdir)/inssel-long32-mips.brg $(srcdir)/inssel-mips.brg
283 arch_built=cpu-mips.h
284 arch_define=__mips__
285 endif
286
287 if ARM
288 # pick up arm_dpimacros.h and arm_fpamacros.h
289 ARCH_CFLAGS = -I../arch/arm
290 arch_sources = $(arm_sources)
291 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg $(srcdir)/inssel-softfloat.brg
292 arch_built=cpu-arm.h
293 arch_define=__arm__
294 endif
295
296 if SPARC
297 arch_sources = $(sparc_sources)
298 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
299 arch_built=cpu-sparc.h
300 arch_define=__sparc__
301 endif
302
303 if SPARC64
304 arch_sources = $(sparc_sources)
305 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
306 arch_built=cpu-sparc.h
307 arch_define=__sparc__
308 endif
309
310 if S390
311 arch_sources = $(s390_sources)
312 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
313 arch_built=cpu-s390.h
314 arch_define=__s390__
315 endif
316
317 if S390x
318 arch_sources = $(s390x_sources)
319 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
320 arch_built=cpu-s390x.h
321 arch_define=__s390__
322 endif
323
324 if IA64
325 arch_sources = $(ia64_sources)
326 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
327 arch_built = cpu-ia64.h
328 arch_define=__ia64__
329 endif
330
331 if ALPHA
332 arch_sources = $(alpha_sources) $(mono_debugger_sources)
333 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-alpha.brg
334 arch_built = cpu-alpha.h
335 arch_define=__alpha__
336 endif
337
338 if HPPA
339 # Only support 32-bit targets for now
340 arch_sources = $(hppa_sources)
341 arch_BURGSRC = $(srcdir)/inssel-long32.brg $(srcdir)/inssel-hppa.brg
342 arch_built = cpu-hppa.h
343 arch_define=__hppa__
344 endif
345
346 libmono_la_SOURCES = $(common_sources) $(arch_sources)
347
348 nodist_libmono_la_SOURCES = inssel.c inssel.h
349
350 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
351 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
352 libmono_static_la_LDFLAGS = -static
353 libmono_static_la_LIBADD = $(static_libs)
354
355 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
356
357 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
358
359 libmonoinclude_HEADERS = jit.h
360
361 libmono_la_LIBADD = \
362         $(libs)
363
364 generics.exe: generics.cs TestDriver.dll generics-variant-types.dll
365         $(MCS) -out:$@ $< -r:TestDriver.dll -r:generics-variant-types.dll
366
367 %.exe: %.cs TestDriver.dll
368         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
369
370 iltests.il: iltests.il.in Makefile.am
371         echo '// DO NOT EDIT: This file has been generated from iltests.il.in' > iltests.il
372         cpp -Darch=$(arch_define) < $(srcdir)/iltests.il.in | sed 's/^#.*//' >> iltests.il
373
374 %.exe: %.il
375         $(ILASM) -output=$@ $<
376
377 TestDriver.dll: $(srcdir)/TestDriver.cs
378         $(MCS) -out:$@ -target:library $<
379
380 generics-variant-types.dll: generics-variant-types.il
381         $(ILASM) -dll -output=$@ $<
382
383 # we don't always use the perl impl because it's an additional
384 # build dependency for the poor windows users
385 # $(arch_define) is the preprocessor symbol that enables all the opcodes
386 # for the specific platform in mini-ops.h
387 if CROSS_COMPILING
388 GENMDESC_PRG=perl genmdesc.pl $(arch_define) $(srcdir)
389 else !CROSS_COMPILING
390 GENMDESC_PRG=./genmdesc
391 endif !CROSS_COMPILING
392
393 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
394         $(GENMDESC_PRG) $(srcdir)/cpu-x86.md cpu-x86.h x86_desc
395
396 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
397         $(GENMDESC_PRG) $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
398
399 cpu-ppc.h: cpu-ppc.md genmdesc$(EXEEXT)
400         $(GENMDESC_PRG) $(srcdir)/cpu-ppc.md cpu-ppc.h ppcg4
401
402 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
403         $(GENMDESC_PRG) $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
404
405 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
406         $(GENMDESC_PRG) $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
407
408 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
409         $(GENMDESC_PRG) $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
410
411 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
412         $(GENMDESC_PRG) $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
413
414 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
415         $(GENMDESC_PRG) $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
416
417 cpu-alpha.h: cpu-alpha.md genmdesc$(EXEEXT)
418         $(GENMDESC_PRG) $(srcdir)/cpu-alpha.md cpu-alpha.h alpha_desc
419
420 cpu-hppa.h: cpu-hppa.md genmdesc$(EXEEXT)
421         $(GENMDESC_PRG) $(srcdir)/cpu-hppa.md cpu-hppa.h hppa_desc
422
423 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
424         $(GENMDESC_PRG) $(srcdir)/cpu-mips.md cpu-mips.h mips_desc
425
426 inssel.c inssel.h: $(BURGSRC)
427         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
428
429 testi: mono test.exe
430         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
431
432 # ensure the tests are actually correct
433 checktests: $(regtests)
434         for i in $(regtests); do $(RUNTIME) $$i; done
435
436 rcheck: mono $(regtests)
437         $(RUNTIME) --regression $(regtests)
438
439 aotcheck: mono $(regtests)
440         for i in $(regtests); do $(RUNTIME) --aot $$i || exit 1; done
441         for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
442         rm -f *.exe.so
443
444 bench: mono test.exe
445         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
446
447 mbench: test.exe
448         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
449
450 stat1: mono bench.exe
451         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
452         perl viewstat.pl stats.pl
453
454 stat2: mono basic.exe
455         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
456         perl viewstat.pl -e stats.pl
457
458 stat3: mono bench.exe
459         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
460         perl viewstat.pl stats.pl
461
462 docu: mini.sgm
463         docbook2txt mini.sgm
464
465 check-local: rcheck
466
467 clean-local:
468         rm -f mono a.out gmon.out *.o test.exe
469
470 pkgconfigdir = $(libdir)/pkgconfig
471
472 if JIT_SUPPORTED
473 BUILT_SOURCES = version.h inssel.c inssel.h $(arch_built)
474 else
475 BUILT_SOURCES = version.h
476 endif
477
478 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
479 EXTRA_DIST = $(common_BURGSRC) cprop.c TestDriver.cs ldscript ldscript.mono \
480         genmdesc.pl     \
481         $(test_sources) \
482         inssel-long.brg inssel-long32.brg \
483         inssel-softfloat.brg    \
484         $(x86_sources) inssel-x86.brg cpu-x86.md \
485         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
486         $(ppc_sources) inssel-ppc.brg cpu-ppc.md \
487         $(arm_sources) inssel-arm.brg cpu-arm.md \
488         $(mips_sources) inssel-mips.brg inssel-long32-mips.brg cpu-mips.md \
489         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
490         $(s390_sources) inssel-s390.brg cpu-s390.md \
491         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
492         $(ia64_sources) inssel-ia64.brg cpu-ia64.md \
493         $(alpha_sources) inssel-alpha.brg cpu-alpha.md \
494         $(hppa_sources) inssel-hppa.brg cpu-hppa.md
495
496 version.h: Makefile
497         if test -d $(srcdir)/.svn; then \
498                 (cd $(srcdir);  \
499                         LANG=C; \
500                         export LANG;    \
501                         branch=`svn info | grep URL | sed -e 's/.*source//' -e 's,mono/mono/mini,,'`; \
502                         version=`svn info | grep Revision | sed 's/.*: //'`; \
503                         echo "#define FULL_VERSION \"$$branch r$$version\""; \
504                 ); \
505         else \
506                 echo "#define FULL_VERSION \"tarball\""; \
507         fi > version.h
508