* Makefile.am (BUILT_SOURCES): Add 'version.h'.
[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 common_sources = \
185         mini.c          \
186         mini.h          \
187         version.h       \
188         optflags-def.h          \
189         jit-icalls.h \
190         jit-icalls.c \
191         trace.c         \
192         trace.h         \
193         patch-info.h    \
194         mini-ops.h      \
195         mini-arch.h     \
196         dominators.c    \
197         cfold.c         \
198         regalloc.c      \
199         regalloc.h      \
200         helpers.c       \
201         liveness.c      \
202         ssa.c           \
203         abcremoval.c    \
204         abcremoval.h    \
205         ssapre.c        \
206         ssapre.h        \
207         aliasing.c      \
208         aliasing.h      \
209         local-propagation.c     \
210         simple-cee-ops.h \
211         simple-mini-ops.h \
212         driver.c        \
213         debug-mini.c    \
214         linear-scan.c   \
215         aot-compiler.c          \
216         aot-runtime.c           \
217         graph.c         \
218         mini-exceptions.c       \
219         mini-codegen.c          \
220         declsec.c       \
221         declsec.h       \
222         wapihandles.c   \
223         branch-opts.c
224
225 test_sources =          \
226         basic-calls.cs  \
227         basic-long.cs   \
228         bench.cs                \
229         objects.cs              \
230         arrays.cs               \
231         basic-float.cs  \
232         basic-math.cs   \
233         basic.cs                \
234         exceptions.cs   \
235         iltests.il.in           \
236         test.cs
237
238 test_sources2 = generics.2.cs il2tests.2.il
239
240 if MONO_DEBUGGER_SUPPORTED
241 if AMD64
242 mono_debugger_arch_sources = mdb-debug-info64.s
243 else
244 if ALPHA
245 mono_debugger_arch_sources = mdb-debug-info64.s
246 else
247 mono_debugger_arch_sources = mdb-debug-info32.s
248 endif
249 endif
250 mono_debugger_sources = debug-debugger.c debug-debugger.h $(mono_debugger_arch_sources)
251 else
252 mono_debugger_sources =
253 endif
254
255 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
256 regtests2=generics.exe il2tests.exe
257
258 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
259
260 if X86
261 arch_sources = $(x86_sources) $(mono_debugger_sources)
262 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
263 arch_built=cpu-x86.h
264 arch_define=__i386__
265 endif
266
267 if AMD64
268 arch_sources = $(amd64_sources) $(mono_debugger_sources)
269 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
270 arch_built=cpu-amd64.h
271 arch_define=__x86_64__
272 endif
273
274 if POWERPC
275 arch_sources = $(ppc_sources)
276 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
277 arch_built=cpu-g4.h
278 arch_define=__ppc__
279 endif
280
281 if MIPS
282 arch_sources = $(mips_sources)
283 arch_BURGSRC= $(srcdir)/inssel-long32-mips.brg $(srcdir)/inssel-mips.brg
284 arch_built=cpu-mips.h
285 arch_define=__mips__
286 endif
287
288 if ARM
289 # pick up arm_dpimacros.h and arm_fpamacros.h
290 ARCH_CFLAGS = -I../arch/arm
291 arch_sources = $(arm_sources)
292 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg $(srcdir)/inssel-softfloat.brg
293 arch_built=cpu-arm.h
294 arch_define=__arm__
295 endif
296
297 if SPARC
298 arch_sources = $(sparc_sources)
299 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
300 arch_built=cpu-sparc.h
301 arch_define=__sparc__
302 endif
303
304 if SPARC64
305 arch_sources = $(sparc_sources)
306 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
307 arch_built=cpu-sparc.h
308 arch_define=__sparc__
309 endif
310
311 if S390
312 arch_sources = $(s390_sources)
313 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
314 arch_built=cpu-s390.h
315 arch_define=__s390__
316 endif
317
318 if S390x
319 arch_sources = $(s390x_sources)
320 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
321 arch_built=cpu-s390x.h
322 arch_define=__s390__
323 endif
324
325 if IA64
326 arch_sources = $(ia64_sources)
327 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
328 arch_built = cpu-ia64.h
329 arch_define=__ia64__
330 endif
331
332 if ALPHA
333 arch_sources = $(alpha_sources) $(mono_debugger_sources)
334 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-alpha.brg
335 arch_built = cpu-alpha.h
336 arch_define=__alpha__
337 endif
338
339 libmono_la_SOURCES = $(common_sources) $(arch_sources)
340
341 nodist_libmono_la_SOURCES = inssel.c inssel.h
342
343 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
344 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
345 libmono_static_la_LDFLAGS = -static
346 libmono_static_la_LIBADD = $(static_libs)
347
348 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
349
350 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
351
352 libmonoinclude_HEADERS = jit.h
353
354 libmono_la_LIBADD = \
355         $(libs)
356
357 %.exe: %.2.cs TestDriver.dll
358         $(GMCS) -out:$@ $< -r:TestDriver.dll 
359
360 %.exe: %.cs TestDriver.dll
361         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
362
363 %.exe: %.2.il
364         $(ILASM2) -output=$@ $<
365
366 iltests.il: iltests.il.in Makefile.am
367         echo '// DO NOT EDIT: This file has been generated from iltests.il.in' > iltests.il
368         cpp -Darch=$(arch_define) < $(srcdir)/iltests.il.in | sed 's/^#.*//' >> iltests.il
369
370 %.exe: %.il
371         $(ILASM) -output=$@ $<
372
373 TestDriver.dll: $(srcdir)/TestDriver.cs
374         $(MCS) -out:$@ -target:library $<
375
376 # we don't always use the perl impl because it's an additional
377 # build dependency for the poor windows users
378 # $(arch_define) is the preprocessor symbol that enables all the opcodes
379 # for the specific platform in mini-ops.h
380 if CROSS_COMPILING
381 GENMDESC_PRG=perl genmdesc.pl $(arch_define) $(srcdir)
382 else !CROSS_COMPILING
383 GENMDESC_PRG=./genmdesc
384 endif !CROSS_COMPILING
385
386 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
387         $(GENMDESC_PRG) $(srcdir)/cpu-x86.md cpu-x86.h x86_desc
388
389 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
390         $(GENMDESC_PRG) $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
391
392 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
393         $(GENMDESC_PRG) $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
394
395 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
396         $(GENMDESC_PRG) $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
397
398 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
399         $(GENMDESC_PRG) $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
400
401 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
402         $(GENMDESC_PRG) $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
403
404 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
405         $(GENMDESC_PRG) $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
406
407 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
408         $(GENMDESC_PRG) $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
409
410 cpu-alpha.h: cpu-alpha.md genmdesc$(EXEEXT)
411         $(GENMDESC_PRG) $(srcdir)/cpu-alpha.md cpu-alpha.h alpha_desc
412
413 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
414         $(GENMDESC_PRG) $(srcdir)/cpu-mips.md cpu-mips.h mips_desc
415
416 inssel.c inssel.h: $(BURGSRC)
417         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
418
419 testi: mono test.exe
420         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
421
422 # ensure the tests are actually correct
423 checktests: $(regtests)
424         for i in $(regtests); do $(RUNTIME) $$i; done
425
426 checktests2: $(regtests2)
427         for i in $(regtests); do $(RUNTIME2) $$i; done
428
429 rcheck: mono $(regtests) $(regtests2)
430         $(RUNTIME) --regression $(regtests)
431         $(RUNTIME2) --regression $(regtests2)
432
433 aotcheck: mono $(regtests)
434         for i in $(regtests); do $(RUNTIME) --aot $$i; done
435 #       for i in $(regtests2); do $(RUNTIME2) --aot $$i; done
436         $(RUNTIME) --regression $(regtests)
437 #       $(RUNTIME2) --verbose --regression $(regtests2)
438         rm -f *.exe.so
439
440 bench: mono test.exe
441         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
442
443 mbench: test.exe
444         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
445
446 stat1: mono bench.exe
447         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
448         perl viewstat.pl stats.pl
449
450 stat2: mono basic.exe
451         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
452         perl viewstat.pl -e stats.pl
453
454 stat3: mono bench.exe
455         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
456         perl viewstat.pl stats.pl
457
458 docu: mini.sgm
459         docbook2txt mini.sgm
460
461 check-local: rcheck
462
463 clean-local:
464         rm -f mono a.out gmon.out *.o test.exe
465
466 pkgconfigdir = $(libdir)/pkgconfig
467
468 BUILT_SOURCES = version.h
469
470 if JIT_SUPPORTED
471 BUILT_SOURCES += inssel.c inssel.h $(arch_built)
472 endif
473
474 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
475 EXTRA_DIST = $(common_BURGSRC) cprop.c TestDriver.cs ldscript ldscript.mono \
476         genmdesc.pl     \
477         $(test_sources) $(test_sources2) \
478         inssel-long.brg inssel-long32.brg \
479         inssel-softfloat.brg    \
480         $(x86_sources) inssel-x86.brg cpu-x86.md \
481         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
482         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
483         $(arm_sources) inssel-arm.brg cpu-arm.md \
484         $(mips_sources) inssel-mips.brg inssel-long32-mips.brg cpu-mips.md \
485         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
486         $(s390_sources) inssel-s390.brg cpu-s390.md \
487         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
488         $(ia64_sources) inssel-ia64.brg cpu-ia64.md \
489         $(alpha_sources) inssel-alpha.brg cpu-alpha.md
490
491 version.h: Makefile
492         if test -d $(srcdir)/.svn; then \
493                 (cd $(srcdir);  \
494                         branch=`svn info | grep URL | sed -e 's/.*source//' -e 's,mono/mono/mini,,'`; \
495                         version=`svn info | grep Revision | sed 's/.*: //'`; \
496                         echo "#define FULL_VERSION \"$$branch r$$version\""; \
497                 ); \
498         else \
499                 echo "#define FULL_VERSION \"tarball\""; \
500         fi > version.h