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