a few warning fixes
[mono.git] / mono / mini / exceptions-sparc.c
1 /*
2  * exceptions-sparc.c: exception support for sparc
3  *
4  * Authors:
5  *   Mark Crichton (crichton@gimp.org)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * (C) 2003 Ximian, Inc.
9  */
10
11 #include <config.h>
12 #include <glib.h>
13 #include <signal.h>
14 #include <string.h>
15 #include <sys/ucontext.h>
16
17 #include <mono/arch/sparc/sparc-codegen.h>
18 #include <mono/metadata/appdomain.h>
19 #include <mono/metadata/tabledefs.h>
20 #include <mono/metadata/threads.h>
21 #include <mono/metadata/debug-helpers.h>
22 #include <mono/metadata/exception.h>
23 #include <mono/metadata/mono-debug.h>
24 #include <mono/metadata/gc-internal.h>
25
26 #include "mini.h"
27 #include "mini-sparc.h"
28
29 #ifndef REG_SP
30 #define REG_SP REG_O6
31 #endif
32
33 #define MONO_SPARC_WINDOW_ADDR(sp) ((gpointer*)(((guint8*)(sp)) + MONO_SPARC_STACK_BIAS))
34
35 /*
36  * mono_arch_get_restore_context:
37  *
38  * Returns a pointer to a method which restores a previously saved sigcontext.
39  */
40 gpointer
41 mono_arch_get_restore_context (void)
42 {
43         static guint32 start [32];
44         static int inited = 0;
45         guint32 *code;
46
47         if (inited)
48                 return start;
49
50         code = start;
51
52         sparc_ldi_imm (code, sparc_o0, G_STRUCT_OFFSET (MonoContext, ip), sparc_i7);
53         sparc_ldi_imm (code, sparc_o0, G_STRUCT_OFFSET (MonoContext, sp), sparc_i6);
54
55         sparc_jmpl_imm (code, sparc_i7, 0, sparc_g0);
56         /* FIXME: This does not return to the correct window */
57         sparc_restore_imm (code, sparc_g0, 0, sparc_g0);
58
59         g_assert ((code - start) < 32);
60
61         inited = 1;
62
63         return start;
64 }
65
66 /*
67  * mono_arch_get_call_filter:
68  *
69  * Returns a pointer to a method which calls an exception filter. We
70  * also use this function to call finally handlers (we pass NULL as 
71  * @exc object in this case).
72  *
73  * call_filter (MonoContext *ctx, gpointer ip)
74  */
75 gpointer
76 mono_arch_get_call_filter (void)
77 {
78         static guint32 start [64];
79         static int inited = 0;
80         guint32 *code;
81         int i;
82
83         if (inited)
84                 return start;
85
86         code = start;
87
88         /*
89          * There are two frames here:
90          * - the first frame is used by call_filter
91          * - the second frame is used to run the filter code
92          */
93
94         /* Create first frame */
95         sparc_save_imm (code, sparc_sp, -256, sparc_sp);
96
97         sparc_mov_reg_reg (code, sparc_i1, sparc_o0);
98         sparc_ldi_imm (code, sparc_i0, G_STRUCT_OFFSET (MonoContext, sp), sparc_o1);
99
100         /* Create second frame */
101         sparc_save_imm (code, sparc_sp, -256, sparc_sp);
102
103         sparc_mov_reg_reg (code, sparc_i0, sparc_o0);
104         sparc_mov_reg_reg (code, sparc_i1, sparc_o1);
105
106         /*
107          * We need to change %fp to point to the stack frame of the method
108          * containing the filter. But changing %fp also changes the %sp of
109          * the parent frame (the first frame), so if the OS saves the first frame,
110          * it saves it to the stack frame of the method, which is not good.
111          * So flush all register windows to memory before changing %fp.
112          */
113         sparc_flushw (code);
114
115         sparc_mov_reg_reg (code, sparc_fp, sparc_o7);
116
117         /* 
118          * Modify the second frame so it is identical to the one used in the
119          * method containing the filter.
120          */
121         for (i = 0; i < 16; ++i)
122                 sparc_ldi_imm (code, sparc_o1, MONO_SPARC_STACK_BIAS + i * sizeof (gpointer), sparc_l0 + i);
123
124         /* Save %fp to a location reserved in mono_arch_allocate_vars */
125         sparc_sti_imm (code, sparc_o7, sparc_fp, MONO_SPARC_STACK_BIAS - sizeof (gpointer));
126
127         /* Call the filter code, after this returns, %o0 will hold the result */
128         sparc_call_imm (code, sparc_o0, 0);
129         sparc_nop (code);
130
131         /* Restore original %fp */
132         sparc_ldi_imm (code, sparc_fp, MONO_SPARC_STACK_BIAS - sizeof (gpointer), sparc_fp);
133
134         sparc_mov_reg_reg (code, sparc_o0, sparc_i0);
135
136         /* Return to first frame */
137         sparc_restore (code, sparc_g0, sparc_g0, sparc_g0);
138
139         /* FIXME: Save locals to the stack */
140
141         /* Return to caller */
142         sparc_ret (code);
143         /* Return result in delay slot */
144         sparc_restore (code, sparc_o0, sparc_g0, sparc_o0);
145
146         g_assert ((code - start) < 64);
147
148         inited = 1;
149
150         return start;
151 }
152
153 static void
154 throw_exception (MonoObject *exc, gpointer sp, gpointer ip, gboolean rethrow)
155 {
156         MonoContext ctx;
157         static void (*restore_context) (MonoContext *);
158         gpointer *window;
159         
160         if (!restore_context)
161                 restore_context = mono_arch_get_restore_context ();
162
163         window = MONO_SPARC_WINDOW_ADDR (sp);
164         ctx.sp = (gpointer*)sp;
165         ctx.ip = ip;
166         ctx.fp = (gpointer*)(MONO_SPARC_WINDOW_ADDR (sp) [sparc_i6 - 16]);
167
168         if (mono_object_isinst (exc, mono_defaults.exception_class)) {
169                 MonoException *mono_ex = (MonoException*)exc;
170                 if (!rethrow)
171                         mono_ex->stack_trace = NULL;
172         }
173         mono_handle_exception (&ctx, exc, ip, FALSE);
174         restore_context (&ctx);
175
176         g_assert_not_reached ();
177 }
178
179 static gpointer 
180 get_throw_exception (gboolean rethrow)
181 {
182         guint32 *start;
183         guint32 *code;
184
185         code = start = g_new0 (16 * sizeof (guint32));
186
187         sparc_save_imm (code, sparc_sp, -512, sparc_sp);
188
189         sparc_flushw (code);
190         sparc_mov_reg_reg (code, sparc_i0, sparc_o0);
191         sparc_mov_reg_reg (code, sparc_fp, sparc_o1);
192         sparc_mov_reg_reg (code, sparc_i7, sparc_o2);
193         sparc_set (code, rethrow, sparc_o3);
194         sparc_set (code, throw_exception, sparc_o7);
195         sparc_jmpl (code, sparc_o7, sparc_g0, sparc_callsite);
196         sparc_nop (code);
197
198         g_assert ((code - start) <= 16);
199
200         return start;
201 }
202
203 /**
204  * mono_arch_get_throw_exception:
205  *
206  * Returns a function pointer which can be used to raise exceptions.
207  * The returned function has the following 
208  * signature: void (*func) (MonoException *exc); 
209  */
210 gpointer 
211 mono_arch_get_throw_exception (void)
212 {
213         static guint32* start;
214         static int inited = 0;
215
216         if (inited)
217                 return start;
218
219         inited = 1;
220
221         start = get_throw_exception (FALSE);
222
223         return start;
224 }
225
226 gpointer 
227 mono_arch_get_rethrow_exception (void)
228 {
229         static guint32* start;
230         static int inited = 0;
231
232         if (inited)
233                 return start;
234
235         inited = 1;
236
237         start = get_throw_exception (TRUE);
238
239         return start;
240 }
241
242 /**
243  * mono_arch_get_throw_exception_by_name:
244  *
245  * Returns a function pointer which can be used to raise 
246  * corlib exceptions. The returned function has the following 
247  * signature: void (*func) (char *exc_name, gpointer ip); 
248  */
249 gpointer 
250 mono_arch_get_throw_exception_by_name (void)
251 {
252         static guint32 start [64];
253         static int inited = 0;
254         guint32 *code;
255         int reg;
256
257         if (inited)
258                 return start;
259
260         inited = 1;
261         code = start;
262
263 #ifdef SPARCV9
264         reg = sparc_g4;
265 #else
266         reg = sparc_g1;
267 #endif
268
269         sparc_save_imm (code, sparc_sp, -160, sparc_sp);
270
271         sparc_mov_reg_reg (code, sparc_i0, sparc_o2);
272         sparc_set (code, mono_defaults.corlib, sparc_o0);
273         sparc_set (code, "System", sparc_o1);
274         sparc_set (code, mono_exception_from_name, sparc_o7);
275         sparc_jmpl (code, sparc_o7, sparc_g0, sparc_callsite);
276         sparc_nop (code);
277
278         /* Return to the caller, so exception handling does not see this frame */
279         sparc_restore (code, sparc_o0, sparc_g0, sparc_o0);
280
281         /* Put original return address into %o7 */
282         sparc_mov_reg_reg (code, sparc_o1, sparc_o7);
283         sparc_set (code, mono_arch_get_throw_exception (), reg);
284         /* Use a jmp instead of a call so o7 is preserved */
285         sparc_jmpl_imm (code, reg, 0, sparc_g0);
286         sparc_nop (code);
287
288         g_assert ((code - start) < 32);
289
290         return start;
291 }       
292
293 /* mono_arch_find_jit_info:
294  *
295  * This function is used to gather information from @ctx. It return the 
296  * MonoJitInfo of the corresponding function, unwinds one stack frame and
297  * stores the resulting context into @new_ctx. It also stores a string 
298  * describing the stack location into @trace (if not NULL), and modifies
299  * the @lmf if necessary. @native_offset return the IP offset from the 
300  * start of the function or -1 if that info is not available.
301  */
302 MonoJitInfo *
303 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoJitInfo *res, MonoJitInfo *prev_ji, MonoContext *ctx, 
304                          MonoContext *new_ctx, char **trace, MonoLMF **lmf, int *native_offset,
305                          gboolean *managed)
306 {
307         MonoJitInfo *ji;
308         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
309         gpointer *window;
310
311         /* Avoid costly table lookup during stack overflow */
312         if (prev_ji && (ip > prev_ji->code_start && ((guint8*)ip < ((guint8*)prev_ji->code_start) + prev_ji->code_size)))
313                 ji = prev_ji;
314         else
315                 ji = mono_jit_info_table_find (domain, ip);
316
317         if (managed)
318                 *managed = FALSE;
319
320         if (ji != NULL) {
321                 *new_ctx = *ctx;
322
323                 if (managed)
324                         if (!ji->method->wrapper_type)
325                                 *managed = TRUE;
326
327                 if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
328                         /* remove any unused lmf */
329                         *lmf = (*lmf)->previous_lmf;
330                 }
331
332                 /* Restore ip and sp from the saved register window */
333                 window = MONO_SPARC_WINDOW_ADDR (ctx->sp);
334                 new_ctx->ip = window [sparc_i7 - 16];
335                 new_ctx->sp = (gpointer*)(window [sparc_i6 - 16]);
336                 new_ctx->fp = (gpointer*)(MONO_SPARC_WINDOW_ADDR (new_ctx->sp) [sparc_i6 - 16]);
337
338                 *res = *ji;
339                 return res;
340         }
341         else {
342                 if (!(*lmf))
343                         return NULL;
344
345                 *new_ctx = *ctx;
346
347                 if (!(*lmf)->method)
348                         return (gpointer)-1;
349
350                 if ((ji = mono_jit_info_table_find (domain, (gpointer)(*lmf)->ip))) {
351                         *res = *ji;
352                 } else {
353                         memset (res, 0, sizeof (MonoJitInfo));
354                         res->method = (*lmf)->method;
355                 }
356
357                 new_ctx->ip = (*lmf)->ip;
358                 new_ctx->sp = (*lmf)->sp;
359                 new_ctx->fp = (*lmf)->ebp;
360
361                 *lmf = (*lmf)->previous_lmf;
362
363                 return res;
364         }
365 }
366
367 gboolean
368 mono_arch_has_unwind_info (gconstpointer addr)
369 {
370         return FALSE;
371 }
372
373 gboolean
374 mono_arch_handle_exception (void *sigctx, gpointer obj, gboolean test_only)
375 {
376         MonoContext mctx;
377         ucontext_t *ctx = (ucontext_t*)sigctx;
378         gpointer *window;
379
380         /*
381          * Access to the machine state using the ucontext_t parameter is somewhat
382          * under documented under solaris. The code below seems to work under
383          * Solaris 9.
384          */
385 #ifndef __linux__
386         g_assert (!ctx->uc_mcontext.gwins);
387 #else
388         /* better, but doesn't work all the time.  need to rethink! */
389         g_assert (!ctx->uc_mcontext.gregs);
390 #endif
391
392         mctx.ip = ctx->uc_mcontext.gregs [REG_PC];
393         mctx.sp = ctx->uc_mcontext.gregs [REG_SP];
394         window = (gpointer*)(((guint8*)mctx.sp) + MONO_SPARC_STACK_BIAS);
395         mctx.fp = window [sparc_fp - 16];
396
397         mono_handle_exception (&mctx, obj, mctx.ip, test_only);
398         
399         /* We can't use restore_context to return from a signal handler */
400         ctx->uc_mcontext.gregs [REG_PC] = mctx.ip;
401         ctx->uc_mcontext.gregs [REG_nPC] = mctx.ip + 4;
402         ctx->uc_mcontext.gregs [REG_SP] = mctx.sp;
403         window = (gpointer*)(((guint8*)mctx.sp) + MONO_SPARC_STACK_BIAS);
404         window [sparc_fp - 16] = mctx.fp;
405
406         return TRUE;
407 }
408
409 gpointer
410 mono_arch_ip_from_context (void *sigctx)
411 {
412         ucontext_t *ctx = (ucontext_t*)sigctx;
413         return (gpointer)ctx->uc_mcontext.gregs [REG_PC];
414 }
415