Remove some debugging bits.
[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 test_sources2 = generics.2.cs
222
223 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
224 regtests2=generics.exe
225 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-float.brg
226
227 if X86
228 libmono_la_SOURCES = \
229         $(common_sources) $(x86_sources)
230
231 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-x86.brg
232 arch_built=cpu-pentium.h
233 endif
234
235 if AMD64
236 libmono_la_SOURCES = \
237         $(common_sources) $(amd64_sources)
238 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-amd64.brg
239 arch_built=cpu-amd64.h
240 endif
241
242 if POWERPC
243 libmono_la_SOURCES = \
244         $(common_sources) $(ppc_sources)
245
246 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-ppc.brg
247 arch_built=cpu-g4.h
248 endif
249
250 if ARM
251
252 # pick up arm_dpimacros.h and arm_fpamacros.h
253 ARCH_CFLAGS = -I../arch/arm
254
255 libmono_la_SOURCES = \
256         $(common_sources) $(arm_sources)
257
258 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-arm.brg
259 arch_built=cpu-arm.h
260 endif
261
262 if SPARC
263 libmono_la_SOURCES = \
264         $(common_sources) $(sparc_sources)
265
266 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-sparc.brg
267 arch_built=cpu-sparc.h
268 endif
269
270 if SPARC64
271 libmono_la_SOURCES = \
272         $(common_sources) $(sparc_sources)
273
274 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-sparc.brg
275 arch_built=cpu-sparc.h
276 endif
277
278 if S390
279 libmono_la_SOURCES = \
280         $(common_sources) $(s390_sources)
281
282 arch_BURGSRC= $(srcdir)/inssel-long32.brg $(srcdir)/inssel-s390.brg
283 arch_built=cpu-s390.h
284 endif
285
286 if S390x
287 libmono_la_SOURCES = \
288         $(common_sources) $(s390x_sources)
289
290 arch_BURGSRC= $(srcdir)/inssel-long.brg $(srcdir)/inssel-s390x.brg
291 arch_built=cpu-s390x.h
292 endif
293
294 if IA64
295 libmono_la_SOURCES = \
296     $(common_sources) $(ia64_sources)
297
298 arch_BURGSRC = $(srcdir)/inssel-long.brg $(srcdir)/inssel-ia64.brg
299 arch_built = cpu-ia64.h
300 endif
301
302 nodist_libmono_la_SOURCES = inssel.c inssel.h
303
304 libmono_static_la_SOURCES = $(libmono_la_SOURCES)
305 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
306 libmono_static_la_LDFLAGS = -static
307 libmono_static_la_LIBADD = $(static_libs) $(PLATFORM_LIB)
308
309 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
310
311 libmonoincludedir = $(includedir)/mono/jit
312
313 libmonoinclude_HEADERS = jit.h
314
315 libmono_la_LIBADD = \
316         $(libs) \
317         $(PLATFORM_LIB)
318
319 %.exe: %.2.cs TestDriver.dll
320         $(GMCS) -out:$@ $< -r:TestDriver.dll 
321
322 %.exe: %.cs TestDriver.dll
323         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
324
325 %.exe: %.il
326         $(ILASM) -output=$@ $<
327
328 TestDriver.dll: $(srcdir)/TestDriver.cs
329         $(MCS) -out:$@ -target:library $<
330
331 if CROSS_COMPILING
332
333 cpu-pentium.h: cpu-pentium.md
334 cpu-amd64.h: cpu-amd64.md
335 cpu-g4.h: cpu-g4.md
336 cpu-arm.h: cpu-arm.md
337 cpu-sparc.h: cpu-sparc.md
338 cpu-s390.h: cpu-s390.md
339 cpu-s390x.h: cpu-s390x.md
340 cpu-ia64.h: cpu-ia64.md
341
342 ## Gross hack.  Making 'genmdesc' a host binary takes more effort
343 $(arch_built):
344         echo "*** please build $(arch_built) on a native build tree and copy it here"
345         exit 1
346
347 else !CROSS_COMPILING
348
349 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
350         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
351
352 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
353         ./genmdesc $(srcdir)/cpu-amd64.md cpu-amd64.h amd64_desc
354
355 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
356         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
357
358 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
359         ./genmdesc $(srcdir)/cpu-arm.md cpu-arm.h arm_cpu_desc
360
361 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
362         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
363
364 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
365         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390_cpu_desc
366
367 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
368         ./genmdesc $(srcdir)/cpu-s390x.md cpu-s390x.h s390x_cpu_desc
369
370 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
371         ./genmdesc $(srcdir)/cpu-ia64.md cpu-ia64.h ia64_desc
372
373 endif !CROSS_COMPILING
374
375 inssel.c inssel.h: $(BURGSRC)
376         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
377
378 testi: mono test.exe
379         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
380
381 # ensure the tests are actually correct
382 checktests: $(regtests)
383         for i in $(regtests); do $(RUNTIME) $$i; done
384
385 checktests2: $(regtests2)
386         for i in $(regtests); do $(RUNTIME2) $$i; done
387
388 rcheck: mono $(regtests) $(regtests2)
389         $(RUNTIME) --regression $(regtests)
390         $(RUNTIME2) --regression $(regtests2)
391
392 aotcheck: mono $(regtests)
393         for i in $(regtests); do $(RUNTIME) --aot $$i; done
394         for i in $(regtests2); do $(RUNTIME2) --aot $$i; done
395         $(RUNTIME) --verbose --regression $(regtests)
396         $(RUNTIME2) --verbose --regression $(regtests2)
397         rm -f *.exe.so
398
399 bench: mono test.exe
400         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
401
402 mbench: test.exe
403         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
404
405 stat1: mono bench.exe
406         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
407         perl viewstat.pl stats.pl
408
409 stat2: mono basic.exe
410         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
411         perl viewstat.pl -e stats.pl
412
413 stat3: mono bench.exe
414         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
415         perl viewstat.pl stats.pl
416
417 docu: mini.sgm
418         docbook2txt mini.sgm
419
420 check-local: rcheck
421
422 clean-local:
423         rm -f mono a.out gmon.out *.o test.exe
424
425 pkgconfigdir = $(libdir)/pkgconfig
426
427 if JIT_SUPPORTED
428 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
429 endif
430
431 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
432 EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript ldscript.mono \
433         $(test_sources) $(test_sources2) \
434         inssel-long.brg inssel-long32.brg \
435         $(x86_sources) inssel-x86.brg cpu-pentium.md \
436         $(amd64_sources) inssel-amd64.brg cpu-amd64.md \
437         $(ppc_sources) inssel-ppc.brg cpu-g4.md \
438         $(arm_sources) inssel-arm.brg cpu-arm.md \
439         $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
440         $(s390_sources) inssel-s390.brg cpu-s390.md \
441         $(s390x_sources) inssel-s390x.brg cpu-s390x.md \
442         $(ia64_sources) inssel-ia64.brg cpu-ia64.md