Merge pull request #1816 from esdrubal/getdaylight
[mono.git] / mono / mini / tramp-ppc.c
1 /*
2  * tramp-ppc.c: JIT trampoline code for PowerPC
3  *
4  * Authors:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *   Paolo Molaro (lupus@ximian.com)
7  *   Carlos Valiente <yo@virutass.net>
8  *   Andreas Faerber <andreas.faerber@web.de>
9  *
10  * (C) 2001 Ximian, Inc.
11  * (C) 2007-2008 Andreas Faerber
12  */
13
14 #include <config.h>
15 #include <glib.h>
16
17 #include <mono/metadata/abi-details.h>
18 #include <mono/metadata/appdomain.h>
19 #include <mono/metadata/marshal.h>
20 #include <mono/metadata/tabledefs.h>
21 #include <mono/arch/ppc/ppc-codegen.h>
22
23 #include "mini.h"
24 #include "mini-ppc.h"
25
26 #if 0
27 /* Same as mono_create_ftnptr, but doesn't require a domain */
28 static gpointer
29 mono_ppc_create_ftnptr (guint8 *code)
30 {
31 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
32         MonoPPCFunctionDescriptor *ftnptr = mono_global_codeman_reserve (sizeof (MonoPPCFunctionDescriptor));
33
34         ftnptr->code = code;
35         ftnptr->toc = NULL;
36         ftnptr->env = NULL;
37
38         return ftnptr;
39 #else
40         return code;
41 #endif
42 }
43 #endif
44
45 /*
46  * Return the instruction to jump from code to target, 0 if not
47  * reachable with a single instruction
48  */
49 static guint32
50 branch_for_target_reachable (guint8 *branch, guint8 *target)
51 {
52         gint diff = target - branch;
53         g_assert ((diff & 3) == 0);
54         if (diff >= 0) {
55                 if (diff <= 33554431)
56                         return (18 << 26) | (diff);
57         } else {
58                 /* diff between 0 and -33554432 */
59                 if (diff >= -33554432)
60                         return (18 << 26) | (diff & ~0xfc000000);
61         }
62         return 0;
63 }
64
65 /*
66  * get_unbox_trampoline:
67  * @m: method pointer
68  * @addr: pointer to native code for @m
69  *
70  * when value type methods are called through the vtable we need to unbox the
71  * this argument. This method returns a pointer to a trampoline which does
72  * unboxing before calling the method
73  */
74 gpointer
75 mono_arch_get_unbox_trampoline (MonoMethod *m, gpointer addr)
76 {
77         guint8 *code, *start;
78         int this_pos = 3;
79         guint32 short_branch;
80         MonoDomain *domain = mono_domain_get ();
81         int size = MONO_PPC_32_64_CASE (20, 32) + PPC_FTNPTR_SIZE;
82
83         addr = mono_get_addr_from_ftnptr (addr);
84
85         mono_domain_lock (domain);
86         start = code = mono_domain_code_reserve (domain, size);
87         code = mono_ppc_create_pre_code_ftnptr (code);
88         short_branch = branch_for_target_reachable (code + 4, addr);
89         if (short_branch)
90                 mono_domain_code_commit (domain, code, size, 8);
91         mono_domain_unlock (domain);
92
93         if (short_branch) {
94                 ppc_addi (code, this_pos, this_pos, sizeof (MonoObject));
95                 ppc_emit32 (code, short_branch);
96         } else {
97                 ppc_load_ptr (code, ppc_r0, addr);
98                 ppc_mtctr (code, ppc_r0);
99                 ppc_addi (code, this_pos, this_pos, sizeof (MonoObject));
100                 ppc_bcctr (code, 20, 0);
101         }
102         mono_arch_flush_icache (start, code - start);
103         g_assert ((code - start) <= size);
104         /*g_print ("unbox trampoline at %d for %s:%s\n", this_pos, m->klass->name, m->name);
105         g_print ("unbox code is at %p for method at %p\n", start, addr);*/
106
107         return start;
108 }
109
110 /*
111  * mono_arch_get_static_rgctx_trampoline:
112  *
113  *   Create a trampoline which sets RGCTX_REG to MRGCTX, then jumps to ADDR.
114  */
115 gpointer
116 mono_arch_get_static_rgctx_trampoline (MonoMethod *m, MonoMethodRuntimeGenericContext *mrgctx, gpointer addr)
117 {
118         guint8 *code, *start, *p;
119         guint8 imm_buf [128];
120         guint32 short_branch;
121         MonoDomain *domain = mono_domain_get ();
122         int imm_size;
123         int size = MONO_PPC_32_64_CASE (24, (PPC_LOAD_SEQUENCE_LENGTH * 2) + 8) + PPC_FTNPTR_SIZE;
124
125         addr = mono_get_addr_from_ftnptr (addr);
126
127         /* Compute size of code needed to emit mrgctx */
128         p = imm_buf;
129         ppc_load_ptr (p, MONO_ARCH_RGCTX_REG, mrgctx);
130         imm_size = p - imm_buf;
131
132         mono_domain_lock (domain);
133         start = code = mono_domain_code_reserve (domain, size);
134         code = mono_ppc_create_pre_code_ftnptr (code);
135         short_branch = branch_for_target_reachable (code + imm_size, addr);
136         if (short_branch)
137                 mono_domain_code_commit (domain, code, size, imm_size + 4);
138         mono_domain_unlock (domain);
139
140         if (short_branch) {
141                 ppc_load_ptr (code, MONO_ARCH_RGCTX_REG, mrgctx);
142                 ppc_emit32 (code, short_branch);
143         } else {
144                 ppc_load_ptr (code, ppc_r0, addr);
145                 ppc_mtctr (code, ppc_r0);
146                 ppc_load_ptr (code, MONO_ARCH_RGCTX_REG, mrgctx);
147                 ppc_bcctr (code, 20, 0);
148         }
149         mono_arch_flush_icache (start, code - start);
150         g_assert ((code - start) <= size);
151
152         return start;
153 }
154
155 void
156 mono_arch_patch_callsite (guint8 *method_start, guint8 *code_ptr, guint8 *addr)
157 {
158         guint32 *code = (guint32*)code_ptr;
159
160         addr = mono_get_addr_from_ftnptr (addr);
161
162         /* This is the 'blrl' instruction */
163         --code;
164         
165         /*
166          * Note that methods are called also with the bl opcode.
167          */
168         if (((*code) >> 26) == 18) {
169                 /*g_print ("direct patching\n");*/
170                 ppc_patch ((guint8*)code, addr);
171                 mono_arch_flush_icache ((guint8*)code, 4);
172                 return;
173         }
174         
175         /* Sanity check */
176         g_assert (mono_ppc_is_direct_call_sequence (code));
177
178         ppc_patch ((guint8*)code, addr);
179 }
180
181 void
182 mono_arch_patch_plt_entry (guint8 *code, gpointer *got, mgreg_t *regs, guint8 *addr)
183 {
184         guint32 ins1, ins2, offset;
185
186         /* Patch the jump table entry used by the plt entry */
187
188         /* Should be a lis+ori */
189         ins1 = ((guint32*)code)[0];
190         g_assert (ins1 >> 26 == 15);
191         ins2 = ((guint32*)code)[1];
192         g_assert (ins2 >> 26 == 24);
193         offset = ((ins1 & 0xffff) << 16) | (ins2 & 0xffff);
194
195         /* Either got or regs is set */
196         if (!got)
197                 got = (gpointer*)(gsize) regs [30];
198         *(guint8**)((guint8*)got + offset) = addr;
199 }
200
201 void
202 mono_arch_nullify_class_init_trampoline (guint8 *code, mgreg_t *regs)
203 {
204         mono_arch_patch_callsite (NULL, code, mini_get_nullified_class_init_trampoline ());
205 }
206
207 /* Stack size for trampoline function 
208  * PPC_MINIMAL_STACK_SIZE + 16 (args + alignment to ppc_magic_trampoline)
209  * + MonoLMF + 14 fp regs + 13 gregs + alignment
210  */
211 #define STACK (((PPC_MINIMAL_STACK_SIZE + 4 * sizeof (mgreg_t) + sizeof (MonoLMF) + 14 * sizeof (double) + 31 * sizeof (mgreg_t)) + (MONO_ARCH_FRAME_ALIGNMENT - 1)) & ~(MONO_ARCH_FRAME_ALIGNMENT - 1))
212
213 /* Method-specific trampoline code fragment size */
214 #define METHOD_TRAMPOLINE_SIZE 64
215
216 /* Jump-specific trampoline code fragment size */
217 #define JUMP_TRAMPOLINE_SIZE   64
218
219 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
220 #define PPC_TOC_REG ppc_r2
221 #else
222 #define PPC_TOC_REG -1
223 #endif
224
225 /*
226  * Stack frame description when the generic trampoline is called.
227  * caller frame
228  * --------------------
229  *  MonoLMF
230  *  -------------------
231  *  Saved FP registers 0-13
232  *  -------------------
233  *  Saved general registers 0-30
234  *  -------------------
235  *  param area for 3 args to ppc_magic_trampoline
236  *  -------------------
237  *  linkage area
238  *  -------------------
239  */
240 guchar*
241 mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInfo **info, gboolean aot)
242 {
243         char *tramp_name;
244         guint8 *buf, *code = NULL;
245         int i, offset;
246         gconstpointer tramp_handler;
247         int size = MONO_PPC_32_64_CASE (600, 800);
248         GSList *unwind_ops = NULL;
249         MonoJumpInfo *ji = NULL;
250
251         /* Now we'll create in 'buf' the PowerPC trampoline code. This
252            is the trampoline code common to all methods  */
253
254         code = buf = mono_global_codeman_reserve (size);
255
256         ppc_str_update (code, ppc_r1, -STACK, ppc_r1);
257
258         /* start building the MonoLMF on the stack */
259         offset = STACK - sizeof (double) * MONO_SAVED_FREGS;
260         for (i = 14; i < 32; i++) {
261                 ppc_stfd (code, i, offset, ppc_r1);
262                 offset += sizeof (double);
263         }
264         /* 
265          * now the integer registers.
266          */
267         offset = STACK - sizeof (MonoLMF) + G_STRUCT_OFFSET (MonoLMF, iregs);
268         ppc_str_multiple (code, ppc_r13, offset, ppc_r1);
269
270         /* Now save the rest of the registers below the MonoLMF struct, first 14
271          * fp regs and then the 31 gregs.
272          */
273         offset = STACK - sizeof (MonoLMF) - (14 * sizeof (double));
274         for (i = 0; i < 14; i++) {
275                 ppc_stfd (code, i, offset, ppc_r1);
276                 offset += sizeof (double);
277         }
278 #define GREGS_OFFSET (STACK - sizeof (MonoLMF) - (14 * sizeof (double)) - (31 * sizeof (mgreg_t)))
279         offset = GREGS_OFFSET;
280         for (i = 0; i < 31; i++) {
281                 ppc_str (code, i, offset, ppc_r1);
282                 offset += sizeof (mgreg_t);
283         }
284
285         /* we got here through a jump to the ctr reg, we must save the lr
286          * in the parent frame (we do it here to reduce the size of the
287          * method-specific trampoline)
288          */
289         ppc_mflr (code, ppc_r0);
290         ppc_str (code, ppc_r0, STACK + PPC_RET_ADDR_OFFSET, ppc_r1);
291
292         /* ok, now we can continue with the MonoLMF setup, mostly untouched 
293          * from emit_prolog in mini-ppc.c
294          */
295         if (aot) {
296                 code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, "mono_get_lmf_addr");
297 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
298                 ppc_ldptr (code, ppc_r2, sizeof (gpointer), ppc_r12);
299                 ppc_ldptr (code, ppc_r12, 0, ppc_r12);
300 #endif
301                 ppc_mtlr (code, ppc_r12);
302                 ppc_blrl (code);
303         }  else {
304                 ppc_load_func (code, PPC_CALL_REG, mono_get_lmf_addr);
305                 ppc_mtlr (code, PPC_CALL_REG);
306                 ppc_blrl (code);
307         }
308         /* we build the MonoLMF structure on the stack - see mini-ppc.h
309          * The pointer to the struct is put in ppc_r12.
310          */
311         ppc_addi (code, ppc_r12, ppc_sp, STACK - sizeof (MonoLMF));
312         ppc_stptr (code, ppc_r3, G_STRUCT_OFFSET(MonoLMF, lmf_addr), ppc_r12);
313         /* new_lmf->previous_lmf = *lmf_addr */
314         ppc_ldptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r3);
315         ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r12);
316         /* *(lmf_addr) = r12 */
317         ppc_stptr (code, ppc_r12, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r3);
318         /* save method info (it's stored on the stack, so get it first). */
319         if ((tramp_type == MONO_TRAMPOLINE_JIT) || (tramp_type == MONO_TRAMPOLINE_JUMP)) {
320                 ppc_ldr (code, ppc_r0, GREGS_OFFSET, ppc_r1);
321                 ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, method), ppc_r12);
322         } else {
323                 ppc_load (code, ppc_r0, 0);
324                 ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, method), ppc_r12);
325         }
326         /* store the frame pointer of the calling method */
327         ppc_addi (code, ppc_r0, ppc_sp, STACK);
328         ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, ebp), ppc_r12);
329         /* save the IP (caller ip) */
330         if (tramp_type == MONO_TRAMPOLINE_JUMP) {
331                 ppc_li (code, ppc_r0, 0);
332         } else {
333                 ppc_ldr (code, ppc_r0, STACK + PPC_RET_ADDR_OFFSET, ppc_r1);
334         }
335         ppc_stptr (code, ppc_r0, G_STRUCT_OFFSET(MonoLMF, eip), ppc_r12);
336
337         /*
338          * Now we're ready to call trampoline (mgreg_t *regs, guint8 *code, gpointer value, guint8 *tramp)
339          * Note that the last argument is unused.
340          */
341         /* Arg 1: a pointer to the registers */
342         ppc_addi (code, ppc_r3, ppc_r1, GREGS_OFFSET);
343                 
344         /* Arg 2: code (next address to the instruction that called us) */
345         if (tramp_type == MONO_TRAMPOLINE_JUMP)
346                 ppc_li (code, ppc_r4, 0);
347         else
348                 ppc_ldr  (code, ppc_r4, STACK + PPC_RET_ADDR_OFFSET, ppc_r1);
349
350         /* Arg 3: trampoline argument */
351         if (tramp_type == MONO_TRAMPOLINE_GENERIC_CLASS_INIT)
352                 ppc_ldr (code, ppc_r5, GREGS_OFFSET + MONO_ARCH_VTABLE_REG * sizeof (mgreg_t), ppc_r1);
353         else
354                 ppc_ldr (code, ppc_r5, GREGS_OFFSET, ppc_r1);
355
356         if (aot) {
357                 code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, g_strdup_printf ("trampoline_func_%d", tramp_type));
358 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
359                 ppc_ldptr (code, ppc_r2, sizeof (gpointer), ppc_r12);
360                 ppc_ldptr (code, ppc_r12, 0, ppc_r12);
361 #endif
362                 ppc_mtlr (code, ppc_r12);
363                 ppc_blrl (code);
364         } else {
365                 tramp_handler = mono_get_trampoline_func (tramp_type);
366                 ppc_load_func (code, PPC_CALL_REG, tramp_handler);
367                 ppc_mtlr (code, PPC_CALL_REG);
368                 ppc_blrl (code);
369         }
370                 
371         /* OK, code address is now on r3. Move it to the counter reg
372          * so it will be ready for the final jump: this is safe since we
373          * won't do any more calls.
374          */
375         if (!MONO_TRAMPOLINE_TYPE_MUST_RETURN (tramp_type)) {
376 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
377                 ppc_ldptr (code, ppc_r2, sizeof (gpointer), ppc_r3);
378                 ppc_ldptr (code, ppc_r3, 0, ppc_r3);
379 #endif
380                 ppc_mtctr (code, ppc_r3);
381         }
382
383         /*
384          * Now we restore the MonoLMF (see emit_epilogue in mini-ppc.c)
385          * and the rest of the registers, so the method called will see
386          * the same state as before we executed.
387          * The pointer to MonoLMF is in ppc_r12.
388          */
389         ppc_addi (code, ppc_r12, ppc_r1, STACK - sizeof (MonoLMF));
390         /* r5 = previous_lmf */
391         ppc_ldptr (code, ppc_r5, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r12);
392         /* r6 = lmf_addr */
393         ppc_ldptr (code, ppc_r6, G_STRUCT_OFFSET(MonoLMF, lmf_addr), ppc_r12);
394         /* *(lmf_addr) = previous_lmf */
395         ppc_stptr (code, ppc_r5, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r6);
396         /* restore iregs */
397         ppc_ldr_multiple (code, ppc_r13, G_STRUCT_OFFSET(MonoLMF, iregs), ppc_r12);
398         /* restore fregs */
399         for (i = 14; i < 32; i++)
400                 ppc_lfd (code, i, G_STRUCT_OFFSET(MonoLMF, fregs) + ((i-14) * sizeof (gdouble)), ppc_r12);
401
402         /* restore the volatile registers, we skip r1, of course */
403         offset = STACK - sizeof (MonoLMF) - (14 * sizeof (double));
404         for (i = 0; i < 14; i++) {
405                 ppc_lfd (code, i, offset, ppc_r1);
406                 offset += sizeof (double);
407         }
408         offset = STACK - sizeof (MonoLMF) - (14 * sizeof (double)) - (31 * sizeof (mgreg_t));
409         ppc_ldr (code, ppc_r0, offset, ppc_r1);
410         offset += 2 * sizeof (mgreg_t);
411         for (i = 2; i < 13; i++) {
412                 if (i != PPC_TOC_REG && (i != 3 || tramp_type != MONO_TRAMPOLINE_RGCTX_LAZY_FETCH))
413                         ppc_ldr (code, i, offset, ppc_r1);
414                 offset += sizeof (mgreg_t);
415         }
416
417         /* Non-standard function epilogue. Instead of doing a proper
418          * return, we just jump to the compiled code.
419          */
420         /* Restore stack pointer and LR and jump to the code */
421         ppc_ldr  (code, ppc_r1,  0, ppc_r1);
422         ppc_ldr  (code, ppc_r12, PPC_RET_ADDR_OFFSET, ppc_r1);
423         ppc_mtlr (code, ppc_r12);
424         if (MONO_TRAMPOLINE_TYPE_MUST_RETURN (tramp_type))
425                 ppc_blr (code);
426         else
427                 ppc_bcctr (code, 20, 0);
428
429         /* Flush instruction cache, since we've generated code */
430         mono_arch_flush_icache (buf, code - buf);
431         
432         /* Sanity check */
433         g_assert ((code - buf) <= size);
434
435         g_assert (info);
436         tramp_name = mono_get_generic_trampoline_name (tramp_type);
437         *info = mono_tramp_info_create (tramp_name, buf, code - buf, ji, unwind_ops);
438         g_free (tramp_name);
439
440         return buf;
441 }
442
443 #define TRAMPOLINE_SIZE (MONO_PPC_32_64_CASE (24, (5+5+1+1)*4))
444 gpointer
445 mono_arch_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
446 {
447         guint8 *code, *buf, *tramp;
448         guint32 short_branch;
449
450         tramp = mono_get_trampoline_code (tramp_type);
451
452         mono_domain_lock (domain);
453         code = buf = mono_domain_code_reserve_align (domain, TRAMPOLINE_SIZE, 4);
454         short_branch = branch_for_target_reachable (code + MONO_PPC_32_64_CASE (8, 5*4), tramp);
455 #ifdef __mono_ppc64__
456         /* FIXME: make shorter if possible */
457 #else
458         if (short_branch)
459                 mono_domain_code_commit (domain, code, TRAMPOLINE_SIZE, 12);
460 #endif
461         mono_domain_unlock (domain);
462
463         if (short_branch) {
464                 ppc_load_sequence (code, ppc_r0, (mgreg_t)(gsize) arg1);
465                 ppc_emit32 (code, short_branch);
466         } else {
467                 /* Prepare the jump to the generic trampoline code.*/
468                 ppc_load_ptr (code, ppc_r0, tramp);
469                 ppc_mtctr (code, ppc_r0);
470         
471                 /* And finally put 'arg1' in r0 and fly! */
472                 ppc_load_ptr (code, ppc_r0, arg1);
473                 ppc_bcctr (code, 20, 0);
474         }
475         
476         /* Flush instruction cache, since we've generated code */
477         mono_arch_flush_icache (buf, code - buf);
478
479         g_assert ((code - buf) <= TRAMPOLINE_SIZE);
480
481         if (code_len)
482                 *code_len = code - buf;
483
484         return buf;
485 }
486
487 static guint8*
488 emit_trampoline_jump (guint8 *code, guint8 *tramp)
489 {
490         guint32 short_branch = branch_for_target_reachable (code, tramp);
491
492         /* FIXME: we can save a few bytes here by committing if the
493            short branch is possible */
494         if (short_branch) {
495                 ppc_emit32 (code, short_branch);
496         } else {
497                 ppc_load_ptr (code, ppc_r0, tramp);
498                 ppc_mtctr (code, ppc_r0);
499                 ppc_bcctr (code, 20, 0);
500         }
501
502         return code;
503 }
504
505 gpointer
506 mono_arch_create_rgctx_lazy_fetch_trampoline (guint32 slot, MonoTrampInfo **info, gboolean aot)
507 {
508         guint8 *tramp;
509         guint8 *code, *buf;
510         guint8 **rgctx_null_jumps;
511         int tramp_size;
512         int depth, index;
513         int i;
514         gboolean mrgctx;
515         MonoJumpInfo *ji = NULL;
516         GSList *unwind_ops = NULL;
517
518         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
519         index = MONO_RGCTX_SLOT_INDEX (slot);
520         if (mrgctx)
521                 index += MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT / sizeof (gpointer);
522         for (depth = 0; ; ++depth) {
523                 int size = mono_class_rgctx_get_array_size (depth, mrgctx);
524
525                 if (index < size - 1)
526                         break;
527                 index -= size - 1;
528         }
529
530         tramp_size = MONO_PPC_32_64_CASE (40, 52) + 12 * depth;
531         if (mrgctx)
532                 tramp_size += 4;
533         else
534                 tramp_size += 12;
535         if (aot)
536                 tramp_size += 32;
537
538         code = buf = mono_global_codeman_reserve (tramp_size);
539
540         rgctx_null_jumps = g_malloc (sizeof (guint8*) * (depth + 2));
541
542         if (mrgctx) {
543                 /* get mrgctx ptr */
544                 ppc_mr (code, ppc_r4, PPC_FIRST_ARG_REG);
545         } else {
546                 /* load rgctx ptr from vtable */
547                 ppc_ldptr (code, ppc_r4, MONO_STRUCT_OFFSET (MonoVTable, runtime_generic_context), PPC_FIRST_ARG_REG);
548                 /* is the rgctx ptr null? */
549                 ppc_compare_reg_imm (code, 0, ppc_r4, 0);
550                 /* if yes, jump to actual trampoline */
551                 rgctx_null_jumps [0] = code;
552                 ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
553         }
554
555         for (i = 0; i < depth; ++i) {
556                 /* load ptr to next array */
557                 if (mrgctx && i == 0)
558                         ppc_ldptr (code, ppc_r4, MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT, ppc_r4);
559                 else
560                         ppc_ldptr (code, ppc_r4, 0, ppc_r4);
561                 /* is the ptr null? */
562                 ppc_compare_reg_imm (code, 0, ppc_r4, 0);
563                 /* if yes, jump to actual trampoline */
564                 rgctx_null_jumps [i + 1] = code;
565                 ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
566         }
567
568         /* fetch slot */
569         ppc_ldptr (code, ppc_r4, sizeof (gpointer) * (index  + 1), ppc_r4);
570         /* is the slot null? */
571         ppc_compare_reg_imm (code, 0, ppc_r4, 0);
572         /* if yes, jump to actual trampoline */
573         rgctx_null_jumps [depth + 1] = code;
574         ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
575         /* otherwise return r4 */
576         /* FIXME: if we use r3 as the work register we can avoid this copy */
577         ppc_mr (code, ppc_r3, ppc_r4);
578         ppc_blr (code);
579
580         for (i = mrgctx ? 1 : 0; i <= depth + 1; ++i)
581                 ppc_patch (rgctx_null_jumps [i], code);
582
583         g_free (rgctx_null_jumps);
584
585         /* move the rgctx pointer to the VTABLE register */
586         ppc_mr (code, MONO_ARCH_VTABLE_REG, ppc_r3);
587
588         if (aot) {
589                 code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, g_strdup_printf ("specific_trampoline_lazy_fetch_%u", slot));
590                 /* Branch to the trampoline */
591 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
592                 ppc_ldptr (code, ppc_r12, 0, ppc_r12);
593 #endif
594                 ppc_mtctr (code, ppc_r12);
595                 ppc_bcctr (code, PPC_BR_ALWAYS, 0);
596         } else {
597                 tramp = mono_arch_create_specific_trampoline (GUINT_TO_POINTER (slot),
598                         MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
599
600                 /* jump to the actual trampoline */
601                 code = emit_trampoline_jump (code, tramp);
602         }
603
604         mono_arch_flush_icache (buf, code - buf);
605
606         g_assert (code - buf <= tramp_size);
607
608         char *name = mono_get_rgctx_fetch_trampoline_name (slot);
609         *info = mono_tramp_info_create (name, buf, code - buf, ji, unwind_ops);
610         g_free (name);
611
612         return buf;
613 }
614
615 gpointer
616 mono_arch_get_nullified_class_init_trampoline (MonoTrampInfo **info)
617 {
618         guint8 *code, *buf;
619         guint32 tramp_size = 64;
620
621         code = buf = mono_global_codeman_reserve (tramp_size);
622         ppc_blr (code);
623
624         mono_arch_flush_icache (buf, code - buf);
625
626         g_assert (code - buf <= tramp_size);
627
628         *info = mono_tramp_info_create ("nullified_class_init_trampoline", buf, code - buf, NULL, NULL);
629
630         return buf;
631 }
632
633 guint8*
634 mono_arch_get_call_target (guint8 *code)
635 {
636         /* Should be a bl */
637         guint32 ins = ((guint32*)(gpointer)code) [-1];
638
639         if ((ins >> 26 == 18) && ((ins & 1) == 1) && ((ins & 2) == 0)) {
640                 gint32 disp = (((gint32)ins) >> 2) & 0xffffff;
641                 guint8 *target = code - 4 + (disp * 4);
642
643                 return target;
644         } else {
645                 return NULL;
646         }
647 }
648
649 guint32
650 mono_arch_get_plt_info_offset (guint8 *plt_entry, mgreg_t *regs, guint8 *code)
651 {
652 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
653         return ((guint32*)plt_entry) [8];
654 #else
655         return ((guint32*)plt_entry) [6];
656 #endif
657 }