03ba1b27a561cd4cb83c3e27d59439bd324443e8
[mono.git] / mono / mini / exceptions-mips.c
1 /**
2  * \file
3  * exception support for MIPS
4  *
5  * Authors:
6  *   Mark Mason (mason@broadcom.com)
7  *
8  * Based on exceptions-ppc.c by:
9  *   Dietmar Maurer (dietmar@ximian.com)
10  *   Paolo Molaro (lupus@ximian.com)
11  *
12  * (C) 2006 Broadcom
13  * (C) 2001 Ximian, Inc.
14  */
15
16 #include <config.h>
17 #include <glib.h>
18 #include <signal.h>
19 #include <string.h>
20
21 #include <mono/arch/mips/mips-codegen.h>
22 #include <mono/metadata/appdomain.h>
23 #include <mono/metadata/tabledefs.h>
24 #include <mono/metadata/threads.h>
25 #include <mono/metadata/debug-helpers.h>
26 #include <mono/metadata/exception.h>
27 #include <mono/metadata/mono-debug.h>
28
29 #include "mini.h"
30 #include "mini-mips.h"
31
32 #define GENERIC_EXCEPTION_SIZE 256
33
34 /*
35  * mono_arch_get_restore_context:
36  *
37  * Returns a pointer to a method which restores a previously saved MonoContext.
38  * The first argument in a0 is the pointer to the MonoContext.
39  */
40 gpointer
41 mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot)
42 {
43         int i;
44         guint8 *code;
45         static guint8 start [512];
46         static int inited = 0;
47         guint32 iregs_to_restore;
48
49         g_assert (!aot);
50         if (info)
51                 *info = NULL;
52
53         if (inited)
54                 return start;
55         inited = 1;
56         code = start;
57
58         mips_move (code, mips_at, mips_a0);
59
60         iregs_to_restore = (MONO_ARCH_CALLEE_SAVED_REGS \
61                             | (1 << mips_sp) | (1 << mips_ra));
62         for (i = 0; i < MONO_SAVED_GREGS; ++i) {
63                 //if (iregs_to_restore & (1 << i)) {
64                 if (i != mips_zero && i != mips_at) {
65                         MIPS_LW (code, i, mips_at, G_STRUCT_OFFSET (MonoContext, sc_regs[i]));
66                 }
67         }
68
69         /* Get the address to return to */
70         mips_lw (code, mips_t9, mips_at, G_STRUCT_OFFSET (MonoContext, sc_pc));
71
72         /* jump to the saved IP */
73         mips_jr (code, mips_t9);
74         mips_nop (code);
75
76         /* never reached */
77         mips_break (code, 0xff);
78
79         g_assert ((code - start) < sizeof(start));
80         mono_arch_flush_icache (start, code - start);
81         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
82         return start;
83 }
84
85 /*
86  * mono_arch_get_call_filter:
87  *
88  * Returns a pointer to a method which calls an exception filter. We
89  * also use this function to call finally handlers (we pass NULL as 
90  * @exc object in this case).
91  *
92  * This function is invoked as
93  *      call_handler (MonoContext *ctx, handler)
94  *
95  * Where 'handler' is a function to be invoked as:
96  *      handler (void)
97  */
98 gpointer
99 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
100 {
101         static guint8 start [320];
102         static int inited = 0;
103         guint8 *code;
104         int alloc_size;
105         int offset;
106
107         g_assert (!aot);
108         if (info)
109                 *info = NULL;
110
111         if (inited)
112                 return start;
113
114         inited = 1;
115         code = start;
116
117         alloc_size = 64;
118         g_assert ((alloc_size & (MIPS_STACK_ALIGNMENT-1)) == 0);
119
120         mips_addiu (code, mips_sp, mips_sp, -alloc_size);
121         mips_sw (code, mips_ra, mips_sp, alloc_size + MIPS_RET_ADDR_OFFSET);
122
123         /* Save global registers on stack (s0 - s7) */
124         offset = 16;
125         MIPS_SW (code, mips_s0, mips_sp, offset); offset += IREG_SIZE;
126         MIPS_SW (code, mips_s1, mips_sp, offset); offset += IREG_SIZE;
127         MIPS_SW (code, mips_s2, mips_sp, offset); offset += IREG_SIZE;
128         MIPS_SW (code, mips_s3, mips_sp, offset); offset += IREG_SIZE;
129         MIPS_SW (code, mips_s4, mips_sp, offset); offset += IREG_SIZE;
130         MIPS_SW (code, mips_s5, mips_sp, offset); offset += IREG_SIZE;
131         MIPS_SW (code, mips_s6, mips_sp, offset); offset += IREG_SIZE;
132         MIPS_SW (code, mips_s7, mips_sp, offset); offset += IREG_SIZE;
133         MIPS_SW (code, mips_fp, mips_sp, offset); offset += IREG_SIZE;
134
135         /* Restore global registers from MonoContext, including the frame pointer */
136         MIPS_LW (code, mips_s0, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s0]));
137         MIPS_LW (code, mips_s1, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s1]));
138         MIPS_LW (code, mips_s2, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s2]));
139         MIPS_LW (code, mips_s3, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s3]));
140         MIPS_LW (code, mips_s4, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s4]));
141         MIPS_LW (code, mips_s5, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s5]));
142         MIPS_LW (code, mips_s6, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s6]));
143         MIPS_LW (code, mips_s7, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_s7]));
144         MIPS_LW (code, mips_fp, mips_a0, G_STRUCT_OFFSET (MonoContext, sc_regs[mips_fp]));
145
146         /* a1 is the handler to call */
147         mips_move (code, mips_t9, mips_a1);
148
149         /* jump to the saved IP */
150         mips_jalr (code, mips_t9, mips_ra);
151         mips_nop (code);
152
153         /* restore all regs from the stack */
154         offset = 16;
155         MIPS_LW (code, mips_s0, mips_sp, offset); offset += IREG_SIZE;
156         MIPS_LW (code, mips_s1, mips_sp, offset); offset += IREG_SIZE;
157         MIPS_LW (code, mips_s2, mips_sp, offset); offset += IREG_SIZE;
158         MIPS_LW (code, mips_s3, mips_sp, offset); offset += IREG_SIZE;
159         MIPS_LW (code, mips_s4, mips_sp, offset); offset += IREG_SIZE;
160         MIPS_LW (code, mips_s5, mips_sp, offset); offset += IREG_SIZE;
161         MIPS_LW (code, mips_s6, mips_sp, offset); offset += IREG_SIZE;
162         MIPS_LW (code, mips_s7, mips_sp, offset); offset += IREG_SIZE;
163         MIPS_LW (code, mips_fp, mips_sp, offset); offset += IREG_SIZE;
164
165         /* epilog */
166         mips_lw (code, mips_ra, mips_sp, alloc_size + MIPS_RET_ADDR_OFFSET);
167         mips_addiu (code, mips_sp, mips_sp, alloc_size);
168         mips_jr (code, mips_ra);
169         mips_nop (code);
170
171         g_assert ((code - start) < sizeof(start));
172         mono_arch_flush_icache (start, code - start);
173         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
174         return start;
175 }
176
177 static void
178 throw_exception (MonoObject *exc, unsigned long eip, unsigned long esp, gboolean rethrow)
179 {
180         MonoError error;
181         MonoContext ctx;
182
183 #ifdef DEBUG_EXCEPTIONS
184         g_print ("throw_exception: exc=%p eip=%p esp=%p rethrow=%d\n",
185                  exc, (void *)eip, (void *) esp, rethrow);
186 #endif
187
188         /* adjust eip so that it point into the call instruction */
189         eip -= 8;
190
191         memset (&ctx, 0, sizeof (MonoContext));
192
193         /*g_print  ("stack in throw: %p\n", esp);*/
194         memcpy (&ctx.sc_regs, (void *)(esp + MIPS_STACK_PARAM_OFFSET),
195                 sizeof (gulong) * MONO_SAVED_GREGS);
196         memset (&ctx.sc_fpregs, 0, sizeof (mips_freg) * MONO_SAVED_FREGS);
197         MONO_CONTEXT_SET_IP (&ctx, eip);
198
199         if (mono_object_isinst_checked (exc, mono_defaults.exception_class, &error)) {
200                 MonoException *mono_ex = (MonoException*)exc;
201                 if (!rethrow) {
202                         mono_ex->stack_trace = NULL;
203                         mono_ex->trace_ips = NULL;
204                 }
205         }
206         mono_error_assert_ok (&error);
207         mono_handle_exception (&ctx, exc);
208 #ifdef DEBUG_EXCEPTIONS
209         g_print ("throw_exception: restore to pc=%p sp=%p fp=%p ctx=%p\n",
210                  (void *) ctx.sc_pc, (void *) ctx.sc_regs[mips_sp],
211                  (void *) ctx.sc_regs[mips_fp], &ctx);
212 #endif
213         mono_restore_context (&ctx);
214
215         g_assert_not_reached ();
216 }
217
218 /**
219  * arch_get_throw_exception_generic:
220  *
221  * Returns a function pointer which can be used to raise 
222  * exceptions. The returned function has the following 
223  * signature: void (*func) (MonoException *exc); or
224  * void (*func) (char *exc_name);
225  *
226  */
227 static gpointer 
228 mono_arch_get_throw_exception_generic (guint8 *start, int size, int corlib, gboolean rethrow)
229 {
230         guint8 *code;
231         int alloc_size, pos, i;
232
233         code = start;
234
235         //g_print ("mono_arch_get_throw_exception_generic: code=%p\n", code);
236
237         pos = 0;
238         /* XXX - save all the FP regs on the stack ? */
239
240         pos += MONO_MAX_IREGS * sizeof(guint32);
241
242         alloc_size = MIPS_MINIMAL_STACK_SIZE + pos + 64;
243         // align to MIPS_STACK_ALIGNMENT bytes
244         alloc_size += MIPS_STACK_ALIGNMENT - 1;
245         alloc_size &= ~(MIPS_STACK_ALIGNMENT - 1);
246
247         g_assert ((alloc_size & (MIPS_STACK_ALIGNMENT-1)) == 0);
248         mips_addiu (code, mips_sp, mips_sp, -alloc_size);
249         mips_sw (code, mips_ra, mips_sp, alloc_size + MIPS_RET_ADDR_OFFSET);
250
251         /* Save all the regs on the stack */
252         for (i = 0; i < MONO_MAX_IREGS; i++) {
253                 if (i != mips_sp)
254                         MIPS_SW (code, i, mips_sp, i*IREG_SIZE + MIPS_STACK_PARAM_OFFSET);
255                 else {
256                         mips_addiu (code, mips_at, mips_sp, alloc_size);
257                         MIPS_SW (code, mips_at, mips_sp, i*IREG_SIZE + MIPS_STACK_PARAM_OFFSET);
258                 }
259         }
260
261         if (corlib) {
262                 mips_move (code, mips_a1, mips_a0);
263                 mips_load (code, mips_a0, mono_defaults.corlib);
264                 mips_load (code, mips_t9, mono_exception_from_token);
265                 mips_jalr (code, mips_t9, mips_ra);
266                 mips_nop (code);
267                 mips_move (code, mips_a0, mips_v0);
268         }
269         /* call throw_exception (exc, ip, sp, rethrow) */
270
271         /* exc is already in place in a0 */
272
273         /* pointer to ip */
274         if (corlib)
275                 mips_lw (code, mips_a1, mips_sp, alloc_size + MIPS_RET_ADDR_OFFSET);
276         else
277                 mips_move (code, mips_a1, mips_ra);
278
279         /* current sp & rethrow */
280         mips_move (code, mips_a2, mips_sp);
281         mips_addiu (code, mips_a3, mips_zero, rethrow);
282
283         mips_load (code, mips_t9, throw_exception);
284         mips_jr (code, mips_t9);
285         mips_nop (code);
286         /* we should never reach this breakpoint */
287         mips_break (code, 0xfe);
288
289         g_assert ((code - start) < size);
290         mono_arch_flush_icache (start, code - start);
291         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
292         return start;
293 }
294
295 /**
296  * mono_arch_get_rethrow_exception:
297  *
298  * Returns a function pointer which can be used to rethrow 
299  * exceptions. The returned function has the following 
300  * signature: void (*func) (MonoException *exc); 
301  *
302  */
303 gpointer
304 mono_arch_get_rethrow_exception (MonoTrampInfo **info, gboolean aot)
305 {
306         static guint8 start [GENERIC_EXCEPTION_SIZE];
307         static int inited = 0;
308
309         g_assert (!aot);
310         if (info)
311                 *info = NULL;
312
313         if (inited)
314                 return start;
315         mono_arch_get_throw_exception_generic (start, sizeof (start), FALSE, TRUE);
316         inited = 1;
317         return start;
318 }
319
320 /**
321  * arch_get_throw_exception:
322  *
323  * Returns a function pointer which can be used to raise 
324  * exceptions. The returned function has the following 
325  * signature: void (*func) (MonoException *exc); 
326  * For example to raise an arithmetic exception you can use:
327  *
328  * x86_push_imm (code, mono_get_exception_arithmetic ()); 
329  * x86_call_code (code, arch_get_throw_exception ()); 
330  *
331  */
332 gpointer
333 mono_arch_get_throw_exception (MonoTrampInfo **info, gboolean aot)
334 {
335         static guint8 start [GENERIC_EXCEPTION_SIZE];
336         static int inited = 0;
337
338         g_assert (!aot);
339         if (info)
340                 *info = NULL;
341
342         if (inited)
343                 return start;
344         mono_arch_get_throw_exception_generic (start, sizeof (start), FALSE, FALSE);
345         inited = 1;
346         return start;
347 }
348
349 gpointer 
350 mono_arch_get_throw_exception_by_name (void)
351 {
352         guint8 *start, *code;
353         int size = 64;
354
355         /* Not used on MIPS */  
356         start = code = mono_global_codeman_reserve (size);
357         mips_break (code, 0xfd);
358         mono_arch_flush_icache (start, code - start);
359         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
360         return start;
361 }
362
363 /**
364  * mono_arch_get_throw_corlib_exception:
365  *
366  * Returns a function pointer which can be used to raise 
367  * corlib exceptions. The returned function has the following 
368  * signature: void (*func) (guint32 ex_token, guint32 offset); 
369  * On MIPS, the offset argument is missing.
370  */
371 gpointer
372 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
373 {
374         static guint8 start [GENERIC_EXCEPTION_SIZE];
375         static int inited = 0;
376
377         g_assert (!aot);
378         if (info)
379                 *info = NULL;
380
381         if (inited)
382                 return start;
383         mono_arch_get_throw_exception_generic (start, sizeof (start), TRUE, FALSE);
384         inited = 1;
385         return start;
386 }
387
388 /*
389  * mono_arch_unwind_frame:
390  *
391  * This function is used to gather information from @ctx, and store it in @frame_info.
392  * It unwinds one stack frame, and stores the resulting context into @new_ctx. @lmf
393  * is modified if needed.
394  * Returns TRUE on success, FALSE otherwise.
395  */
396 gboolean
397 mono_arch_unwind_frame (MonoDomain *domain, MonoJitTlsData *jit_tls, 
398                                                          MonoJitInfo *ji, MonoContext *ctx, 
399                                                          MonoContext *new_ctx, MonoLMF **lmf, 
400                                                          mgreg_t **save_locations,
401                                                          StackFrameInfo *frame)
402 {
403         memset (frame, 0, sizeof (StackFrameInfo));
404         frame->ji = ji;
405
406         *new_ctx = *ctx;
407
408         if (ji != NULL) {
409                 int i;
410                 gpointer ip = MONO_CONTEXT_GET_IP (ctx);
411                 mgreg_t regs [MONO_MAX_IREGS + 1];
412                 guint8 *cfa;
413                 guint32 unwind_info_len;
414                 guint8 *unwind_info;
415
416                 if (ji->is_trampoline)
417                         frame->type = FRAME_TYPE_TRAMPOLINE;
418                 else
419                         frame->type = FRAME_TYPE_MANAGED;
420
421                 unwind_info = mono_jinfo_get_unwind_info (ji, &unwind_info_len);
422
423                 for (i = 0; i < MONO_MAX_IREGS; ++i)
424                         regs [i] = new_ctx->sc_regs [i];
425
426                 mono_unwind_frame (unwind_info, unwind_info_len, ji->code_start, 
427                                                    (guint8*)ji->code_start + ji->code_size,
428                                                    ip, NULL, regs, MONO_MAX_IREGS,
429                                                    save_locations, MONO_MAX_IREGS, &cfa);
430
431                 for (i = 0; i < MONO_MAX_IREGS; ++i)
432                         new_ctx->sc_regs [i] = regs [i];
433                 new_ctx->sc_pc = regs [mips_ra];
434                 new_ctx->sc_regs [mips_sp] = (mgreg_t)cfa;
435
436                 /* we substract 8, so that the IP points into the call instruction */
437                 MONO_CONTEXT_SET_IP (new_ctx, new_ctx->sc_pc - 8);
438
439                 /* Sanity check -- we should have made progress here */
440                 g_assert (MONO_CONTEXT_GET_SP (new_ctx) != MONO_CONTEXT_GET_SP (ctx));
441                 return TRUE;
442         } else if (*lmf) {
443
444                 if (((mgreg_t)(*lmf)->previous_lmf) & 2) {
445                         /* 
446                          * This LMF entry is created by the soft debug code to mark transitions to
447                          * managed code done during invokes.
448                          */
449                         MonoLMFExt *ext = (MonoLMFExt*)(*lmf);
450
451                         g_assert (ext->debugger_invoke);
452
453                         memcpy (new_ctx, &ext->ctx, sizeof (MonoContext));
454
455                         *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
456
457                         frame->type = FRAME_TYPE_DEBUGGER_INVOKE;
458
459                         return TRUE;
460                 }
461
462                 if (!(*lmf)->method) {
463 #ifdef DEBUG_EXCEPTIONS
464                         g_print ("mono_arch_unwind_frame: bad lmf @ %p\n", (void *) *lmf);
465 #endif
466                         return FALSE;
467                 }
468                 g_assert (((*lmf)->magic == MIPS_LMF_MAGIC1) || ((*lmf)->magic == MIPS_LMF_MAGIC2));
469
470                 ji = mini_jit_info_table_find (domain, (gpointer)(*lmf)->eip, NULL);
471                 if (!ji) {
472                         // FIXME: This can happen with multiple appdomains (bug #444383)
473                         return FALSE;
474                 }
475
476                 frame->ji = ji;
477                 frame->type = FRAME_TYPE_MANAGED_TO_NATIVE;
478
479                 memcpy (&new_ctx->sc_regs, (*lmf)->iregs, sizeof (gulong) * MONO_SAVED_GREGS);
480                 memcpy (&new_ctx->sc_fpregs, (*lmf)->fregs, sizeof (float) * MONO_SAVED_FREGS);
481                 MONO_CONTEXT_SET_IP (new_ctx, (*lmf)->eip);
482                 /* ensure that we've made progress */
483                 g_assert (new_ctx->sc_pc != ctx->sc_pc);
484
485                 *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
486
487                 return TRUE;
488         }
489
490         return FALSE;
491 }
492
493 gpointer
494 mono_arch_ip_from_context (void *sigctx)
495 {
496         return (gpointer)(gsize)UCONTEXT_REG_PC (sigctx);
497 }
498
499 /*
500  * handle_exception:
501  *
502  *   Called by resuming from a signal handler.
503  */
504 static void
505 handle_signal_exception (gpointer obj)
506 {
507         MonoJitTlsData *jit_tls = mono_tls_get_jit_tls ();
508         MonoContext ctx;
509
510         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
511
512         mono_handle_exception (&ctx, obj);
513
514         mono_restore_context (&ctx);
515 }
516
517 /*
518  * This is the function called from the signal handler
519  */
520 gboolean
521 mono_arch_handle_exception (void *ctx, gpointer obj)
522 {
523 #if defined(MONO_CROSS_COMPILE)
524         g_assert_not_reached ();
525 #elif defined(MONO_ARCH_USE_SIGACTION)
526         void *sigctx = ctx;
527
528         /*
529          * Handling the exception in the signal handler is problematic, since the original
530          * signal is disabled, and we could run arbitrary code though the debugger. So
531          * resume into the normal stack and do most work there if possible.
532          */
533         MonoJitTlsData *jit_tls = mono_tls_get_jit_tls ();
534         guint64 sp = UCONTEXT_GREGS (sigctx) [mips_sp];
535
536         /* Pass the ctx parameter in TLS */
537         mono_sigctx_to_monoctx (sigctx, &jit_tls->ex_ctx);
538         /* The others in registers */
539         UCONTEXT_GREGS (sigctx)[mips_a0] = (gsize)obj;
540
541         /* Allocate a stack frame */
542         sp -= 256;
543         UCONTEXT_GREGS (sigctx)[mips_sp] = sp;
544
545         UCONTEXT_REG_PC (sigctx) = (gsize)handle_signal_exception;
546
547         return TRUE;
548 #else
549         MonoContext mctx;
550         gboolean result;
551
552         mono_sigctx_to_monoctx (ctx, &mctx);
553
554         result = mono_handle_exception (&mctx, obj);
555         /* restore the context so that returning from the signal handler will invoke
556          * the catch clause 
557          */
558         mono_monoctx_to_sigctx (&mctx, ctx);
559         return result;
560 #endif
561 }
562
563 /*
564  * mono_arch_setup_resume_sighandler_ctx:
565  *
566  *   Setup CTX so execution continues at FUNC.
567  */
568 void
569 mono_arch_setup_resume_sighandler_ctx (MonoContext *ctx, gpointer func)
570 {
571         MONO_CONTEXT_SET_IP (ctx,func);
572 }