2009-04-04 Zoltan Varga <vargaz@gmail.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 AM_CXXFLAGS = $(LLVM_CXXFLAGS) $(GLIB_CFLAGS)
43
44 if PLATFORM_WIN32
45 export HOST_CC
46 # The mingw math.h has "extern inline" functions that dont appear in libs, so
47 # optimisation is required to actually inline them
48 PLATFORM_CFLAGS = -O
49 endif
50
51 # hack for automake to have the same source file in a library and a bin
52 genmdesc_CFLAGS = $(AM_CFLAGS)
53
54 if NO_VERSION_SCRIPT
55 monoldflags=$(export_ldflags)
56 monobinldflags=$(export_ldflags)
57 else
58 monoldflags=-Wl,-version-script=$(srcdir)/ldscript $(export_ldflags)
59 monobinldflags=-Wl,-version-script=$(srcdir)/ldscript.mono $(export_ldflags)
60 endif
61
62 if PLATFORM_WIN32
63 libmono_la_LDFLAGS=-no-undefined -avoid-version -Wl,--kill-at $(monoldflags)
64 else
65 libmono_la_LDFLAGS=$(monoldflags)
66 endif
67
68 if JIT_SUPPORTED
69
70 if PLATFORM_WIN32
71 bin_PROGRAMS = mono monow
72 else
73 bin_PROGRAMS = mono
74 endif
75
76 noinst_PROGRAMS = genmdesc
77
78 lib_LTLIBRARIES = libmono.la
79 noinst_LTLIBRARIES = libmono-static.la
80 endif
81
82 mono_SOURCES = \
83         main.c
84
85 # We build this after libmono was built so it contains the date when the final
86 # link was done
87 buildver.h: libmono-static.la
88         @echo "const char *build_date = \"`date`\";" > buildver.h
89
90 main.$(OBJEXT): buildver.h
91
92 if DTRACE_G_REQUIRED
93 LIBMONO_DTRACE_OBJECT = .libs/mono-dtrace.$(OBJEXT)
94 if STATIC_MONO
95 MONO_DTRACE_OBJECT = mono-dtrace.$(OBJEXT)
96 else
97 MONO_DTRACE_OBJECT = 
98 endif
99 else
100 MONO_DTRACE_OBJECT = 
101 LIBMONO_DTRACE_OBJECT = 
102 endif
103
104 if STATIC_MONO
105 # Link libmono into mono statically
106 # This leads to higher performance, especially with TLS
107 MONO_LIB=libmono-static.la
108 else 
109 MONO_LIB=libmono.la
110 endif
111
112 mono_LDADD = \
113         $(MONO_LIB)                     \
114         $(GLIB_LIBS)            \
115         $(LLVM_LIBS)            \
116         -lm     \
117         $(MONO_DTRACE_OBJECT)
118
119 mono_LDFLAGS = \
120         $(static_flags) -export-dynamic $(monobinldflags)
121
122 if DTRACE_G_REQUIRED
123
124 mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime-static.la
125         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
126         $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime-static.la mini.lo
127
128 .libs/mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime.la
129         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
130         --pic $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime.la mini.lo
131
132 endif
133
134 # Create monow.exe, linked for the 'windows' subsystem
135 if PLATFORM_WIN32
136 monow_LDADD = $(mono_LDADD)
137 monow_LDFLAGS = $(mono_LDFLAGS) -mwindows
138 monow_SOURCES = $(mono_SOURCES)
139 endif
140
141 genmdesc_SOURCES = \
142         mini.h          \
143         genmdesc.c      \
144         helpers.c
145
146 # Don't link this against libmonoruntime to speed up rebuilds
147 genmdesc_LDADD = \
148         $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
149         $(GLIB_LIBS)
150
151 x86_sources = \
152         mini-x86.c              \
153         mini-x86.h              \
154         exceptions-x86.c        \
155         tramp-x86.c
156
157 amd64_sources = \
158         mini-amd64.c            \
159         mini-amd64.h            \
160         exceptions-amd64.c      \
161         tramp-amd64.c
162
163 ppc_sources = \
164         mini-ppc.c              \
165         mini-ppc.h              \
166         exceptions-ppc.c        \
167         tramp-ppc.c
168
169 arm_sources = \
170         mini-arm.c              \
171         mini-arm.h              \
172         exceptions-arm.c        \
173         tramp-arm.c
174
175 mips_sources = \
176         mini-mips.c             \
177         mini-mips.h             \
178         exceptions-mips.c       \
179         tramp-mips.c
180
181 sparc_sources = \
182         mini-sparc.c            \
183         mini-sparc.h            \
184         exceptions-sparc.c      \
185         tramp-sparc.c
186
187 s390_sources = \
188         mini-s390.c             \
189         mini-s390.h             \
190         exceptions-s390.c       \
191         tramp-s390.c
192
193 s390x_sources = \
194         mini-s390x.c            \
195         mini-s390x.h            \
196         exceptions-s390x.c      \
197         tramp-s390x.c
198
199 ia64_sources = \
200         mini-ia64.c             \
201         mini-ia64.h             \
202         exceptions-ia64.c       \
203         tramp-ia64.c
204
205 alpha_sources = \
206         mini-alpha.c            \
207         mini-alpha.h            \
208         exceptions-alpha.c      \
209         tramp-alpha.c
210
211 hppa_sources = \
212         mini-hppa.c             \
213         mini-hppa.h             \
214         exceptions-hppa.c       \
215         tramp-hppa.c
216
217 darwin_sources = \
218         mini-darwin.c
219
220 windows_sources = \
221         mini-windows.c
222
223 posix_sources = \
224         mini-posix.c
225
226 if ENABLE_LLVM
227 llvm_sources = \
228         mini-llvm.c             \
229         mini-llvm-cpp.cpp
230 endif
231
232 common_sources = \
233         mini.c                  \
234         ir-emit.h               \
235         method-to-ir.c          \
236         decompose.c             \
237         mini.h                  \
238         version.h               \
239         optflags-def.h          \
240         jit-icalls.h            \
241         jit-icalls.c            \
242         trace.c                 \
243         trace.h                 \
244         patch-info.h            \
245         mini-ops.h              \
246         mini-arch.h             \
247         dominators.c            \
248         cfold.c                 \
249         regalloc.c              \
250         regalloc.h              \
251         helpers.c               \
252         liveness.c              \
253         ssa.c                   \
254         abcremoval.c            \
255         abcremoval.h            \
256         ssapre.c                \
257         ssapre.h                \
258         local-propagation.c     \
259         driver.c                \
260         debug-mini.c            \
261         debug-mini.h            \
262         linear-scan.c           \
263         aot-compiler.c          \
264         aot-runtime.c           \
265         graph.c                 \
266         mini-codegen.c          \
267         mini-exceptions.c       \
268         mini-trampolines.c      \
269         declsec.c               \
270         declsec.h               \
271         wapihandles.c           \
272         branch-opts.c           \
273         mini-generic-sharing.c  \
274         regalloc2.c             \
275         simd-methods.h          \
276         simd-intrinsics.c       \
277         unwind.h                \
278         unwind.c                \
279         image-writer.h  \
280         image-writer.c  \
281         dwarfwriter.h   \
282         dwarfwriter.c
283
284 test_sources =                  \
285         basic-calls.cs          \
286         basic-long.cs           \
287         bench.cs                \
288         objects.cs              \
289         arrays.cs               \
290         basic-float.cs          \
291         basic-math.cs           \
292         basic.cs                \
293         exceptions.cs           \
294         devirtualization.cs     \
295         iltests.il.in           \
296         test.cs                 \
297         generics.cs             \
298         generics-variant-types.il\
299         basic-simd.cs
300
301 if MONO_DEBUGGER_SUPPORTED
302 if AMD64
303 mono_debugger_arch_sources = mdb-debug-info64.s
304 else
305 if X86
306 mono_debugger_arch_sources = mdb-debug-info32.s
307 endif
308 endif
309 mono_debugger_sources = debug-debugger.c debug-debugger.h $(mono_debugger_arch_sources)
310 else
311 mono_debugger_sources =
312 endif
313
314 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 basic-simd.exe
315
316 if X86
317 arch_sources = $(x86_sources) $(mono_debugger_sources)
318 arch_built=cpu-x86.h
319 arch_define=__i386__
320 endif
321
322 if AMD64
323 arch_sources = $(amd64_sources) $(mono_debugger_sources)
324 arch_built=cpu-amd64.h
325 arch_define=__x86_64__
326 endif
327
328 if POWERPC
329 arch_sources = $(ppc_sources)
330 arch_built=cpu-ppc.h
331 arch_define=__ppc__
332 endif
333
334 if POWERPC64
335 arch_sources = $(ppc_sources)
336 arch_built=cpu-ppc64.h
337 arch_define=__ppc64__
338 endif
339
340 if MIPS
341 arch_sources = $(mips_sources)
342 arch_built=cpu-mips.h
343 arch_define=__mips__
344 endif
345
346 if ARM
347 # pick up arm_dpimacros.h and arm_fpamacros.h
348 ARCH_CFLAGS = -I../arch/arm
349 arch_sources = $(arm_sources)
350 arch_built=cpu-arm.h
351 arch_define=__arm__
352 endif
353
354 if SPARC
355 arch_sources = $(sparc_sources)
356 arch_built=cpu-sparc.h
357 arch_define=__sparc__
358 endif
359
360 if SPARC64
361 arch_sources = $(sparc_sources)
362 arch_built=cpu-sparc.h
363 arch_define=__sparc__
364 endif
365
366 if S390
367 arch_sources = $(s390_sources)
368 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
369 arch_built=cpu-s390.h
370 arch_define=__s390__
371 endif
372
373 if S390x
374 arch_sources = $(s390x_sources)
375 arch_built=cpu-s390x.h
376 arch_define=__s390__
377 endif
378
379 if IA64
380 arch_sources = $(ia64_sources)
381 arch_built = cpu-ia64.h
382 arch_define=__ia64__
383 endif
384
385 if ALPHA
386 arch_sources = $(alpha_sources) $(mono_debugger_sources)
387 arch_built = cpu-alpha.h
388 arch_define=__alpha__
389 endif
390
391 if HPPA
392 # Only support 32-bit targets for now
393 arch_sources = $(hppa_sources)
394 arch_built = cpu-hppa.h
395 arch_define=__hppa__
396 endif
397
398 if PLATFORM_WIN32
399 os_sources = $(windows_sources)
400 endif
401
402 if PLATFORM_SIGPOSIX
403 os_sources = $(posix_sources)
404 endif
405
406 if PLATFORM_DARWIN
407 os_sources = $(darwin_sources) $(posix_sources)
408 endif
409
410 libmono_la_SOURCES = $(common_sources) $(llvm_sources) $(arch_sources) $(os_sources)
411
412 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
413 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
414 libmono_static_la_LDFLAGS = -static
415 libmono_static_la_LIBADD = $(static_libs) $(MONO_DTRACE_OBJECT)
416
417 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
418
419 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
420
421 libmonoinclude_HEADERS = jit.h
422
423 libmono_la_LIBADD = \
424         $(libs) $(LIBMONO_DTRACE_OBJECT)
425
426 basic-simd.exe: basic-simd.cs
427         $(MCS) -out:$@ $< -r:TestDriver.dll -r:Mono.Simd.dll
428
429 generics.exe: generics.cs TestDriver.dll generics-variant-types.dll
430         $(MCS) -out:$@ $< -r:TestDriver.dll -r:generics-variant-types.dll
431
432 %.exe: %.cs TestDriver.dll
433         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
434
435 iltests.il: iltests.il.in Makefile.am
436         echo '// DO NOT EDIT: This file has been generated from iltests.il.in' > iltests.il
437         cpp -Darch=$(arch_define) < $(srcdir)/iltests.il.in | sed 's/^#.*//' >> iltests.il
438
439 %.exe: %.il
440         $(ILASM) -output=$@ $<
441
442 TestDriver.dll: $(srcdir)/TestDriver.cs
443         $(MCS) -out:$@ -target:library $<
444
445 generics-variant-types.dll: generics-variant-types.il
446         $(ILASM) -dll -output=$@ $<
447
448 # we don't always use the perl impl because it's an additional
449 # build dependency for the poor windows users
450 # $(arch_define) is the preprocessor symbol that enables all the opcodes
451 # for the specific platform in mini-ops.h
452 if CROSS_COMPILING
453 GENMDESC_PRG=perl $(srcdir)/genmdesc.pl $(arch_define) $(srcdir)
454 else !CROSS_COMPILING
455 GENMDESC_PRG=./genmdesc
456 endif !CROSS_COMPILING
457
458 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
459         $(GENMDESC_PRG) $(srcdir)/cpu-x86.md cpu-x86.h x86_desc
460
461 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
462         $(GENMDESC_PRG) $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
463
464 cpu-ppc.h: cpu-ppc.md genmdesc$(EXEEXT)
465         $(GENMDESC_PRG) $(srcdir)/cpu-ppc.md cpu-ppc.h ppcg4
466
467 cpu-ppc64.h: cpu-ppc64.md genmdesc$(EXEEXT)
468         $(GENMDESC_PRG) $(srcdir)/cpu-ppc64.md cpu-ppc64.h ppc64_cpu_desc
469
470 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
471         $(GENMDESC_PRG) $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
472
473 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
474         $(GENMDESC_PRG) $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
475
476 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
477         $(GENMDESC_PRG) $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
478
479 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
480         $(GENMDESC_PRG) $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
481
482 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
483         $(GENMDESC_PRG) $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
484
485 cpu-alpha.h: cpu-alpha.md genmdesc$(EXEEXT)
486         $(GENMDESC_PRG) $(srcdir)/cpu-alpha.md cpu-alpha.h alpha_desc
487
488 cpu-hppa.h: cpu-hppa.md genmdesc$(EXEEXT)
489         $(GENMDESC_PRG) $(srcdir)/cpu-hppa.md cpu-hppa.h hppa_desc
490
491 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
492         $(GENMDESC_PRG) $(srcdir)/cpu-mips.md cpu-mips.h mips_desc
493
494 testi: mono test.exe
495         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
496
497 # ensure the tests are actually correct
498 checktests: $(regtests)
499         for i in $(regtests); do $(RUNTIME) $$i; done
500
501 rcheck: mono $(regtests)
502         $(RUNTIME) --regression $(regtests)
503
504 aotcheck: mono $(regtests)
505         rm -f *.exe.so
506         $(RUNTIME) --aot $(regtests) || exit 1
507         for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
508         rm -f *.exe.so
509
510 # This is not expected to run successfully
511 fullaotcheck: mono $(regtests)
512         rm -rf fullaot-tmp
513         mkdir fullaot-tmp
514         cp $(CLASS)/mscorlib.dll $(CLASS)/Mono.Simd.dll $(regtests) generics-variant-types.dll TestDriver.dll fullaot-tmp/
515         cp $(regtests) fullaot-tmp/
516         MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper --aot=full fullaot-tmp/* || exit 1
517         for i in $(regtests); do echo $$i; if [ $$i != generics.exe ]; then MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper --full-aot fullaot-tmp/$$i || exit 1; fi; done
518
519 bench: mono test.exe
520         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
521
522 mbench: test.exe
523         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
524
525 stat1: mono bench.exe
526         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
527         perl viewstat.pl stats.pl
528
529 stat2: mono basic.exe
530         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
531         perl viewstat.pl -e stats.pl
532
533 stat3: mono bench.exe
534         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
535         perl viewstat.pl stats.pl
536
537 docu: mini.sgm
538         docbook2txt mini.sgm
539
540 check-local: rcheck
541
542 clean-local:
543         rm -f mono a.out gmon.out *.o buildver.h test.exe
544
545 pkgconfigdir = $(libdir)/pkgconfig
546
547 if JIT_SUPPORTED
548 BUILT_SOURCES = version.h $(arch_built)
549 else
550 BUILT_SOURCES = version.h
551 endif
552
553 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
554 EXTRA_DIST = $(common_BURGSRC) cprop.c TestDriver.cs ldscript ldscript.mono \
555         genmdesc.pl     \
556         $(test_sources) \
557         $(x86_sources) cpu-x86.md \
558         $(amd64_sources) cpu-amd64.md \
559         $(ppc_sources) cpu-ppc.md cpu-ppc64.md \
560         $(arm_sources) cpu-arm.md \
561         $(mips_sources) cpu-mips.md \
562         $(sparc_sources) cpu-sparc.md \
563         $(s390_sources) cpu-s390.md \
564         $(s390x_sources) cpu-s390x.md \
565         $(ia64_sources) cpu-ia64.md \
566         $(alpha_sources) cpu-alpha.md \
567         $(hppa_sources) cpu-hppa.md     \
568         $(windows_sources)              \
569         $(darwin_sources)               \
570         $(posix_sources)
571
572 version.h: Makefile
573         if test -d $(top_srcdir)/.git/svn; then svn_info='git svn info'; fi; \
574         if test -d $(srcdir)/.svn; then svn_info='svn info'; fi; \
575         if test -n "$$svn_info"; then \
576                 (cd $(top_srcdir); \
577                         LANG=C; export LANG; \
578                         branch=`$$svn_info | grep URL | sed -e 's/.*source//' -e 's,mono/?$$,,'`; \
579                         version=`$$svn_info | grep Revision | sed 's/.*: //'`; \
580                         echo "#define FULL_VERSION \"$$branch r$$version\""; \
581                 ); \
582         else \
583                 echo "#define FULL_VERSION \"tarball\""; \
584         fi > version.h
585
586 # Utility target for patching libtool to speed up linking
587 patch-libtool:
588         sed -e 's,if (for obj in $$oldobjs,if (for obj in "",g' < ../../libtool > 2; mv 2 ../../libtool
589         chmod a+x ../../libtool