Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / mini / Makefile.am
1 count=100000
2 mtest=for_loop
3 monodir=$(top_builddir)
4 libs=   \
5         $(monodir)/mono/metadata/libmonoruntime.la      \
6         $(monodir)/mono/metadata/libmetadata.la \
7         $(monodir)/mono/io-layer/libwapi.la     \
8         $(monodir)/mono/utils/libmonoutils.la \
9         $(LIBGC_LIBS)   \
10         $(ICU_LIBS)
11
12 MCS=mcs
13 RUNTIME=mono
14
15 INCLUDES = \
16         -I$(top_srcdir)         \
17         $(LIBGC_CFLAGS)         \
18         $(GMODULE_CFLAGS)               \
19         $(GLIB_CFLAGS)
20
21 if PLATFORM_WIN32
22 export HOST_CC
23 # The mingw math.h has "extern inline" functions that dont appear in libs, so
24 # optimisation is required to actually inline them
25 AM_CFLAGS = -O
26 endif
27
28 # hack for automake to have the same source file in a library and a bin
29 genmdesc_CFLAGS = $(AM_CFLAGS)
30
31 if NO_VERSION_SCRIPT
32 monoldflags=
33 else
34 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
35 endif
36 libmono_la_LDFLAGS=$(monoldflags)
37
38 if JIT_SUPPORTED
39 bin_PROGRAMS = mono
40
41 noinst_PROGRAMS = genmdesc
42
43 lib_LTLIBRARIES = libmono.la
44 endif
45
46 mono_SOURCES = \
47         main.c
48
49 mono_LDADD = \
50         libmono.la              \
51         $(GLIB_LIBS)            \
52         $(GMODULE_LIBS) -lm     \
53         $(ICU_LIBS)
54
55 mono_LDFLAGS = \
56         -export-dynamic
57
58 genmdesc_SOURCES = \
59         mini.h          \
60         genmdesc.c      \
61         helpers.c
62
63 genmdesc_LDADD = \
64         $(libs) -lm     \
65         $(GLIB_LIBS)            \
66         $(GMODULE_LIBS)
67
68 x86_sources = \
69     mini-exceptions.c   \
70         mini-x86.c              \
71         mini-x86.h              \
72         exceptions-x86.c        \
73         tramp-x86.c
74
75 ppc_sources = \
76         mini-ppc.c              \
77         mini-ppc.h              \
78         exceptions-ppc.c        \
79         tramp-ppc.c
80
81 sparc_sources = \
82         mini-sparc.c            \
83         mini-sparc.h            \
84     mini-exceptions.c   \
85         exceptions-sparc.c      \
86         tramp-sparc.c
87
88 s390_sources = \
89         mini-s390.c             \
90         mini-s390.h             \
91         exceptions-s390.c       \
92         tramp-s390.c
93
94 common_sources = \
95         mini.c          \
96         mini.h          \
97         trace.c         \
98         trace.h         \
99         mini-ops.h      \
100         mini-arch.h     \
101         dominators.c    \
102         cfold.c         \
103         regalloc.c      \
104         regalloc.h      \
105         inssel.c        \
106         inssel.h        \
107         helpers.c       \
108         liveness.c      \
109         ssa.c           \
110         driver.c        \
111         debug-mini.c    \
112         linear-scan.c   \
113         aot.c           \
114         graph.c 
115
116 test_sources =          \
117         basic-calls.cs  \
118         basic-long.cs   \
119         bench.cs                \
120         objects.cs              \
121         arrays.cs               \
122         basic-float.cs  \
123         basic.cs                \
124         exceptions.cs   \
125         iltests.il              \
126         test.cs
127
128 regtests=basic.exe arrays.exe basic-float.exe basic-long.exe objects.exe basic-calls.exe iltests.exe exceptions.exe bench.exe
129
130 common_BURGSRC= $(srcdir)/inssel.brg $(srcdir)/inssel-long32.brg $(srcdir)/inssel-float.brg
131
132 if X86
133 libmono_la_SOURCES = \
134         $(common_sources) $(x86_sources)
135
136 arch_BURGSRC= $(srcdir)/inssel-x86.brg
137 arch_built=cpu-pentium.h
138 endif
139
140 if POWERPC
141 libmono_la_SOURCES = \
142         $(common_sources) $(ppc_sources)
143
144 arch_BURGSRC= $(srcdir)/inssel-ppc.brg
145 arch_built=cpu-g4.h
146 endif
147
148 if SPARC
149 libmono_la_SOURCES = \
150         $(common_sources) $(sparc_sources)
151
152 arch_BURGSRC= $(srcdir)/inssel-sparc.brg
153 arch_built=cpu-sparc.h
154 endif
155
156 if S390
157 libmono_la_SOURCES = \
158         $(common_sources) $(s390_sources)
159
160 arch_BURGSRC= $(srcdir)/inssel-s390.brg
161 arch_built=cpu-s390.h
162 endif
163
164 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
165
166 libmonoincludedir = $(includedir)/mono/jit
167
168 libmonoinclude_HEADERS = jit.h
169
170 libmono_la_LIBADD = \
171         $(libs)
172
173 %.exe: %.cs TestDriver.dll
174         $(MCS) /unsafe $< /r:TestDriver.dll
175
176 %.exe: %.il
177         ilasm /output=$*.exe $<
178
179 TestDriver.dll: TestDriver.cs
180         $(MCS) /out:TestDriver.dll /target:library TestDriver.cs
181
182 cpu-pentium.h: cpu-pentium.md genmdesc$(EXEEXT)
183         ./genmdesc $(srcdir)/cpu-pentium.md cpu-pentium.h pentium_desc
184
185 cpu-g4.h: cpu-g4.md genmdesc$(EXEEXT)
186         ./genmdesc $(srcdir)/cpu-g4.md cpu-g4.h ppcg4
187
188 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
189         ./genmdesc $(srcdir)/cpu-sparc.md cpu-sparc.h sparc_desc
190
191 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
192         ./genmdesc $(srcdir)/cpu-s390.md cpu-s390.h s390
193
194 inssel.c inssel.h: $(BURGSRC)
195         $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
196
197 testi: mono test.exe
198         ./mono -v -v --ncompile 1 --compile Test:$(mtest) test.exe
199
200 # ensure the tests are actually correct
201 checktests: $(regtests)
202         for i in $(regtests); do $(RUNTIME) $$i; done
203
204 rcheck: mono $(regtests)
205         ./mono --regression $(regtests)
206
207 aotcheck: mono $(regtests)
208         for i in $(regtests); do ./mono --aot $$i; done
209         ./mono --verbose --regression $(regtests)
210         rm -f *.exe.so
211
212 bench: mono test.exe
213         time ./mono --ncompile $(count) --compile Test:$(mtest) test.exe
214
215 mbench: test.exe
216         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
217
218 stat1: mono bench.exe
219         ./mono --verbose --statfile stats.pl --regression bench.exe
220         perl viewstat.pl stats.pl
221
222 stat2: mono basic.exe
223         ./mono --verbose --statfile stats.pl --regression basic.exe
224         perl viewstat.pl -e stats.pl
225
226 stat3: mono bench.exe
227         ./mono --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
228         perl viewstat.pl stats.pl
229
230 docu: mini.sgm
231         docbook2txt mini.sgm
232
233 clean:
234         rm -f mono a.out gmon.out *.o test.exe
235
236 pkgconfigdir = $(libdir)/pkgconfig
237
238 if JIT_SUPPORTED
239 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
240 endif
241
242 CLEANFILES= $(BUILT_SOURCES)
243 EXTRA_DIST = $(common_BURGSRC) inssel-x86.brg inssel-ppc.brg inssel-s390.brg \
244         $(x86_sources) $(ppc_sources) $(sparc_sources) $(test_sources) \
245         jit-icalls.c cprop.c inssel-sparc.brg \
246         cpu-pentium.md cpu-g4.md ldscript cpu-sparc.md cpu-s390.md TestDriver.cs
247
248