Prepping for mdoc et. al. move from monodoc/tools to mcs/tools/mdoc...
[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         basic-simd.cs
274
275 if MONO_DEBUGGER_SUPPORTED
276 if AMD64
277 mono_debugger_arch_sources = mdb-debug-info64.s
278 else
279 if X86
280 mono_debugger_arch_sources = mdb-debug-info32.s
281 endif
282 endif
283 mono_debugger_sources = debug-debugger.c debug-debugger.h $(mono_debugger_arch_sources)
284 else
285 mono_debugger_sources =
286 endif
287
288 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
289
290 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
291
292 if X86
293 arch_sources = $(x86_sources) $(mono_debugger_sources)
294 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
295 arch_built=cpu-x86.h
296 arch_define=__i386__
297 endif
298
299 if AMD64
300 arch_sources = $(amd64_sources) $(mono_debugger_sources)
301 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
302 arch_built=cpu-amd64.h
303 arch_define=__x86_64__
304 endif
305
306 if POWERPC
307 arch_sources = $(ppc_sources)
308 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
309 arch_built=cpu-ppc.h
310 arch_define=__ppc__
311 endif
312
313 if POWERPC64
314 arch_sources = $(ppc_sources)
315 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-ppc.brg
316 arch_built=cpu-ppc64.h
317 arch_define=__ppc__
318 endif
319
320 if MIPS
321 arch_sources = $(mips_sources)
322 arch_BURGSRC= $(srcdir)/inssel-long32-mips.brg $(srcdir)/inssel-mips.brg
323 arch_built=cpu-mips.h
324 arch_define=__mips__
325 endif
326
327 if ARM
328 # pick up arm_dpimacros.h and arm_fpamacros.h
329 ARCH_CFLAGS = -I../arch/arm
330 arch_sources = $(arm_sources)
331 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg $(srcdir)/inssel-softfloat.brg
332 arch_built=cpu-arm.h
333 arch_define=__arm__
334 endif
335
336 if SPARC
337 arch_sources = $(sparc_sources)
338 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
339 arch_built=cpu-sparc.h
340 arch_define=__sparc__
341 endif
342
343 if SPARC64
344 arch_sources = $(sparc_sources)
345 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
346 arch_built=cpu-sparc.h
347 arch_define=__sparc__
348 endif
349
350 if S390
351 arch_sources = $(s390_sources)
352 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
353 arch_built=cpu-s390.h
354 arch_define=__s390__
355 endif
356
357 if S390x
358 arch_sources = $(s390x_sources)
359 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
360 arch_built=cpu-s390x.h
361 arch_define=__s390__
362 endif
363
364 if IA64
365 arch_sources = $(ia64_sources)
366 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
367 arch_built = cpu-ia64.h
368 arch_define=__ia64__
369 endif
370
371 if ALPHA
372 arch_sources = $(alpha_sources) $(mono_debugger_sources)
373 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-alpha.brg
374 arch_built = cpu-alpha.h
375 arch_define=__alpha__
376 endif
377
378 if HPPA
379 # Only support 32-bit targets for now
380 arch_sources = $(hppa_sources)
381 arch_BURGSRC = $(srcdir)/inssel-long32.brg $(srcdir)/inssel-hppa.brg
382 arch_built = cpu-hppa.h
383 arch_define=__hppa__
384 endif
385
386 libmono_la_SOURCES = $(common_sources) $(arch_sources)
387
388 if DISABLE_JIT
389 nodist_libmono_la_SOURCES = inssel.h
390 else
391 nodist_libmono_la_SOURCES = inssel.c inssel.h
392 endif
393
394 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
395 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
396 libmono_static_la_LDFLAGS = -static
397 libmono_static_la_LIBADD = $(static_libs) $(MONO_DTRACE_OBJECT)
398
399 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
400
401 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
402
403 libmonoinclude_HEADERS = jit.h
404
405 libmono_la_LIBADD = \
406         $(libs) $(LIBMONO_DTRACE_OBJECT)
407
408 basic-simd.exe: basic-simd.cs
409         $(MCS) -out:$@ $< -r:TestDriver.dll -r:Mono.Simd.dll
410
411 generics.exe: generics.cs TestDriver.dll generics-variant-types.dll
412         $(MCS) -out:$@ $< -r:TestDriver.dll -r:generics-variant-types.dll
413
414 %.exe: %.cs TestDriver.dll
415         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
416
417 iltests.il: iltests.il.in Makefile.am
418         echo '// DO NOT EDIT: This file has been generated from iltests.il.in' > iltests.il
419         cpp -Darch=$(arch_define) < $(srcdir)/iltests.il.in | sed 's/^#.*//' >> iltests.il
420
421 %.exe: %.il
422         $(ILASM) -output=$@ $<
423
424 TestDriver.dll: $(srcdir)/TestDriver.cs
425         $(MCS) -out:$@ -target:library $<
426
427 generics-variant-types.dll: generics-variant-types.il
428         $(ILASM) -dll -output=$@ $<
429
430 # we don't always use the perl impl because it's an additional
431 # build dependency for the poor windows users
432 # $(arch_define) is the preprocessor symbol that enables all the opcodes
433 # for the specific platform in mini-ops.h
434 if CROSS_COMPILING
435 GENMDESC_PRG=perl $(srcdir)/genmdesc.pl $(arch_define) $(srcdir)
436 else !CROSS_COMPILING
437 GENMDESC_PRG=./genmdesc
438 endif !CROSS_COMPILING
439
440 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
441         $(GENMDESC_PRG) $(srcdir)/cpu-x86.md cpu-x86.h x86_desc
442
443 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
444         $(GENMDESC_PRG) $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
445
446 cpu-ppc.h: cpu-ppc.md genmdesc$(EXEEXT)
447         $(GENMDESC_PRG) $(srcdir)/cpu-ppc.md cpu-ppc.h ppcg4
448
449 cpu-ppc64.h: cpu-ppc64.md genmdesc$(EXEEXT)
450         $(GENMDESC_PRG) $(srcdir)/cpu-ppc64.md cpu-ppc64.h ppcg4
451
452 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
453         $(GENMDESC_PRG) $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
454
455 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
456         $(GENMDESC_PRG) $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
457
458 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
459         $(GENMDESC_PRG) $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
460
461 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
462         $(GENMDESC_PRG) $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
463
464 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
465         $(GENMDESC_PRG) $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
466
467 cpu-alpha.h: cpu-alpha.md genmdesc$(EXEEXT)
468         $(GENMDESC_PRG) $(srcdir)/cpu-alpha.md cpu-alpha.h alpha_desc
469
470 cpu-hppa.h: cpu-hppa.md genmdesc$(EXEEXT)
471         $(GENMDESC_PRG) $(srcdir)/cpu-hppa.md cpu-hppa.h hppa_desc
472
473 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
474         $(GENMDESC_PRG) $(srcdir)/cpu-mips.md cpu-mips.h mips_desc
475
476 inssel.c inssel.h: $(BURGSRC)
477         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
478
479 testi: mono test.exe
480         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
481
482 # ensure the tests are actually correct
483 checktests: $(regtests)
484         for i in $(regtests); do $(RUNTIME) $$i; done
485
486 rcheck: mono $(regtests)
487         $(RUNTIME) --regression $(regtests)
488
489 aotcheck: mono $(regtests)
490         rm -f *.exe.so
491         $(RUNTIME) --aot $(regtests) || exit 1
492         for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
493         rm -f *.exe.so
494
495 bench: mono test.exe
496         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
497
498 mbench: test.exe
499         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
500
501 stat1: mono bench.exe
502         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
503         perl viewstat.pl stats.pl
504
505 stat2: mono basic.exe
506         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
507         perl viewstat.pl -e stats.pl
508
509 stat3: mono bench.exe
510         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
511         perl viewstat.pl stats.pl
512
513 docu: mini.sgm
514         docbook2txt mini.sgm
515
516 check-local: rcheck
517
518 clean-local:
519         rm -f mono a.out gmon.out *.o test.exe
520
521 pkgconfigdir = $(libdir)/pkgconfig
522
523 if JIT_SUPPORTED
524 BUILT_SOURCES = version.h inssel.c inssel.h $(arch_built)
525 else
526 BUILT_SOURCES = version.h
527 endif
528
529 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
530 EXTRA_DIST = $(common_BURGSRC) cprop.c TestDriver.cs ldscript ldscript.mono \
531         genmdesc.pl     \
532         $(test_sources) \
533         inssel-long.brg inssel-long32.brg \
534         inssel-softfloat.brg    \
535         $(x86_sources) inssel-x86.brg cpu-x86.md \
536         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
537         $(ppc_sources) inssel-ppc.brg cpu-ppc.md \
538         $(arm_sources) inssel-arm.brg cpu-arm.md \
539         $(mips_sources) inssel-mips.brg inssel-long32-mips.brg cpu-mips.md \
540         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
541         $(s390_sources) inssel-s390.brg cpu-s390.md \
542         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
543         $(ia64_sources) inssel-ia64.brg cpu-ia64.md \
544         $(alpha_sources) inssel-alpha.brg cpu-alpha.md \
545         $(hppa_sources) inssel-hppa.brg cpu-hppa.md
546
547 version.h: Makefile
548         if test -d $(top_srcdir)/.git/svn; then svn_info='git svn info'; fi; \
549         if test -d $(srcdir)/.svn; then svn_info='svn info'; fi; \
550         if test -n "$$svn_info"; then \
551                 (cd $(top_srcdir); \
552                         LANG=C; export LANG; \
553                         branch=`$$svn_info | grep URL | sed -e 's/.*source//' -e 's,mono/?$$,,'`; \
554                         version=`$$svn_info | grep Revision | sed 's/.*: //'`; \
555                         echo "#define FULL_VERSION \"$$branch r$$version\""; \
556                 ); \
557         else \
558                 echo "#define FULL_VERSION \"tarball\""; \
559         fi > version.h