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