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