e6af5ee08241987d4ea8aebd6a914601258717eb
[mono.git] / mono / mini / exceptions-x86.c
1 /*
2  * exceptions-x86.c: exception support for x86
3  *
4  * Authors:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  */
9
10 #include <config.h>
11 #include <glib.h>
12 #include <signal.h>
13 #include <string.h>
14
15 #include <mono/arch/x86/x86-codegen.h>
16 #include <mono/metadata/appdomain.h>
17 #include <mono/metadata/tabledefs.h>
18 #include <mono/metadata/threads.h>
19 #include <mono/metadata/debug-helpers.h>
20 #include <mono/metadata/exception.h>
21 #include <mono/metadata/gc-internal.h>
22 #include <mono/metadata/mono-debug.h>
23 #include <mono/utils/mono-mmap.h>
24
25 #include "mini.h"
26 #include "mini-x86.h"
27 #include "tasklets.h"
28 #include "debug-mini.h"
29
30 static gpointer signal_exception_trampoline;
31
32 gpointer
33 mono_x86_get_signal_exception_trampoline (MonoTrampInfo **info, gboolean aot) MONO_INTERNAL;
34
35 #ifdef TARGET_WIN32
36 static void (*restore_stack) (void *);
37
38 static MonoW32ExceptionHandler fpe_handler;
39 static MonoW32ExceptionHandler ill_handler;
40 static MonoW32ExceptionHandler segv_handler;
41
42 static LPTOP_LEVEL_EXCEPTION_FILTER old_handler;
43
44 #ifndef PROCESS_CALLBACK_FILTER_ENABLED
45 #       define PROCESS_CALLBACK_FILTER_ENABLED 1
46 #endif
47
48 #define W32_SEH_HANDLE_EX(_ex) \
49         if (_ex##_handler) _ex##_handler(0, er, sctx)
50
51 /*
52  * mono_win32_get_handle_stackoverflow (void):
53  *
54  * Returns a pointer to a method which restores the current context stack
55  * and calls handle_exceptions, when done restores the original stack.
56  */
57 static gpointer
58 mono_win32_get_handle_stackoverflow (void)
59 {
60         static guint8 *start = NULL;
61         guint8 *code;
62
63         if (start)
64                 return start;
65
66         /* restore_contect (void *sigctx) */
67         start = code = mono_global_codeman_reserve (128);
68
69         /* load context into ebx */
70         x86_mov_reg_membase (code, X86_EBX, X86_ESP, 4, 4);
71
72         /* move current stack into edi for later restore */
73         x86_mov_reg_reg (code, X86_EDI, X86_ESP, 4);
74
75         /* use the new freed stack from sigcontext */
76         x86_mov_reg_membase (code, X86_ESP, X86_EBX,  G_STRUCT_OFFSET (struct sigcontext, esp), 4);
77
78         /* get the current domain */
79         x86_call_code (code, mono_domain_get);
80
81         /* get stack overflow exception from domain object */
82         x86_mov_reg_membase (code, X86_EAX, X86_EAX, G_STRUCT_OFFSET (MonoDomain, stack_overflow_ex), 4);
83
84         /* call mono_arch_handle_exception (sctx, stack_overflow_exception_obj, FALSE) */
85         x86_push_imm (code, 0);
86         x86_push_reg (code, X86_EAX);
87         x86_push_reg (code, X86_EBX);
88         x86_call_code (code, mono_arch_handle_exception);
89
90         /* restore the SEH handler stack */
91         x86_mov_reg_reg (code, X86_ESP, X86_EDI, 4);
92
93         /* return */
94         x86_ret (code);
95
96         return start;
97 }
98
99 /* Special hack to workaround the fact that the
100  * when the SEH handler is called the stack is
101  * to small to recover.
102  *
103  * Stack walking part of this method is from mono_handle_exception
104  *
105  * The idea is simple; 
106  *  - walk the stack to free some space (64k)
107  *  - set esp to new stack location
108  *  - call mono_arch_handle_exception with stack overflow exception
109  *  - set esp to SEH handlers stack
110  *  - done
111  */
112 static void 
113 win32_handle_stack_overflow (EXCEPTION_POINTERS* ep, struct sigcontext *sctx) 
114 {
115         SYSTEM_INFO si;
116         DWORD page_size;
117         MonoDomain *domain = mono_domain_get ();
118         MonoJitInfo rji;
119         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
120         MonoLMF *lmf = jit_tls->lmf;            
121         MonoContext initial_ctx;
122         MonoContext ctx;
123         guint32 free_stack = 0;
124         StackFrameInfo frame;
125
126         /* convert sigcontext to MonoContext (due to reuse of stack walking helpers */
127         mono_arch_sigctx_to_monoctx (sctx, &ctx);
128         
129         /* get our os page size */
130         GetSystemInfo(&si);
131         page_size = si.dwPageSize;
132
133         /* Let's walk the stack to recover
134          * the needed stack space (if possible)
135          */
136         memset (&rji, 0, sizeof (rji));
137
138         initial_ctx = ctx;
139         free_stack = (guint8*)(MONO_CONTEXT_GET_BP (&ctx)) - (guint8*)(MONO_CONTEXT_GET_BP (&initial_ctx));
140
141         /* try to free 64kb from our stack */
142         do {
143                 MonoContext new_ctx;
144
145                 mono_arch_find_jit_info (domain, jit_tls, &rji, &ctx, &new_ctx, &lmf, NULL, &frame);
146                 if (!frame.ji) {
147                         g_warning ("Exception inside function without unwind info");
148                         g_assert_not_reached ();
149                 }
150
151                 if (frame.ji != (gpointer)-1) {
152                         free_stack = (guint8*)(MONO_CONTEXT_GET_BP (&ctx)) - (guint8*)(MONO_CONTEXT_GET_BP (&initial_ctx));
153                 }
154
155                 /* todo: we should call abort if ji is -1 */
156                 ctx = new_ctx;
157         } while (free_stack < 64 * 1024 && frame.ji != (gpointer) -1);
158
159         /* convert into sigcontext to be used in mono_arch_handle_exception */
160         mono_arch_monoctx_to_sigctx (&ctx, sctx);
161
162         /* todo: install new stack-guard page */
163
164         /* use the new stack and call mono_arch_handle_exception () */
165         restore_stack (sctx);
166 }
167
168 /*
169  * Unhandled Exception Filter
170  * Top-level per-process exception handler.
171  */
172 LONG CALLBACK seh_handler(EXCEPTION_POINTERS* ep)
173 {
174         EXCEPTION_RECORD* er;
175         CONTEXT* ctx;
176         struct sigcontext* sctx;
177         LONG res;
178
179         res = EXCEPTION_CONTINUE_EXECUTION;
180
181         er = ep->ExceptionRecord;
182         ctx = ep->ContextRecord;
183         sctx = g_malloc(sizeof(struct sigcontext));
184
185         /* Copy Win32 context to UNIX style context */
186         sctx->eax = ctx->Eax;
187         sctx->ebx = ctx->Ebx;
188         sctx->ecx = ctx->Ecx;
189         sctx->edx = ctx->Edx;
190         sctx->ebp = ctx->Ebp;
191         sctx->esp = ctx->Esp;
192         sctx->esi = ctx->Esi;
193         sctx->edi = ctx->Edi;
194         sctx->eip = ctx->Eip;
195
196         switch (er->ExceptionCode) {
197         case EXCEPTION_STACK_OVERFLOW:
198                 win32_handle_stack_overflow (ep, sctx);
199                 break;
200         case EXCEPTION_ACCESS_VIOLATION:
201                 W32_SEH_HANDLE_EX(segv);
202                 break;
203         case EXCEPTION_ILLEGAL_INSTRUCTION:
204                 W32_SEH_HANDLE_EX(ill);
205                 break;
206         case EXCEPTION_INT_DIVIDE_BY_ZERO:
207         case EXCEPTION_INT_OVERFLOW:
208         case EXCEPTION_FLT_DIVIDE_BY_ZERO:
209         case EXCEPTION_FLT_OVERFLOW:
210         case EXCEPTION_FLT_UNDERFLOW:
211         case EXCEPTION_FLT_INEXACT_RESULT:
212                 W32_SEH_HANDLE_EX(fpe);
213                 break;
214         default:
215                 break;
216         }
217
218         /* Copy context back */
219         ctx->Eax = sctx->eax;
220         ctx->Ebx = sctx->ebx;
221         ctx->Ecx = sctx->ecx;
222         ctx->Edx = sctx->edx;
223         ctx->Ebp = sctx->ebp;
224         ctx->Esp = sctx->esp;
225         ctx->Esi = sctx->esi;
226         ctx->Edi = sctx->edi;
227         ctx->Eip = sctx->eip;
228
229         g_free (sctx);
230
231         return res;
232 }
233
234 void win32_seh_init()
235 {
236         /* install restore stack helper */
237         if (!restore_stack)
238                 restore_stack = mono_win32_get_handle_stackoverflow ();
239
240         old_handler = SetUnhandledExceptionFilter(seh_handler);
241 }
242
243 void win32_seh_cleanup()
244 {
245         if (old_handler) SetUnhandledExceptionFilter(old_handler);
246 }
247
248 void win32_seh_set_handler(int type, MonoW32ExceptionHandler handler)
249 {
250         switch (type) {
251         case SIGFPE:
252                 fpe_handler = handler;
253                 break;
254         case SIGILL:
255                 ill_handler = handler;
256                 break;
257         case SIGSEGV:
258                 segv_handler = handler;
259                 break;
260         default:
261                 break;
262         }
263 }
264
265 #endif /* TARGET_WIN32 */
266
267 /*
268  * mono_arch_get_restore_context:
269  *
270  * Returns a pointer to a method which restores a previously saved sigcontext.
271  */
272 gpointer
273 mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot)
274 {
275         guint8 *start = NULL;
276         guint8 *code;
277         MonoJumpInfo *ji = NULL;
278         GSList *unwind_ops = NULL;
279
280         /* restore_contect (MonoContext *ctx) */
281
282         start = code = mono_global_codeman_reserve (128);
283         
284         /* load ctx */
285         x86_mov_reg_membase (code, X86_EAX, X86_ESP, 4, 4);
286
287         /* get return address, stored in ECX */
288         x86_mov_reg_membase (code, X86_ECX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, eip), 4);
289         /* restore EBX */
290         x86_mov_reg_membase (code, X86_EBX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebx), 4);
291         /* restore EDI */
292         x86_mov_reg_membase (code, X86_EDI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, edi), 4);
293         /* restore ESI */
294         x86_mov_reg_membase (code, X86_ESI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, esi), 4);
295         /* restore ESP */
296         x86_mov_reg_membase (code, X86_ESP, X86_EAX,  G_STRUCT_OFFSET (MonoContext, esp), 4);
297         /* save the return addr to the restored stack */
298         x86_push_reg (code, X86_ECX);
299         /* restore EBP */
300         x86_mov_reg_membase (code, X86_EBP, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebp), 4);
301         /* restore ECX */
302         x86_mov_reg_membase (code, X86_ECX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ecx), 4);
303         /* restore EDX */
304         x86_mov_reg_membase (code, X86_EDX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, edx), 4);
305         /* restore EAX */
306         x86_mov_reg_membase (code, X86_EAX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, eax), 4);
307
308         /* jump to the saved IP */
309         x86_ret (code);
310
311         if (info)
312                 *info = mono_tramp_info_create (g_strdup_printf ("restore_context"), start, code - start, ji, unwind_ops);
313         else {
314                 GSList *l;
315
316                 for (l = unwind_ops; l; l = l->next)
317                         g_free (l->data);
318                 g_slist_free (unwind_ops);
319         }
320
321         return start;
322 }
323
324 /*
325  * mono_arch_get_call_filter:
326  *
327  * Returns a pointer to a method which calls an exception filter. We
328  * also use this function to call finally handlers (we pass NULL as 
329  * @exc object in this case).
330  */
331 gpointer
332 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
333 {
334         guint8* start;
335         guint8 *code;
336         MonoJumpInfo *ji = NULL;
337         GSList *unwind_ops = NULL;
338 #ifdef __native_client_codegen__
339         guint kMaxCodeSize = 128;
340 #else
341         guint kMaxCodeSize = 64;
342 #endif  /* __native_client_codegen__ */
343
344         /* call_filter (MonoContext *ctx, unsigned long eip) */
345         start = code = mono_global_codeman_reserve (kMaxCodeSize);
346
347         x86_push_reg (code, X86_EBP);
348         x86_mov_reg_reg (code, X86_EBP, X86_ESP, 4);
349         x86_push_reg (code, X86_EBX);
350         x86_push_reg (code, X86_EDI);
351         x86_push_reg (code, X86_ESI);
352
353         /* load ctx */
354         x86_mov_reg_membase (code, X86_EAX, X86_EBP, 8, 4);
355         /* load eip */
356         x86_mov_reg_membase (code, X86_ECX, X86_EBP, 12, 4);
357         /* save EBP */
358         x86_push_reg (code, X86_EBP);
359
360         /* set new EBP */
361         x86_mov_reg_membase (code, X86_EBP, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebp), 4);
362         /* restore registers used by global register allocation (EBX & ESI) */
363         x86_mov_reg_membase (code, X86_EBX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebx), 4);
364         x86_mov_reg_membase (code, X86_ESI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, esi), 4);
365         x86_mov_reg_membase (code, X86_EDI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, edi), 4);
366
367         /* align stack and save ESP */
368         x86_mov_reg_reg (code, X86_EDX, X86_ESP, 4);
369         x86_alu_reg_imm (code, X86_AND, X86_ESP, -MONO_ARCH_FRAME_ALIGNMENT);
370         g_assert (MONO_ARCH_FRAME_ALIGNMENT >= 8);
371         x86_alu_reg_imm (code, X86_SUB, X86_ESP, MONO_ARCH_FRAME_ALIGNMENT - 8);
372         x86_push_reg (code, X86_EDX);
373
374         /* call the handler */
375         x86_call_reg (code, X86_ECX);
376
377         /* restore ESP */
378         x86_pop_reg (code, X86_ESP);
379
380         /* restore EBP */
381         x86_pop_reg (code, X86_EBP);
382
383         /* restore saved regs */
384         x86_pop_reg (code, X86_ESI);
385         x86_pop_reg (code, X86_EDI);
386         x86_pop_reg (code, X86_EBX);
387         x86_leave (code);
388         x86_ret (code);
389
390         if (info)
391                 *info = mono_tramp_info_create (g_strdup_printf ("call_filter"), start, code - start, ji, unwind_ops);
392         else {
393                 GSList *l;
394
395                 for (l = unwind_ops; l; l = l->next)
396                         g_free (l->data);
397                 g_slist_free (unwind_ops);
398         }
399
400         g_assert ((code - start) < kMaxCodeSize);
401         return start;
402 }
403
404 /*
405  * mono_x86_throw_exception:
406  *
407  *   C function called from the throw trampolines.
408  */
409 void
410 mono_x86_throw_exception (mgreg_t *regs, MonoObject *exc, 
411                                                   mgreg_t eip, gboolean rethrow)
412 {
413         static void (*restore_context) (MonoContext *);
414         MonoContext ctx;
415
416         if (!restore_context)
417                 restore_context = mono_get_restore_context ();
418
419         ctx.esp = regs [X86_ESP];
420         ctx.eip = eip;
421         ctx.ebp = regs [X86_EBP];
422         ctx.edi = regs [X86_EDI];
423         ctx.esi = regs [X86_ESI];
424         ctx.ebx = regs [X86_EBX];
425         ctx.edx = regs [X86_EDX];
426         ctx.ecx = regs [X86_ECX];
427         ctx.eax = regs [X86_EAX];
428
429 #ifdef __APPLE__
430         /* The OSX ABI specifies 16 byte alignment at call sites */
431         g_assert ((ctx.esp % MONO_ARCH_FRAME_ALIGNMENT) == 0);
432 #endif
433
434         if (mono_object_isinst (exc, mono_defaults.exception_class)) {
435                 MonoException *mono_ex = (MonoException*)exc;
436                 if (!rethrow)
437                         mono_ex->stack_trace = NULL;
438         }
439
440         if (mono_debug_using_mono_debugger ()) {
441                 guint8 buf [16], *code;
442
443                 mono_breakpoint_clean_code (NULL, (gpointer)eip, 8, buf, sizeof (buf));
444                 code = buf + 8;
445
446                 if (buf [3] == 0xe8) {
447                         MonoContext ctx_cp = ctx;
448                         ctx_cp.eip = eip - 5;
449
450                         if (mono_debugger_handle_exception (&ctx_cp, exc)) {
451                                 restore_context (&ctx_cp);
452                                 g_assert_not_reached ();
453                         }
454                 }
455         }
456
457         /* adjust eip so that it point into the call instruction */
458         ctx.eip -= 1;
459
460         mono_handle_exception (&ctx, exc, (gpointer)eip, FALSE);
461
462         restore_context (&ctx);
463
464         g_assert_not_reached ();
465 }
466
467 void
468 mono_x86_throw_corlib_exception (mgreg_t *regs, guint32 ex_token_index, 
469                                                                  mgreg_t eip, gint32 pc_offset)
470 {
471         guint32 ex_token = MONO_TOKEN_TYPE_DEF | ex_token_index;
472         MonoException *ex;
473
474         ex = mono_exception_from_token (mono_defaults.exception_class->image, ex_token);
475
476         eip -= pc_offset;
477
478         /* Negate the ip adjustment done in mono_x86_throw_exception () */
479         eip += 1;
480
481         mono_x86_throw_exception (regs, (MonoObject*)ex, eip, FALSE);
482 }
483
484 static void
485 mono_x86_resume_unwind (mgreg_t *regs, MonoObject *exc, 
486                                                 mgreg_t eip, gboolean rethrow)
487 {
488         MonoContext ctx;
489
490         ctx.esp = regs [X86_ESP];
491         ctx.eip = eip;
492         ctx.ebp = regs [X86_EBP];
493         ctx.edi = regs [X86_EDI];
494         ctx.esi = regs [X86_ESI];
495         ctx.ebx = regs [X86_EBX];
496         ctx.edx = regs [X86_EDX];
497         ctx.ecx = regs [X86_ECX];
498         ctx.eax = regs [X86_EAX];
499
500         mono_resume_unwind (&ctx);
501 }
502
503 /*
504  * get_throw_trampoline:
505  *
506  *  Generate a call to mono_x86_throw_exception/
507  * mono_x86_throw_corlib_exception.
508  * If LLVM is true, generate code which assumes the caller is LLVM generated code, 
509  * which doesn't push the arguments.
510  */
511 static guint8*
512 get_throw_trampoline (const char *name, gboolean rethrow, gboolean llvm, gboolean corlib, gboolean llvm_abs, gboolean resume_unwind, MonoTrampInfo **info, gboolean aot)
513 {
514         guint8 *start, *code;
515         int i, stack_size, stack_offset, arg_offsets [5], regs_offset;
516         MonoJumpInfo *ji = NULL;
517         GSList *unwind_ops = NULL;
518 #ifdef __native_client_codegen__
519         guint kMaxCodeSize = 256;
520 #else
521         guint kMaxCodeSize = 128;
522 #endif
523         start = code = mono_global_codeman_reserve (kMaxCodeSize);
524
525         stack_size = 128;
526
527         /* 
528          * On apple, the stack is misaligned by the pushing of the return address.
529          */
530         if (!llvm && corlib)
531                 /* On OSX, we don't generate alignment code to save space */
532                 stack_size += 4;
533         else
534                 stack_size += MONO_ARCH_FRAME_ALIGNMENT - 4;
535
536         /*
537          * The stack looks like this:
538          * <pc offset> (only if corlib is TRUE)
539          * <exception object>/<type token>
540          * <return addr> <- esp (unaligned on apple)
541          */
542
543         mono_add_unwind_op_def_cfa (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_ESP, 4);
544         mono_add_unwind_op_offset (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_NREG, -4);
545
546         /* Alloc frame */
547         x86_alu_reg_imm (code, X86_SUB, X86_ESP, stack_size);
548         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 4);
549
550         arg_offsets [0] = 0;
551         arg_offsets [1] = 4;
552         arg_offsets [2] = 8;
553         arg_offsets [3] = 12;
554         regs_offset = 16;
555
556         /* Save registers */
557         for (i = 0; i < X86_NREG; ++i)
558                 if (i != X86_ESP)
559                         x86_mov_membase_reg (code, X86_ESP, regs_offset + (i * 4), i, 4);
560         /* Calculate the offset between the current sp and the sp of the caller */
561         if (llvm) {
562                 /* LLVM doesn't push the arguments */
563                 stack_offset = stack_size + 4;
564         } else {
565                 if (corlib) {
566                         /* Two arguments */
567                         stack_offset = stack_size + 4 + 8;
568 #ifdef __APPLE__
569                         /* We don't generate stack alignment code on osx to save space */
570 #endif
571                 } else {
572                         /* One argument + stack alignment */
573                         stack_offset = stack_size + 4 + 4;
574 #ifdef __APPLE__
575                         /* Pop the alignment added by OP_THROW too */
576                         stack_offset += MONO_ARCH_FRAME_ALIGNMENT - 4;
577 #else
578                         if (mono_do_x86_stack_align)
579                                 stack_offset += MONO_ARCH_FRAME_ALIGNMENT - 4;
580 #endif
581                 }
582         }
583         /* Save ESP */
584         x86_lea_membase (code, X86_EAX, X86_ESP, stack_offset);
585         x86_mov_membase_reg (code, X86_ESP, regs_offset + (X86_ESP * 4), X86_EAX, 4);
586
587         /* Set arg1 == regs */
588         x86_lea_membase (code, X86_EAX, X86_ESP, regs_offset);
589         x86_mov_membase_reg (code, X86_ESP, arg_offsets [0], X86_EAX, 4);
590         /* Set arg2 == exc/ex_token_index */
591         if (resume_unwind)
592                 x86_mov_reg_imm (code, X86_EAX, 0);
593         else
594                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size + 4, 4);
595         x86_mov_membase_reg (code, X86_ESP, arg_offsets [1], X86_EAX, 4);
596         /* Set arg3 == eip */
597         if (llvm_abs)
598                 x86_alu_reg_reg (code, X86_XOR, X86_EAX, X86_EAX);
599         else
600                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size, 4);
601         x86_mov_membase_reg (code, X86_ESP, arg_offsets [2], X86_EAX, 4);
602         /* Set arg4 == rethrow/pc_offset */
603         if (resume_unwind) {
604                 x86_mov_membase_imm (code, X86_ESP, arg_offsets [3], 0, 4);
605         } else if (corlib) {
606                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size + 8, 4);
607                 if (llvm_abs) {
608                         /* 
609                          * The caller is LLVM code which passes the absolute address not a pc offset,
610                          * so compensate by passing 0 as 'ip' and passing the negated abs address as
611                          * the pc offset.
612                          */
613                         x86_neg_reg (code, X86_EAX);
614                 }
615                 x86_mov_membase_reg (code, X86_ESP, arg_offsets [3], X86_EAX, 4);
616         } else {
617                 x86_mov_membase_imm (code, X86_ESP, arg_offsets [3], rethrow, 4);
618         }
619         /* Make the call */
620         if (aot) {
621                 // This can be called from runtime code, which can't guarantee that
622                 // ebx contains the got address.
623                 // So emit the got address loading code too
624                 code = mono_arch_emit_load_got_addr (start, code, NULL, &ji);
625                 code = mono_arch_emit_load_aotconst (start, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, corlib ? "mono_x86_throw_corlib_exception" : "mono_x86_throw_exception");
626                 x86_call_reg (code, X86_EAX);
627         } else {
628                 x86_call_code (code, resume_unwind ? (mono_x86_resume_unwind) : (corlib ? (gpointer)mono_x86_throw_corlib_exception : (gpointer)mono_x86_throw_exception));
629         }
630         x86_breakpoint (code);
631
632         g_assert ((code - start) < kMaxCodeSize);
633
634         if (info)
635                 *info = mono_tramp_info_create (g_strdup (name), start, code - start, ji, unwind_ops);
636         else {
637                 GSList *l;
638
639                 for (l = unwind_ops; l; l = l->next)
640                         g_free (l->data);
641                 g_slist_free (unwind_ops);
642         }
643
644         return start;
645 }
646
647 /**
648  * mono_arch_get_throw_exception:
649  *
650  * Returns a function pointer which can be used to raise 
651  * exceptions. The returned function has the following 
652  * signature: void (*func) (MonoException *exc); 
653  * For example to raise an arithmetic exception you can use:
654  *
655  * x86_push_imm (code, mono_get_exception_arithmetic ()); 
656  * x86_call_code (code, arch_get_throw_exception ()); 
657  *
658  */
659 gpointer 
660 mono_arch_get_throw_exception (MonoTrampInfo **info, gboolean aot)
661 {
662         return get_throw_trampoline ("throw_exception", FALSE, FALSE, FALSE, FALSE, FALSE, info, aot);
663 }
664
665 gpointer 
666 mono_arch_get_rethrow_exception (MonoTrampInfo **info, gboolean aot)
667 {
668         return get_throw_trampoline ("rethrow_exception", TRUE, FALSE, FALSE, FALSE, FALSE, info, aot);
669 }
670
671 /**
672  * mono_arch_get_throw_corlib_exception:
673  *
674  * Returns a function pointer which can be used to raise 
675  * corlib exceptions. The returned function has the following 
676  * signature: void (*func) (guint32 ex_token, guint32 offset); 
677  * Here, offset is the offset which needs to be substracted from the caller IP 
678  * to get the IP of the throw. Passing the offset has the advantage that it 
679  * needs no relocations in the caller.
680  */
681 gpointer 
682 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
683 {
684         return get_throw_trampoline ("throw_corlib_exception", FALSE, FALSE, TRUE, FALSE, FALSE, info, aot);
685 }
686
687 void
688 mono_arch_exceptions_init (void)
689 {
690         guint8 *tramp;
691
692 /* 
693  * If we're running WoW64, we need to set the usermode exception policy 
694  * for SEHs to behave. This requires hotfix http://support.microsoft.com/kb/976038
695  * or (eventually) Windows 7 SP1.
696  */
697 #ifdef HOST_WIN32
698         DWORD flags;
699         FARPROC getter;
700         FARPROC setter;
701         HMODULE kernel32 = LoadLibraryW (L"kernel32.dll");
702
703         if (kernel32) {
704                 getter = GetProcAddress (kernel32, "GetProcessUserModeExceptionPolicy");
705                 setter = GetProcAddress (kernel32, "SetProcessUserModeExceptionPolicy");
706                 if (getter && setter) {
707                         if (getter (&flags))
708                                 setter (flags & ~PROCESS_CALLBACK_FILTER_ENABLED);
709                 }
710         }
711 #endif
712
713         if (mono_aot_only) {
714                 signal_exception_trampoline = mono_aot_get_trampoline ("x86_signal_exception_trampoline");
715                 return;
716         }
717
718         /* LLVM needs different throw trampolines */
719         tramp = get_throw_trampoline ("llvm_throw_exception_trampoline", FALSE, TRUE, FALSE, FALSE, FALSE, NULL, FALSE);
720         mono_register_jit_icall (tramp, "llvm_throw_exception_trampoline", NULL, TRUE);
721
722         tramp = get_throw_trampoline ("llvm_rethrow_exception_trampoline", FALSE, TRUE, FALSE, FALSE, FALSE, NULL, FALSE);
723         mono_register_jit_icall (tramp, "llvm_rethrow_exception_trampoline", NULL, TRUE);
724
725         tramp = get_throw_trampoline ("llvm_throw_corlib_exception_trampoline", FALSE, TRUE, TRUE, FALSE, FALSE, NULL, FALSE);
726         mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_trampoline", NULL, TRUE);
727
728         tramp = get_throw_trampoline ("llvm_throw_corlib_exception_abs_trampoline", FALSE, TRUE, TRUE, TRUE, FALSE, NULL, FALSE);
729         mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_abs_trampoline", NULL, TRUE);
730
731         tramp = get_throw_trampoline ("llvm_resume_unwind_trampoline", FALSE, FALSE, FALSE, FALSE, TRUE, NULL, FALSE);
732         mono_register_jit_icall (tramp, "llvm_resume_unwind_trampoline", NULL, TRUE);
733
734         signal_exception_trampoline = mono_x86_get_signal_exception_trampoline (NULL, FALSE);
735 }
736
737 /*
738  * mono_arch_find_jit_info:
739  *
740  * See exceptions-amd64.c for docs.
741  */
742 gboolean
743 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, 
744                                                          MonoJitInfo *ji, MonoContext *ctx, 
745                                                          MonoContext *new_ctx, MonoLMF **lmf,
746                                                          mgreg_t **save_locations,
747                                                          StackFrameInfo *frame)
748 {
749         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
750
751         memset (frame, 0, sizeof (StackFrameInfo));
752         frame->ji = ji;
753         frame->managed = FALSE;
754
755         *new_ctx = *ctx;
756
757         if (ji != NULL) {
758                 gssize regs [MONO_MAX_IREGS + 1];
759                 guint8 *cfa;
760                 guint32 unwind_info_len;
761                 guint8 *unwind_info;
762
763                 frame->type = FRAME_TYPE_MANAGED;
764
765                 if (!ji->method->wrapper_type || ji->method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD)
766                         frame->managed = TRUE;
767
768                 if (ji->from_aot)
769                         unwind_info = mono_aot_get_unwind_info (ji, &unwind_info_len);
770                 else
771                         unwind_info = mono_get_cached_unwind_info (ji->used_regs, &unwind_info_len);
772
773                 regs [X86_EAX] = new_ctx->eax;
774                 regs [X86_EBX] = new_ctx->ebx;
775                 regs [X86_ECX] = new_ctx->ecx;
776                 regs [X86_EDX] = new_ctx->edx;
777                 regs [X86_ESP] = new_ctx->esp;
778                 regs [X86_EBP] = new_ctx->ebp;
779                 regs [X86_ESI] = new_ctx->esi;
780                 regs [X86_EDI] = new_ctx->edi;
781                 regs [X86_NREG] = new_ctx->eip;
782
783                 mono_unwind_frame (unwind_info, unwind_info_len, ji->code_start, 
784                                                    (guint8*)ji->code_start + ji->code_size,
785                                                    ip, regs, MONO_MAX_IREGS + 1,
786                                                    save_locations, MONO_MAX_IREGS, &cfa);
787
788                 new_ctx->eax = regs [X86_EAX];
789                 new_ctx->ebx = regs [X86_EBX];
790                 new_ctx->ecx = regs [X86_ECX];
791                 new_ctx->edx = regs [X86_EDX];
792                 new_ctx->esp = regs [X86_ESP];
793                 new_ctx->ebp = regs [X86_EBP];
794                 new_ctx->esi = regs [X86_ESI];
795                 new_ctx->edi = regs [X86_EDI];
796                 new_ctx->eip = regs [X86_NREG];
797
798                 /* The CFA becomes the new SP value */
799                 new_ctx->esp = (gssize)cfa;
800
801                 /* Adjust IP */
802                 new_ctx->eip --;
803
804                 if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
805                         /* remove any unused lmf */
806                         *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
807                 }
808
809                 /* Pop arguments off the stack */
810                 /* 
811                  * FIXME: LLVM doesn't push these, we can't use ji->from_llvm as it describes
812                  * the caller.
813                  */
814 #ifndef ENABLE_LLVM
815                 {
816                         MonoJitArgumentInfo *arg_info = g_newa (MonoJitArgumentInfo, mono_method_signature (ji->method)->param_count + 1);
817
818                         guint32 stack_to_pop = mono_arch_get_argument_info (mono_method_signature (ji->method), mono_method_signature (ji->method)->param_count, arg_info);
819                         new_ctx->esp += stack_to_pop;
820                 }
821 #endif
822
823                 return TRUE;
824         } else if (*lmf) {
825
826                 if (((guint64)(*lmf)->previous_lmf) & 2) {
827                         /* 
828                          * This LMF entry is created by the soft debug code to mark transitions to
829                          * managed code done during invokes.
830                          */
831                         MonoLMFExt *ext = (MonoLMFExt*)(*lmf);
832
833                         g_assert (ext->debugger_invoke);
834
835                         memcpy (new_ctx, &ext->ctx, sizeof (MonoContext));
836
837                         *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
838
839                         frame->type = FRAME_TYPE_DEBUGGER_INVOKE;
840
841                         return TRUE;
842                 }
843                 
844                 if ((ji = mini_jit_info_table_find (domain, (gpointer)(*lmf)->eip, NULL))) {
845                 } else {
846                         if (!((guint32)((*lmf)->previous_lmf) & 1))
847                                 /* Top LMF entry */
848                                 return FALSE;
849                         g_assert_not_reached ();
850                         /* Trampoline lmf frame */
851                         frame->method = (*lmf)->method;
852                 }
853
854                 new_ctx->esi = (*lmf)->esi;
855                 new_ctx->edi = (*lmf)->edi;
856                 new_ctx->ebx = (*lmf)->ebx;
857                 new_ctx->ebp = (*lmf)->ebp;
858                 new_ctx->eip = (*lmf)->eip;
859
860                 /* Adjust IP */
861                 new_ctx->eip --;
862
863                 frame->ji = ji;
864                 frame->type = FRAME_TYPE_MANAGED_TO_NATIVE;
865
866                 /* Check if we are in a trampoline LMF frame */
867                 if ((guint32)((*lmf)->previous_lmf) & 1) {
868                         /* lmf->esp is set by the trampoline code */
869                         new_ctx->esp = (*lmf)->esp;
870
871                         /* Pop arguments off the stack */
872                         /* FIXME: Handle the delegate case too ((*lmf)->method == NULL) */
873                         /* FIXME: Handle the IMT/vtable case too */
874 #ifndef ENABLE_LLVM
875                         if ((*lmf)->method) {
876                                 MonoMethod *method = (*lmf)->method;
877                                 MonoJitArgumentInfo *arg_info = g_newa (MonoJitArgumentInfo, mono_method_signature (method)->param_count + 1);
878
879                                 guint32 stack_to_pop = mono_arch_get_argument_info (mono_method_signature (method), mono_method_signature (method)->param_count, arg_info);
880                                 new_ctx->esp += stack_to_pop;
881                         }
882 #endif
883                 }
884                 else
885                         /* the lmf is always stored on the stack, so the following
886                          * expression points to a stack location which can be used as ESP */
887                         new_ctx->esp = (unsigned long)&((*lmf)->eip);
888
889                 *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
890
891                 return TRUE;
892         }
893
894         return FALSE;
895 }
896
897 #ifdef __sun
898 #define REG_EAX EAX
899 #define REG_EBX EBX
900 #define REG_ECX ECX
901 #define REG_EDX EDX
902 #define REG_EBP EBP
903 #define REG_ESP ESP
904 #define REG_ESI ESI
905 #define REG_EDI EDI
906 #define REG_EIP EIP
907 #endif
908
909 void
910 mono_arch_sigctx_to_monoctx (void *sigctx, MonoContext *mctx)
911 {
912 #if defined (__native_client__)
913         printf("WARNING: mono_arch_sigctx_to_monoctx() called!\n");
914         mctx->eax = 0xDEADBEEF;
915         mctx->ebx = 0xDEADBEEF;
916         mctx->ecx = 0xDEADBEEF;
917         mctx->edx = 0xDEADBEEF;
918         mctx->ebp = 0xDEADBEEF;
919         mctx->esp = 0xDEADBEEF;
920         mctx->esi = 0xDEADBEEF;
921         mctx->edi = 0xDEADBEEF;
922         mctx->eip = 0xDEADBEEF;
923 #else
924 #ifdef MONO_ARCH_USE_SIGACTION
925         ucontext_t *ctx = (ucontext_t*)sigctx;
926         
927         mctx->eax = UCONTEXT_REG_EAX (ctx);
928         mctx->ebx = UCONTEXT_REG_EBX (ctx);
929         mctx->ecx = UCONTEXT_REG_ECX (ctx);
930         mctx->edx = UCONTEXT_REG_EDX (ctx);
931         mctx->ebp = UCONTEXT_REG_EBP (ctx);
932         mctx->esp = UCONTEXT_REG_ESP (ctx);
933         mctx->esi = UCONTEXT_REG_ESI (ctx);
934         mctx->edi = UCONTEXT_REG_EDI (ctx);
935         mctx->eip = UCONTEXT_REG_EIP (ctx);
936 #else   
937         struct sigcontext *ctx = (struct sigcontext *)sigctx;
938
939         mctx->eax = ctx->SC_EAX;
940         mctx->ebx = ctx->SC_EBX;
941         mctx->ecx = ctx->SC_ECX;
942         mctx->edx = ctx->SC_EDX;
943         mctx->ebp = ctx->SC_EBP;
944         mctx->esp = ctx->SC_ESP;
945         mctx->esi = ctx->SC_ESI;
946         mctx->edi = ctx->SC_EDI;
947         mctx->eip = ctx->SC_EIP;
948 #endif
949 #endif /* if defined(__native_client__) */
950 }
951
952 void
953 mono_arch_monoctx_to_sigctx (MonoContext *mctx, void *sigctx)
954 {
955 #if defined(__native_client__)
956         printf("WARNING: mono_arch_monoctx_to_sigctx() called!\n");
957 #else
958 #ifdef MONO_ARCH_USE_SIGACTION
959         ucontext_t *ctx = (ucontext_t*)sigctx;
960
961         UCONTEXT_REG_EAX (ctx) = mctx->eax;
962         UCONTEXT_REG_EBX (ctx) = mctx->ebx;
963         UCONTEXT_REG_ECX (ctx) = mctx->ecx;
964         UCONTEXT_REG_EDX (ctx) = mctx->edx;
965         UCONTEXT_REG_EBP (ctx) = mctx->ebp;
966         UCONTEXT_REG_ESP (ctx) = mctx->esp;
967         UCONTEXT_REG_ESI (ctx) = mctx->esi;
968         UCONTEXT_REG_EDI (ctx) = mctx->edi;
969         UCONTEXT_REG_EIP (ctx) = mctx->eip;
970 #else
971         struct sigcontext *ctx = (struct sigcontext *)sigctx;
972
973         ctx->SC_EAX = mctx->eax;
974         ctx->SC_EBX = mctx->ebx;
975         ctx->SC_ECX = mctx->ecx;
976         ctx->SC_EDX = mctx->edx;
977         ctx->SC_EBP = mctx->ebp;
978         ctx->SC_ESP = mctx->esp;
979         ctx->SC_ESI = mctx->esi;
980         ctx->SC_EDI = mctx->edi;
981         ctx->SC_EIP = mctx->eip;
982 #endif
983 #endif /* __native_client__ */
984 }       
985
986 gpointer
987 mono_arch_ip_from_context (void *sigctx)
988 {
989 #if defined(__native_client__)
990         printf("WARNING: mono_arch_ip_from_context() called!\n");
991         return (NULL);
992 #else
993 #ifdef MONO_ARCH_USE_SIGACTION
994         ucontext_t *ctx = (ucontext_t*)sigctx;
995         return (gpointer)UCONTEXT_REG_EIP (ctx);
996 #else
997         struct sigcontext *ctx = sigctx;
998         return (gpointer)ctx->SC_EIP;
999 #endif
1000 #endif  /* __native_client__ */
1001 }
1002
1003 /*
1004  * handle_exception:
1005  *
1006  *   Called by resuming from a signal handler.
1007  */
1008 static void
1009 handle_signal_exception (gpointer obj)
1010 {
1011         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1012         MonoContext ctx;
1013         static void (*restore_context) (MonoContext *);
1014
1015         if (!restore_context)
1016                 restore_context = mono_get_restore_context ();
1017
1018         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
1019
1020         if (mono_debugger_handle_exception (&ctx, (MonoObject *)obj))
1021                 return;
1022
1023         mono_handle_exception (&ctx, obj, MONO_CONTEXT_GET_IP (&ctx), FALSE);
1024
1025         restore_context (&ctx);
1026 }
1027
1028 /*
1029  * mono_x86_get_signal_exception_trampoline:
1030  *
1031  *   This x86 specific trampoline is used to call handle_signal_exception.
1032  */
1033 gpointer
1034 mono_x86_get_signal_exception_trampoline (MonoTrampInfo **info, gboolean aot)
1035 {
1036         guint8 *start, *code;
1037         MonoJumpInfo *ji = NULL;
1038         GSList *unwind_ops = NULL;
1039         int stack_size;
1040
1041         start = code = mono_global_codeman_reserve (128);
1042
1043         /* Caller ip */
1044         x86_push_reg (code, X86_ECX);
1045
1046         mono_add_unwind_op_def_cfa (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_ESP, 4);
1047         mono_add_unwind_op_offset (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_NREG, -4);
1048
1049         /* Fix the alignment to be what apple expects */
1050         stack_size = 12;
1051
1052         x86_alu_reg_imm (code, X86_SUB, X86_ESP, stack_size);
1053         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 4);
1054
1055         /* Arg1 */
1056         x86_mov_membase_reg (code, X86_ESP, 0, X86_EAX, 4);
1057         /* Branch to target */
1058         x86_call_reg (code, X86_EDX);
1059
1060         g_assert ((code - start) < 128);
1061
1062         if (info)
1063                 *info = mono_tramp_info_create (g_strdup ("x86_signal_exception_trampoline"), start, code - start, ji, unwind_ops);
1064         else {
1065                 GSList *l;
1066
1067                 for (l = unwind_ops; l; l = l->next)
1068                         g_free (l->data);
1069                 g_slist_free (unwind_ops);
1070         }
1071
1072         return start;
1073 }
1074
1075 gboolean
1076 mono_arch_handle_exception (void *sigctx, gpointer obj, gboolean test_only)
1077 {
1078 #if defined(MONO_ARCH_USE_SIGACTION)
1079         ucontext_t *ctx = (ucontext_t*)sigctx;
1080
1081         /*
1082          * Handling the exception in the signal handler is problematic, since the original
1083          * signal is disabled, and we could run arbitrary code though the debugger. So
1084          * resume into the normal stack and do most work there if possible.
1085          */
1086         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1087         guint64 sp = UCONTEXT_REG_ESP (ctx);
1088
1089         /* Pass the ctx parameter in TLS */
1090         mono_arch_sigctx_to_monoctx (ctx, &jit_tls->ex_ctx);
1091         /*
1092          * Can't pass the obj on the stack, since we are executing on the
1093          * same stack. Can't save it into MonoJitTlsData, since it needs GC tracking.
1094          * So put it into a register, and branch to a trampoline which
1095          * pushes it.
1096          */
1097         g_assert (!test_only);
1098         UCONTEXT_REG_EAX (ctx) = (gsize)obj;
1099         UCONTEXT_REG_ECX (ctx) = UCONTEXT_REG_EIP (ctx);
1100         UCONTEXT_REG_EDX (ctx) = (gsize)handle_signal_exception;
1101
1102         /* Allocate a stack frame, align it to 16 bytes which is needed on apple */
1103         sp -= 16;
1104         sp &= ~15;
1105         UCONTEXT_REG_ESP (ctx) = sp;
1106
1107         UCONTEXT_REG_EIP (ctx) = (gsize)signal_exception_trampoline;
1108
1109         return TRUE;
1110 #elif defined (TARGET_WIN32)
1111         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1112         struct sigcontext *ctx = (struct sigcontext *)sigctx;
1113         guint64 sp = ctx->SC_ESP;
1114
1115         mono_arch_sigctx_to_monoctx (sigctx, &jit_tls->ex_ctx);
1116
1117         /*
1118          * Can't pass the obj on the stack, since we are executing on the
1119          * same stack. Can't save it into MonoJitTlsData, since it needs GC tracking.
1120          * So put it into a register, and branch to a trampoline which
1121          * pushes it.
1122          */
1123         g_assert (!test_only);
1124         ctx->SC_EAX = (gsize)obj;
1125         ctx->SC_ECX = ctx->SC_EIP;
1126         ctx->SC_EDX = (gsize)handle_signal_exception;
1127
1128         /* Allocate a stack frame, align it to 16 bytes which is needed on apple */
1129         sp -= 16;
1130         sp &= ~15;
1131         ctx->SC_ESP = sp;
1132
1133         ctx->SC_EIP = (gsize)signal_exception_trampoline;
1134
1135         return TRUE;
1136 #else
1137         MonoContext mctx;
1138
1139         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
1140
1141         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj))
1142                 return TRUE;
1143
1144         mono_handle_exception (&mctx, obj, (gpointer)mctx.eip, test_only);
1145
1146         mono_arch_monoctx_to_sigctx (&mctx, sigctx);
1147
1148         return TRUE;
1149 #endif
1150 }
1151
1152 static void
1153 restore_soft_guard_pages (void)
1154 {
1155         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1156         if (jit_tls->stack_ovf_guard_base)
1157                 mono_mprotect (jit_tls->stack_ovf_guard_base, jit_tls->stack_ovf_guard_size, MONO_MMAP_NONE);
1158 }
1159
1160 /* 
1161  * this function modifies mctx so that when it is restored, it
1162  * won't execcute starting at mctx.eip, but in a function that
1163  * will restore the protection on the soft-guard pages and return back to
1164  * continue at mctx.eip.
1165  */
1166 static void
1167 prepare_for_guard_pages (MonoContext *mctx)
1168 {
1169         gpointer *sp;
1170         sp = (gpointer)(mctx->esp);
1171         sp -= 1;
1172         /* the resturn addr */
1173         sp [0] = (gpointer)(mctx->eip);
1174         mctx->eip = (unsigned long)restore_soft_guard_pages;
1175         mctx->esp = (unsigned long)sp;
1176 }
1177
1178 static void
1179 altstack_handle_and_restore (void *sigctx, gpointer obj, gboolean stack_ovf)
1180 {
1181         void (*restore_context) (MonoContext *);
1182         MonoContext mctx;
1183
1184         restore_context = mono_get_restore_context ();
1185         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
1186
1187         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj)) {
1188                 if (stack_ovf)
1189                         prepare_for_guard_pages (&mctx);
1190                 restore_context (&mctx);
1191         }
1192
1193         mono_handle_exception (&mctx, obj, (gpointer)mctx.eip, FALSE);
1194         if (stack_ovf)
1195                 prepare_for_guard_pages (&mctx);
1196         restore_context (&mctx);
1197 }
1198
1199 void
1200 mono_arch_handle_altstack_exception (void *sigctx, gpointer fault_addr, gboolean stack_ovf)
1201 {
1202 #ifdef MONO_ARCH_USE_SIGACTION
1203         MonoException *exc = NULL;
1204         ucontext_t *ctx = (ucontext_t*)sigctx;
1205         MonoJitInfo *ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)UCONTEXT_REG_EIP (ctx), NULL);
1206         gpointer *sp;
1207         int frame_size;
1208
1209         /* if we didn't find a managed method for the ip address and it matches the fault
1210          * address, we assume we followed a broken pointer during an indirect call, so
1211          * we try the lookup again with the return address pushed on the stack
1212          */
1213         if (!ji && fault_addr == (gpointer)UCONTEXT_REG_EIP (ctx)) {
1214                 glong *sp = (gpointer)UCONTEXT_REG_ESP (ctx);
1215                 ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)sp [0], NULL);
1216                 if (ji)
1217                         UCONTEXT_REG_EIP (ctx) = sp [0];
1218         }
1219         if (stack_ovf)
1220                 exc = mono_domain_get ()->stack_overflow_ex;
1221         if (!ji)
1222                 mono_handle_native_sigsegv (SIGSEGV, sigctx);
1223         /* setup a call frame on the real stack so that control is returned there
1224          * and exception handling can continue.
1225          * If this was a stack overflow the caller already ensured the stack pages
1226          * needed have been unprotected.
1227          * The frame looks like:
1228          *   ucontext struct
1229          *   test_only arg
1230          *   exception arg
1231          *   ctx arg
1232          *   return ip
1233          */
1234         frame_size = sizeof (ucontext_t) + sizeof (gpointer) * 4;
1235         frame_size += 15;
1236         frame_size &= ~15;
1237         sp = (gpointer)(UCONTEXT_REG_ESP (ctx) & ~15);
1238         sp = (gpointer)((char*)sp - frame_size);
1239         /* the incoming arguments are aligned to 16 bytes boundaries, so the return address IP
1240          * goes at sp [-1]
1241          */
1242         sp [-1] = (gpointer)UCONTEXT_REG_EIP (ctx);
1243         sp [0] = sp + 4;
1244         sp [1] = exc;
1245         sp [2] = (gpointer)stack_ovf;
1246         /* may need to adjust pointers in the new struct copy, depending on the OS */
1247         memcpy (sp + 4, ctx, sizeof (ucontext_t));
1248         /* at the return form the signal handler execution starts in altstack_handle_and_restore() */
1249         UCONTEXT_REG_EIP (ctx) = (unsigned long)altstack_handle_and_restore;
1250         UCONTEXT_REG_ESP (ctx) = (unsigned long)(sp - 1);
1251 #endif
1252 }
1253
1254 #if MONO_SUPPORT_TASKLETS
1255 MonoContinuationRestore
1256 mono_tasklets_arch_restore (void)
1257 {
1258         static guint8* saved = NULL;
1259         guint8 *code, *start;
1260
1261 #ifdef __native_client_codegen__
1262         g_print("mono_tasklets_arch_restore needs to be aligned for Native Client\n");
1263 #endif
1264         if (saved)
1265                 return (MonoContinuationRestore)saved;
1266         code = start = mono_global_codeman_reserve (48);
1267         /* the signature is: restore (MonoContinuation *cont, int state, MonoLMF **lmf_addr) */
1268         /* put cont in edx */
1269         x86_mov_reg_membase (code, X86_EDX, X86_ESP, 4, 4);
1270         /* setup the copy of the stack */
1271         x86_mov_reg_membase (code, X86_ECX, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, stack_used_size), 4);
1272         x86_shift_reg_imm (code, X86_SHR, X86_ECX, 2);
1273         x86_cld (code);
1274         x86_mov_reg_membase (code, X86_ESI, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, saved_stack), 4);
1275         x86_mov_reg_membase (code, X86_EDI, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, return_sp), 4);
1276         x86_prefix (code, X86_REP_PREFIX);
1277         x86_movsl (code);
1278
1279         /* now restore the registers from the LMF */
1280         x86_mov_reg_membase (code, X86_ECX, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, lmf), 4);
1281         x86_mov_reg_membase (code, X86_EBX, X86_ECX, G_STRUCT_OFFSET (MonoLMF, ebx), 4);
1282         x86_mov_reg_membase (code, X86_EBP, X86_ECX, G_STRUCT_OFFSET (MonoLMF, ebp), 4);
1283         x86_mov_reg_membase (code, X86_ESI, X86_ECX, G_STRUCT_OFFSET (MonoLMF, esi), 4);
1284         x86_mov_reg_membase (code, X86_EDI, X86_ECX, G_STRUCT_OFFSET (MonoLMF, edi), 4);
1285
1286         /* restore the lmf chain */
1287         /*x86_mov_reg_membase (code, X86_ECX, X86_ESP, 12, 4);
1288         x86_mov_membase_reg (code, X86_ECX, 0, X86_EDX, 4);*/
1289
1290         /* state in eax, so it's setup as the return value */
1291         x86_mov_reg_membase (code, X86_EAX, X86_ESP, 8, 4);
1292         x86_jump_membase (code, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, return_ip));
1293         g_assert ((code - start) <= 48);
1294         saved = start;
1295         return (MonoContinuationRestore)saved;
1296 }
1297 #endif
1298