Merge pull request #268 from pcc/menudeactivate
[mono.git] / mono / mini / tramp-s390x.c
1 /*------------------------------------------------------------------*/
2 /*                                                                  */
3 /* Name        - tramp-s390x.c                                      */
4 /*                                                                  */
5 /* Function    - JIT trampoline code for S/390.                     */
6 /*                                                                  */
7 /* Name        - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com) */
8 /*                                                                  */
9 /* Date        - January, 2004                                      */
10 /*                                                                  */
11 /* Derivation  - From exceptions-x86 & exceptions-ppc               */
12 /*               Paolo Molaro (lupus@ximian.com)                    */
13 /*               Dietmar Maurer (dietmar@ximian.com)                */
14 /*                                                                  */
15 /* Copyright   - 2001 Ximian, Inc.                                  */
16 /*                                                                  */
17 /*------------------------------------------------------------------*/
18
19 /*------------------------------------------------------------------*/
20 /*                 D e f i n e s                                    */
21 /*------------------------------------------------------------------*/
22
23 #define GR_SAVE_SIZE            4*sizeof(long)
24 #define FP_SAVE_SIZE            16*sizeof(double)
25 #define METHOD_SAVE_OFFSET      S390_MINIMAL_STACK_SIZE
26 #define CREATE_GR_OFFSET        METHOD_SAVE_OFFSET+8
27 #define CREATE_FP_OFFSET        CREATE_GR_OFFSET+GR_SAVE_SIZE
28 #define CREATE_LMF_OFFSET       CREATE_FP_OFFSET+FP_SAVE_SIZE
29 #define CREATE_STACK_SIZE       (CREATE_LMF_OFFSET+2*sizeof(long)+sizeof(MonoLMF))
30 #define GENERIC_REG_OFFSET      CREATE_STACK_SIZE + \
31                                 S390_REG_SAVE_OFFSET + \
32                                 3*sizeof(long)
33
34 /*------------------------------------------------------------------*/
35 /* Method-specific trampoline code fragment sizes                   */
36 /*------------------------------------------------------------------*/
37 #define SPECIFIC_TRAMPOLINE_SIZE        96
38
39 /*========================= End of Defines =========================*/
40
41 /*------------------------------------------------------------------*/
42 /*                 I n c l u d e s                                  */
43 /*------------------------------------------------------------------*/
44
45 #include <config.h>
46 #include <glib.h>
47 #include <string.h>
48
49 #include <mono/metadata/appdomain.h>
50 #include <mono/metadata/marshal.h>
51 #include <mono/metadata/tabledefs.h>
52 #include <mono/arch/s390x/s390x-codegen.h>
53
54 #include "mini.h"
55 #include "mini-s390x.h"
56
57 /*========================= End of Includes ========================*/
58
59 /*------------------------------------------------------------------*/
60 /*                 T y p e d e f s                                  */
61 /*------------------------------------------------------------------*/
62
63 /*========================= End of Typedefs ========================*/
64
65 /*------------------------------------------------------------------*/
66 /*                   P r o t o t y p e s                            */
67 /*------------------------------------------------------------------*/
68
69 /*========================= End of Prototypes ======================*/
70
71 /*------------------------------------------------------------------*/
72 /*                 G l o b a l   V a r i a b l e s                  */
73 /*------------------------------------------------------------------*/
74
75
76 /*====================== End of Global Variables ===================*/
77
78 /*------------------------------------------------------------------*/
79 /*                                                                  */
80 /* Name         - mono_arch_get_unbox_trampoline                    */
81 /*                                                                  */
82 /* Function     - Return a pointer to a trampoline which does the   */
83 /*                unboxing before calling the method.               */
84 /*                                                                  */
85 /*                When value type methods are called through the    */
86 /*                vtable we need to unbox the 'this' argument.      */
87 /*                                                                  */
88 /* Parameters   - method - Methd pointer                            */
89 /*                addr   - Pointer to native code for method        */
90 /*                                                                  */
91 /*------------------------------------------------------------------*/
92
93 gpointer
94 mono_arch_get_unbox_trampoline (MonoMethod *method, gpointer addr)
95 {
96         guint8 *code, *start;
97         int this_pos = s390_r2;
98         MonoDomain *domain = mono_domain_get ();
99
100         start = code = mono_domain_code_reserve (domain, 28);
101
102         s390_basr (code, s390_r1, 0);
103         s390_j    (code, 6);
104         s390_llong(code, addr);
105         s390_lg   (code, s390_r1, 0, s390_r1, 4);
106         s390_aghi (code, this_pos, sizeof(MonoObject));
107         s390_br   (code, s390_r1);
108
109         g_assert ((code - start) <= 28);
110
111         mono_arch_flush_icache (start, code - start);
112
113         return start;
114 }
115
116 /*========================= End of Function ========================*/
117
118 /*------------------------------------------------------------------*/
119 /*                                                                  */
120 /* Name         - mono_arch_patch_callsite                          */
121 /*                                                                  */
122 /* Function     - Patch a non-virtual callsite so it calls @addr.   */
123 /*                                                                  */
124 /*------------------------------------------------------------------*/
125
126 void
127 mono_arch_patch_callsite (guint8 *method_start, guint8 *orig_code, guint8 *addr)
128 {
129         gint32 displace;
130         unsigned short opcode;
131
132         opcode = *((unsigned short *) (orig_code - 6));
133         if (opcode == 0xc0e5) {
134                 /* This is the 'brasl' instruction */
135                 orig_code    -= 4;
136                 displace = ((gssize) addr - (gssize) (orig_code - 2)) / 2;
137                 s390_patch_rel (orig_code, displace);
138                 mono_arch_flush_icache (orig_code, 4);
139         } else {
140                 /* This should be a 'lg %r14,4(%r13)' then a 'basr r14, r14' instruction */
141                 g_assert (orig_code [-8] == 0xe3);
142                 g_assert (orig_code [-7] == 0xe0);
143                 g_assert (orig_code [-6] == 0xd0);
144                 g_assert (orig_code [-5] == 0x04);
145                 g_assert (orig_code [-4] == 0x00);
146                 g_assert (orig_code [-3] == 0x04);
147                 opcode = *((unsigned short*) (orig_code - 2));
148                 g_assert (opcode == 0x0dee);
149
150                 /* The call address is stored in the 8 bytes preceeding the basr instruction */
151                 s390_patch_addr(orig_code - 16, (gssize)addr);
152                 mono_arch_flush_icache (orig_code - 16, 8);
153         }
154 }
155
156 /*========================= End of Function ========================*/
157
158 /*------------------------------------------------------------------*/
159 /*                                                                  */
160 /* Name         - mono_arch_patch_plt_entry.                        */
161 /*                                                                  */
162 /* Function     - Patch a PLT entry - unused as yet.                */
163 /*                                                                  */
164 /*------------------------------------------------------------------*/
165
166 void
167 mono_arch_patch_plt_entry (guint8 *code, gpointer *got, mgreg_t *regs, guint8 *addr)
168 {
169         g_assert_not_reached ();
170 }
171
172 /*========================= End of Function ========================*/
173
174 /*------------------------------------------------------------------*/
175 /*                                                                  */
176 /* Name         - mono_arch_nullify_class_init_trampoline           */
177 /*                                                                  */
178 /* Function     - Nullify a call which calls a class init trampoline*/
179 /*                                                                  */
180 /*------------------------------------------------------------------*/
181
182 void
183 mono_arch_nullify_class_init_trampoline (guint8 *code, mgreg_t *regs)
184 {
185         char patch[2] = {0x07, 0x00};
186
187         code = code - 2;
188
189         memcpy(code, patch, sizeof(patch));
190 }
191
192 /*========================= End of Function ========================*/
193
194 /*------------------------------------------------------------------*/
195 /*                                                                  */
196 /* Name         - mono_arch_nullify_plt_entry                       */
197 /*                                                                  */
198 /* Function     - Nullify a PLT entry call.                         */
199 /*                                                                  */
200 /*------------------------------------------------------------------*/
201
202 void
203 mono_arch_nullify_plt_entry (guint8 *code, mgreg_t *regs)
204 {
205         g_assert_not_reached ();
206 }
207
208 /*========================= End of Function ========================*/
209
210 /*------------------------------------------------------------------*/
211 /*                                                                  */
212 /* Name         - mono_arch_create_trampoline_code                  */
213 /*                                                                  */
214 /* Function     - Create the designated type of trampoline according*/
215 /*                to the 'tramp_type' parameter.                    */
216 /*                                                                  */
217 /*------------------------------------------------------------------*/
218
219 guchar*
220 mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInfo **info, gboolean aot)
221 {
222         char *tramp_name;
223         guint8 *buf, *tramp, *code;
224         int i, offset, lmfOffset;
225         GSList *unwind_ops = NULL;
226         MonoJumpInfo *ji = NULL;
227
228         g_assert (!aot);
229
230         /* Now we'll create in 'buf' the S/390 trampoline code. This
231            is the trampoline code common to all methods  */
232                 
233         code = buf = mono_global_codeman_reserve(512);
234                 
235         /*-----------------------------------------------------------
236           STEP 0: First create a non-standard function prologue with a
237           stack size big enough to save our registers.
238           -----------------------------------------------------------*/
239                 
240         s390_stmg (buf, s390_r6, s390_r15, STK_BASE, S390_REG_SAVE_OFFSET);
241         s390_lgr  (buf, s390_r11, s390_r15);
242         s390_aghi (buf, STK_BASE, -CREATE_STACK_SIZE);
243         s390_stg  (buf, s390_r11, 0, STK_BASE, 0);
244         s390_stg  (buf, s390_r1, 0, STK_BASE, METHOD_SAVE_OFFSET);
245         s390_stmg (buf, s390_r2, s390_r5, STK_BASE, CREATE_GR_OFFSET);
246
247         /* Save the FP registers */
248         offset = CREATE_FP_OFFSET;
249         for (i = s390_f0; i <= s390_f15; ++i) {
250                 s390_std  (buf, i, 0, STK_BASE, offset);
251                 offset += 8;
252         }
253
254         /*----------------------------------------------------------
255           STEP 1: call 'mono_get_lmf_addr()' to get the address of our
256           LMF. We'll need to restore it after the call to
257           's390_magic_trampoline' and before the call to the native
258           method.
259           ----------------------------------------------------------*/
260                                 
261         s390_basr (buf, s390_r13, 0);
262         s390_j    (buf, 6);
263         s390_llong(buf, mono_get_lmf_addr);
264         s390_lg   (buf, s390_r1, 0, s390_r13, 4);
265         s390_basr (buf, s390_r14, s390_r1);
266
267         /*---------------------------------------------------------------*/
268         /* we build the MonoLMF structure on the stack - see mini-s390.h */
269         /* Keep in sync with the code in mono_arch_emit_prolog           */
270         /*---------------------------------------------------------------*/
271         lmfOffset = CREATE_STACK_SIZE - sizeof(MonoLMF);
272                                                                                         
273         s390_lgr   (buf, s390_r13, STK_BASE);
274         s390_aghi  (buf, s390_r13, lmfOffset);  
275                                                                                         
276         /*---------------------------------------------------------------*/     
277         /* Set lmf.lmf_addr = jit_tls->lmf                               */     
278         /*---------------------------------------------------------------*/     
279         s390_stg   (buf, s390_r2, 0, s390_r13,                          
280                             G_STRUCT_OFFSET(MonoLMF, lmf_addr));                        
281                                                                                         
282         /*---------------------------------------------------------------*/     
283         /* Get current lmf                                               */     
284         /*---------------------------------------------------------------*/     
285         s390_lg    (buf, s390_r0, 0, s390_r2, 0);                               
286                                                                                         
287         /*---------------------------------------------------------------*/     
288         /* Set our lmf as the current lmf                                */     
289         /*---------------------------------------------------------------*/     
290         s390_stg   (buf, s390_r13, 0, s390_r2, 0);                              
291                                                                                         
292         /*---------------------------------------------------------------*/     
293         /* Have our lmf.previous_lmf point to the last lmf               */     
294         /*---------------------------------------------------------------*/     
295         s390_stg   (buf, s390_r0, 0, s390_r13,                          
296                             G_STRUCT_OFFSET(MonoLMF, previous_lmf));                    
297                                                                                         
298         /*---------------------------------------------------------------*/     
299         /* save method info                                              */     
300         /*---------------------------------------------------------------*/     
301         s390_lg    (buf, s390_r1, 0, STK_BASE, METHOD_SAVE_OFFSET);
302         s390_stg   (buf, s390_r1, 0, s390_r13,                          
303                             G_STRUCT_OFFSET(MonoLMF, method));                          
304                                                                         
305         /*---------------------------------------------------------------*/     
306         /* save the current SP                                           */     
307         /*---------------------------------------------------------------*/     
308         s390_lg    (buf, s390_r1, 0, STK_BASE, 0);
309         s390_stg   (buf, s390_r1, 0, s390_r13, G_STRUCT_OFFSET(MonoLMF, ebp));  
310                                                                         
311         /*---------------------------------------------------------------*/     
312         /* save the current IP                                           */     
313         /*---------------------------------------------------------------*/     
314         if (tramp_type == MONO_TRAMPOLINE_JUMP) {
315                 s390_lghi  (buf, s390_r1, 0);
316         } else {
317                 s390_lg    (buf, s390_r1, 0, s390_r1, S390_RET_ADDR_OFFSET);
318                 //                      s390_la    (buf, s390_r1, 0, s390_r1, 0);
319         }
320         s390_stg   (buf, s390_r1, 0, s390_r13, G_STRUCT_OFFSET(MonoLMF, eip));  
321                                                                                         
322         /*---------------------------------------------------------------*/     
323         /* Save general and floating point registers                     */     
324         /*---------------------------------------------------------------*/     
325         s390_mvc   (buf, 4*sizeof(gulong), s390_r13, G_STRUCT_OFFSET(MonoLMF, gregs[2]), 
326                     STK_BASE, CREATE_GR_OFFSET);
327         s390_mvc   (buf, 10*sizeof(gulong), s390_r13, G_STRUCT_OFFSET(MonoLMF, gregs[6]), 
328                     s390_r11, S390_REG_SAVE_OFFSET);
329
330         /* Simply copy fpregs already saved above                        */
331         s390_mvc   (buf, 16*sizeof(double), s390_r13, G_STRUCT_OFFSET(MonoLMF, fregs[0]),
332                     STK_BASE, CREATE_FP_OFFSET);
333
334         /*---------------------------------------------------------------*/
335         /* STEP 2: call the C trampoline function                        */
336         /*---------------------------------------------------------------*/
337                                 
338         /* Set arguments */
339
340         /* Arg 1: mgreg_t *regs. We pass sp instead */
341         s390_la  (buf, s390_r2, 0, STK_BASE, CREATE_STACK_SIZE);
342                 
343         /* Arg 2: code (next address to the instruction that called us) */
344         if (tramp_type == MONO_TRAMPOLINE_JUMP) {
345                 s390_lghi (buf, s390_r3, 0);
346         } else {
347                 s390_lg   (buf, s390_r3, 0, s390_r11, S390_RET_ADDR_OFFSET);
348         }
349
350         /* Arg 3: Trampoline argument */
351         if (tramp_type == MONO_TRAMPOLINE_GENERIC_CLASS_INIT)
352                 s390_lg (buf, s390_r4, 0, STK_BASE, GENERIC_REG_OFFSET);
353         else
354                 s390_lg (buf, s390_r4, 0, STK_BASE, METHOD_SAVE_OFFSET);
355
356         /* Arg 4: trampoline address. Ignore for now */
357                 
358         /* Calculate call address and call the C trampoline. Return value will be in r2 */
359         s390_basr (buf, s390_r13, 0);
360         s390_j    (buf, 6);
361         tramp = (guint8*)mono_get_trampoline_func (tramp_type);
362         s390_llong (buf, tramp);
363         s390_lg   (buf, s390_r1, 0, s390_r13, 4);
364         s390_basr (buf, s390_r14, s390_r1);
365                 
366         /* OK, code address is now on r2. Move it to r1, so that we
367            can restore r2 and use it from r1 later */
368         s390_lgr  (buf, s390_r1, s390_r2);
369
370         /*----------------------------------------------------------
371           STEP 3: Restore the LMF
372           ----------------------------------------------------------*/
373         restoreLMF(buf, STK_BASE, CREATE_STACK_SIZE);
374         
375         /*----------------------------------------------------------
376           STEP 4: call the compiled method
377           ----------------------------------------------------------*/
378                 
379         /* Restore registers */
380
381         s390_lmg  (buf, s390_r2, s390_r5, STK_BASE, CREATE_GR_OFFSET);
382                 
383         /* Restore the FP registers */
384         offset = CREATE_FP_OFFSET;
385         for (i = s390_f0; i <= s390_f15; ++i) {
386                 s390_ld  (buf, i, 0, STK_BASE, offset);
387                 offset += 8;
388         }
389
390         /* Restore stack pointer and jump to the code -
391            R14 contains the return address to our caller */
392         s390_lgr  (buf, STK_BASE, s390_r11);
393         s390_lmg  (buf, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
394
395         if (MONO_TRAMPOLINE_TYPE_MUST_RETURN(tramp_type)) {
396                 s390_lgr (buf, s390_r2, s390_r1);
397                 s390_br  (buf, s390_r14);
398         } else {
399                 s390_br  (buf, s390_r1);
400         }
401
402         /* Flush instruction cache, since we've generated code */
403         mono_arch_flush_icache (code, buf - code);
404         
405         if (info) {
406                 tramp_name = mono_get_generic_trampoline_name (tramp_type);
407                 *info = mono_tramp_info_create (tramp_name, buf, buf - code, ji, unwind_ops);
408                 g_free (tramp_name);
409         }
410
411         /* Sanity check */
412         g_assert ((buf - code) <= 512);
413
414         return code;
415 }
416
417 /*========================= End of Function ========================*/
418
419 /*------------------------------------------------------------------*/
420 /*                                                                  */
421 /* Name         - mono_arch_create_specific_trampoline              */
422 /*                                                                  */
423 /* Function     - Creates the given kind of specific trampoline     */
424 /*                                                                  */
425 /*------------------------------------------------------------------*/
426
427 gpointer
428 mono_arch_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
429 {
430         guint8 *code, *buf, *tramp;
431         gint32 displace;
432
433         tramp = mono_get_trampoline_code (tramp_type);
434
435         /*----------------------------------------------------------*/
436         /* This is the method-specific part of the trampoline. Its  */
437         /* purpose is to provide the generic part with the          */
438         /* MonoMethod *method pointer. We'll use r1 to keep it.     */
439         /*----------------------------------------------------------*/
440         code = buf = mono_domain_code_reserve (domain, SPECIFIC_TRAMPOLINE_SIZE);
441
442         s390_basr (buf, s390_r1, 0);
443         s390_j    (buf, 6);
444         s390_llong(buf, arg1);
445         s390_lg   (buf, s390_r1, 0, s390_r1, 4);
446         displace = (tramp - buf) / 2;
447         s390_jg   (buf, displace);
448
449         /* Flush instruction cache, since we've generated code */
450         mono_arch_flush_icache (code, buf - code);
451
452         /* Sanity check */
453         g_assert ((buf - code) <= SPECIFIC_TRAMPOLINE_SIZE);
454
455         if (code_len)
456                 *code_len = buf - code;
457         
458         return code;
459 }       
460
461 /*========================= End of Function ========================*/
462
463 /*------------------------------------------------------------------*/
464 /*                                                                  */
465 /* Name         - mono_arch_create_rgctx_lazy_fetch_trampoline      */
466 /*                                                                  */
467 /* Function     -                                                   */
468 /*                                                                  */
469 /*------------------------------------------------------------------*/
470
471 gpointer
472 mono_arch_create_rgctx_lazy_fetch_trampoline (guint32 slot, MonoTrampInfo **info, gboolean aot)
473 {
474 #ifdef MONO_ARCH_VTABLE_REG
475         guint8 *tramp;
476         guint8 *code, *buf;
477         guint8 **rgctx_null_jumps;
478         gint32 displace;
479         int tramp_size,
480             depth, 
481             index, 
482             iPatch = 0,
483             i;
484         gboolean mrgctx;
485         MonoJumpInfo *ji = NULL;
486         GSList *unwind_ops = NULL;
487
488         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
489         index = MONO_RGCTX_SLOT_INDEX (slot);
490         if (mrgctx)
491                 index += MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT / sizeof (gpointer);
492         for (depth = 0; ; ++depth) {
493                 int size = mono_class_rgctx_get_array_size (depth, mrgctx);
494
495                 if (index < size - 1)
496                         break;
497                 index -= size - 1;
498         }
499
500         tramp_size = 48 + 16 * depth;
501         if (mrgctx)
502                 tramp_size += 4;
503         else
504                 tramp_size += 12;
505
506         code = buf = mono_global_codeman_reserve (tramp_size);
507
508         unwind_ops = mono_arch_get_cie_program ();
509
510         rgctx_null_jumps = g_malloc (sizeof (guint8*) * (depth + 2));
511
512         if (mrgctx) {
513                 /* get mrgctx ptr */
514                 s390_lgr (code, s390_r1, s390_r2);
515         } else {
516                 /* load rgctx ptr from vtable */
517                 s390_lg (code, s390_r1, 0, s390_r2, G_STRUCT_OFFSET(MonoVTable, runtime_generic_context));
518                 /* is the rgctx ptr null? */
519                 s390_ltgr (code, s390_r1, s390_r1);
520                 /* if yes, jump to actual trampoline */
521                 rgctx_null_jumps [iPatch++] = code;
522                 s390_jge (code, 0);
523         }
524
525         for (i = 0; i < depth; ++i) {
526                 /* load ptr to next array */
527                 if (mrgctx && i == 0)
528                         s390_lg (code, s390_r1, 0, s390_r1, MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT);
529                 else
530                         s390_lg (code, s390_r1, 0, s390_r1, 0);
531                 s390_ltgr (code, s390_r1, s390_r1);
532                 /* if the ptr is null then jump to actual trampoline */
533                 rgctx_null_jumps [iPatch++] = code;
534                 s390_jge (code, 0);
535         }
536
537         /* fetch slot */
538         s390_lg (code, s390_r1, 0, s390_r1, (sizeof (gpointer) * (index  + 1)));
539         /* is the slot null? */
540         s390_ltgr (code, s390_r1, s390_r1);
541         /* if yes, jump to actual trampoline */
542         rgctx_null_jumps [iPatch++] = code;
543         s390_jge (code, 0);
544         /* otherwise return r1 */
545         s390_lgr (code, s390_r2, s390_r1);
546         s390_br  (code, s390_r14);
547
548         for (i = 0; i < iPatch; i++) {
549                 displace = ((uintptr_t) code - (uintptr_t) rgctx_null_jumps[i]) / 2;
550                 s390_patch_rel ((rgctx_null_jumps [i] + 2), displace);
551         }
552
553         g_free (rgctx_null_jumps);
554
555         /* move the rgctx pointer to the VTABLE register */
556         s390_lgr (code, MONO_ARCH_VTABLE_REG, s390_r2);
557
558         tramp = mono_arch_create_specific_trampoline (GUINT_TO_POINTER (slot),
559                 MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
560
561         /* jump to the actual trampoline */
562         displace = (tramp - code) / 2;
563         s390_jg (code, displace);
564
565         mono_arch_flush_icache (buf, code - buf);
566
567         g_assert (code - buf <= tramp_size);
568
569         if (info) {
570                 char *name = mono_get_rgctx_fetch_trampoline_name (slot);
571                 *info = mono_tramp_info_create (name, buf, code - buf, ji, unwind_ops);
572                 g_free (name);
573         }
574
575         return(buf);
576 #else
577         g_assert_not_reached ();
578 #endif
579         return(NULL);
580 }       
581
582 /*========================= End of Function ========================*/
583
584 /*------------------------------------------------------------------*/
585 /*                                                                  */
586 /* Name         - mono_arch_get_static_rgctx_trampoline             */
587 /*                                                                  */
588 /* Function     - Create a trampoline which sets RGCTX_REG to MRGCTX*/
589 /*                then jumps to ADDR.                               */
590 /*                                                                  */
591 /*------------------------------------------------------------------*/
592
593 gpointer
594 mono_arch_get_static_rgctx_trampoline (MonoMethod *m, 
595                                         MonoMethodRuntimeGenericContext *mrgctx, 
596                                         gpointer addr)
597 {
598         guint8 *code, *start;
599         gint32 displace;
600         int buf_len;
601
602         MonoDomain *domain = mono_domain_get ();
603
604         buf_len = 32;
605
606         start = code = mono_domain_code_reserve (domain, buf_len);
607
608         s390_basr (code, s390_r1, 0);
609         s390_j    (code, 6);
610         s390_llong(code, mrgctx);
611         s390_lg   (code, MONO_ARCH_RGCTX_REG, 0, s390_r1, 4);
612         displace = ((uintptr_t) addr - (uintptr_t) code) / 2;
613         s390_jg   (code, displace);
614         g_assert ((code - start) < buf_len);
615
616         mono_arch_flush_icache (start, code - start);
617
618         return(start);
619 }       
620
621 /*========================= End of Function ========================*/
622
623 /*------------------------------------------------------------------*/
624 /*                                                                  */
625 /* Name         - mono_arch_create_generic_class_init_trampoline    */
626 /*                                                                  */
627 /* Function     -                                                   */
628 /*                                                                  */
629 /*------------------------------------------------------------------*/
630
631 gpointer
632 mono_arch_create_generic_class_init_trampoline (MonoTrampInfo **info, gboolean aot)
633 {
634         guint8 *tramp;
635         guint8 *code, *buf;
636         static int byte_offset = -1;
637         static guint8 bitmask;
638         guint8 *jump;
639         gint32 displace;
640         int tramp_size;
641         GSList *unwind_ops = NULL;
642         MonoJumpInfo *ji = NULL;
643
644         tramp_size = 48;
645
646         code = buf = mono_global_codeman_reserve (tramp_size);
647
648         unwind_ops = mono_arch_get_cie_program ();
649
650         if (byte_offset < 0)
651                 mono_marshal_find_bitfield_offset (MonoVTable, initialized, &byte_offset, &bitmask);
652
653         s390_llgc(code, s390_r0, 0, MONO_ARCH_VTABLE_REG, byte_offset);
654         s390_nill(code, s390_r0, bitmask);
655         s390_bnzr(code, s390_r14);
656
657         tramp = mono_arch_create_specific_trampoline (NULL, MONO_TRAMPOLINE_GENERIC_CLASS_INIT,
658                 mono_get_root_domain (), NULL);
659
660         /* jump to the actual trampoline */
661         displace = (tramp - code) / 2;
662         s390_jg (code, displace);
663
664         mono_arch_flush_icache (buf, code - buf);
665
666         g_assert (code - buf <= tramp_size);
667
668         if (info)
669                 *info = mono_tramp_info_create ("generic_class_init_trampoline", buf, code - buf, ji, unwind_ops);
670
671         return(buf);
672 }
673
674 /*========================= End of Function ========================*/