0f88d0aad526b612aea3ca80e2c8472add5b447b
[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         $(GMODULE_LIBS) \
19         $(GLIB_LIBS)    \
20         $(libgc_libs)   \
21         $(ICU_LIBS)
22
23 static_libs=    \
24         $(monodir)/mono/metadata/libmonoruntime-static.la       \
25         $(monodir)/mono/io-layer/libwapi.la     \
26         $(monodir)/mono/utils/libmonoutils.la \
27         $(GMODULE_LIBS) \
28         $(GLIB_LIBS)    \
29         $(libgc_static_libs) \
30         $(ICU_LIBS)
31
32 CLASS1=$(mcs_topdir)/class/lib/default
33 CLASS2=$(mcs_topdir)/class/lib/net_2_0
34
35 RUNTIME = MONO_PATH=$(CLASS1) $(top_builddir)/runtime/mono-wrapper
36 RUNTIME2 = MONO_PATH=$(CLASS2) $(top_builddir)/runtime/mono-wrapper
37
38 MCS = $(RUNTIME) $(CLASS1)/mcs.exe -unsafe -nowarn:0162
39 GMCS = $(RUNTIME2) $(CLASS2)/gmcs.exe -unsafe -nowarn:0162
40 ILASM = $(RUNTIME) $(CLASS1)/ilasm.exe
41
42
43 AM_CFLAGS = \
44         -I$(top_srcdir)         \
45         $(LIBGC_CFLAGS)         \
46         $(GMODULE_CFLAGS)               \
47         $(GLIB_CFLAGS)
48         $(PLATFORM_CFLAGS) $(ARCH_CFLAGS)
49
50 if PLATFORM_WIN32
51 export HOST_CC
52 # The mingw math.h has "extern inline" functions that dont appear in libs, so
53 # optimisation is required to actually inline them
54 PLATFORM_CFLAGS = -O
55 endif
56
57 # hack for automake to have the same source file in a library and a bin
58 genmdesc_CFLAGS = $(AM_CFLAGS)
59
60 if NO_VERSION_SCRIPT
61 monoldflags=
62 monobinldflags=
63 else
64 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
65 monobinldflags=-Wl,-version-script=$(srcdir)/ldscript.mono
66 endif
67
68 if PLATFORM_WIN32
69 libmono_la_LDFLAGS=-no-undefined -version-info 1:0:0 $(monoldflags)
70 else
71 libmono_la_LDFLAGS=$(monoldflags)
72 endif
73
74 if JIT_SUPPORTED
75 bin_PROGRAMS = mono
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         $(GMODULE_LIBS) -lm     \
98         $(ICU_LIBS)
99
100 mono_LDFLAGS = \
101         $(static_flags) -export-dynamic $(monobinldflags)
102
103 genmdesc_SOURCES = \
104         mini.h          \
105         genmdesc.c      \
106         helpers.c
107
108 # Don't link this against libmonoruntime to speed up rebuilds
109 genmdesc_LDADD = \
110         $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
111         $(GLIB_LIBS)            \
112         $(GMODULE_LIBS)
113
114 x86_sources = \
115         mini-x86.c              \
116         mini-x86.h              \
117         exceptions-x86.c        \
118         tramp-x86.c                     \
119         mini-codegen.c          \
120         mini-trampolines.c
121
122 amd64_sources = \
123         mini-amd64.c            \
124         mini-amd64.h            \
125         exceptions-amd64.c      \
126         tramp-amd64.c           \
127         mini-codegen.c          \
128         mini-trampolines.c
129
130 ppc_sources = \
131         mini-ppc.c              \
132         mini-ppc.h              \
133         exceptions-ppc.c        \
134         tramp-ppc.c
135
136 arm_sources = \
137         mini-arm.c              \
138         mini-arm.h              \
139         exceptions-arm.c        \
140         tramp-arm.c             \
141         mini-codegen.c
142
143 sparc_sources = \
144         mini-sparc.c            \
145         mini-sparc.h            \
146         exceptions-sparc.c      \
147         tramp-sparc.c           \
148         mini-codegen.c          \
149         mini-trampolines.c
150
151 s390_sources = \
152         mini-s390.c             \
153         mini-s390.h             \
154         exceptions-s390.c       \
155         mini-codegen.c          \
156         tramp-s390.c
157
158 s390x_sources = \
159         mini-s390x.c            \
160         mini-s390x.h            \
161         exceptions-s390x.c      \
162         mini-codegen.c          \
163         tramp-s390x.c
164
165 ia64_sources = \
166         mini-ia64.c                     \
167         mini-ia64.h                     \
168         exceptions-ia64.c       \
169         tramp-ia64.c            \
170         mini-codegen.c          \
171         mini-trampolines.c
172
173 common_sources = \
174         mini.c          \
175         mini.h          \
176         jit-icalls.h \
177         jit-icalls.c \
178         trace.c         \
179         trace.h         \
180         mini-ops.h      \
181         mini-arch.h     \
182         dominators.c    \
183         cfold.c         \
184         regalloc.c      \
185         regalloc.h      \
186         helpers.c       \
187         liveness.c      \
188         ssa.c           \
189         abcremoval.c    \
190         abcremoval.h    \
191         ssapre.c        \
192         ssapre.h        \
193         aliasing.c      \
194         aliasing.h      \
195         local-propagation.c     \
196         ssapre-cee-ops.h \
197         ssapre-mini-ops.h \
198         driver.c        \
199         debug-mini.c    \
200         linear-scan.c   \
201         aot.c           \
202         graph.c         \
203         mini-exceptions.c       \
204         declsec.c       \
205         declsec.h       \
206         wapihandles.c   \
207         branch-opts.c
208
209 test_sources =          \
210         basic-calls.cs  \
211         basic-long.cs   \
212         bench.cs                \
213         objects.cs              \
214         arrays.cs               \
215         basic-float.cs  \
216         basic-math.cs   \
217         basic.cs                \
218         exceptions.cs   \
219         iltests.il              \
220         test.cs
221
222 test_sources2 = generics.2.cs
223
224 if MONO_DEBUGGER_SUPPORTED
225 mono_debugger_sources = debug-debugger.c debug-debugger.h
226 else
227 mono_debugger_sources =
228 endif
229
230 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
231 regtests2=generics.exe
232 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
233
234 if X86
235 arch_sources = \
236         $(x86_sources) $(mono_debugger_sources)
237 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
238 arch_built=cpu-pentium.h
239 endif
240
241 if AMD64
242 arch_sources = \
243         $(amd64_sources) $(mono_debugger_sources)
244 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
245 arch_built=cpu-amd64.h
246 endif
247
248 if POWERPC
249 arch_sources = \
250         $(ppc_sources)
251 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
252 arch_built=cpu-g4.h
253 endif
254
255 if ARM
256
257 # pick up arm_dpimacros.h and arm_fpamacros.h
258 ARCH_CFLAGS = -I../arch/arm
259
260 arch_sources = $(arm_sources)
261
262 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg
263 arch_built=cpu-arm.h
264 endif
265
266 if SPARC
267 arch_sources = \
268         $(sparc_sources)
269
270 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
271 arch_built=cpu-sparc.h
272 endif
273
274 if SPARC64
275 arch_sources = \
276         $(sparc_sources)
277
278 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
279 arch_built=cpu-sparc.h
280 endif
281
282 if S390
283 arch_sources = \
284         $(s390_sources)
285
286 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
287 arch_built=cpu-s390.h
288 endif
289
290 if S390x
291 arch_sources = \
292         $(s390x_sources)
293
294 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
295 arch_built=cpu-s390x.h
296 endif
297
298 if IA64
299 arch_sources = \
300     $(ia64_sources)
301
302 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
303 arch_built = cpu-ia64.h
304 endif
305
306 libmono_la_SOURCES = $(common_sources) $(arch_sources)
307
308 nodist_libmono_la_SOURCES = inssel.c inssel.h
309
310 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
311 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
312 libmono_static_la_LDFLAGS = -static
313 libmono_static_la_LIBADD = $(static_libs)
314
315 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
316
317 libmonoincludedir = $(includedir)/mono/jit
318
319 libmonoinclude_HEADERS = jit.h
320
321 libmono_la_LIBADD = \
322         $(libs)
323
324 %.exe: %.2.cs TestDriver.dll
325         $(GMCS) -out:$@ $< -r:TestDriver.dll 
326
327 %.exe: %.cs TestDriver.dll
328         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
329
330 %.exe: %.il
331         $(ILASM) -output=$@ $<
332
333 TestDriver.dll: $(srcdir)/TestDriver.cs
334         $(MCS) -out:$@ -target:library $<
335
336 if CROSS_COMPILING
337
338 cpu-pentium.h: cpu-pentium.md
339 cpu-amd64.h: cpu-amd64.md
340 cpu-g4.h: cpu-g4.md
341 cpu-arm.h: cpu-arm.md
342 cpu-sparc.h: cpu-sparc.md
343 cpu-s390.h: cpu-s390.md
344 cpu-s390x.h: cpu-s390x.md
345 cpu-ia64.h: cpu-ia64.md
346
347 ## Gross hack.  Making 'genmdesc' a host binary takes more effort
348 $(arch_built):
349         echo "*** please build $(arch_built) on a native build tree and copy it here"
350         exit 1
351
352 else !CROSS_COMPILING
353
354 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
355         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
356
357 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
358         ./genmdesc $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
359
360 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
361         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
362
363 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
364         ./genmdesc $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
365
366 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
367         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
368
369 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
370         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
371
372 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
373         ./genmdesc $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
374
375 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
376         ./genmdesc $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
377
378 endif !CROSS_COMPILING
379
380 inssel.c inssel.h: $(BURGSRC)
381         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
382
383 testi: mono test.exe
384         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
385
386 # ensure the tests are actually correct
387 checktests: $(regtests)
388         for i in $(regtests); do $(RUNTIME) $$i; done
389
390 checktests2: $(regtests2)
391         for i in $(regtests); do $(RUNTIME2) $$i; done
392
393 rcheck: mono $(regtests) $(regtests2)
394         $(RUNTIME) --regression $(regtests)
395         $(RUNTIME2) --regression $(regtests2)
396
397 aotcheck: mono $(regtests)
398         for i in $(regtests); do $(RUNTIME) --aot $$i; done
399         for i in $(regtests2); do $(RUNTIME2) --aot $$i; done
400         $(RUNTIME) --verbose --regression $(regtests)
401         $(RUNTIME2) --verbose --regression $(regtests2)
402         rm -f *.exe.so
403
404 bench: mono test.exe
405         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
406
407 mbench: test.exe
408         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
409
410 stat1: mono bench.exe
411         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
412         perl viewstat.pl stats.pl
413
414 stat2: mono basic.exe
415         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
416         perl viewstat.pl -e stats.pl
417
418 stat3: mono bench.exe
419         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
420         perl viewstat.pl stats.pl
421
422 docu: mini.sgm
423         docbook2txt mini.sgm
424
425 check-local: rcheck
426
427 clean-local:
428         rm -f mono a.out gmon.out *.o test.exe
429
430 pkgconfigdir = $(libdir)/pkgconfig
431
432 if JIT_SUPPORTED
433 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
434 endif
435
436 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
437 EXTRA_DIST = $(common_BURGSRC) cprop.c TestDriver.cs ldscript ldscript.mono \
438         $(test_sources) $(test_sources2) \
439         inssel-long.brg inssel-long32.brg \
440         $(x86_sources) inssel-x86.brg cpu-pentium.md \
441         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
442         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
443         $(arm_sources) inssel-arm.brg cpu-arm.md \
444         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
445         $(s390_sources) inssel-s390.brg cpu-s390.md \
446         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
447         $(ia64_sources) inssel-ia64.brg cpu-ia64.md