forked from pool/mono-core
- rediff and reactivate ppc.patch - port forward ppc64le fixes from matz: - Add support for ppc64le, fix build warnings, the blocksize changes in mono-core-ppc64le.diff should also help ppc64 proper. Added patches: * mono-core-parallel-build.diff * mono-core-ppc64le-callreg.diff * mono-core-ppc64le-swr11r12.diff * mono-core-ppc64le.diff - no valgrind on aarch64 and s390 (but on s390x) OBS-URL: https://build.opensuse.org/request/show/225490 OBS-URL: https://build.opensuse.org/package/show/Mono:Factory/mono-core?expand=0&rev=127
24 lines
1020 B
Diff
24 lines
1020 B
Diff
Index: mono-3.0.2/mono/mini/mini.c
|
|
================================================================================
|
|
--- mono-3.2.8/mono/mini/mini-gc.c
|
|
+++ mono-3.2.8/mono/mini/mini-gc.c
|
|
@@ -438,6 +438,8 @@
|
|
static int callee_saved_regs [] = { ARMREG_V1, ARMREG_V2, ARMREG_V3, ARMREG_V4, ARMREG_V5, ARMREG_V7, ARMREG_FP };
|
|
#elif defined(TARGET_S390X)
|
|
static int callee_saved_regs [] = { s390_r6, s390_r7, s390_r8, s390_r9, s390_r10, s390_r11, s390_r12, s390_r13, s390_r14 };
|
|
+#elif defined(TARGET_POWERPC)
|
|
+static int callee_saved_regs [] = { ppc_r6, ppc_r7, ppc_r8, ppc_r9, ppc_r10, ppc_r11, ppc_r12, ppc_r13, ppc_r14 };
|
|
#endif
|
|
|
|
static guint32
|
|
--- mono-3.2.8/mono/mini/mini-ppc.h
|
|
+++ mono-3.2.8/mono/mini/mini-ppc.h
|
|
@@ -96,6 +96,7 @@
|
|
#define MONO_ARCH_EMULATE_FREM 1
|
|
#define MONO_ARCH_BIGMUL_INTRINS 1
|
|
#define MONO_ARCH_HAVE_ATOMIC_CAS 1
|
|
+#define MONO_ARCH_GC_MAPS_SUPPORTED 1
|
|
|
|
/* Parameters used by the register allocator */
|
|
#define MONO_ARCH_CALLEE_REGS ((0xff << ppc_r3) | (1 << ppc_r11) | (1 << ppc_r12))
|