0b4c920e084c37a9d42df6fd36b53e226eb638cb
[mono.git] / mono / mini / exceptions-s390x.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/s390x/s390x-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-s390x.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_stmg(code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
387         s390_lgr (code, s390_r14, STK_BASE);
388         alloc_size = S390_ALIGN(S390_CALLFILTER_SIZE, S390_STACK_ALIGNMENT);
389         s390_aghi(code, STK_BASE, -alloc_size);
390         s390_stg (code, s390_r14, 0, STK_BASE, 0);
391
392         /*------------------------------------------------------*/
393         /* save general registers on stack                      */
394         /*------------------------------------------------------*/
395         s390_stmg(code, s390_r0, s390_r13, STK_BASE, S390_CALLFILTER_INTREGS);
396
397         /*------------------------------------------------------*/
398         /* Get A(Context)                                       */
399         /*------------------------------------------------------*/
400         s390_lgr  (code, s390_r13, s390_r2);
401
402         /*------------------------------------------------------*/
403         /* Get A(Handler Entry Point)                           */
404         /*------------------------------------------------------*/
405         s390_lgr  (code, s390_r0, s390_r3);
406
407         /*------------------------------------------------------*/
408         /* Set parameter register with Exception                */
409         /*------------------------------------------------------*/
410         s390_lgr  (code, s390_r2, s390_r4);
411
412         /*------------------------------------------------------*/
413         /* Load all registers with values from the context      */
414         /*------------------------------------------------------*/
415         s390_lmg  (code, s390_r3, s390_r12, s390_r13, G_STRUCT_OFFSET(MonoContext, uc_mcontext.gregs[3]));
416         pos = G_STRUCT_OFFSET(MonoContext, uc_mcontext.fpregs.fprs[0]);
417         for (i = 0; i < 16; ++i) {
418                 s390_ld  (code, i, 0, s390_r13, pos);
419                 pos += sizeof(gdouble);
420         }
421         
422         /*------------------------------------------------------*/
423         /* Point at the copied stack frame and call the filter  */
424         /*------------------------------------------------------*/
425         s390_lgr  (code, s390_r1, s390_r0);
426         s390_basr (code, s390_r14, s390_r1);
427
428         /*------------------------------------------------------*/
429         /* Save return value                                    */
430         /*------------------------------------------------------*/
431         s390_lgr  (code, s390_r14, s390_r2);
432
433         /*------------------------------------------------------*/
434         /* Restore all the regs from the stack                  */
435         /*------------------------------------------------------*/
436         s390_lmg  (code, s390_r0, s390_r13, STK_BASE, S390_CALLFILTER_INTREGS);
437
438         s390_lgr  (code, s390_r2, s390_r14);
439         s390_aghi (code, s390_r15, alloc_size);
440         s390_lmg  (code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
441         s390_br   (code, s390_r14);
442
443         g_assert ((code - start) < sizeof(start));
444         return start;
445 }
446
447 /*========================= End of Function ========================*/
448
449 /*------------------------------------------------------------------*/
450 /*                                                                  */
451 /* Name         - throw_exception.                                  */
452 /*                                                                  */
453 /* Function     - Raise an exception based on the parameters passed.*/
454 /*                                                                  */
455 /*------------------------------------------------------------------*/
456
457 static void
458 throw_exception (MonoObject *exc, unsigned long ip, unsigned long sp, 
459                  gulong *int_regs, gdouble *fp_regs, gulong *acc_regs, guint fpc)
460 {
461         static void (*restore_context) (MonoContext *);
462         MonoContext ctx;
463         int iReg;
464         
465         memset(&ctx, 0, sizeof(ctx));
466
467         getcontext(&ctx);
468
469         /* adjust eip so that it point into the call instruction */
470         ip -= 6;
471
472         for (iReg = 0; iReg < 16; iReg++) {
473                 ctx.uc_mcontext.gregs[iReg]         = int_regs[iReg];
474                 ctx.uc_mcontext.fpregs.fprs[iReg].d = fp_regs[iReg];
475                 ctx.uc_mcontext.aregs[iReg]         = acc_regs[iReg];
476         }
477
478         ctx.uc_mcontext.fpregs.fpc = fpc;
479
480         MONO_CONTEXT_SET_BP (&ctx, sp);
481         MONO_CONTEXT_SET_IP (&ctx, ip);
482         
483         mono_arch_handle_exception (&ctx, exc, FALSE);
484         setcontext(&ctx);
485
486         g_assert_not_reached ();
487 }
488
489 /*========================= End of Function ========================*/
490
491 /*------------------------------------------------------------------*/
492 /*                                                                  */
493 /* Name         - arch_get_throw_exception_generic                  */
494 /*                                                                  */
495 /* Function     - Return a function pointer which can be used to    */
496 /*                raise exceptions. The returned function has the   */
497 /*                following signature:                              */
498 /*                void (*func) (MonoException *exc); or,            */
499 /*                void (*func) (char *exc_name);                    */
500 /*                                                                  */
501 /*------------------------------------------------------------------*/
502
503 static gpointer 
504 mono_arch_get_throw_exception_generic (guint8 *start, int size, int by_name)
505 {
506         guint8 *code;
507         int alloc_size, pos, i, offset;
508
509         code = start;
510
511         s390_stmg(code, s390_r6, s390_r14, STK_BASE, S390_REG_SAVE_OFFSET);
512         alloc_size = S390_ALIGN(S390_THROWSTACK_SIZE, S390_STACK_ALIGNMENT);
513         s390_lgr  (code, s390_r14, STK_BASE);
514         s390_aghi (code, STK_BASE, -alloc_size);
515         s390_stg  (code, s390_r14, 0, STK_BASE, 0);
516         if (by_name) {
517                 s390_lgr  (code, s390_r4, s390_r2);
518                 s390_bras (code, s390_r13, 6);
519                 s390_llong(code, mono_defaults.corlib);
520                 s390_llong(code, "System");
521                 s390_lg   (code, s390_r2, 0, s390_r13, 0);
522                 s390_lg   (code, s390_r3, 0, s390_r13, 4);
523                 offset = (guint32) S390_RELATIVE(mono_exception_from_name, code);
524                 s390_brasl(code, s390_r14, offset);
525         }
526         /*------------------------------------------------------*/
527         /* save the general registers on the stack              */
528         /*------------------------------------------------------*/
529         s390_stmg(code, s390_r0, s390_r13, STK_BASE, S390_THROWSTACK_INTREGS);
530
531         s390_lgr (code, s390_r1, STK_BASE);
532         s390_aghi(code, s390_r1, alloc_size);
533         /*------------------------------------------------------*/
534         /* save the return address in the parameter register    */
535         /*------------------------------------------------------*/
536         s390_lg  (code, s390_r3, 0, s390_r1, S390_RET_ADDR_OFFSET);
537
538         /*------------------------------------------------------*/
539         /* save the floating point registers                    */
540         /*------------------------------------------------------*/
541         pos = S390_THROWSTACK_FLTREGS;
542         for (i = 0; i < 16; ++i) {
543                 s390_std (code, i, 0,STK_BASE, pos);
544                 pos += sizeof (gdouble);
545         }
546         /*------------------------------------------------------*/
547         /* save the access registers                            */
548         /*------------------------------------------------------*/
549         s390_stam (code, s390_r0, s390_r15, STK_BASE, S390_THROWSTACK_ACCREGS);
550
551         /*------------------------------------------------------*/
552         /* call throw_exception (exc, ip, sp, gr, fr, ar)       */
553         /* exc is already in place in r2                        */
554         /*------------------------------------------------------*/
555         s390_lgr  (code, s390_r4, s390_r1);        /* caller sp */
556         /*------------------------------------------------------*/
557         /* pointer to the saved int regs                        */
558         /*------------------------------------------------------*/
559         s390_la   (code, s390_r5, 0, STK_BASE, S390_THROWSTACK_INTREGS);
560         s390_la   (code, s390_r6, 0, STK_BASE, S390_THROWSTACK_FLTREGS);
561         s390_la   (code, s390_r7, 0, STK_BASE, S390_THROWSTACK_ACCREGS);
562         s390_stg  (code, s390_r7, 0, STK_BASE, S390_THROWSTACK_ACCPRM);
563         s390_stfpc(code, STK_BASE, S390_THROWSTACK_FPCPRM);
564         offset = (guint32) S390_RELATIVE(throw_exception, code);
565         s390_brasl(code, s390_r14, offset);
566         /* we should never reach this breakpoint */
567         s390_break (code);
568         g_assert ((code - start) < size);
569         return start;
570 }
571
572 /*========================= End of Function ========================*/
573
574 /*------------------------------------------------------------------*/
575 /*                                                                  */
576 /* Name         - arch_get_throw_exception                          */
577 /*                                                                  */
578 /* Function     - Return a function pointer which can be used to    */
579 /*                raise exceptions. The returned function has the   */
580 /*                following signature:                              */
581 /*                void (*func) (MonoException *exc);                */
582 /*                                                                  */
583 /*------------------------------------------------------------------*/
584
585 gpointer 
586 mono_arch_get_throw_exception (void)
587 {
588         static guint8 start [384];
589         static int inited = 0;
590
591         if (inited)
592                 return start;
593         mono_arch_get_throw_exception_generic (start, sizeof (start), FALSE);
594         inited = 1;
595         return start;
596 }
597
598 /*========================= End of Function ========================*/
599
600 /*------------------------------------------------------------------*/
601 /*                                                                  */
602 /* Name         - arch_get_throw_exception_by_name                  */
603 /*                                                                  */
604 /* Function     - Return a function pointer which can be used to    */
605 /*                raise corlib exceptions. The return function has  */
606 /*                the following signature:                          */
607 /*                void (*func) (char *exc_name);                    */
608 /*                                                                  */
609 /*------------------------------------------------------------------*/
610
611 gpointer 
612 mono_arch_get_throw_exception_by_name (void)
613 {
614         static guint8 start [384];
615         static int inited = 0;
616
617         if (inited)
618                 return start;
619         mono_arch_get_throw_exception_generic (start, sizeof (start), TRUE);
620         inited = 1;
621         return start;
622 }       
623
624 /*========================= End of Function ========================*/
625
626 /*------------------------------------------------------------------*/
627 /*                                                                  */
628 /* Name         - glist_to_array                                    */
629 /*                                                                  */
630 /* Function     - Convert a list to a mono array.                   */
631 /*                                                                  */
632 /*------------------------------------------------------------------*/
633
634 static MonoArray *
635 glist_to_array (GList *list) 
636 {
637         MonoDomain *domain = mono_domain_get ();
638         MonoArray *res;
639         int len, i;
640
641         if (!list)
642                 return NULL;
643
644         len = g_list_length (list);
645         res = mono_array_new (domain, mono_defaults.int_class, len);
646
647         for (i = 0; list; list = list->next, i++)
648                 mono_array_set (res, gpointer, i, list->data);
649
650         return res;
651 }
652
653 /*========================= End of Function ========================*/
654
655 /*------------------------------------------------------------------*/
656 /*                                                                  */
657 /* Name         - mono_arch_find_jit_info                           */
658 /*                                                                  */
659 /* Function     - This function is used to gather informatoin from  */
660 /*                @ctx. It returns the MonoJitInfo of the corres-   */
661 /*                ponding function, unwinds one stack frame and     */
662 /*                stores the resulting context into @new_ctx. It    */
663 /*                also stores a string describing the stack location*/
664 /*                into @trace (if not NULL), and modifies the @lmf  */
665 /*                if necessary. @native_offset returns the IP off-  */
666 /*                set from the start of the function or -1 if that  */
667 /*                informatoin is not available.                     */
668 /*                                                                  */
669 /*------------------------------------------------------------------*/
670
671 MonoJitInfo *
672 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, 
673                          MonoJitInfo *res, MonoJitInfo *prev_ji, MonoContext *ctx, 
674                          MonoContext *new_ctx, char **trace, MonoLMF **lmf, 
675                          int *native_offset, gboolean *managed)
676 {
677         MonoJitInfo *ji;
678         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
679         unsigned long *ptr;
680         char *p;
681         MonoS390StackFrame *sframe;
682
683         if (prev_ji && 
684             (ip > prev_ji->code_start && 
685             ((guint8 *) ip < ((guint8 *) prev_ji->code_start) + prev_ji->code_size)))
686                 ji = prev_ji;
687         else
688                 ji = mono_jit_info_table_find (domain, ip);
689
690         if (trace)
691                 *trace = NULL;
692
693         if (native_offset)
694                 *native_offset = -1;
695
696         if (managed)
697                 *managed = FALSE;
698
699         if (ji != NULL) {
700                 char *source_location, *tmpaddr, *fname;
701                 gint32 address, iloffset;
702                 int offset;
703
704                 *new_ctx = *ctx;
705 //              memcpy(new_ctx, ctx, sizeof(*new_ctx));
706
707                 if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
708                         /* remove any unused lmf */
709                         *lmf = (*lmf)->previous_lmf;
710                 }
711
712                 address = (char *)ip - (char *)ji->code_start;
713
714                 if (native_offset)
715                         *native_offset = address;
716
717                 if (managed)
718                         if (!ji->method->wrapper_type)
719                                 *managed = TRUE;
720
721                 if (trace) {
722                         source_location = mono_debug_source_location_from_address (ji->method, address, NULL, domain);
723                         iloffset = mono_debug_il_offset_from_address (ji->method, address, domain);
724
725                         if (iloffset < 0)
726                                 tmpaddr = g_strdup_printf ("<0x%08x>", address);
727                         else
728                                 tmpaddr = g_strdup_printf ("[0x%08x]", iloffset);
729                 
730                         fname = mono_method_full_name (ji->method, TRUE);
731
732                         if (source_location)
733                                 *trace = g_strdup_printf ("in %s (at %s) %s", tmpaddr, source_location, fname);
734                         else
735                                 *trace = g_strdup_printf ("in %s %s", tmpaddr, fname);
736
737                         g_free (fname);
738                         g_free (source_location);
739                         g_free (tmpaddr);
740                 }
741                 sframe = (MonoS390StackFrame *) MONO_CONTEXT_GET_BP (ctx);
742                 MONO_CONTEXT_SET_BP (new_ctx, sframe->prev);
743                 sframe = (MonoS390StackFrame *) sframe->prev;
744                 MONO_CONTEXT_SET_IP (new_ctx, sframe->return_address);
745                 memcpy (&new_ctx->uc_mcontext.gregs[6], sframe->regs, (8*sizeof(gint32)));
746                 *res = *ji;
747                 return res;
748 #ifdef MONO_USE_EXC_TABLES
749         } else if ((ji = s390_unwind_native_frame (domain, jit_tls, ctx, new_ctx, *lmf, trace))) {
750                 *res = *ji;
751                 return res;
752 #endif
753         } else if (*lmf) {
754                 
755                 *new_ctx = *ctx;
756
757                 if (!(*lmf)->method)
758                         return (gpointer)-1;
759
760                 if (trace)
761                         *trace = g_strdup_printf ("in (unmanaged) %s", mono_method_full_name ((*lmf)->method, TRUE));
762                 
763                 if ((ji = mono_jit_info_table_find (domain, (gpointer)(*lmf)->eip))) {
764                         *res = *ji;
765                 } else {
766                         memset (res, 0, sizeof (MonoJitInfo));
767                         res->method = (*lmf)->method;
768                 }
769
770 /*
771                 MONO_CONTEXT_SET_BP (ctx, (*lmf)->ebp);
772                 MONO_CONTEXT_SET_IP (ctx, (*lmf)->eip);
773 */
774                 memcpy(new_ctx->uc_mcontext.gregs, (*lmf)->gregs, sizeof((*lmf)->gregs));
775                 memcpy(new_ctx->uc_mcontext.fpregs.fprs, (*lmf)->fregs, sizeof((*lmf)->fregs));
776
777                 MONO_CONTEXT_SET_BP (new_ctx, (*lmf)->ebp);
778                 MONO_CONTEXT_SET_IP (new_ctx, (*lmf)->eip);
779                 *lmf = (*lmf)->previous_lmf;
780
781                 return res;
782                 
783         }
784
785         return NULL;
786 }
787
788 /*========================= End of Function ========================*/
789
790 /*------------------------------------------------------------------*/
791 /*                                                                  */
792 /* Name         - ves_icall_get_trace                               */
793 /*                                                                  */
794 /* Function     -                                                   */
795 /*                                                                  */
796 /*------------------------------------------------------------------*/
797
798 MonoArray *
799 ves_icall_get_trace (MonoException *exc, gint32 skip, MonoBoolean need_file_info)
800 {
801         MonoDomain *domain = mono_domain_get ();
802         MonoArray *res;
803         MonoArray *ta = exc->trace_ips;
804         int i, len;
805         
806         if (ta == NULL) {
807                 return mono_array_new (domain, mono_defaults.stack_frame_class, 0);
808         }
809
810         len = mono_array_length (ta);
811
812         res = mono_array_new (domain, mono_defaults.stack_frame_class, 
813                               len > skip ? len - skip : 0);
814
815         for (i = skip; i < len; i++) {
816                 MonoJitInfo *ji;
817                 MonoStackFrame *sf = (MonoStackFrame *)mono_object_new (domain, mono_defaults.stack_frame_class);
818                 gpointer ip = mono_array_get (ta, gpointer, i);
819
820                 ji = mono_jit_info_table_find (domain, ip);
821                 if (ji == NULL) {
822                         mono_array_set (res, gpointer, i, sf);
823                         continue;
824                 }
825
826                 sf->method = mono_method_get_object (domain, ji->method, NULL);
827                 sf->native_offset = (char *)ip - (char *)ji->code_start;
828
829                 sf->il_offset = mono_debug_il_offset_from_address (ji->method, sf->native_offset, domain);
830
831                 if (need_file_info) {
832                         gchar *filename;
833                         
834                         filename = mono_debug_source_location_from_address (ji->method, sf->native_offset, &sf->line, domain);
835
836                         sf->filename = filename? mono_string_new (domain, filename): NULL;
837                         sf->column = 0;
838
839                         g_free (filename);
840                 }
841
842                 mono_array_set (res, gpointer, i, sf);
843         }
844
845         return res;
846 }
847
848 /*========================= End of Function ========================*/
849
850 /*------------------------------------------------------------------*/
851 /*                                                                  */
852 /* Name         - mono_jit_walk_stack                               */
853 /*                                                                  */
854 /* Function     -                                                   */
855 /*                                                                  */
856 /*------------------------------------------------------------------*/
857
858 void
859 mono_jit_walk_stack (MonoStackWalk func, gpointer user_data) {
860         MonoDomain *domain = mono_domain_get ();
861         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
862         MonoLMF *lmf = jit_tls->lmf;
863         MonoJitInfo *ji, rji;
864         gint native_offset, il_offset;
865         gboolean managed;
866         MonoContext ctx, new_ctx;
867
868         MONO_CONTEXT_SET_IP (&ctx, __builtin_return_address (0));
869         MONO_CONTEXT_SET_BP (&ctx, __builtin_frame_address (1));
870
871         while (MONO_CONTEXT_GET_BP (&ctx) < jit_tls->end_of_stack) {
872                 
873                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, NULL, 
874                                               &ctx, &new_ctx, NULL, &lmf, 
875                                               &native_offset, &managed);
876                 g_assert (ji);
877
878                 if (ji == (gpointer)-1)
879                         return;
880
881                 il_offset = mono_debug_il_offset_from_address (ji->method, native_offset, domain);
882
883                 if (func (ji->method, native_offset, il_offset, managed, user_data))
884                         return;
885                 
886                 ctx = new_ctx;
887         }
888 }
889
890 /*========================= End of Function ========================*/
891
892 /*------------------------------------------------------------------*/
893 /*                                                                  */
894 /* Name         - ves_icall_get_frame_info                          */
895 /*                                                                  */
896 /* Function     -                                                   */
897 /*                                                                  */
898 /*------------------------------------------------------------------*/
899
900 MonoBoolean
901 ves_icall_get_frame_info (gint32 skip, MonoBoolean need_file_info, 
902                           MonoReflectionMethod **method, 
903                           gint32 *iloffset, gint32 *native_offset,
904                           MonoString **file, gint32 *line, gint32 *column)
905 {
906         MonoDomain *domain = mono_domain_get ();
907         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
908         MonoLMF *lmf = jit_tls->lmf;
909         MonoJitInfo *ji, rji;
910         MonoContext ctx, new_ctx;
911
912         MONO_CONTEXT_SET_IP (&ctx, ves_icall_get_frame_info);
913         MONO_CONTEXT_SET_BP (&ctx, __builtin_frame_address (0));
914
915         skip++;
916
917         do {
918                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, NULL, 
919                                               &ctx, &new_ctx, NULL, &lmf, 
920                                               native_offset, NULL);
921
922                 ctx = new_ctx;
923                 
924                 if (!ji || ji == (gpointer)-1 || MONO_CONTEXT_GET_BP (&ctx) >= jit_tls->end_of_stack)
925                         return FALSE;
926
927                 /* skip all wrappers ??*/
928                 if (ji->method->wrapper_type == MONO_WRAPPER_RUNTIME_INVOKE ||
929                     ji->method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK ||
930                     ji->method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE)
931                         continue;
932
933                 skip--;
934
935         } while (skip >= 0);
936
937         *method = mono_method_get_object (domain, ji->method, NULL);
938         *iloffset = mono_debug_il_offset_from_address (ji->method, *native_offset, domain);
939
940         if (need_file_info) {
941                 gchar *filename;
942
943                 filename = mono_debug_source_location_from_address (ji->method, *native_offset, line, domain);
944
945                 *file = filename? mono_string_new (domain, filename): NULL;
946                 *column = 0;
947
948                 g_free (filename);
949         }
950
951         return TRUE;
952 }
953
954 /*========================= End of Function ========================*/
955
956 /*------------------------------------------------------------------*/
957 /*                                                                  */
958 /* Name         - mono_arch_handle_exception                        */
959 /*                                                                  */
960 /* Function     - Handle an exception raised by the JIT code.       */
961 /*                                                                  */
962 /* Parameters   - ctx       - Saved processor state                 */
963 /*                obj       - The exception object                  */
964 /*                test_only - Only test if the exception is caught, */
965 /*                            but don't call handlers               */
966 /*                                                                  */
967 /*------------------------------------------------------------------*/
968
969 gboolean
970 mono_arch_handle_exception (void *uc, gpointer obj, gboolean test_only)
971 {
972         MonoContext     *ctx = uc;
973         MonoDomain      *domain = mono_domain_get ();
974         MonoJitInfo     *ji, rji;
975         static int      (*call_filter) (MonoContext *, gpointer, gpointer) = NULL;
976         MonoJitTlsData  *jit_tls = TlsGetValue (mono_jit_tls_id);
977         MonoLMF         *lmf = jit_tls->lmf;            
978         GList           *trace_ips = NULL;
979         MonoException   *mono_ex;
980
981         g_assert (ctx != NULL);
982         memset(&rji, 0, sizeof(rji));
983         if (!obj) {
984                 MonoException *ex = mono_get_exception_null_reference ();
985                 ex->message = mono_string_new (domain, 
986                         "Object reference not set to an instance of an object");
987                 obj = (MonoObject *)ex;
988         } 
989
990         if (mono_object_isinst (obj, mono_defaults.exception_class)) {
991                 mono_ex = (MonoException*)obj;
992                 mono_ex->stack_trace = NULL;
993         } else {
994                 mono_ex = NULL;
995         }
996
997
998         if (!call_filter)
999                 call_filter = arch_get_call_filter ();
1000
1001         g_assert (jit_tls->end_of_stack);
1002         g_assert (jit_tls->abort_func);
1003
1004         if (!test_only) {
1005                 MonoContext ctx_cp = *ctx;
1006                 if (mono_jit_trace_calls != NULL)
1007                         g_print ("EXCEPTION handling: %s\n", mono_object_class (obj)->name);
1008                 if (!mono_arch_handle_exception (&ctx_cp, obj, TRUE)) {
1009                         if (mono_break_on_exc)
1010                                 G_BREAKPOINT ();
1011                         mono_unhandled_exception (obj);
1012                 }
1013         }
1014
1015         while (1) {
1016                 MonoContext new_ctx;
1017                 char *trace = NULL;
1018                 
1019                 ji = mono_arch_find_jit_info (domain, jit_tls, &rji, &rji, ctx, &new_ctx, 
1020                                               test_only ? &trace : NULL, &lmf, NULL, NULL);
1021                 if (!ji) {
1022                         g_warning ("Exception inside function without unwind info");
1023                         g_assert_not_reached ();
1024                 }
1025
1026                 if (ji != (gpointer)-1) {
1027                         
1028                         if (test_only && ji->method->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE && mono_ex) {
1029                                 char *tmp, *strace;
1030
1031                                 trace_ips = g_list_append (trace_ips, MONO_CONTEXT_GET_IP (ctx));
1032
1033                                 if (!mono_ex->stack_trace)
1034                                         strace = g_strdup ("");
1035                                 else
1036                                         strace = mono_string_to_utf8 (mono_ex->stack_trace);
1037                         
1038                                 tmp = g_strdup_printf ("%s%s\n", strace, trace);
1039                                 g_free (strace);
1040
1041                                 mono_ex->stack_trace = mono_string_new (domain, tmp);
1042
1043                                 g_free (tmp);
1044                         }
1045
1046                         if (ji->num_clauses) {
1047                                 int i;
1048                                 
1049                                 g_assert (ji->clauses);
1050                         
1051                                 for (i = 0; i < ji->num_clauses; i++) {
1052                                         MonoJitExceptionInfo *ei = &ji->clauses [i];
1053
1054                                         if (ei->try_start < MONO_CONTEXT_GET_IP (ctx) && 
1055                                             MONO_CONTEXT_GET_IP (ctx) <= ei->try_end) { 
1056                                                 /* catch block */
1057                                                 if ((ei->flags == MONO_EXCEPTION_CLAUSE_NONE && 
1058                                                      mono_object_isinst (obj, mono_class_get (ji->method->klass->image, ei->data.token))) ||
1059                                                     ((ei->flags == MONO_EXCEPTION_CLAUSE_FILTER &&
1060                                                       call_filter (ctx, ei->data.filter, obj)))) {
1061                                                         if (test_only) {
1062                                                                 if (mono_ex)
1063                                                                         mono_ex->trace_ips = glist_to_array (trace_ips);
1064                                                                 g_list_free (trace_ips);
1065                                                                 g_free (trace);
1066                                                                 return TRUE;
1067                                                         }
1068 //                                                      memcpy(ctx, &new_ctx, sizeof(new_ctx));
1069                                                         if (mono_jit_trace_calls != NULL)
1070                                                                 g_print ("EXCEPTION: catch found at clause %d of %s - caught at %p with sp %p\n", 
1071                                                                          i, mono_method_full_name (ji->method, TRUE),
1072                                                                          ei->handler_start,
1073                                                                          MONO_CONTEXT_GET_BP(ctx));
1074                                                         MONO_CONTEXT_SET_IP (ctx, ei->handler_start);
1075                                                         *((gpointer *)((char *)MONO_CONTEXT_GET_BP (ctx) + ji->exvar_offset)) = obj;
1076                                                         jit_tls->lmf = lmf;
1077                                                         g_free (trace);
1078                                                         return 0;
1079                                                 }
1080                                                 if (!test_only && ei->try_start <= MONO_CONTEXT_GET_IP (ctx) && 
1081                                                     MONO_CONTEXT_GET_IP (ctx) < ei->try_end &&
1082                                                     (ei->flags & MONO_EXCEPTION_CLAUSE_FINALLY)) {
1083                                                         if (mono_jit_trace_calls != NULL)
1084                                                                 g_print ("EXCEPTION: finally clause %d of %s handled at: %p using sp: %p\n", 
1085                                                                 i, mono_method_full_name (ji->method, TRUE),
1086                                                                 ei->handler_start,
1087                                                                 MONO_CONTEXT_GET_BP(ctx));
1088                                                         call_filter (ctx, ei->handler_start, NULL);
1089                                                 }
1090                                                 
1091                                         }
1092                                 }
1093                         }
1094                 }
1095
1096                 g_free (trace);
1097                         
1098                 *ctx = new_ctx;
1099
1100                 if ((ji == (gpointer)-1) || MONO_CONTEXT_GET_BP (ctx) >= jit_tls->end_of_stack) {
1101                         if (!test_only) {
1102                                 jit_tls->lmf = lmf;
1103                                 jit_tls->abort_func (obj);
1104                                 g_assert_not_reached ();
1105                         } else {
1106                                 if (mono_ex)
1107                                         mono_ex->trace_ips = glist_to_array (trace_ips);
1108                                 g_list_free (trace_ips);
1109                                 return FALSE;
1110                         }
1111                 }
1112         }
1113
1114         g_assert_not_reached ();
1115 }
1116
1117 /*========================= End of Function ========================*/
1118
1119 /*------------------------------------------------------------------*/
1120 /*                                                                  */
1121 /* Name         - mono_arch_ip_from_context                         */
1122 /*                                                                  */
1123 /* Function     - Return the instruction pointer from the context.  */
1124 /*                                                                  */
1125 /* Parameters   - sigctx    - Saved processor state                 */
1126 /*                                                                  */
1127 /*------------------------------------------------------------------*/
1128
1129 gpointer
1130 mono_arch_ip_from_context (void *sigctx)
1131 {
1132         return context_get_ip (sigctx);
1133 }
1134