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