Merge pull request #2807 from akoeplinger/gchandle
[mono.git] / mono / mini / exceptions-amd64.c
1 /*
2  * exceptions-amd64.c: exception support for AMD64
3  *
4  * Authors:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
9  */
10
11 #include <config.h>
12
13 #include <glib.h>
14 #include <string.h>
15
16 #ifdef HAVE_SIGNAL_H
17 #include <signal.h>
18 #endif
19 #ifdef HAVE_UCONTEXT_H
20 #include <ucontext.h>
21 #endif
22
23 #include <mono/arch/amd64/amd64-codegen.h>
24 #include <mono/metadata/abi-details.h>
25 #include <mono/metadata/appdomain.h>
26 #include <mono/metadata/tabledefs.h>
27 #include <mono/metadata/threads.h>
28 #include <mono/metadata/threads-types.h>
29 #include <mono/metadata/debug-helpers.h>
30 #include <mono/metadata/exception.h>
31 #include <mono/metadata/gc-internals.h>
32 #include <mono/metadata/mono-debug.h>
33 #include <mono/utils/mono-mmap.h>
34
35 #include "mini.h"
36 #include "mini-amd64.h"
37 #include "tasklets.h"
38
39 #define ALIGN_TO(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
40
41 #ifdef TARGET_WIN32
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 void *mono_win_vectored_exception_handle;
48
49 #define W32_SEH_HANDLE_EX(_ex) \
50         if (_ex##_handler) _ex##_handler(0, ep, ctx)
51
52 static LONG CALLBACK seh_unhandled_exception_filter(EXCEPTION_POINTERS* ep)
53 {
54 #ifndef MONO_CROSS_COMPILE
55         if (mono_old_win_toplevel_exception_filter) {
56                 return (*mono_old_win_toplevel_exception_filter)(ep);
57         }
58 #endif
59
60         mono_handle_native_sigsegv (SIGSEGV, NULL, NULL);
61
62         return EXCEPTION_CONTINUE_SEARCH;
63 }
64
65 /*
66  * Unhandled Exception Filter
67  * Top-level per-process exception handler.
68  */
69 static LONG CALLBACK seh_vectored_exception_handler(EXCEPTION_POINTERS* ep)
70 {
71         EXCEPTION_RECORD* er;
72         CONTEXT* ctx;
73         LONG res;
74         MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
75
76         /* If the thread is not managed by the runtime return early */
77         if (!jit_tls)
78                 return EXCEPTION_CONTINUE_SEARCH;
79
80         jit_tls->mono_win_chained_exception_needs_run = FALSE;
81         res = EXCEPTION_CONTINUE_EXECUTION;
82
83         er = ep->ExceptionRecord;
84         ctx = ep->ContextRecord;
85
86         switch (er->ExceptionCode) {
87         case EXCEPTION_ACCESS_VIOLATION:
88                 W32_SEH_HANDLE_EX(segv);
89                 break;
90         case EXCEPTION_ILLEGAL_INSTRUCTION:
91                 W32_SEH_HANDLE_EX(ill);
92                 break;
93         case EXCEPTION_INT_DIVIDE_BY_ZERO:
94         case EXCEPTION_INT_OVERFLOW:
95         case EXCEPTION_FLT_DIVIDE_BY_ZERO:
96         case EXCEPTION_FLT_OVERFLOW:
97         case EXCEPTION_FLT_UNDERFLOW:
98         case EXCEPTION_FLT_INEXACT_RESULT:
99                 W32_SEH_HANDLE_EX(fpe);
100                 break;
101         default:
102                 jit_tls->mono_win_chained_exception_needs_run = TRUE;
103                 break;
104         }
105
106         if (jit_tls->mono_win_chained_exception_needs_run) {
107                 /* Don't copy context back if we chained exception
108                 * as the handler may have modfied the EXCEPTION_POINTERS
109                 * directly. We don't pass sigcontext to chained handlers.
110                 * Return continue search so the UnhandledExceptionFilter
111                 * can correctly chain the exception.
112                 */
113                 res = EXCEPTION_CONTINUE_SEARCH;
114         }
115
116         return res;
117 }
118
119 void win32_seh_init()
120 {
121         mono_old_win_toplevel_exception_filter = SetUnhandledExceptionFilter(seh_unhandled_exception_filter);
122         mono_win_vectored_exception_handle = AddVectoredExceptionHandler (1, seh_vectored_exception_handler);
123 }
124
125 void win32_seh_cleanup()
126 {
127         guint32 ret = 0;
128
129         if (mono_old_win_toplevel_exception_filter) SetUnhandledExceptionFilter(mono_old_win_toplevel_exception_filter);
130
131         ret = RemoveVectoredExceptionHandler (mono_win_vectored_exception_handle);
132         g_assert (ret);
133 }
134
135 void win32_seh_set_handler(int type, MonoW32ExceptionHandler handler)
136 {
137         switch (type) {
138         case SIGFPE:
139                 fpe_handler = handler;
140                 break;
141         case SIGILL:
142                 ill_handler = handler;
143                 break;
144         case SIGSEGV:
145                 segv_handler = handler;
146                 break;
147         default:
148                 break;
149         }
150 }
151
152 #endif /* TARGET_WIN32 */
153
154 /*
155  * mono_arch_get_restore_context:
156  *
157  * Returns a pointer to a method which restores a previously saved sigcontext.
158  */
159 gpointer
160 mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot)
161 {
162         guint8 *start = NULL;
163         guint8 *code;
164         MonoJumpInfo *ji = NULL;
165         GSList *unwind_ops = NULL;
166         int i, gregs_offset;
167
168         /* restore_contect (MonoContext *ctx) */
169
170         start = code = (guint8 *)mono_global_codeman_reserve (256);
171
172         amd64_mov_reg_reg (code, AMD64_R11, AMD64_ARG_REG1, 8);
173
174         /* Restore all registers except %rip and %r11 */
175         gregs_offset = MONO_STRUCT_OFFSET (MonoContext, gregs);
176         for (i = 0; i < AMD64_NREG; ++i) {
177 #if defined(__native_client_codegen__)
178                 if (i == AMD64_R15)
179                         continue;
180 #endif
181                 if (i != AMD64_RIP && i != AMD64_RSP && i != AMD64_R8 && i != AMD64_R9 && i != AMD64_R10 && i != AMD64_R11)
182                         amd64_mov_reg_membase (code, i, AMD64_R11, gregs_offset + (i * 8), 8);
183         }
184
185         /*
186          * The context resides on the stack, in the stack frame of the
187          * caller of this function.  The stack pointer that we need to
188          * restore is potentially many stack frames higher up, so the
189          * distance between them can easily be more than the red zone
190          * size.  Hence the stack pointer can be restored only after
191          * we have finished loading everything from the context.
192          */
193         amd64_mov_reg_membase (code, AMD64_R8, AMD64_R11,  gregs_offset + (AMD64_RSP * 8), 8);
194         amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11,  gregs_offset + (AMD64_RIP * 8), 8);
195         amd64_mov_reg_reg (code, AMD64_RSP, AMD64_R8, 8);
196
197         /* jump to the saved IP */
198         amd64_jump_reg (code, AMD64_R11);
199
200         nacl_global_codeman_validate (&start, 256, &code);
201
202         mono_arch_flush_icache (start, code - start);
203         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
204
205         if (info)
206                 *info = mono_tramp_info_create ("restore_context", start, code - start, ji, unwind_ops);
207
208         return start;
209 }
210
211 /*
212  * mono_arch_get_call_filter:
213  *
214  * Returns a pointer to a method which calls an exception filter. We
215  * also use this function to call finally handlers (we pass NULL as 
216  * @exc object in this case).
217  */
218 gpointer
219 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
220 {
221         guint8 *start;
222         int i, gregs_offset;
223         guint8 *code;
224         guint32 pos;
225         MonoJumpInfo *ji = NULL;
226         GSList *unwind_ops = NULL;
227         const guint kMaxCodeSize = NACL_SIZE (128, 256);
228
229         start = code = (guint8 *)mono_global_codeman_reserve (kMaxCodeSize);
230
231         /* call_filter (MonoContext *ctx, unsigned long eip) */
232         code = start;
233
234         /* Alloc new frame */
235         amd64_push_reg (code, AMD64_RBP);
236         amd64_mov_reg_reg (code, AMD64_RBP, AMD64_RSP, 8);
237
238         /* Save callee saved regs */
239         pos = 0;
240         for (i = 0; i < AMD64_NREG; ++i)
241                 if (AMD64_IS_CALLEE_SAVED_REG (i)) {
242                         amd64_push_reg (code, i);
243                         pos += 8;
244                 }
245
246         /* Save EBP */
247         pos += 8;
248         amd64_push_reg (code, AMD64_RBP);
249
250         /* Make stack misaligned, the call will make it aligned again */
251         if (! (pos & 8))
252                 amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 8);
253
254         gregs_offset = MONO_STRUCT_OFFSET (MonoContext, gregs);
255
256         /* set new EBP */
257         amd64_mov_reg_membase (code, AMD64_RBP, AMD64_ARG_REG1, gregs_offset + (AMD64_RBP * 8), 8);
258         /* load callee saved regs */
259         for (i = 0; i < AMD64_NREG; ++i) {
260 #if defined(__native_client_codegen__)
261                 if (i == AMD64_R15)
262                         continue;
263 #endif
264                 if (AMD64_IS_CALLEE_SAVED_REG (i) && i != AMD64_RBP)
265                         amd64_mov_reg_membase (code, i, AMD64_ARG_REG1, gregs_offset + (i * 8), 8);
266         }
267         /* load exc register */
268         amd64_mov_reg_membase (code, AMD64_RAX, AMD64_ARG_REG1,  gregs_offset + (AMD64_RAX * 8), 8);
269
270         /* call the handler */
271         amd64_call_reg (code, AMD64_ARG_REG2);
272
273         if (! (pos & 8))
274                 amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 8);
275
276         /* restore RBP */
277         amd64_pop_reg (code, AMD64_RBP);
278
279         /* Restore callee saved regs */
280         for (i = AMD64_NREG; i >= 0; --i)
281                 if (AMD64_IS_CALLEE_SAVED_REG (i))
282                         amd64_pop_reg (code, i);
283
284         amd64_leave (code);
285         amd64_ret (code);
286
287         g_assert ((code - start) < kMaxCodeSize);
288
289         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
290
291         mono_arch_flush_icache (start, code - start);
292         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
293
294         if (info)
295                 *info = mono_tramp_info_create ("call_filter", start, code - start, ji, unwind_ops);
296
297         return start;
298 }
299
300 /* 
301  * The first few arguments are dummy, to force the other arguments to be passed on
302  * the stack, this avoids overwriting the argument registers in the throw trampoline.
303  */
304 void
305 mono_amd64_throw_exception (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
306                                                         guint64 dummy5, guint64 dummy6,
307                                                         MonoContext *mctx, MonoObject *exc, gboolean rethrow)
308 {
309         MonoError error;
310         MonoContext ctx;
311
312         /* mctx is on the caller's stack */
313         memcpy (&ctx, mctx, sizeof (MonoContext));
314
315         if (mono_object_isinst_checked (exc, mono_defaults.exception_class, &error)) {
316                 MonoException *mono_ex = (MonoException*)exc;
317                 if (!rethrow) {
318                         mono_ex->stack_trace = NULL;
319                         mono_ex->trace_ips = NULL;
320                 }
321         }
322         mono_error_assert_ok (&error);
323
324         /* adjust eip so that it point into the call instruction */
325         ctx.gregs [AMD64_RIP] --;
326
327         mono_handle_exception (&ctx, exc);
328         mono_restore_context (&ctx);
329         g_assert_not_reached ();
330 }
331
332 void
333 mono_amd64_throw_corlib_exception (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
334                                                                    guint64 dummy5, guint64 dummy6,
335                                                                    MonoContext *mctx, guint32 ex_token_index, gint64 pc_offset)
336 {
337         guint32 ex_token = MONO_TOKEN_TYPE_DEF | ex_token_index;
338         MonoException *ex;
339
340         ex = mono_exception_from_token (mono_defaults.exception_class->image, ex_token);
341
342         mctx->gregs [AMD64_RIP] -= pc_offset;
343
344         /* Negate the ip adjustment done in mono_amd64_throw_exception () */
345         mctx->gregs [AMD64_RIP] += 1;
346
347         mono_amd64_throw_exception (dummy1, dummy2, dummy3, dummy4, dummy5, dummy6, mctx, (MonoObject*)ex, FALSE);
348 }
349
350 void
351 mono_amd64_resume_unwind (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
352                                                   guint64 dummy5, guint64 dummy6,
353                                                   MonoContext *mctx, guint32 dummy7, gint64 dummy8)
354 {
355         /* Only the register parameters are valid */
356         MonoContext ctx;
357
358         /* mctx is on the caller's stack */
359         memcpy (&ctx, mctx, sizeof (MonoContext));
360
361         mono_resume_unwind (&ctx);
362 }
363
364 /*
365  * get_throw_trampoline:
366  *
367  *  Generate a call to mono_amd64_throw_exception/
368  * mono_amd64_throw_corlib_exception.
369  */
370 static gpointer
371 get_throw_trampoline (MonoTrampInfo **info, gboolean rethrow, gboolean corlib, gboolean llvm_abs, gboolean resume_unwind, const char *tramp_name, gboolean aot)
372 {
373         guint8* start;
374         guint8 *code;
375         MonoJumpInfo *ji = NULL;
376         GSList *unwind_ops = NULL;
377         int i, stack_size, arg_offsets [16], ctx_offset, regs_offset, dummy_stack_space;
378         const guint kMaxCodeSize = NACL_SIZE (256, 512);
379
380 #ifdef TARGET_WIN32
381         dummy_stack_space = 6 * sizeof(mgreg_t);        /* Windows expects stack space allocated for all 6 dummy args. */
382 #else
383         dummy_stack_space = 0;
384 #endif
385
386         start = code = (guint8 *)mono_global_codeman_reserve (kMaxCodeSize);
387
388         /* The stack is unaligned on entry */
389         stack_size = ALIGN_TO (sizeof (MonoContext) + 64 + dummy_stack_space, MONO_ARCH_FRAME_ALIGNMENT) + 8;
390
391         code = start;
392
393         if (info)
394                 unwind_ops = mono_arch_get_cie_program ();
395
396         /* Alloc frame */
397         amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, stack_size);
398         if (info)
399                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 8);
400
401         /*
402          * To hide linux/windows calling convention differences, we pass all arguments on
403          * the stack by passing 6 dummy values in registers.
404          */
405
406         arg_offsets [0] = dummy_stack_space + 0;
407         arg_offsets [1] = dummy_stack_space + sizeof(mgreg_t);
408         arg_offsets [2] = dummy_stack_space + sizeof(mgreg_t) * 2;
409         ctx_offset = dummy_stack_space + sizeof(mgreg_t) * 4;
410         regs_offset = ctx_offset + MONO_STRUCT_OFFSET (MonoContext, gregs);
411
412         /* Save registers */
413         for (i = 0; i < AMD64_NREG; ++i)
414                 if (i != AMD64_RSP)
415                         amd64_mov_membase_reg (code, AMD64_RSP, regs_offset + (i * sizeof(mgreg_t)), i, sizeof(mgreg_t));
416         /* Save RSP */
417         amd64_lea_membase (code, AMD64_RAX, AMD64_RSP, stack_size + sizeof(mgreg_t));
418         amd64_mov_membase_reg (code, AMD64_RSP, regs_offset + (AMD64_RSP * sizeof(mgreg_t)), X86_EAX, sizeof(mgreg_t));
419         /* Save IP */
420         amd64_mov_reg_membase (code, AMD64_RAX, AMD64_RSP, stack_size, sizeof(mgreg_t));
421         amd64_mov_membase_reg (code, AMD64_RSP, regs_offset + (AMD64_RIP * sizeof(mgreg_t)), AMD64_RAX, sizeof(mgreg_t));
422         /* Set arg1 == ctx */
423         amd64_lea_membase (code, AMD64_RAX, AMD64_RSP, ctx_offset);
424         amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [0], AMD64_RAX, sizeof(mgreg_t));
425         /* Set arg2 == exc/ex_token_index */
426         if (resume_unwind)
427                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [1], 0, sizeof(mgreg_t));
428         else
429                 amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [1], AMD64_ARG_REG1, sizeof(mgreg_t));
430         /* Set arg3 == rethrow/pc offset */
431         if (resume_unwind) {
432                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [2], 0, sizeof(mgreg_t));
433         } else if (corlib) {
434                 if (llvm_abs)
435                         /*
436                          * The caller doesn't pass in a pc/pc offset, instead we simply use the
437                          * caller ip. Negate the pc adjustment done in mono_amd64_throw_corlib_exception ().
438                          */
439                         amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [2], 1, sizeof(mgreg_t));
440                 else
441                         amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [2], AMD64_ARG_REG2, sizeof(mgreg_t));
442         } else {
443                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [2], rethrow, sizeof(mgreg_t));
444         }
445
446         if (aot) {
447                 const char *icall_name;
448
449                 if (resume_unwind)
450                         icall_name = "mono_amd64_resume_unwind";
451                 else if (corlib)
452                         icall_name = "mono_amd64_throw_corlib_exception";
453                 else
454                         icall_name = "mono_amd64_throw_exception";
455                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, icall_name);
456                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
457         } else {
458                 amd64_mov_reg_imm (code, AMD64_R11, resume_unwind ? ((gpointer)mono_amd64_resume_unwind) : (corlib ? (gpointer)mono_amd64_throw_corlib_exception : (gpointer)mono_amd64_throw_exception));
459         }
460         amd64_call_reg (code, AMD64_R11);
461         amd64_breakpoint (code);
462
463         mono_arch_flush_icache (start, code - start);
464
465         g_assert ((code - start) < kMaxCodeSize);
466
467         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
468         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
469
470         if (info)
471                 *info = mono_tramp_info_create (tramp_name, start, code - start, ji, unwind_ops);
472
473         return start;
474 }
475
476 /**
477  * mono_arch_get_throw_exception:
478  *
479  * Returns a function pointer which can be used to raise 
480  * exceptions. The returned function has the following 
481  * signature: void (*func) (MonoException *exc); 
482  *
483  */
484 gpointer
485 mono_arch_get_throw_exception (MonoTrampInfo **info, gboolean aot)
486 {
487         return get_throw_trampoline (info, FALSE, FALSE, FALSE, FALSE, "throw_exception", aot);
488 }
489
490 gpointer 
491 mono_arch_get_rethrow_exception (MonoTrampInfo **info, gboolean aot)
492 {
493         return get_throw_trampoline (info, TRUE, FALSE, FALSE, FALSE, "rethrow_exception", aot);
494 }
495
496 /**
497  * mono_arch_get_throw_corlib_exception:
498  *
499  * Returns a function pointer which can be used to raise 
500  * corlib exceptions. The returned function has the following 
501  * signature: void (*func) (guint32 ex_token, guint32 offset); 
502  * Here, offset is the offset which needs to be substracted from the caller IP 
503  * to get the IP of the throw. Passing the offset has the advantage that it 
504  * needs no relocations in the caller.
505  */
506 gpointer 
507 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
508 {
509         return get_throw_trampoline (info, FALSE, TRUE, FALSE, FALSE, "throw_corlib_exception", aot);
510 }
511
512 /*
513  * mono_arch_unwind_frame:
514  *
515  * This function is used to gather information from @ctx, and store it in @frame_info.
516  * It unwinds one stack frame, and stores the resulting context into @new_ctx. @lmf
517  * is modified if needed.
518  * Returns TRUE on success, FALSE otherwise.
519  */
520 gboolean
521 mono_arch_unwind_frame (MonoDomain *domain, MonoJitTlsData *jit_tls, 
522                                                          MonoJitInfo *ji, MonoContext *ctx, 
523                                                          MonoContext *new_ctx, MonoLMF **lmf,
524                                                          mgreg_t **save_locations,
525                                                          StackFrameInfo *frame)
526 {
527         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
528         int i;
529
530         memset (frame, 0, sizeof (StackFrameInfo));
531         frame->ji = ji;
532
533         *new_ctx = *ctx;
534
535         if (ji != NULL) {
536                 mgreg_t regs [MONO_MAX_IREGS + 1];
537                 guint8 *cfa;
538                 guint32 unwind_info_len;
539                 guint8 *unwind_info;
540                 guint8 *epilog = NULL;
541
542                 if (ji->is_trampoline)
543                         frame->type = FRAME_TYPE_TRAMPOLINE;
544                 else
545                         frame->type = FRAME_TYPE_MANAGED;
546
547                 unwind_info = mono_jinfo_get_unwind_info (ji, &unwind_info_len);
548
549                 frame->unwind_info = unwind_info;
550                 frame->unwind_info_len = unwind_info_len;
551
552                 /*
553                 printf ("%s %p %p\n", ji->d.method->name, ji->code_start, ip);
554                 mono_print_unwind_info (unwind_info, unwind_info_len);
555                 */
556                 /* LLVM compiled code doesn't have this info */
557                 if (ji->has_arch_eh_info)
558                         epilog = (guint8*)ji->code_start + ji->code_size - mono_jinfo_get_epilog_size (ji);
559  
560                 for (i = 0; i < AMD64_NREG; ++i)
561                         regs [i] = new_ctx->gregs [i];
562
563                 mono_unwind_frame (unwind_info, unwind_info_len, (guint8 *)ji->code_start,
564                                                    (guint8*)ji->code_start + ji->code_size,
565                                                    (guint8 *)ip, epilog ? &epilog : NULL, regs, MONO_MAX_IREGS + 1,
566                                                    save_locations, MONO_MAX_IREGS, &cfa);
567
568                 for (i = 0; i < AMD64_NREG; ++i)
569                         new_ctx->gregs [i] = regs [i];
570  
571                 /* The CFA becomes the new SP value */
572                 new_ctx->gregs [AMD64_RSP] = (mgreg_t)cfa;
573
574                 /* Adjust IP */
575                 new_ctx->gregs [AMD64_RIP] --;
576
577                 return TRUE;
578         } else if (*lmf) {
579                 guint64 rip;
580
581                 if (((guint64)(*lmf)->previous_lmf) & 2) {
582                         /* 
583                          * This LMF entry is created by the soft debug code to mark transitions to
584                          * managed code done during invokes.
585                          */
586                         MonoLMFExt *ext = (MonoLMFExt*)(*lmf);
587
588                         g_assert (ext->debugger_invoke);
589
590                         memcpy (new_ctx, &ext->ctx, sizeof (MonoContext));
591
592                         *lmf = (MonoLMF *)(((guint64)(*lmf)->previous_lmf) & ~7);
593
594                         frame->type = FRAME_TYPE_DEBUGGER_INVOKE;
595
596                         return TRUE;
597                 }
598
599                 if (((guint64)(*lmf)->previous_lmf) & 4) {
600                         MonoLMFTramp *ext = (MonoLMFTramp*)(*lmf);
601
602                         rip = (guint64)MONO_CONTEXT_GET_IP (ext->ctx);
603                 } else if (((guint64)(*lmf)->previous_lmf) & 1) {
604                         /* This LMF has the rip field set */
605                         rip = (*lmf)->rip;
606                 } else if ((*lmf)->rsp == 0) {
607                         /* Top LMF entry */
608                         return FALSE;
609                 } else {
610                         /* 
611                          * The rsp field is set just before the call which transitioned to native 
612                          * code. Obtain the rip from the stack.
613                          */
614                         rip = *(guint64*)((*lmf)->rsp - sizeof(mgreg_t));
615                 }
616
617                 ji = mini_jit_info_table_find (domain, (char *)rip, NULL);
618                 /*
619                  * FIXME: ji == NULL can happen when a managed-to-native wrapper is interrupted
620                  * in the soft debugger suspend code, since (*lmf)->rsp no longer points to the
621                  * return address.
622                  */
623                 //g_assert (ji);
624                 if (!ji)
625                         return FALSE;
626
627                 frame->ji = ji;
628                 frame->type = FRAME_TYPE_MANAGED_TO_NATIVE;
629
630                 if (((guint64)(*lmf)->previous_lmf) & 4) {
631                         MonoLMFTramp *ext = (MonoLMFTramp*)(*lmf);
632
633                         /* Trampoline frame */
634                         for (i = 0; i < AMD64_NREG; ++i)
635                                 new_ctx->gregs [i] = ext->ctx->gregs [i];
636                         /* Adjust IP */
637                         new_ctx->gregs [AMD64_RIP] --;
638                 } else {
639                         /*
640                          * The registers saved in the LMF will be restored using the normal unwind info,
641                          * when the wrapper frame is processed.
642                          */
643                         /* Adjust IP */
644                         rip --;
645                         new_ctx->gregs [AMD64_RIP] = rip;
646                         new_ctx->gregs [AMD64_RSP] = (*lmf)->rsp;
647                         new_ctx->gregs [AMD64_RBP] = (*lmf)->rbp;
648                         for (i = 0; i < AMD64_NREG; ++i) {
649                                 if (AMD64_IS_CALLEE_SAVED_REG (i) && i != AMD64_RBP)
650                                         new_ctx->gregs [i] = 0;
651                         }
652                 }
653
654                 *lmf = (MonoLMF *)(((guint64)(*lmf)->previous_lmf) & ~7);
655
656                 return TRUE;
657         }
658
659         return FALSE;
660 }
661
662 /*
663  * handle_exception:
664  *
665  *   Called by resuming from a signal handler.
666  */
667 static void
668 handle_signal_exception (gpointer obj)
669 {
670         MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id);
671         MonoContext ctx;
672
673         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
674
675         mono_handle_exception (&ctx, (MonoObject *)obj);
676
677         mono_restore_context (&ctx);
678 }
679
680 void
681 mono_arch_setup_async_callback (MonoContext *ctx, void (*async_cb)(void *fun), gpointer user_data)
682 {
683         guint64 sp = ctx->gregs [AMD64_RSP];
684
685         ctx->gregs [AMD64_RDI] = (guint64)user_data;
686
687         /* Allocate a stack frame below the red zone */
688         sp -= 128;
689         /* The stack should be unaligned */
690         if ((sp % 16) == 0)
691                 sp -= 8;
692 #ifdef __linux__
693         /* Preserve the call chain to prevent crashes in the libgcc unwinder (#15969) */
694         *(guint64*)sp = ctx->gregs [AMD64_RIP];
695 #endif
696         ctx->gregs [AMD64_RSP] = sp;
697         ctx->gregs [AMD64_RIP] = (guint64)async_cb;
698 }
699
700 /**
701  * mono_arch_handle_exception:
702  *
703  * @ctx: saved processor state
704  * @obj: the exception object
705  */
706 gboolean
707 mono_arch_handle_exception (void *sigctx, gpointer obj)
708 {
709 #if defined(MONO_ARCH_USE_SIGACTION)
710         MonoContext mctx;
711
712         /*
713          * Handling the exception in the signal handler is problematic, since the original
714          * signal is disabled, and we could run arbitrary code though the debugger. So
715          * resume into the normal stack and do most work there if possible.
716          */
717         MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id);
718
719         /* Pass the ctx parameter in TLS */
720         mono_sigctx_to_monoctx (sigctx, &jit_tls->ex_ctx);
721
722         mctx = jit_tls->ex_ctx;
723         mono_arch_setup_async_callback (&mctx, handle_signal_exception, obj);
724         mono_monoctx_to_sigctx (&mctx, sigctx);
725
726         return TRUE;
727 #else
728         MonoContext mctx;
729
730         mono_sigctx_to_monoctx (sigctx, &mctx);
731
732         mono_handle_exception (&mctx, obj);
733
734         mono_monoctx_to_sigctx (&mctx, sigctx);
735
736         return TRUE;
737 #endif
738 }
739
740 gpointer
741 mono_arch_ip_from_context (void *sigctx)
742 {
743 #if defined(MONO_ARCH_USE_SIGACTION)
744         ucontext_t *ctx = (ucontext_t*)sigctx;
745
746         return (gpointer)UCONTEXT_REG_RIP (ctx);
747 #elif defined(HOST_WIN32)
748         return ((CONTEXT*)sigctx)->Rip;
749 #else
750         MonoContext *ctx = sigctx;
751         return (gpointer)ctx->gregs [AMD64_RIP];
752 #endif  
753 }
754
755 static void
756 restore_soft_guard_pages (void)
757 {
758         MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id);
759         if (jit_tls->stack_ovf_guard_base)
760                 mono_mprotect (jit_tls->stack_ovf_guard_base, jit_tls->stack_ovf_guard_size, MONO_MMAP_NONE);
761 }
762
763 /* 
764  * this function modifies mctx so that when it is restored, it
765  * won't execcute starting at mctx.eip, but in a function that
766  * will restore the protection on the soft-guard pages and return back to
767  * continue at mctx.eip.
768  */
769 static void
770 prepare_for_guard_pages (MonoContext *mctx)
771 {
772         gpointer *sp;
773         sp = (gpointer *)(mctx->gregs [AMD64_RSP]);
774         sp -= 1;
775         /* the return addr */
776         sp [0] = (gpointer)(mctx->gregs [AMD64_RIP]);
777         mctx->gregs [AMD64_RIP] = (guint64)restore_soft_guard_pages;
778         mctx->gregs [AMD64_RSP] = (guint64)sp;
779 }
780
781 static void
782 altstack_handle_and_restore (MonoContext *ctx, MonoObject *obj, gboolean stack_ovf)
783 {
784         MonoContext mctx;
785
786         mctx = *ctx;
787
788         mono_handle_exception (&mctx, obj);
789         if (stack_ovf)
790                 prepare_for_guard_pages (&mctx);
791         mono_restore_context (&mctx);
792 }
793
794 void
795 mono_arch_handle_altstack_exception (void *sigctx, MONO_SIG_HANDLER_INFO_TYPE *siginfo, gpointer fault_addr, gboolean stack_ovf)
796 {
797 #if defined(MONO_ARCH_USE_SIGACTION)
798         MonoException *exc = NULL;
799         MonoJitInfo *ji = mini_jit_info_table_find (mono_domain_get (), (char *)UCONTEXT_REG_RIP (sigctx), NULL);
800         gpointer *sp;
801         int frame_size;
802         MonoContext *copied_ctx;
803
804         if (stack_ovf)
805                 exc = mono_domain_get ()->stack_overflow_ex;
806         if (!ji)
807                 mono_handle_native_sigsegv (SIGSEGV, sigctx, siginfo);
808
809         /* setup a call frame on the real stack so that control is returned there
810          * and exception handling can continue.
811          * The frame looks like:
812          *   ucontext struct
813          *   ...
814          *   return ip
815          * 128 is the size of the red zone
816          */
817         frame_size = sizeof (MonoContext) + sizeof (gpointer) * 4 + 128;
818         frame_size += 15;
819         frame_size &= ~15;
820         sp = (gpointer *)(UCONTEXT_REG_RSP (sigctx) & ~15);
821         sp = (gpointer *)((char*)sp - frame_size);
822         copied_ctx = (MonoContext*)(sp + 4);
823         /* the arguments must be aligned */
824         sp [-1] = (gpointer)UCONTEXT_REG_RIP (sigctx);
825         mono_sigctx_to_monoctx (sigctx, copied_ctx);
826         /* at the return form the signal handler execution starts in altstack_handle_and_restore() */
827         UCONTEXT_REG_RIP (sigctx) = (unsigned long)altstack_handle_and_restore;
828         UCONTEXT_REG_RSP (sigctx) = (unsigned long)(sp - 1);
829         UCONTEXT_REG_RDI (sigctx) = (unsigned long)(copied_ctx);
830         UCONTEXT_REG_RSI (sigctx) = (guint64)exc;
831         UCONTEXT_REG_RDX (sigctx) = stack_ovf;
832 #endif
833 }
834
835 guint64
836 mono_amd64_get_original_ip (void)
837 {
838         MonoLMF *lmf = mono_get_lmf ();
839
840         g_assert (lmf);
841
842         /* Reset the change to previous_lmf */
843         lmf->previous_lmf = (gpointer)((guint64)lmf->previous_lmf & ~1);
844
845         return lmf->rip;
846 }
847
848 GSList*
849 mono_amd64_get_exception_trampolines (gboolean aot)
850 {
851         MonoTrampInfo *info;
852         GSList *tramps = NULL;
853
854         /* LLVM needs different throw trampolines */
855         get_throw_trampoline (&info, FALSE, TRUE, FALSE, FALSE, "llvm_throw_corlib_exception_trampoline", aot);
856         tramps = g_slist_prepend (tramps, info);
857
858         get_throw_trampoline (&info, FALSE, TRUE, TRUE, FALSE, "llvm_throw_corlib_exception_abs_trampoline", aot);
859         tramps = g_slist_prepend (tramps, info);
860
861         get_throw_trampoline (&info, FALSE, TRUE, TRUE, TRUE, "llvm_resume_unwind_trampoline", aot);
862         tramps = g_slist_prepend (tramps, info);
863
864         return tramps;
865 }
866
867 void
868 mono_arch_exceptions_init (void)
869 {
870         GSList *tramps, *l;
871         gpointer tramp;
872
873         if (mono_aot_only) {
874                 tramp = mono_aot_get_trampoline ("llvm_throw_corlib_exception_trampoline");
875                 mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_trampoline", NULL, TRUE);
876                 tramp = mono_aot_get_trampoline ("llvm_throw_corlib_exception_abs_trampoline");
877                 mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_abs_trampoline", NULL, TRUE);
878                 tramp = mono_aot_get_trampoline ("llvm_resume_unwind_trampoline");
879                 mono_register_jit_icall (tramp, "llvm_resume_unwind_trampoline", NULL, TRUE);
880         } else {
881                 /* Call this to avoid initialization races */
882                 tramps = mono_amd64_get_exception_trampolines (FALSE);
883                 for (l = tramps; l; l = l->next) {
884                         MonoTrampInfo *info = (MonoTrampInfo *)l->data;
885
886                         mono_register_jit_icall (info->code, g_strdup (info->name), NULL, TRUE);
887                         mono_tramp_info_register (info, NULL);
888                 }
889                 g_slist_free (tramps);
890         }
891 }
892
893 #ifdef TARGET_WIN32
894
895 /*
896  * The mono_arch_unwindinfo* methods are used to build and add
897  * function table info for each emitted method from mono.  On Winx64
898  * the seh handler will not be called if the mono methods are not
899  * added to the function table.  
900  *
901  * We should not need to add non-volatile register info to the 
902  * table since mono stores that info elsewhere. (Except for the register 
903  * used for the fp.)
904  */
905
906 #define MONO_MAX_UNWIND_CODES 22
907
908 typedef union _UNWIND_CODE {
909     struct {
910         guchar CodeOffset;
911         guchar UnwindOp : 4;
912         guchar OpInfo   : 4;
913     };
914     gushort FrameOffset;
915 } UNWIND_CODE, *PUNWIND_CODE;
916
917 typedef struct _UNWIND_INFO {
918         guchar Version       : 3;
919         guchar Flags         : 5;
920         guchar SizeOfProlog;
921         guchar CountOfCodes;
922         guchar FrameRegister : 4;
923         guchar FrameOffset   : 4;
924         /* custom size for mono allowing for mono allowing for*/
925         /*UWOP_PUSH_NONVOL ebp offset = 21*/
926         /*UWOP_ALLOC_LARGE : requires 2 or 3 offset = 20*/
927         /*UWOP_SET_FPREG : requires 2 offset = 17*/
928         /*UWOP_PUSH_NONVOL offset = 15-0*/
929         UNWIND_CODE UnwindCode[MONO_MAX_UNWIND_CODES]; 
930
931 /*      UNWIND_CODE MoreUnwindCode[((CountOfCodes + 1) & ~1) - 1];
932  *      union {
933  *          OPTIONAL ULONG ExceptionHandler;
934  *          OPTIONAL ULONG FunctionEntry;
935  *      };
936  *      OPTIONAL ULONG ExceptionData[]; */
937 } UNWIND_INFO, *PUNWIND_INFO;
938
939 typedef struct
940 {
941         RUNTIME_FUNCTION runtimeFunction;
942         UNWIND_INFO unwindInfo;
943 } MonoUnwindInfo, *PMonoUnwindInfo;
944
945 static void
946 mono_arch_unwindinfo_create (gpointer* monoui)
947 {
948         PMonoUnwindInfo newunwindinfo;
949         *monoui = newunwindinfo = g_new0 (MonoUnwindInfo, 1);
950         newunwindinfo->unwindInfo.Version = 1;
951 }
952
953 void
954 mono_arch_unwindinfo_add_push_nonvol (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg )
955 {
956         PMonoUnwindInfo unwindinfo;
957         PUNWIND_CODE unwindcode;
958         guchar codeindex;
959         if (!*monoui)
960                 mono_arch_unwindinfo_create (monoui);
961         
962         unwindinfo = (MonoUnwindInfo*)*monoui;
963
964         if (unwindinfo->unwindInfo.CountOfCodes >= MONO_MAX_UNWIND_CODES)
965                 g_error ("Larger allocation needed for the unwind information.");
966
967         codeindex = MONO_MAX_UNWIND_CODES - (++unwindinfo->unwindInfo.CountOfCodes);
968         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
969         unwindcode->UnwindOp = 0; /*UWOP_PUSH_NONVOL*/
970         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
971         unwindcode->OpInfo = reg;
972
973         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
974                 g_error ("Adding unwind info in wrong order.");
975         
976         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
977 }
978
979 void
980 mono_arch_unwindinfo_add_set_fpreg (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg )
981 {
982         PMonoUnwindInfo unwindinfo;
983         PUNWIND_CODE unwindcode;
984         guchar codeindex;
985         if (!*monoui)
986                 mono_arch_unwindinfo_create (monoui);
987         
988         unwindinfo = (MonoUnwindInfo*)*monoui;
989
990         if (unwindinfo->unwindInfo.CountOfCodes + 1 >= MONO_MAX_UNWIND_CODES)
991                 g_error ("Larger allocation needed for the unwind information.");
992
993         codeindex = MONO_MAX_UNWIND_CODES - (unwindinfo->unwindInfo.CountOfCodes += 2);
994         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
995         unwindcode->FrameOffset = 0; /*Assuming no frame pointer offset for mono*/
996         unwindcode++;
997         unwindcode->UnwindOp = 3; /*UWOP_SET_FPREG*/
998         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
999         unwindcode->OpInfo = reg;
1000         
1001         unwindinfo->unwindInfo.FrameRegister = reg;
1002
1003         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
1004                 g_error ("Adding unwind info in wrong order.");
1005         
1006         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
1007 }
1008
1009 void
1010 mono_arch_unwindinfo_add_alloc_stack (gpointer* monoui, gpointer codebegin, gpointer nextip, guint size )
1011 {
1012         PMonoUnwindInfo unwindinfo;
1013         PUNWIND_CODE unwindcode;
1014         guchar codeindex;
1015         guchar codesneeded;
1016         if (!*monoui)
1017                 mono_arch_unwindinfo_create (monoui);
1018         
1019         unwindinfo = (MonoUnwindInfo*)*monoui;
1020
1021         if (size < 0x8)
1022                 g_error ("Stack allocation must be equal to or greater than 0x8.");
1023         
1024         if (size <= 0x80)
1025                 codesneeded = 1;
1026         else if (size <= 0x7FFF8)
1027                 codesneeded = 2;
1028         else
1029                 codesneeded = 3;
1030         
1031         if (unwindinfo->unwindInfo.CountOfCodes + codesneeded > MONO_MAX_UNWIND_CODES)
1032                 g_error ("Larger allocation needed for the unwind information.");
1033
1034         codeindex = MONO_MAX_UNWIND_CODES - (unwindinfo->unwindInfo.CountOfCodes += codesneeded);
1035         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
1036
1037         if (codesneeded == 1) {
1038                 /*The size of the allocation is 
1039                   (the number in the OpInfo member) times 8 plus 8*/
1040                 unwindcode->OpInfo = (size - 8)/8;
1041                 unwindcode->UnwindOp = 2; /*UWOP_ALLOC_SMALL*/
1042         }
1043         else {
1044                 if (codesneeded == 3) {
1045                         /*the unscaled size of the allocation is recorded
1046                           in the next two slots in little-endian format*/
1047                         *((unsigned int*)(&unwindcode->FrameOffset)) = size;
1048                         unwindcode += 2;
1049                         unwindcode->OpInfo = 1;
1050                 }
1051                 else {
1052                         /*the size of the allocation divided by 8
1053                           is recorded in the next slot*/
1054                         unwindcode->FrameOffset = size/8; 
1055                         unwindcode++;   
1056                         unwindcode->OpInfo = 0;
1057                         
1058                 }
1059                 unwindcode->UnwindOp = 1; /*UWOP_ALLOC_LARGE*/
1060         }
1061
1062         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
1063
1064         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
1065                 g_error ("Adding unwind info in wrong order.");
1066         
1067         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
1068 }
1069
1070 guint
1071 mono_arch_unwindinfo_get_size (gpointer monoui)
1072 {
1073         PMonoUnwindInfo unwindinfo;
1074         if (!monoui)
1075                 return 0;
1076         
1077         unwindinfo = (MonoUnwindInfo*)monoui;
1078         return (8 + sizeof (MonoUnwindInfo)) - 
1079                 (sizeof (UNWIND_CODE) * (MONO_MAX_UNWIND_CODES - unwindinfo->unwindInfo.CountOfCodes));
1080 }
1081
1082 static PRUNTIME_FUNCTION
1083 MONO_GET_RUNTIME_FUNCTION_CALLBACK ( DWORD64 ControlPc, IN PVOID Context )
1084 {
1085         MonoJitInfo *ji;
1086         guint64 pos;
1087         PMonoUnwindInfo targetinfo;
1088         MonoDomain *domain = mono_domain_get ();
1089
1090         ji = mini_jit_info_table_find (domain, (char*)ControlPc, NULL);
1091         if (!ji)
1092                 return 0;
1093
1094         pos = (guint64)(((char*)ji->code_start) + ji->code_size);
1095         
1096         targetinfo = (PMonoUnwindInfo)ALIGN_TO (pos, 8);
1097
1098         targetinfo->runtimeFunction.UnwindData = ((DWORD64)&targetinfo->unwindInfo) - ((DWORD64)Context);
1099
1100         return &targetinfo->runtimeFunction;
1101 }
1102
1103 void
1104 mono_arch_unwindinfo_install_unwind_info (gpointer* monoui, gpointer code, guint code_size)
1105 {
1106         PMonoUnwindInfo unwindinfo, targetinfo;
1107         guchar codecount;
1108         guint64 targetlocation;
1109         if (!*monoui)
1110                 return;
1111
1112         unwindinfo = (MonoUnwindInfo*)*monoui;
1113         targetlocation = (guint64)&(((guchar*)code)[code_size]);
1114         targetinfo = (PMonoUnwindInfo) ALIGN_TO(targetlocation, 8);
1115
1116         unwindinfo->runtimeFunction.EndAddress = code_size;
1117         unwindinfo->runtimeFunction.UnwindData = ((guchar*)&targetinfo->unwindInfo) - ((guchar*)code);
1118         
1119         memcpy (targetinfo, unwindinfo, sizeof (MonoUnwindInfo) - (sizeof (UNWIND_CODE) * MONO_MAX_UNWIND_CODES));
1120         
1121         codecount = unwindinfo->unwindInfo.CountOfCodes;
1122         if (codecount) {
1123                 memcpy (&targetinfo->unwindInfo.UnwindCode[0], &unwindinfo->unwindInfo.UnwindCode[MONO_MAX_UNWIND_CODES-codecount], 
1124                         sizeof (UNWIND_CODE) * unwindinfo->unwindInfo.CountOfCodes);
1125         }
1126
1127         g_free (unwindinfo);
1128         *monoui = 0;
1129
1130         RtlInstallFunctionTableCallback (((DWORD64)code) | 0x3, (DWORD64)code, code_size, MONO_GET_RUNTIME_FUNCTION_CALLBACK, code, NULL);
1131 }
1132
1133 #endif
1134
1135 #if MONO_SUPPORT_TASKLETS
1136 MonoContinuationRestore
1137 mono_tasklets_arch_restore (void)
1138 {
1139         static guint8* saved = NULL;
1140         guint8 *code, *start;
1141         int cont_reg = AMD64_R9; /* register usable on both call conventions */
1142         const guint kMaxCodeSize = NACL_SIZE (64, 128);
1143         
1144
1145         if (saved)
1146                 return (MonoContinuationRestore)saved;
1147         code = start = (guint8 *)mono_global_codeman_reserve (kMaxCodeSize);
1148         /* the signature is: restore (MonoContinuation *cont, int state, MonoLMF **lmf_addr) */
1149         /* cont is in AMD64_ARG_REG1 ($rcx or $rdi)
1150          * state is in AMD64_ARG_REG2 ($rdx or $rsi)
1151          * lmf_addr is in AMD64_ARG_REG3 ($r8 or $rdx)
1152          * We move cont to cont_reg since we need both rcx and rdi for the copy
1153          * state is moved to $rax so it's setup as the return value and we can overwrite $rsi
1154          */
1155         amd64_mov_reg_reg (code, cont_reg, MONO_AMD64_ARG_REG1, 8);
1156         amd64_mov_reg_reg (code, AMD64_RAX, MONO_AMD64_ARG_REG2, 8);
1157         /* setup the copy of the stack */
1158         amd64_mov_reg_membase (code, AMD64_RCX, cont_reg, MONO_STRUCT_OFFSET (MonoContinuation, stack_used_size), sizeof (int));
1159         amd64_shift_reg_imm (code, X86_SHR, AMD64_RCX, 3);
1160         x86_cld (code);
1161         amd64_mov_reg_membase (code, AMD64_RSI, cont_reg, MONO_STRUCT_OFFSET (MonoContinuation, saved_stack), sizeof (gpointer));
1162         amd64_mov_reg_membase (code, AMD64_RDI, cont_reg, MONO_STRUCT_OFFSET (MonoContinuation, return_sp), sizeof (gpointer));
1163         amd64_prefix (code, X86_REP_PREFIX);
1164         amd64_movsl (code);
1165
1166         /* now restore the registers from the LMF */
1167         NOT_IMPLEMENTED;
1168         amd64_mov_reg_membase (code, AMD64_RCX, cont_reg, MONO_STRUCT_OFFSET (MonoContinuation, lmf), 8);
1169         amd64_mov_reg_membase (code, AMD64_RSP, AMD64_RCX, MONO_STRUCT_OFFSET (MonoLMF, rsp), 8);
1170
1171         /* restore the lmf chain */
1172         /*x86_mov_reg_membase (code, X86_ECX, X86_ESP, 12, 4);
1173         x86_mov_membase_reg (code, X86_ECX, 0, X86_EDX, 4);*/
1174
1175         /* state is already in rax */
1176         amd64_jump_membase (code, cont_reg, MONO_STRUCT_OFFSET (MonoContinuation, return_ip));
1177         g_assert ((code - start) <= kMaxCodeSize);
1178
1179         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
1180         mono_arch_flush_icache (start, code - start);
1181         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL);
1182
1183         saved = start;
1184         return (MonoContinuationRestore)saved;
1185 }
1186 #endif
1187
1188 /*
1189  * mono_arch_setup_resume_sighandler_ctx:
1190  *
1191  *   Setup CTX so execution continues at FUNC.
1192  */
1193 void
1194 mono_arch_setup_resume_sighandler_ctx (MonoContext *ctx, gpointer func)
1195 {
1196         /* 
1197          * When resuming from a signal handler, the stack should be misaligned, just like right after
1198          * a call.
1199          */
1200         if ((((guint64)MONO_CONTEXT_GET_SP (ctx)) % 16) == 0)
1201                 MONO_CONTEXT_SET_SP (ctx, (guint64)MONO_CONTEXT_GET_SP (ctx) - 8);
1202         MONO_CONTEXT_SET_IP (ctx, func);
1203 }