5e68273c645802bda1d003397f4fc15f0e7f8e28
[mono.git] / mono / mini / Makefile.am.in
1 count=100000
2 mtest=for_loop
3 monodir=$(top_builddir)
4 mono=$(if $(MONO_EXECUTABLE),$(MONO_EXECUTABLE),mono)
5
6 if HOST_WIN32
7 PLATFORM_PATH_SEPARATOR=;
8 else
9 PLATFORM_PATH_SEPARATOR=:
10 endif
11
12 # This is needed for automake dependency generation
13 if SUPPORT_NULLGC
14 libgc_libs=
15 libgc_static_libs=
16 else
17 libgc_libs=$(monodir)/libgc/libmonogc.la
18 libgc_static_libs=$(monodir)/libgc/libmonogc-static.la
19 endif
20
21 boehm_libs=     \
22         $(monodir)/mono/metadata/libmonoruntime.la      \
23         $(monodir)/mono/utils/libmonoutils.la \
24         $(GLIB_LIBS) $(LIBICONV) \
25         $(libgc_libs)
26
27 sgen_libs = \
28         $(monodir)/mono/metadata/libmonoruntimesgen.la  \
29         $(monodir)/mono/sgen/libmonosgen.la     \
30         $(monodir)/mono/utils/libmonoutils.la \
31         $(GLIB_LIBS) $(LIBICONV)
32
33 boehm_static_libs=      \
34         $(monodir)/mono/metadata/libmonoruntime-static.la       \
35         $(monodir)/mono/utils/libmonoutils.la \
36         $(GLIB_LIBS) $(LIBICONV) \
37         $(libgc_static_libs)
38
39 sgen_static_libs = \
40         $(monodir)/mono/metadata/libmonoruntimesgen-static.la   \
41         $(monodir)/mono/sgen/libmonosgen-static.la      \
42         $(monodir)/mono/utils/libmonoutils.la \
43         $(GLIB_LIBS) $(LIBICONV)
44
45 if FULL_AOT_TESTS
46 # if the tests are going to run with framework assemblies compiled with
47 # -d:MOBILE, tell the runtime to remap framework assemblies using the mobile
48 # runtime info
49 MOBILE_RUNTIME_ARG=--runtime=mobile
50 else
51 MOBILE_RUNTIME_ARG=
52 endif
53
54 CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
55
56 RUNTIME_EXECUTABLE = $(if $(BOEHM),$(top_builddir)/mono/mini/mono-boehm,$(top_builddir)/runtime/mono-wrapper)
57
58 MINI_RUNTIME = MONO_PATH=$(CLASS) $(RUNTIME_EXECUTABLE) $(MOBILE_RUNTIME_ARG)
59 TOOLS_RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/build $(top_builddir)/runtime/mono-wrapper
60 INTERP_RUNTIME = $(MINI_RUNTIME) --interpreter
61 RUNTIME_AOTCHECK = MONO_PATH="$(CLASS)$(PLATFORM_PATH_SEPARATOR)." $(RUNTIME_EXECUTABLE)
62
63 MCS = CSC_SDK_PATH_DISABLED= $(TOOLS_RUNTIME) $(CSC) -unsafe -nowarn:0162 -nologo -noconfig -r:$(CLASS)/mscorlib.dll -r:$(CLASS)/System.dll -r:$(CLASS)/System.Core.dll
64 ILASM = $(TOOLS_RUNTIME) $(mcs_topdir)/class/lib/build/ilasm.exe
65
66 AM_CFLAGS = \
67         -I$(top_srcdir)         \
68         $(GLIB_CFLAGS)          \
69         $(LLVM_CFLAGS)          \
70         $(PLATFORM_CFLAGS) $(ARCH_CFLAGS) $(SHARED_CFLAGS)
71
72 AM_CXXFLAGS = $(LLVM_CXXFLAGS) $(GLIB_CFLAGS)
73
74 if HOST_WIN32
75 export HOST_CC
76 # The mingw math.h has "extern inline" functions that dont appear in libs, so
77 # optimisation is required to actually inline them
78 PLATFORM_CFLAGS = -O
79 endif
80
81 # hack for automake to have the same source file in a library and a bin
82 genmdesc_CFLAGS = $(AM_CFLAGS)
83
84 monoldflags=$(export_ldflags)
85 monobinldflags=$(export_ldflags) $(extra_runtime_ldflags)
86
87 if HOST_WIN32
88 libmonoldflags=-no-undefined -avoid-version -Wl,--kill-at $(monoldflags)
89 else
90 if PLATFORM_ANDROID
91 libmonoldflags= -avoid-version $(monoldflags)
92 else
93 libmonoldflags=$(monoldflags) -version-info 1:0:0
94 endif
95 endif
96
97 if SUPPORT_SGEN
98 sgen_binaries = mono-sgen
99 sgen_libraries = libmonosgen-2.0.la
100 sgen_static_libraries = libmini-static.la $(sgen_static_libs)
101 endif
102
103 if SUPPORT_BOEHM
104 boehm_libraries = libmonoboehm-2.0.la
105 boehm_static_libraries = libmini-static.la $(boehm_static_libs)
106 boehm_binaries  = mono-boehm
107 endif
108
109 if SUPPORT_SGEN
110 mono_bin_suffix = sgen
111 libmono_suffix = sgen
112 else
113 mono_bin_suffix = boehm
114 libmono_suffix = boehm
115 endif
116
117 if DISABLE_EXECUTABLES
118 else
119 mono: mono-$(mono_bin_suffix)
120         ln -sf $< $@
121
122 mono.exe: mono-$(mono_bin_suffix).exe
123         ln -sf $< $@
124
125 install-exec-hook:
126         (cd $(DESTDIR)$(bindir) && ln -sf mono-$(mono_bin_suffix) mono)
127         (cd $(DESTDIR)$(libdir); shopt -s nullglob 2>/dev/null; for i in libmono$(libmono_suffix)*; do ln -sf $$i `echo $$i | sed s/$(libmono_suffix)//` ; done)
128 endif
129
130 if DISABLE_EXECUTABLES
131 else
132 if HOST_WIN32
133 bin_PROGRAMS = $(boehm_binaries) $(sgen_binaries) monow
134 else
135 bin_PROGRAMS = $(boehm_binaries) $(sgen_binaries)
136 endif
137 endif
138
139 if DISABLE_EXECUTABLES
140 noinst_PROGRAMS = genmdesc
141 else
142 noinst_PROGRAMS = genmdesc mono
143 endif
144
145 if DISABLE_EXECUTABLES
146 shared_libraries = $(boehm_libraries) $(sgen_libraries)
147 else
148 if SHARED_MONO
149 shared_libraries = $(boehm_libraries) $(sgen_libraries)
150 endif
151 endif
152
153 lib_LTLIBRARIES = $(shared_libraries)
154
155 if SHARED_MONO
156 mini_common_lib = libmini.la
157 else
158 mini_common_lib = 
159 endif
160
161 if DISABLE_EXECUTABLES
162 noinst_LTLIBRARIES = $(mini_common_lib)
163 else
164 noinst_LTLIBRARIES = $(mini_common_lib) libmini-static.la
165 endif
166
167 if LOADED_LLVM
168 lib_LTLIBRARIES += libmono-llvm.la
169 libmono_llvm_la_SOURCES = mini-llvm.c mini-llvm-cpp.cpp llvm-jit.cpp
170 libmono_llvm_la_LIBADD = $(GLIB_LIBS) $(LLVM_LIBS) $(LLVM_LDFLAGS)
171 if PLATFORM_DARWIN
172 libmono_llvm_la_LDFLAGS=-Wl,-undefined -Wl,suppress -Wl,-flat_namespace
173 else
174 libmono_llvm_la_LIBADD += $(top_builddir)/mono/mini/libmonoboehm-$(API_VER).la $(boehm_libs)
175 endif
176 endif
177
178 mono_boehm_SOURCES = \
179         main.c
180
181 mono_CFLAGS = $(AM_CFLAGS)
182
183 mono_boehm_CFLAGS = $(AM_CFLAGS)
184
185 AM_CPPFLAGS = $(LIBGC_CPPFLAGS)
186
187 mono_sgen_SOURCES = \
188         main-sgen.c
189
190 mono_SOURCES = \
191         main-sgen.c
192
193 mono_sgen_CFLAGS = $(AM_CFLAGS)
194
195 # We build this after libmono was built so it contains the date when the final
196 # link was done
197 if SUPPORT_BOEHM
198 if DISABLE_EXECUTABLES
199 buildver-boehm.h: libmini-static.la $(monodir)/mono/metadata/libmonoruntime.la
200 else
201 buildver-boehm.h: libmini-static.la $(monodir)/mono/metadata/libmonoruntime-static.la
202 endif
203         @echo "const char *build_date = \"`date`\";" > buildver-boehm.h
204 mono_boehm-main.$(OBJEXT): buildver-boehm.h
205 endif
206
207 if DISABLE_EXECUTABLES
208 buildver-sgen.h: libmini-static.la $(monodir)/mono/metadata/libmonoruntimesgen.la $(monodir)/mono/sgen/libmonosgen.la
209 else
210 buildver-sgen.h: libmini-static.la $(monodir)/mono/metadata/libmonoruntimesgen-static.la $(monodir)/mono/sgen/libmonosgen-static.la
211 endif
212         @echo "const char *build_date = \"`date`\";" > buildver-sgen.h
213 mono_sgen-main-sgen.$(OBJEXT): buildver-sgen.h
214 main-sgen.$(OBJEXT): buildver-sgen.h
215
216 if DTRACE_G_REQUIRED
217 LIBMONO_DTRACE_OBJECT = .libs/mono-dtrace.$(OBJEXT)
218 if STATIC_MONO
219 MONO_DTRACE_OBJECT = mono-dtrace.$(OBJEXT)
220 else
221 MONO_DTRACE_OBJECT = 
222 endif
223 else
224 MONO_DTRACE_OBJECT = 
225 LIBMONO_DTRACE_OBJECT = 
226 endif
227
228 if STATIC_MONO
229 # Link libmono into mono statically
230 # This leads to higher performance, especially with TLS
231 MONO_LIB=$(boehm_static_libraries)
232 MONO_SGEN_LIB=$(sgen_static_libraries)
233 else 
234 MONO_LIB=libmonoboehm-2.0.la
235 MONO_SGEN_LIB=libmonosgen-2.0.la
236 endif
237
238 if LOADED_LLVM
239 LLVMMONOF=
240 else
241 LLVMMONOF=$(LLVM_LIBS) $(LLVM_LDFLAGS)
242 endif
243
244 mono_boehm_LDADD = \
245         $(MONO_LIB)             \
246         $(GLIB_LIBS)            \
247         $(LLVMMONOF)            \
248         $(LIBICONV)             \
249         -lm                     \
250         $(MONO_DTRACE_OBJECT)
251
252 mono_boehm_LDFLAGS = \
253         $(static_flags) -export-dynamic $(monobinldflags) $(monobin_platform_ldflags)
254
255 mono_sgen_LDADD = \
256         $(MONO_SGEN_LIB)        \
257         $(GLIB_LIBS)            \
258         $(LLVMMONOF)            \
259         $(LIBICONV)             \
260         -lm                     \
261         $(MONO_DTRACE_OBJECT)
262
263 mono_sgen_LDFLAGS = $(static_flags) -export-dynamic $(monobinldflags) $(monobin_platform_ldflags)
264
265 if BITCODE
266 libmonoldflags += -no-undefined
267 endif
268
269 # if SUPPORT_SGEN
270
271 # mono_LDADD = $(mono_sgen_LDADD)
272 # mono_LDFLAGS = $(mono_sgen_LDFLAGS)
273
274 # endif
275
276
277 if DTRACE_G_REQUIRED
278
279 mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime-static.la
280         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
281         $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime-static.la mini.lo
282
283 .libs/mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime.la
284         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
285         --pic $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime.la mini.lo
286
287 endif
288
289 # Create monow.exe, linked for the 'windows' subsystem
290 if HOST_WIN32
291 if SUPPORT_BOEHM
292 monow_LDADD = $(mono_boehm_LDADD)
293 monow_LDFLAGS = $(mono_boehm_LDFLAGS) -mwindows
294 monow_SOURCES = $(mono_boehm_SOURCES)
295 else
296 monow_LDADD = $(mono_sgen_LDADD)
297 monow_LDFLAGS = $(mono_sgen_LDFLAGS) -mwindows
298 monow_SOURCES = $(mono_sgen_SOURCES)
299 endif
300 endif
301
302 genmdesc_SOURCES = \
303         mini.h          \
304         seq-points.h    \
305         genmdesc.c      \
306         helpers.c       \
307         ../metadata/opcodes.c
308
309 # Don't link this against libmonoruntime to speed up rebuilds
310 genmdesc_LDADD = \
311         $(monodir)/mono/utils/libmonoutils.la -lm       \
312         $(GLIB_LIBS)                                    \
313         $(LIBICONV)
314
315 x86_sources = \
316         mini-x86.c              \
317         mini-x86.h              \
318         exceptions-x86.c        \
319         tramp-x86.c     \
320         mini-x86-gsharedvt.c    \
321         tramp-x86-gsharedvt.c
322
323 amd64_sources = \
324         mini-amd64.c            \
325         mini-amd64.h            \
326         exceptions-amd64.c      \
327         tramp-amd64.c   \
328         mini-amd64-gsharedvt.c  \
329         mini-amd64-gsharedvt.h  \
330         tramp-amd64-gsharedvt.c
331
332 ppc_sources = \
333         mini-ppc.c              \
334         mini-ppc.h              \
335         exceptions-ppc.c        \
336         tramp-ppc.c
337
338 arm_sources = \
339         mini-arm.c              \
340         mini-arm.h              \
341         exceptions-arm.c        \
342         tramp-arm.c     \
343         mini-arm-gsharedvt.c    \
344         tramp-arm-gsharedvt.c
345
346 arm64_sources = \
347         mini-arm64.c            \
348         mini-arm64.h            \
349         exceptions-arm64.c      \
350         tramp-arm64.c   \
351         mini-arm64-gsharedvt.c  \
352         mini-arm64-gsharedvt.h  \
353         tramp-arm64-gsharedvt.c
354
355 mips_sources = \
356         mini-mips.c             \
357         mini-mips.h             \
358         exceptions-mips.c       \
359         tramp-mips.c
360
361 sparc_sources = \
362         mini-sparc.c            \
363         mini-sparc.h            \
364         exceptions-sparc.c      \
365         tramp-sparc.c
366
367 s390x_sources = \
368         mini-s390x.c            \
369         mini-s390x.h            \
370         support-s390x.h         \
371         exceptions-s390x.c      \
372         tramp-s390x.c
373
374 darwin_sources = \
375         mini-darwin.c
376
377 windows_sources = \
378         mini-windows.c \
379         mini-windows.h \
380         mini-windows-dllmain.c \
381         mini-windows-dlldac.c
382
383 posix_sources = \
384         mini-posix.c
385
386 if ENABLE_LLVM
387 if LOADED_LLVM
388 llvm_sources = \
389         mini-llvm-loaded.c
390 else
391 llvm_sources = \
392         mini-llvm.c             \
393         mini-llvm-loaded.c \
394         mini-llvm-cpp.cpp \
395         llvm-jit.cpp
396 endif
397 endif
398
399 if ENABLE_INTERPRETER
400 interp_sources =        \
401         interp/hacks.h          \
402         interp/interp.h \
403         interp/interp-internals.h       \
404         interp/interp.c \
405         interp/mintops.h        \
406         interp/mintops.def      \
407         interp/mintops.c        \
408         interp/transform.c
409 else
410 interp_sources = \
411         interp/interp-stubs.c
412 endif
413
414 if ENABLE_LLVM
415 llvm_runtime_sources = \
416         llvm-runtime.cpp
417 else
418 if ENABLE_LLVM_RUNTIME
419 llvm_runtime_sources = \
420         llvm-runtime.cpp
421 endif
422 endif
423
424 common_sources = \
425         mini.c                  \
426         mini-runtime.c  \
427         seq-points.c    \
428         seq-points.h    \
429         ir-emit.h               \
430         method-to-ir.c          \
431         cfgdump.h               \
432         cfgdump.c               \
433         decompose.c             \
434         mini.h                  \
435         version.h               \
436         optflags-def.h          \
437         jit-icalls.h            \
438         jit-icalls.c            \
439         trace.c                 \
440         trace.h                 \
441         patch-info.h            \
442         mini-ops.h              \
443         mini-arch.h             \
444         dominators.c            \
445         cfold.c                 \
446         regalloc.h              \
447         helpers.c               \
448         liveness.c              \
449         ssa.c                   \
450         abcremoval.c            \
451         abcremoval.h            \
452         local-propagation.c     \
453         driver.c                \
454         debug-mini.c            \
455         linear-scan.c           \
456         aot-compiler.h          \
457         aot-compiler.c          \
458         aot-runtime.c           \
459         graph.c                 \
460         mini-codegen.c          \
461         mini-exceptions.c       \
462         mini-trampolines.c      \
463         branch-opts.c           \
464         mini-generic-sharing.c  \
465         simd-methods.h          \
466         tasklets.c              \
467         tasklets.h              \
468         simd-intrinsics.c       \
469         mini-native-types.c \
470         mini-unwind.h           \
471         unwind.c                \
472         image-writer.h          \
473         image-writer.c          \
474         dwarfwriter.h           \
475         dwarfwriter.c           \
476         mini-gc.h               \
477         mini-gc.c               \
478         debugger-agent.h        \
479         debugger-agent.c        \
480         xdebug.c                        \
481         mini-llvm.h                     \
482         mini-llvm-cpp.h \
483         llvm-jit.h              \
484         alias-analysis.c        \
485         mini-cross-helpers.c \
486         arch-stubs.c            \
487         llvm-runtime.h  \
488         type-checking.c \
489         lldb.h                  \
490         lldb.c  \
491         memory-access.c
492
493 test_sources =                  \
494         basic-calls.cs          \
495         basic-long.cs           \
496         bench.cs                \
497         builtin-types.cs        \
498         objects.cs              \
499         arrays.cs               \
500         basic-float.cs          \
501         basic-math.cs           \
502         basic.cs                \
503         exceptions.cs           \
504         devirtualization.cs     \
505         iltests.il              \
506         test.cs                 \
507         generics.cs             \
508         generics-variant-types.il\
509         basic-simd.cs \
510         basic-vectors.cs \
511         aot-tests.cs \
512         gc-test.cs \
513         gshared.cs \
514         unaligned.cs    \
515         MemoryIntrinsics.il     \
516         mixed.cs
517
518 regtests_UNIVERSAL = \
519         basic.exe \
520         basic-float.exe \
521         basic-long.exe \
522         basic-calls.exe \
523         builtin-types.exe \
524         objects.exe \
525         arrays.exe \
526         basic-math.exe \
527         exceptions.exe \
528         iltests.exe \
529         devirtualization.exe \
530         generics.exe \
531         basic-simd.exe \
532         unaligned.exe   \
533         basic-vectors.exe
534
535 regtests_DISABLED = 
536
537 if FULL_AOT_TESTS
538 regtests_DISABLED += builtin-types.exe
539 endif
540
541 regtests = $(filter-out $(regtests_DISABLED),$(regtests_UNIVERSAL))
542
543 if X86
544 arch_sources = $(x86_sources)
545 arch_built=cpu-x86.h
546 arch_define=__i386__
547 endif
548
549 if AMD64
550 arch_sources = $(amd64_sources)
551 arch_built=cpu-amd64.h
552 arch_define=__x86_64__
553 ARCH_FULLAOT_EXCLUDE=
554 endif
555
556 if POWERPC
557 arch_sources = $(ppc_sources)
558 arch_built=cpu-ppc.h
559 arch_define=__ppc__
560 endif
561
562 if POWERPC64
563 arch_sources = $(ppc_sources)
564 arch_built=cpu-ppc64.h
565 arch_define=__ppc64__
566 endif
567
568 if MIPS
569 arch_sources = $(mips_sources)
570 arch_built=cpu-mips.h
571 arch_define=__mips__
572 endif
573
574 if ARM
575 # pick up arm_dpimacros.h
576 ARCH_CFLAGS = -I../arch/arm
577 arch_sources = $(arm_sources)
578 arch_built=cpu-arm.h
579 arch_define=__arm__
580 endif
581
582 if ARM64
583 arch_sources = $(arm64_sources)
584 arch_built=cpu-arm64.h
585 arch_define=__aarch64__
586 endif
587
588 if SPARC
589 arch_sources = $(sparc_sources)
590 arch_built=cpu-sparc.h
591 arch_define=__sparc__
592 endif
593
594 if SPARC64
595 arch_sources = $(sparc_sources)
596 arch_built=cpu-sparc.h
597 arch_define=__sparc__
598 endif
599
600 if S390X
601 arch_sources = $(s390x_sources)
602 arch_built=cpu-s390x.h
603 arch_define=__s390__
604 endif
605
606 if HOST_WIN32
607 os_sources = $(windows_sources)
608 monobin_platform_ldflags=
609 endif
610
611 if PLATFORM_SIGPOSIX
612 os_sources = $(posix_sources)
613 monobin_platform_ldflags=
614 endif
615
616 if PLATFORM_DARWIN
617 os_sources = $(darwin_sources) $(posix_sources)
618 #monobin_platform_ldflags=-sectcreate __TEXT __info_plist $(top_srcdir)/mono/mini/Info.plist -framework CoreFoundation -framework Foundation
619 monobin_platform_ldflags=-framework CoreFoundation -framework Foundation
620 endif
621
622 libmini_la_SOURCES = $(common_sources) $(llvm_sources) $(llvm_runtime_sources) $(interp_sources) $(arch_sources) $(os_sources)
623 libmini_la_CFLAGS = $(mono_CFLAGS)
624
625 libmonoboehm_2_0_la_SOURCES =
626 libmonoboehm_2_0_la_CFLAGS = $(mono_boehm_CFLAGS)
627 libmonoboehm_2_0_la_LIBADD = libmini.la $(boehm_libs) $(LIBMONO_DTRACE_OBJECT) $(LLVMMONOF)
628 libmonoboehm_2_0_la_LDFLAGS = $(libmonoldflags) $(monobin_platform_ldflags)
629
630 libmonosgen_2_0_la_SOURCES =
631 libmonosgen_2_0_la_CFLAGS = $(mono_sgen_CFLAGS)
632 libmonosgen_2_0_la_LIBADD = libmini.la $(sgen_libs) $(LIBMONO_DTRACE_OBJECT) $(LLVMMONOF)
633 libmonosgen_2_0_la_LDFLAGS = $(libmonoldflags) $(monobin_platform_ldflags)
634
635 #
636 # This library is shared between mono and mono-sgen, since the code in mini/ doesn't contain
637 # compile time dependencies on boehm/sgen.
638 #
639 libmini_static_la_SOURCES = $(libmini_la_SOURCES)
640 libmini_static_la_CFLAGS = $(AM_CFLAGS)
641 libmini_static_la_LDFLAGS = -static
642 libmini_static_la_LIBADD = $(MONO_DTRACE_OBJECT)
643
644 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
645
646 libmonoinclude_HEADERS = jit.h
647
648 CSFLAGS = -unsafe -nowarn:0219,0169,0414,0649,0618
649
650 basic-simd.exe: basic-simd.cs TestDriver.dll
651         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/Mono.Simd.dll
652
653 basic-vectors.exe: basic-vectors.cs TestDriver.dll
654         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/System.Numerics.dll -r:$(CLASS)/System.Numerics.Vectors.dll
655
656 builtin-types.exe: builtin-types.cs TestDriver.dll
657         $(MCS) -out:$@ $(CSFLAGS) -define:ARCH_$(shell echo $$((8 * $(SIZEOF_VOID_P)))) $< -r:TestDriver.dll
658
659 nacl.exe: nacl.cs TestDriver.dll
660         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/Mono.Simd.dll
661
662 generics.exe: generics.cs TestDriver.dll generics-variant-types.dll
663         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:generics-variant-types.dll -r:$(CLASS)/System.Core.dll
664
665 unaligned.exe: unaligned.cs TestDriver.dll MemoryIntrinsics.dll
666         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:MemoryIntrinsics.dll
667
668 %.exe: %.cs TestDriver.dll
669         $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll
670
671 %.exe: %.il
672         $(ILASM) -output=$@ $<
673
674 TestDriver.dll: $(srcdir)/TestDriver.cs $(srcdir)/TestHelpers.cs
675         $(MCS) -out:$@ -target:library $^
676
677 generics-variant-types.dll: generics-variant-types.il
678         $(ILASM) -dll -output=$@ $<
679
680 MemoryIntrinsics.dll: MemoryIntrinsics.il
681         $(ILASM) -dll -output=$@ $<
682
683 GENMDESC_OPTS=
684
685 # we don't always use the perl impl because it's an additional
686 # build dependency for the poor windows users
687 # $(arch_define) is the preprocessor symbol that enables all the opcodes
688 # for the specific platform in mini-ops.h
689 if CROSS_COMPILING
690 GENMDESC_PRG=perl $(srcdir)/genmdesc.pl $(arch_define) $(srcdir) $(GENMDESC_OPTS)
691 else !CROSS_COMPILING
692 GENMDESC_PRG=./genmdesc $(GENMDESC_OPTS)
693 endif !CROSS_COMPILING
694
695 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
696         $(GENMDESC_PRG) cpu-x86.h x86_desc $(srcdir)/cpu-x86.md
697
698 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
699         $(GENMDESC_PRG) cpu-amd64.h amd64_desc $(srcdir)/cpu-amd64.md
700
701 cpu-ppc.h: cpu-ppc.md genmdesc$(EXEEXT)
702         $(GENMDESC_PRG) cpu-ppc.h ppcg4 $(srcdir)/cpu-ppc.md
703
704 cpu-ppc64.h: cpu-ppc64.md genmdesc$(EXEEXT)
705         $(GENMDESC_PRG) cpu-ppc64.h ppc64_cpu_desc $(srcdir)/cpu-ppc64.md
706
707 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
708         $(GENMDESC_PRG) cpu-arm.h arm_cpu_desc $(srcdir)/cpu-arm.md
709
710 cpu-arm64.h: cpu-arm64.md genmdesc$(EXEEXT)
711         $(GENMDESC_PRG) cpu-arm64.h arm64_cpu_desc $(srcdir)/cpu-arm64.md
712
713 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
714         $(GENMDESC_PRG) cpu-sparc.h sparc_desc $(srcdir)/cpu-sparc.md
715
716 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
717         $(GENMDESC_PRG) cpu-s390x.h s390x_cpu_desc $(srcdir)/cpu-s390x.md
718
719 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
720         $(GENMDESC_PRG) cpu-mips.h mips_desc $(srcdir)/cpu-mips.md
721
722 testi: mono test.exe
723         $(MINI_RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
724
725 # ensure the tests are actually correct
726 checktests: $(regtests)
727         for i in $(regtests); do $(MINI_RUNTIME) $$i; done
728
729 rcheck-nunit: mono $(regtests)
730         $(MINI_RUNTIME) --regression $(regtests) > regressiontests.out 2>&1; cat regressiontests.out; \
731         if grep -q "100% pass" regressiontests.out; then successbool=True; failurescount=0; else successbool=False; failurescount=1; fi; \
732         echo "<?xml version='1.0' encoding='utf-8'?>\
733                 <test-results failures='$$failurescount' total='1' not-run='0' name='regression-tests.dummy' date='$$(date +%F)' time='$$(date +%T)'>\
734                         <test-suite name='regression-tests.dummy' success='$$successbool' time='0'>\
735                                 <results><test-case name='MonoTests.regressions.100percentsuccess' executed='True' success='$$successbool' time='0'>" > TestResult-regression.xml; \
736                                         if [ "$$successbool" = "False" ]; then echo "<failure><message><![CDATA[$$(cat regressiontests.out)]]></message><stack-trace></stack-trace></failure>" >> TestResult-regression.xml; fi; \
737                                 echo "</test-case></results>\
738                         </test-suite>\
739                 </test-results>" >> TestResult-regression.xml; exit $$failurescount
740
741 rcheck: mono $(regtests)
742         $(MINI_RUNTIME) --regression $(regtests)
743
744 richeck: mono $(regtests)
745         $(INTERP_RUNTIME) --regression $(regtests)
746
747 mixedcheck: mono mixed.exe
748         $(MINI_RUNTIME) --interp=jit=JitClass mixed.exe
749
750 if ARM
751 check-seq-points:
752 else
753 check-seq-points: mono $(regtests)
754         rm -f TestResult-op_il_seq_point.xml
755         for i in $(regtests); do $(srcdir)/test_op_il_seq_point.sh $$i || ($(srcdir)/test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done
756         for i in $(regtests); do $(srcdir)/test_op_il_seq_point.sh $$i --aot || ($(srcdir)/test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done
757         $(srcdir)/test_op_il_seq_point_headerfooter.sh
758 endif
759
760 gctest: mono gc-test.exe
761         MONO_DEBUG_OPTIONS=clear-nursery-at-gc $(MINI_RUNTIME) --regression gc-test.exe
762
763 LLVM_AOT_RUNTIME_OPTS=$(if $(LLVM),--llvm,)
764 GSHAREDVT_RUNTIME_OPTS=$(if $(GSHAREDVT),-O=gsharedvt,)
765
766 aotcheck: mono $(regtests)
767         rm -rf *.exe.so *.exe.dylib *.exe.dylib.dSYM
768         $(MINI_RUNTIME) $(LLVM_AOT_RUNTIME_OPTS) --aot $(regtests) || exit 1
769         for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
770         rm -rf *.exe.so *.exe.dylib *.exe.dylib.dSYM
771
772 llvmaotcheck:
773         $(MAKE) aotcheck LLVM=1
774
775 gsharedvtcheck:
776         $(MAKE) fullaotcheck GSHAREDVT=1
777
778 fullaot_regtests = $(regtests) aot-tests.exe $(if $(GSHAREDVT),gshared.exe)
779 fullaot_testing_deps = generics-variant-types.dll TestDriver.dll MemoryIntrinsics.dll
780
781 FULLAOT_LIBS_UNIVERSAL = \
782         mscorlib.dll \
783         System.Core.dll \
784         System.dll \
785         System.Xml.dll \
786         System.Security.dll \
787         Mono.Simd.dll \
788         Mono.Security.dll \
789         System.Numerics.dll \
790         System.Numerics.Vectors.dll \
791         Mono.Posix.dll \
792         System.Configuration.dll
793
794 FULLAOT_LIBS_DISABLED =
795
796 if FULL_AOT_TESTS
797 # Skip aoting the tests that aren't compiled 
798 # on the full aot profiles because they're skipped
799 # on mobile profiles
800 FULLAOT_LIBS_DISABLED += \
801         Mono.Posix.dll \
802         System.Configuration.dll
803 endif
804
805
806 FULLAOT_LIBS = $(filter-out $(FULLAOT_LIBS_DISABLED),$(FULLAOT_LIBS_UNIVERSAL))
807
808 FULLAOT_TMP_DIR=$(top_builddir)/mono/mini/fullaot-tmp
809
810 # This currently only works on amd64/arm
811 fullaotcheck: $(mono) $(fullaot_regtests) $(fullaot_testing_deps)
812         rm -rf $(FULLAOT_TMP_DIR)
813         mkdir $(FULLAOT_TMP_DIR)
814         $(MAKE) fullaot-libs AOT_FLAGS="full,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" GSHAREDVT=$(GSHAREDVT)
815         cp $(regtests) $(fullaot_regtests) $(fullaot_testing_deps) $(FULLAOT_TMP_DIR)/
816         MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) $(LLVM_AOT_RUNTIME_OPTS) $(GSHAREDVT_RUNTIME_OPTS) --aot="full,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" $(FULLAOT_TMP_DIR)/{*.dll,*.exe} || exit 1
817         ln -s $(if $(MONO_EXECUTABLE),$(MONO_EXECUTABLE),$$PWD/mono) $(FULLAOT_TMP_DIR)/
818         for i in $(fullaot_regtests); do echo $$i; MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) --full-aot $(FULLAOT_TMP_DIR)/$$i --exclude '!FULLAOT' $(ARCH_FULLAOT_EXCLUDE) || exit 1; done
819
820 # This can run in parallel
821 fullaot-libs: $(patsubst %,fullaot-tmp/%.dylib,$(FULLAOT_LIBS))
822
823 fullaot-tmp/%.dylib: $(CLASS)/%
824         cp $(CLASS)/$* fullaot-tmp/
825         mkdir fullaot-tmp/$*-tmp
826         MONO_PATH="fullaot-tmp/$(PLATFORM_PATH_SEPARATOR)$(CLASS)" $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) $(if $(GSHAREDVT),-O=gsharedvt) --aot=$(AOT_FLAGS),temp-path=fullaot-tmp/$*-tmp fullaot-tmp/$*
827         rm -rf fullaot-tmp/$*-tmp
828
829 llvmfullaotcheck:
830         $(MAKE) fullaotcheck LLVM=1
831
832 llvmonly_regtests = $(fullaot_regtests) gshared.exe
833
834 llvmonlycheck: mono $(llvmonly_regtests)
835         rm -rf fullaot-tmp
836         mkdir fullaot-tmp
837         $(MAKE) fullaot-libs AOT_FLAGS="llvmonly,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)"
838         cp $(llvmonly_regtests) $(fullaot_testing_deps) fullaot-tmp/
839         MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper  $(MOBILE_RUNTIME_ARG) --aot=llvmonly fullaot-tmp/{*.dll,*.exe} || exit 1
840         ln -s $$PWD/mono fullaot-tmp/
841         for i in $(llvmonly_regtests); do echo $$i; MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) --llvmonly fullaot-tmp/$$i --exclude '!BITCODE' || exit 1; done
842
843 gccheck: gc-test.exe
844         MONO_GC_PARAMS=stack-mark=precise MONO_GC_DEBUG=clear-at-gc ./mono-sgen gc-test.exe     
845
846 bench: mono test.exe
847         time env $(MINI_RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
848
849 mbench: test.exe
850         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
851
852 stat1: mono bench.exe
853         $(MINI_RUNTIME) --verbose --statfile stats.pl --regression bench.exe
854         perl viewstat.pl stats.pl
855
856 stat2: mono basic.exe
857         $(MINI_RUNTIME) --verbose --statfile stats.pl --regression basic.exe
858         perl viewstat.pl -e stats.pl
859
860 stat3: mono bench.exe
861         $(MINI_RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
862         perl viewstat.pl stats.pl
863
864 docu: mini.sgm
865         docbook2txt mini.sgm
866
867 # We need these because automake can't process normal make conditionals
868 check_local_targets = $(if $(EMIT_NUNIT), rcheck-nunit, rcheck)
869
870 check-local: $(check_local_targets)
871
872 clean-local:
873         rm -f mono a.out gmon.out *.o buildver-boehm.h buildver-sgen.h test.exe regressionexitcode.out TestResult-op_il_seq_point.xml*
874
875 pkgconfigdir = $(libdir)/pkgconfig
876
877 BUILT_SOURCES = version.h $(arch_built)
878
879 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
880 EXTRA_DIST = TestDriver.cs \
881         TestHelpers.cs \
882         genmdesc.pl                             \
883         $(test_sources)                         \
884         $(x86_sources) cpu-x86.md               \
885         $(amd64_sources) cpu-amd64.md           \
886         $(ppc_sources) cpu-ppc.md cpu-ppc64.md  \
887         $(arm_sources) cpu-arm.md               \
888         $(arm64_sources) cpu-arm64.md           \
889         $(mips_sources) cpu-mips.md             \
890         $(sparc_sources) cpu-sparc.md           \
891         $(s390x_sources) cpu-s390x.md           \
892         $(windows_sources)                      \
893         $(darwin_sources) Info.plist            \
894         $(posix_sources)                                        \
895         test_op_il_seq_point.sh                 \
896         test_op_il_seq_point_headerfooter.sh    \
897         Makefile.am.in
898
899 version.h: Makefile
900         if test -d $(top_srcdir)/.git; then \
901                 (cd $(top_srcdir); \
902                         LANG=C; export LANG; \
903                         if test -z "$$ghprbPullId"; then \
904                                 branch=`git branch | grep '^\*' | sed 's/(detached from .*/explicit/' | cut -d ' ' -f 2`; \
905                         else \
906                                 branch="pull-request-$$ghprbPullId"; \
907                         fi; \
908                         version=`git log --no-color --first-parent -n1 --pretty=format:%h`; \
909                         echo "#define FULL_VERSION \"$$branch/$$version\""; \
910                 ); \
911         else \
912                 echo "#define FULL_VERSION \"tarball\""; \
913         fi > version.h
914
915 # Utility target for patching libtool to speed up linking
916 patch-libtool:
917         sed -e 's,if (for obj in $$oldobjs,if (for obj in "",g' < ../../libtool > 2; mv 2 ../../libtool
918         chmod a+x ../../libtool
919
920 # Utility target for patching libtool to get rid of the 'ranlib: file <file> has no symbols" warnings
921 patch-osx-libtool:
922         sed -e 's/old_archive_cmds=.*/old_archive_cmds="libtool -no_warning_for_no_symbols -static -o \\$$oldlib \\$$oldobjs"/g' < ../../libtool > 2; mv 2 ../../libtool
923         chmod a+x ../../libtool
924
925 # Utility target to patch automake to generate the same format silent output as the old mono silent build did
926 patch-automake:
927         src="@echo \"  '. \$$name . ' ' x (8 - length (\$$name)) . '\""; dst="@echo \"'. \$$name . ' ' x (7 - length (\$$name)) .'\""; sed -e "s/$$src/$$dst/g" < $$EXE > 2 && cp 2 $$EXE && rm -f 2
928
929 tags:
930         etags -o TAGS `find .. -name "*.h" -o -name "*.c"`
931
932 if HAS_EXTENSION_MODULE
933 else
934 Makefile.am: Makefile.am.in
935         cp $< $@
936 endif