In mini:
[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 PLATFORM_LIB = ../os/libmonoos.la
58
59 # hack for automake to have the same source file in a library and a bin
60 genmdesc_CFLAGS = $(AM_CFLAGS)
61
62 if NO_VERSION_SCRIPT
63 monoldflags=
64 monobinldflags=
65 else
66 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
67 monobinldflags=-Wl,-version-script=$(srcdir)/ldscript.mono
68 endif
69
70 if PLATFORM_WIN32
71 libmono_la_LDFLAGS=-no-undefined -version-info 1:0:0 $(monoldflags)
72 else
73 libmono_la_LDFLAGS=$(monoldflags)
74 endif
75
76 if JIT_SUPPORTED
77 bin_PROGRAMS = mono
78
79 noinst_PROGRAMS = genmdesc
80
81 lib_LTLIBRARIES = libmono.la
82 noinst_LTLIBRARIES = libmono-static.la
83 endif
84
85 mono_SOURCES = \
86         main.c
87
88 if STATIC_MONO
89 # Link libmono into mono statically
90 # This leads to higher performance, especially with TLS
91 MONO_LIB=libmono-static.la
92 else 
93 MONO_LIB=libmono.la
94 endif
95
96 mono_LDADD = \
97         $(MONO_LIB)                     \
98         $(PLATFORM_LIB)         \
99         $(GLIB_LIBS)            \
100         $(GMODULE_LIBS) -lm     \
101         $(ICU_LIBS)
102
103 mono_LDFLAGS = \
104         $(static_flags) -export-dynamic $(monobinldflags)
105
106 genmdesc_SOURCES = \
107         mini.h          \
108         genmdesc.c      \
109         helpers.c
110
111 # Don't link this against libmonoruntime to speed up rebuilds
112 genmdesc_LDADD = \
113         $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
114         $(PLATFORM_LIB)         \
115         $(GLIB_LIBS)            \
116         $(GMODULE_LIBS)
117
118 x86_sources = \
119         mini-x86.c              \
120         mini-x86.h              \
121         exceptions-x86.c        \
122         tramp-x86.c                     \
123         mini-codegen.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-codegen.c          \
132         mini-trampolines.c
133
134 ppc_sources = \
135         mini-ppc.c              \
136         mini-ppc.h              \
137         exceptions-ppc.c        \
138         tramp-ppc.c
139
140 arm_sources = \
141         mini-arm.c              \
142         mini-arm.h              \
143         exceptions-arm.c        \
144         tramp-arm.c             \
145         mini-codegen.c
146
147 sparc_sources = \
148         mini-sparc.c            \
149         mini-sparc.h            \
150         exceptions-sparc.c      \
151         tramp-sparc.c           \
152         mini-codegen.c          \
153         mini-trampolines.c
154
155 s390_sources = \
156         mini-s390.c             \
157         mini-s390.h             \
158         exceptions-s390.c       \
159         mini-codegen.c          \
160         tramp-s390.c
161
162 s390x_sources = \
163         mini-s390x.c            \
164         mini-s390x.h            \
165         exceptions-s390x.c      \
166         tramp-s390x.c
167
168 ia64_sources = \
169         mini-ia64.c                     \
170         mini-ia64.h                     \
171         exceptions-ia64.c       \
172         tramp-ia64.c            \
173         mini-codegen.c          \
174         mini-trampolines.c
175
176 common_sources = \
177         mini.c          \
178         mini.h          \
179         trace.c         \
180         trace.h         \
181         mini-ops.h      \
182         mini-arch.h     \
183         dominators.c    \
184         cfold.c         \
185         regalloc.c      \
186         regalloc.h      \
187         helpers.c       \
188         liveness.c      \
189         ssa.c           \
190         abcremoval.c    \
191         abcremoval.h    \
192         ssapre.c        \
193         ssapre.h        \
194         aliasing.c      \
195         aliasing.h      \
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         branch-opts.c
207
208 test_sources =          \
209         basic-calls.cs  \
210         basic-long.cs   \
211         bench.cs                \
212         objects.cs              \
213         arrays.cs               \
214         basic-float.cs  \
215         basic-math.cs   \
216         basic.cs                \
217         exceptions.cs   \
218         iltests.il              \
219         test.cs
220
221 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
222 regtests2=generics.exe
223 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
224
225 if X86
226 libmono_la_SOURCES = \
227         $(common_sources) $(x86_sources)
228
229 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
230 arch_built=cpu-pentium.h
231 endif
232
233 if AMD64
234 libmono_la_SOURCES = \
235         $(common_sources) $(amd64_sources)
236 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
237 arch_built=cpu-amd64.h
238 endif
239
240 if POWERPC
241 libmono_la_SOURCES = \
242         $(common_sources) $(ppc_sources)
243
244 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
245 arch_built=cpu-g4.h
246 endif
247
248 if ARM
249
250 # pick up arm_dpimacros.h and arm_fpamacros.h
251 ARCH_CFLAGS = -I../arch/arm
252
253 libmono_la_SOURCES = \
254         $(common_sources) $(arm_sources)
255
256 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg
257 arch_built=cpu-arm.h
258 endif
259
260 if SPARC
261 libmono_la_SOURCES = \
262         $(common_sources) $(sparc_sources)
263
264 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
265 arch_built=cpu-sparc.h
266 endif
267
268 if SPARC64
269 libmono_la_SOURCES = \
270         $(common_sources) $(sparc_sources)
271
272 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
273 arch_built=cpu-sparc.h
274 endif
275
276 if S390
277 libmono_la_SOURCES = \
278         $(common_sources) $(s390_sources)
279
280 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
281 arch_built=cpu-s390.h
282 endif
283
284 if S390x
285 libmono_la_SOURCES = \
286         $(common_sources) $(s390x_sources)
287
288 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
289 arch_built=cpu-s390x.h
290 endif
291
292 if IA64
293 libmono_la_SOURCES = \
294     $(common_sources) $(ia64_sources)
295
296 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
297 arch_built = cpu-ia64.h
298 endif
299
300 nodist_libmono_la_SOURCES = inssel.c inssel.h
301
302 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
303 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
304 libmono_static_la_LDFLAGS = -static
305 libmono_static_la_LIBADD = $(static_libs) $(PLATFORM_LIB)
306
307 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
308
309 libmonoincludedir = $(includedir)/mono/jit
310
311 libmonoinclude_HEADERS = jit.h
312
313 libmono_la_LIBADD = \
314         $(libs) \
315         $(PLATFORM_LIB)
316
317 %.exe: %.2.cs TestDriver.dll
318         $(GMCS) -out:$@ $< -r:TestDriver.dll 
319
320 %.exe: %.cs TestDriver.dll
321         $(MCS) /out:$*.exe /unsafe $< /r:TestDriver.dll
322
323 %.exe: %.il
324         $(ILASM) /output=$*.exe $<
325
326 TestDriver.dll: $(srcdir)/TestDriver.cs
327         $(MCS) /out:TestDriver.dll /target:library $(srcdir)/TestDriver.cs
328
329 if CROSS_COMPILING
330
331 cpu-pentium.h: cpu-pentium.md
332 cpu-amd64.h: cpu-amd64.md
333 cpu-g4.h: cpu-g4.md
334 cpu-arm.h: cpu-arm.md
335 cpu-sparc.h: cpu-sparc.md
336 cpu-s390.h: cpu-s390.md
337 cpu-s390x.h: cpu-s390x.md
338 cpu-ia64.h: cpu-ia64.md
339
340 ## Gross hack.  Making 'genmdesc' a host binary takes more effort
341 $(arch_built):
342         echo "*** please build $(arch_built) on a native build tree and copy it here"
343         exit 1
344
345 else !CROSS_COMPILING
346
347 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
348         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
349
350 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
351         ./genmdesc $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
352
353 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
354         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
355
356 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
357         ./genmdesc $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
358
359 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
360         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
361
362 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
363         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
364
365 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
366         ./genmdesc $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
367
368 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
369         ./genmdesc $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
370
371 endif !CROSS_COMPILING
372
373 inssel.c inssel.h: $(BURGSRC)
374         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
375
376 testi: mono test.exe
377         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
378
379 # ensure the tests are actually correct
380 checktests: $(regtests)
381         for i in $(regtests); do $(RUNTIME) $$i; done
382
383 checktests2: $(regtests2)
384         for i in $(regtests); do $(RUNTIME2) $$i; done
385
386 rcheck: mono $(regtests) $(regtests2)
387         $(RUNTIME) --regression $(regtests)
388         $(RUNTIME2) --regression $(regtests2)
389
390 aotcheck: mono $(regtests)
391         for i in $(regtests); do $(RUNTIME) --aot $$i; done
392         for i in $(regtests2); do $(RUNTIME2) --aot $$i; done
393         $(RUNTIME) --verbose --regression $(regtests)
394         $(RUNTIME2) --verbose --regression $(regtests2)
395         rm -f *.exe.so
396
397 bench: mono test.exe
398         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
399
400 mbench: test.exe
401         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
402
403 stat1: mono bench.exe
404         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
405         perl viewstat.pl stats.pl
406
407 stat2: mono basic.exe
408         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
409         perl viewstat.pl -e stats.pl
410
411 stat3: mono bench.exe
412         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
413         perl viewstat.pl stats.pl
414
415 docu: mini.sgm
416         docbook2txt mini.sgm
417
418 check-local: rcheck
419
420 clean-local:
421         rm -f mono a.out gmon.out *.o test.exe
422
423 pkgconfigdir = $(libdir)/pkgconfig
424
425 if JIT_SUPPORTED
426 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
427 endif
428
429 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
430 EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript ldscript.mono $(test_sources) \
431         inssel-long.brg inssel-long32.brg \
432         $(x86_sources) inssel-x86.brg cpu-pentium.md \
433         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
434         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
435         $(arm_sources) inssel-arm.brg cpu-arm.md \
436         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
437         $(s390_sources) inssel-s390.brg cpu-s390.md \
438         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
439         $(ia64_sources) inssel-ia64.brg cpu-ia64.md