Bug 15572. Lookup KnownTypeCollection element types in MSSimpleNamespace
[mono.git] / mono / mini / mini-ppc.c
1 /*
2  * mini-ppc.c: PowerPC backend for the Mono code generator
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *   Andreas Faerber <andreas.faerber@web.de>
8  *
9  * (C) 2003 Ximian, Inc.
10  * (C) 2007-2008 Andreas Faerber
11  */
12 #include "mini.h"
13 #include <string.h>
14
15 #include <mono/metadata/appdomain.h>
16 #include <mono/metadata/debug-helpers.h>
17 #include <mono/utils/mono-proclib.h>
18 #include <mono/utils/mono-mmap.h>
19 #include <mono/utils/mono-hwcap-ppc.h>
20
21 #include "mini-ppc.h"
22 #ifdef TARGET_POWERPC64
23 #include "cpu-ppc64.h"
24 #else
25 #include "cpu-ppc.h"
26 #endif
27 #include "trace.h"
28 #include "ir-emit.h"
29 #ifdef __APPLE__
30 #include <sys/sysctl.h>
31 #endif
32 #ifdef __linux__
33 #include <unistd.h>
34 #endif
35
36 #define FORCE_INDIR_CALL 1
37
38 enum {
39         TLS_MODE_DETECT,
40         TLS_MODE_FAILED,
41         TLS_MODE_LTHREADS,
42         TLS_MODE_NPTL,
43         TLS_MODE_DARWIN_G4,
44         TLS_MODE_DARWIN_G5
45 };
46
47 /* cpu_hw_caps contains the flags defined below */
48 static int cpu_hw_caps = 0;
49 static int cachelinesize = 0;
50 static int cachelineinc = 0;
51 enum {
52         PPC_ICACHE_SNOOP      = 1 << 0,
53         PPC_MULTIPLE_LS_UNITS = 1 << 1,
54         PPC_SMP_CAPABLE       = 1 << 2,
55         PPC_ISA_2X            = 1 << 3,
56         PPC_ISA_64            = 1 << 4,
57         PPC_MOVE_FPR_GPR      = 1 << 5,
58         PPC_HW_CAP_END
59 };
60
61 #define BREAKPOINT_SIZE (PPC_LOAD_SEQUENCE_LENGTH + 4)
62
63 /* This mutex protects architecture specific caches */
64 #define mono_mini_arch_lock() EnterCriticalSection (&mini_arch_mutex)
65 #define mono_mini_arch_unlock() LeaveCriticalSection (&mini_arch_mutex)
66 static CRITICAL_SECTION mini_arch_mutex;
67
68 int mono_exc_esp_offset = 0;
69 static int tls_mode = TLS_MODE_DETECT;
70 static int lmf_pthread_key = -1;
71 static int monodomain_key = -1;
72
73 /*
74  * The code generated for sequence points reads from this location, which is
75  * made read-only when single stepping is enabled.
76  */
77 static gpointer ss_trigger_page;
78
79 /* Enabled breakpoints read from this trigger page */
80 static gpointer bp_trigger_page;
81
82 static int
83 offsets_from_pthread_key (guint32 key, int *offset2)
84 {
85         int idx1 = key / 32;
86         int idx2 = key % 32;
87         *offset2 = idx2 * sizeof (gpointer);
88         return 284 + idx1 * sizeof (gpointer);
89 }
90
91 #define emit_linuxthreads_tls(code,dreg,key) do {\
92                 int off1, off2; \
93                 off1 = offsets_from_pthread_key ((key), &off2); \
94                 ppc_ldptr ((code), (dreg), off1, ppc_r2);       \
95                 ppc_ldptr ((code), (dreg), off2, (dreg));       \
96         } while (0);
97
98 #define emit_darwing5_tls(code,dreg,key) do {\
99                 int off1 = 0x48 + key * sizeof (gpointer);      \
100                 ppc_mfspr ((code), (dreg), 104);        \
101                 ppc_ldptr ((code), (dreg), off1, (dreg));       \
102         } while (0);
103
104 /* FIXME: ensure the sc call preserves all but r3 */
105 #define emit_darwing4_tls(code,dreg,key) do {\
106                 int off1 = 0x48 + key * sizeof (gpointer);      \
107                 if ((dreg) != ppc_r3) ppc_mr ((code), ppc_r11, ppc_r3); \
108                 ppc_li ((code), ppc_r0, 0x7FF2);        \
109                 ppc_sc ((code));        \
110                 ppc_lwz ((code), (dreg), off1, ppc_r3); \
111                 if ((dreg) != ppc_r3) ppc_mr ((code), ppc_r3, ppc_r11); \
112         } while (0);
113
114 #ifdef PPC_THREAD_PTR_REG
115 #define emit_nptl_tls(code,dreg,key) do { \
116                 int off1 = key; \
117                 int off2 = key >> 15; \
118                 if ((off2 == 0) || (off2 == -1)) { \
119                         ppc_ldptr ((code), (dreg), off1, PPC_THREAD_PTR_REG);   \
120                 } else { \
121                         int off3 = (off2 + 1) > 1; \
122                         ppc_addis ((code), ppc_r11, PPC_THREAD_PTR_REG, off3); \
123                         ppc_ldptr ((code), (dreg), off1, ppc_r11);      \
124                 } \
125         } while (0);
126 #else
127 #define emit_nptl_tls(code,dreg,key) do {       \
128                 g_assert_not_reached ();        \
129         } while (0)
130 #endif
131
132 #define emit_tls_access(code,dreg,key) do {     \
133                 switch (tls_mode) {     \
134                 case TLS_MODE_LTHREADS: emit_linuxthreads_tls(code,dreg,key); break;    \
135                 case TLS_MODE_NPTL: emit_nptl_tls(code,dreg,key); break;        \
136                 case TLS_MODE_DARWIN_G5: emit_darwing5_tls(code,dreg,key); break;       \
137                 case TLS_MODE_DARWIN_G4: emit_darwing4_tls(code,dreg,key); break;       \
138                 default: g_assert_not_reached ();       \
139                 }       \
140         } while (0)
141
142 #define MONO_EMIT_NEW_LOAD_R8(cfg,dr,addr) do { \
143                 MonoInst *inst;                                                    \
144                 MONO_INST_NEW ((cfg), (inst), OP_R8CONST); \
145                 inst->type = STACK_R8;                     \
146                 inst->dreg = (dr);                     \
147                 inst->inst_p0 = (void*)(addr);         \
148                 mono_bblock_add_inst (cfg->cbb, inst); \
149         } while (0)
150
151 const char*
152 mono_arch_regname (int reg) {
153         static const char rnames[][4] = {
154                 "r0", "sp", "r2", "r3", "r4",
155                 "r5", "r6", "r7", "r8", "r9",
156                 "r10", "r11", "r12", "r13", "r14",
157                 "r15", "r16", "r17", "r18", "r19",
158                 "r20", "r21", "r22", "r23", "r24",
159                 "r25", "r26", "r27", "r28", "r29",
160                 "r30", "r31"
161         };
162         if (reg >= 0 && reg < 32)
163                 return rnames [reg];
164         return "unknown";
165 }
166
167 const char*
168 mono_arch_fregname (int reg) {
169         static const char rnames[][4] = {
170                 "f0", "f1", "f2", "f3", "f4",
171                 "f5", "f6", "f7", "f8", "f9",
172                 "f10", "f11", "f12", "f13", "f14",
173                 "f15", "f16", "f17", "f18", "f19",
174                 "f20", "f21", "f22", "f23", "f24",
175                 "f25", "f26", "f27", "f28", "f29",
176                 "f30", "f31"
177         };
178         if (reg >= 0 && reg < 32)
179                 return rnames [reg];
180         return "unknown";
181 }
182
183 /* this function overwrites r0, r11, r12 */
184 static guint8*
185 emit_memcpy (guint8 *code, int size, int dreg, int doffset, int sreg, int soffset)
186 {
187         /* unrolled, use the counter in big */
188         if (size > sizeof (gpointer) * 5) {
189                 long shifted = size / SIZEOF_VOID_P;
190                 guint8 *copy_loop_start, *copy_loop_jump;
191
192                 ppc_load (code, ppc_r0, shifted);
193                 ppc_mtctr (code, ppc_r0);
194                 //g_assert (sreg == ppc_r11);
195                 ppc_addi (code, ppc_r12, dreg, (doffset - sizeof (gpointer)));
196                 ppc_addi (code, ppc_r11, sreg, (soffset - sizeof (gpointer)));
197                 copy_loop_start = code;
198                 ppc_ldptr_update (code, ppc_r0, (unsigned int)sizeof (gpointer), ppc_r11);
199                 ppc_stptr_update (code, ppc_r0, (unsigned int)sizeof (gpointer), ppc_r12);
200                 copy_loop_jump = code;
201                 ppc_bc (code, PPC_BR_DEC_CTR_NONZERO, 0, 0);
202                 ppc_patch (copy_loop_jump, copy_loop_start);
203                 size -= shifted * sizeof (gpointer);
204                 doffset = soffset = 0;
205                 dreg = ppc_r12;
206         }
207 #ifdef __mono_ppc64__
208         /* the hardware has multiple load/store units and the move is long
209            enough to use more then one regiester, then use load/load/store/store
210            to execute 2 instructions per cycle. */
211         if ((cpu_hw_caps & PPC_MULTIPLE_LS_UNITS) && (dreg != ppc_r12) && (sreg != ppc_r12)) { 
212                 while (size >= 16) {
213                         ppc_ldptr (code, ppc_r0, soffset, sreg);
214                         ppc_ldptr (code, ppc_r12, soffset+8, sreg);
215                         ppc_stptr (code, ppc_r0, doffset, dreg);
216                         ppc_stptr (code, ppc_r12, doffset+8, dreg);
217                         size -= 16;
218                         soffset += 16;
219                         doffset += 16; 
220                 }
221         }
222         while (size >= 8) {
223                 ppc_ldr (code, ppc_r0, soffset, sreg);
224                 ppc_str (code, ppc_r0, doffset, dreg);
225                 size -= 8;
226                 soffset += 8;
227                 doffset += 8;
228         }
229 #else
230         if ((cpu_hw_caps & PPC_MULTIPLE_LS_UNITS) && (dreg != ppc_r12) && (sreg != ppc_r12)) { 
231                 while (size >= 8) {
232                         ppc_lwz (code, ppc_r0, soffset, sreg);
233                         ppc_lwz (code, ppc_r12, soffset+4, sreg);
234                         ppc_stw (code, ppc_r0, doffset, dreg);
235                         ppc_stw (code, ppc_r12, doffset+4, dreg);
236                         size -= 8;
237                         soffset += 8;
238                         doffset += 8; 
239                 }
240         }
241 #endif
242         while (size >= 4) {
243                 ppc_lwz (code, ppc_r0, soffset, sreg);
244                 ppc_stw (code, ppc_r0, doffset, dreg);
245                 size -= 4;
246                 soffset += 4;
247                 doffset += 4;
248         }
249         while (size >= 2) {
250                 ppc_lhz (code, ppc_r0, soffset, sreg);
251                 ppc_sth (code, ppc_r0, doffset, dreg);
252                 size -= 2;
253                 soffset += 2;
254                 doffset += 2;
255         }
256         while (size >= 1) {
257                 ppc_lbz (code, ppc_r0, soffset, sreg);
258                 ppc_stb (code, ppc_r0, doffset, dreg);
259                 size -= 1;
260                 soffset += 1;
261                 doffset += 1;
262         }
263         return code;
264 }
265
266 /*
267  * mono_arch_get_argument_info:
268  * @csig:  a method signature
269  * @param_count: the number of parameters to consider
270  * @arg_info: an array to store the result infos
271  *
272  * Gathers information on parameters such as size, alignment and
273  * padding. arg_info should be large enought to hold param_count + 1 entries. 
274  *
275  * Returns the size of the activation frame.
276  */
277 int
278 mono_arch_get_argument_info (MonoGenericSharingContext *gsctx, MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
279 {
280 #ifdef __mono_ppc64__
281         NOT_IMPLEMENTED;
282         return -1;
283 #else
284         int k, frame_size = 0;
285         int size, align, pad;
286         int offset = 8;
287
288         if (MONO_TYPE_ISSTRUCT (csig->ret)) { 
289                 frame_size += sizeof (gpointer);
290                 offset += 4;
291         }
292
293         arg_info [0].offset = offset;
294
295         if (csig->hasthis) {
296                 frame_size += sizeof (gpointer);
297                 offset += 4;
298         }
299
300         arg_info [0].size = frame_size;
301
302         for (k = 0; k < param_count; k++) {
303                 
304                 if (csig->pinvoke)
305                         size = mono_type_native_stack_size (csig->params [k], (guint32*)&align);
306                 else
307                         size = mini_type_stack_size (NULL, csig->params [k], &align);
308
309                 /* ignore alignment for now */
310                 align = 1;
311
312                 frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1); 
313                 arg_info [k].pad = pad;
314                 frame_size += size;
315                 arg_info [k + 1].pad = 0;
316                 arg_info [k + 1].size = size;
317                 offset += pad;
318                 arg_info [k + 1].offset = offset;
319                 offset += size;
320         }
321
322         align = MONO_ARCH_FRAME_ALIGNMENT;
323         frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1);
324         arg_info [k].pad = pad;
325
326         return frame_size;
327 #endif
328 }
329
330 #ifdef __mono_ppc64__
331 static gboolean
332 is_load_sequence (guint32 *seq)
333 {
334         return ppc_opcode (seq [0]) == 15 && /* lis */
335                 ppc_opcode (seq [1]) == 24 && /* ori */
336                 ppc_opcode (seq [2]) == 30 && /* sldi */
337                 ppc_opcode (seq [3]) == 25 && /* oris */
338                 ppc_opcode (seq [4]) == 24; /* ori */
339 }
340
341 #define ppc_load_get_dest(l)    (((l)>>21) & 0x1f)
342 #define ppc_load_get_off(l)     ((gint16)((l) & 0xffff))
343 #endif
344
345 /* ld || lwz */
346 #define ppc_is_load_op(opcode) (ppc_opcode ((opcode)) == 58 || ppc_opcode ((opcode)) == 32)
347
348 /* code must point to the blrl */
349 gboolean
350 mono_ppc_is_direct_call_sequence (guint32 *code)
351 {
352 #ifdef __mono_ppc64__
353         g_assert(*code == 0x4e800021 || *code == 0x4e800020 || *code == 0x4e800420);
354
355         /* the thunk-less direct call sequence: lis/ori/sldi/oris/ori/mtlr/blrl */
356         if (ppc_opcode (code [-1]) == 31) { /* mtlr */
357                 if (ppc_is_load_op (code [-2]) && ppc_is_load_op (code [-3])) { /* ld/ld */
358                         if (!is_load_sequence (&code [-8]))
359                                 return FALSE;
360                         /* one of the loads must be "ld r2,8(rX)" or "ld r2,4(rX) for ilp32 */
361                         return (ppc_load_get_dest (code [-2]) == ppc_r2 && ppc_load_get_off (code [-2]) == sizeof (gpointer)) ||
362                                 (ppc_load_get_dest (code [-3]) == ppc_r2 && ppc_load_get_off (code [-3]) == sizeof (gpointer));
363                 }
364                 if (ppc_opcode (code [-2]) == 24 && ppc_opcode (code [-3]) == 31) /* mr/nop */
365                         return is_load_sequence (&code [-8]);
366                 else
367                         return is_load_sequence (&code [-6]);
368         }
369         return FALSE;
370 #else
371         g_assert(*code == 0x4e800021);
372
373         /* the thunk-less direct call sequence: lis/ori/mtlr/blrl */
374         return ppc_opcode (code [-1]) == 31 &&
375                 ppc_opcode (code [-2]) == 24 &&
376                 ppc_opcode (code [-3]) == 15;
377 #endif
378 }
379
380 #define MAX_ARCH_DELEGATE_PARAMS 7
381
382 static gpointer
383 get_delegate_invoke_impl (gboolean has_target, guint32 param_count, guint32 *code_len, gboolean aot)
384 {
385         guint8 *code, *start;
386
387         if (has_target) {
388                 int size = MONO_PPC_32_64_CASE (32, 32) + PPC_FTNPTR_SIZE;
389
390                 start = code = mono_global_codeman_reserve (size);
391                 if (!aot)
392                         code = mono_ppc_create_pre_code_ftnptr (code);
393
394                 /* Replace the this argument with the target */
395                 ppc_ldptr (code, ppc_r0, G_STRUCT_OFFSET (MonoDelegate, method_ptr), ppc_r3);
396 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
397                 /* it's a function descriptor */
398                 /* Can't use ldptr as it doesn't work with r0 */
399                 ppc_ldptr_indexed (code, ppc_r0, 0, ppc_r0);
400 #endif
401                 ppc_mtctr (code, ppc_r0);
402                 ppc_ldptr (code, ppc_r3, G_STRUCT_OFFSET (MonoDelegate, target), ppc_r3);
403                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
404
405                 g_assert ((code - start) <= size);
406
407                 mono_arch_flush_icache (start, size);
408         } else {
409                 int size, i;
410
411                 size = MONO_PPC_32_64_CASE (32, 32) + param_count * 4 + PPC_FTNPTR_SIZE;
412                 start = code = mono_global_codeman_reserve (size);
413                 if (!aot)
414                         code = mono_ppc_create_pre_code_ftnptr (code);
415
416                 ppc_ldptr (code, ppc_r0, G_STRUCT_OFFSET (MonoDelegate, method_ptr), ppc_r3);
417 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
418                 /* it's a function descriptor */
419                 ppc_ldptr_indexed (code, ppc_r0, 0, ppc_r0);
420 #endif
421                 ppc_mtctr (code, ppc_r0);
422                 /* slide down the arguments */
423                 for (i = 0; i < param_count; ++i) {
424                         ppc_mr (code, (ppc_r3 + i), (ppc_r3 + i + 1));
425                 }
426                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
427
428                 g_assert ((code - start) <= size);
429
430                 mono_arch_flush_icache (start, size);
431         }
432
433         if (code_len)
434                 *code_len = code - start;
435
436         return start;
437 }
438
439 GSList*
440 mono_arch_get_delegate_invoke_impls (void)
441 {
442         GSList *res = NULL;
443         guint8 *code;
444         guint32 code_len;
445         int i;
446         char *tramp_name;
447
448         code = get_delegate_invoke_impl (TRUE, 0, &code_len, TRUE);
449         res = g_slist_prepend (res, mono_tramp_info_create ("delegate_invoke_impl_has_target", code, code_len, NULL, NULL));
450
451         for (i = 0; i < MAX_ARCH_DELEGATE_PARAMS; ++i) {
452                 code = get_delegate_invoke_impl (FALSE, i, &code_len, TRUE);
453                 tramp_name = g_strdup_printf ("delegate_invoke_impl_target_%d", i);
454                 res = g_slist_prepend (res, mono_tramp_info_create (tramp_name, code, code_len, NULL, NULL));
455                 g_free (tramp_name);
456         }
457
458         return res;
459 }
460
461 gpointer
462 mono_arch_get_delegate_invoke_impl (MonoMethodSignature *sig, gboolean has_target)
463 {
464         guint8 *code, *start;
465
466         /* FIXME: Support more cases */
467         if (MONO_TYPE_ISSTRUCT (sig->ret))
468                 return NULL;
469
470         if (has_target) {
471                 static guint8* cached = NULL;
472
473                 if (cached)
474                         return cached;
475
476                 if (mono_aot_only)
477                         start = mono_aot_get_trampoline ("delegate_invoke_impl_has_target");
478                 else
479                         start = get_delegate_invoke_impl (TRUE, 0, NULL, FALSE);
480
481                 mono_memory_barrier ();
482
483                 cached = start;
484         } else {
485                 static guint8* cache [MAX_ARCH_DELEGATE_PARAMS + 1] = {NULL};
486                 int i;
487
488                 if (sig->param_count > MAX_ARCH_DELEGATE_PARAMS)
489                         return NULL;
490                 for (i = 0; i < sig->param_count; ++i)
491                         if (!mono_is_regsize_var (sig->params [i]))
492                                 return NULL;
493
494
495                 code = cache [sig->param_count];
496                 if (code)
497                         return code;
498
499                 if (mono_aot_only) {
500                         char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", sig->param_count);
501                         start = mono_aot_get_trampoline (name);
502                         g_free (name);
503                 } else {
504                         start = get_delegate_invoke_impl (FALSE, sig->param_count, NULL, FALSE);
505                 }
506
507                 mono_memory_barrier ();
508
509                 cache [sig->param_count] = start;
510         }
511         return start;
512 }
513
514 gpointer
515 mono_arch_get_this_arg_from_call (mgreg_t *regs, guint8 *code)
516 {
517         mgreg_t *r = (mgreg_t*)regs;
518
519         return (gpointer)(gsize)r [ppc_r3];
520 }
521
522 typedef struct {
523         long int type;
524         long int value;
525 } AuxVec;
526
527 #define MAX_AUX_ENTRIES 128
528 /* 
529  * PPC_FEATURE_POWER4, PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS, PPC_FEATURE_CELL,
530  * PPC_FEATURE_PA6T, PPC_FEATURE_ARCH_2_05 are considered supporting 2X ISA features
531  */
532 #define ISA_2X (0x00080000 | 0x00040000 | 0x00020000 | 0x00010000 | 0x00000800 | 0x00001000)
533
534 /* define PPC_FEATURE_64 HWCAP for 64-bit category.  */
535 #define ISA_64 0x40000000
536
537 /* define PPC_FEATURE_POWER6_EXT HWCAP for power6x mffgpr/mftgpr instructions.  */
538 #define ISA_MOVE_FPR_GPR 0x00000200
539 /*
540  * Initialize the cpu to execute managed code.
541  */
542 void
543 mono_arch_cpu_init (void)
544 {
545 }
546
547 /*
548  * Initialize architecture specific code.
549  */
550 void
551 mono_arch_init (void)
552 {
553 #if defined(MONO_CROSS_COMPILE)
554 #elif defined(__APPLE__)
555         int mib [3];
556         size_t len = sizeof (cachelinesize);
557
558         mib [0] = CTL_HW;
559         mib [1] = HW_CACHELINE;
560
561         if (sysctl (mib, 2, &cachelinesize, &len, NULL, 0) == -1) {
562                 perror ("sysctl");
563                 cachelinesize = 128;
564         } else {
565                 cachelineinc = cachelinesize;
566         }
567 #elif defined(__linux__)
568         AuxVec vec [MAX_AUX_ENTRIES];
569         int i, vec_entries = 0;
570         /* sadly this will work only with 2.6 kernels... */
571         FILE* f = fopen ("/proc/self/auxv", "rb");
572
573         if (f) {
574                 vec_entries = fread (&vec, sizeof (AuxVec), MAX_AUX_ENTRIES, f);
575                 fclose (f);
576         }
577
578         for (i = 0; i < vec_entries; i++) {
579                 int type = vec [i].type;
580
581                 if (type == 19) { /* AT_DCACHEBSIZE */
582                         cachelinesize = vec [i].value;
583                         continue;
584                 }
585         }
586 #elif defined(G_COMPILER_CODEWARRIOR)
587         cachelinesize = 32;
588         cachelineinc = 32;
589 #else
590 //#error Need a way to get cache line size
591 #endif
592
593         if (mono_hwcap_ppc_has_icache_snoop)
594                 cpu_hw_caps |= PPC_ICACHE_SNOOP;
595
596         if (mono_hwcap_ppc_is_isa_2x)
597                 cpu_hw_caps |= PPC_ISA_2X;
598
599         if (mono_hwcap_ppc_is_isa_64)
600                 cpu_hw_caps |= PPC_ISA_64;
601
602         if (mono_hwcap_ppc_has_move_fpr_gpr)
603                 cpu_hw_caps |= PPC_MOVE_FPR_GPR;
604
605         if (mono_hwcap_ppc_has_multiple_ls_units)
606                 cpu_hw_caps |= PPC_MULTIPLE_LS_UNITS;
607
608         if (!cachelinesize)
609                 cachelinesize = 32;
610
611         if (!cachelineinc)
612                 cachelineinc = cachelinesize;
613
614         if (mono_cpu_count () > 1)
615                 cpu_hw_caps |= PPC_SMP_CAPABLE;
616
617         InitializeCriticalSection (&mini_arch_mutex);
618
619         ss_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
620         bp_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
621         mono_mprotect (bp_trigger_page, mono_pagesize (), 0);
622
623         mono_aot_register_jit_icall ("mono_ppc_throw_exception", mono_ppc_throw_exception);
624 }
625
626 /*
627  * Cleanup architecture specific code.
628  */
629 void
630 mono_arch_cleanup (void)
631 {
632         DeleteCriticalSection (&mini_arch_mutex);
633 }
634
635 /*
636  * This function returns the optimizations supported on this cpu.
637  */
638 guint32
639 mono_arch_cpu_optimizations (guint32 *exclude_mask)
640 {
641         guint32 opts = 0;
642
643         /* no ppc-specific optimizations yet */
644         *exclude_mask = 0;
645         return opts;
646 }
647
648 /*
649  * This function test for all SIMD functions supported.
650  *
651  * Returns a bitmask corresponding to all supported versions.
652  *
653  */
654 guint32
655 mono_arch_cpu_enumerate_simd_versions (void)
656 {
657         /* SIMD is currently unimplemented */
658         return 0;
659 }
660
661 #ifdef __mono_ppc64__
662 #define CASE_PPC32(c)
663 #define CASE_PPC64(c)   case c:
664 #else
665 #define CASE_PPC32(c)   case c:
666 #define CASE_PPC64(c)
667 #endif
668
669 static gboolean
670 is_regsize_var (MonoType *t) {
671         if (t->byref)
672                 return TRUE;
673         t = mini_type_get_underlying_type (NULL, t);
674         switch (t->type) {
675         case MONO_TYPE_I4:
676         case MONO_TYPE_U4:
677         CASE_PPC64 (MONO_TYPE_I8)
678         CASE_PPC64 (MONO_TYPE_U8)
679         case MONO_TYPE_I:
680         case MONO_TYPE_U:
681         case MONO_TYPE_PTR:
682         case MONO_TYPE_FNPTR:
683                 return TRUE;
684         case MONO_TYPE_OBJECT:
685         case MONO_TYPE_STRING:
686         case MONO_TYPE_CLASS:
687         case MONO_TYPE_SZARRAY:
688         case MONO_TYPE_ARRAY:
689                 return TRUE;
690         case MONO_TYPE_GENERICINST:
691                 if (!mono_type_generic_inst_is_valuetype (t))
692                         return TRUE;
693                 return FALSE;
694         case MONO_TYPE_VALUETYPE:
695                 return FALSE;
696         }
697         return FALSE;
698 }
699
700 #ifndef DISABLE_JIT
701 GList *
702 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
703 {
704         GList *vars = NULL;
705         int i;
706
707         for (i = 0; i < cfg->num_varinfo; i++) {
708                 MonoInst *ins = cfg->varinfo [i];
709                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
710
711                 /* unused vars */
712                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
713                         continue;
714
715                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG))
716                         continue;
717
718                 /* we can only allocate 32 bit values */
719                 if (is_regsize_var (ins->inst_vtype)) {
720                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
721                         g_assert (i == vmv->idx);
722                         vars = mono_varlist_insert_sorted (cfg, vars, vmv, FALSE);
723                 }
724         }
725
726         return vars;
727 }
728 #endif /* ifndef DISABLE_JIT */
729
730 GList *
731 mono_arch_get_global_int_regs (MonoCompile *cfg)
732 {
733         GList *regs = NULL;
734         int i, top = 32;
735         if (cfg->frame_reg != ppc_sp)
736                 top = 31;
737         /* ppc_r13 is used by the system on PPC EABI */
738         for (i = 14; i < top; ++i) {
739                 /*
740                  * Reserve r29 for holding the vtable address for virtual calls in AOT mode,
741                  * since the trampolines can clobber r11.
742                  */
743                 if (!(cfg->compile_aot && i == 29))
744                         regs = g_list_prepend (regs, GUINT_TO_POINTER (i));
745         }
746
747         return regs;
748 }
749
750 /*
751  * mono_arch_regalloc_cost:
752  *
753  *  Return the cost, in number of memory references, of the action of 
754  * allocating the variable VMV into a register during global register
755  * allocation.
756  */
757 guint32
758 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
759 {
760         /* FIXME: */
761         return 2;
762 }
763
764 void
765 mono_arch_flush_icache (guint8 *code, gint size)
766 {
767 #ifdef MONO_CROSS_COMPILE
768 #else
769         register guint8 *p;
770         guint8 *endp, *start;
771
772         p = start = code;
773         endp = p + size;
774         start = (guint8*)((gsize)start & ~(cachelinesize - 1));
775         /* use dcbf for smp support, later optimize for UP, see pem._64bit.d20030611.pdf page 211 */
776 #if defined(G_COMPILER_CODEWARRIOR)
777         if (cpu_hw_caps & PPC_SMP_CAPABLE) {
778                 for (p = start; p < endp; p += cachelineinc) {
779                         asm { dcbf 0, p };
780                 }
781         } else {
782                 for (p = start; p < endp; p += cachelineinc) {
783                         asm { dcbst 0, p };
784                 }
785         }
786         asm { sync };
787         p = code;
788         for (p = start; p < endp; p += cachelineinc) {
789                 asm {
790                         icbi 0, p
791                         sync
792                 }
793         }
794         asm {
795                 sync
796                 isync
797         }
798 #else
799         /* For POWER5/6 with ICACHE_SNOOPing only one icbi in the range is required.
800          * The sync is required to insure that the store queue is completely empty.
801          * While the icbi performs no cache operations, icbi/isync is required to
802          * kill local prefetch.
803          */
804         if (cpu_hw_caps & PPC_ICACHE_SNOOP) {
805                 asm ("sync");
806                 asm ("icbi 0,%0;" : : "r"(code) : "memory");
807                 asm ("isync");
808                 return;
809         }
810         /* use dcbf for smp support, see pem._64bit.d20030611.pdf page 211 */
811         if (cpu_hw_caps & PPC_SMP_CAPABLE) {
812                 for (p = start; p < endp; p += cachelineinc) {
813                         asm ("dcbf 0,%0;" : : "r"(p) : "memory");
814                 }
815         } else {
816                 for (p = start; p < endp; p += cachelineinc) {
817                         asm ("dcbst 0,%0;" : : "r"(p) : "memory");
818                 }
819         }
820         asm ("sync");
821         p = code;
822         for (p = start; p < endp; p += cachelineinc) {
823                 /* for ISA2.0+ implementations we should not need any extra sync between the
824                  * icbi instructions.  Both the 2.0 PEM and the PowerISA-2.05 say this.
825                  * So I am not sure which chip had this problem but its not an issue on
826                  * of the ISA V2 chips.
827                  */
828                 if (cpu_hw_caps & PPC_ISA_2X)
829                         asm ("icbi 0,%0;" : : "r"(p) : "memory");
830                 else
831                         asm ("icbi 0,%0; sync;" : : "r"(p) : "memory");
832         }
833         if (!(cpu_hw_caps & PPC_ISA_2X))
834                 asm ("sync");
835         asm ("isync");
836 #endif
837 #endif
838 }
839
840 void
841 mono_arch_flush_register_windows (void)
842 {
843 }
844
845 #ifdef __APPLE__
846 #define ALWAYS_ON_STACK(s) s
847 #define FP_ALSO_IN_REG(s) s
848 #else
849 #ifdef __mono_ppc64__
850 #define ALWAYS_ON_STACK(s) s
851 #define FP_ALSO_IN_REG(s) s
852 #else
853 #define ALWAYS_ON_STACK(s)
854 #define FP_ALSO_IN_REG(s)
855 #endif
856 #define ALIGN_DOUBLES
857 #endif
858
859 enum {
860         RegTypeGeneral,
861         RegTypeBase,
862         RegTypeFP,
863         RegTypeStructByVal,
864         RegTypeStructByAddr
865 };
866
867 typedef struct {
868         gint32  offset;
869         guint32 vtsize; /* in param area */
870         guint8  reg;
871         guint8  vtregs; /* number of registers used to pass a RegTypeStructByVal */
872         guint8  regtype : 4; /* 0 general, 1 basereg, 2 floating point register, see RegType* */
873         guint8  size    : 4; /* 1, 2, 4, 8, or regs used by RegTypeStructByVal */
874         guint8  bytes   : 4; /* size in bytes - only valid for
875                                 RegTypeStructByVal if the struct fits
876                                 in one word, otherwise it's 0*/
877 } ArgInfo;
878
879 typedef struct {
880         int nargs;
881         guint32 stack_usage;
882         guint32 struct_ret;
883         ArgInfo ret;
884         ArgInfo sig_cookie;
885         gboolean vtype_retaddr;
886         int vret_arg_index;
887         ArgInfo args [1];
888 } CallInfo;
889
890 #define DEBUG(a)
891
892 static void inline
893 add_general (guint *gr, guint *stack_size, ArgInfo *ainfo, gboolean simple)
894 {
895 #ifdef __mono_ppc64__
896         g_assert (simple);
897 #endif
898
899         if (simple) {
900                 if (*gr >= 3 + PPC_NUM_REG_ARGS) {
901                         ainfo->offset = PPC_STACK_PARAM_OFFSET + *stack_size;
902                         ainfo->reg = ppc_sp; /* in the caller */
903                         ainfo->regtype = RegTypeBase;
904                         *stack_size += sizeof (gpointer);
905                 } else {
906                         ALWAYS_ON_STACK (*stack_size += sizeof (gpointer));
907                         ainfo->reg = *gr;
908                 }
909         } else {
910                 if (*gr >= 3 + PPC_NUM_REG_ARGS - 1) {
911 #ifdef ALIGN_DOUBLES
912                         //*stack_size += (*stack_size % 8);
913 #endif
914                         ainfo->offset = PPC_STACK_PARAM_OFFSET + *stack_size;
915                         ainfo->reg = ppc_sp; /* in the caller */
916                         ainfo->regtype = RegTypeBase;
917                         *stack_size += 8;
918                 } else {
919 #ifdef ALIGN_DOUBLES
920                 if (!((*gr) & 1))
921                         (*gr) ++;
922 #endif
923                         ALWAYS_ON_STACK (*stack_size += 8);
924                         ainfo->reg = *gr;
925                 }
926                 (*gr) ++;
927         }
928         (*gr) ++;
929 }
930
931 #if defined(__APPLE__) || defined(__mono_ppc64__)
932 static gboolean
933 has_only_a_r48_field (MonoClass *klass)
934 {
935         gpointer iter;
936         MonoClassField *f;
937         gboolean have_field = FALSE;
938         iter = NULL;
939         while ((f = mono_class_get_fields (klass, &iter))) {
940                 if (!(f->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
941                         if (have_field)
942                                 return FALSE;
943                         if (!f->type->byref && (f->type->type == MONO_TYPE_R4 || f->type->type == MONO_TYPE_R8))
944                                 have_field = TRUE;
945                         else
946                                 return FALSE;
947                 }
948         }
949         return have_field;
950 }
951 #endif
952
953 static CallInfo*
954 get_call_info (MonoGenericSharingContext *gsctx, MonoMethodSignature *sig)
955 {
956         guint i, fr, gr, pstart;
957         int n = sig->hasthis + sig->param_count;
958         MonoType *simpletype;
959         guint32 stack_size = 0;
960         CallInfo *cinfo = g_malloc0 (sizeof (CallInfo) + sizeof (ArgInfo) * n);
961         gboolean is_pinvoke = sig->pinvoke;
962
963         fr = PPC_FIRST_FPARG_REG;
964         gr = PPC_FIRST_ARG_REG;
965
966         /* FIXME: handle returning a struct */
967         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
968                 cinfo->vtype_retaddr = TRUE;
969         }
970
971         pstart = 0;
972         n = 0;
973         /*
974          * To simplify get_this_arg_reg () and LLVM integration, emit the vret arg after
975          * the first argument, allowing 'this' to be always passed in the first arg reg.
976          * Also do this if the first argument is a reference type, since virtual calls
977          * are sometimes made using calli without sig->hasthis set, like in the delegate
978          * invoke wrappers.
979          */
980         if (cinfo->vtype_retaddr && !is_pinvoke && (sig->hasthis || (sig->param_count > 0 && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (gsctx, sig->params [0]))))) {
981                 if (sig->hasthis) {
982                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
983                         n ++;
984                 } else {
985                         add_general (&gr, &stack_size, &cinfo->args [sig->hasthis + 0], TRUE);
986                         pstart = 1;
987                         n ++;
988                 }
989                 add_general (&gr, &stack_size, &cinfo->ret, TRUE);
990                 cinfo->struct_ret = cinfo->ret.reg;
991                 cinfo->vret_arg_index = 1;
992         } else {
993                 /* this */
994                 if (sig->hasthis) {
995                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
996                         n ++;
997                 }
998
999                 if (cinfo->vtype_retaddr) {
1000                         add_general (&gr, &stack_size, &cinfo->ret, TRUE);
1001                         cinfo->struct_ret = cinfo->ret.reg;
1002                 }
1003         }
1004
1005         DEBUG(printf("params: %d\n", sig->param_count));
1006         for (i = pstart; i < sig->param_count; ++i) {
1007                 if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1008                         /* Prevent implicit arguments and sig_cookie from
1009                            being passed in registers */
1010                         gr = PPC_LAST_ARG_REG + 1;
1011                         /* FIXME: don't we have to set fr, too? */
1012                         /* Emit the signature cookie just before the implicit arguments */
1013                         add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1014                 }
1015                 DEBUG(printf("param %d: ", i));
1016                 if (sig->params [i]->byref) {
1017                         DEBUG(printf("byref\n"));
1018                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1019                         n++;
1020                         continue;
1021                 }
1022                 simpletype = mini_type_get_underlying_type (NULL, sig->params [i]);
1023                 switch (simpletype->type) {
1024                 case MONO_TYPE_BOOLEAN:
1025                 case MONO_TYPE_I1:
1026                 case MONO_TYPE_U1:
1027                         cinfo->args [n].size = 1;
1028                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1029                         n++;
1030                         break;
1031                 case MONO_TYPE_CHAR:
1032                 case MONO_TYPE_I2:
1033                 case MONO_TYPE_U2:
1034                         cinfo->args [n].size = 2;
1035                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1036                         n++;
1037                         break;
1038                 case MONO_TYPE_I4:
1039                 case MONO_TYPE_U4:
1040                         cinfo->args [n].size = 4;
1041                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1042                         n++;
1043                         break;
1044                 case MONO_TYPE_I:
1045                 case MONO_TYPE_U:
1046                 case MONO_TYPE_PTR:
1047                 case MONO_TYPE_FNPTR:
1048                 case MONO_TYPE_CLASS:
1049                 case MONO_TYPE_OBJECT:
1050                 case MONO_TYPE_STRING:
1051                 case MONO_TYPE_SZARRAY:
1052                 case MONO_TYPE_ARRAY:
1053                         cinfo->args [n].size = sizeof (gpointer);
1054                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1055                         n++;
1056                         break;
1057                 case MONO_TYPE_GENERICINST:
1058                         if (!mono_type_generic_inst_is_valuetype (simpletype)) {
1059                                 cinfo->args [n].size = sizeof (gpointer);
1060                                 add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1061                                 n++;
1062                                 break;
1063                         }
1064                         /* Fall through */
1065                 case MONO_TYPE_VALUETYPE:
1066                 case MONO_TYPE_TYPEDBYREF: {
1067                         gint size;
1068                         MonoClass *klass;
1069
1070                         klass = mono_class_from_mono_type (sig->params [i]);
1071                         if (simpletype->type == MONO_TYPE_TYPEDBYREF)
1072                                 size = sizeof (MonoTypedRef);
1073                         else if (is_pinvoke)
1074                             size = mono_class_native_size (klass, NULL);
1075                         else
1076                             size = mono_class_value_size (klass, NULL);
1077
1078 #if defined(__APPLE__) || defined(__mono_ppc64__)
1079                         if ((size == 4 || size == 8) && has_only_a_r48_field (klass)) {
1080                                 cinfo->args [n].size = size;
1081
1082                                 /* It was 7, now it is 8 in LinuxPPC */
1083                                 if (fr <= PPC_LAST_FPARG_REG) {
1084                                         cinfo->args [n].regtype = RegTypeFP;
1085                                         cinfo->args [n].reg = fr;
1086                                         fr ++;
1087                                         FP_ALSO_IN_REG (gr ++);
1088                                         if (size == 8)
1089                                                 FP_ALSO_IN_REG (gr ++);
1090                                         ALWAYS_ON_STACK (stack_size += size);
1091                                 } else {
1092                                         cinfo->args [n].offset = PPC_STACK_PARAM_OFFSET + stack_size;
1093                                         cinfo->args [n].regtype = RegTypeBase;
1094                                         cinfo->args [n].reg = ppc_sp; /* in the caller*/
1095                                         stack_size += 8;
1096                                 }
1097                                 n++;
1098                                 break;
1099                         }
1100 #endif
1101                         DEBUG(printf ("load %d bytes struct\n",
1102                                       mono_class_native_size (sig->params [i]->data.klass, NULL)));
1103
1104 #if PPC_PASS_STRUCTS_BY_VALUE
1105                         {
1106                                 int align_size = size;
1107                                 int nregs = 0;
1108                                 int rest = PPC_LAST_ARG_REG - gr + 1;
1109                                 int n_in_regs;
1110
1111                                 align_size += (sizeof (gpointer) - 1);
1112                                 align_size &= ~(sizeof (gpointer) - 1);
1113                                 nregs = (align_size + sizeof (gpointer) -1 ) / sizeof (gpointer);
1114                                 n_in_regs = MIN (rest, nregs);
1115                                 if (n_in_regs < 0)
1116                                         n_in_regs = 0;
1117 #ifdef __APPLE__
1118                                 /* FIXME: check this */
1119                                 if (size >= 3 && size % 4 != 0)
1120                                         n_in_regs = 0;
1121 #endif
1122                                 cinfo->args [n].regtype = RegTypeStructByVal;
1123                                 cinfo->args [n].vtregs = n_in_regs;
1124                                 cinfo->args [n].size = n_in_regs;
1125                                 cinfo->args [n].vtsize = nregs - n_in_regs;
1126                                 cinfo->args [n].reg = gr;
1127
1128 #ifdef __mono_ppc64__
1129                                 if (nregs == 1 && is_pinvoke)
1130                                         cinfo->args [n].bytes = size;
1131                                 else
1132 #endif
1133                                         cinfo->args [n].bytes = 0;
1134                                 gr += n_in_regs;
1135                                 cinfo->args [n].offset = PPC_STACK_PARAM_OFFSET + stack_size;
1136                                 /*g_print ("offset for arg %d at %d\n", n, PPC_STACK_PARAM_OFFSET + stack_size);*/
1137                                 stack_size += nregs * sizeof (gpointer);
1138                         }
1139 #else
1140                         add_general (&gr, &stack_size, cinfo->args + n, TRUE);
1141                         cinfo->args [n].regtype = RegTypeStructByAddr;
1142                         cinfo->args [n].vtsize = size;
1143 #endif
1144                         n++;
1145                         break;
1146                 }
1147                 case MONO_TYPE_U8:
1148                 case MONO_TYPE_I8:
1149                         cinfo->args [n].size = 8;
1150                         add_general (&gr, &stack_size, cinfo->args + n, SIZEOF_REGISTER == 8);
1151                         n++;
1152                         break;
1153                 case MONO_TYPE_R4:
1154                         cinfo->args [n].size = 4;
1155
1156                         /* It was 7, now it is 8 in LinuxPPC */
1157                         if (fr <= PPC_LAST_FPARG_REG) {
1158                                 cinfo->args [n].regtype = RegTypeFP;
1159                                 cinfo->args [n].reg = fr;
1160                                 fr ++;
1161                                 FP_ALSO_IN_REG (gr ++);
1162                                 ALWAYS_ON_STACK (stack_size += SIZEOF_REGISTER);
1163                         } else {
1164                                 cinfo->args [n].offset = PPC_STACK_PARAM_OFFSET + stack_size + MONO_PPC_32_64_CASE (0, 4);
1165                                 cinfo->args [n].regtype = RegTypeBase;
1166                                 cinfo->args [n].reg = ppc_sp; /* in the caller*/
1167                                 stack_size += SIZEOF_REGISTER;
1168                         }
1169                         n++;
1170                         break;
1171                 case MONO_TYPE_R8:
1172                         cinfo->args [n].size = 8;
1173                         /* It was 7, now it is 8 in LinuxPPC */
1174                         if (fr <= PPC_LAST_FPARG_REG) {
1175                                 cinfo->args [n].regtype = RegTypeFP;
1176                                 cinfo->args [n].reg = fr;
1177                                 fr ++;
1178                                 FP_ALSO_IN_REG (gr += sizeof (double) / SIZEOF_REGISTER);
1179                                 ALWAYS_ON_STACK (stack_size += 8);
1180                         } else {
1181                                 cinfo->args [n].offset = PPC_STACK_PARAM_OFFSET + stack_size;
1182                                 cinfo->args [n].regtype = RegTypeBase;
1183                                 cinfo->args [n].reg = ppc_sp; /* in the caller*/
1184                                 stack_size += 8;
1185                         }
1186                         n++;
1187                         break;
1188                 default:
1189                         g_error ("Can't trampoline 0x%x", sig->params [i]->type);
1190                 }
1191         }
1192         cinfo->nargs = n;
1193
1194         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1195                 /* Prevent implicit arguments and sig_cookie from
1196                    being passed in registers */
1197                 gr = PPC_LAST_ARG_REG + 1;
1198                 /* Emit the signature cookie just before the implicit arguments */
1199                 add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1200         }
1201
1202         {
1203                 simpletype = mini_type_get_underlying_type (NULL, sig->ret);
1204                 switch (simpletype->type) {
1205                 case MONO_TYPE_BOOLEAN:
1206                 case MONO_TYPE_I1:
1207                 case MONO_TYPE_U1:
1208                 case MONO_TYPE_I2:
1209                 case MONO_TYPE_U2:
1210                 case MONO_TYPE_CHAR:
1211                 case MONO_TYPE_I4:
1212                 case MONO_TYPE_U4:
1213                 case MONO_TYPE_I:
1214                 case MONO_TYPE_U:
1215                 case MONO_TYPE_PTR:
1216                 case MONO_TYPE_FNPTR:
1217                 case MONO_TYPE_CLASS:
1218                 case MONO_TYPE_OBJECT:
1219                 case MONO_TYPE_SZARRAY:
1220                 case MONO_TYPE_ARRAY:
1221                 case MONO_TYPE_STRING:
1222                         cinfo->ret.reg = ppc_r3;
1223                         break;
1224                 case MONO_TYPE_U8:
1225                 case MONO_TYPE_I8:
1226                         cinfo->ret.reg = ppc_r3;
1227                         break;
1228                 case MONO_TYPE_R4:
1229                 case MONO_TYPE_R8:
1230                         cinfo->ret.reg = ppc_f1;
1231                         cinfo->ret.regtype = RegTypeFP;
1232                         break;
1233                 case MONO_TYPE_GENERICINST:
1234                         if (!mono_type_generic_inst_is_valuetype (simpletype)) {
1235                                 cinfo->ret.reg = ppc_r3;
1236                                 break;
1237                         }
1238                         break;
1239                 case MONO_TYPE_VALUETYPE:
1240                         break;
1241                 case MONO_TYPE_TYPEDBYREF:
1242                 case MONO_TYPE_VOID:
1243                         break;
1244                 default:
1245                         g_error ("Can't handle as return value 0x%x", sig->ret->type);
1246                 }
1247         }
1248
1249         /* align stack size to 16 */
1250         DEBUG (printf ("      stack size: %d (%d)\n", (stack_size + 15) & ~15, stack_size));
1251         stack_size = (stack_size + 15) & ~15;
1252
1253         cinfo->stack_usage = stack_size;
1254         return cinfo;
1255 }
1256
1257 gboolean
1258 mono_arch_tail_call_supported (MonoMethodSignature *caller_sig, MonoMethodSignature *callee_sig)
1259 {
1260         CallInfo *c1, *c2;
1261         gboolean res;
1262         int i;
1263
1264         c1 = get_call_info (NULL, caller_sig);
1265         c2 = get_call_info (NULL, callee_sig);
1266         res = c1->stack_usage >= c2->stack_usage;
1267         if (callee_sig->ret && MONO_TYPE_ISSTRUCT (callee_sig->ret))
1268                 /* An address on the callee's stack is passed as the first argument */
1269                 res = FALSE;
1270         for (i = 0; i < c2->nargs; ++i) {
1271                 if (c2->args [i].regtype == RegTypeStructByAddr)
1272                         /* An address on the callee's stack is passed as the argument */
1273                         res = FALSE;
1274         }
1275
1276         /*
1277         if (!mono_debug_count ())
1278                 res = FALSE;
1279         */
1280
1281         g_free (c1);
1282         g_free (c2);
1283
1284         return res;
1285 }
1286
1287 /*
1288  * Set var information according to the calling convention. ppc version.
1289  * The locals var stuff should most likely be split in another method.
1290  */
1291 void
1292 mono_arch_allocate_vars (MonoCompile *m)
1293 {
1294         MonoMethodSignature *sig;
1295         MonoMethodHeader *header;
1296         MonoInst *inst;
1297         int i, offset, size, align, curinst;
1298         int frame_reg = ppc_sp;
1299         gint32 *offsets;
1300         guint32 locals_stack_size, locals_stack_align;
1301
1302         m->flags |= MONO_CFG_HAS_SPILLUP;
1303
1304         /* allow room for the vararg method args: void* and long/double */
1305         if (mono_jit_trace_calls != NULL && mono_trace_eval (m->method))
1306                 m->param_area = MAX (m->param_area, sizeof (gpointer)*8);
1307         /* this is bug #60332: remove when #59509 is fixed, so no weird vararg 
1308          * call convs needs to be handled this way.
1309          */
1310         if (m->flags & MONO_CFG_HAS_VARARGS)
1311                 m->param_area = MAX (m->param_area, sizeof (gpointer)*8);
1312         /* gtk-sharp and other broken code will dllimport vararg functions even with
1313          * non-varargs signatures. Since there is little hope people will get this right
1314          * we assume they won't.
1315          */
1316         if (m->method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE)
1317                 m->param_area = MAX (m->param_area, sizeof (gpointer)*8);
1318
1319         header = m->header;
1320
1321         /* 
1322          * We use the frame register also for any method that has
1323          * exception clauses. This way, when the handlers are called,
1324          * the code will reference local variables using the frame reg instead of
1325          * the stack pointer: if we had to restore the stack pointer, we'd
1326          * corrupt the method frames that are already on the stack (since
1327          * filters get called before stack unwinding happens) when the filter
1328          * code would call any method (this also applies to finally etc.).
1329          */ 
1330         if ((m->flags & MONO_CFG_HAS_ALLOCA) || header->num_clauses)
1331                 frame_reg = ppc_r31;
1332         m->frame_reg = frame_reg;
1333         if (frame_reg != ppc_sp) {
1334                 m->used_int_regs |= 1 << frame_reg;
1335         }
1336
1337         sig = mono_method_signature (m->method);
1338         
1339         offset = 0;
1340         curinst = 0;
1341         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1342                 m->ret->opcode = OP_REGVAR;
1343                 m->ret->inst_c0 = m->ret->dreg = ppc_r3;
1344         } else {
1345                 /* FIXME: handle long values? */
1346                 switch (mini_type_get_underlying_type (m->generic_sharing_context, sig->ret)->type) {
1347                 case MONO_TYPE_VOID:
1348                         break;
1349                 case MONO_TYPE_R4:
1350                 case MONO_TYPE_R8:
1351                         m->ret->opcode = OP_REGVAR;
1352                         m->ret->inst_c0 = m->ret->dreg = ppc_f1;
1353                         break;
1354                 default:
1355                         m->ret->opcode = OP_REGVAR;
1356                         m->ret->inst_c0 = m->ret->dreg = ppc_r3;
1357                         break;
1358                 }
1359         }
1360         /* local vars are at a positive offset from the stack pointer */
1361         /* 
1362          * also note that if the function uses alloca, we use ppc_r31
1363          * to point at the local variables.
1364          */
1365         offset = PPC_MINIMAL_STACK_SIZE; /* linkage area */
1366         /* align the offset to 16 bytes: not sure this is needed here  */
1367         //offset += 16 - 1;
1368         //offset &= ~(16 - 1);
1369
1370         /* add parameter area size for called functions */
1371         offset += m->param_area;
1372         offset += 16 - 1;
1373         offset &= ~(16 - 1);
1374
1375         /* allow room to save the return value */
1376         if (mono_jit_trace_calls != NULL && mono_trace_eval (m->method))
1377                 offset += 8;
1378
1379         /* the MonoLMF structure is stored just below the stack pointer */
1380
1381 #if 0
1382         /* this stuff should not be needed on ppc and the new jit,
1383          * because a call on ppc to the handlers doesn't change the 
1384          * stack pointer and the jist doesn't manipulate the stack pointer
1385          * for operations involving valuetypes.
1386          */
1387         /* reserve space to store the esp */
1388         offset += sizeof (gpointer);
1389
1390         /* this is a global constant */
1391         mono_exc_esp_offset = offset;
1392 #endif
1393
1394         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1395                 offset += sizeof(gpointer) - 1;
1396                 offset &= ~(sizeof(gpointer) - 1);
1397
1398                 m->vret_addr->opcode = OP_REGOFFSET;
1399                 m->vret_addr->inst_basereg = frame_reg;
1400                 m->vret_addr->inst_offset = offset;
1401
1402                 if (G_UNLIKELY (m->verbose_level > 1)) {
1403                         printf ("vret_addr =");
1404                         mono_print_ins (m->vret_addr);
1405                 }
1406
1407                 offset += sizeof(gpointer);
1408         }
1409
1410         offsets = mono_allocate_stack_slots (m, FALSE, &locals_stack_size, &locals_stack_align);
1411         if (locals_stack_align) {
1412                 offset += (locals_stack_align - 1);
1413                 offset &= ~(locals_stack_align - 1);
1414         }
1415         for (i = m->locals_start; i < m->num_varinfo; i++) {
1416                 if (offsets [i] != -1) {
1417                         MonoInst *inst = m->varinfo [i];
1418                         inst->opcode = OP_REGOFFSET;
1419                         inst->inst_basereg = frame_reg;
1420                         inst->inst_offset = offset + offsets [i];
1421                         /*
1422                         g_print ("allocating local %d (%s) to %d\n",
1423                                 i, mono_type_get_name (inst->inst_vtype), inst->inst_offset);
1424                         */
1425                 }
1426         }
1427         offset += locals_stack_size;
1428
1429         curinst = 0;
1430         if (sig->hasthis) {
1431                 inst = m->args [curinst];
1432                 if (inst->opcode != OP_REGVAR) {
1433                         inst->opcode = OP_REGOFFSET;
1434                         inst->inst_basereg = frame_reg;
1435                         offset += sizeof (gpointer) - 1;
1436                         offset &= ~(sizeof (gpointer) - 1);
1437                         inst->inst_offset = offset;
1438                         offset += sizeof (gpointer);
1439                 }
1440                 curinst++;
1441         }
1442
1443         for (i = 0; i < sig->param_count; ++i) {
1444                 inst = m->args [curinst];
1445                 if (inst->opcode != OP_REGVAR) {
1446                         inst->opcode = OP_REGOFFSET;
1447                         inst->inst_basereg = frame_reg;
1448                         if (sig->pinvoke) {
1449                                 size = mono_type_native_stack_size (sig->params [i], (guint32*)&align);
1450                                 inst->backend.is_pinvoke = 1;
1451                         } else {
1452                                 size = mono_type_size (sig->params [i], &align);
1453                         }
1454                         if (MONO_TYPE_ISSTRUCT (sig->params [i]) && size < sizeof (gpointer))
1455                                 size = align = sizeof (gpointer);
1456                         /* 
1457                          * Use at least 4/8 byte alignment, since these might be passed in registers, and
1458                          * they are saved using std in the prolog.
1459                          */
1460                         align = sizeof (gpointer);
1461                         offset += align - 1;
1462                         offset &= ~(align - 1);
1463                         inst->inst_offset = offset;
1464                         offset += size;
1465                 }
1466                 curinst++;
1467         }
1468
1469         /* some storage for fp conversions */
1470         offset += 8 - 1;
1471         offset &= ~(8 - 1);
1472         m->arch.fp_conv_var_offset = offset;
1473         offset += 8;
1474
1475         /* align the offset to 16 bytes */
1476         offset += 16 - 1;
1477         offset &= ~(16 - 1);
1478
1479         /* change sign? */
1480         m->stack_offset = offset;
1481
1482         if (sig->call_convention == MONO_CALL_VARARG) {
1483                 CallInfo *cinfo = get_call_info (m->generic_sharing_context, m->method->signature);
1484
1485                 m->sig_cookie = cinfo->sig_cookie.offset;
1486
1487                 g_free(cinfo);
1488         }
1489 }
1490
1491 void
1492 mono_arch_create_vars (MonoCompile *cfg)
1493 {
1494         MonoMethodSignature *sig = mono_method_signature (cfg->method);
1495
1496         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1497                 cfg->vret_addr = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_ARG);
1498         }
1499 }
1500
1501 /* Fixme: we need an alignment solution for enter_method and mono_arch_call_opcode,
1502  * currently alignment in mono_arch_call_opcode is computed without arch_get_argument_info 
1503  */
1504
1505 static void
1506 emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
1507 {
1508         int sig_reg = mono_alloc_ireg (cfg);
1509
1510         /* FIXME: Add support for signature tokens to AOT */
1511         cfg->disable_aot = TRUE;
1512
1513         MONO_EMIT_NEW_ICONST (cfg, sig_reg, (gulong)call->signature);
1514         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG,
1515                         ppc_r1, cinfo->sig_cookie.offset, sig_reg);
1516 }
1517
1518 void
1519 mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
1520 {
1521         MonoInst *in, *ins;
1522         MonoMethodSignature *sig;
1523         int i, n;
1524         CallInfo *cinfo;
1525
1526         sig = call->signature;
1527         n = sig->param_count + sig->hasthis;
1528         
1529         cinfo = get_call_info (cfg->generic_sharing_context, sig);
1530
1531         for (i = 0; i < n; ++i) {
1532                 ArgInfo *ainfo = cinfo->args + i;
1533                 MonoType *t;
1534
1535                 if (i >= sig->hasthis)
1536                         t = sig->params [i - sig->hasthis];
1537                 else
1538                         t = &mono_defaults.int_class->byval_arg;
1539                 t = mini_type_get_underlying_type (cfg->generic_sharing_context, t);
1540
1541                 if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos))
1542                         emit_sig_cookie (cfg, call, cinfo);
1543
1544                 in = call->args [i];
1545
1546                 if (ainfo->regtype == RegTypeGeneral) {
1547 #ifndef __mono_ppc64__
1548                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
1549                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1550                                 ins->dreg = mono_alloc_ireg (cfg);
1551                                 ins->sreg1 = in->dreg + 1;
1552                                 MONO_ADD_INS (cfg->cbb, ins);
1553                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + 1, FALSE);
1554
1555                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1556                                 ins->dreg = mono_alloc_ireg (cfg);
1557                                 ins->sreg1 = in->dreg + 2;
1558                                 MONO_ADD_INS (cfg->cbb, ins);
1559                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
1560                         } else
1561 #endif
1562                         {
1563                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1564                                 ins->dreg = mono_alloc_ireg (cfg);
1565                                 ins->sreg1 = in->dreg;
1566                                 MONO_ADD_INS (cfg->cbb, ins);
1567
1568                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
1569                         }
1570                 } else if (ainfo->regtype == RegTypeStructByAddr) {
1571                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1572                         ins->opcode = OP_OUTARG_VT;
1573                         ins->sreg1 = in->dreg;
1574                         ins->klass = in->klass;
1575                         ins->inst_p0 = call;
1576                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1577                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1578                         MONO_ADD_INS (cfg->cbb, ins);
1579                 } else if (ainfo->regtype == RegTypeStructByVal) {
1580                         /* this is further handled in mono_arch_emit_outarg_vt () */
1581                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1582                         ins->opcode = OP_OUTARG_VT;
1583                         ins->sreg1 = in->dreg;
1584                         ins->klass = in->klass;
1585                         ins->inst_p0 = call;
1586                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1587                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1588                         MONO_ADD_INS (cfg->cbb, ins);
1589                 } else if (ainfo->regtype == RegTypeBase) {
1590                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
1591                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, ppc_r1, ainfo->offset, in->dreg);
1592                         } else if (!t->byref && ((t->type == MONO_TYPE_R4) || (t->type == MONO_TYPE_R8))) {
1593                                 if (t->type == MONO_TYPE_R8)
1594                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ppc_r1, ainfo->offset, in->dreg);
1595                                 else
1596                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, ppc_r1, ainfo->offset, in->dreg);
1597                         } else {
1598                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ppc_r1, ainfo->offset, in->dreg);
1599                         }
1600                 } else if (ainfo->regtype == RegTypeFP) {
1601                         if (t->type == MONO_TYPE_VALUETYPE) {
1602                                 /* this is further handled in mono_arch_emit_outarg_vt () */
1603                                 MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1604                                 ins->opcode = OP_OUTARG_VT;
1605                                 ins->sreg1 = in->dreg;
1606                                 ins->klass = in->klass;
1607                                 ins->inst_p0 = call;
1608                                 ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1609                                 memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1610                                 MONO_ADD_INS (cfg->cbb, ins);
1611
1612                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
1613                         } else {
1614                                 int dreg = mono_alloc_freg (cfg);
1615
1616                                 if (ainfo->size == 4) {
1617                                         MONO_EMIT_NEW_UNALU (cfg, OP_FCONV_TO_R4, dreg, in->dreg);
1618                                 } else {
1619                                         MONO_INST_NEW (cfg, ins, OP_FMOVE);
1620                                         ins->dreg = dreg;
1621                                         ins->sreg1 = in->dreg;
1622                                         MONO_ADD_INS (cfg->cbb, ins);
1623                                 }
1624
1625                                 mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, TRUE);
1626                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
1627                         }
1628                 } else {
1629                         g_assert_not_reached ();
1630                 }
1631         }
1632
1633         /* Emit the signature cookie in the case that there is no
1634            additional argument */
1635         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n == sig->sentinelpos))
1636                 emit_sig_cookie (cfg, call, cinfo);
1637
1638         if (cinfo->struct_ret) {
1639                 MonoInst *vtarg;
1640
1641                 MONO_INST_NEW (cfg, vtarg, OP_MOVE);
1642                 vtarg->sreg1 = call->vret_var->dreg;
1643                 vtarg->dreg = mono_alloc_preg (cfg);
1644                 MONO_ADD_INS (cfg->cbb, vtarg);
1645
1646                 mono_call_inst_add_outarg_reg (cfg, call, vtarg->dreg, cinfo->struct_ret, FALSE);
1647         }
1648
1649         call->stack_usage = cinfo->stack_usage;
1650         cfg->param_area = MAX (PPC_MINIMAL_PARAM_AREA_SIZE, MAX (cfg->param_area, cinfo->stack_usage));
1651         cfg->flags |= MONO_CFG_HAS_CALLS;
1652
1653         g_free (cinfo);
1654 }
1655
1656 #ifndef DISABLE_JIT
1657
1658 void
1659 mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
1660 {
1661         MonoCallInst *call = (MonoCallInst*)ins->inst_p0;
1662         ArgInfo *ainfo = ins->inst_p1;
1663         int ovf_size = ainfo->vtsize;
1664         int doffset = ainfo->offset;
1665         int i, soffset, dreg;
1666
1667         if (ainfo->regtype == RegTypeStructByVal) {
1668 #ifdef __APPLE__
1669                 guint32 size = 0;
1670 #endif
1671                 soffset = 0;
1672 #ifdef __APPLE__
1673                 /*
1674                  * Darwin pinvokes needs some special handling for 1
1675                  * and 2 byte arguments
1676                  */
1677                 g_assert (ins->klass);
1678                 if (call->signature->pinvoke)
1679                         size =  mono_class_native_size (ins->klass, NULL);
1680                 if (size == 2 || size == 1) {
1681                         int tmpr = mono_alloc_ireg (cfg);
1682                         if (size == 1)
1683                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, tmpr, src->dreg, soffset);
1684                         else
1685                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI2_MEMBASE, tmpr, src->dreg, soffset);
1686                         dreg = mono_alloc_ireg (cfg);
1687                         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, dreg, tmpr);
1688                         mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, FALSE);
1689                 } else
1690 #endif
1691                         for (i = 0; i < ainfo->vtregs; ++i) {
1692                                 int antipadding = 0;
1693                                 if (ainfo->bytes) {
1694                                         g_assert (i == 0);
1695                                         antipadding = sizeof (gpointer) - ainfo->bytes;
1696                                 }
1697                                 dreg = mono_alloc_ireg (cfg);
1698                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, src->dreg, soffset);
1699                                 if (antipadding)
1700                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_UN_IMM, dreg, dreg, antipadding * 8);
1701                                 mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg + i, FALSE);
1702                                 soffset += sizeof (gpointer);
1703                         }
1704                 if (ovf_size != 0)
1705                         mini_emit_memcpy (cfg, ppc_r1, doffset + soffset, src->dreg, soffset, ovf_size * sizeof (gpointer), 0);
1706         } else if (ainfo->regtype == RegTypeFP) {
1707                 int tmpr = mono_alloc_freg (cfg);
1708                 if (ainfo->size == 4)
1709                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR4_MEMBASE, tmpr, src->dreg, 0);
1710                 else
1711                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR8_MEMBASE, tmpr, src->dreg, 0);
1712                 dreg = mono_alloc_freg (cfg);
1713                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, dreg, tmpr);
1714                 mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, TRUE);
1715         } else {
1716                 MonoInst *vtcopy = mono_compile_create_var (cfg, &src->klass->byval_arg, OP_LOCAL);
1717                 MonoInst *load;
1718                 guint32 size;
1719
1720                 /* FIXME: alignment? */
1721                 if (call->signature->pinvoke) {
1722                         size = mono_type_native_stack_size (&src->klass->byval_arg, NULL);
1723                         vtcopy->backend.is_pinvoke = 1;
1724                 } else {
1725                         size = mini_type_stack_size (cfg->generic_sharing_context, &src->klass->byval_arg, NULL);
1726                 }
1727                 if (size > 0)
1728                         g_assert (ovf_size > 0);
1729
1730                 EMIT_NEW_VARLOADA (cfg, load, vtcopy, vtcopy->inst_vtype);
1731                 mini_emit_memcpy (cfg, load->dreg, 0, src->dreg, 0, size, 0);
1732
1733                 if (ainfo->offset)
1734                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ppc_r1, ainfo->offset, load->dreg);
1735                 else
1736                         mono_call_inst_add_outarg_reg (cfg, call, load->dreg, ainfo->reg, FALSE);
1737         }
1738 }
1739
1740 void
1741 mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
1742 {
1743         MonoType *ret = mini_type_get_underlying_type (cfg->generic_sharing_context,
1744                         mono_method_signature (method)->ret);
1745
1746         if (!ret->byref) {
1747 #ifndef __mono_ppc64__
1748                 if (ret->type == MONO_TYPE_I8 || ret->type == MONO_TYPE_U8) {
1749                         MonoInst *ins;
1750
1751                         MONO_INST_NEW (cfg, ins, OP_SETLRET);
1752                         ins->sreg1 = val->dreg + 1;
1753                         ins->sreg2 = val->dreg + 2;
1754                         MONO_ADD_INS (cfg->cbb, ins);
1755                         return;
1756                 }
1757 #endif
1758                 if (ret->type == MONO_TYPE_R8 || ret->type == MONO_TYPE_R4) {
1759                         MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, cfg->ret->dreg, val->dreg);
1760                         return;
1761                 }
1762         }
1763         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
1764 }
1765
1766 /* FIXME: this is just a useless hint: fix the interface to include the opcode */
1767 gboolean
1768 mono_arch_is_inst_imm (gint64 imm)
1769 {
1770        return TRUE;
1771 }
1772
1773 #endif /* DISABLE_JIT */
1774
1775 /*
1776  * Allow tracing to work with this interface (with an optional argument)
1777  */
1778
1779 void*
1780 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
1781 {
1782         guchar *code = p;
1783
1784         ppc_load_ptr (code, ppc_r3, cfg->method);
1785         ppc_li (code, ppc_r4, 0); /* NULL ebp for now */
1786         ppc_load_func (code, ppc_r0, func);
1787         ppc_mtlr (code, ppc_r0);
1788         ppc_blrl (code);
1789         return code;
1790 }
1791
1792 enum {
1793         SAVE_NONE,
1794         SAVE_STRUCT,
1795         SAVE_ONE,
1796         SAVE_TWO,
1797         SAVE_FP
1798 };
1799
1800 void*
1801 mono_arch_instrument_epilog_full (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments, gboolean preserve_argument_registers)
1802 {
1803         guchar *code = p;
1804         int save_mode = SAVE_NONE;
1805         int offset;
1806         MonoMethod *method = cfg->method;
1807         int rtype = mini_type_get_underlying_type (cfg->generic_sharing_context,
1808                         mono_method_signature (method)->ret)->type;
1809         int save_offset = PPC_STACK_PARAM_OFFSET + cfg->param_area;
1810         save_offset += 15;
1811         save_offset &= ~15;
1812         
1813         offset = code - cfg->native_code;
1814         /* we need about 16 instructions */
1815         if (offset > (cfg->code_size - 16 * 4)) {
1816                 cfg->code_size *= 2;
1817                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
1818                 code = cfg->native_code + offset;
1819         }
1820
1821         switch (rtype) {
1822         case MONO_TYPE_VOID:
1823                 /* special case string .ctor icall */
1824                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
1825                         save_mode = SAVE_ONE;
1826                 else
1827                         save_mode = SAVE_NONE;
1828                 break;
1829 #ifndef __mono_ppc64__
1830         case MONO_TYPE_I8:
1831         case MONO_TYPE_U8:
1832                 save_mode = SAVE_TWO;
1833                 break;
1834 #endif
1835         case MONO_TYPE_R4:
1836         case MONO_TYPE_R8:
1837                 save_mode = SAVE_FP;
1838                 break;
1839         case MONO_TYPE_VALUETYPE:
1840                 save_mode = SAVE_STRUCT;
1841                 break;
1842         default:
1843                 save_mode = SAVE_ONE;
1844                 break;
1845         }
1846
1847         switch (save_mode) {
1848         case SAVE_TWO:
1849                 ppc_stw (code, ppc_r3, save_offset, cfg->frame_reg);
1850                 ppc_stw (code, ppc_r4, save_offset + 4, cfg->frame_reg);
1851                 if (enable_arguments) {
1852                         ppc_mr (code, ppc_r5, ppc_r4);
1853                         ppc_mr (code, ppc_r4, ppc_r3);
1854                 }
1855                 break;
1856         case SAVE_ONE:
1857                 ppc_stptr (code, ppc_r3, save_offset, cfg->frame_reg);
1858                 if (enable_arguments) {
1859                         ppc_mr (code, ppc_r4, ppc_r3);
1860                 }
1861                 break;
1862         case SAVE_FP:
1863                 ppc_stfd (code, ppc_f1, save_offset, cfg->frame_reg);
1864                 if (enable_arguments) {
1865                         /* FIXME: what reg?  */
1866                         ppc_fmr (code, ppc_f3, ppc_f1);
1867                         /* FIXME: use 8 byte load on PPC64 */
1868                         ppc_lwz (code, ppc_r4, save_offset, cfg->frame_reg);
1869                         ppc_lwz (code, ppc_r5, save_offset + 4, cfg->frame_reg);
1870                 }
1871                 break;
1872         case SAVE_STRUCT:
1873                 if (enable_arguments) {
1874                         /* FIXME: get the actual address  */
1875                         ppc_mr (code, ppc_r4, ppc_r3);
1876                 }
1877                 break;
1878         case SAVE_NONE:
1879         default:
1880                 break;
1881         }
1882
1883         ppc_load_ptr (code, ppc_r3, cfg->method);
1884         ppc_load_func (code, ppc_r0, func);
1885         ppc_mtlr (code, ppc_r0);
1886         ppc_blrl (code);
1887
1888         switch (save_mode) {
1889         case SAVE_TWO:
1890                 ppc_lwz (code, ppc_r3, save_offset, cfg->frame_reg);
1891                 ppc_lwz (code, ppc_r4, save_offset + 4, cfg->frame_reg);
1892                 break;
1893         case SAVE_ONE:
1894                 ppc_ldptr (code, ppc_r3, save_offset, cfg->frame_reg);
1895                 break;
1896         case SAVE_FP:
1897                 ppc_lfd (code, ppc_f1, save_offset, cfg->frame_reg);
1898                 break;
1899         case SAVE_NONE:
1900         default:
1901                 break;
1902         }
1903
1904         return code;
1905 }
1906 /*
1907  * Conditional branches have a small offset, so if it is likely overflowed,
1908  * we do a branch to the end of the method (uncond branches have much larger
1909  * offsets) where we perform the conditional and jump back unconditionally.
1910  * It's slightly slower, since we add two uncond branches, but it's very simple
1911  * with the current patch implementation and such large methods are likely not
1912  * going to be perf critical anyway.
1913  */
1914 typedef struct {
1915         union {
1916                 MonoBasicBlock *bb;
1917                 const char *exception;
1918         } data;
1919         guint32 ip_offset;
1920         guint16 b0_cond;
1921         guint16 b1_cond;
1922 } MonoOvfJump;
1923
1924 #define EMIT_COND_BRANCH_FLAGS(ins,b0,b1) \
1925 if (0 && ins->inst_true_bb->native_offset) { \
1926         ppc_bc (code, (b0), (b1), (code - cfg->native_code + ins->inst_true_bb->native_offset) & 0xffff); \
1927 } else { \
1928         int br_disp = ins->inst_true_bb->max_offset - offset;   \
1929         if (!ppc_is_imm16 (br_disp + 1024) || ! ppc_is_imm16 (ppc_is_imm16 (br_disp - 1024))) { \
1930                 MonoOvfJump *ovfj = mono_mempool_alloc (cfg->mempool, sizeof (MonoOvfJump));    \
1931                 ovfj->data.bb = ins->inst_true_bb;      \
1932                 ovfj->ip_offset = 0;    \
1933                 ovfj->b0_cond = (b0);   \
1934                 ovfj->b1_cond = (b1);   \
1935                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB_OVF, ovfj); \
1936                 ppc_b (code, 0);        \
1937         } else {        \
1938                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb); \
1939                 ppc_bc (code, (b0), (b1), 0);   \
1940         }       \
1941 }
1942
1943 #define EMIT_COND_BRANCH(ins,cond) EMIT_COND_BRANCH_FLAGS(ins, branch_b0_table [(cond)], branch_b1_table [(cond)])
1944
1945 /* emit an exception if condition is fail
1946  *
1947  * We assign the extra code used to throw the implicit exceptions
1948  * to cfg->bb_exit as far as the big branch handling is concerned
1949  */
1950 #define EMIT_COND_SYSTEM_EXCEPTION_FLAGS(b0,b1,exc_name)            \
1951         do {                                                        \
1952                 int br_disp = cfg->bb_exit->max_offset - offset;        \
1953                 if (!ppc_is_imm16 (br_disp + 1024) || ! ppc_is_imm16 (ppc_is_imm16 (br_disp - 1024))) { \
1954                         MonoOvfJump *ovfj = mono_mempool_alloc (cfg->mempool, sizeof (MonoOvfJump));    \
1955                         ovfj->data.exception = (exc_name);      \
1956                         ovfj->ip_offset = code - cfg->native_code;      \
1957                         ovfj->b0_cond = (b0);   \
1958                         ovfj->b1_cond = (b1);   \
1959                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_EXC_OVF, ovfj); \
1960                         ppc_bl (code, 0);       \
1961                         cfg->bb_exit->max_offset += 24; \
1962                 } else {        \
1963                         mono_add_patch_info (cfg, code - cfg->native_code,   \
1964                                     MONO_PATCH_INFO_EXC, exc_name);  \
1965                         ppc_bcl (code, (b0), (b1), 0);  \
1966                 }       \
1967         } while (0); 
1968
1969 #define EMIT_COND_SYSTEM_EXCEPTION(cond,exc_name) EMIT_COND_SYSTEM_EXCEPTION_FLAGS(branch_b0_table [(cond)], branch_b1_table [(cond)], (exc_name))
1970
1971 void
1972 mono_arch_peephole_pass_1 (MonoCompile *cfg, MonoBasicBlock *bb)
1973 {
1974 }
1975
1976 static int
1977 normalize_opcode (int opcode)
1978 {
1979         switch (opcode) {
1980 #ifndef __mono_ilp32__
1981         case MONO_PPC_32_64_CASE (OP_LOADI4_MEMBASE, OP_LOADI8_MEMBASE):
1982                 return OP_LOAD_MEMBASE;
1983         case MONO_PPC_32_64_CASE (OP_LOADI4_MEMINDEX, OP_LOADI8_MEMINDEX):
1984                 return OP_LOAD_MEMINDEX;
1985         case MONO_PPC_32_64_CASE (OP_STOREI4_MEMBASE_REG, OP_STOREI8_MEMBASE_REG):
1986                 return OP_STORE_MEMBASE_REG;
1987         case MONO_PPC_32_64_CASE (OP_STOREI4_MEMBASE_IMM, OP_STOREI8_MEMBASE_IMM):
1988                 return OP_STORE_MEMBASE_IMM;
1989         case MONO_PPC_32_64_CASE (OP_STOREI4_MEMINDEX, OP_STOREI8_MEMINDEX):
1990                 return OP_STORE_MEMINDEX;
1991 #endif
1992         case MONO_PPC_32_64_CASE (OP_ISHR_IMM, OP_LSHR_IMM):
1993                 return OP_SHR_IMM;
1994         case MONO_PPC_32_64_CASE (OP_ISHR_UN_IMM, OP_LSHR_UN_IMM):
1995                 return OP_SHR_UN_IMM;
1996         default:
1997                 return opcode;
1998         }
1999 }
2000
2001 void
2002 mono_arch_peephole_pass_2 (MonoCompile *cfg, MonoBasicBlock *bb)
2003 {
2004         MonoInst *ins, *n, *last_ins = NULL;
2005
2006         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
2007                 switch (normalize_opcode (ins->opcode)) {
2008                 case OP_MUL_IMM: 
2009                         /* remove unnecessary multiplication with 1 */
2010                         if (ins->inst_imm == 1) {
2011                                 if (ins->dreg != ins->sreg1) {
2012                                         ins->opcode = OP_MOVE;
2013                                 } else {
2014                                         MONO_DELETE_INS (bb, ins);
2015                                         continue;
2016                                 }
2017                         } else {
2018                                 int power2 = mono_is_power_of_two (ins->inst_imm);
2019                                 if (power2 > 0) {
2020                                         ins->opcode = OP_SHL_IMM;
2021                                         ins->inst_imm = power2;
2022                                 }
2023                         }
2024                         break;
2025                 case OP_LOAD_MEMBASE:
2026                         /* 
2027                          * OP_STORE_MEMBASE_REG reg, offset(basereg) 
2028                          * OP_LOAD_MEMBASE offset(basereg), reg
2029                          */
2030                         if (last_ins && normalize_opcode (last_ins->opcode) == OP_STORE_MEMBASE_REG &&
2031                             ins->inst_basereg == last_ins->inst_destbasereg &&
2032                             ins->inst_offset == last_ins->inst_offset) {
2033                                 if (ins->dreg == last_ins->sreg1) {
2034                                         MONO_DELETE_INS (bb, ins);
2035                                         continue;
2036                                 } else {
2037                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
2038                                         ins->opcode = OP_MOVE;
2039                                         ins->sreg1 = last_ins->sreg1;
2040                                 }
2041
2042                         /* 
2043                          * Note: reg1 must be different from the basereg in the second load
2044                          * OP_LOAD_MEMBASE offset(basereg), reg1
2045                          * OP_LOAD_MEMBASE offset(basereg), reg2
2046                          * -->
2047                          * OP_LOAD_MEMBASE offset(basereg), reg1
2048                          * OP_MOVE reg1, reg2
2049                          */
2050                         } else if (last_ins && normalize_opcode (last_ins->opcode) == OP_LOAD_MEMBASE &&
2051                               ins->inst_basereg != last_ins->dreg &&
2052                               ins->inst_basereg == last_ins->inst_basereg &&
2053                               ins->inst_offset == last_ins->inst_offset) {
2054
2055                                 if (ins->dreg == last_ins->dreg) {
2056                                         MONO_DELETE_INS (bb, ins);
2057                                         continue;
2058                                 } else {
2059                                         ins->opcode = OP_MOVE;
2060                                         ins->sreg1 = last_ins->dreg;
2061                                 }
2062
2063                                 //g_assert_not_reached ();
2064
2065 #if 0
2066                         /* 
2067                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2068                          * OP_LOAD_MEMBASE offset(basereg), reg
2069                          * -->
2070                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2071                          * OP_ICONST reg, imm
2072                          */
2073                         } else if (last_ins && normalize_opcode (last_ins->opcode) == OP_STORE_MEMBASE_IMM &&
2074                                    ins->inst_basereg == last_ins->inst_destbasereg &&
2075                                    ins->inst_offset == last_ins->inst_offset) {
2076                                 //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
2077                                 ins->opcode = OP_ICONST;
2078                                 ins->inst_c0 = last_ins->inst_imm;
2079                                 g_assert_not_reached (); // check this rule
2080 #endif
2081                         }
2082                         break;
2083                 case OP_LOADU1_MEMBASE:
2084                 case OP_LOADI1_MEMBASE:
2085                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
2086                                         ins->inst_basereg == last_ins->inst_destbasereg &&
2087                                         ins->inst_offset == last_ins->inst_offset) {
2088                                 ins->opcode = (ins->opcode == OP_LOADI1_MEMBASE) ? OP_ICONV_TO_I1 : OP_ICONV_TO_U1;
2089                                 ins->sreg1 = last_ins->sreg1;                           
2090                         }
2091                         break;
2092                 case OP_LOADU2_MEMBASE:
2093                 case OP_LOADI2_MEMBASE:
2094                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
2095                                         ins->inst_basereg == last_ins->inst_destbasereg &&
2096                                         ins->inst_offset == last_ins->inst_offset) {
2097                                 ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_ICONV_TO_I2 : OP_ICONV_TO_U2;
2098                                 ins->sreg1 = last_ins->sreg1;                           
2099                         }
2100                         break;
2101 #ifdef __mono_ppc64__
2102                 case OP_LOADU4_MEMBASE:
2103                 case OP_LOADI4_MEMBASE:
2104                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG) &&
2105                                         ins->inst_basereg == last_ins->inst_destbasereg &&
2106                                         ins->inst_offset == last_ins->inst_offset) {
2107                                 ins->opcode = (ins->opcode == OP_LOADI4_MEMBASE) ? OP_ICONV_TO_I4 : OP_ICONV_TO_U4;
2108                                 ins->sreg1 = last_ins->sreg1;
2109                         }
2110                         break;
2111 #endif
2112                 case OP_MOVE:
2113                         ins->opcode = OP_MOVE;
2114                         /* 
2115                          * OP_MOVE reg, reg 
2116                          */
2117                         if (ins->dreg == ins->sreg1) {
2118                                 MONO_DELETE_INS (bb, ins);
2119                                 continue;
2120                         }
2121                         /* 
2122                          * OP_MOVE sreg, dreg 
2123                          * OP_MOVE dreg, sreg
2124                          */
2125                         if (last_ins && last_ins->opcode == OP_MOVE &&
2126                             ins->sreg1 == last_ins->dreg &&
2127                             ins->dreg == last_ins->sreg1) {
2128                                 MONO_DELETE_INS (bb, ins);
2129                                 continue;
2130                         }
2131                         break;
2132                 }
2133                 last_ins = ins;
2134                 ins = ins->next;
2135         }
2136         bb->last_ins = last_ins;
2137 }
2138
2139 void
2140 mono_arch_decompose_opts (MonoCompile *cfg, MonoInst *ins)
2141 {
2142         switch (ins->opcode) {
2143         case OP_ICONV_TO_R_UN: {
2144 #if G_BYTE_ORDER == G_BIG_ENDIAN
2145                 static const guint64 adjust_val = 0x4330000000000000ULL;
2146 #else
2147                 static const guint64 adjust_val = 0x0000000000003043ULL;
2148 #endif
2149                 int msw_reg = mono_alloc_ireg (cfg);
2150                 int adj_reg = mono_alloc_freg (cfg);
2151                 int tmp_reg = mono_alloc_freg (cfg);
2152                 int basereg = ppc_sp;
2153                 int offset = -8;
2154                 MONO_EMIT_NEW_ICONST (cfg, msw_reg, 0x43300000);
2155                 if (!ppc_is_imm16 (offset + 4)) {
2156                         basereg = mono_alloc_ireg (cfg);
2157                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IADD_IMM, basereg, cfg->frame_reg, offset);
2158                 }
2159                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, basereg, offset, msw_reg);
2160                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, basereg, offset + 4, ins->sreg1);
2161                 MONO_EMIT_NEW_LOAD_R8 (cfg, adj_reg, &adjust_val);
2162                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR8_MEMBASE, tmp_reg, basereg, offset);
2163                 MONO_EMIT_NEW_BIALU (cfg, OP_FSUB, ins->dreg, tmp_reg, adj_reg);
2164                 ins->opcode = OP_NOP;
2165                 break;
2166         }
2167 #ifndef __mono_ppc64__
2168         case OP_ICONV_TO_R4:
2169         case OP_ICONV_TO_R8: {
2170                 /* If we have a PPC_FEATURE_64 machine we can avoid
2171                    this and use the fcfid instruction.  Otherwise
2172                    on an old 32-bit chip and we have to do this the
2173                    hard way.  */
2174                 if (!(cpu_hw_caps & PPC_ISA_64)) {
2175                         /* FIXME: change precision for CEE_CONV_R4 */
2176                         static const guint64 adjust_val = 0x4330000080000000ULL;
2177                         int msw_reg = mono_alloc_ireg (cfg);
2178                         int xored = mono_alloc_ireg (cfg);
2179                         int adj_reg = mono_alloc_freg (cfg);
2180                         int tmp_reg = mono_alloc_freg (cfg);
2181                         int basereg = ppc_sp;
2182                         int offset = -8;
2183                         if (!ppc_is_imm16 (offset + 4)) {
2184                                 basereg = mono_alloc_ireg (cfg);
2185                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IADD_IMM, basereg, cfg->frame_reg, offset);
2186                         }
2187                         MONO_EMIT_NEW_ICONST (cfg, msw_reg, 0x43300000);
2188                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, basereg, offset, msw_reg);
2189                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_XOR_IMM, xored, ins->sreg1, 0x80000000);
2190                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, basereg, offset + 4, xored);
2191                         MONO_EMIT_NEW_LOAD_R8 (cfg, adj_reg, (gpointer)&adjust_val);
2192                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR8_MEMBASE, tmp_reg, basereg, offset);
2193                         MONO_EMIT_NEW_BIALU (cfg, OP_FSUB, ins->dreg, tmp_reg, adj_reg);
2194                         if (ins->opcode == OP_ICONV_TO_R4)
2195                                 MONO_EMIT_NEW_UNALU (cfg, OP_FCONV_TO_R4, ins->dreg, ins->dreg);
2196                         ins->opcode = OP_NOP;
2197                 }
2198                 break;
2199         }
2200 #endif
2201         case OP_CKFINITE: {
2202                 int msw_reg = mono_alloc_ireg (cfg);
2203                 int basereg = ppc_sp;
2204                 int offset = -8;
2205                 if (!ppc_is_imm16 (offset + 4)) {
2206                         basereg = mono_alloc_ireg (cfg);
2207                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IADD_IMM, basereg, cfg->frame_reg, offset);
2208                 }
2209                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, basereg, offset, ins->sreg1);
2210                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, msw_reg, basereg, offset);
2211                 MONO_EMIT_NEW_UNALU (cfg, OP_CHECK_FINITE, -1, msw_reg);
2212                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, ins->dreg, ins->sreg1);
2213                 ins->opcode = OP_NOP;
2214                 break;
2215         }
2216 #ifdef __mono_ppc64__
2217         case OP_IADD_OVF:
2218         case OP_IADD_OVF_UN:
2219         case OP_ISUB_OVF: {
2220                 int shifted1_reg = mono_alloc_ireg (cfg);
2221                 int shifted2_reg = mono_alloc_ireg (cfg);
2222                 int result_shifted_reg = mono_alloc_ireg (cfg);
2223
2224                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, shifted1_reg, ins->sreg1, 32);
2225                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, shifted2_reg, ins->sreg2, 32);
2226                 MONO_EMIT_NEW_BIALU (cfg, ins->opcode, result_shifted_reg, shifted1_reg, shifted2_reg);
2227                 if (ins->opcode == OP_IADD_OVF_UN)
2228                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_UN_IMM, ins->dreg, result_shifted_reg, 32);
2229                 else
2230                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, ins->dreg, result_shifted_reg, 32);
2231                 ins->opcode = OP_NOP;
2232         }
2233 #endif
2234         }
2235 }
2236
2237 void
2238 mono_arch_decompose_long_opts (MonoCompile *cfg, MonoInst *ins)
2239 {
2240         switch (ins->opcode) {
2241         case OP_LADD_OVF:
2242                 /* ADC sets the condition code */
2243                 MONO_EMIT_NEW_BIALU (cfg, OP_ADDCC, ins->dreg + 1, ins->sreg1 + 1, ins->sreg2 + 1);
2244                 MONO_EMIT_NEW_BIALU (cfg, OP_ADD_OVF_CARRY, ins->dreg + 2, ins->sreg1 + 2, ins->sreg2 + 2);
2245                 NULLIFY_INS (ins);
2246                 break;
2247         case OP_LADD_OVF_UN:
2248                 /* ADC sets the condition code */
2249                 MONO_EMIT_NEW_BIALU (cfg, OP_ADDCC, ins->dreg + 1, ins->sreg1 + 1, ins->sreg2 + 1);
2250                 MONO_EMIT_NEW_BIALU (cfg, OP_ADD_OVF_UN_CARRY, ins->dreg + 2, ins->sreg1 + 2, ins->sreg2 + 2);
2251                 NULLIFY_INS (ins);
2252                 break;
2253         case OP_LSUB_OVF:
2254                 /* SBB sets the condition code */
2255                 MONO_EMIT_NEW_BIALU (cfg, OP_SUBCC, ins->dreg + 1, ins->sreg1 + 1, ins->sreg2 + 1);
2256                 MONO_EMIT_NEW_BIALU (cfg, OP_SUB_OVF_CARRY, ins->dreg + 2, ins->sreg1 + 2, ins->sreg2 + 2);
2257                 NULLIFY_INS (ins);
2258                 break;
2259         case OP_LSUB_OVF_UN:
2260                 /* SBB sets the condition code */
2261                 MONO_EMIT_NEW_BIALU (cfg, OP_SUBCC, ins->dreg + 1, ins->sreg1 + 1, ins->sreg2 + 1);
2262                 MONO_EMIT_NEW_BIALU (cfg, OP_SUB_OVF_UN_CARRY, ins->dreg + 2, ins->sreg1 + 2, ins->sreg2 + 2);
2263                 NULLIFY_INS (ins);
2264                 break;
2265         case OP_LNEG:
2266                 /* From gcc generated code */
2267                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PPC_SUBFIC, ins->dreg + 1, ins->sreg1 + 1, 0);
2268                 MONO_EMIT_NEW_UNALU (cfg, OP_PPC_SUBFZE, ins->dreg + 2, ins->sreg1 + 2);
2269                 NULLIFY_INS (ins);
2270                 break;
2271         default:
2272                 break;
2273         }
2274 }
2275
2276 /* 
2277  * the branch_b0_table should maintain the order of these
2278  * opcodes.
2279 case CEE_BEQ:
2280 case CEE_BGE:
2281 case CEE_BGT:
2282 case CEE_BLE:
2283 case CEE_BLT:
2284 case CEE_BNE_UN:
2285 case CEE_BGE_UN:
2286 case CEE_BGT_UN:
2287 case CEE_BLE_UN:
2288 case CEE_BLT_UN:
2289  */
2290 static const guchar 
2291 branch_b0_table [] = {
2292         PPC_BR_TRUE, 
2293         PPC_BR_FALSE, 
2294         PPC_BR_TRUE, 
2295         PPC_BR_FALSE, 
2296         PPC_BR_TRUE, 
2297         
2298         PPC_BR_FALSE, 
2299         PPC_BR_FALSE, 
2300         PPC_BR_TRUE, 
2301         PPC_BR_FALSE,
2302         PPC_BR_TRUE
2303 };
2304
2305 static const guchar 
2306 branch_b1_table [] = {
2307         PPC_BR_EQ, 
2308         PPC_BR_LT, 
2309         PPC_BR_GT, 
2310         PPC_BR_GT,
2311         PPC_BR_LT, 
2312         
2313         PPC_BR_EQ, 
2314         PPC_BR_LT, 
2315         PPC_BR_GT, 
2316         PPC_BR_GT,
2317         PPC_BR_LT 
2318 };
2319
2320 #define NEW_INS(cfg,dest,op) do {                                       \
2321                 MONO_INST_NEW((cfg), (dest), (op));                     \
2322                 mono_bblock_insert_after_ins (bb, last_ins, (dest));    \
2323         } while (0)
2324
2325 static int
2326 map_to_reg_reg_op (int op)
2327 {
2328         switch (op) {
2329         case OP_ADD_IMM:
2330                 return OP_IADD;
2331         case OP_SUB_IMM:
2332                 return OP_ISUB;
2333         case OP_AND_IMM:
2334                 return OP_IAND;
2335         case OP_COMPARE_IMM:
2336                 return OP_COMPARE;
2337         case OP_ICOMPARE_IMM:
2338                 return OP_ICOMPARE;
2339         case OP_LCOMPARE_IMM:
2340                 return OP_LCOMPARE;
2341         case OP_ADDCC_IMM:
2342                 return OP_IADDCC;
2343         case OP_ADC_IMM:
2344                 return OP_IADC;
2345         case OP_SUBCC_IMM:
2346                 return OP_ISUBCC;
2347         case OP_SBB_IMM:
2348                 return OP_ISBB;
2349         case OP_OR_IMM:
2350                 return OP_IOR;
2351         case OP_XOR_IMM:
2352                 return OP_IXOR;
2353         case OP_MUL_IMM:
2354                 return OP_IMUL;
2355         case OP_LOAD_MEMBASE:
2356                 return OP_LOAD_MEMINDEX;
2357         case OP_LOADI4_MEMBASE:
2358                 return OP_LOADI4_MEMINDEX;
2359         case OP_LOADU4_MEMBASE:
2360                 return OP_LOADU4_MEMINDEX;
2361         case OP_LOADI8_MEMBASE:
2362                 return OP_LOADI8_MEMINDEX;
2363         case OP_LOADU1_MEMBASE:
2364                 return OP_LOADU1_MEMINDEX;
2365         case OP_LOADI2_MEMBASE:
2366                 return OP_LOADI2_MEMINDEX;
2367         case OP_LOADU2_MEMBASE:
2368                 return OP_LOADU2_MEMINDEX;
2369         case OP_LOADI1_MEMBASE:
2370                 return OP_LOADI1_MEMINDEX;
2371         case OP_LOADR4_MEMBASE:
2372                 return OP_LOADR4_MEMINDEX;
2373         case OP_LOADR8_MEMBASE:
2374                 return OP_LOADR8_MEMINDEX;
2375         case OP_STOREI1_MEMBASE_REG:
2376                 return OP_STOREI1_MEMINDEX;
2377         case OP_STOREI2_MEMBASE_REG:
2378                 return OP_STOREI2_MEMINDEX;
2379         case OP_STOREI4_MEMBASE_REG:
2380                 return OP_STOREI4_MEMINDEX;
2381         case OP_STOREI8_MEMBASE_REG:
2382                 return OP_STOREI8_MEMINDEX;
2383         case OP_STORE_MEMBASE_REG:
2384                 return OP_STORE_MEMINDEX;
2385         case OP_STORER4_MEMBASE_REG:
2386                 return OP_STORER4_MEMINDEX;
2387         case OP_STORER8_MEMBASE_REG:
2388                 return OP_STORER8_MEMINDEX;
2389         case OP_STORE_MEMBASE_IMM:
2390                 return OP_STORE_MEMBASE_REG;
2391         case OP_STOREI1_MEMBASE_IMM:
2392                 return OP_STOREI1_MEMBASE_REG;
2393         case OP_STOREI2_MEMBASE_IMM:
2394                 return OP_STOREI2_MEMBASE_REG;
2395         case OP_STOREI4_MEMBASE_IMM:
2396                 return OP_STOREI4_MEMBASE_REG;
2397         case OP_STOREI8_MEMBASE_IMM:
2398                 return OP_STOREI8_MEMBASE_REG;
2399         }
2400         return mono_op_imm_to_op (op);
2401 }
2402
2403 //#define map_to_reg_reg_op(op) (cfg->new_ir? mono_op_imm_to_op (op): map_to_reg_reg_op (op))
2404
2405 #define compare_opcode_is_unsigned(opcode) \
2406                 (((opcode) >= CEE_BNE_UN && (opcode) <= CEE_BLT_UN) ||  \
2407                 ((opcode) >= OP_IBNE_UN && (opcode) <= OP_IBLT_UN) ||   \
2408                 ((opcode) >= OP_LBNE_UN && (opcode) <= OP_LBLT_UN) ||   \
2409                 ((opcode) >= OP_COND_EXC_NE_UN && (opcode) <= OP_COND_EXC_LT_UN) ||     \
2410                 ((opcode) >= OP_COND_EXC_INE_UN && (opcode) <= OP_COND_EXC_ILT_UN) ||   \
2411                 ((opcode) == OP_CLT_UN || (opcode) == OP_CGT_UN ||      \
2412                  (opcode) == OP_ICLT_UN || (opcode) == OP_ICGT_UN ||    \
2413                  (opcode) == OP_LCLT_UN || (opcode) == OP_LCGT_UN))
2414
2415 /*
2416  * Remove from the instruction list the instructions that can't be
2417  * represented with very simple instructions with no register
2418  * requirements.
2419  */
2420 void
2421 mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
2422 {
2423         MonoInst *ins, *next, *temp, *last_ins = NULL;
2424         int imm;
2425
2426         MONO_BB_FOR_EACH_INS (bb, ins) {
2427 loop_start:
2428                 switch (ins->opcode) {
2429                 case OP_IDIV_UN_IMM:
2430                 case OP_IDIV_IMM:
2431                 case OP_IREM_IMM:
2432                 case OP_IREM_UN_IMM:
2433                         NEW_INS (cfg, temp, OP_ICONST);
2434                         temp->inst_c0 = ins->inst_imm;
2435                         temp->dreg = mono_alloc_ireg (cfg);
2436                         ins->sreg2 = temp->dreg;
2437                         if (ins->opcode == OP_IDIV_IMM)
2438                                 ins->opcode = OP_IDIV;
2439                         else if (ins->opcode == OP_IREM_IMM)
2440                                 ins->opcode = OP_IREM;
2441                         else if (ins->opcode == OP_IDIV_UN_IMM)
2442                                 ins->opcode = OP_IDIV_UN;
2443                         else if (ins->opcode == OP_IREM_UN_IMM)
2444                                 ins->opcode = OP_IREM_UN;
2445                         last_ins = temp;
2446                         /* handle rem separately */
2447                         goto loop_start;
2448                 case OP_IREM:
2449                 case OP_IREM_UN:
2450                 CASE_PPC64 (OP_LREM)
2451                 CASE_PPC64 (OP_LREM_UN) {
2452                         MonoInst *mul;
2453                         /* we change a rem dest, src1, src2 to
2454                          * div temp1, src1, src2
2455                          * mul temp2, temp1, src2
2456                          * sub dest, src1, temp2
2457                          */
2458                         if (ins->opcode == OP_IREM || ins->opcode == OP_IREM_UN) {
2459                                 NEW_INS (cfg, mul, OP_IMUL);
2460                                 NEW_INS (cfg, temp, ins->opcode == OP_IREM? OP_IDIV: OP_IDIV_UN);
2461                                 ins->opcode = OP_ISUB;
2462                         } else {
2463                                 NEW_INS (cfg, mul, OP_LMUL);
2464                                 NEW_INS (cfg, temp, ins->opcode == OP_LREM? OP_LDIV: OP_LDIV_UN);
2465                                 ins->opcode = OP_LSUB;
2466                         }
2467                         temp->sreg1 = ins->sreg1;
2468                         temp->sreg2 = ins->sreg2;
2469                         temp->dreg = mono_alloc_ireg (cfg);
2470                         mul->sreg1 = temp->dreg;
2471                         mul->sreg2 = ins->sreg2;
2472                         mul->dreg = mono_alloc_ireg (cfg);
2473                         ins->sreg2 = mul->dreg;
2474                         break;
2475                 }
2476                 case OP_IADD_IMM:
2477                 CASE_PPC64 (OP_LADD_IMM)
2478                 case OP_ADD_IMM:
2479                 case OP_ADDCC_IMM:
2480                         if (!ppc_is_imm16 (ins->inst_imm)) {
2481                                 NEW_INS (cfg,  temp, OP_ICONST);
2482                                 temp->inst_c0 = ins->inst_imm;
2483                                 temp->dreg = mono_alloc_ireg (cfg);
2484                                 ins->sreg2 = temp->dreg;
2485                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2486                         }
2487                         break;
2488                 case OP_ISUB_IMM:
2489                 CASE_PPC64 (OP_LSUB_IMM)
2490                 case OP_SUB_IMM:
2491                         if (!ppc_is_imm16 (-ins->inst_imm)) {
2492                                 NEW_INS (cfg, temp, OP_ICONST);
2493                                 temp->inst_c0 = ins->inst_imm;
2494                                 temp->dreg = mono_alloc_ireg (cfg);
2495                                 ins->sreg2 = temp->dreg;
2496                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2497                         }
2498                         break;
2499                 case OP_IAND_IMM:
2500                 case OP_IOR_IMM:
2501                 case OP_IXOR_IMM:
2502                 case OP_LAND_IMM:
2503                 case OP_LOR_IMM:
2504                 case OP_LXOR_IMM:
2505                 case OP_AND_IMM:
2506                 case OP_OR_IMM:
2507                 case OP_XOR_IMM: {
2508                         gboolean is_imm = ((ins->inst_imm & 0xffff0000) && (ins->inst_imm & 0xffff));
2509 #ifdef __mono_ppc64__
2510                         if (ins->inst_imm & 0xffffffff00000000ULL)
2511                                 is_imm = TRUE;
2512 #endif
2513                         if (is_imm) {
2514                                 NEW_INS (cfg, temp, OP_ICONST);
2515                                 temp->inst_c0 = ins->inst_imm;
2516                                 temp->dreg = mono_alloc_ireg (cfg);
2517                                 ins->sreg2 = temp->dreg;
2518                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2519                         }
2520                         break;
2521                 }
2522                 case OP_ISBB_IMM:
2523                 case OP_IADC_IMM:
2524                 case OP_SBB_IMM:
2525                 case OP_SUBCC_IMM:
2526                 case OP_ADC_IMM:
2527                         NEW_INS (cfg, temp, OP_ICONST);
2528                         temp->inst_c0 = ins->inst_imm;
2529                         temp->dreg = mono_alloc_ireg (cfg);
2530                         ins->sreg2 = temp->dreg;
2531                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2532                         break;
2533                 case OP_COMPARE_IMM:
2534                 case OP_ICOMPARE_IMM:
2535                 CASE_PPC64 (OP_LCOMPARE_IMM)
2536                         next = ins->next;
2537                         /* Branch opts can eliminate the branch */
2538                         if (!next || (!(MONO_IS_COND_BRANCH_OP (next) || MONO_IS_COND_EXC (next) || MONO_IS_SETCC (next)))) {
2539                                 ins->opcode = OP_NOP;
2540                                 break;
2541                         }
2542                         g_assert(next);
2543                         if (compare_opcode_is_unsigned (next->opcode)) {
2544                                 if (!ppc_is_uimm16 (ins->inst_imm)) {
2545                                         NEW_INS (cfg, temp, OP_ICONST);
2546                                         temp->inst_c0 = ins->inst_imm;
2547                                         temp->dreg = mono_alloc_ireg (cfg);
2548                                         ins->sreg2 = temp->dreg;
2549                                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2550                                 }
2551                         } else {
2552                                 if (!ppc_is_imm16 (ins->inst_imm)) {
2553                                         NEW_INS (cfg, temp, OP_ICONST);
2554                                         temp->inst_c0 = ins->inst_imm;
2555                                         temp->dreg = mono_alloc_ireg (cfg);
2556                                         ins->sreg2 = temp->dreg;
2557                                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2558                                 }
2559                         }
2560                         break;
2561                 case OP_IMUL_IMM:
2562                 case OP_MUL_IMM:
2563                         if (ins->inst_imm == 1) {
2564                                 ins->opcode = OP_MOVE;
2565                                 break;
2566                         }
2567                         if (ins->inst_imm == 0) {
2568                                 ins->opcode = OP_ICONST;
2569                                 ins->inst_c0 = 0;
2570                                 break;
2571                         }
2572                         imm = mono_is_power_of_two (ins->inst_imm);
2573                         if (imm > 0) {
2574                                 ins->opcode = OP_SHL_IMM;
2575                                 ins->inst_imm = imm;
2576                                 break;
2577                         }
2578                         if (!ppc_is_imm16 (ins->inst_imm)) {
2579                                 NEW_INS (cfg, temp, OP_ICONST);
2580                                 temp->inst_c0 = ins->inst_imm;
2581                                 temp->dreg = mono_alloc_ireg (cfg);
2582                                 ins->sreg2 = temp->dreg;
2583                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2584                         }
2585                         break;
2586                 case OP_LOCALLOC_IMM:
2587                         NEW_INS (cfg, temp, OP_ICONST);
2588                         temp->inst_c0 = ins->inst_imm;
2589                         temp->dreg = mono_alloc_ireg (cfg);
2590                         ins->sreg1 = temp->dreg;
2591                         ins->opcode = OP_LOCALLOC;
2592                         break;
2593                 case OP_LOAD_MEMBASE:
2594                 case OP_LOADI4_MEMBASE:
2595                 CASE_PPC64 (OP_LOADI8_MEMBASE)
2596                 case OP_LOADU4_MEMBASE:
2597                 case OP_LOADI2_MEMBASE:
2598                 case OP_LOADU2_MEMBASE:
2599                 case OP_LOADI1_MEMBASE:
2600                 case OP_LOADU1_MEMBASE:
2601                 case OP_LOADR4_MEMBASE:
2602                 case OP_LOADR8_MEMBASE:
2603                 case OP_STORE_MEMBASE_REG:
2604                 CASE_PPC64 (OP_STOREI8_MEMBASE_REG)
2605                 case OP_STOREI4_MEMBASE_REG:
2606                 case OP_STOREI2_MEMBASE_REG:
2607                 case OP_STOREI1_MEMBASE_REG:
2608                 case OP_STORER4_MEMBASE_REG:
2609                 case OP_STORER8_MEMBASE_REG:
2610                         /* we can do two things: load the immed in a register
2611                          * and use an indexed load, or see if the immed can be
2612                          * represented as an ad_imm + a load with a smaller offset
2613                          * that fits. We just do the first for now, optimize later.
2614                          */
2615                         if (ppc_is_imm16 (ins->inst_offset))
2616                                 break;
2617                         NEW_INS (cfg, temp, OP_ICONST);
2618                         temp->inst_c0 = ins->inst_offset;
2619                         temp->dreg = mono_alloc_ireg (cfg);
2620                         ins->sreg2 = temp->dreg;
2621                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2622                         break;
2623                 case OP_STORE_MEMBASE_IMM:
2624                 case OP_STOREI1_MEMBASE_IMM:
2625                 case OP_STOREI2_MEMBASE_IMM:
2626                 case OP_STOREI4_MEMBASE_IMM:
2627                 CASE_PPC64 (OP_STOREI8_MEMBASE_IMM)
2628                         NEW_INS (cfg, temp, OP_ICONST);
2629                         temp->inst_c0 = ins->inst_imm;
2630                         temp->dreg = mono_alloc_ireg (cfg);
2631                         ins->sreg1 = temp->dreg;
2632                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2633                         last_ins = temp;
2634                         goto loop_start; /* make it handle the possibly big ins->inst_offset */
2635                 case OP_R8CONST:
2636                 case OP_R4CONST:
2637                         if (cfg->compile_aot) {
2638                                 /* Keep these in the aot case */
2639                                 break;
2640                         }
2641                         NEW_INS (cfg, temp, OP_ICONST);
2642                         temp->inst_c0 = (gulong)ins->inst_p0;
2643                         temp->dreg = mono_alloc_ireg (cfg);
2644                         ins->inst_basereg = temp->dreg;
2645                         ins->inst_offset = 0;
2646                         ins->opcode = ins->opcode == OP_R4CONST? OP_LOADR4_MEMBASE: OP_LOADR8_MEMBASE;
2647                         last_ins = temp;
2648                         /* make it handle the possibly big ins->inst_offset
2649                          * later optimize to use lis + load_membase
2650                          */
2651                         goto loop_start;
2652                 }
2653                 last_ins = ins;
2654         }
2655         bb->last_ins = last_ins;
2656         bb->max_vreg = cfg->next_vreg;  
2657 }
2658
2659 static guchar*
2660 emit_float_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
2661 {
2662         long offset = cfg->arch.fp_conv_var_offset;
2663         long sub_offset;
2664         /* sreg is a float, dreg is an integer reg. ppc_f0 is used a scratch */
2665 #ifdef __mono_ppc64__
2666         if (size == 8) {
2667                 ppc_fctidz (code, ppc_f0, sreg);
2668                 sub_offset = 0;
2669         } else
2670 #endif
2671         {
2672                 ppc_fctiwz (code, ppc_f0, sreg);
2673                 sub_offset = 4;
2674         }
2675         if (ppc_is_imm16 (offset + sub_offset)) {
2676                 ppc_stfd (code, ppc_f0, offset, cfg->frame_reg);
2677                 if (size == 8)
2678                         ppc_ldr (code, dreg, offset + sub_offset, cfg->frame_reg);
2679                 else
2680                         ppc_lwz (code, dreg, offset + sub_offset, cfg->frame_reg);
2681         } else {
2682                 ppc_load (code, dreg, offset);
2683                 ppc_add (code, dreg, dreg, cfg->frame_reg);
2684                 ppc_stfd (code, ppc_f0, 0, dreg);
2685                 if (size == 8)
2686                         ppc_ldr (code, dreg, sub_offset, dreg);
2687                 else
2688                         ppc_lwz (code, dreg, sub_offset, dreg);
2689         }
2690         if (!is_signed) {
2691                 if (size == 1)
2692                         ppc_andid (code, dreg, dreg, 0xff);
2693                 else if (size == 2)
2694                         ppc_andid (code, dreg, dreg, 0xffff);
2695 #ifdef __mono_ppc64__
2696                 else if (size == 4)
2697                         ppc_clrldi (code, dreg, dreg, 32);
2698 #endif
2699         } else {
2700                 if (size == 1)
2701                         ppc_extsb (code, dreg, dreg);
2702                 else if (size == 2)
2703                         ppc_extsh (code, dreg, dreg);
2704 #ifdef __mono_ppc64__
2705                 else if (size == 4)
2706                         ppc_extsw (code, dreg, dreg);
2707 #endif
2708         }
2709         return code;
2710 }
2711
2712 typedef struct {
2713         guchar *code;
2714         const guchar *target;
2715         int absolute;
2716         int found;
2717 } PatchData;
2718
2719 #define is_call_imm(diff) ((glong)(diff) >= -33554432 && (glong)(diff) <= 33554431)
2720
2721 static int
2722 search_thunk_slot (void *data, int csize, int bsize, void *user_data) {
2723 #ifdef __mono_ppc64__
2724         g_assert_not_reached ();
2725 #else
2726         PatchData *pdata = (PatchData*)user_data;
2727         guchar *code = data;
2728         guint32 *thunks = data;
2729         guint32 *endthunks = (guint32*)(code + bsize);
2730         guint32 load [2];
2731         guchar *templ;
2732         int count = 0;
2733         int difflow, diffhigh;
2734
2735         /* always ensure a call from pdata->code can reach to the thunks without further thunks */
2736         difflow = (char*)pdata->code - (char*)thunks;
2737         diffhigh = (char*)pdata->code - (char*)endthunks;
2738         if (!((is_call_imm (thunks) && is_call_imm (endthunks)) || (is_call_imm (difflow) && is_call_imm (diffhigh))))
2739                 return 0;
2740
2741         templ = (guchar*)load;
2742         ppc_load_sequence (templ, ppc_r0, pdata->target);
2743
2744         //g_print ("thunk nentries: %d\n", ((char*)endthunks - (char*)thunks)/16);
2745         if ((pdata->found == 2) || (pdata->code >= code && pdata->code <= code + csize)) {
2746                 while (thunks < endthunks) {
2747                         //g_print ("looking for target: %p at %p (%08x-%08x)\n", pdata->target, thunks, thunks [0], thunks [1]);
2748                         if ((thunks [0] == load [0]) && (thunks [1] == load [1])) {
2749                                 ppc_patch (pdata->code, (guchar*)thunks);
2750                                 pdata->found = 1;
2751                                 /*{
2752                                         static int num_thunks = 0;
2753                                         num_thunks++;
2754                                         if ((num_thunks % 20) == 0)
2755                                                 g_print ("num_thunks lookup: %d\n", num_thunks);
2756                                 }*/
2757                                 return 1;
2758                         } else if ((thunks [0] == 0) && (thunks [1] == 0)) {
2759                                 /* found a free slot instead: emit thunk */
2760                                 code = (guchar*)thunks;
2761                                 ppc_lis (code, ppc_r0, (gulong)(pdata->target) >> 16);
2762                                 ppc_ori (code, ppc_r0, ppc_r0, (gulong)(pdata->target) & 0xffff);
2763                                 ppc_mtctr (code, ppc_r0);
2764                                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
2765                                 mono_arch_flush_icache ((guchar*)thunks, 16);
2766
2767                                 ppc_patch (pdata->code, (guchar*)thunks);
2768                                 pdata->found = 1;
2769                                 /*{
2770                                         static int num_thunks = 0;
2771                                         num_thunks++;
2772                                         if ((num_thunks % 20) == 0)
2773                                                 g_print ("num_thunks: %d\n", num_thunks);
2774                                 }*/
2775                                 return 1;
2776                         }
2777                         /* skip 16 bytes, the size of the thunk */
2778                         thunks += 4;
2779                         count++;
2780                 }
2781                 //g_print ("failed thunk lookup for %p from %p at %p (%d entries)\n", pdata->target, pdata->code, data, count);
2782         }
2783 #endif
2784         return 0;
2785 }
2786
2787 static void
2788 handle_thunk (int absolute, guchar *code, const guchar *target) {
2789         MonoDomain *domain = mono_domain_get ();
2790         PatchData pdata;
2791
2792         pdata.code = code;
2793         pdata.target = target;
2794         pdata.absolute = absolute;
2795         pdata.found = 0;
2796
2797         mono_domain_lock (domain);
2798         mono_domain_code_foreach (domain, search_thunk_slot, &pdata);
2799
2800         if (!pdata.found) {
2801                 /* this uses the first available slot */
2802                 pdata.found = 2;
2803                 mono_domain_code_foreach (domain, search_thunk_slot, &pdata);
2804         }
2805         mono_domain_unlock (domain);
2806
2807         if (pdata.found != 1)
2808                 g_print ("thunk failed for %p from %p\n", target, code);
2809         g_assert (pdata.found == 1);
2810 }
2811
2812 static void
2813 patch_ins (guint8 *code, guint32 ins)
2814 {
2815         *(guint32*)code = GUINT32_TO_BE (ins);
2816         mono_arch_flush_icache (code, 4);
2817 }
2818
2819 void
2820 ppc_patch_full (guchar *code, const guchar *target, gboolean is_fd)
2821 {
2822         guint32 ins = GUINT32_FROM_BE (*(guint32*)code);
2823         guint32 prim = ins >> 26;
2824         guint32 ovf;
2825
2826         //g_print ("patching 0x%08x (0x%08x) to point to 0x%08x\n", code, ins, target);
2827         if (prim == 18) {
2828                 // prefer relative branches, they are more position independent (e.g. for AOT compilation).
2829                 gint diff = target - code;
2830                 g_assert (!is_fd);
2831                 if (diff >= 0){
2832                         if (diff <= 33554431){
2833                                 ins = (18 << 26) | (diff) | (ins & 1);
2834                                 patch_ins (code, ins);
2835                                 return;
2836                         }
2837                 } else {
2838                         /* diff between 0 and -33554432 */
2839                         if (diff >= -33554432){
2840                                 ins = (18 << 26) | (diff & ~0xfc000000) | (ins & 1);
2841                                 patch_ins (code, ins);
2842                                 return;
2843                         }
2844                 }
2845                 
2846                 if ((glong)target >= 0){
2847                         if ((glong)target <= 33554431){
2848                                 ins = (18 << 26) | ((gulong) target) | (ins & 1) | 2;
2849                                 patch_ins (code, ins);
2850                                 return;
2851                         }
2852                 } else {
2853                         if ((glong)target >= -33554432){
2854                                 ins = (18 << 26) | (((gulong)target) & ~0xfc000000) | (ins & 1) | 2;
2855                                 patch_ins (code, ins);
2856                                 return;
2857                         }
2858                 }
2859
2860                 handle_thunk (TRUE, code, target);
2861                 return;
2862
2863                 g_assert_not_reached ();
2864         }
2865         
2866         
2867         if (prim == 16) {
2868                 g_assert (!is_fd);
2869                 // absolute address
2870                 if (ins & 2) {
2871                         guint32 li = (gulong)target;
2872                         ins = (ins & 0xffff0000) | (ins & 3);
2873                         ovf  = li & 0xffff0000;
2874                         if (ovf != 0 && ovf != 0xffff0000)
2875                                 g_assert_not_reached ();
2876                         li &= 0xffff;
2877                         ins |= li;
2878                         // FIXME: assert the top bits of li are 0
2879                 } else {
2880                         gint diff = target - code;
2881                         ins = (ins & 0xffff0000) | (ins & 3);
2882                         ovf  = diff & 0xffff0000;
2883                         if (ovf != 0 && ovf != 0xffff0000)
2884                                 g_assert_not_reached ();
2885                         diff &= 0xffff;
2886                         ins |= diff;
2887                 }
2888                 patch_ins (code, ins);
2889                 return;
2890         }
2891
2892         if (prim == 15 || ins == 0x4e800021 || ins == 0x4e800020 || ins == 0x4e800420) {
2893 #ifdef __mono_ppc64__
2894                 guint32 *seq = (guint32*)code;
2895                 guint32 *branch_ins;
2896
2897                 /* the trampoline code will try to patch the blrl, blr, bcctr */
2898                 if (ins == 0x4e800021 || ins == 0x4e800020 || ins == 0x4e800420) {
2899                         branch_ins = seq;
2900                         if (ppc_is_load_op (seq [-3]) || ppc_opcode (seq [-3]) == 31) /* ld || lwz || mr */
2901                                 code -= 32;
2902                         else
2903                                 code -= 24;
2904                 } else {
2905                         if (ppc_is_load_op (seq [5]) || ppc_opcode (seq [5]) == 31) /* ld || lwz || mr */
2906                                 branch_ins = seq + 8;
2907                         else
2908                                 branch_ins = seq + 6;
2909                 }
2910
2911                 seq = (guint32*)code;
2912                 /* this is the lis/ori/sldi/oris/ori/(ld/ld|mr/nop)/mtlr/blrl sequence */
2913                 g_assert (mono_ppc_is_direct_call_sequence (branch_ins));
2914
2915                 if (ppc_is_load_op (seq [5])) {
2916                         g_assert (ppc_is_load_op (seq [6]));
2917
2918                         if (!is_fd) {
2919                                 guint8 *buf = (guint8*)&seq [5];
2920                                 ppc_mr (buf, ppc_r0, ppc_r11);
2921                                 ppc_nop (buf);
2922                         }
2923                 } else {
2924                         if (is_fd)
2925                                 target = mono_get_addr_from_ftnptr ((gpointer)target);
2926                 }
2927
2928                 /* FIXME: make this thread safe */
2929                 /* FIXME: we're assuming we're using r11 here */
2930                 ppc_load_ptr_sequence (code, ppc_r11, target);
2931                 mono_arch_flush_icache ((guint8*)seq, 28);
2932 #else
2933                 guint32 *seq;
2934                 /* the trampoline code will try to patch the blrl, blr, bcctr */
2935                 if (ins == 0x4e800021 || ins == 0x4e800020 || ins == 0x4e800420) {
2936                         code -= 12;
2937                 }
2938                 /* this is the lis/ori/mtlr/blrl sequence */
2939                 seq = (guint32*)code;
2940                 g_assert ((seq [0] >> 26) == 15);
2941                 g_assert ((seq [1] >> 26) == 24);
2942                 g_assert ((seq [2] >> 26) == 31);
2943                 g_assert (seq [3] == 0x4e800021 || seq [3] == 0x4e800020 || seq [3] == 0x4e800420);
2944                 /* FIXME: make this thread safe */
2945                 ppc_lis (code, ppc_r0, (guint32)(target) >> 16);
2946                 ppc_ori (code, ppc_r0, ppc_r0, (guint32)(target) & 0xffff);
2947                 mono_arch_flush_icache (code - 8, 8);
2948 #endif
2949         } else {
2950                 g_assert_not_reached ();
2951         }
2952 //      g_print ("patched with 0x%08x\n", ins);
2953 }
2954
2955 void
2956 ppc_patch (guchar *code, const guchar *target)
2957 {
2958         ppc_patch_full (code, target, FALSE);
2959 }
2960
2961 void
2962 mono_ppc_patch (guchar *code, const guchar *target)
2963 {
2964         ppc_patch (code, target);
2965 }
2966
2967 static guint8*
2968 emit_move_return_value (MonoCompile *cfg, MonoInst *ins, guint8 *code)
2969 {
2970         switch (ins->opcode) {
2971         case OP_FCALL:
2972         case OP_FCALL_REG:
2973         case OP_FCALL_MEMBASE:
2974                 if (ins->dreg != ppc_f1)
2975                         ppc_fmr (code, ins->dreg, ppc_f1);
2976                 break;
2977         }
2978
2979         return code;
2980 }
2981
2982 static int
2983 ins_native_length (MonoCompile *cfg, MonoInst *ins)
2984 {
2985         return ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
2986 }
2987
2988 static guint8*
2989 emit_reserve_param_area (MonoCompile *cfg, guint8 *code)
2990 {
2991         long size = cfg->param_area;
2992
2993         size += MONO_ARCH_FRAME_ALIGNMENT - 1;
2994         size &= -MONO_ARCH_FRAME_ALIGNMENT;
2995
2996         if (!size)
2997                 return code;
2998
2999         ppc_ldptr (code, ppc_r0, 0, ppc_sp);
3000         if (ppc_is_imm16 (-size)) {
3001                 ppc_stptr_update (code, ppc_r0, -size, ppc_sp);
3002         } else {
3003                 ppc_load (code, ppc_r11, -size);
3004                 ppc_stptr_update_indexed (code, ppc_r0, ppc_sp, ppc_r11);
3005         }
3006
3007         return code;
3008 }
3009
3010 static guint8*
3011 emit_unreserve_param_area (MonoCompile *cfg, guint8 *code)
3012 {
3013         long size = cfg->param_area;
3014
3015         size += MONO_ARCH_FRAME_ALIGNMENT - 1;
3016         size &= -MONO_ARCH_FRAME_ALIGNMENT;
3017
3018         if (!size)
3019                 return code;
3020
3021         ppc_ldptr (code, ppc_r0, 0, ppc_sp);
3022         if (ppc_is_imm16 (size)) {
3023                 ppc_stptr_update (code, ppc_r0, size, ppc_sp);
3024         } else {
3025                 ppc_load (code, ppc_r11, size);
3026                 ppc_stptr_update_indexed (code, ppc_r0, ppc_sp, ppc_r11);
3027         }
3028
3029         return code;
3030 }
3031
3032 #define MASK_SHIFT_IMM(i)       ((i) & MONO_PPC_32_64_CASE (0x1f, 0x3f))
3033
3034 #ifndef DISABLE_JIT
3035 void
3036 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
3037 {
3038         MonoInst *ins, *next;
3039         MonoCallInst *call;
3040         guint offset;
3041         guint8 *code = cfg->native_code + cfg->code_len;
3042         MonoInst *last_ins = NULL;
3043         guint last_offset = 0;
3044         int max_len, cpos;
3045         int L;
3046
3047         /* we don't align basic blocks of loops on ppc */
3048
3049         if (cfg->verbose_level > 2)
3050                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
3051
3052         cpos = bb->max_offset;
3053
3054         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
3055                 //MonoCoverageInfo *cov = mono_get_coverage_info (cfg->method);
3056                 //g_assert (!mono_compile_aot);
3057                 //cpos += 6;
3058                 //if (bb->cil_code)
3059                 //      cov->data [bb->dfn].iloffset = bb->cil_code - cfg->cil_code;
3060                 /* this is not thread save, but good enough */
3061                 /* fixme: howto handle overflows? */
3062                 //x86_inc_mem (code, &cov->data [bb->dfn].count); 
3063         }
3064
3065         MONO_BB_FOR_EACH_INS (bb, ins) {
3066                 offset = code - cfg->native_code;
3067
3068                 max_len = ins_native_length (cfg, ins);
3069
3070                 if (offset > (cfg->code_size - max_len - 16)) {
3071                         cfg->code_size *= 2;
3072                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
3073                         code = cfg->native_code + offset;
3074                 }
3075         //      if (ins->cil_code)
3076         //              g_print ("cil code\n");
3077                 mono_debug_record_line_number (cfg, ins, offset);
3078
3079                 switch (normalize_opcode (ins->opcode)) {
3080                 case OP_RELAXED_NOP:
3081                 case OP_NOP:
3082                 case OP_DUMMY_USE:
3083                 case OP_DUMMY_STORE:
3084                 case OP_NOT_REACHED:
3085                 case OP_NOT_NULL:
3086                         break;
3087                 case OP_SEQ_POINT: {
3088                         int i;
3089
3090                         if (cfg->compile_aot)
3091                                 NOT_IMPLEMENTED;
3092
3093                         /* 
3094                          * Read from the single stepping trigger page. This will cause a
3095                          * SIGSEGV when single stepping is enabled.
3096                          * We do this _before_ the breakpoint, so single stepping after
3097                          * a breakpoint is hit will step to the next IL offset.
3098                          */
3099                         if (ins->flags & MONO_INST_SINGLE_STEP_LOC) {
3100                                 ppc_load (code, ppc_r11, (gsize)ss_trigger_page);
3101                                 ppc_ldptr (code, ppc_r11, 0, ppc_r11);
3102                         }
3103
3104                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
3105
3106                         /* 
3107                          * A placeholder for a possible breakpoint inserted by
3108                          * mono_arch_set_breakpoint ().
3109                          */
3110                         for (i = 0; i < BREAKPOINT_SIZE / 4; ++i)
3111                                 ppc_nop (code);
3112                         break;
3113                 }
3114                 case OP_TLS_GET:
3115                         emit_tls_access (code, ins->dreg, ins->inst_offset);
3116                         break;
3117                 case OP_BIGMUL:
3118                         ppc_mullw (code, ppc_r0, ins->sreg1, ins->sreg2);
3119                         ppc_mulhw (code, ppc_r3, ins->sreg1, ins->sreg2);
3120                         ppc_mr (code, ppc_r4, ppc_r0);
3121                         break;
3122                 case OP_BIGMUL_UN:
3123                         ppc_mullw (code, ppc_r0, ins->sreg1, ins->sreg2);
3124                         ppc_mulhwu (code, ppc_r3, ins->sreg1, ins->sreg2);
3125                         ppc_mr (code, ppc_r4, ppc_r0);
3126                         break;
3127                 case OP_MEMORY_BARRIER:
3128                         ppc_sync (code);
3129                         break;
3130                 case OP_STOREI1_MEMBASE_REG:
3131                         if (ppc_is_imm16 (ins->inst_offset)) {
3132                                 ppc_stb (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
3133                         } else {
3134                                 if (ppc_is_imm32 (ins->inst_offset)) {
3135                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
3136                                         ppc_stb (code, ins->sreg1, ins->inst_offset, ppc_r12);
3137                                 } else {
3138                                         ppc_load (code, ppc_r0, ins->inst_offset);
3139                                         ppc_stbx (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
3140                                 }
3141                         }
3142                         break;
3143                 case OP_STOREI2_MEMBASE_REG:
3144                         if (ppc_is_imm16 (ins->inst_offset)) {
3145                                 ppc_sth (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
3146                         } else {
3147                                 if (ppc_is_imm32 (ins->inst_offset)) {
3148                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
3149                                         ppc_sth (code, ins->sreg1, ins->inst_offset, ppc_r12);
3150                                 } else {
3151                                         ppc_load (code, ppc_r0, ins->inst_offset);
3152                                         ppc_sthx (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
3153                                 }
3154                         }
3155                         break;
3156                 case OP_STORE_MEMBASE_REG:
3157                         if (ppc_is_imm16 (ins->inst_offset)) {
3158                                 ppc_stptr (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
3159                         } else {
3160                                 if (ppc_is_imm32 (ins->inst_offset)) {
3161                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
3162                                         ppc_stptr (code, ins->sreg1, ins->inst_offset, ppc_r12);
3163                                 } else {
3164                                         ppc_load (code, ppc_r0, ins->inst_offset);
3165                                         ppc_stptr_indexed (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
3166                                 }
3167                         }
3168                         break;
3169 #ifdef __mono_ilp32__
3170                 case OP_STOREI8_MEMBASE_REG:
3171                         if (ppc_is_imm16 (ins->inst_offset)) {
3172                                 ppc_str (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
3173                         } else {
3174                                 ppc_load (code, ppc_r0, ins->inst_offset);
3175                                 ppc_str_indexed (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
3176                         }
3177                         break;
3178 #endif
3179                 case OP_STOREI1_MEMINDEX:
3180                         ppc_stbx (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
3181                         break;
3182                 case OP_STOREI2_MEMINDEX:
3183                         ppc_sthx (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
3184                         break;
3185                 case OP_STORE_MEMINDEX:
3186                         ppc_stptr_indexed (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
3187                         break;
3188                 case OP_LOADU4_MEM:
3189                         g_assert_not_reached ();
3190                         break;
3191                 case OP_LOAD_MEMBASE:
3192                         if (ppc_is_imm16 (ins->inst_offset)) {
3193                                 ppc_ldptr (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3194                         } else {
3195                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3196                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3197                                         ppc_ldptr (code, ins->dreg, ins->inst_offset, ins->dreg);
3198                                 } else {
3199                                         ppc_load (code, ppc_r0, ins->inst_offset);
3200                                         ppc_ldptr_indexed (code, ins->dreg, ins->inst_basereg, ppc_r0);
3201                                 }
3202                         }
3203                         break;
3204                 case OP_LOADI4_MEMBASE:
3205 #ifdef __mono_ppc64__
3206                         if (ppc_is_imm16 (ins->inst_offset)) {
3207                                 ppc_lwa (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3208                         } else {
3209                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3210                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3211                                         ppc_lwa (code, ins->dreg, ins->inst_offset, ins->dreg);
3212                                 } else {
3213                                         ppc_load (code, ppc_r0, ins->inst_offset);
3214                                         ppc_lwax (code, ins->dreg, ins->inst_basereg, ppc_r0);
3215                                 }
3216                         }
3217                         break;
3218 #endif
3219                 case OP_LOADU4_MEMBASE:
3220                         if (ppc_is_imm16 (ins->inst_offset)) {
3221                                 ppc_lwz (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3222                         } else {
3223                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3224                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3225                                         ppc_lwz (code, ins->dreg, ins->inst_offset, ins->dreg);
3226                                 } else {
3227                                         ppc_load (code, ppc_r0, ins->inst_offset);
3228                                         ppc_lwzx (code, ins->dreg, ins->inst_basereg, ppc_r0);
3229                                 }
3230                         }
3231                         break;
3232                 case OP_LOADI1_MEMBASE:
3233                 case OP_LOADU1_MEMBASE:
3234                         if (ppc_is_imm16 (ins->inst_offset)) {
3235                                 ppc_lbz (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3236                         } else {
3237                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3238                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3239                                         ppc_lbz (code, ins->dreg, ins->inst_offset, ins->dreg);
3240                                 } else {
3241                                         ppc_load (code, ppc_r0, ins->inst_offset);
3242                                         ppc_lbzx (code, ins->dreg, ins->inst_basereg, ppc_r0);
3243                                 }
3244                         }
3245                         if (ins->opcode == OP_LOADI1_MEMBASE)
3246                                 ppc_extsb (code, ins->dreg, ins->dreg);
3247                         break;
3248                 case OP_LOADU2_MEMBASE:
3249                         if (ppc_is_imm16 (ins->inst_offset)) {
3250                                 ppc_lhz (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3251                         } else {
3252                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3253                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3254                                         ppc_lhz (code, ins->dreg, ins->inst_offset, ins->dreg);
3255                                 } else {
3256                                         ppc_load (code, ppc_r0, ins->inst_offset);
3257                                         ppc_lhzx (code, ins->dreg, ins->inst_basereg, ppc_r0);
3258                                 }
3259                         }
3260                         break;
3261                 case OP_LOADI2_MEMBASE:
3262                         if (ppc_is_imm16 (ins->inst_offset)) {
3263                                 ppc_lha (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3264                         } else {
3265                                 if (ppc_is_imm32 (ins->inst_offset) && (ins->dreg > 0)) {
3266                                         ppc_addis (code, ins->dreg, ins->inst_basereg, ppc_ha(ins->inst_offset));
3267                                         ppc_lha (code, ins->dreg, ins->inst_offset, ins->dreg);
3268                                 } else {
3269                                         ppc_load (code, ppc_r0, ins->inst_offset);
3270                                         ppc_lhax (code, ins->dreg, ins->inst_basereg, ppc_r0);
3271                                 }
3272                         }
3273                         break;
3274 #ifdef __mono_ilp32__
3275                 case OP_LOADI8_MEMBASE:
3276                         if (ppc_is_imm16 (ins->inst_offset)) {
3277                                 ppc_ldr (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
3278                         } else {
3279                                 ppc_load (code, ppc_r0, ins->inst_offset);
3280                                 ppc_ldr_indexed (code, ins->dreg, ins->inst_basereg, ppc_r0);
3281                         }
3282                         break;
3283 #endif
3284                 case OP_LOAD_MEMINDEX:
3285                         ppc_ldptr_indexed (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3286                         break;
3287                 case OP_LOADI4_MEMINDEX:
3288 #ifdef __mono_ppc64__
3289                         ppc_lwax (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3290                         break;
3291 #endif
3292                 case OP_LOADU4_MEMINDEX:
3293                         ppc_lwzx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3294                         break;
3295                 case OP_LOADU2_MEMINDEX:
3296                         ppc_lhzx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3297                         break;
3298                 case OP_LOADI2_MEMINDEX:
3299                         ppc_lhax (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3300                         break;
3301                 case OP_LOADU1_MEMINDEX:
3302                         ppc_lbzx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3303                         break;
3304                 case OP_LOADI1_MEMINDEX:
3305                         ppc_lbzx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
3306                         ppc_extsb (code, ins->dreg, ins->dreg);
3307                         break;
3308                 case OP_ICONV_TO_I1:
3309                 CASE_PPC64 (OP_LCONV_TO_I1)
3310                         ppc_extsb (code, ins->dreg, ins->sreg1);
3311                         break;
3312                 case OP_ICONV_TO_I2:
3313                 CASE_PPC64 (OP_LCONV_TO_I2)
3314                         ppc_extsh (code, ins->dreg, ins->sreg1);
3315                         break;
3316                 case OP_ICONV_TO_U1:
3317                 CASE_PPC64 (OP_LCONV_TO_U1)
3318                         ppc_clrlwi (code, ins->dreg, ins->sreg1, 24);
3319                         break;
3320                 case OP_ICONV_TO_U2:
3321                 CASE_PPC64 (OP_LCONV_TO_U2)
3322                         ppc_clrlwi (code, ins->dreg, ins->sreg1, 16);
3323                         break;
3324                 case OP_COMPARE:
3325                 case OP_ICOMPARE:
3326                 CASE_PPC64 (OP_LCOMPARE)
3327                         L = (sizeof (mgreg_t) == 4 || ins->opcode == OP_ICOMPARE) ? 0 : 1;
3328                         next = ins->next;
3329                         if (next && compare_opcode_is_unsigned (next->opcode))
3330                                 ppc_cmpl (code, 0, L, ins->sreg1, ins->sreg2);
3331                         else
3332                                 ppc_cmp (code, 0, L, ins->sreg1, ins->sreg2);
3333                         break;
3334                 case OP_COMPARE_IMM:
3335                 case OP_ICOMPARE_IMM:
3336                 CASE_PPC64 (OP_LCOMPARE_IMM)
3337                         L = (sizeof (mgreg_t) == 4 || ins->opcode == OP_ICOMPARE_IMM) ? 0 : 1;
3338                         next = ins->next;
3339                         if (next && compare_opcode_is_unsigned (next->opcode)) {
3340                                 if (ppc_is_uimm16 (ins->inst_imm)) {
3341                                         ppc_cmpli (code, 0, L, ins->sreg1, (ins->inst_imm & 0xffff));
3342                                 } else {
3343                                         g_assert_not_reached ();
3344                                 }
3345                         } else {
3346                                 if (ppc_is_imm16 (ins->inst_imm)) {
3347                                         ppc_cmpi (code, 0, L, ins->sreg1, (ins->inst_imm & 0xffff));
3348                                 } else {
3349                                         g_assert_not_reached ();
3350                                 }
3351                         }
3352                         break;
3353                 case OP_BREAK:
3354                         /*
3355                          * gdb does not like encountering a trap in the debugged code. So 
3356                          * instead of emitting a trap, we emit a call a C function and place a 
3357                          * breakpoint there.
3358                          */
3359                         //ppc_break (code);
3360                         ppc_mr (code, ppc_r3, ins->sreg1);
3361                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3362                                              (gpointer)"mono_break");
3363                         if ((FORCE_INDIR_CALL || cfg->method->dynamic) && !cfg->compile_aot) {
3364                                 ppc_load_func (code, ppc_r0, 0);
3365                                 ppc_mtlr (code, ppc_r0);
3366                                 ppc_blrl (code);
3367                         } else {
3368                                 ppc_bl (code, 0);
3369                         }
3370                         break;
3371                 case OP_ADDCC:
3372                 case OP_IADDCC:
3373                         ppc_addco (code, ins->dreg, ins->sreg1, ins->sreg2);
3374                         break;
3375                 case OP_IADD:
3376                 CASE_PPC64 (OP_LADD)
3377                         ppc_add (code, ins->dreg, ins->sreg1, ins->sreg2);
3378                         break;
3379                 case OP_ADC:
3380                 case OP_IADC:
3381                         ppc_adde (code, ins->dreg, ins->sreg1, ins->sreg2);
3382                         break;
3383                 case OP_ADDCC_IMM:
3384                         if (ppc_is_imm16 (ins->inst_imm)) {
3385                                 ppc_addic (code, ins->dreg, ins->sreg1, ins->inst_imm);
3386                         } else {
3387                                 g_assert_not_reached ();
3388                         }
3389                         break;
3390                 case OP_ADD_IMM:
3391                 case OP_IADD_IMM:
3392                 CASE_PPC64 (OP_LADD_IMM)
3393                         if (ppc_is_imm16 (ins->inst_imm)) {
3394                                 ppc_addi (code, ins->dreg, ins->sreg1, ins->inst_imm);
3395                         } else {
3396                                 g_assert_not_reached ();
3397                         }
3398                         break;
3399                 case OP_IADD_OVF:
3400                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3401                          */
3402                         ppc_addo (code, ins->dreg, ins->sreg1, ins->sreg2);
3403                         ppc_mfspr (code, ppc_r0, ppc_xer);
3404                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3405                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3406                         break;
3407                 case OP_IADD_OVF_UN:
3408                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3409                          */
3410                         ppc_addco (code, ins->dreg, ins->sreg1, ins->sreg2);
3411                         ppc_mfspr (code, ppc_r0, ppc_xer);
3412                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<13));
3413                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3414                         break;
3415                 case OP_ISUB_OVF:
3416                 CASE_PPC64 (OP_LSUB_OVF)
3417                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3418                          */
3419                         ppc_subfo (code, ins->dreg, ins->sreg2, ins->sreg1);
3420                         ppc_mfspr (code, ppc_r0, ppc_xer);
3421                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3422                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3423                         break;
3424                 case OP_ISUB_OVF_UN:
3425                 CASE_PPC64 (OP_LSUB_OVF_UN)
3426                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3427                          */
3428                         ppc_subfc (code, ins->dreg, ins->sreg2, ins->sreg1);
3429                         ppc_mfspr (code, ppc_r0, ppc_xer);
3430                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<13));
3431                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
3432                         break;
3433                 case OP_ADD_OVF_CARRY:
3434                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3435                          */
3436                         ppc_addeo (code, ins->dreg, ins->sreg1, ins->sreg2);
3437                         ppc_mfspr (code, ppc_r0, ppc_xer);
3438                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3439                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3440                         break;
3441                 case OP_ADD_OVF_UN_CARRY:
3442                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3443                          */
3444                         ppc_addeo (code, ins->dreg, ins->sreg1, ins->sreg2);
3445                         ppc_mfspr (code, ppc_r0, ppc_xer);
3446                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<13));
3447                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3448                         break;
3449                 case OP_SUB_OVF_CARRY:
3450                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3451                          */
3452                         ppc_subfeo (code, ins->dreg, ins->sreg2, ins->sreg1);
3453                         ppc_mfspr (code, ppc_r0, ppc_xer);
3454                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3455                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3456                         break;
3457                 case OP_SUB_OVF_UN_CARRY:
3458                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
3459                          */
3460                         ppc_subfeo (code, ins->dreg, ins->sreg2, ins->sreg1);
3461                         ppc_mfspr (code, ppc_r0, ppc_xer);
3462                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<13));
3463                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
3464                         break;
3465                 case OP_SUBCC:
3466                 case OP_ISUBCC:
3467                         ppc_subfco (code, ins->dreg, ins->sreg2, ins->sreg1);
3468                         break;
3469                 case OP_ISUB:
3470                 CASE_PPC64 (OP_LSUB)
3471                         ppc_subf (code, ins->dreg, ins->sreg2, ins->sreg1);
3472                         break;
3473                 case OP_SBB:
3474                 case OP_ISBB:
3475                         ppc_subfe (code, ins->dreg, ins->sreg2, ins->sreg1);
3476                         break;
3477                 case OP_SUB_IMM:
3478                 case OP_ISUB_IMM:
3479                 CASE_PPC64 (OP_LSUB_IMM)
3480                         // we add the negated value
3481                         if (ppc_is_imm16 (-ins->inst_imm))
3482                                 ppc_addi (code, ins->dreg, ins->sreg1, -ins->inst_imm);
3483                         else {
3484                                 g_assert_not_reached ();
3485                         }
3486                         break;
3487                 case OP_PPC_SUBFIC:
3488                         g_assert (ppc_is_imm16 (ins->inst_imm));
3489                         ppc_subfic (code, ins->dreg, ins->sreg1, ins->inst_imm);
3490                         break;
3491                 case OP_PPC_SUBFZE:
3492                         ppc_subfze (code, ins->dreg, ins->sreg1);
3493                         break;
3494                 case OP_IAND:
3495                 CASE_PPC64 (OP_LAND)
3496                         /* FIXME: the ppc macros as inconsistent here: put dest as the first arg! */
3497                         ppc_and (code, ins->sreg1, ins->dreg, ins->sreg2);
3498                         break;
3499                 case OP_AND_IMM:
3500                 case OP_IAND_IMM:
3501                 CASE_PPC64 (OP_LAND_IMM)
3502                         if (!(ins->inst_imm & 0xffff0000)) {
3503                                 ppc_andid (code, ins->sreg1, ins->dreg, ins->inst_imm);
3504                         } else if (!(ins->inst_imm & 0xffff)) {
3505                                 ppc_andisd (code, ins->sreg1, ins->dreg, ((guint32)ins->inst_imm >> 16));
3506                         } else {
3507                                 g_assert_not_reached ();
3508                         }
3509                         break;
3510                 case OP_IDIV:
3511                 CASE_PPC64 (OP_LDIV) {
3512                         guint8 *divisor_is_m1;
3513                          /* XER format: SO, OV, CA, reserved [21 bits], count [8 bits]
3514                          */
3515                         ppc_compare_reg_imm (code, 0, ins->sreg2, -1);
3516                         divisor_is_m1 = code;
3517                         ppc_bc (code, PPC_BR_FALSE | PPC_BR_LIKELY, PPC_BR_EQ, 0);
3518                         ppc_lis (code, ppc_r0, 0x8000);
3519 #ifdef __mono_ppc64__
3520                         if (ins->opcode == OP_LDIV)
3521                                 ppc_sldi (code, ppc_r0, ppc_r0, 32);
3522 #endif
3523                         ppc_compare (code, 0, ins->sreg1, ppc_r0);
3524                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
3525                         ppc_patch (divisor_is_m1, code);
3526                          /* XER format: SO, OV, CA, reserved [21 bits], count [8 bits]
3527                          */
3528                         if (ins->opcode == OP_IDIV)
3529                                 ppc_divwod (code, ins->dreg, ins->sreg1, ins->sreg2);
3530 #ifdef __mono_ppc64__
3531                         else
3532                                 ppc_divdod (code, ins->dreg, ins->sreg1, ins->sreg2);
3533 #endif
3534                         ppc_mfspr (code, ppc_r0, ppc_xer);
3535                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3536                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "DivideByZeroException");
3537                         break;
3538                 }
3539                 case OP_IDIV_UN:
3540                 CASE_PPC64 (OP_LDIV_UN)
3541                         if (ins->opcode == OP_IDIV_UN)
3542                                 ppc_divwuod (code, ins->dreg, ins->sreg1, ins->sreg2);
3543 #ifdef __mono_ppc64__
3544                         else
3545                                 ppc_divduod (code, ins->dreg, ins->sreg1, ins->sreg2);
3546 #endif
3547                         ppc_mfspr (code, ppc_r0, ppc_xer);
3548                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3549                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "DivideByZeroException");
3550                         break;
3551                 case OP_DIV_IMM:
3552                 case OP_IREM:
3553                 case OP_IREM_UN:
3554                 case OP_REM_IMM:
3555                         g_assert_not_reached ();
3556                 case OP_IOR:
3557                 CASE_PPC64 (OP_LOR)
3558                         ppc_or (code, ins->dreg, ins->sreg1, ins->sreg2);
3559                         break;
3560                 case OP_OR_IMM:
3561                 case OP_IOR_IMM:
3562                 CASE_PPC64 (OP_LOR_IMM)
3563                         if (!(ins->inst_imm & 0xffff0000)) {
3564                                 ppc_ori (code, ins->sreg1, ins->dreg, ins->inst_imm);
3565                         } else if (!(ins->inst_imm & 0xffff)) {
3566                                 ppc_oris (code, ins->dreg, ins->sreg1, ((guint32)(ins->inst_imm) >> 16));
3567                         } else {
3568                                 g_assert_not_reached ();
3569                         }
3570                         break;
3571                 case OP_IXOR:
3572                 CASE_PPC64 (OP_LXOR)
3573                         ppc_xor (code, ins->dreg, ins->sreg1, ins->sreg2);
3574                         break;
3575                 case OP_IXOR_IMM:
3576                 case OP_XOR_IMM:
3577                 CASE_PPC64 (OP_LXOR_IMM)
3578                         if (!(ins->inst_imm & 0xffff0000)) {
3579                                 ppc_xori (code, ins->sreg1, ins->dreg, ins->inst_imm);
3580                         } else if (!(ins->inst_imm & 0xffff)) {
3581                                 ppc_xoris (code, ins->sreg1, ins->dreg, ((guint32)(ins->inst_imm) >> 16));
3582                         } else {
3583                                 g_assert_not_reached ();
3584                         }
3585                         break;
3586                 case OP_ISHL:
3587                 CASE_PPC64 (OP_LSHL)
3588                         ppc_shift_left (code, ins->dreg, ins->sreg1, ins->sreg2);
3589                         break;
3590                 case OP_SHL_IMM:
3591                 case OP_ISHL_IMM:
3592                 CASE_PPC64 (OP_LSHL_IMM)
3593                         ppc_shift_left_imm (code, ins->dreg, ins->sreg1, MASK_SHIFT_IMM (ins->inst_imm));
3594                         break;
3595                 case OP_ISHR:
3596                         ppc_sraw (code, ins->dreg, ins->sreg1, ins->sreg2);
3597                         break;
3598                 case OP_SHR_IMM:
3599                         ppc_shift_right_arith_imm (code, ins->dreg, ins->sreg1, MASK_SHIFT_IMM (ins->inst_imm));
3600                         break;
3601                 case OP_SHR_UN_IMM:
3602                         if (MASK_SHIFT_IMM (ins->inst_imm))
3603                                 ppc_shift_right_imm (code, ins->dreg, ins->sreg1, MASK_SHIFT_IMM (ins->inst_imm));
3604                         else
3605                                 ppc_mr (code, ins->dreg, ins->sreg1);
3606                         break;
3607                 case OP_ISHR_UN:
3608                         ppc_srw (code, ins->dreg, ins->sreg1, ins->sreg2);
3609                         break;
3610                 case OP_INOT:
3611                 CASE_PPC64 (OP_LNOT)
3612                         ppc_not (code, ins->dreg, ins->sreg1);
3613                         break;
3614                 case OP_INEG:
3615                 CASE_PPC64 (OP_LNEG)
3616                         ppc_neg (code, ins->dreg, ins->sreg1);
3617                         break;
3618                 case OP_IMUL:
3619                 CASE_PPC64 (OP_LMUL)
3620                         ppc_multiply (code, ins->dreg, ins->sreg1, ins->sreg2);
3621                         break;
3622                 case OP_IMUL_IMM:
3623                 case OP_MUL_IMM:
3624                 CASE_PPC64 (OP_LMUL_IMM)
3625                         if (ppc_is_imm16 (ins->inst_imm)) {
3626                             ppc_mulli (code, ins->dreg, ins->sreg1, ins->inst_imm);
3627                         } else {
3628                             g_assert_not_reached ();
3629                         }
3630                         break;
3631                 case OP_IMUL_OVF:
3632                 CASE_PPC64 (OP_LMUL_OVF)
3633                         /* we annot use mcrxr, since it's not implemented on some processors 
3634                          * XER format: SO, OV, CA, reserved [21 bits], count [8 bits]
3635                          */
3636                         if (ins->opcode == OP_IMUL_OVF)
3637                                 ppc_mullwo (code, ins->dreg, ins->sreg1, ins->sreg2);
3638 #ifdef __mono_ppc64__
3639                         else
3640                                 ppc_mulldo (code, ins->dreg, ins->sreg1, ins->sreg2);
3641 #endif
3642                         ppc_mfspr (code, ppc_r0, ppc_xer);
3643                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3644                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
3645                         break;
3646                 case OP_IMUL_OVF_UN:
3647                 CASE_PPC64 (OP_LMUL_OVF_UN)
3648                         /* we first multiply to get the high word and compare to 0
3649                          * to set the flags, then the result is discarded and then 
3650                          * we multiply to get the lower * bits result
3651                          */
3652                         if (ins->opcode == OP_IMUL_OVF_UN)
3653                                 ppc_mulhwu (code, ppc_r0, ins->sreg1, ins->sreg2);
3654 #ifdef __mono_ppc64__
3655                         else
3656                                 ppc_mulhdu (code, ppc_r0, ins->sreg1, ins->sreg2);
3657 #endif
3658                         ppc_cmpi (code, 0, 0, ppc_r0, 0);
3659                         EMIT_COND_SYSTEM_EXCEPTION (CEE_BNE_UN - CEE_BEQ, "OverflowException");
3660                         ppc_multiply (code, ins->dreg, ins->sreg1, ins->sreg2);
3661                         break;
3662                 case OP_ICONST:
3663                         ppc_load (code, ins->dreg, ins->inst_c0);
3664                         break;
3665                 case OP_I8CONST: {
3666                         ppc_load (code, ins->dreg, ins->inst_l);
3667                         break;
3668                 }
3669                 case OP_LOAD_GOTADDR:
3670                         /* The PLT implementation depends on this */
3671                         g_assert (ins->dreg == ppc_r30);
3672
3673                         code = mono_arch_emit_load_got_addr (cfg->native_code, code, cfg, NULL);
3674                         break;
3675                 case OP_GOT_ENTRY:
3676                         // FIXME: Fix max instruction length
3677                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_right->inst_i1, ins->inst_right->inst_p0);
3678                         /* arch_emit_got_access () patches this */
3679                         ppc_load32 (code, ppc_r0, 0);
3680                         ppc_ldptr_indexed (code, ins->dreg, ins->inst_basereg, ppc_r0);
3681                         break;
3682                 case OP_AOTCONST:
3683                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
3684                         ppc_load_sequence (code, ins->dreg, 0);
3685                         break;
3686                 CASE_PPC32 (OP_ICONV_TO_I4)
3687                 CASE_PPC32 (OP_ICONV_TO_U4)
3688                 case OP_MOVE:
3689                         ppc_mr (code, ins->dreg, ins->sreg1);
3690                         break;
3691                 case OP_SETLRET: {
3692                         int saved = ins->sreg1;
3693                         if (ins->sreg1 == ppc_r3) {
3694                                 ppc_mr (code, ppc_r0, ins->sreg1);
3695                                 saved = ppc_r0;
3696                         }
3697                         if (ins->sreg2 != ppc_r3)
3698                                 ppc_mr (code, ppc_r3, ins->sreg2);
3699                         if (saved != ppc_r4)
3700                                 ppc_mr (code, ppc_r4, saved);
3701                         break;
3702                 }
3703                 case OP_FMOVE:
3704                         ppc_fmr (code, ins->dreg, ins->sreg1);
3705                         break;
3706                 case OP_FCONV_TO_R4:
3707                         ppc_frsp (code, ins->dreg, ins->sreg1);
3708                         break;
3709                 case OP_TAILCALL: {
3710                         int i, pos;
3711                         MonoCallInst *call = (MonoCallInst*)ins;
3712
3713                         /*
3714                          * Keep in sync with mono_arch_emit_epilog
3715                          */
3716                         g_assert (!cfg->method->save_lmf);
3717                         /*
3718                          * Note: we can use ppc_r11 here because it is dead anyway:
3719                          * we're leaving the method.
3720                          */
3721                         if (1 || cfg->flags & MONO_CFG_HAS_CALLS) {
3722                                 long ret_offset = cfg->stack_usage + PPC_RET_ADDR_OFFSET;
3723                                 if (ppc_is_imm16 (ret_offset)) {
3724                                         ppc_ldptr (code, ppc_r0, ret_offset, cfg->frame_reg);
3725                                 } else {
3726                                         ppc_load (code, ppc_r11, ret_offset);
3727                                         ppc_ldptr_indexed (code, ppc_r0, cfg->frame_reg, ppc_r11);
3728                                 }
3729                                 ppc_mtlr (code, ppc_r0);
3730                         }
3731
3732                         if (ppc_is_imm16 (cfg->stack_usage)) {
3733                                 ppc_addi (code, ppc_r11, cfg->frame_reg, cfg->stack_usage);
3734                         } else {
3735                                 /* cfg->stack_usage is an int, so we can use
3736                                  * an addis/addi sequence here even in 64-bit.  */
3737                                 ppc_addis (code, ppc_r11, cfg->frame_reg, ppc_ha(cfg->stack_usage));
3738                                 ppc_addi (code, ppc_r11, ppc_r11, cfg->stack_usage);
3739                         }
3740                         if (!cfg->method->save_lmf) {
3741                                 pos = 0;
3742                                 for (i = 31; i >= 13; --i) {
3743                                         if (cfg->used_int_regs & (1 << i)) {
3744                                                 pos += sizeof (gpointer);
3745                                                 ppc_ldptr (code, i, -pos, ppc_r11);
3746                                         }
3747                                 }
3748                         } else {
3749                                 /* FIXME restore from MonoLMF: though this can't happen yet */
3750                         }
3751
3752                         /* Copy arguments on the stack to our argument area */
3753                         if (call->stack_usage) {
3754                                 code = emit_memcpy (code, call->stack_usage, ppc_r11, PPC_STACK_PARAM_OFFSET, ppc_sp, PPC_STACK_PARAM_OFFSET);
3755                                 /* r11 was clobbered */
3756                                 g_assert (cfg->frame_reg == ppc_sp);
3757                                 if (ppc_is_imm16 (cfg->stack_usage)) {
3758                                         ppc_addi (code, ppc_r11, cfg->frame_reg, cfg->stack_usage);
3759                                 } else {
3760                                         /* cfg->stack_usage is an int, so we can use
3761                                          * an addis/addi sequence here even in 64-bit.  */
3762                                         ppc_addis (code, ppc_r11, cfg->frame_reg, ppc_ha(cfg->stack_usage));
3763                                         ppc_addi (code, ppc_r11, ppc_r11, cfg->stack_usage);
3764                                 }
3765                         }
3766
3767                         ppc_mr (code, ppc_sp, ppc_r11);
3768                         mono_add_patch_info (cfg, (guint8*) code - cfg->native_code, MONO_PATCH_INFO_METHOD_JUMP, call->method);
3769                         if (cfg->compile_aot) {
3770                                 /* arch_emit_got_access () patches this */
3771                                 ppc_load32 (code, ppc_r0, 0);
3772 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
3773                                 ppc_ldptr_indexed (code, ppc_r11, ppc_r30, ppc_r0);
3774                                 ppc_ldptr (code, ppc_r0, 0, ppc_r11);
3775 #else
3776                                 ppc_ldptr_indexed (code, ppc_r0, ppc_r30, ppc_r0);
3777 #endif
3778                                 ppc_mtctr (code, ppc_r0);
3779                                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
3780                         } else {
3781                                 ppc_b (code, 0);
3782                         }
3783                         break;
3784                 }
3785                 case OP_CHECK_THIS:
3786                         /* ensure ins->sreg1 is not NULL */
3787                         ppc_ldptr (code, ppc_r0, 0, ins->sreg1);
3788                         break;
3789                 case OP_ARGLIST: {
3790                         long cookie_offset = cfg->sig_cookie + cfg->stack_usage;
3791                         if (ppc_is_imm16 (cookie_offset)) {
3792                                 ppc_addi (code, ppc_r0, cfg->frame_reg, cookie_offset);
3793                         } else {
3794                                 ppc_load (code, ppc_r0, cookie_offset);
3795                                 ppc_add (code, ppc_r0, cfg->frame_reg, ppc_r0);
3796                         }
3797                         ppc_stptr (code, ppc_r0, 0, ins->sreg1);
3798                         break;
3799                 }
3800                 case OP_FCALL:
3801                 case OP_LCALL:
3802                 case OP_VCALL:
3803                 case OP_VCALL2:
3804                 case OP_VOIDCALL:
3805                 case OP_CALL:
3806                         call = (MonoCallInst*)ins;
3807                         if (ins->flags & MONO_INST_HAS_METHOD)
3808                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
3809                         else
3810                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
3811                         if ((FORCE_INDIR_CALL || cfg->method->dynamic) && !cfg->compile_aot) {
3812                                 ppc_load_func (code, ppc_r0, 0);
3813                                 ppc_mtlr (code, ppc_r0);
3814                                 ppc_blrl (code);
3815                         } else {
3816                                 ppc_bl (code, 0);
3817                         }
3818                         /* FIXME: this should be handled somewhere else in the new jit */
3819                         code = emit_move_return_value (cfg, ins, code);
3820                         break;
3821                 case OP_FCALL_REG:
3822                 case OP_LCALL_REG:
3823                 case OP_VCALL_REG:
3824                 case OP_VCALL2_REG:
3825                 case OP_VOIDCALL_REG:
3826                 case OP_CALL_REG:
3827 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
3828                         ppc_ldptr (code, ppc_r0, 0, ins->sreg1);
3829                         /* FIXME: if we know that this is a method, we
3830                            can omit this load */
3831                         ppc_ldptr (code, ppc_r2, 8, ins->sreg1);
3832                         ppc_mtlr (code, ppc_r0);
3833 #else
3834                         ppc_mtlr (code, ins->sreg1);
3835 #endif
3836                         ppc_blrl (code);
3837                         /* FIXME: this should be handled somewhere else in the new jit */
3838                         code = emit_move_return_value (cfg, ins, code);
3839                         break;
3840                 case OP_FCALL_MEMBASE:
3841                 case OP_LCALL_MEMBASE:
3842                 case OP_VCALL_MEMBASE:
3843                 case OP_VCALL2_MEMBASE:
3844                 case OP_VOIDCALL_MEMBASE:
3845                 case OP_CALL_MEMBASE:
3846                         if (cfg->compile_aot && ins->sreg1 == ppc_r11) {
3847                                 /* The trampolines clobber this */
3848                                 ppc_mr (code, ppc_r29, ins->sreg1);
3849                                 ppc_ldptr (code, ppc_r0, ins->inst_offset, ppc_r29);
3850                         } else {
3851                                 ppc_ldptr (code, ppc_r0, ins->inst_offset, ins->sreg1);
3852                         }
3853                         ppc_mtlr (code, ppc_r0);
3854                         ppc_blrl (code);
3855                         /* FIXME: this should be handled somewhere else in the new jit */
3856                         code = emit_move_return_value (cfg, ins, code);
3857                         break;
3858                 case OP_LOCALLOC: {
3859                         guint8 * zero_loop_jump, * zero_loop_start;
3860                         /* keep alignment */
3861                         int alloca_waste = PPC_STACK_PARAM_OFFSET + cfg->param_area + 31;
3862                         int area_offset = alloca_waste;
3863                         area_offset &= ~31;
3864                         ppc_addi (code, ppc_r11, ins->sreg1, alloca_waste + 31);
3865                         /* FIXME: should be calculated from MONO_ARCH_FRAME_ALIGNMENT */
3866                         ppc_clear_right_imm (code, ppc_r11, ppc_r11, 4);
3867                         /* use ctr to store the number of words to 0 if needed */
3868                         if (ins->flags & MONO_INST_INIT) {
3869                                 /* we zero 4 bytes at a time:
3870                                  * we add 7 instead of 3 so that we set the counter to
3871                                  * at least 1, otherwise the bdnz instruction will make
3872                                  * it negative and iterate billions of times.
3873                                  */
3874                                 ppc_addi (code, ppc_r0, ins->sreg1, 7);
3875                                 ppc_shift_right_arith_imm (code, ppc_r0, ppc_r0, 2);
3876                                 ppc_mtctr (code, ppc_r0);
3877                         }
3878                         ppc_ldptr (code, ppc_r0, 0, ppc_sp);
3879                         ppc_neg (code, ppc_r11, ppc_r11);
3880                         ppc_stptr_update_indexed (code, ppc_r0, ppc_sp, ppc_r11);
3881
3882                         /* FIXME: make this loop work in 8 byte
3883                            increments on PPC64 */
3884                         if (ins->flags & MONO_INST_INIT) {
3885                                 /* adjust the dest reg by -4 so we can use stwu */
3886                                 /* we actually adjust -8 because we let the loop
3887                                  * run at least once
3888                                  */
3889                                 ppc_addi (code, ins->dreg, ppc_sp, (area_offset - 8));
3890                                 ppc_li (code, ppc_r11, 0);
3891                                 zero_loop_start = code;
3892                                 ppc_stwu (code, ppc_r11, 4, ins->dreg);
3893                                 zero_loop_jump = code;
3894                                 ppc_bc (code, PPC_BR_DEC_CTR_NONZERO, 0, 0);
3895                                 ppc_patch (zero_loop_jump, zero_loop_start);
3896                         }
3897                         ppc_addi (code, ins->dreg, ppc_sp, area_offset);
3898                         break;
3899                 }
3900                 case OP_THROW: {
3901                         //ppc_break (code);
3902                         ppc_mr (code, ppc_r3, ins->sreg1);
3903                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3904                                              (gpointer)"mono_arch_throw_exception");
3905                         if ((FORCE_INDIR_CALL || cfg->method->dynamic) && !cfg->compile_aot) {
3906                                 ppc_load_func (code, ppc_r0, 0);
3907                                 ppc_mtlr (code, ppc_r0);
3908                                 ppc_blrl (code);
3909                         } else {
3910                                 ppc_bl (code, 0);
3911                         }
3912                         break;
3913                 }
3914                 case OP_RETHROW: {
3915                         //ppc_break (code);
3916                         ppc_mr (code, ppc_r3, ins->sreg1);
3917                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3918                                              (gpointer)"mono_arch_rethrow_exception");
3919                         if ((FORCE_INDIR_CALL || cfg->method->dynamic) && !cfg->compile_aot) {
3920                                 ppc_load_func (code, ppc_r0, 0);
3921                                 ppc_mtlr (code, ppc_r0);
3922                                 ppc_blrl (code);
3923                         } else {
3924                                 ppc_bl (code, 0);
3925                         }
3926                         break;
3927                 }
3928                 case OP_START_HANDLER: {
3929                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3930                         g_assert (spvar->inst_basereg != ppc_sp);
3931                         code = emit_reserve_param_area (cfg, code);
3932                         ppc_mflr (code, ppc_r0);
3933                         if (ppc_is_imm16 (spvar->inst_offset)) {
3934                                 ppc_stptr (code, ppc_r0, spvar->inst_offset, spvar->inst_basereg);
3935                         } else {
3936                                 ppc_load (code, ppc_r11, spvar->inst_offset);
3937                                 ppc_stptr_indexed (code, ppc_r0, ppc_r11, spvar->inst_basereg);
3938                         }
3939                         break;
3940                 }
3941                 case OP_ENDFILTER: {
3942                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3943                         g_assert (spvar->inst_basereg != ppc_sp);
3944                         code = emit_unreserve_param_area (cfg, code);
3945                         if (ins->sreg1 != ppc_r3)
3946                                 ppc_mr (code, ppc_r3, ins->sreg1);
3947                         if (ppc_is_imm16 (spvar->inst_offset)) {
3948                                 ppc_ldptr (code, ppc_r0, spvar->inst_offset, spvar->inst_basereg);
3949                         } else {
3950                                 ppc_load (code, ppc_r11, spvar->inst_offset);
3951                                 ppc_ldptr_indexed (code, ppc_r0, spvar->inst_basereg, ppc_r11);
3952                         }
3953                         ppc_mtlr (code, ppc_r0);
3954                         ppc_blr (code);
3955                         break;
3956                 }
3957                 case OP_ENDFINALLY: {
3958                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3959                         g_assert (spvar->inst_basereg != ppc_sp);
3960                         code = emit_unreserve_param_area (cfg, code);
3961                         ppc_ldptr (code, ppc_r0, spvar->inst_offset, spvar->inst_basereg);
3962                         ppc_mtlr (code, ppc_r0);
3963                         ppc_blr (code);
3964                         break;
3965                 }
3966                 case OP_CALL_HANDLER: 
3967                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_target_bb);
3968                         ppc_bl (code, 0);
3969                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
3970                         break;
3971                 case OP_LABEL:
3972                         ins->inst_c0 = code - cfg->native_code;
3973                         break;
3974                 case OP_BR:
3975                         /*if (ins->inst_target_bb->native_offset) {
3976                                 ppc_b (code, 0);
3977                                 //x86_jump_code (code, cfg->native_code + ins->inst_target_bb->native_offset); 
3978                         } else*/ {
3979                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
3980                                 ppc_b (code, 0);
3981                         }
3982                         break;
3983                 case OP_BR_REG:
3984                         ppc_mtctr (code, ins->sreg1);
3985                         ppc_bcctr (code, PPC_BR_ALWAYS, 0);
3986                         break;
3987                 case OP_CEQ:
3988                 case OP_ICEQ:
3989                 CASE_PPC64 (OP_LCEQ)
3990                         ppc_li (code, ins->dreg, 0);
3991                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 2);
3992                         ppc_li (code, ins->dreg, 1);
3993                         break;
3994                 case OP_CLT:
3995                 case OP_CLT_UN:
3996                 case OP_ICLT:
3997                 case OP_ICLT_UN:
3998                 CASE_PPC64 (OP_LCLT)
3999                 CASE_PPC64 (OP_LCLT_UN)
4000                         ppc_li (code, ins->dreg, 1);
4001                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_LT, 2);
4002                         ppc_li (code, ins->dreg, 0);
4003                         break;
4004                 case OP_CGT:
4005                 case OP_CGT_UN:
4006                 case OP_ICGT:
4007                 case OP_ICGT_UN:
4008                 CASE_PPC64 (OP_LCGT)
4009                 CASE_PPC64 (OP_LCGT_UN)
4010                         ppc_li (code, ins->dreg, 1);
4011                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_GT, 2);
4012                         ppc_li (code, ins->dreg, 0);
4013                         break;
4014                 case OP_COND_EXC_EQ:
4015                 case OP_COND_EXC_NE_UN:
4016                 case OP_COND_EXC_LT:
4017                 case OP_COND_EXC_LT_UN:
4018                 case OP_COND_EXC_GT:
4019                 case OP_COND_EXC_GT_UN:
4020                 case OP_COND_EXC_GE:
4021                 case OP_COND_EXC_GE_UN:
4022                 case OP_COND_EXC_LE:
4023                 case OP_COND_EXC_LE_UN:
4024                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_EQ, ins->inst_p1);
4025                         break;
4026                 case OP_COND_EXC_IEQ:
4027                 case OP_COND_EXC_INE_UN:
4028                 case OP_COND_EXC_ILT:
4029                 case OP_COND_EXC_ILT_UN:
4030                 case OP_COND_EXC_IGT:
4031                 case OP_COND_EXC_IGT_UN:
4032                 case OP_COND_EXC_IGE:
4033                 case OP_COND_EXC_IGE_UN:
4034                 case OP_COND_EXC_ILE:
4035                 case OP_COND_EXC_ILE_UN:
4036                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_IEQ, ins->inst_p1);
4037                         break;
4038                 case OP_IBEQ:
4039                 case OP_IBNE_UN:
4040                 case OP_IBLT:
4041                 case OP_IBLT_UN:
4042                 case OP_IBGT:
4043                 case OP_IBGT_UN:
4044                 case OP_IBGE:
4045                 case OP_IBGE_UN:
4046                 case OP_IBLE:
4047                 case OP_IBLE_UN:
4048                         EMIT_COND_BRANCH (ins, ins->opcode - OP_IBEQ);
4049                         break;
4050
4051                 /* floating point opcodes */
4052                 case OP_R8CONST:
4053                         g_assert (cfg->compile_aot);
4054
4055                         /* FIXME: Optimize this */
4056                         ppc_bl (code, 1);
4057                         ppc_mflr (code, ppc_r11);
4058                         ppc_b (code, 3);
4059                         *(double*)code = *(double*)ins->inst_p0;
4060                         code += 8;
4061                         ppc_lfd (code, ins->dreg, 8, ppc_r11);
4062                         break;
4063                 case OP_R4CONST:
4064                         g_assert_not_reached ();
4065                         break;
4066                 case OP_STORER8_MEMBASE_REG:
4067                         if (ppc_is_imm16 (ins->inst_offset)) {
4068                                 ppc_stfd (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
4069                         } else {
4070                                 if (ppc_is_imm32 (ins->inst_offset)) {
4071                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
4072                                         ppc_stfd (code, ins->sreg1, ins->inst_offset, ppc_r12);
4073                                 } else {
4074                                         ppc_load (code, ppc_r0, ins->inst_offset);
4075                                         ppc_stfdx (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
4076                                 }
4077                         }
4078                         break;
4079                 case OP_LOADR8_MEMBASE:
4080                         if (ppc_is_imm16 (ins->inst_offset)) {
4081                                 ppc_lfd (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
4082                         } else {
4083                                 if (ppc_is_imm32 (ins->inst_offset)) {
4084                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
4085                                         ppc_lfd (code, ins->dreg, ins->inst_offset, ppc_r12);
4086                                 } else {
4087                                         ppc_load (code, ppc_r0, ins->inst_offset);
4088                                         ppc_lfdx (code, ins->dreg, ins->inst_destbasereg, ppc_r0);
4089                                 }
4090                         }
4091                         break;
4092                 case OP_STORER4_MEMBASE_REG:
4093                         ppc_frsp (code, ins->sreg1, ins->sreg1);
4094                         if (ppc_is_imm16 (ins->inst_offset)) {
4095                                 ppc_stfs (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
4096                         } else {
4097                                 if (ppc_is_imm32 (ins->inst_offset)) {
4098                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
4099                                         ppc_stfs (code, ins->sreg1, ins->inst_offset, ppc_r12);
4100                                 } else {
4101                                         ppc_load (code, ppc_r0, ins->inst_offset);
4102                                         ppc_stfsx (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
4103                                 }
4104                         }
4105                         break;
4106                 case OP_LOADR4_MEMBASE:
4107                         if (ppc_is_imm16 (ins->inst_offset)) {
4108                                 ppc_lfs (code, ins->dreg, ins->inst_offset, ins->inst_basereg);
4109                         } else {
4110                                 if (ppc_is_imm32 (ins->inst_offset)) {
4111                                         ppc_addis (code, ppc_r12, ins->inst_destbasereg, ppc_ha(ins->inst_offset));
4112                                         ppc_lfs (code, ins->dreg, ins->inst_offset, ppc_r12);
4113                                 } else {
4114                                         ppc_load (code, ppc_r0, ins->inst_offset);
4115                                         ppc_lfsx (code, ins->dreg, ins->inst_destbasereg, ppc_r0);
4116                                 }
4117                         }
4118                         break;
4119                 case OP_LOADR4_MEMINDEX:
4120                         ppc_lfsx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4121                         break;
4122                 case OP_LOADR8_MEMINDEX:
4123                         ppc_lfdx (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4124                         break;
4125                 case OP_STORER4_MEMINDEX:
4126                         ppc_frsp (code, ins->sreg1, ins->sreg1);
4127                         ppc_stfsx (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4128                         break;
4129                 case OP_STORER8_MEMINDEX:
4130                         ppc_stfdx (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4131                         break;
4132                 case CEE_CONV_R_UN:
4133                 case CEE_CONV_R4: /* FIXME: change precision */
4134                 case CEE_CONV_R8:
4135                         g_assert_not_reached ();
4136                 case OP_FCONV_TO_I1:
4137                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
4138                         break;
4139                 case OP_FCONV_TO_U1:
4140                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
4141                         break;
4142                 case OP_FCONV_TO_I2:
4143                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
4144                         break;
4145                 case OP_FCONV_TO_U2:
4146                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
4147                         break;
4148                 case OP_FCONV_TO_I4:
4149                 case OP_FCONV_TO_I:
4150                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
4151                         break;
4152                 case OP_FCONV_TO_U4:
4153                 case OP_FCONV_TO_U:
4154                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
4155                         break;
4156                 case OP_LCONV_TO_R_UN:
4157                         g_assert_not_reached ();
4158                         /* Implemented as helper calls */
4159                         break;
4160                 case OP_LCONV_TO_OVF_I4_2:
4161                 case OP_LCONV_TO_OVF_I: {
4162 #ifdef __mono_ppc64__
4163                         NOT_IMPLEMENTED;
4164 #else
4165                         guint8 *negative_branch, *msword_positive_branch, *msword_negative_branch, *ovf_ex_target;
4166                         // Check if its negative
4167                         ppc_cmpi (code, 0, 0, ins->sreg1, 0);
4168                         negative_branch = code;
4169                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_LT, 0);
4170                         // Its positive msword == 0
4171                         ppc_cmpi (code, 0, 0, ins->sreg2, 0);
4172                         msword_positive_branch = code;
4173                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
4174
4175                         ovf_ex_target = code;
4176                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_ALWAYS, 0, "OverflowException");
4177                         // Negative
4178                         ppc_patch (negative_branch, code);
4179                         ppc_cmpi (code, 0, 0, ins->sreg2, -1);
4180                         msword_negative_branch = code;
4181                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
4182                         ppc_patch (msword_negative_branch, ovf_ex_target);
4183                         
4184                         ppc_patch (msword_positive_branch, code);
4185                         if (ins->dreg != ins->sreg1)
4186                                 ppc_mr (code, ins->dreg, ins->sreg1);
4187                         break;
4188 #endif
4189                 }
4190                 case OP_SQRT:
4191                         ppc_fsqrtd (code, ins->dreg, ins->sreg1);
4192                         break;
4193                 case OP_FADD:
4194                         ppc_fadd (code, ins->dreg, ins->sreg1, ins->sreg2);
4195                         break;
4196                 case OP_FSUB:
4197                         ppc_fsub (code, ins->dreg, ins->sreg1, ins->sreg2);
4198                         break;          
4199                 case OP_FMUL:
4200                         ppc_fmul (code, ins->dreg, ins->sreg1, ins->sreg2);
4201                         break;          
4202                 case OP_FDIV:
4203                         ppc_fdiv (code, ins->dreg, ins->sreg1, ins->sreg2);
4204                         break;          
4205                 case OP_FNEG:
4206                         ppc_fneg (code, ins->dreg, ins->sreg1);
4207                         break;          
4208                 case OP_FREM:
4209                         /* emulated */
4210                         g_assert_not_reached ();
4211                         break;
4212                 case OP_FCOMPARE:
4213                         ppc_fcmpu (code, 0, ins->sreg1, ins->sreg2);
4214                         break;
4215                 case OP_FCEQ:
4216                         ppc_fcmpo (code, 0, ins->sreg1, ins->sreg2);
4217                         ppc_li (code, ins->dreg, 0);
4218                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 2);
4219                         ppc_li (code, ins->dreg, 1);
4220                         break;
4221                 case OP_FCLT:
4222                         ppc_fcmpo (code, 0, ins->sreg1, ins->sreg2);
4223                         ppc_li (code, ins->dreg, 1);
4224                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_LT, 2);
4225                         ppc_li (code, ins->dreg, 0);
4226                         break;
4227                 case OP_FCLT_UN:
4228                         ppc_fcmpu (code, 0, ins->sreg1, ins->sreg2);
4229                         ppc_li (code, ins->dreg, 1);
4230                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 3);
4231                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_LT, 2);
4232                         ppc_li (code, ins->dreg, 0);
4233                         break;
4234                 case OP_FCGT:
4235                         ppc_fcmpo (code, 0, ins->sreg1, ins->sreg2);
4236                         ppc_li (code, ins->dreg, 1);
4237                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_GT, 2);
4238                         ppc_li (code, ins->dreg, 0);
4239                         break;
4240                 case OP_FCGT_UN:
4241                         ppc_fcmpu (code, 0, ins->sreg1, ins->sreg2);
4242                         ppc_li (code, ins->dreg, 1);
4243                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 3);
4244                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_GT, 2);
4245                         ppc_li (code, ins->dreg, 0);
4246                         break;
4247                 case OP_FBEQ:
4248                         EMIT_COND_BRANCH (ins, CEE_BEQ - CEE_BEQ);
4249                         break;
4250                 case OP_FBNE_UN:
4251                         EMIT_COND_BRANCH (ins, CEE_BNE_UN - CEE_BEQ);
4252                         break;
4253                 case OP_FBLT:
4254                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 2);
4255                         EMIT_COND_BRANCH (ins, CEE_BLT - CEE_BEQ);
4256                         break;
4257                 case OP_FBLT_UN:
4258                         EMIT_COND_BRANCH_FLAGS (ins, PPC_BR_TRUE, PPC_BR_SO);
4259                         EMIT_COND_BRANCH (ins, CEE_BLT_UN - CEE_BEQ);
4260                         break;
4261                 case OP_FBGT:
4262                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 2);
4263                         EMIT_COND_BRANCH (ins, CEE_BGT - CEE_BEQ);
4264                         break;
4265                 case OP_FBGT_UN:
4266                         EMIT_COND_BRANCH_FLAGS (ins, PPC_BR_TRUE, PPC_BR_SO);
4267                         EMIT_COND_BRANCH (ins, CEE_BGT_UN - CEE_BEQ);
4268                         break;
4269                 case OP_FBGE:
4270                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 2);
4271                         EMIT_COND_BRANCH (ins, CEE_BGE - CEE_BEQ);
4272                         break;
4273                 case OP_FBGE_UN:
4274                         EMIT_COND_BRANCH (ins, CEE_BGE_UN - CEE_BEQ);
4275                         break;
4276                 case OP_FBLE:
4277                         ppc_bc (code, PPC_BR_TRUE, PPC_BR_SO, 2);
4278                         EMIT_COND_BRANCH (ins, CEE_BLE - CEE_BEQ);
4279                         break;
4280                 case OP_FBLE_UN:
4281                         EMIT_COND_BRANCH (ins, CEE_BLE_UN - CEE_BEQ);
4282                         break;
4283                 case OP_CKFINITE:
4284                         g_assert_not_reached ();
4285                 case OP_CHECK_FINITE: {
4286                         ppc_rlwinm (code, ins->sreg1, ins->sreg1, 0, 1, 31);
4287                         ppc_addis (code, ins->sreg1, ins->sreg1, -32752);
4288                         ppc_rlwinmd (code, ins->sreg1, ins->sreg1, 1, 31, 31);
4289                         EMIT_COND_SYSTEM_EXCEPTION (CEE_BEQ - CEE_BEQ, "ArithmeticException");
4290                         break;
4291                 case OP_JUMP_TABLE:
4292                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_c1, ins->inst_p0);
4293 #ifdef __mono_ppc64__
4294                         ppc_load_sequence (code, ins->dreg, (guint64)0x0f0f0f0f0f0f0f0fLL);
4295 #else
4296                         ppc_load_sequence (code, ins->dreg, (gulong)0x0f0f0f0fL);
4297 #endif
4298                         break;
4299                 }
4300
4301 #ifdef __mono_ppc64__
4302                 case OP_ICONV_TO_I4:
4303                 case OP_SEXT_I4:
4304                         ppc_extsw (code, ins->dreg, ins->sreg1);
4305                         break;
4306                 case OP_ICONV_TO_U4:
4307                 case OP_ZEXT_I4:
4308                         ppc_clrldi (code, ins->dreg, ins->sreg1, 32);
4309                         break;
4310                 case OP_ICONV_TO_R4:
4311                 case OP_ICONV_TO_R8:
4312                 case OP_LCONV_TO_R4:
4313                 case OP_LCONV_TO_R8: {
4314                         int tmp;
4315                         if (ins->opcode == OP_ICONV_TO_R4 || ins->opcode == OP_ICONV_TO_R8) {
4316                                 ppc_extsw (code, ppc_r0, ins->sreg1);
4317                                 tmp = ppc_r0;
4318                         } else {
4319                                 tmp = ins->sreg1;
4320                         }
4321                         if (cpu_hw_caps & PPC_MOVE_FPR_GPR) {
4322                                 ppc_mffgpr (code, ins->dreg, tmp);
4323                         } else {
4324                                 ppc_str (code, tmp, -8, ppc_r1);
4325                                 ppc_lfd (code, ins->dreg, -8, ppc_r1);
4326                         }
4327                         ppc_fcfid (code, ins->dreg, ins->dreg);
4328                         if (ins->opcode == OP_ICONV_TO_R4 || ins->opcode == OP_LCONV_TO_R4)
4329                                 ppc_frsp (code, ins->dreg, ins->dreg);
4330                         break;
4331                 }
4332                 case OP_LSHR:
4333                         ppc_srad (code, ins->dreg, ins->sreg1, ins->sreg2);
4334                         break;
4335                 case OP_LSHR_UN:
4336                         ppc_srd (code, ins->dreg, ins->sreg1, ins->sreg2);
4337                         break;
4338                 case OP_COND_EXC_C:
4339                         /* check XER [0-3] (SO, OV, CA): we can't use mcrxr
4340                          */
4341                         ppc_mfspr (code, ppc_r0, ppc_xer);
4342                         ppc_andisd (code, ppc_r0, ppc_r0, (1 << 13)); /* CA */
4343                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, ins->inst_p1);
4344                         break;
4345                 case OP_COND_EXC_OV:
4346                         ppc_mfspr (code, ppc_r0, ppc_xer);
4347                         ppc_andisd (code, ppc_r0, ppc_r0, (1 << 14)); /* OV */
4348                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, ins->inst_p1);
4349                         break;
4350                 case OP_LBEQ:
4351                 case OP_LBNE_UN:
4352                 case OP_LBLT:
4353                 case OP_LBLT_UN:
4354                 case OP_LBGT:
4355                 case OP_LBGT_UN:
4356                 case OP_LBGE:
4357                 case OP_LBGE_UN:
4358                 case OP_LBLE:
4359                 case OP_LBLE_UN:
4360                         EMIT_COND_BRANCH (ins, ins->opcode - OP_LBEQ);
4361                         break;
4362                 case OP_FCONV_TO_I8:
4363                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 8, TRUE);
4364                         break;
4365                 case OP_FCONV_TO_U8:
4366                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 8, FALSE);
4367                         break;
4368                 case OP_STOREI4_MEMBASE_REG:
4369                         if (ppc_is_imm16 (ins->inst_offset)) {
4370                                 ppc_stw (code, ins->sreg1, ins->inst_offset, ins->inst_destbasereg);
4371                         } else {
4372                                 ppc_load (code, ppc_r0, ins->inst_offset);
4373                                 ppc_stwx (code, ins->sreg1, ins->inst_destbasereg, ppc_r0);
4374                         }
4375                         break;
4376                 case OP_STOREI4_MEMINDEX:
4377                         ppc_stwx (code, ins->sreg1, ins->sreg2, ins->inst_destbasereg);
4378                         break;
4379                 case OP_ISHR_IMM:
4380                         ppc_srawi (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4381                         break;
4382                 case OP_ISHR_UN_IMM:
4383                         if (ins->inst_imm & 0x1f)
4384                                 ppc_srwi (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4385                         else
4386                                 ppc_mr (code, ins->dreg, ins->sreg1);
4387                         break;
4388                 case OP_ATOMIC_ADD_NEW_I4:
4389                 case OP_ATOMIC_ADD_NEW_I8: {
4390                         guint8 *loop = code, *branch;
4391                         g_assert (ins->inst_offset == 0);
4392                         if (ins->opcode == OP_ATOMIC_ADD_NEW_I4)
4393                                 ppc_lwarx (code, ppc_r0, 0, ins->inst_basereg);
4394                         else
4395                                 ppc_ldarx (code, ppc_r0, 0, ins->inst_basereg);
4396                         ppc_add (code, ppc_r0, ppc_r0, ins->sreg2);
4397                         if (ins->opcode == OP_ATOMIC_ADD_NEW_I4)
4398                                 ppc_stwcxd (code, ppc_r0, 0, ins->inst_basereg);
4399                         else
4400                                 ppc_stdcxd (code, ppc_r0, 0, ins->inst_basereg);
4401                         branch = code;
4402                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
4403                         ppc_patch (branch, loop);
4404                         ppc_mr (code, ins->dreg, ppc_r0);
4405                         break;
4406                 }
4407 #else
4408                 case OP_ICONV_TO_R4:
4409                 case OP_ICONV_TO_R8: {
4410                         if (cpu_hw_caps & PPC_ISA_64) {
4411                                 ppc_srawi(code, ppc_r0, ins->sreg1, 31);
4412                                 ppc_stw (code, ppc_r0, -8, ppc_r1);
4413                                 ppc_stw (code, ins->sreg1, -4, ppc_r1);
4414                                 ppc_lfd (code, ins->dreg, -8, ppc_r1);
4415                                 ppc_fcfid (code, ins->dreg, ins->dreg);
4416                                 if (ins->opcode == OP_ICONV_TO_R4)
4417                                         ppc_frsp (code, ins->dreg, ins->dreg);
4418                                 }
4419                         break;
4420                 }
4421 #endif
4422                 case OP_ATOMIC_CAS_I4:
4423                 CASE_PPC64 (OP_ATOMIC_CAS_I8) {
4424                         int location = ins->sreg1;
4425                         int value = ins->sreg2;
4426                         int comparand = ins->sreg3;
4427                         guint8 *start, *not_equal, *lost_reservation;
4428
4429                         start = code;
4430                         if (ins->opcode == OP_ATOMIC_CAS_I4)
4431                                 ppc_lwarx (code, ppc_r0, 0, location);
4432 #ifdef __mono_ppc64__
4433                         else
4434                                 ppc_ldarx (code, ppc_r0, 0, location);
4435 #endif
4436                         ppc_cmp (code, 0, ins->opcode == OP_ATOMIC_CAS_I4 ? 0 : 1, ppc_r0, comparand);
4437
4438                         not_equal = code;
4439                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
4440                         if (ins->opcode == OP_ATOMIC_CAS_I4)
4441                                 ppc_stwcxd (code, value, 0, location);
4442 #ifdef __mono_ppc64__
4443                         else
4444                                 ppc_stdcxd (code, value, 0, location);
4445 #endif
4446
4447                         lost_reservation = code;
4448                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
4449                         ppc_patch (lost_reservation, start);
4450
4451                         ppc_patch (not_equal, code);
4452                         ppc_mr (code, ins->dreg, ppc_r0);
4453                         break;
4454                 }
4455
4456                 default:
4457                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
4458                         g_assert_not_reached ();
4459                 }
4460
4461                 if ((cfg->opt & MONO_OPT_BRANCH) && ((code - cfg->native_code - offset) > max_len)) {
4462                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %ld)",
4463                                    mono_inst_name (ins->opcode), max_len, (glong)(code - cfg->native_code - offset));
4464                         g_assert_not_reached ();
4465                 }
4466                
4467                 cpos += max_len;
4468
4469                 last_ins = ins;
4470                 last_offset = offset;
4471         }
4472
4473         cfg->code_len = code - cfg->native_code;
4474 }
4475 #endif /* !DISABLE_JIT */
4476
4477 void
4478 mono_arch_register_lowlevel_calls (void)
4479 {
4480         /* The signature doesn't matter */
4481         mono_register_jit_icall (mono_ppc_throw_exception, "mono_ppc_throw_exception", mono_create_icall_signature ("void"), TRUE);
4482 }
4483
4484 #ifdef __mono_ppc64__
4485 #define patch_load_sequence(ip,val) do {\
4486                 guint16 *__load = (guint16*)(ip);       \
4487                 g_assert (sizeof (val) == sizeof (gsize)); \
4488                 __load [1] = (((guint64)(gsize)(val)) >> 48) & 0xffff;  \
4489                 __load [3] = (((guint64)(gsize)(val)) >> 32) & 0xffff;  \
4490                 __load [7] = (((guint64)(gsize)(val)) >> 16) & 0xffff;  \
4491                 __load [9] =  ((guint64)(gsize)(val))        & 0xffff;  \
4492         } while (0)
4493 #else
4494 #define patch_load_sequence(ip,val) do {\
4495                 guint16 *__lis_ori = (guint16*)(ip);    \
4496                 __lis_ori [1] = (((gulong)(val)) >> 16) & 0xffff;       \
4497                 __lis_ori [3] = ((gulong)(val)) & 0xffff;       \
4498         } while (0)
4499 #endif
4500
4501 #ifndef DISABLE_JIT
4502 void
4503 mono_arch_patch_code (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, MonoCodeManager *dyn_code_mp, gboolean run_cctors)
4504 {
4505         MonoJumpInfo *patch_info;
4506         gboolean compile_aot = !run_cctors;
4507
4508         for (patch_info = ji; patch_info; patch_info = patch_info->next) {
4509                 unsigned char *ip = patch_info->ip.i + code;
4510                 unsigned char *target;
4511                 gboolean is_fd = FALSE;
4512
4513                 target = mono_resolve_patch_target (method, domain, code, patch_info, run_cctors);
4514
4515                 if (compile_aot) {
4516                         switch (patch_info->type) {
4517                         case MONO_PATCH_INFO_BB:
4518                         case MONO_PATCH_INFO_LABEL:
4519                                 break;
4520                         default:
4521                                 /* No need to patch these */
4522                                 continue;
4523                         }
4524                 }
4525
4526                 switch (patch_info->type) {
4527                 case MONO_PATCH_INFO_IP:
4528                         patch_load_sequence (ip, ip);
4529                         continue;
4530                 case MONO_PATCH_INFO_METHOD_REL:
4531                         g_assert_not_reached ();
4532                         *((gpointer *)(ip)) = code + patch_info->data.offset;
4533                         continue;
4534                 case MONO_PATCH_INFO_SWITCH: {
4535                         gpointer *table = (gpointer *)patch_info->data.table->table;
4536                         int i;
4537
4538                         patch_load_sequence (ip, table);
4539
4540                         for (i = 0; i < patch_info->data.table->table_size; i++) {
4541                                 table [i] = (glong)patch_info->data.table->table [i] + code;
4542                         }
4543                         /* we put into the table the absolute address, no need for ppc_patch in this case */
4544                         continue;
4545                 }
4546                 case MONO_PATCH_INFO_METHODCONST:
4547                 case MONO_PATCH_INFO_CLASS:
4548                 case MONO_PATCH_INFO_IMAGE:
4549                 case MONO_PATCH_INFO_FIELD:
4550                 case MONO_PATCH_INFO_VTABLE:
4551                 case MONO_PATCH_INFO_IID:
4552                 case MONO_PATCH_INFO_SFLDA:
4553                 case MONO_PATCH_INFO_LDSTR:
4554                 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
4555                 case MONO_PATCH_INFO_LDTOKEN:
4556                         /* from OP_AOTCONST : lis + ori */
4557                         patch_load_sequence (ip, target);
4558                         continue;
4559                 case MONO_PATCH_INFO_R4:
4560                 case MONO_PATCH_INFO_R8:
4561                         g_assert_not_reached ();
4562                         *((gconstpointer *)(ip + 2)) = patch_info->data.target;
4563                         continue;
4564                 case MONO_PATCH_INFO_EXC_NAME:
4565                         g_assert_not_reached ();
4566                         *((gconstpointer *)(ip + 1)) = patch_info->data.name;
4567                         continue;
4568                 case MONO_PATCH_INFO_NONE:
4569                 case MONO_PATCH_INFO_BB_OVF:
4570                 case MONO_PATCH_INFO_EXC_OVF:
4571                         /* everything is dealt with at epilog output time */
4572                         continue;
4573 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4574                 case MONO_PATCH_INFO_INTERNAL_METHOD:
4575                 case MONO_PATCH_INFO_ABS:
4576                 case MONO_PATCH_INFO_CLASS_INIT:
4577                 case MONO_PATCH_INFO_RGCTX_FETCH:
4578                         is_fd = TRUE;
4579                         break;
4580 #endif
4581                 default:
4582                         break;
4583                 }
4584                 ppc_patch_full (ip, target, is_fd);
4585         }
4586 }
4587
4588 /*
4589  * Emit code to save the registers in used_int_regs or the registers in the MonoLMF
4590  * structure at positive offset pos from register base_reg. pos is guaranteed to fit into
4591  * the instruction offset immediate for all the registers.
4592  */
4593 static guint8*
4594 save_registers (MonoCompile *cfg, guint8* code, int pos, int base_reg, gboolean save_lmf, guint32 used_int_regs, int cfa_offset)
4595 {
4596         int i;
4597         if (!save_lmf) {
4598                 for (i = 13; i <= 31; i++) {
4599                         if (used_int_regs & (1 << i)) {
4600                                 ppc_str (code, i, pos, base_reg);
4601                                 mono_emit_unwind_op_offset (cfg, code, i, pos - cfa_offset);
4602                                 pos += sizeof (mgreg_t);
4603                         }
4604                 }
4605         } else {
4606                 /* pos is the start of the MonoLMF structure */
4607                 int offset = pos + G_STRUCT_OFFSET (MonoLMF, iregs);
4608                 for (i = 13; i <= 31; i++) {
4609                         ppc_str (code, i, offset, base_reg);
4610                         mono_emit_unwind_op_offset (cfg, code, i, offset - cfa_offset);
4611                         offset += sizeof (mgreg_t);
4612                 }
4613                 offset = pos + G_STRUCT_OFFSET (MonoLMF, fregs);
4614                 for (i = 14; i < 32; i++) {
4615                         ppc_stfd (code, i, offset, base_reg);
4616                         offset += sizeof (gdouble);
4617                 }
4618         }
4619         return code;
4620 }
4621
4622 /*
4623  * Stack frame layout:
4624  * 
4625  *   ------------------- sp
4626  *      MonoLMF structure or saved registers
4627  *   -------------------
4628  *      spilled regs
4629  *   -------------------
4630  *      locals
4631  *   -------------------
4632  *      optional 8 bytes for tracing
4633  *   -------------------
4634  *      param area             size is cfg->param_area
4635  *   -------------------
4636  *      linkage area           size is PPC_STACK_PARAM_OFFSET
4637  *   ------------------- sp
4638  *      red zone
4639  */
4640 guint8 *
4641 mono_arch_emit_prolog (MonoCompile *cfg)
4642 {
4643         MonoMethod *method = cfg->method;
4644         MonoBasicBlock *bb;
4645         MonoMethodSignature *sig;
4646         MonoInst *inst;
4647         long alloc_size, pos, max_offset, cfa_offset;
4648         int i;
4649         guint8 *code;
4650         CallInfo *cinfo;
4651         int tracing = 0;
4652         int lmf_offset = 0;
4653         int tailcall_struct_index;
4654
4655         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
4656                 tracing = 1;
4657
4658         sig = mono_method_signature (method);
4659         cfg->code_size = 512 + sig->param_count * 32;
4660         code = cfg->native_code = g_malloc (cfg->code_size);
4661
4662         cfa_offset = 0;
4663
4664         /* We currently emit unwind info for aot, but don't use it */
4665         mono_emit_unwind_op_def_cfa (cfg, code, ppc_r1, 0);
4666
4667         if (1 || cfg->flags & MONO_CFG_HAS_CALLS) {
4668                 ppc_mflr (code, ppc_r0);
4669                 ppc_str (code, ppc_r0, PPC_RET_ADDR_OFFSET, ppc_sp);
4670                 mono_emit_unwind_op_offset (cfg, code, ppc_lr, PPC_RET_ADDR_OFFSET);
4671         }
4672
4673         alloc_size = cfg->stack_offset;
4674         pos = 0;
4675
4676         if (!method->save_lmf) {
4677                 for (i = 31; i >= 13; --i) {
4678                         if (cfg->used_int_regs & (1 << i)) {
4679                                 pos += sizeof (mgreg_t);
4680                         }
4681                 }
4682         } else {
4683                 pos += sizeof (MonoLMF);
4684                 lmf_offset = pos;
4685         }
4686         alloc_size += pos;
4687         // align to MONO_ARCH_FRAME_ALIGNMENT bytes
4688         if (alloc_size & (MONO_ARCH_FRAME_ALIGNMENT - 1)) {
4689                 alloc_size += MONO_ARCH_FRAME_ALIGNMENT - 1;
4690                 alloc_size &= ~(MONO_ARCH_FRAME_ALIGNMENT - 1);
4691         }
4692
4693         cfg->stack_usage = alloc_size;
4694         g_assert ((alloc_size & (MONO_ARCH_FRAME_ALIGNMENT-1)) == 0);
4695         if (alloc_size) {
4696                 if (ppc_is_imm16 (-alloc_size)) {
4697                         ppc_str_update (code, ppc_sp, -alloc_size, ppc_sp);
4698                         cfa_offset = alloc_size;
4699                         mono_emit_unwind_op_def_cfa_offset (cfg, code, alloc_size);
4700                         code = save_registers (cfg, code, alloc_size - pos, ppc_sp, method->save_lmf, cfg->used_int_regs, cfa_offset);
4701                 } else {
4702                         if (pos)
4703                                 ppc_addi (code, ppc_r11, ppc_sp, -pos);
4704                         ppc_load (code, ppc_r0, -alloc_size);
4705                         ppc_str_update_indexed (code, ppc_sp, ppc_sp, ppc_r0);
4706                         cfa_offset = alloc_size;
4707                         mono_emit_unwind_op_def_cfa_offset (cfg, code, alloc_size);
4708                         code = save_registers (cfg, code, 0, ppc_r11, method->save_lmf, cfg->used_int_regs, cfa_offset);
4709                 }
4710         }
4711         if (cfg->frame_reg != ppc_sp) {
4712                 ppc_mr (code, cfg->frame_reg, ppc_sp);
4713                 mono_emit_unwind_op_def_cfa_reg (cfg, code, cfg->frame_reg);
4714         }
4715
4716         /* store runtime generic context */
4717         if (cfg->rgctx_var) {
4718                 g_assert (cfg->rgctx_var->opcode == OP_REGOFFSET &&
4719                                 (cfg->rgctx_var->inst_basereg == ppc_r1 || cfg->rgctx_var->inst_basereg == ppc_r31));
4720
4721                 ppc_stptr (code, MONO_ARCH_RGCTX_REG, cfg->rgctx_var->inst_offset, cfg->rgctx_var->inst_basereg);
4722         }
4723
4724         /* compute max_offset in order to use short forward jumps
4725          * we always do it on ppc because the immediate displacement
4726          * for jumps is too small 
4727          */
4728         max_offset = 0;
4729         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
4730                 MonoInst *ins;
4731                 bb->max_offset = max_offset;
4732
4733                 if (cfg->prof_options & MONO_PROFILE_COVERAGE)
4734                         max_offset += 6; 
4735
4736                 MONO_BB_FOR_EACH_INS (bb, ins)
4737                         max_offset += ins_native_length (cfg, ins);
4738         }
4739
4740         /* load arguments allocated to register from the stack */
4741         pos = 0;
4742
4743         cinfo = get_call_info (cfg->generic_sharing_context, sig);
4744
4745         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
4746                 ArgInfo *ainfo = &cinfo->ret;
4747
4748                 inst = cfg->vret_addr;
4749                 g_assert (inst);
4750
4751                 if (ppc_is_imm16 (inst->inst_offset)) {
4752                         ppc_stptr (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4753                 } else {
4754                         ppc_load (code, ppc_r11, inst->inst_offset);
4755                         ppc_stptr_indexed (code, ainfo->reg, ppc_r11, inst->inst_basereg);
4756                 }
4757         }
4758
4759         tailcall_struct_index = 0;
4760         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
4761                 ArgInfo *ainfo = cinfo->args + i;
4762                 inst = cfg->args [pos];
4763                 
4764                 if (cfg->verbose_level > 2)
4765                         g_print ("Saving argument %d (type: %d)\n", i, ainfo->regtype);
4766                 if (inst->opcode == OP_REGVAR) {
4767                         if (ainfo->regtype == RegTypeGeneral)
4768                                 ppc_mr (code, inst->dreg, ainfo->reg);
4769                         else if (ainfo->regtype == RegTypeFP)
4770                                 ppc_fmr (code, inst->dreg, ainfo->reg);
4771                         else if (ainfo->regtype == RegTypeBase) {
4772                                 ppc_ldr (code, ppc_r11, 0, ppc_sp);
4773                                 ppc_ldptr (code, inst->dreg, ainfo->offset, ppc_r11);
4774                         } else
4775                                 g_assert_not_reached ();
4776
4777                         if (cfg->verbose_level > 2)
4778                                 g_print ("Argument %ld assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
4779                 } else {
4780                         /* the argument should be put on the stack: FIXME handle size != word  */
4781                         if (ainfo->regtype == RegTypeGeneral) {
4782                                 switch (ainfo->size) {
4783                                 case 1:
4784                                         if (ppc_is_imm16 (inst->inst_offset)) {
4785                                                 ppc_stb (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4786                                         } else {
4787                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4788                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4789                                                         ppc_stb (code, ainfo->reg, inst->inst_offset, ppc_r11);
4790                                                 } else {
4791                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4792                                                         ppc_stbx (code, ainfo->reg, inst->inst_basereg, ppc_r11);
4793                                                 }
4794                                         }
4795                                         break;
4796                                 case 2:
4797                                         if (ppc_is_imm16 (inst->inst_offset)) {
4798                                                 ppc_sth (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4799                                         } else {
4800                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4801                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4802                                                         ppc_sth (code, ainfo->reg, inst->inst_offset, ppc_r11);
4803                                                 } else {
4804                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4805                                                         ppc_sthx (code, ainfo->reg, inst->inst_basereg, ppc_r11);
4806                                                 }
4807                                         }
4808                                         break;
4809 #ifdef __mono_ppc64__
4810                                 case 4:
4811                                         if (ppc_is_imm16 (inst->inst_offset)) {
4812                                                 ppc_stw (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4813                                         } else {
4814                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4815                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4816                                                         ppc_stw (code, ainfo->reg, inst->inst_offset, ppc_r11);
4817                                                 } else {
4818                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4819                                                         ppc_stwx (code, ainfo->reg, inst->inst_basereg, ppc_r11);
4820                                                 }
4821                                         }
4822                                         break;
4823                                 case 8:
4824                                         if (ppc_is_imm16 (inst->inst_offset)) {
4825                                                 ppc_str (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4826                                         } else {
4827                                                 ppc_load (code, ppc_r11, inst->inst_offset);
4828                                                 ppc_str_indexed (code, ainfo->reg, ppc_r11, inst->inst_basereg);
4829                                         }
4830                                         break;
4831 #else
4832                                 case 8:
4833                                         if (ppc_is_imm16 (inst->inst_offset + 4)) {
4834                                                 ppc_stw (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4835                                                 ppc_stw (code, ainfo->reg + 1, inst->inst_offset + 4, inst->inst_basereg);
4836                                         } else {
4837                                                 ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4838                                                 ppc_addi (code, ppc_r11, ppc_r11, inst->inst_offset);
4839                                                 ppc_stw (code, ainfo->reg, 0, ppc_r11);
4840                                                 ppc_stw (code, ainfo->reg + 1, 4, ppc_r11);
4841                                         }
4842                                         break;
4843 #endif
4844                                 default:
4845                                         if (ppc_is_imm16 (inst->inst_offset)) {
4846                                                 ppc_stptr (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4847                                         } else {
4848                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4849                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4850                                                         ppc_stptr (code, ainfo->reg, inst->inst_offset, ppc_r11);
4851                                                 } else {
4852                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4853                                                         ppc_stptr_indexed (code, ainfo->reg, inst->inst_basereg, ppc_r11);
4854                                                 }
4855                                         }
4856                                         break;
4857                                 }
4858                         } else if (ainfo->regtype == RegTypeBase) {
4859                                 g_assert (ppc_is_imm16 (ainfo->offset));
4860                                 /* load the previous stack pointer in r11 */
4861                                 ppc_ldr (code, ppc_r11, 0, ppc_sp);
4862                                 ppc_ldptr (code, ppc_r0, ainfo->offset, ppc_r11);
4863                                 switch (ainfo->size) {
4864                                 case 1:
4865                                         if (ppc_is_imm16 (inst->inst_offset)) {
4866                                                 ppc_stb (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4867                                         } else {
4868                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4869                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4870                                                         ppc_stb (code, ppc_r0, inst->inst_offset, ppc_r11);
4871                                                 } else {
4872                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4873                                                         ppc_stbx (code, ppc_r0, inst->inst_basereg, ppc_r11);
4874                                                 }
4875                                         }
4876                                         break;
4877                                 case 2:
4878                                         if (ppc_is_imm16 (inst->inst_offset)) {
4879                                                 ppc_sth (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4880                                         } else {
4881                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4882                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4883                                                         ppc_sth (code, ppc_r0, inst->inst_offset, ppc_r11);
4884                                                 } else {
4885                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4886                                                         ppc_sthx (code, ppc_r0, inst->inst_basereg, ppc_r11);
4887                                                 }
4888                                         }
4889                                         break;
4890 #ifdef __mono_ppc64__
4891                                 case 4:
4892                                         if (ppc_is_imm16 (inst->inst_offset)) {
4893                                                 ppc_stw (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4894                                         } else {
4895                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4896                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4897                                                         ppc_stw (code, ppc_r0, inst->inst_offset, ppc_r11);
4898                                                 } else {
4899                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4900                                                         ppc_stwx (code, ppc_r0, inst->inst_basereg, ppc_r11);
4901                                                 }
4902                                         }
4903                                         break;
4904                                 case 8:
4905                                         if (ppc_is_imm16 (inst->inst_offset)) {
4906                                                 ppc_str (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4907                                         } else {
4908                                                 ppc_load (code, ppc_r11, inst->inst_offset);
4909                                                 ppc_str_indexed (code, ppc_r0, ppc_r11, inst->inst_basereg);
4910                                         }
4911                                         break;
4912 #else
4913                                 case 8:
4914                                         g_assert (ppc_is_imm16 (ainfo->offset + 4));
4915                                         if (ppc_is_imm16 (inst->inst_offset + 4)) {
4916                                                 ppc_stw (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4917                                                 ppc_lwz (code, ppc_r0, ainfo->offset + 4, ppc_r11);
4918                                                 ppc_stw (code, ppc_r0, inst->inst_offset + 4, inst->inst_basereg);
4919                                         } else {
4920                                                 /* use r12 to load the 2nd half of the long before we clobber r11.  */
4921                                                 ppc_lwz (code, ppc_r12, ainfo->offset + 4, ppc_r11);
4922                                                 ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4923                                                 ppc_addi (code, ppc_r11, ppc_r11, inst->inst_offset);
4924                                                 ppc_stw (code, ppc_r0, 0, ppc_r11);
4925                                                 ppc_stw (code, ppc_r12, 4, ppc_r11);
4926                                         }
4927                                         break;
4928 #endif
4929                                 default:
4930                                         if (ppc_is_imm16 (inst->inst_offset)) {
4931                                                 ppc_stptr (code, ppc_r0, inst->inst_offset, inst->inst_basereg);
4932                                         } else {
4933                                                 if (ppc_is_imm32 (inst->inst_offset)) {
4934                                                         ppc_addis (code, ppc_r11, inst->inst_basereg, ppc_ha(inst->inst_offset));
4935                                                         ppc_stptr (code, ppc_r0, inst->inst_offset, ppc_r11);
4936                                                 } else {
4937                                                         ppc_load (code, ppc_r11, inst->inst_offset);
4938                                                         ppc_stptr_indexed (code, ppc_r0, inst->inst_basereg, ppc_r11);
4939                                                 }
4940                                         }
4941                                         break;
4942                                 }
4943                         } else if (ainfo->regtype == RegTypeFP) {
4944                                 g_assert (ppc_is_imm16 (inst->inst_offset));
4945                                 if (ainfo->size == 8)
4946                                         ppc_stfd (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4947                                 else if (ainfo->size == 4)
4948                                         ppc_stfs (code, ainfo->reg, inst->inst_offset, inst->inst_basereg);
4949                                 else
4950                                         g_assert_not_reached ();
4951                         } else if (ainfo->regtype == RegTypeStructByVal) {
4952                                 int doffset = inst->inst_offset;
4953                                 int soffset = 0;
4954                                 int cur_reg;
4955                                 int size = 0;
4956                                 g_assert (ppc_is_imm16 (inst->inst_offset));
4957                                 g_assert (ppc_is_imm16 (inst->inst_offset + ainfo->vtregs * sizeof (gpointer)));
4958                                 /* FIXME: what if there is no class? */
4959                                 if (sig->pinvoke && mono_class_from_mono_type (inst->inst_vtype))
4960                                         size = mono_class_native_size (mono_class_from_mono_type (inst->inst_vtype), NULL);
4961                                 for (cur_reg = 0; cur_reg < ainfo->vtregs; ++cur_reg) {
4962 #if __APPLE__
4963                                         /*
4964                                          * Darwin handles 1 and 2 byte
4965                                          * structs specially by
4966                                          * loading h/b into the arg
4967                                          * register.  Only done for
4968                                          * pinvokes.
4969                                          */
4970                                         if (size == 2)
4971                                                 ppc_sth (code, ainfo->reg + cur_reg, doffset, inst->inst_basereg);
4972                                         else if (size == 1)
4973                                                 ppc_stb (code, ainfo->reg + cur_reg, doffset, inst->inst_basereg);
4974                                         else
4975 #endif
4976                                         {
4977 #ifdef __mono_ppc64__
4978                                                 if (ainfo->bytes) {
4979                                                         g_assert (cur_reg == 0);
4980                                                         ppc_sldi (code, ppc_r0, ainfo->reg,
4981                                                                         (sizeof (gpointer) - ainfo->bytes) * 8);
4982                                                         ppc_stptr (code, ppc_r0, doffset, inst->inst_basereg);
4983                                                 } else
4984 #endif
4985                                                 {
4986                                                         ppc_stptr (code, ainfo->reg + cur_reg, doffset,
4987                                                                         inst->inst_basereg);
4988                                                 }
4989                                         }
4990                                         soffset += sizeof (gpointer);
4991                                         doffset += sizeof (gpointer);
4992                                 }
4993                                 if (ainfo->vtsize) {
4994                                         /* FIXME: we need to do the shifting here, too */
4995                                         if (ainfo->bytes)
4996                                                 NOT_IMPLEMENTED;
4997                                         /* load the previous stack pointer in r11 (r0 gets overwritten by the memcpy) */
4998                                         ppc_ldr (code, ppc_r11, 0, ppc_sp);
4999                                         if ((size & MONO_PPC_32_64_CASE (3, 7)) != 0) {
5000                                                 code = emit_memcpy (code, size - soffset,
5001                                                         inst->inst_basereg, doffset,
5002                                                         ppc_r11, ainfo->offset + soffset);
5003                                         } else {
5004                                                 code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer),
5005                                                         inst->inst_basereg, doffset,
5006                                                         ppc_r11, ainfo->offset + soffset);
5007                                         }
5008                                 }
5009                         } else if (ainfo->regtype == RegTypeStructByAddr) {
5010                                 /* if it was originally a RegTypeBase */
5011                                 if (ainfo->offset) {
5012                                         /* load the previous stack pointer in r11 */
5013                                         ppc_ldr (code, ppc_r11, 0, ppc_sp);
5014                                         ppc_ldptr (code, ppc_r11, ainfo->offset, ppc_r11);
5015                                 } else {
5016                                         ppc_mr (code, ppc_r11, ainfo->reg);
5017                                 }
5018
5019                                 if (cfg->tailcall_valuetype_addrs) {
5020                                         MonoInst *addr = cfg->tailcall_valuetype_addrs [tailcall_struct_index];
5021
5022                                         g_assert (ppc_is_imm16 (addr->inst_offset));
5023                                         ppc_stptr (code, ppc_r11, addr->inst_offset, addr->inst_basereg);
5024
5025                                         tailcall_struct_index++;
5026                                 }
5027
5028                                 g_assert (ppc_is_imm16 (inst->inst_offset));
5029                                 code = emit_memcpy (code, ainfo->vtsize, inst->inst_basereg, inst->inst_offset, ppc_r11, 0);
5030                                 /*g_print ("copy in %s: %d bytes from %d to offset: %d\n", method->name, ainfo->vtsize, ainfo->reg, inst->inst_offset);*/
5031                         } else
5032                                 g_assert_not_reached ();
5033                 }
5034                 pos++;
5035         }
5036
5037         if (method->save_lmf) {
5038                 if (lmf_pthread_key != -1) {
5039                         emit_tls_access (code, ppc_r3, lmf_pthread_key);
5040                         if (tls_mode != TLS_MODE_NPTL && G_STRUCT_OFFSET (MonoJitTlsData, lmf))
5041                                 ppc_addi (code, ppc_r3, ppc_r3, G_STRUCT_OFFSET (MonoJitTlsData, lmf));
5042                 } else {
5043                         if (cfg->compile_aot) {
5044                                 /* Compute the got address which is needed by the PLT entry */
5045                                 code = mono_arch_emit_load_got_addr (cfg->native_code, code, cfg, NULL);
5046                         }
5047                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5048                                      (gpointer)"mono_get_lmf_addr");
5049                         if ((FORCE_INDIR_CALL || cfg->method->dynamic) && !cfg->compile_aot) {
5050                                 ppc_load_func (code, ppc_r0, 0);
5051                                 ppc_mtlr (code, ppc_r0);
5052                                 ppc_blrl (code);
5053                         } else {
5054                                 ppc_bl (code, 0);
5055                         }
5056                 }
5057                 /* we build the MonoLMF structure on the stack - see mini-ppc.h */
5058                 /* lmf_offset is the offset from the previous stack pointer,
5059                  * alloc_size is the total stack space allocated, so the offset
5060                  * of MonoLMF from the current stack ptr is alloc_size - lmf_offset.
5061                  * The pointer to the struct is put in ppc_r11 (new_lmf).
5062                  * The callee-saved registers are already in the MonoLMF structure
5063                  */
5064                 ppc_addi (code, ppc_r11, ppc_sp, alloc_size - lmf_offset);
5065                 /* ppc_r3 is the result from mono_get_lmf_addr () */
5066                 ppc_stptr (code, ppc_r3, G_STRUCT_OFFSET(MonoLMF, lmf_addr), ppc_r11);
5067                 /* new_lmf->previous_lmf = *lmf_addr */
5068                 ppc_ldptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r3);
5069                 ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r11);
5070                 /* *(lmf_addr) = r11 */
5071                 ppc_stptr (code, ppc_r11, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r3);
5072                 /* save method info */
5073                 if (cfg->compile_aot)
5074                         // FIXME:
5075                         ppc_load (code, ppc_r0, 0);
5076                 else
5077                         ppc_load_ptr (code, ppc_r0, method);
5078                 ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, method), ppc_r11);
5079                 ppc_stptr (code, ppc_sp, G_STRUCT_OFFSET(MonoLMF, ebp), ppc_r11);
5080                 /* save the current IP */
5081                 if (cfg->compile_aot) {
5082                         ppc_bl (code, 1);
5083                         ppc_mflr (code, ppc_r0);
5084                 } else {
5085                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_IP, NULL);
5086 #ifdef __mono_ppc64__
5087                         ppc_load_sequence (code, ppc_r0, (guint64)0x0101010101010101LL);
5088 #else
5089                         ppc_load_sequence (code, ppc_r0, (gulong)0x01010101L);
5090 #endif
5091                 }
5092                 ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, eip), ppc_r11);
5093         }
5094
5095         if (tracing)
5096                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
5097
5098         cfg->code_len = code - cfg->native_code;
5099         g_assert (cfg->code_len <= cfg->code_size);
5100         g_free (cinfo);
5101
5102         return code;
5103 }
5104
5105 void
5106 mono_arch_emit_epilog (MonoCompile *cfg)
5107 {
5108         MonoMethod *method = cfg->method;
5109         int pos, i;
5110         int max_epilog_size = 16 + 20*4;
5111         guint8 *code;
5112
5113         if (cfg->method->save_lmf)
5114                 max_epilog_size += 128;
5115         
5116         if (mono_jit_trace_calls != NULL)
5117                 max_epilog_size += 50;
5118
5119         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
5120                 max_epilog_size += 50;
5121
5122         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
5123                 cfg->code_size *= 2;
5124                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5125                 cfg->stat_code_reallocs++;
5126         }
5127
5128         /*
5129          * Keep in sync with OP_JMP
5130          */
5131         code = cfg->native_code + cfg->code_len;
5132
5133         if (mono_jit_trace_calls != NULL && mono_trace_eval (method)) {
5134                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
5135         }
5136         pos = 0;
5137
5138         if (method->save_lmf) {
5139                 int lmf_offset;
5140                 pos +=  sizeof (MonoLMF);
5141                 lmf_offset = pos;
5142                 /* save the frame reg in r8 */
5143                 ppc_mr (code, ppc_r8, cfg->frame_reg);
5144                 ppc_addi (code, ppc_r11, cfg->frame_reg, cfg->stack_usage - lmf_offset);
5145                 /* r5 = previous_lmf */
5146                 ppc_ldptr (code, ppc_r5, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r11);
5147                 /* r6 = lmf_addr */
5148                 ppc_ldptr (code, ppc_r6, G_STRUCT_OFFSET(MonoLMF, lmf_addr), ppc_r11);
5149                 /* *(lmf_addr) = previous_lmf */
5150                 ppc_stptr (code, ppc_r5, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r6);
5151                 /* FIXME: speedup: there is no actual need to restore the registers if
5152                  * we didn't actually change them (idea from Zoltan).
5153                  */
5154                 /* restore iregs */
5155                 ppc_ldr_multiple (code, ppc_r13, G_STRUCT_OFFSET(MonoLMF, iregs), ppc_r11);
5156                 /* restore fregs */
5157                 /*for (i = 14; i < 32; i++) {
5158                         ppc_lfd (code, i, G_STRUCT_OFFSET(MonoLMF, fregs) + ((i-14) * sizeof (gdouble)), ppc_r11);
5159                 }*/
5160                 g_assert (ppc_is_imm16 (cfg->stack_usage + PPC_RET_ADDR_OFFSET));
5161                 /* use the saved copy of the frame reg in r8 */
5162                 if (1 || cfg->flags & MONO_CFG_HAS_CALLS) {
5163                         ppc_ldr (code, ppc_r0, cfg->stack_usage + PPC_RET_ADDR_OFFSET, ppc_r8);
5164                         ppc_mtlr (code, ppc_r0);
5165                 }
5166                 ppc_addic (code, ppc_sp, ppc_r8, cfg->stack_usage);
5167         } else {
5168                 if (1 || cfg->flags & MONO_CFG_HAS_CALLS) {
5169                         long return_offset = cfg->stack_usage + PPC_RET_ADDR_OFFSET;
5170                         if (ppc_is_imm16 (return_offset)) {
5171                                 ppc_ldr (code, ppc_r0, return_offset, cfg->frame_reg);
5172                         } else {
5173                                 ppc_load (code, ppc_r11, return_offset);
5174                                 ppc_ldr_indexed (code, ppc_r0, cfg->frame_reg, ppc_r11);
5175                         }
5176                         ppc_mtlr (code, ppc_r0);
5177                 }
5178                 if (ppc_is_imm16 (cfg->stack_usage)) {
5179                         int offset = cfg->stack_usage;
5180                         for (i = 13; i <= 31; i++) {
5181                                 if (cfg->used_int_regs & (1 << i))
5182                                         offset -= sizeof (mgreg_t);
5183                         }
5184                         if (cfg->frame_reg != ppc_sp)
5185                                 ppc_mr (code, ppc_r11, cfg->frame_reg);
5186                         /* note r31 (possibly the frame register) is restored last */
5187                         for (i = 13; i <= 31; i++) {
5188                                 if (cfg->used_int_regs & (1 << i)) {
5189                                         ppc_ldr (code, i, offset, cfg->frame_reg);
5190                                         offset += sizeof (mgreg_t);
5191                                 }
5192                         }
5193                         if (cfg->frame_reg != ppc_sp)
5194                                 ppc_addi (code, ppc_sp, ppc_r11, cfg->stack_usage);
5195                         else
5196                                 ppc_addi (code, ppc_sp, ppc_sp, cfg->stack_usage);
5197                 } else {
5198                         ppc_load32 (code, ppc_r11, cfg->stack_usage);
5199                         if (cfg->used_int_regs) {
5200                                 ppc_add (code, ppc_r11, cfg->frame_reg, ppc_r11);
5201                                 for (i = 31; i >= 13; --i) {
5202                                         if (cfg->used_int_regs & (1 << i)) {
5203                                                 pos += sizeof (mgreg_t);
5204                                                 ppc_ldr (code, i, -pos, ppc_r11);
5205                                         }
5206                                 }
5207                                 ppc_mr (code, ppc_sp, ppc_r11);
5208                         } else {
5209                                 ppc_add (code, ppc_sp, cfg->frame_reg, ppc_r11);
5210                         }
5211                 }
5212
5213         }
5214         ppc_blr (code);
5215
5216         cfg->code_len = code - cfg->native_code;
5217
5218         g_assert (cfg->code_len < cfg->code_size);
5219
5220 }
5221 #endif /* ifndef DISABLE_JIT */
5222
5223 /* remove once throw_exception_by_name is eliminated */
5224 static int
5225 exception_id_by_name (const char *name)
5226 {
5227         if (strcmp (name, "IndexOutOfRangeException") == 0)
5228                 return MONO_EXC_INDEX_OUT_OF_RANGE;
5229         if (strcmp (name, "OverflowException") == 0)
5230                 return MONO_EXC_OVERFLOW;
5231         if (strcmp (name, "ArithmeticException") == 0)
5232                 return MONO_EXC_ARITHMETIC;
5233         if (strcmp (name, "DivideByZeroException") == 0)
5234                 return MONO_EXC_DIVIDE_BY_ZERO;
5235         if (strcmp (name, "InvalidCastException") == 0)
5236                 return MONO_EXC_INVALID_CAST;
5237         if (strcmp (name, "NullReferenceException") == 0)
5238                 return MONO_EXC_NULL_REF;
5239         if (strcmp (name, "ArrayTypeMismatchException") == 0)
5240                 return MONO_EXC_ARRAY_TYPE_MISMATCH;
5241         if (strcmp (name, "ArgumentException") == 0)
5242                 return MONO_EXC_ARGUMENT;
5243         g_error ("Unknown intrinsic exception %s\n", name);
5244         return 0;
5245 }
5246
5247 #ifndef DISABLE_JIT
5248 void
5249 mono_arch_emit_exceptions (MonoCompile *cfg)
5250 {
5251         MonoJumpInfo *patch_info;
5252         int i;
5253         guint8 *code;
5254         guint8* exc_throw_pos [MONO_EXC_INTRINS_NUM];
5255         guint8 exc_throw_found [MONO_EXC_INTRINS_NUM];
5256         int max_epilog_size = 50;
5257
5258         for (i = 0; i < MONO_EXC_INTRINS_NUM; i++) {
5259                 exc_throw_pos [i] = NULL;
5260                 exc_throw_found [i] = 0;
5261         }
5262
5263         /* count the number of exception infos */
5264      
5265         /* 
5266          * make sure we have enough space for exceptions
5267          */
5268         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
5269                 if (patch_info->type == MONO_PATCH_INFO_EXC) {
5270                         i = exception_id_by_name (patch_info->data.target);
5271                         if (!exc_throw_found [i]) {
5272                                 max_epilog_size += (2 * PPC_LOAD_SEQUENCE_LENGTH) + 5 * 4;
5273                                 exc_throw_found [i] = TRUE;
5274                         }
5275                 } else if (patch_info->type == MONO_PATCH_INFO_BB_OVF)
5276                         max_epilog_size += 12;
5277                 else if (patch_info->type == MONO_PATCH_INFO_EXC_OVF) {
5278                         MonoOvfJump *ovfj = (MonoOvfJump*)patch_info->data.target;
5279                         i = exception_id_by_name (ovfj->data.exception);
5280                         if (!exc_throw_found [i]) {
5281                                 max_epilog_size += (2 * PPC_LOAD_SEQUENCE_LENGTH) + 5 * 4;
5282                                 exc_throw_found [i] = TRUE;
5283                         }
5284                         max_epilog_size += 8;
5285                 }
5286         }
5287
5288         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
5289                 cfg->code_size *= 2;
5290                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5291                 cfg->stat_code_reallocs++;
5292         }
5293
5294         code = cfg->native_code + cfg->code_len;
5295
5296         /* add code to raise exceptions */
5297         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
5298                 switch (patch_info->type) {
5299                 case MONO_PATCH_INFO_BB_OVF: {
5300                         MonoOvfJump *ovfj = (MonoOvfJump*)patch_info->data.target;
5301                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
5302                         /* patch the initial jump */
5303                         ppc_patch (ip, code);
5304                         ppc_bc (code, ovfj->b0_cond, ovfj->b1_cond, 2);
5305                         ppc_b (code, 0);
5306                         ppc_patch (code - 4, ip + 4); /* jump back after the initiali branch */
5307                         /* jump back to the true target */
5308                         ppc_b (code, 0);
5309                         ip = ovfj->data.bb->native_offset + cfg->native_code;
5310                         ppc_patch (code - 4, ip);
5311                         patch_info->type = MONO_PATCH_INFO_NONE;
5312                         break;
5313                 }
5314                 case MONO_PATCH_INFO_EXC_OVF: {
5315                         MonoOvfJump *ovfj = (MonoOvfJump*)patch_info->data.target;
5316                         MonoJumpInfo *newji;
5317                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
5318                         unsigned char *bcl = code;
5319                         /* patch the initial jump: we arrived here with a call */
5320                         ppc_patch (ip, code);
5321                         ppc_bc (code, ovfj->b0_cond, ovfj->b1_cond, 0);
5322                         ppc_b (code, 0);
5323                         ppc_patch (code - 4, ip + 4); /* jump back after the initiali branch */
5324                         /* patch the conditional jump to the right handler */
5325                         /* make it processed next */
5326                         newji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
5327                         newji->type = MONO_PATCH_INFO_EXC;
5328                         newji->ip.i = bcl - cfg->native_code;
5329                         newji->data.target = ovfj->data.exception;
5330                         newji->next = patch_info->next;
5331                         patch_info->next = newji;
5332                         patch_info->type = MONO_PATCH_INFO_NONE;
5333                         break;
5334                 }
5335                 case MONO_PATCH_INFO_EXC: {
5336                         MonoClass *exc_class;
5337
5338                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
5339                         i = exception_id_by_name (patch_info->data.target);
5340                         if (exc_throw_pos [i] && !(ip > exc_throw_pos [i] && ip - exc_throw_pos [i] > 50000)) {
5341                                 ppc_patch (ip, exc_throw_pos [i]);
5342                                 patch_info->type = MONO_PATCH_INFO_NONE;
5343                                 break;
5344                         } else {
5345                                 exc_throw_pos [i] = code;
5346                         }
5347
5348                         exc_class = mono_class_from_name (mono_defaults.corlib, "System", patch_info->data.name);
5349                         g_assert (exc_class);
5350
5351                         ppc_patch (ip, code);
5352                         /*mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_EXC_NAME, patch_info->data.target);*/
5353                         ppc_load (code, ppc_r3, exc_class->type_token);
5354                         /* we got here from a conditional call, so the calling ip is set in lr */
5355                         ppc_mflr (code, ppc_r4);
5356                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
5357                         patch_info->data.name = "mono_arch_throw_corlib_exception";
5358                         patch_info->ip.i = code - cfg->native_code;
5359                         if (FORCE_INDIR_CALL || cfg->method->dynamic) {
5360                                 ppc_load_func (code, ppc_r0, 0);
5361                                 ppc_mtctr (code, ppc_r0);
5362                                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
5363                         } else {
5364                                 ppc_bl (code, 0);
5365                         }
5366                         break;
5367                 }
5368                 default:
5369                         /* do nothing */
5370                         break;
5371                 }
5372         }
5373
5374         cfg->code_len = code - cfg->native_code;
5375
5376         g_assert (cfg->code_len <= cfg->code_size);
5377 }
5378 #endif
5379
5380 #if DEAD_CODE
5381 static int
5382 try_offset_access (void *value, guint32 idx)
5383 {
5384         register void* me __asm__ ("r2");
5385         void ***p = (void***)((char*)me + 284);
5386         int idx1 = idx / 32;
5387         int idx2 = idx % 32;
5388         if (!p [idx1])
5389                 return 0;
5390         if (value != p[idx1][idx2])
5391                 return 0;
5392         return 1;
5393 }
5394 #endif
5395
5396 static void
5397 setup_tls_access (void)
5398 {
5399         guint32 ptk;
5400
5401 #if defined(__linux__) && defined(_CS_GNU_LIBPTHREAD_VERSION)
5402         size_t conf_size = 0;
5403         char confbuf[128];
5404 #else
5405         /* FIXME for darwin */
5406         guint32 *ins, *code;
5407         guint32 cmplwi_1023, li_0x48, blr_ins;
5408 #endif
5409
5410 #ifdef TARGET_PS3
5411         tls_mode = TLS_MODE_FAILED;
5412 #endif
5413
5414         if (tls_mode == TLS_MODE_FAILED)
5415                 return;
5416         if (g_getenv ("MONO_NO_TLS")) {
5417                 tls_mode = TLS_MODE_FAILED;
5418                 return;
5419         }
5420
5421         if (tls_mode == TLS_MODE_DETECT) {
5422 #if defined(__APPLE__) && defined(__mono_ppc__) && !defined(__mono_ppc64__)
5423                 tls_mode = TLS_MODE_DARWIN_G4;
5424 #elif defined(__linux__) && defined(_CS_GNU_LIBPTHREAD_VERSION)
5425                 conf_size = confstr ( _CS_GNU_LIBPTHREAD_VERSION, confbuf, sizeof(confbuf));
5426                 if ((conf_size > 4) && (strncmp (confbuf, "NPTL", 4) == 0))
5427                         tls_mode = TLS_MODE_NPTL;
5428 #elif !defined(TARGET_PS3)
5429                 ins = (guint32*)pthread_getspecific;
5430                 /* uncond branch to the real method */
5431                 if ((*ins >> 26) == 18) {
5432                         gint32 val;
5433                         val = (*ins & ~3) << 6;
5434                         val >>= 6;
5435                         if (*ins & 2) {
5436                                 /* absolute */
5437                                 ins = (guint32*)(long)val;
5438                         } else {
5439                                 ins = (guint32*) ((char*)ins + val);
5440                         }
5441                 }
5442                 code = &cmplwi_1023;
5443                 ppc_cmpli (code, 0, 0, ppc_r3, 1023);
5444                 code = &li_0x48;
5445                 ppc_li (code, ppc_r4, 0x48);
5446                 code = &blr_ins;
5447                 ppc_blr (code);
5448                 if (*ins == cmplwi_1023) {
5449                         int found_lwz_284 = 0;
5450                         for (ptk = 0; ptk < 20; ++ptk) {
5451                                 ++ins;
5452                                 if (!*ins || *ins == blr_ins)
5453                                         break;
5454                                 if ((guint16)*ins == 284 && (*ins >> 26) == 32) {
5455                                         found_lwz_284 = 1;
5456                                         break;
5457                                 }
5458                         }
5459                         if (!found_lwz_284) {
5460                                 tls_mode = TLS_MODE_FAILED;
5461                                 return;
5462                         }
5463                         tls_mode = TLS_MODE_LTHREADS;
5464                 } else if (*ins == li_0x48) {
5465                         ++ins;
5466                         /* uncond branch to the real method */
5467                         if ((*ins >> 26) == 18) {
5468                                 gint32 val;
5469                                 val = (*ins & ~3) << 6;
5470                                 val >>= 6;
5471                                 if (*ins & 2) {
5472                                         /* absolute */
5473                                         ins = (guint32*)(long)val;
5474                                 } else {
5475                                         ins = (guint32*) ((char*)ins + val);
5476                                 }
5477                                 code = (guint32*)&val;
5478                                 ppc_li (code, ppc_r0, 0x7FF2);
5479                                 if (ins [1] == val) {
5480                                         /* Darwin on G4, implement */
5481                                         tls_mode = TLS_MODE_FAILED;
5482                                         return;
5483                                 } else {
5484                                         code = (guint32*)&val;
5485                                         ppc_mfspr (code, ppc_r3, 104);
5486                                         if (ins [1] != val) {
5487                                                 tls_mode = TLS_MODE_FAILED;
5488                                                 return;
5489                                         }
5490                                         tls_mode = TLS_MODE_DARWIN_G5;
5491                                 }
5492                         } else {
5493                                 tls_mode = TLS_MODE_FAILED;
5494                                 return;
5495                         }
5496                 } else {
5497                         tls_mode = TLS_MODE_FAILED;
5498                         return;
5499                 }
5500 #endif
5501         }
5502 #ifndef TARGET_PS3
5503         if (tls_mode == TLS_MODE_DETECT)
5504                 tls_mode = TLS_MODE_FAILED;
5505         if (tls_mode == TLS_MODE_FAILED)
5506                 return;
5507         if ((monodomain_key == -1) && (tls_mode == TLS_MODE_NPTL)) {
5508                 monodomain_key = mono_domain_get_tls_offset();
5509         }
5510         /* if not TLS_MODE_NPTL or local dynamic (as indicated by
5511            mono_domain_get_tls_offset returning -1) then use keyed access. */
5512         if (monodomain_key == -1) {
5513                 ptk = mono_domain_get_tls_key ();
5514                 if (ptk < 1024)
5515                     monodomain_key = ptk;
5516         }
5517
5518         if ((lmf_pthread_key == -1) && (tls_mode == TLS_MODE_NPTL)) {
5519                 lmf_pthread_key = mono_get_lmf_addr_tls_offset();
5520         }
5521
5522 #if 0
5523         /* if not TLS_MODE_NPTL or local dynamic (as indicated by
5524            mono_get_lmf_addr_tls_offset returning -1) then use keyed access. */
5525         if (lmf_pthread_key == -1) {
5526                 ptk = mono_jit_tls_id;
5527                 if (ptk < 1024) {
5528                         /*g_print ("MonoLMF at: %d\n", ptk);*/
5529                         /*if (!try_offset_access (mono_get_lmf_addr (), ptk)) {
5530                                 init_tls_failed = 1;
5531                                 return;
5532                         }*/
5533                         lmf_pthread_key = ptk;
5534                 }
5535         }
5536 #endif
5537
5538 #endif
5539 }
5540
5541 void
5542 mono_arch_finish_init (void)
5543 {
5544         setup_tls_access ();
5545 }
5546
5547 void
5548 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
5549 {
5550 }
5551
5552 #ifdef MONO_ARCH_HAVE_IMT
5553
5554 #define CMP_SIZE (PPC_LOAD_SEQUENCE_LENGTH + 4)
5555 #define BR_SIZE 4
5556 #define LOADSTORE_SIZE 4
5557 #define JUMP_IMM_SIZE 12
5558 #define JUMP_IMM32_SIZE (PPC_LOAD_SEQUENCE_LENGTH + 8)
5559 #define ENABLE_WRONG_METHOD_CHECK 0
5560
5561 /*
5562  * LOCKING: called with the domain lock held
5563  */
5564 gpointer
5565 mono_arch_build_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
5566         gpointer fail_tramp)
5567 {
5568         int i;
5569         int size = 0;
5570         guint8 *code, *start;
5571
5572         for (i = 0; i < count; ++i) {
5573                 MonoIMTCheckItem *item = imt_entries [i];
5574                 if (item->is_equals) {
5575                         if (item->check_target_idx) {
5576                                 if (!item->compare_done)
5577                                         item->chunk_size += CMP_SIZE;
5578                                 if (item->has_target_code)
5579                                         item->chunk_size += BR_SIZE + JUMP_IMM32_SIZE;
5580                                 else
5581                                         item->chunk_size += LOADSTORE_SIZE + BR_SIZE + JUMP_IMM_SIZE;
5582                         } else {
5583                                 if (fail_tramp) {
5584                                         item->chunk_size += CMP_SIZE + BR_SIZE + JUMP_IMM32_SIZE * 2;
5585                                         if (!item->has_target_code)
5586                                                 item->chunk_size += LOADSTORE_SIZE;
5587                                 } else {
5588                                         item->chunk_size += LOADSTORE_SIZE + JUMP_IMM_SIZE;
5589 #if ENABLE_WRONG_METHOD_CHECK
5590                                         item->chunk_size += CMP_SIZE + BR_SIZE + 4;
5591 #endif
5592                                 }
5593                         }
5594                 } else {
5595                         item->chunk_size += CMP_SIZE + BR_SIZE;
5596                         imt_entries [item->check_target_idx]->compare_done = TRUE;
5597                 }
5598                 size += item->chunk_size;
5599         }
5600         /* the initial load of the vtable address */
5601         size += PPC_LOAD_SEQUENCE_LENGTH + LOADSTORE_SIZE;
5602         if (fail_tramp) {
5603                 code = mono_method_alloc_generic_virtual_thunk (domain, size);
5604         } else {
5605                 code = mono_domain_code_reserve (domain, size);
5606         }
5607         start = code;
5608
5609         /*
5610          * We need to save and restore r11 because it might be
5611          * used by the caller as the vtable register, so
5612          * clobbering it will trip up the magic trampoline.
5613          *
5614          * FIXME: Get rid of this by making sure that r11 is
5615          * not used as the vtable register in interface calls.
5616          */
5617         ppc_stptr (code, ppc_r11, PPC_RET_ADDR_OFFSET, ppc_sp);
5618         ppc_load (code, ppc_r11, (gsize)(& (vtable->vtable [0])));
5619
5620         for (i = 0; i < count; ++i) {
5621                 MonoIMTCheckItem *item = imt_entries [i];
5622                 item->code_target = code;
5623                 if (item->is_equals) {
5624                         if (item->check_target_idx) {
5625                                 if (!item->compare_done) {
5626                                         ppc_load (code, ppc_r0, (gsize)item->key);
5627                                         ppc_compare_log (code, 0, MONO_ARCH_IMT_REG, ppc_r0);
5628                                 }
5629                                 item->jmp_code = code;
5630                                 ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
5631                                 if (item->has_target_code) {
5632                                         ppc_load_ptr (code, ppc_r0, item->value.target_code);
5633                                 } else {
5634                                         ppc_ldptr (code, ppc_r0, (sizeof (gpointer) * item->value.vtable_slot), ppc_r11);
5635                                         ppc_ldptr (code, ppc_r11, PPC_RET_ADDR_OFFSET, ppc_sp);
5636                                 }
5637                                 ppc_mtctr (code, ppc_r0);
5638                                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
5639                         } else {
5640                                 if (fail_tramp) {
5641                                         ppc_load (code, ppc_r0, (gulong)item->key);
5642                                         ppc_compare_log (code, 0, MONO_ARCH_IMT_REG, ppc_r0);
5643                                         item->jmp_code = code;
5644                                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
5645                                         if (item->has_target_code) {
5646                                                 ppc_load_ptr (code, ppc_r0, item->value.target_code);
5647                                         } else {
5648                                                 g_assert (vtable);
5649                                                 ppc_load_ptr (code, ppc_r0, & (vtable->vtable [item->value.vtable_slot]));
5650                                                 ppc_ldptr_indexed (code, ppc_r0, 0, ppc_r0);
5651                                         }
5652                                         ppc_mtctr (code, ppc_r0);
5653                                         ppc_bcctr (code, PPC_BR_ALWAYS, 0);
5654                                         ppc_patch (item->jmp_code, code);
5655                                         ppc_load_ptr (code, ppc_r0, fail_tramp);
5656                                         ppc_mtctr (code, ppc_r0);
5657                                         ppc_bcctr (code, PPC_BR_ALWAYS, 0);
5658                                         item->jmp_code = NULL;
5659                                 } else {
5660                                         /* enable the commented code to assert on wrong method */
5661 #if ENABLE_WRONG_METHOD_CHECK
5662                                         ppc_load (code, ppc_r0, (guint32)item->key);
5663                                         ppc_compare_log (code, 0, MONO_ARCH_IMT_REG, ppc_r0);
5664                                         item->jmp_code = code;
5665                                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
5666 #endif
5667                                         ppc_ldptr (code, ppc_r0, (sizeof (gpointer) * item->value.vtable_slot), ppc_r11);
5668                                         ppc_ldptr (code, ppc_r11, PPC_RET_ADDR_OFFSET, ppc_sp);
5669                                         ppc_mtctr (code, ppc_r0);
5670                                         ppc_bcctr (code, PPC_BR_ALWAYS, 0);
5671 #if ENABLE_WRONG_METHOD_CHECK
5672                                         ppc_patch (item->jmp_code, code);
5673                                         ppc_break (code);
5674                                         item->jmp_code = NULL;
5675 #endif
5676                                 }
5677                         }
5678                 } else {
5679                         ppc_load (code, ppc_r0, (gulong)item->key);
5680                         ppc_compare_log (code, 0, MONO_ARCH_IMT_REG, ppc_r0);
5681                         item->jmp_code = code;
5682                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_LT, 0);
5683                 }
5684         }
5685         /* patch the branches to get to the target items */
5686         for (i = 0; i < count; ++i) {
5687                 MonoIMTCheckItem *item = imt_entries [i];
5688                 if (item->jmp_code) {
5689                         if (item->check_target_idx) {
5690                                 ppc_patch (item->jmp_code, imt_entries [item->check_target_idx]->code_target);
5691                         }
5692                 }
5693         }
5694
5695         if (!fail_tramp)
5696                 mono_stats.imt_thunks_size += code - start;
5697         g_assert (code - start <= size);
5698         mono_arch_flush_icache (start, size);
5699         return start;
5700 }
5701
5702 MonoMethod*
5703 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
5704 {
5705         mgreg_t *r = (mgreg_t*)regs;
5706
5707         return (MonoMethod*)(gsize) r [MONO_ARCH_IMT_REG];
5708 }
5709 #endif
5710
5711 MonoVTable*
5712 mono_arch_find_static_call_vtable (mgreg_t *regs, guint8 *code)
5713 {
5714         mgreg_t *r = (mgreg_t*)regs;
5715
5716         return (MonoVTable*)(gsize) r [MONO_ARCH_RGCTX_REG];
5717 }
5718
5719 GSList*
5720 mono_arch_get_cie_program (void)
5721 {
5722         GSList *l = NULL;
5723
5724         mono_add_unwind_op_def_cfa (l, (guint8*)NULL, (guint8*)NULL, ppc_r1, 0);
5725
5726         return l;
5727 }
5728
5729 MonoInst*
5730 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5731 {
5732         /* FIXME: */
5733         return NULL;
5734 }
5735
5736 gboolean
5737 mono_arch_print_tree (MonoInst *tree, int arity)
5738 {
5739         return 0;
5740 }
5741
5742 MonoInst* mono_arch_get_domain_intrinsic (MonoCompile* cfg)
5743 {
5744         MonoInst* ins;
5745
5746         setup_tls_access ();
5747         if (monodomain_key == -1)
5748                 return NULL;
5749         
5750         MONO_INST_NEW (cfg, ins, OP_TLS_GET);
5751         ins->inst_offset = monodomain_key;
5752         return ins;
5753 }
5754
5755 mgreg_t
5756 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
5757 {
5758         if (reg == ppc_r1)
5759                 return (mgreg_t)MONO_CONTEXT_GET_SP (ctx);
5760
5761         g_assert (reg >= ppc_r13);
5762
5763         return ctx->regs [reg - ppc_r13];
5764 }
5765
5766 guint32
5767 mono_arch_get_patch_offset (guint8 *code)
5768 {
5769         return 0;
5770 }
5771
5772 /*
5773  * mono_aot_emit_load_got_addr:
5774  *
5775  *   Emit code to load the got address.
5776  * On PPC, the result is placed into r30.
5777  */
5778 guint8*
5779 mono_arch_emit_load_got_addr (guint8 *start, guint8 *code, MonoCompile *cfg, MonoJumpInfo **ji)
5780 {
5781         ppc_bl (code, 1);
5782         ppc_mflr (code, ppc_r30);
5783         if (cfg)
5784                 mono_add_patch_info (cfg, code - start, MONO_PATCH_INFO_GOT_OFFSET, NULL);
5785         else
5786                 *ji = mono_patch_info_list_prepend (*ji, code - start, MONO_PATCH_INFO_GOT_OFFSET, NULL);
5787         /* arch_emit_got_address () patches this */
5788 #if defined(TARGET_POWERPC64)
5789         ppc_nop (code);
5790         ppc_nop (code);
5791         ppc_nop (code);
5792         ppc_nop (code);
5793 #else
5794         ppc_load32 (code, ppc_r0, 0);
5795         ppc_add (code, ppc_r30, ppc_r30, ppc_r0);
5796 #endif
5797
5798         return code;
5799 }
5800
5801 /*
5802  * mono_ppc_emit_load_aotconst:
5803  *
5804  *   Emit code to load the contents of the GOT slot identified by TRAMP_TYPE and
5805  * TARGET from the mscorlib GOT in full-aot code.
5806  * On PPC, the GOT address is assumed to be in r30, and the result is placed into 
5807  * r11.
5808  */
5809 guint8*
5810 mono_arch_emit_load_aotconst (guint8 *start, guint8 *code, MonoJumpInfo **ji, int tramp_type, gconstpointer target)
5811 {
5812         /* Load the mscorlib got address */
5813         ppc_ldptr (code, ppc_r11, sizeof (gpointer), ppc_r30);
5814         *ji = mono_patch_info_list_prepend (*ji, code - start, tramp_type, target);
5815         /* arch_emit_got_access () patches this */
5816         ppc_load32 (code, ppc_r0, 0);
5817         ppc_ldptr_indexed (code, ppc_r11, ppc_r11, ppc_r0);
5818
5819         return code;
5820 }
5821
5822 /* Soft Debug support */
5823 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
5824
5825 /*
5826  * BREAKPOINTS
5827  */
5828
5829 /*
5830  * mono_arch_set_breakpoint:
5831  *
5832  *   See mini-amd64.c for docs.
5833  */
5834 void
5835 mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip)
5836 {
5837         guint8 *code = ip;
5838         guint8 *orig_code = code;
5839
5840         ppc_load_sequence (code, ppc_r11, (gsize)bp_trigger_page);
5841         ppc_ldptr (code, ppc_r11, 0, ppc_r11);
5842
5843         g_assert (code - orig_code == BREAKPOINT_SIZE);
5844
5845         mono_arch_flush_icache (orig_code, code - orig_code);
5846 }
5847
5848 /*
5849  * mono_arch_clear_breakpoint:
5850  *
5851  *   See mini-amd64.c for docs.
5852  */
5853 void
5854 mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip)
5855 {
5856         guint8 *code = ip;
5857         int i;
5858
5859         for (i = 0; i < BREAKPOINT_SIZE / 4; ++i)
5860                 ppc_nop (code);
5861
5862         mono_arch_flush_icache (ip, code - ip);
5863 }
5864
5865 /*
5866  * mono_arch_is_breakpoint_event:
5867  *
5868  *   See mini-amd64.c for docs.
5869  */
5870 gboolean
5871 mono_arch_is_breakpoint_event (void *info, void *sigctx)
5872 {
5873         siginfo_t* sinfo = (siginfo_t*) info;
5874         /* Sometimes the address is off by 4 */
5875         if (sinfo->si_addr >= bp_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)bp_trigger_page + 128)
5876                 return TRUE;
5877         else
5878                 return FALSE;
5879 }
5880
5881 /*
5882  * mono_arch_skip_breakpoint:
5883  *
5884  *   See mini-amd64.c for docs.
5885  */
5886 void
5887 mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji)
5888 {
5889         /* skip the ldptr */
5890         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
5891 }
5892
5893 /*
5894  * SINGLE STEPPING
5895  */
5896         
5897 /*
5898  * mono_arch_start_single_stepping:
5899  *
5900  *   See mini-amd64.c for docs.
5901  */
5902 void
5903 mono_arch_start_single_stepping (void)
5904 {
5905         mono_mprotect (ss_trigger_page, mono_pagesize (), 0);
5906 }
5907         
5908 /*
5909  * mono_arch_stop_single_stepping:
5910  *
5911  *   See mini-amd64.c for docs.
5912  */
5913 void
5914 mono_arch_stop_single_stepping (void)
5915 {
5916         mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ);
5917 }
5918
5919 /*
5920  * mono_arch_is_single_step_event:
5921  *
5922  *   See mini-amd64.c for docs.
5923  */
5924 gboolean
5925 mono_arch_is_single_step_event (void *info, void *sigctx)
5926 {
5927         siginfo_t* sinfo = (siginfo_t*) info;
5928         /* Sometimes the address is off by 4 */
5929         if (sinfo->si_addr >= ss_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)ss_trigger_page + 128)
5930                 return TRUE;
5931         else
5932                 return FALSE;
5933 }
5934
5935 /*
5936  * mono_arch_skip_single_step:
5937  *
5938  *   See mini-amd64.c for docs.
5939  */
5940 void
5941 mono_arch_skip_single_step (MonoContext *ctx)
5942 {
5943         /* skip the ldptr */
5944         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
5945 }
5946
5947 /*
5948  * mono_arch_create_seq_point_info:
5949  *
5950  *   See mini-amd64.c for docs.
5951  */
5952 gpointer
5953 mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code)
5954 {
5955         NOT_IMPLEMENTED;
5956         return NULL;
5957 }
5958
5959 void
5960 mono_arch_init_lmf_ext (MonoLMFExt *ext, gpointer prev_lmf)
5961 {
5962         ext->lmf.previous_lmf = prev_lmf;
5963         /* Mark that this is a MonoLMFExt */
5964         ext->lmf.previous_lmf = (gpointer)(((gssize)ext->lmf.previous_lmf) | 2);
5965         ext->lmf.ebp = (gssize)ext;
5966 }
5967
5968 #endif