* CodeGenerationOptions.cs: Made the class internal for the 1.1 profile.
[mono.git] / mono / mini / exceptions-s390.c
1 /*------------------------------------------------------------------*/
2 /*                                                                  */
3 /* Name        - exceptions-s390.c                                  */
4 /*                                                                  */
5 /* Function    - Exception support 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 MONO_CONTEXT_SET_IP(ctx,ip)                                     \
24         do {                                                            \
25                 (ctx)->uc_mcontext.gregs[14] = (unsigned long)ip;       \
26                 (ctx)->uc_mcontext.psw.addr = (unsigned long)ip;        \
27         } while (0); 
28
29 #define MONO_CONTEXT_SET_BP(ctx,bp)                                     \
30         do {                                                            \
31                 (ctx)->uc_mcontext.gregs[15] = (unsigned long)bp;       \
32                 (ctx)->uc_stack.ss_sp        = (unsigned long)bp;       \
33         } while (0); 
34
35 #define MONO_CONTEXT_GET_IP(ctx) context_get_ip ((ctx))
36 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->uc_mcontext.gregs[15]))
37
38 /* disable this for now */
39 #undef MONO_USE_EXC_TABLES
40
41 #define S390_CALLFILTER_INTREGS         S390_MINIMAL_STACK_SIZE
42 #define S390_CALLFILTER_FLTREGS         S390_CALLFILTER_INTREGS+(16*sizeof(gulong))
43 #define S390_CALLFILTER_ACCREGS         S390_CALLFILTER_FLTREGS+(16*sizeof(gdouble))
44 #define S390_CALLFILTER_SIZE            (S390_CALLFILTER_ACCREGS+(16*sizeof(gulong)))
45
46 #define S390_THROWSTACK_ACCPRM          S390_MINIMAL_STACK_SIZE
47 #define S390_THROWSTACK_FPCPRM          S390_THROWSTACK_ACCPRM+sizeof(gpointer)
48 #define S390_THROWSTACK_INTREGS         S390_THROWSTACK_FPCPRM+sizeof(gulong)
49 #define S390_THROWSTACK_FLTREGS         S390_THROWSTACK_INTREGS+(16*sizeof(gulong))
50 #define S390_THROWSTACK_ACCREGS         S390_THROWSTACK_FLTREGS+(16*sizeof(gdouble))
51 #define S390_THROWSTACK_SIZE            (S390_THROWSTACK_ACCREGS+(16*sizeof(gulong)))
52
53 /*========================= End of Defines =========================*/
54
55 /*------------------------------------------------------------------*/
56 /*                 I n c l u d e s                                  */
57 /*------------------------------------------------------------------*/
58
59 #include <config.h>
60 #include <glib.h>
61 #include <signal.h>
62 #include <string.h>
63 #include <ucontext.h>
64
65 #include <mono/arch/s390/s390-codegen.h>
66 #include <mono/metadata/appdomain.h>
67 #include <mono/metadata/tabledefs.h>
68 #include <mono/metadata/threads.h>
69 #include <mono/metadata/debug-helpers.h>
70 #include <mono/metadata/exception.h>
71 #include <mono/metadata/mono-debug.h>
72
73 #include "mini.h"
74 #include "mini-s390.h"
75
76 /*========================= End of Includes ========================*/
77
78 /*------------------------------------------------------------------*/
79 /*                 T y p e d e f s                                  */
80 /*------------------------------------------------------------------*/
81
82 typedef struct
83 {
84   void *prev;
85   void *unused[5];
86   void *regs[8];
87   void *return_address;
88 } MonoS390StackFrame;
89
90 #ifdef MONO_USE_EXC_TABLES
91
92 /*************************************/
93 /*    STACK UNWINDING STUFF          */
94 /*************************************/
95
96 /* These definitions are from unwind-dw2.c in glibc 2.2.5 */
97
98 /* For x86 */
99 #define DWARF_FRAME_REGISTERS 17
100
101 typedef struct frame_state
102 {
103   void *cfa;
104   void *eh_ptr;
105   long cfa_offset;
106   long args_size;
107   long reg_or_offset[DWARF_FRAME_REGISTERS+1];
108   unsigned short cfa_reg;
109   unsigned short retaddr_column;
110   char saved[DWARF_FRAME_REGISTERS+1];
111 } frame_state;
112
113 typedef struct frame_state * (*framesf) (void *, struct frame_state *);
114
115 #endif
116
117 /*========================= End of Typedefs ========================*/
118
119 /*------------------------------------------------------------------*/
120 /*                   P r o t o t y p e s                            */
121 /*------------------------------------------------------------------*/
122
123 gboolean mono_arch_handle_exception (void     *ctx,
124                                      gpointer obj, 
125                                      gboolean test_only);
126
127 /*========================= End of Prototypes ======================*/
128
129 /*------------------------------------------------------------------*/
130 /*                 G l o b a l   V a r i a b l e s                  */
131 /*------------------------------------------------------------------*/
132
133 #ifdef MONO_USE_EXC_TABLES
134
135 static framesf frame_state_for = NULL;
136
137 static gboolean inited = FALSE;
138
139 typedef char ** (*get_backtrace_symbols_type) (void *__const *__array, int __size);
140
141 static get_backtrace_symbols_type get_backtrace_symbols = NULL;
142
143 #endif
144
145 /*====================== End of Global Variables ===================*/
146
147 /*------------------------------------------------------------------*/
148 /*                                                                  */
149 /* Name         - context_get_ip                                    */
150 /*                                                                  */
151 /* Function     - Extract the current instruction address from the  */
152 /*                context.                                          */
153 /*                                                                  */
154 /*------------------------------------------------------------------*/
155
156 static inline gpointer 
157 context_get_ip (MonoContext *ctx) 
158 {
159         gpointer ip;
160
161         ip = (gpointer) ((gint32) (ctx->uc_mcontext.psw.addr) & 0x7fffffff);
162         return ip;
163 }
164
165 /*========================= End of Function ========================*/
166
167 #ifdef MONO_USE_EXC_TABLES
168
169 /*------------------------------------------------------------------*/
170 /*                                                                  */
171 /* Name         - init_frame_state_for                              */
172 /*                                                                  */
173 /* Function     - Load the __frame_state_for from libc.             */
174 /*                There are two versions of __frame_state_for: one  */ 
175 /*                in libgcc.a and the other in glibc.so. We need    */
176 /*                the version from glibc. For more information, see:*/
177 /*                http://gcc.gnu.org/ml/gcc/2002-08/msg00192.html   */
178 /*                                                                  */
179 /*------------------------------------------------------------------*/
180
181 static void
182 init_frame_state_for (void)
183 {
184         GModule *module;
185
186         if ((module = g_module_open ("libc.so.6", G_MODULE_BIND_LAZY))) {
187         
188                 if (!g_module_symbol (module, "__frame_state_for", (gpointer*)&frame_state_for))
189                         frame_state_for = NULL;
190
191                 if (!g_module_symbol (module, "backtrace_symbols", (gpointer*)&get_backtrace_symbols)) {
192                         get_backtrace_symbols = NULL;
193                         frame_state_for = NULL;
194                 }
195
196                 g_module_close (module);
197         }
198
199         inited = TRUE;
200 }
201
202 /*========================= End of Function ========================*/
203
204 #endif
205
206 /*------------------------------------------------------------------*/
207 /*                                                                  */
208 /* Name         - mono_arch_has_unwind_info                         */
209 /*                                                                  */
210 /* Function     - Tests if a function has a DWARF exception table   */
211 /*                that is able to restore all caller saved registers*/
212 /*                                                                  */
213 /*------------------------------------------------------------------*/
214
215 gboolean
216 mono_arch_has_unwind_info (gconstpointer addr)
217 {
218 #if 0
219         struct frame_state state_in;
220         struct frame_state *res;
221
222         if (!inited) 
223                 init_frame_state_for ();
224         
225         if (!frame_state_for)
226                 return FALSE;
227
228         g_assert (method->addr);
229
230         memset (&state_in, 0, sizeof (state_in));
231
232         /* offset 10 is just a guess, but it works for all methods tested */
233         if ((res = frame_state_for ((char *)method->addr + 10, &state_in))) {
234
235                 if (res->saved [X86_EBX] != 1 ||
236                     res->saved [X86_EDI] != 1 ||
237                     res->saved [X86_EBP] != 1 ||
238                     res->saved [X86_ESI] != 1) {
239                         return FALSE;
240                 }
241                 return TRUE;
242         } else {
243                 return FALSE;
244         }
245 #else
246         return FALSE;
247 #endif
248 }
249
250 /*========================= End of Function ========================*/
251
252 /*------------------------------------------------------------------*/
253 /*                                                                  */
254 /* Name         - s390_unwind_native_frame                          */
255 /*                                                                  */
256 /* Function     - Use the context to unwind a stack frame.          */
257 /*                                                                  */
258 /*------------------------------------------------------------------*/
259
260 static MonoJitInfo *
261 s390_unwind_native_frame (MonoDomain *domain, MonoJitTlsData *jit_tls, 
262                           struct sigcontext *ctx, struct sigcontext *new_ctx, 
263                           MonoLMF *lmf, char **trace)
264 {
265 #if 0
266         struct stack_frame *frame;
267         gpointer max_stack;
268         MonoJitInfo *ji;
269         struct frame_state state_in;
270         struct frame_state *res;
271
272         if (trace)
273                 *trace = NULL;
274
275         if (!inited) 
276                 init_frame_state_for ();
277
278         if (!frame_state_for)
279                 return FALSE;
280
281         frame = MONO_CONTEXT_GET_BP (ctx);
282
283         max_stack = lmf && lmf->method ? lmf : jit_tls->end_of_stack;
284
285         *new_ctx = *ctx;
286
287         memset (&state_in, 0, sizeof (state_in));
288
289         while ((gpointer)frame->next < (gpointer)max_stack) {
290                 gpointer ip, addr = frame->return_address;
291                 void *cfa;
292                 char *tmp, **symbols;
293
294                 if (trace) {
295                         ip = MONO_CONTEXT_GET_IP (new_ctx);
296                         symbols = get_backtrace_symbols (&ip, 1);
297                         if (*trace)
298                                 tmp = g_strdup_printf ("%s\nin (unmanaged) %s", *trace, symbols [0]);
299                         else
300                                 tmp = g_strdup_printf ("in (unmanaged) %s", symbols [0]);
301
302                         free (symbols);
303                         g_free (*trace);
304                         *trace = tmp;
305                 }
306
307                 if ((res = frame_state_for (addr, &state_in))) {        
308                         int i;
309
310                         cfa = (gint8*) (get_sigcontext_reg (new_ctx, res->cfa_reg) + res->cfa_offset);
311                         frame = (struct stack_frame *)((gint8*)cfa - 8);
312                         for (i = 0; i < DWARF_FRAME_REGISTERS + 1; i++) {
313                                 int how = res->saved[i];
314                                 long val;
315                                 g_assert ((how == 0) || (how == 1));
316                         
317                                 if (how == 1) {
318                                         val = * (long*) ((gint8*)cfa + res->reg_or_offset[i]);
319                                         set_sigcontext_reg (new_ctx, i, val);
320                                 }
321                         }
322                         new_ctx->SC_ESP = (long)cfa;
323
324                         if (res->saved [X86_EBX] == 1 &&
325                             res->saved [X86_EDI] == 1 &&
326                             res->saved [X86_EBP] == 1 &&
327                             res->saved [X86_ESI] == 1 &&
328                             (ji = mono_jit_info_table_find (domain, frame->return_address))) {
329                                 //printf ("FRAME CFA %s\n", mono_method_full_name (ji->method, TRUE));
330                                 return ji;
331                         }
332
333                 } else {
334
335                         MONO_CONTEXT_SET_IP (new_ctx, frame->return_address);
336                         frame = frame->next;
337                         MONO_CONTEXT_SET_BP (new_ctx, frame);
338
339                         /* stop if !frame or when we detect an unexpected managed frame */
340                         if (!frame || mono_jit_info_table_find (domain, frame->return_address)) {
341                                 if (trace) {
342                                         g_free (*trace);
343                                         *trace = NULL;
344                                 }
345                                 return NULL;
346                         }
347                 }
348         }
349
350         if (trace) {
351                 g_free (*trace);
352                 *trace = NULL;
353         }
354 #endif
355         return NULL;
356 }
357
358 /*========================= End of Function ========================*/
359
360 /*------------------------------------------------------------------*/
361 /*                                                                  */
362 /* Name         - arch_get_call_filter                              */
363 /*                                                                  */
364 /* Function     - Return a pointer to a method which calls an       */
365 /*                exception filter. We also use this function to    */
366 /*                call finally handlers (we pass NULL as @exc       */
367 /*                object in this case).                             */
368 /*                                                                  */
369 /*------------------------------------------------------------------*/
370
371 static gpointer
372 arch_get_call_filter (void)
373 {
374         static guint8 start [512];
375         static int inited = 0;
376         guint8 *code;
377         int alloc_size, pos, i;
378
379         if (inited)
380                 return start;
381
382         inited = 1;
383         /* call_filter (MonoContext *ctx, unsigned long eip, gpointer exc) */
384         code = start;
385
386         s390_stm (code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
387         s390_lr  (code, s390_r14, STK_BASE);
388         alloc_size = S390_ALIGN(S390_CALLFILTER_SIZE, S390_STACK_ALIGNMENT);
389         s390_ahi (code, STK_BASE, -alloc_size);
390         s390_st  (code, s390_r14, 0, STK_BASE, 0);
391
392         /*------------------------------------------------------*/
393         /* save general registers on stack                      */
394         /*------------------------------------------------------*/
395         s390_stm (code, s390_r0, s390_r13, STK_BASE, S390_CALLFILTER_INTREGS);
396
397         /*------------------------------------------------------*/
398         /* save floating point registers on stack               */
399         /*------------------------------------------------------*/
400 //      pos = S390_CALLFILTER_FLTREGS;
401 //      for (i = 0; i < 16; ++i) {
402 //              s390_std (code, i, 0, STK_BASE, pos);
403 //              pos += sizeof (gdouble);
404 //      }
405
406         /*------------------------------------------------------*/
407         /* save access registers on stack                       */
408         /*------------------------------------------------------*/
409 //      s390_stam (code, s390_a0, s390_a15, STK_BASE, S390_CALLFILTER_ACCREGS);
410
411         /*------------------------------------------------------*/
412         /* Get A(Context)                                       */
413         /*------------------------------------------------------*/
414         s390_lr   (code, s390_r13, s390_r2);
415
416         /*------------------------------------------------------*/
417         /* Get A(Handler Entry Point)                           */
418         /*------------------------------------------------------*/
419         s390_lr   (code, s390_r0, s390_r3);
420
421         /*------------------------------------------------------*/
422         /* Set parameter register with Exception                */
423         /*------------------------------------------------------*/
424         s390_lr   (code, s390_r2, s390_r4);
425
426         /*------------------------------------------------------*/
427         /* Load all registers with values from the context      */
428         /*------------------------------------------------------*/
429         s390_lm   (code, s390_r3, s390_r12, s390_r13, G_STRUCT_OFFSET(MonoContext, uc_mcontext.gregs[3]));
430         pos = G_STRUCT_OFFSET(MonoContext, uc_mcontext.fpregs.fprs[0]);
431         for (i = 0; i < 16; ++i) {
432                 s390_ld  (code, i, 0, s390_r13, pos);
433                 pos += sizeof(gdouble);
434         }
435         
436         /*------------------------------------------------------*/
437         /* Point at the copied stack frame and call the filter  */
438         /*------------------------------------------------------*/
439         s390_lr   (code, s390_r1, s390_r0);
440         s390_basr (code, s390_r14, s390_r1);
441
442         /*------------------------------------------------------*/
443         /* Save return value                                    */
444         /*------------------------------------------------------*/
445         s390_lr   (code, s390_r14, s390_r2);
446
447         /*------------------------------------------------------*/
448         /* Restore all the regs from the stack                  */
449         /*------------------------------------------------------*/
450         s390_lm (code, s390_r0, s390_r13, STK_BASE, S390_CALLFILTER_INTREGS);
451 //      pos = S390_CALLFILTER_FLTREGS;
452 //      for (i = 0; i < 16; ++i) {
453 //              s390_ld (code, i, 0, STK_BASE, pos);
454 //              pos += sizeof (gdouble);
455 //      }
456
457         s390_lr   (code, s390_r2, s390_r14);
458 //      s390_lam  (code, s390_a0, s390_a15, STK_BASE, S390_CALLFILTER_ACCREGS);
459         s390_ahi  (code, s390_r15, alloc_size);
460         s390_lm   (code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
461         s390_br   (code, s390_r14);
462
463         g_assert ((code - start) < sizeof(start));
464         return start;
465 }
466
467 /*========================= End of Function ========================*/
468
469 /*------------------------------------------------------------------*/
470 /*                                                                  */
471 /* Name         - throw_exception.                                  */
472 /*                                                                  */
473 /* Function     - Raise an exception based on the parameters passed.*/
474 /*                                                                  */
475 /*------------------------------------------------------------------*/
476
477 static void
478 throw_exception (MonoObject *exc, unsigned long ip, unsigned long sp, 
479                  gulong *int_regs, gdouble *fp_regs, gulong *acc_regs, guint fpc)
480 {
481         static void (*restore_context) (MonoContext *);
482         MonoContext ctx;
483         int iReg;
484         
485         memset(&ctx, 0, sizeof(ctx));
486
487         getcontext(&ctx);
488
489         /* adjust eip so that it point into the call instruction */
490         ip -= 6;
491
492         for (iReg = 0; iReg < 16; iReg++) {
493                 ctx.uc_mcontext.gregs[iReg]         = int_regs[iReg];
494                 ctx.uc_mcontext.fpregs.fprs[iReg].d = fp_regs[iReg];
495                 ctx.uc_mcontext.aregs[iReg]         = acc_regs[iReg];
496         }
497
498         ctx.uc_mcontext.fpregs.fpc = fpc;
499
500         MONO_CONTEXT_SET_BP (&ctx, sp);
501         MONO_CONTEXT_SET_IP (&ctx, ip);
502         
503         mono_arch_handle_exception (&ctx, exc, FALSE);
504         setcontext(&ctx);
505
506         g_assert_not_reached ();
507 }
508
509 /*========================= End of Function ========================*/
510
511 /*------------------------------------------------------------------*/
512 /*                                                                  */
513 /* Name         - arch_get_throw_exception_generic                  */
514 /*                                                                  */
515 /* Function     - Return a function pointer which can be used to    */
516 /*                raise exceptions. The returned function has the   */
517 /*                following signature:                              */
518 /*                void (*func) (MonoException *exc); or,            */
519 /*                void (*func) (char *exc_name);                    */
520 /*                                                                  */
521 /*------------------------------------------------------------------*/
522
523 static gpointer 
524 mono_arch_get_throw_exception_generic (guint8 *start, int size, int by_name)
525 {
526         guint8 *code;
527         int alloc_size, pos, i, offset;
528
529         code = start;
530
531         s390_stm (code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
532         alloc_size = S390_ALIGN(S390_THROWSTACK_SIZE, S390_STACK_ALIGNMENT);
533         s390_lr   (code, s390_r14, STK_BASE);
534         s390_ahi  (code, STK_BASE, -alloc_size);
535         s390_st   (code, s390_r14, 0, STK_BASE, 0);
536         if (by_name) {
537                 s390_lr   (code, s390_r4, s390_r2);
538                 s390_bras (code, s390_r13, 6);
539                 s390_word (code, mono_defaults.corlib);
540                 s390_word (code, "System");
541                 s390_l    (code, s390_r2, 0, s390_r13, 0);
542                 s390_l    (code, s390_r3, 0, s390_r13, 4);
543                 offset = (guint32) S390_RELATIVE(mono_exception_from_name, code);
544                 s390_brasl(code, s390_r14, offset);
545         }
546         /*------------------------------------------------------*/
547         /* save the general registers on the stack              */
548         /*------------------------------------------------------*/
549         s390_stm (code, s390_r0, s390_r13, STK_BASE, S390_THROWSTACK_INTREGS);
550
551         s390_lr  (code, s390_r1, STK_BASE);
552         s390_ahi (code, s390_r1, alloc_size);
553         /*------------------------------------------------------*/
554         /* save the return address in the parameter register    */
555         /*------------------------------------------------------*/
556         s390_l   (code, s390_r3, 0, s390_r1, S390_RET_ADDR_OFFSET);
557
558         /*------------------------------------------------------*/
559         /* save the floating point registers                    */
560         /*------------------------------------------------------*/
561         pos = S390_THROWSTACK_FLTREGS;
562         for (i = 0; i < 16; ++i) {
563                 s390_std (code, i, 0,STK_BASE, pos);
564                 pos += sizeof (gdouble);
565         }
566         /*------------------------------------------------------*/
567         /* save the access registers                            */
568         /*------------------------------------------------------*/
569         s390_stam (code, s390_r0, s390_r15, STK_BASE, S390_THROWSTACK_ACCREGS);
570
571         /*------------------------------------------------------*/
572         /* call throw_exception (exc, ip, sp, gr, fr, ar)       */
573         /* exc is already in place in r2                        */
574         /*------------------------------------------------------*/
575         s390_lr   (code, s390_r4, s390_r1);        /* caller sp */
576         /*------------------------------------------------------*/
577         /* pointer to the saved int regs                        */
578         /*------------------------------------------------------*/
579         s390_la   (code, s390_r5, 0, STK_BASE, S390_THROWSTACK_INTREGS);
580         s390_la   (code, s390_r6, 0, STK_BASE, S390_THROWSTACK_FLTREGS);
581         s390_la   (code, s390_r7, 0, STK_BASE, S390_THROWSTACK_ACCREGS);
582         s390_st   (code, s390_r7, 0, STK_BASE, S390_THROWSTACK_ACCPRM);
583         s390_stfpc(code, STK_BASE, S390_THROWSTACK_FPCPRM);
584         offset = (guint32) S390_RELATIVE(throw_exception, code);
585         s390_brasl(code, s390_r14, offset);
586         /* we should never reach this breakpoint */
587         s390_break (code);
588         g_assert ((code - start) < size);
589         return start;
590 }
591
592 /*========================= End of Function ========================*/
593
594 /*------------------------------------------------------------------*/
595 /*                                                                  */
596 /* Name         - arch_get_throw_exception                          */
597 /*                                                                  */
598 /* Function     - Return a function pointer which can be used to    */
599 /*                raise exceptions. The returned function has the   */
600 /*                following signature:                              */
601 /*                void (*func) (MonoException *exc);                */
602 /*                                                                  */
603 /*------------------------------------------------------------------*/
604
605 gpointer 
606 mono_arch_get_throw_exception (void)
607 {
608         static guint8 start [256];
609         static int inited = 0;
610
611         if (inited)
612                 return start;
613         mono_arch_get_throw_exception_generic (start, sizeof (start), FALSE);
614         inited = 1;
615         return start;
616 }
617
618 /*========================= End of Function ========================*/
619
620 /*------------------------------------------------------------------*/
621 /*                                                                  */
622 /* Name         - arch_get_throw_exception_by_name                  */
623 /*                                                                  */
624 /* Function     - Return a function pointer which can be used to    */
625 /*                raise corlib exceptions. The return function has  */
626 /*                the following signature:                          */
627 /*                void (*func) (char *exc_name);                    */
628 /*                                                                  */
629 /*------------------------------------------------------------------*/
630
631 gpointer 
632 mono_arch_get_throw_exception_by_name (void)
633 {
634         static guint8 start [160];
635         static int inited = 0;
636
637         if (inited)
638                 return start;
639         mono_arch_get_throw_exception_generic (start, sizeof (start), TRUE);
640         inited = 1;
641         return start;
642 }       
643
644 /*========================= End of Function ========================*/
645
646 /*------------------------------------------------------------------*/
647 /*                                                                  */
648 /* Name         - glist_to_array                                    */
649 /*                                                                  */
650 /* Function     - Convert a list to a mono array.                   */
651 /*                                                                  */
652 /*------------------------------------------------------------------*/
653
654 static MonoArray *
655 glist_to_array (GList *list) 
656 {
657         MonoDomain *domain = mono_domain_get ();
658         MonoArray *res;
659         int len, i;
660
661         if (!list)
662                 return NULL;
663
664         len = g_list_length (list);
665         res = mono_array_new (domain, mono_defaults.int_class, len);
666
667         for (i = 0; list; list = list->next, i++)
668                 mono_array_set (res, gpointer, i, list->data);
669
670         return res;
671 }
672
673 /*========================= End of Function ========================*/
674
675 /*------------------------------------------------------------------*/
676 /*                                                                  */
677 /* Name         - mono_arch_find_jit_info                           */
678 /*                                                                  */
679 /* Function     - This function is used to gather informatoin from  */
680 /*                @ctx. It returns the MonoJitInfo of the corres-   */
681 /*                ponding function, unwinds one stack frame and     */
682 /*                stores the resulting context into @new_ctx. It    */
683 /*                also stores a string describing the stack location*/
684 /*                into @trace (if not NULL), and modifies the @lmf  */
685 /*                if necessary. @native_offset returns the IP off-  */
686 /*                set from the start of the function or -1 if that  */
687 /*                informatoin is not available.                     */
688 /*                                                                  */
689 /*------------------------------------------------------------------*/
690
691 MonoJitInfo *
692 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, 
693                          MonoJitInfo *res, MonoJitInfo *prev_ji, MonoContext *ctx, 
694                          MonoContext *new_ctx, char **trace, MonoLMF **lmf, 
695                          int *native_offset, gboolean *managed)
696 {
697         MonoJitInfo *ji;
698         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
699         unsigned long *ptr;
700         char *p;
701         MonoS390StackFrame *sframe;
702
703         if (prev_ji && 
704             (ip > prev_ji->code_start && 
705             ((guint8 *) ip < ((guint8 *) prev_ji->code_start) + prev_ji->code_size)))
706                 ji = prev_ji;
707         else
708                 ji = mono_jit_info_table_find (domain, ip);
709
710         if (trace)
711                 *trace = NULL;
712
713         if (native_offset)
714                 *native_offset = -1;
715
716         if (managed)
717                 *managed = FALSE;
718
719         if (ji != NULL) {
720                 char *source_location, *tmpaddr, *fname;
721                 gint32 address, iloffset;
722                 int offset;
723
724                 *new_ctx = *ctx;
725 //              memcpy(new_ctx, ctx, sizeof(*new_ctx));
726
727                 if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
728                         /* remove any unused lmf */
729                         *lmf = (*lmf)->previous_lmf;
730                 }
731
732                 address = (char *)ip - (char *)ji->code_start;
733
734                 if (native_offset)
735                         *native_offset = address;
736
737                 if (managed)
738                         if (!ji->method->wrapper_type)
739                                 *managed = TRUE;
740
741                 if (trace) {
742                         source_location = mono_debug_source_location_from_address (ji->method, address, NULL, domain);
743                         iloffset = mono_debug_il_offset_from_address (ji->method, address, domain);
744
745                         if (iloffset < 0)
746                                 tmpaddr = g_strdup_printf ("<0x%08x>", address);
747                         else
748                                 tmpaddr = g_strdup_printf ("[0x%08x]", iloffset);
749                 
750                         fname = mono_method_full_name (ji->method, TRUE);
751
752                         if (source_location)
753                                 *trace = g_strdup_printf ("in %s (at %s) %s", tmpaddr, source_location, fname);
754                         else
755                                 *trace = g_strdup_printf ("in %s %s", tmpaddr, fname);
756
757                         g_free (fname);
758                         g_free (source_location);
759                         g_free (tmpaddr);
760                 }
761                 sframe = (MonoS390StackFrame *) MONO_CONTEXT_GET_BP (ctx);
762                 MONO_CONTEXT_SET_BP (new_ctx, sframe->prev);
763                 sframe = (MonoS390StackFrame *) sframe->prev;
764                 MONO_CONTEXT_SET_IP (new_ctx, sframe->return_address);
765                 memcpy (&new_ctx->uc_mcontext.gregs[6], sframe->regs, (8*sizeof(gint32)));
766                 *res = *ji;
767                 return res;
768 #ifdef MONO_USE_EXC_TABLES
769         } else if ((ji = s390_unwind_native_frame (domain, jit_tls, ctx, new_ctx, *lmf, trace))) {
770                 *res = *ji;
771                 return res;
772 #endif
773         } else if (*lmf) {
774                 
775                 *new_ctx = *ctx;
776
777                 if (!(*lmf)->method)
778                         return (gpointer)-1;
779
780                 if (trace)
781                         *trace = g_strdup_printf ("in (unmanaged) %s", mono_method_full_name ((*lmf)->method, TRUE));
782                 
783                 if ((ji = mono_jit_info_table_find (domain, (gpointer)(*lmf)->eip))) {
784                         *res = *ji;
785                 } else {
786                         memset (res, 0, sizeof (MonoJitInfo));
787                         res->method = (*lmf)->method;
788                 }
789
790 /*
791                 MONO_CONTEXT_SET_BP (ctx, (*lmf)->ebp);
792                 MONO_CONTEXT_SET_IP (ctx, (*lmf)->eip);
793 */
794                 memcpy(new_ctx->uc_mcontext.gregs, (*lmf)->gregs, sizeof((*lmf)->gregs));
795                 memcpy(new_ctx->uc_mcontext.fpregs.fprs, (*lmf)->fregs, sizeof((*lmf)->fregs));
796
797                 MONO_CONTEXT_SET_BP (new_ctx, (*lmf)->ebp);
798                 MONO_CONTEXT_SET_IP (new_ctx, (*lmf)->eip);
799                 *lmf = (*lmf)->previous_lmf;
800
801                 return res;
802                 
803         }
804
805         return NULL;
806 }
807
808 /*========================= End of Function ========================*/
809
810 /*------------------------------------------------------------------*/
811 /*                                                                  */
812 /* Name         - ves_icall_get_trace                               */
813 /*                                                                  */
814 /* Function     -                                                   */
815 /*                                                                  */
816 /*------------------------------------------------------------------*/
817
818 MonoArray *
819 ves_icall_get_trace (MonoException *exc, gint32 skip, MonoBoolean need_file_info)
820 {
821         MonoDomain *domain = mono_domain_get ();
822         MonoArray *res;
823         MonoArray *ta = exc->trace_ips;
824         int i, len;
825         
826         if (ta == NULL) {
827                 return mono_array_new (domain, mono_defaults.stack_frame_class, 0);
828         }
829
830         len = mono_array_length (ta);
831
832         res = mono_array_new (domain, mono_defaults.stack_frame_class, 
833                               len > skip ? len - skip : 0);
834
835         for (i = skip; i < len; i++) {
836                 MonoJitInfo *ji;
837                 MonoStackFrame *sf = (MonoStackFrame *)mono_object_new (domain, mono_defaults.stack_frame_class);
838                 gpointer ip = mono_array_get (ta, gpointer, i);
839
840                 ji = mono_jit_info_table_find (domain, ip);
841                 if (ji == NULL) {
842                         mono_array_set (res, gpointer, i, sf);
843                         continue;
844                 }
845
846                 sf->method = mono_method_get_object (domain, ji->method, NULL);
847                 sf->native_offset = (char *)ip - (char *)ji->code_start;
848
849                 sf->il_offset = mono_debug_il_offset_from_address (ji->method, sf->native_offset, domain);
850
851                 if (need_file_info) {
852                         gchar *filename;
853                         
854                         filename = mono_debug_source_location_from_address (ji->method, sf->native_offset, &sf->line, domain);
855
856                         sf->filename = filename? mono_string_new (domain, filename): NULL;
857                         sf->column = 0;
858
859                         g_free (filename);
860                 }
861
862                 mono_array_set (res, gpointer, i, sf);
863         }
864
865         return res;
866 }
867
868 /*========================= End of Function ========================*/
869
870 /*------------------------------------------------------------------*/
871 /*                                                                  */
872 /* Name         - mono_jit_walk_stack                               */
873 /*                                                                  */
874 /* Function     -                                                   */
875 /*                                                                  */
876 /*------------------------------------------------------------------*/
877
878 void
879 mono_jit_walk_stack (MonoStackWalk func, gpointer user_data) {
880         MonoDomain *domain = mono_domain_get ();
881         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
882         MonoLMF *lmf = jit_tls->lmf;
883         MonoJitInfo *ji, rji;
884         gint native_offset, il_offset;
885         gboolean managed;
886         MonoContext ctx, new_ctx;
887
888         MONO_CONTEXT_SET_IP (&ctx, __builtin_return_address (0));
889         MONO_CONTEXT_SET_BP (&ctx, __builtin_frame_address (1));
890
891         while (MONO_CONTEXT_GET_BP (&ctx) < jit_tls->end_of_stack) {
892                 
893                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, NULL, 
894                                               &ctx, &new_ctx, NULL, &lmf, 
895                                               &native_offset, &managed);
896                 g_assert (ji);
897
898                 if (ji == (gpointer)-1)
899                         return;
900
901                 il_offset = mono_debug_il_offset_from_address (ji->method, native_offset, domain);
902
903                 if (func (ji->method, native_offset, il_offset, managed, user_data))
904                         return;
905                 
906                 ctx = new_ctx;
907         }
908 }
909
910 /*========================= End of Function ========================*/
911
912 /*------------------------------------------------------------------*/
913 /*                                                                  */
914 /* Name         - ves_icall_get_frame_info                          */
915 /*                                                                  */
916 /* Function     -                                                   */
917 /*                                                                  */
918 /*------------------------------------------------------------------*/
919
920 MonoBoolean
921 ves_icall_get_frame_info (gint32 skip, MonoBoolean need_file_info, 
922                           MonoReflectionMethod **method, 
923                           gint32 *iloffset, gint32 *native_offset,
924                           MonoString **file, gint32 *line, gint32 *column)
925 {
926         MonoDomain *domain = mono_domain_get ();
927         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
928         MonoLMF *lmf = jit_tls->lmf;
929         MonoJitInfo *ji, rji;
930         MonoContext ctx, new_ctx;
931
932         MONO_CONTEXT_SET_IP (&ctx, ves_icall_get_frame_info);
933         MONO_CONTEXT_SET_BP (&ctx, __builtin_frame_address (0));
934
935         skip++;
936
937         do {
938                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, NULL, 
939                                               &ctx, &new_ctx, NULL, &lmf, 
940                                               native_offset, NULL);
941
942                 ctx = new_ctx;
943                 
944                 if (!ji || ji == (gpointer)-1 || MONO_CONTEXT_GET_BP (&ctx) >= jit_tls->end_of_stack)
945                         return FALSE;
946
947                 /* skip all wrappers ??*/
948                 if (ji->method->wrapper_type == MONO_WRAPPER_RUNTIME_INVOKE ||
949                     ji->method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK ||
950                     ji->method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE)
951                         continue;
952
953                 skip--;
954
955         } while (skip >= 0);
956
957         *method = mono_method_get_object (domain, ji->method, NULL);
958         *iloffset = mono_debug_il_offset_from_address (ji->method, *native_offset, domain);
959
960         if (need_file_info) {
961                 gchar *filename;
962
963                 filename = mono_debug_source_location_from_address (ji->method, *native_offset, line, domain);
964
965                 *file = filename? mono_string_new (domain, filename): NULL;
966                 *column = 0;
967
968                 g_free (filename);
969         }
970
971         return TRUE;
972 }
973
974 /*========================= End of Function ========================*/
975
976 /*------------------------------------------------------------------*/
977 /*                                                                  */
978 /* Name         - mono_arch_handle_exception                        */
979 /*                                                                  */
980 /* Function     - Handle an exception raised by the JIT code.       */
981 /*                                                                  */
982 /* Parameters   - ctx       - Saved processor state                 */
983 /*                obj       - The exception object                  */
984 /*                test_only - Only test if the exception is caught, */
985 /*                            but don't call handlers               */
986 /*                                                                  */
987 /*------------------------------------------------------------------*/
988
989 gboolean
990 mono_arch_handle_exception (void *uc, gpointer obj, gboolean test_only)
991 {
992         MonoContext     *ctx = uc;
993         MonoDomain      *domain = mono_domain_get ();
994         MonoJitInfo     *ji, rji;
995         static int      (*call_filter) (MonoContext *, gpointer, gpointer) = NULL;
996         MonoJitTlsData  *jit_tls = TlsGetValue (mono_jit_tls_id);
997         MonoLMF         *lmf = jit_tls->lmf;            
998         GList           *trace_ips = NULL;
999         MonoException   *mono_ex;
1000
1001         g_assert (ctx != NULL);
1002         memset(&rji, 0, sizeof(rji));
1003         if (!obj) {
1004                 MonoException *ex = mono_get_exception_null_reference ();
1005                 ex->message = mono_string_new (domain, 
1006                         "Object reference not set to an instance of an object");
1007                 obj = (MonoObject *)ex;
1008         } 
1009
1010         if (mono_object_isinst (obj, mono_defaults.exception_class)) {
1011                 mono_ex = (MonoException*)obj;
1012                 mono_ex->stack_trace = NULL;
1013         } else {
1014                 mono_ex = NULL;
1015         }
1016
1017
1018         if (!call_filter)
1019                 call_filter = arch_get_call_filter ();
1020
1021         g_assert (jit_tls->end_of_stack);
1022         g_assert (jit_tls->abort_func);
1023
1024         if (!test_only) {
1025                 MonoContext ctx_cp = *ctx;
1026                 if (mono_jit_trace_calls != NULL)
1027                         g_print ("EXCEPTION handling: %s\n", mono_object_class (obj)->name);
1028                 if (!mono_arch_handle_exception (&ctx_cp, obj, TRUE)) {
1029                         if (mono_break_on_exc)
1030                                 G_BREAKPOINT ();
1031                         mono_unhandled_exception (obj);
1032                 }
1033         }
1034
1035         while (1) {
1036                 MonoContext new_ctx;
1037                 char *trace = NULL;
1038                 
1039                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, &rji, ctx, &new_ctx, 
1040                                               test_only ? &trace : NULL, &lmf, NULL, NULL);
1041                 if (!ji) {
1042                         g_warning ("Exception inside function without unwind info");
1043                         g_assert_not_reached ();
1044                 }
1045
1046                 if (ji != (gpointer)-1) {
1047                         
1048                         if (test_only && ji->method->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE && mono_ex) {
1049                                 char *tmp, *strace;
1050
1051                                 trace_ips = g_list_append (trace_ips, MONO_CONTEXT_GET_IP (ctx));
1052
1053                                 if (!mono_ex->stack_trace)
1054                                         strace = g_strdup ("");
1055                                 else
1056                                         strace = mono_string_to_utf8 (mono_ex->stack_trace);
1057                         
1058                                 tmp = g_strdup_printf ("%s%s\n", strace, trace);
1059                                 g_free (strace);
1060
1061                                 mono_ex->stack_trace = mono_string_new (domain, tmp);
1062
1063                                 g_free (tmp);
1064                         }
1065
1066                         if (ji->num_clauses) {
1067                                 int i;
1068                                 
1069                                 g_assert (ji->clauses);
1070                         
1071                                 for (i = 0; i < ji->num_clauses; i++) {
1072                                         MonoJitExceptionInfo *ei = &ji->clauses [i];
1073
1074                                         if (ei->try_start < MONO_CONTEXT_GET_IP (ctx) && 
1075                                             MONO_CONTEXT_GET_IP (ctx) <= ei->try_end) { 
1076                                                 /* catch block */
1077                                                 if ((ei->flags == MONO_EXCEPTION_CLAUSE_NONE && 
1078                                                      mono_object_isinst (obj, mono_class_get (ji->method->klass->image, ei->data.token))) ||
1079                                                     ((ei->flags == MONO_EXCEPTION_CLAUSE_FILTER &&
1080                                                       call_filter (ctx, ei->data.filter, obj)))) {
1081                                                         if (test_only) {
1082                                                                 if (mono_ex)
1083                                                                         mono_ex->trace_ips = glist_to_array (trace_ips);
1084                                                                 g_list_free (trace_ips);
1085                                                                 g_free (trace);
1086                                                                 return TRUE;
1087                                                         }
1088 //                                                      memcpy(ctx, &new_ctx, sizeof(new_ctx));
1089                                                         if (mono_jit_trace_calls != NULL)
1090                                                                 g_print ("EXCEPTION: catch found at clause %d of %s - caught at %p with sp %p\n", 
1091                                                                          i, mono_method_full_name (ji->method, TRUE),
1092                                                                          ei->handler_start,
1093                                                                          MONO_CONTEXT_GET_BP(ctx));
1094                                                         MONO_CONTEXT_SET_IP (ctx, ei->handler_start);
1095                                                         *((gpointer *)((char *)MONO_CONTEXT_GET_BP (ctx) + ji->exvar_offset)) = obj;
1096                                                         jit_tls->lmf = lmf;
1097                                                         g_free (trace);
1098                                                         return 0;
1099                                                 }
1100                                                 if (!test_only && ei->try_start <= MONO_CONTEXT_GET_IP (ctx) && 
1101                                                     MONO_CONTEXT_GET_IP (ctx) < ei->try_end &&
1102                                                     (ei->flags & MONO_EXCEPTION_CLAUSE_FINALLY)) {
1103                                                         if (mono_jit_trace_calls != NULL)
1104                                                                 g_print ("EXCEPTION: finally clause %d of %s handled at: %p using sp: %p\n", 
1105                                                                 i, mono_method_full_name (ji->method, TRUE),
1106                                                                 ei->handler_start,
1107                                                                 MONO_CONTEXT_GET_BP(ctx));
1108                                                         call_filter (ctx, ei->handler_start, NULL);
1109                                                 }
1110                                                 
1111                                         }
1112                                 }
1113                         }
1114                 }
1115
1116                 g_free (trace);
1117                         
1118                 *ctx = new_ctx;
1119
1120                 if ((ji == (gpointer)-1) || MONO_CONTEXT_GET_BP (ctx) >= jit_tls->end_of_stack) {
1121                         if (!test_only) {
1122                                 jit_tls->lmf = lmf;
1123                                 jit_tls->abort_func (obj);
1124                                 g_assert_not_reached ();
1125                         } else {
1126                                 if (mono_ex)
1127                                         mono_ex->trace_ips = glist_to_array (trace_ips);
1128                                 g_list_free (trace_ips);
1129                                 return FALSE;
1130                         }
1131                 }
1132         }
1133
1134         g_assert_not_reached ();
1135 }
1136
1137 /*========================= End of Function ========================*/
1138
1139 /*------------------------------------------------------------------*/
1140 /*                                                                  */
1141 /* Name         - mono_arch_ip_from_context                         */
1142 /*                                                                  */
1143 /* Function     - Return the instruction pointer from the context.  */
1144 /*                                                                  */
1145 /* Parameters   - sigctx    - Saved processor state                 */
1146 /*                                                                  */
1147 /*------------------------------------------------------------------*/
1148
1149 gpointer
1150 mono_arch_ip_from_context (void *sigctx)
1151 {
1152         return context_get_ip (sigctx);
1153 }
1154