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