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