[Fix] Turn off exception callback filtering on WoW64.
[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, &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
314         return start;
315 }
316
317 /*
318  * mono_arch_get_call_filter:
319  *
320  * Returns a pointer to a method which calls an exception filter. We
321  * also use this function to call finally handlers (we pass NULL as 
322  * @exc object in this case).
323  */
324 gpointer
325 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
326 {
327         guint8* start;
328         guint8 *code;
329         MonoJumpInfo *ji = NULL;
330         GSList *unwind_ops = NULL;
331 #ifdef __native_client_codegen__
332         guint kMaxCodeSize = 128;
333 #else
334         guint kMaxCodeSize = 64;
335 #endif  /* __native_client_codegen__ */
336
337         /* call_filter (MonoContext *ctx, unsigned long eip) */
338         start = code = mono_global_codeman_reserve (kMaxCodeSize);
339
340         x86_push_reg (code, X86_EBP);
341         x86_mov_reg_reg (code, X86_EBP, X86_ESP, 4);
342         x86_push_reg (code, X86_EBX);
343         x86_push_reg (code, X86_EDI);
344         x86_push_reg (code, X86_ESI);
345
346         /* load ctx */
347         x86_mov_reg_membase (code, X86_EAX, X86_EBP, 8, 4);
348         /* load eip */
349         x86_mov_reg_membase (code, X86_ECX, X86_EBP, 12, 4);
350         /* save EBP */
351         x86_push_reg (code, X86_EBP);
352
353         /* set new EBP */
354         x86_mov_reg_membase (code, X86_EBP, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebp), 4);
355         /* restore registers used by global register allocation (EBX & ESI) */
356         x86_mov_reg_membase (code, X86_EBX, X86_EAX,  G_STRUCT_OFFSET (MonoContext, ebx), 4);
357         x86_mov_reg_membase (code, X86_ESI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, esi), 4);
358         x86_mov_reg_membase (code, X86_EDI, X86_EAX,  G_STRUCT_OFFSET (MonoContext, edi), 4);
359
360         /* align stack and save ESP */
361         x86_mov_reg_reg (code, X86_EDX, X86_ESP, 4);
362         x86_alu_reg_imm (code, X86_AND, X86_ESP, -MONO_ARCH_FRAME_ALIGNMENT);
363         g_assert (MONO_ARCH_FRAME_ALIGNMENT >= 8);
364         x86_alu_reg_imm (code, X86_SUB, X86_ESP, MONO_ARCH_FRAME_ALIGNMENT - 8);
365         x86_push_reg (code, X86_EDX);
366
367         /* call the handler */
368         x86_call_reg (code, X86_ECX);
369
370         /* restore ESP */
371         x86_pop_reg (code, X86_ESP);
372
373         /* restore EBP */
374         x86_pop_reg (code, X86_EBP);
375
376         /* restore saved regs */
377         x86_pop_reg (code, X86_ESI);
378         x86_pop_reg (code, X86_EDI);
379         x86_pop_reg (code, X86_EBX);
380         x86_leave (code);
381         x86_ret (code);
382
383         if (info)
384                 *info = mono_tramp_info_create (g_strdup_printf ("call_filter"), start, code - start, ji, unwind_ops);
385
386         g_assert ((code - start) < kMaxCodeSize);
387         return start;
388 }
389
390 /*
391  * mono_x86_throw_exception:
392  *
393  *   C function called from the throw trampolines.
394  */
395 void
396 mono_x86_throw_exception (mgreg_t *regs, MonoObject *exc, 
397                                                   mgreg_t eip, gboolean rethrow)
398 {
399         static void (*restore_context) (MonoContext *);
400         MonoContext ctx;
401
402         if (!restore_context)
403                 restore_context = mono_get_restore_context ();
404
405         ctx.esp = regs [X86_ESP];
406         ctx.eip = eip;
407         ctx.ebp = regs [X86_EBP];
408         ctx.edi = regs [X86_EDI];
409         ctx.esi = regs [X86_ESI];
410         ctx.ebx = regs [X86_EBX];
411         ctx.edx = regs [X86_EDX];
412         ctx.ecx = regs [X86_ECX];
413         ctx.eax = regs [X86_EAX];
414
415 #ifdef __APPLE__
416         /* The OSX ABI specifies 16 byte alignment at call sites */
417         g_assert ((ctx.esp % MONO_ARCH_FRAME_ALIGNMENT) == 0);
418 #endif
419
420         if (mono_object_isinst (exc, mono_defaults.exception_class)) {
421                 MonoException *mono_ex = (MonoException*)exc;
422                 if (!rethrow)
423                         mono_ex->stack_trace = NULL;
424         }
425
426         if (mono_debug_using_mono_debugger ()) {
427                 guint8 buf [16], *code;
428
429                 mono_breakpoint_clean_code (NULL, (gpointer)eip, 8, buf, sizeof (buf));
430                 code = buf + 8;
431
432                 if (buf [3] == 0xe8) {
433                         MonoContext ctx_cp = ctx;
434                         ctx_cp.eip = eip - 5;
435
436                         if (mono_debugger_handle_exception (&ctx_cp, exc)) {
437                                 restore_context (&ctx_cp);
438                                 g_assert_not_reached ();
439                         }
440                 }
441         }
442
443         /* adjust eip so that it point into the call instruction */
444         ctx.eip -= 1;
445
446         mono_handle_exception (&ctx, exc, (gpointer)eip, FALSE);
447
448         restore_context (&ctx);
449
450         g_assert_not_reached ();
451 }
452
453 void
454 mono_x86_throw_corlib_exception (mgreg_t *regs, guint32 ex_token_index, 
455                                                                  mgreg_t eip, gint32 pc_offset)
456 {
457         guint32 ex_token = MONO_TOKEN_TYPE_DEF | ex_token_index;
458         MonoException *ex;
459
460         ex = mono_exception_from_token (mono_defaults.exception_class->image, ex_token);
461
462         eip -= pc_offset;
463
464         /* Negate the ip adjustment done in mono_x86_throw_exception () */
465         eip += 1;
466
467         mono_x86_throw_exception (regs, (MonoObject*)ex, eip, FALSE);
468 }
469
470 static void
471 mono_x86_resume_unwind (mgreg_t *regs, MonoObject *exc, 
472                                                 mgreg_t eip, gboolean rethrow)
473 {
474         MonoContext ctx;
475
476         ctx.esp = regs [X86_ESP];
477         ctx.eip = eip;
478         ctx.ebp = regs [X86_EBP];
479         ctx.edi = regs [X86_EDI];
480         ctx.esi = regs [X86_ESI];
481         ctx.ebx = regs [X86_EBX];
482         ctx.edx = regs [X86_EDX];
483         ctx.ecx = regs [X86_ECX];
484         ctx.eax = regs [X86_EAX];
485
486         mono_resume_unwind (&ctx);
487 }
488
489 /*
490  * get_throw_trampoline:
491  *
492  *  Generate a call to mono_x86_throw_exception/
493  * mono_x86_throw_corlib_exception.
494  * If LLVM is true, generate code which assumes the caller is LLVM generated code, 
495  * which doesn't push the arguments.
496  */
497 static guint8*
498 get_throw_trampoline (const char *name, gboolean rethrow, gboolean llvm, gboolean corlib, gboolean llvm_abs, gboolean resume_unwind, MonoTrampInfo **info, gboolean aot)
499 {
500         guint8 *start, *code;
501         int i, stack_size, stack_offset, arg_offsets [5], regs_offset;
502         MonoJumpInfo *ji = NULL;
503         GSList *unwind_ops = NULL;
504 #ifdef __native_client_codegen__
505         guint kMaxCodeSize = 256;
506 #else
507         guint kMaxCodeSize = 128;
508 #endif
509         start = code = mono_global_codeman_reserve (kMaxCodeSize);
510
511         stack_size = 128;
512
513         /* 
514          * On apple, the stack is misaligned by the pushing of the return address.
515          */
516         if (!llvm && corlib)
517                 /* On OSX, we don't generate alignment code to save space */
518                 stack_size += 4;
519         else
520                 stack_size += MONO_ARCH_FRAME_ALIGNMENT - 4;
521
522         /*
523          * The stack looks like this:
524          * <pc offset> (only if corlib is TRUE)
525          * <exception object>/<type token>
526          * <return addr> <- esp (unaligned on apple)
527          */
528
529         mono_add_unwind_op_def_cfa (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_ESP, 4);
530         mono_add_unwind_op_offset (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_NREG, -4);
531
532         /* Alloc frame */
533         x86_alu_reg_imm (code, X86_SUB, X86_ESP, stack_size);
534         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 4);
535
536         arg_offsets [0] = 0;
537         arg_offsets [1] = 4;
538         arg_offsets [2] = 8;
539         arg_offsets [3] = 12;
540         regs_offset = 16;
541
542         /* Save registers */
543         for (i = 0; i < X86_NREG; ++i)
544                 if (i != X86_ESP)
545                         x86_mov_membase_reg (code, X86_ESP, regs_offset + (i * 4), i, 4);
546         /* Calculate the offset between the current sp and the sp of the caller */
547         if (llvm) {
548                 /* LLVM doesn't push the arguments */
549                 stack_offset = stack_size + 4;
550         } else {
551                 if (corlib) {
552                         /* Two arguments */
553                         stack_offset = stack_size + 4 + 8;
554 #ifdef __APPLE__
555                         /* We don't generate stack alignment code on osx to save space */
556 #endif
557                 } else {
558                         /* One argument */
559                         stack_offset = stack_size + 4 + 4;
560 #ifdef __APPLE__
561                         /* Pop the alignment added by OP_THROW too */
562                         stack_offset += MONO_ARCH_FRAME_ALIGNMENT - 4;
563 #endif
564                 }
565         }
566         /* Save ESP */
567         x86_lea_membase (code, X86_EAX, X86_ESP, stack_offset);
568         x86_mov_membase_reg (code, X86_ESP, regs_offset + (X86_ESP * 4), X86_EAX, 4);
569
570         /* Set arg1 == regs */
571         x86_lea_membase (code, X86_EAX, X86_ESP, regs_offset);
572         x86_mov_membase_reg (code, X86_ESP, arg_offsets [0], X86_EAX, 4);
573         /* Set arg2 == exc/ex_token_index */
574         if (resume_unwind)
575                 x86_mov_reg_imm (code, X86_EAX, 0);
576         else
577                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size + 4, 4);
578         x86_mov_membase_reg (code, X86_ESP, arg_offsets [1], X86_EAX, 4);
579         /* Set arg3 == eip */
580         if (llvm_abs)
581                 x86_alu_reg_reg (code, X86_XOR, X86_EAX, X86_EAX);
582         else
583                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size, 4);
584         x86_mov_membase_reg (code, X86_ESP, arg_offsets [2], X86_EAX, 4);
585         /* Set arg4 == rethrow/pc_offset */
586         if (resume_unwind) {
587                 x86_mov_membase_imm (code, X86_ESP, arg_offsets [3], 0, 4);
588         } else if (corlib) {
589                 x86_mov_reg_membase (code, X86_EAX, X86_ESP, stack_size + 8, 4);
590                 if (llvm_abs) {
591                         /* 
592                          * The caller is LLVM code which passes the absolute address not a pc offset,
593                          * so compensate by passing 0 as 'ip' and passing the negated abs address as
594                          * the pc offset.
595                          */
596                         x86_neg_reg (code, X86_EAX);
597                 }
598                 x86_mov_membase_reg (code, X86_ESP, arg_offsets [3], X86_EAX, 4);
599         } else {
600                 x86_mov_membase_imm (code, X86_ESP, arg_offsets [3], rethrow, 4);
601         }
602         /* Make the call */
603         if (aot) {
604                 // This can be called from runtime code, which can't guarantee that
605                 // ebx contains the got address.
606                 // So emit the got address loading code too
607                 code = mono_arch_emit_load_got_addr (start, code, NULL, &ji);
608                 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");
609                 x86_call_reg (code, X86_EAX);
610         } else {
611                 x86_call_code (code, resume_unwind ? (mono_x86_resume_unwind) : (corlib ? (gpointer)mono_x86_throw_corlib_exception : (gpointer)mono_x86_throw_exception));
612         }
613         x86_breakpoint (code);
614
615         g_assert ((code - start) < kMaxCodeSize);
616
617         if (info)
618                 *info = mono_tramp_info_create (g_strdup (name), start, code - start, ji, unwind_ops);
619
620         return start;
621 }
622
623 /**
624  * mono_arch_get_throw_exception:
625  *
626  * Returns a function pointer which can be used to raise 
627  * exceptions. The returned function has the following 
628  * signature: void (*func) (MonoException *exc); 
629  * For example to raise an arithmetic exception you can use:
630  *
631  * x86_push_imm (code, mono_get_exception_arithmetic ()); 
632  * x86_call_code (code, arch_get_throw_exception ()); 
633  *
634  */
635 gpointer 
636 mono_arch_get_throw_exception (MonoTrampInfo **info, gboolean aot)
637 {
638         return get_throw_trampoline ("throw_exception", FALSE, FALSE, FALSE, FALSE, FALSE, info, aot);
639 }
640
641 gpointer 
642 mono_arch_get_rethrow_exception (MonoTrampInfo **info, gboolean aot)
643 {
644         return get_throw_trampoline ("rethrow_exception", TRUE, FALSE, FALSE, FALSE, FALSE, info, aot);
645 }
646
647 /**
648  * mono_arch_get_throw_corlib_exception:
649  *
650  * Returns a function pointer which can be used to raise 
651  * corlib exceptions. The returned function has the following 
652  * signature: void (*func) (guint32 ex_token, guint32 offset); 
653  * Here, offset is the offset which needs to be substracted from the caller IP 
654  * to get the IP of the throw. Passing the offset has the advantage that it 
655  * needs no relocations in the caller.
656  */
657 gpointer 
658 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
659 {
660         return get_throw_trampoline ("throw_corlib_exception", FALSE, FALSE, TRUE, FALSE, FALSE, info, aot);
661 }
662
663 void
664 mono_arch_exceptions_init (void)
665 {
666         guint8 *tramp;
667
668 /* 
669  * If we're running WoW64, we need to set the usermode exception policy 
670  * for SEHs to behave. This requires hotfix http://support.microsoft.com/kb/976038
671  * or (eventually) Windows 7 SP1.
672  */
673 #ifdef HOST_WIN32
674         DWORD flags;
675         FARPROC getter;
676         FARPROC setter;
677         HMODULE kernel32 = LoadLibraryW (L"kernel32.dll");
678
679         if (kernel32) {
680                 getter = GetProcAddress (kernel32, "GetProcessUserModeExceptionPolicy");
681                 setter = GetProcAddress (kernel32, "SetProcessUserModeExceptionPolicy");
682                 if (getter && setter) {
683                         if (getter (&flags))
684                                 setter (flags & ~PROCESS_CALLBACK_FILTER_ENABLED);
685                 }
686         }
687 #endif
688
689         if (mono_aot_only) {
690                 signal_exception_trampoline = mono_aot_get_trampoline ("x86_signal_exception_trampoline");
691                 return;
692         }
693
694         /* LLVM needs different throw trampolines */
695         tramp = get_throw_trampoline ("llvm_throw_exception_trampoline", FALSE, TRUE, FALSE, FALSE, FALSE, NULL, FALSE);
696         mono_register_jit_icall (tramp, "llvm_throw_exception_trampoline", NULL, TRUE);
697
698         tramp = get_throw_trampoline ("llvm_rethrow_exception_trampoline", FALSE, TRUE, FALSE, FALSE, FALSE, NULL, FALSE);
699         mono_register_jit_icall (tramp, "llvm_rethrow_exception_trampoline", NULL, TRUE);
700
701         tramp = get_throw_trampoline ("llvm_throw_corlib_exception_trampoline", FALSE, TRUE, TRUE, FALSE, FALSE, NULL, FALSE);
702         mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_trampoline", NULL, TRUE);
703
704         tramp = get_throw_trampoline ("llvm_throw_corlib_exception_abs_trampoline", FALSE, TRUE, TRUE, TRUE, FALSE, NULL, FALSE);
705         mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_abs_trampoline", NULL, TRUE);
706
707         tramp = get_throw_trampoline ("llvm_resume_unwind_trampoline", FALSE, FALSE, FALSE, FALSE, TRUE, NULL, FALSE);
708         mono_register_jit_icall (tramp, "llvm_resume_unwind_trampoline", NULL, TRUE);
709
710         signal_exception_trampoline = mono_x86_get_signal_exception_trampoline (NULL, FALSE);
711 }
712
713 /*
714  * mono_arch_find_jit_info:
715  *
716  * See exceptions-amd64.c for docs.
717  */
718 gboolean
719 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, 
720                                                          MonoJitInfo *ji, MonoContext *ctx, 
721                                                          MonoContext *new_ctx, MonoLMF **lmf, 
722                                                          StackFrameInfo *frame)
723 {
724         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
725
726         memset (frame, 0, sizeof (StackFrameInfo));
727         frame->ji = ji;
728         frame->managed = FALSE;
729
730         *new_ctx = *ctx;
731
732         if (ji != NULL) {
733                 gssize regs [MONO_MAX_IREGS + 1];
734                 guint8 *cfa;
735                 guint32 unwind_info_len;
736                 guint8 *unwind_info;
737
738                 frame->type = FRAME_TYPE_MANAGED;
739
740                 if (!ji->method->wrapper_type || ji->method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD)
741                         frame->managed = TRUE;
742
743                 if (ji->from_aot)
744                         unwind_info = mono_aot_get_unwind_info (ji, &unwind_info_len);
745                 else
746                         unwind_info = mono_get_cached_unwind_info (ji->used_regs, &unwind_info_len);
747
748                 regs [X86_EAX] = new_ctx->eax;
749                 regs [X86_EBX] = new_ctx->ebx;
750                 regs [X86_ECX] = new_ctx->ecx;
751                 regs [X86_EDX] = new_ctx->edx;
752                 regs [X86_ESP] = new_ctx->esp;
753                 regs [X86_EBP] = new_ctx->ebp;
754                 regs [X86_ESI] = new_ctx->esi;
755                 regs [X86_EDI] = new_ctx->edi;
756                 regs [X86_NREG] = new_ctx->eip;
757
758                 mono_unwind_frame (unwind_info, unwind_info_len, ji->code_start, 
759                                                    (guint8*)ji->code_start + ji->code_size,
760                                                    ip, regs, MONO_MAX_IREGS + 1, &cfa);
761
762                 new_ctx->eax = regs [X86_EAX];
763                 new_ctx->ebx = regs [X86_EBX];
764                 new_ctx->ecx = regs [X86_ECX];
765                 new_ctx->edx = regs [X86_EDX];
766                 new_ctx->esp = regs [X86_ESP];
767                 new_ctx->ebp = regs [X86_EBP];
768                 new_ctx->esi = regs [X86_ESI];
769                 new_ctx->edi = regs [X86_EDI];
770                 new_ctx->eip = regs [X86_NREG];
771
772                 /* The CFA becomes the new SP value */
773                 new_ctx->esp = (gssize)cfa;
774
775                 /* Adjust IP */
776                 new_ctx->eip --;
777
778                 if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
779                         /* remove any unused lmf */
780                         *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
781                 }
782
783                 /* Pop arguments off the stack */
784                 /* 
785                  * FIXME: LLVM doesn't push these, we can't use ji->from_llvm as it describes
786                  * the caller.
787                  */
788 #ifndef ENABLE_LLVM
789                 {
790                         MonoJitArgumentInfo *arg_info = g_newa (MonoJitArgumentInfo, mono_method_signature (ji->method)->param_count + 1);
791
792                         guint32 stack_to_pop = mono_arch_get_argument_info (mono_method_signature (ji->method), mono_method_signature (ji->method)->param_count, arg_info);
793                         new_ctx->esp += stack_to_pop;
794                 }
795 #endif
796
797                 return TRUE;
798         } else if (*lmf) {
799
800                 if (((guint64)(*lmf)->previous_lmf) & 2) {
801                         /* 
802                          * This LMF entry is created by the soft debug code to mark transitions to
803                          * managed code done during invokes.
804                          */
805                         MonoLMFExt *ext = (MonoLMFExt*)(*lmf);
806
807                         g_assert (ext->debugger_invoke);
808
809                         memcpy (new_ctx, &ext->ctx, sizeof (MonoContext));
810
811                         *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
812
813                         frame->type = FRAME_TYPE_DEBUGGER_INVOKE;
814
815                         return TRUE;
816                 }
817                 
818                 if ((ji = mini_jit_info_table_find (domain, (gpointer)(*lmf)->eip, NULL))) {
819                 } else {
820                         if (!((guint32)((*lmf)->previous_lmf) & 1))
821                                 /* Top LMF entry */
822                                 return FALSE;
823                         /* Trampoline lmf frame */
824                         frame->method = (*lmf)->method;
825                 }
826
827                 new_ctx->esi = (*lmf)->esi;
828                 new_ctx->edi = (*lmf)->edi;
829                 new_ctx->ebx = (*lmf)->ebx;
830                 new_ctx->ebp = (*lmf)->ebp;
831                 new_ctx->eip = (*lmf)->eip;
832
833                 /* Adjust IP */
834                 new_ctx->eip --;
835
836                 frame->ji = ji;
837                 frame->type = FRAME_TYPE_MANAGED_TO_NATIVE;
838
839                 /* Check if we are in a trampoline LMF frame */
840                 if ((guint32)((*lmf)->previous_lmf) & 1) {
841                         /* lmf->esp is set by the trampoline code */
842                         new_ctx->esp = (*lmf)->esp;
843
844                         /* Pop arguments off the stack */
845                         /* FIXME: Handle the delegate case too ((*lmf)->method == NULL) */
846                         /* FIXME: Handle the IMT/vtable case too */
847 #ifndef ENABLE_LLVM
848                         if ((*lmf)->method) {
849                                 MonoMethod *method = (*lmf)->method;
850                                 MonoJitArgumentInfo *arg_info = g_newa (MonoJitArgumentInfo, mono_method_signature (method)->param_count + 1);
851
852                                 guint32 stack_to_pop = mono_arch_get_argument_info (mono_method_signature (method), mono_method_signature (method)->param_count, arg_info);
853                                 new_ctx->esp += stack_to_pop;
854                         }
855 #endif
856                 }
857                 else
858                         /* the lmf is always stored on the stack, so the following
859                          * expression points to a stack location which can be used as ESP */
860                         new_ctx->esp = (unsigned long)&((*lmf)->eip);
861
862                 *lmf = (gpointer)(((gsize)(*lmf)->previous_lmf) & ~3);
863
864                 return TRUE;
865         }
866
867         return FALSE;
868 }
869
870 #ifdef __sun
871 #define REG_EAX EAX
872 #define REG_EBX EBX
873 #define REG_ECX ECX
874 #define REG_EDX EDX
875 #define REG_EBP EBP
876 #define REG_ESP ESP
877 #define REG_ESI ESI
878 #define REG_EDI EDI
879 #define REG_EIP EIP
880 #endif
881
882 void
883 mono_arch_sigctx_to_monoctx (void *sigctx, MonoContext *mctx)
884 {
885 #if defined (__native_client__)
886         printf("WARNING: mono_arch_sigctx_to_monoctx() called!\n");
887         mctx->eax = 0xDEADBEEF;
888         mctx->ebx = 0xDEADBEEF;
889         mctx->ecx = 0xDEADBEEF;
890         mctx->edx = 0xDEADBEEF;
891         mctx->ebp = 0xDEADBEEF;
892         mctx->esp = 0xDEADBEEF;
893         mctx->esi = 0xDEADBEEF;
894         mctx->edi = 0xDEADBEEF;
895         mctx->eip = 0xDEADBEEF;
896 #else
897 #ifdef MONO_ARCH_USE_SIGACTION
898         ucontext_t *ctx = (ucontext_t*)sigctx;
899         
900         mctx->eax = UCONTEXT_REG_EAX (ctx);
901         mctx->ebx = UCONTEXT_REG_EBX (ctx);
902         mctx->ecx = UCONTEXT_REG_ECX (ctx);
903         mctx->edx = UCONTEXT_REG_EDX (ctx);
904         mctx->ebp = UCONTEXT_REG_EBP (ctx);
905         mctx->esp = UCONTEXT_REG_ESP (ctx);
906         mctx->esi = UCONTEXT_REG_ESI (ctx);
907         mctx->edi = UCONTEXT_REG_EDI (ctx);
908         mctx->eip = UCONTEXT_REG_EIP (ctx);
909 #else   
910         struct sigcontext *ctx = (struct sigcontext *)sigctx;
911
912         mctx->eax = ctx->SC_EAX;
913         mctx->ebx = ctx->SC_EBX;
914         mctx->ecx = ctx->SC_ECX;
915         mctx->edx = ctx->SC_EDX;
916         mctx->ebp = ctx->SC_EBP;
917         mctx->esp = ctx->SC_ESP;
918         mctx->esi = ctx->SC_ESI;
919         mctx->edi = ctx->SC_EDI;
920         mctx->eip = ctx->SC_EIP;
921 #endif
922 #endif /* if defined(__native_client__) */
923 }
924
925 void
926 mono_arch_monoctx_to_sigctx (MonoContext *mctx, void *sigctx)
927 {
928 #if defined(__native_client__)
929         printf("WARNING: mono_arch_monoctx_to_sigctx() called!\n");
930 #else
931 #ifdef MONO_ARCH_USE_SIGACTION
932         ucontext_t *ctx = (ucontext_t*)sigctx;
933
934         UCONTEXT_REG_EAX (ctx) = mctx->eax;
935         UCONTEXT_REG_EBX (ctx) = mctx->ebx;
936         UCONTEXT_REG_ECX (ctx) = mctx->ecx;
937         UCONTEXT_REG_EDX (ctx) = mctx->edx;
938         UCONTEXT_REG_EBP (ctx) = mctx->ebp;
939         UCONTEXT_REG_ESP (ctx) = mctx->esp;
940         UCONTEXT_REG_ESI (ctx) = mctx->esi;
941         UCONTEXT_REG_EDI (ctx) = mctx->edi;
942         UCONTEXT_REG_EIP (ctx) = mctx->eip;
943 #else
944         struct sigcontext *ctx = (struct sigcontext *)sigctx;
945
946         ctx->SC_EAX = mctx->eax;
947         ctx->SC_EBX = mctx->ebx;
948         ctx->SC_ECX = mctx->ecx;
949         ctx->SC_EDX = mctx->edx;
950         ctx->SC_EBP = mctx->ebp;
951         ctx->SC_ESP = mctx->esp;
952         ctx->SC_ESI = mctx->esi;
953         ctx->SC_EDI = mctx->edi;
954         ctx->SC_EIP = mctx->eip;
955 #endif
956 #endif /* __native_client__ */
957 }       
958
959 gpointer
960 mono_arch_ip_from_context (void *sigctx)
961 {
962 #if defined(__native_client__)
963         printf("WARNING: mono_arch_ip_from_context() called!\n");
964         return (NULL);
965 #else
966 #ifdef MONO_ARCH_USE_SIGACTION
967         ucontext_t *ctx = (ucontext_t*)sigctx;
968         return (gpointer)UCONTEXT_REG_EIP (ctx);
969 #else
970         struct sigcontext *ctx = sigctx;
971         return (gpointer)ctx->SC_EIP;
972 #endif
973 #endif  /* __native_client__ */
974 }
975
976 /*
977  * handle_exception:
978  *
979  *   Called by resuming from a signal handler.
980  */
981 static void
982 handle_signal_exception (gpointer obj)
983 {
984         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
985         MonoContext ctx;
986         static void (*restore_context) (MonoContext *);
987
988         if (!restore_context)
989                 restore_context = mono_get_restore_context ();
990
991         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
992
993         if (mono_debugger_handle_exception (&ctx, (MonoObject *)obj))
994                 return;
995
996         mono_handle_exception (&ctx, obj, MONO_CONTEXT_GET_IP (&ctx), FALSE);
997
998         restore_context (&ctx);
999 }
1000
1001 /*
1002  * mono_x86_get_signal_exception_trampoline:
1003  *
1004  *   This x86 specific trampoline is used to call handle_signal_exception.
1005  */
1006 gpointer
1007 mono_x86_get_signal_exception_trampoline (MonoTrampInfo **info, gboolean aot)
1008 {
1009         guint8 *start, *code;
1010         MonoJumpInfo *ji = NULL;
1011         GSList *unwind_ops = NULL;
1012         int stack_size;
1013
1014         start = code = mono_global_codeman_reserve (128);
1015
1016         /* Caller ip */
1017         x86_push_reg (code, X86_ECX);
1018
1019         mono_add_unwind_op_def_cfa (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_ESP, 4);
1020         mono_add_unwind_op_offset (unwind_ops, (guint8*)NULL, (guint8*)NULL, X86_NREG, -4);
1021
1022         /* Fix the alignment to be what apple expects */
1023         stack_size = 12;
1024
1025         x86_alu_reg_imm (code, X86_SUB, X86_ESP, stack_size);
1026         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 4);
1027
1028         /* Arg1 */
1029         x86_mov_membase_reg (code, X86_ESP, 0, X86_EAX, 4);
1030         /* Branch to target */
1031         x86_call_reg (code, X86_EDX);
1032
1033         g_assert ((code - start) < 128);
1034
1035         if (info)
1036                 *info = mono_tramp_info_create (g_strdup ("x86_signal_exception_trampoline"), start, code - start, ji, unwind_ops);
1037
1038         return start;
1039 }
1040
1041 gboolean
1042 mono_arch_handle_exception (void *sigctx, gpointer obj, gboolean test_only)
1043 {
1044 #if defined(MONO_ARCH_USE_SIGACTION)
1045         ucontext_t *ctx = (ucontext_t*)sigctx;
1046
1047         /*
1048          * Handling the exception in the signal handler is problematic, since the original
1049          * signal is disabled, and we could run arbitrary code though the debugger. So
1050          * resume into the normal stack and do most work there if possible.
1051          */
1052         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1053         guint64 sp = UCONTEXT_REG_ESP (ctx);
1054
1055         /* Pass the ctx parameter in TLS */
1056         mono_arch_sigctx_to_monoctx (ctx, &jit_tls->ex_ctx);
1057         /*
1058          * Can't pass the obj on the stack, since we are executing on the
1059          * same stack. Can't save it into MonoJitTlsData, since it needs GC tracking.
1060          * So put it into a register, and branch to a trampoline which
1061          * pushes it.
1062          */
1063         g_assert (!test_only);
1064         UCONTEXT_REG_EAX (ctx) = (gsize)obj;
1065         UCONTEXT_REG_ECX (ctx) = UCONTEXT_REG_EIP (ctx);
1066         UCONTEXT_REG_EDX (ctx) = (gsize)handle_signal_exception;
1067
1068         /* Allocate a stack frame, align it to 16 bytes which is needed on apple */
1069         sp -= 16;
1070         sp &= ~15;
1071         UCONTEXT_REG_ESP (ctx) = sp;
1072
1073         UCONTEXT_REG_EIP (ctx) = (gsize)signal_exception_trampoline;
1074
1075         return TRUE;
1076 #elif defined (TARGET_WIN32)
1077         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1078         struct sigcontext *ctx = (struct sigcontext *)sigctx;
1079         guint64 sp = ctx->SC_ESP;
1080
1081         mono_arch_sigctx_to_monoctx (sigctx, &jit_tls->ex_ctx);
1082
1083         /*
1084          * Can't pass the obj on the stack, since we are executing on the
1085          * same stack. Can't save it into MonoJitTlsData, since it needs GC tracking.
1086          * So put it into a register, and branch to a trampoline which
1087          * pushes it.
1088          */
1089         g_assert (!test_only);
1090         ctx->SC_EAX = (gsize)obj;
1091         ctx->SC_ECX = ctx->SC_EIP;
1092         ctx->SC_EDX = (gsize)handle_signal_exception;
1093
1094         /* Allocate a stack frame, align it to 16 bytes which is needed on apple */
1095         sp -= 16;
1096         sp &= ~15;
1097         ctx->SC_ESP = sp;
1098
1099         ctx->SC_EIP = (gsize)signal_exception_trampoline;
1100
1101         return TRUE;
1102 #else
1103         MonoContext mctx;
1104
1105         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
1106
1107         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj))
1108                 return TRUE;
1109
1110         mono_handle_exception (&mctx, obj, (gpointer)mctx.eip, test_only);
1111
1112         mono_arch_monoctx_to_sigctx (&mctx, sigctx);
1113
1114         return TRUE;
1115 #endif
1116 }
1117
1118 static void
1119 restore_soft_guard_pages (void)
1120 {
1121         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
1122         if (jit_tls->stack_ovf_guard_base)
1123                 mono_mprotect (jit_tls->stack_ovf_guard_base, jit_tls->stack_ovf_guard_size, MONO_MMAP_NONE);
1124 }
1125
1126 /* 
1127  * this function modifies mctx so that when it is restored, it
1128  * won't execcute starting at mctx.eip, but in a function that
1129  * will restore the protection on the soft-guard pages and return back to
1130  * continue at mctx.eip.
1131  */
1132 static void
1133 prepare_for_guard_pages (MonoContext *mctx)
1134 {
1135         gpointer *sp;
1136         sp = (gpointer)(mctx->esp);
1137         sp -= 1;
1138         /* the resturn addr */
1139         sp [0] = (gpointer)(mctx->eip);
1140         mctx->eip = (unsigned long)restore_soft_guard_pages;
1141         mctx->esp = (unsigned long)sp;
1142 }
1143
1144 static void
1145 altstack_handle_and_restore (void *sigctx, gpointer obj, gboolean stack_ovf)
1146 {
1147         void (*restore_context) (MonoContext *);
1148         MonoContext mctx;
1149
1150         restore_context = mono_get_restore_context ();
1151         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
1152
1153         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj)) {
1154                 if (stack_ovf)
1155                         prepare_for_guard_pages (&mctx);
1156                 restore_context (&mctx);
1157         }
1158
1159         mono_handle_exception (&mctx, obj, (gpointer)mctx.eip, FALSE);
1160         if (stack_ovf)
1161                 prepare_for_guard_pages (&mctx);
1162         restore_context (&mctx);
1163 }
1164
1165 void
1166 mono_arch_handle_altstack_exception (void *sigctx, gpointer fault_addr, gboolean stack_ovf)
1167 {
1168 #ifdef MONO_ARCH_USE_SIGACTION
1169         MonoException *exc = NULL;
1170         ucontext_t *ctx = (ucontext_t*)sigctx;
1171         MonoJitInfo *ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)UCONTEXT_REG_EIP (ctx), NULL);
1172         gpointer *sp;
1173         int frame_size;
1174
1175         /* if we didn't find a managed method for the ip address and it matches the fault
1176          * address, we assume we followed a broken pointer during an indirect call, so
1177          * we try the lookup again with the return address pushed on the stack
1178          */
1179         if (!ji && fault_addr == (gpointer)UCONTEXT_REG_EIP (ctx)) {
1180                 glong *sp = (gpointer)UCONTEXT_REG_ESP (ctx);
1181                 ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)sp [0], NULL);
1182                 if (ji)
1183                         UCONTEXT_REG_EIP (ctx) = sp [0];
1184         }
1185         if (stack_ovf)
1186                 exc = mono_domain_get ()->stack_overflow_ex;
1187         if (!ji)
1188                 mono_handle_native_sigsegv (SIGSEGV, sigctx);
1189         /* setup a call frame on the real stack so that control is returned there
1190          * and exception handling can continue.
1191          * If this was a stack overflow the caller already ensured the stack pages
1192          * needed have been unprotected.
1193          * The frame looks like:
1194          *   ucontext struct
1195          *   test_only arg
1196          *   exception arg
1197          *   ctx arg
1198          *   return ip
1199          */
1200         frame_size = sizeof (ucontext_t) + sizeof (gpointer) * 4;
1201         frame_size += 15;
1202         frame_size &= ~15;
1203         sp = (gpointer)(UCONTEXT_REG_ESP (ctx) & ~15);
1204         sp = (gpointer)((char*)sp - frame_size);
1205         /* the incoming arguments are aligned to 16 bytes boundaries, so the return address IP
1206          * goes at sp [-1]
1207          */
1208         sp [-1] = (gpointer)UCONTEXT_REG_EIP (ctx);
1209         sp [0] = sp + 4;
1210         sp [1] = exc;
1211         sp [2] = (gpointer)stack_ovf;
1212         /* may need to adjust pointers in the new struct copy, depending on the OS */
1213         memcpy (sp + 4, ctx, sizeof (ucontext_t));
1214         /* at the return form the signal handler execution starts in altstack_handle_and_restore() */
1215         UCONTEXT_REG_EIP (ctx) = (unsigned long)altstack_handle_and_restore;
1216         UCONTEXT_REG_ESP (ctx) = (unsigned long)(sp - 1);
1217 #endif
1218 }
1219
1220 #if MONO_SUPPORT_TASKLETS
1221 MonoContinuationRestore
1222 mono_tasklets_arch_restore (void)
1223 {
1224         static guint8* saved = NULL;
1225         guint8 *code, *start;
1226
1227 #ifdef __native_client_codegen__
1228         g_print("mono_tasklets_arch_restore needs to be aligned for Native Client\n");
1229 #endif
1230         if (saved)
1231                 return (MonoContinuationRestore)saved;
1232         code = start = mono_global_codeman_reserve (48);
1233         /* the signature is: restore (MonoContinuation *cont, int state, MonoLMF **lmf_addr) */
1234         /* put cont in edx */
1235         x86_mov_reg_membase (code, X86_EDX, X86_ESP, 4, 4);
1236         /* setup the copy of the stack */
1237         x86_mov_reg_membase (code, X86_ECX, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, stack_used_size), 4);
1238         x86_shift_reg_imm (code, X86_SHR, X86_ECX, 2);
1239         x86_cld (code);
1240         x86_mov_reg_membase (code, X86_ESI, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, saved_stack), 4);
1241         x86_mov_reg_membase (code, X86_EDI, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, return_sp), 4);
1242         x86_prefix (code, X86_REP_PREFIX);
1243         x86_movsl (code);
1244
1245         /* now restore the registers from the LMF */
1246         x86_mov_reg_membase (code, X86_ECX, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, lmf), 4);
1247         x86_mov_reg_membase (code, X86_EBX, X86_ECX, G_STRUCT_OFFSET (MonoLMF, ebx), 4);
1248         x86_mov_reg_membase (code, X86_EBP, X86_ECX, G_STRUCT_OFFSET (MonoLMF, ebp), 4);
1249         x86_mov_reg_membase (code, X86_ESI, X86_ECX, G_STRUCT_OFFSET (MonoLMF, esi), 4);
1250         x86_mov_reg_membase (code, X86_EDI, X86_ECX, G_STRUCT_OFFSET (MonoLMF, edi), 4);
1251
1252         /* restore the lmf chain */
1253         /*x86_mov_reg_membase (code, X86_ECX, X86_ESP, 12, 4);
1254         x86_mov_membase_reg (code, X86_ECX, 0, X86_EDX, 4);*/
1255
1256         /* state in eax, so it's setup as the return value */
1257         x86_mov_reg_membase (code, X86_EAX, X86_ESP, 8, 4);
1258         x86_jump_membase (code, X86_EDX, G_STRUCT_OFFSET (MonoContinuation, return_ip));
1259         g_assert ((code - start) <= 48);
1260         saved = start;
1261         return (MonoContinuationRestore)saved;
1262 }
1263 #endif
1264