System.Drawing: added email to icon and test file headers
[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 #include <glib.h>
13 #include <signal.h>
14 #include <string.h>
15 #ifdef HAVE_UCONTEXT_H
16 #include <ucontext.h>
17 #endif
18
19 #include <mono/arch/amd64/amd64-codegen.h>
20 #include <mono/metadata/appdomain.h>
21 #include <mono/metadata/tabledefs.h>
22 #include <mono/metadata/threads.h>
23 #include <mono/metadata/threads-types.h>
24 #include <mono/metadata/debug-helpers.h>
25 #include <mono/metadata/exception.h>
26 #include <mono/metadata/gc-internal.h>
27 #include <mono/metadata/mono-debug.h>
28 #include <mono/utils/mono-mmap.h>
29
30 #include "mini.h"
31 #include "mini-amd64.h"
32 #include "tasklets.h"
33 #include "debug-mini.h"
34
35 #define ALIGN_TO(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
36
37 #ifdef TARGET_WIN32
38 static MonoW32ExceptionHandler fpe_handler;
39 static MonoW32ExceptionHandler ill_handler;
40 static MonoW32ExceptionHandler segv_handler;
41
42 LPTOP_LEVEL_EXCEPTION_FILTER mono_old_win_toplevel_exception_filter;
43 guint64 mono_win_chained_exception_filter_result;
44 gboolean mono_win_chained_exception_filter_didrun;
45
46 #define W32_SEH_HANDLE_EX(_ex) \
47         if (_ex##_handler) _ex##_handler(0, ep, sctx)
48
49 /*
50  * Unhandled Exception Filter
51  * Top-level per-process exception handler.
52  */
53 LONG CALLBACK seh_handler(EXCEPTION_POINTERS* ep)
54 {
55         EXCEPTION_RECORD* er;
56         CONTEXT* ctx;
57         MonoContext* sctx;
58         LONG res;
59
60         mono_win_chained_exception_filter_didrun = FALSE;
61         res = EXCEPTION_CONTINUE_EXECUTION;
62
63         er = ep->ExceptionRecord;
64         ctx = ep->ContextRecord;
65         sctx = g_malloc(sizeof(MonoContext));
66
67         /* Copy Win32 context to UNIX style context */
68         sctx->rax = ctx->Rax;
69         sctx->rbx = ctx->Rbx;
70         sctx->rcx = ctx->Rcx;
71         sctx->rdx = ctx->Rdx;
72         sctx->rbp = ctx->Rbp;
73         sctx->rsp = ctx->Rsp;
74         sctx->rsi = ctx->Rsi;
75         sctx->rdi = ctx->Rdi;
76         sctx->rip = ctx->Rip;
77         sctx->r12 = ctx->R12;
78         sctx->r13 = ctx->R13;
79         sctx->r14 = ctx->R14;
80         sctx->r15 = ctx->R15;
81
82         switch (er->ExceptionCode) {
83         case EXCEPTION_ACCESS_VIOLATION:
84                 W32_SEH_HANDLE_EX(segv);
85                 break;
86         case EXCEPTION_ILLEGAL_INSTRUCTION:
87                 W32_SEH_HANDLE_EX(ill);
88                 break;
89         case EXCEPTION_INT_DIVIDE_BY_ZERO:
90         case EXCEPTION_INT_OVERFLOW:
91         case EXCEPTION_FLT_DIVIDE_BY_ZERO:
92         case EXCEPTION_FLT_OVERFLOW:
93         case EXCEPTION_FLT_UNDERFLOW:
94         case EXCEPTION_FLT_INEXACT_RESULT:
95                 W32_SEH_HANDLE_EX(fpe);
96                 break;
97         default:
98                 break;
99         }
100
101         /* Copy context back */
102         /* Nonvolatile */
103         ctx->Rsp = sctx->rsp; 
104         ctx->Rdi = sctx->rdi; 
105         ctx->Rsi = sctx->rsi; 
106         ctx->Rbx = sctx->rbx; 
107         ctx->Rbp = sctx->rbp;
108         ctx->R12 = sctx->r12; 
109         ctx->R13 = sctx->r13; 
110         ctx->R14 = sctx->r14;
111         ctx->R15 = sctx->r15;
112         ctx->Rip = sctx->rip; 
113
114         /* Volatile But should not matter?*/
115         ctx->Rax = sctx->rax; 
116         ctx->Rcx = sctx->rcx; 
117         ctx->Rdx = sctx->rdx;
118
119         g_free (sctx);
120
121         if (mono_win_chained_exception_filter_didrun)
122                 res = mono_win_chained_exception_filter_result;
123
124         return res;
125 }
126
127 void win32_seh_init()
128 {
129         mono_old_win_toplevel_exception_filter = SetUnhandledExceptionFilter(seh_handler);
130 }
131
132 void win32_seh_cleanup()
133 {
134         if (mono_old_win_toplevel_exception_filter) SetUnhandledExceptionFilter(mono_old_win_toplevel_exception_filter);
135 }
136
137 void win32_seh_set_handler(int type, MonoW32ExceptionHandler handler)
138 {
139         switch (type) {
140         case SIGFPE:
141                 fpe_handler = handler;
142                 break;
143         case SIGILL:
144                 ill_handler = handler;
145                 break;
146         case SIGSEGV:
147                 segv_handler = handler;
148                 break;
149         default:
150                 break;
151         }
152 }
153
154 #endif /* TARGET_WIN32 */
155
156 /*
157  * mono_arch_get_restore_context:
158  *
159  * Returns a pointer to a method which restores a previously saved sigcontext.
160  */
161 gpointer
162 mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot)
163 {
164         guint8 *start = NULL;
165         guint8 *code;
166         MonoJumpInfo *ji = NULL;
167         GSList *unwind_ops = NULL;
168
169         /* restore_contect (MonoContext *ctx) */
170
171         start = code = mono_global_codeman_reserve (256);
172
173         amd64_mov_reg_reg (code, AMD64_R11, AMD64_ARG_REG1, 8);
174
175         /* Restore all registers except %rip and %r11 */
176         amd64_mov_reg_membase (code, AMD64_RAX, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rax), 8);
177         amd64_mov_reg_membase (code, AMD64_RCX, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rcx), 8);
178         amd64_mov_reg_membase (code, AMD64_RDX, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rdx), 8);
179         amd64_mov_reg_membase (code, AMD64_RBX, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rbx), 8);
180         amd64_mov_reg_membase (code, AMD64_RBP, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rbp), 8);
181         amd64_mov_reg_membase (code, AMD64_RSI, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rsi), 8);
182         amd64_mov_reg_membase (code, AMD64_RDI, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rdi), 8);
183         //amd64_mov_reg_membase (code, AMD64_R8, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r8), 8);
184         //amd64_mov_reg_membase (code, AMD64_R9, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r9), 8);
185         //amd64_mov_reg_membase (code, AMD64_R10, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r10), 8);
186         amd64_mov_reg_membase (code, AMD64_R12, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r12), 8);
187         amd64_mov_reg_membase (code, AMD64_R13, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r13), 8);
188         amd64_mov_reg_membase (code, AMD64_R14, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r14), 8);
189 #if !defined(__native_client_codegen__)
190         amd64_mov_reg_membase (code, AMD64_R15, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, r15), 8);
191 #endif
192
193         if (mono_running_on_valgrind ()) {
194                 /* Prevent 'Address 0x... is just below the stack ptr.' errors */
195                 amd64_mov_reg_membase (code, AMD64_R8, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rsp), 8);
196                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rip), 8);
197                 amd64_mov_reg_reg (code, AMD64_RSP, AMD64_R8, 8);
198         } else {
199                 amd64_mov_reg_membase (code, AMD64_RSP, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rsp), 8);
200                 /* get return address */
201                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11,  G_STRUCT_OFFSET (MonoContext, rip), 8);
202         }
203
204         /* jump to the saved IP */
205         amd64_jump_reg (code, AMD64_R11);
206
207         nacl_global_codeman_validate(&start, 256, &code);
208
209         mono_arch_flush_icache (start, code - start);
210
211         if (info)
212                 *info = mono_tramp_info_create (g_strdup_printf ("restore_context"), start, code - start, ji, unwind_ops);
213
214         return start;
215 }
216
217 /*
218  * mono_arch_get_call_filter:
219  *
220  * Returns a pointer to a method which calls an exception filter. We
221  * also use this function to call finally handlers (we pass NULL as 
222  * @exc object in this case).
223  */
224 gpointer
225 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
226 {
227         guint8 *start;
228         int i;
229         guint8 *code;
230         guint32 pos;
231         MonoJumpInfo *ji = NULL;
232         GSList *unwind_ops = NULL;
233         const guint kMaxCodeSize = NACL_SIZE (128, 256);
234
235         start = code = mono_global_codeman_reserve (kMaxCodeSize);
236
237         /* call_filter (MonoContext *ctx, unsigned long eip) */
238         code = start;
239
240         /* Alloc new frame */
241         amd64_push_reg (code, AMD64_RBP);
242         amd64_mov_reg_reg (code, AMD64_RBP, AMD64_RSP, 8);
243
244         /* Save callee saved regs */
245         pos = 0;
246         for (i = 0; i < AMD64_NREG; ++i)
247                 if (AMD64_IS_CALLEE_SAVED_REG (i)) {
248                         amd64_push_reg (code, i);
249                         pos += 8;
250                 }
251
252         /* Save EBP */
253         pos += 8;
254         amd64_push_reg (code, AMD64_RBP);
255
256         /* Make stack misaligned, the call will make it aligned again */
257         if (! (pos & 8))
258                 amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 8);
259
260         /* set new EBP */
261         amd64_mov_reg_membase (code, AMD64_RBP, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, rbp), 8);
262         /* load callee saved regs */
263         amd64_mov_reg_membase (code, AMD64_RBX, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, rbx), 8);
264         amd64_mov_reg_membase (code, AMD64_R12, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, r12), 8);
265         amd64_mov_reg_membase (code, AMD64_R13, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, r13), 8);
266         amd64_mov_reg_membase (code, AMD64_R14, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, r14), 8);
267 #if !defined(__native_client_codegen__)
268         amd64_mov_reg_membase (code, AMD64_R15, AMD64_ARG_REG1, G_STRUCT_OFFSET (MonoContext, r15), 8);
269 #endif
270 #ifdef TARGET_WIN32
271         amd64_mov_reg_membase (code, AMD64_RDI, AMD64_ARG_REG1,  G_STRUCT_OFFSET (MonoContext, rdi), 8);
272         amd64_mov_reg_membase (code, AMD64_RSI, AMD64_ARG_REG1,  G_STRUCT_OFFSET (MonoContext, rsi), 8);
273 #endif
274
275         /* call the handler */
276         amd64_call_reg (code, AMD64_ARG_REG2);
277
278         if (! (pos & 8))
279                 amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 8);
280
281         /* restore RBP */
282         amd64_pop_reg (code, AMD64_RBP);
283
284         /* Restore callee saved regs */
285         for (i = AMD64_NREG; i >= 0; --i)
286                 if (AMD64_IS_CALLEE_SAVED_REG (i))
287                         amd64_pop_reg (code, i);
288
289         amd64_leave (code);
290         amd64_ret (code);
291
292         g_assert ((code - start) < kMaxCodeSize);
293
294         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
295
296         mono_arch_flush_icache (start, code - start);
297
298         if (info)
299                 *info = mono_tramp_info_create (g_strdup_printf ("call_filter"), start, code - start, ji, unwind_ops);
300
301         return start;
302 }
303
304 /* 
305  * The first few arguments are dummy, to force the other arguments to be passed on
306  * the stack, this avoids overwriting the argument registers in the throw trampoline.
307  */
308 void
309 mono_amd64_throw_exception (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
310                                                         guint64 dummy5, guint64 dummy6,
311                                                         mgreg_t *regs, mgreg_t rip,
312                                                         MonoObject *exc, gboolean rethrow)
313 {
314         static void (*restore_context) (MonoContext *);
315         MonoContext ctx;
316
317         if (!restore_context)
318                 restore_context = mono_get_restore_context ();
319
320         ctx.rsp = regs [AMD64_RSP];
321         ctx.rip = rip;
322         ctx.rbx = regs [AMD64_RBX];
323         ctx.rbp = regs [AMD64_RBP];
324         ctx.r12 = regs [AMD64_R12];
325         ctx.r13 = regs [AMD64_R13];
326         ctx.r14 = regs [AMD64_R14];
327         ctx.r15 = regs [AMD64_R15];
328         ctx.rdi = regs [AMD64_RDI];
329         ctx.rsi = regs [AMD64_RSI];
330         ctx.rax = regs [AMD64_RAX];
331         ctx.rcx = regs [AMD64_RCX];
332         ctx.rdx = regs [AMD64_RDX];
333
334         if (mono_object_isinst (exc, mono_defaults.exception_class)) {
335                 MonoException *mono_ex = (MonoException*)exc;
336                 if (!rethrow)
337                         mono_ex->stack_trace = NULL;
338         }
339
340         if (mono_debug_using_mono_debugger ()) {
341                 guint8 buf [16];
342
343                 mono_breakpoint_clean_code (NULL, (gpointer)rip, 8, buf, sizeof (buf));
344
345                 if (buf [3] == 0xe8) {
346                         MonoContext ctx_cp = ctx;
347                         ctx_cp.rip = rip - 5;
348
349                         if (mono_debugger_handle_exception (&ctx_cp, exc)) {
350                                 restore_context (&ctx_cp);
351                                 g_assert_not_reached ();
352                         }
353                 }
354         }
355
356         /* adjust eip so that it point into the call instruction */
357         ctx.rip -= 1;
358
359         mono_handle_exception (&ctx, exc);
360         restore_context (&ctx);
361
362         g_assert_not_reached ();
363 }
364
365 void
366 mono_amd64_throw_corlib_exception (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
367                                                                    guint64 dummy5, guint64 dummy6,
368                                                                    mgreg_t *regs, mgreg_t rip,
369                                                                    guint32 ex_token_index, gint64 pc_offset)
370 {
371         guint32 ex_token = MONO_TOKEN_TYPE_DEF | ex_token_index;
372         MonoException *ex;
373
374         ex = mono_exception_from_token (mono_defaults.exception_class->image, ex_token);
375
376         rip -= pc_offset;
377
378         /* Negate the ip adjustment done in mono_amd64_throw_exception () */
379         rip += 1;
380
381         mono_amd64_throw_exception (dummy1, dummy2, dummy3, dummy4, dummy5, dummy6, regs, rip, (MonoObject*)ex, FALSE);
382 }
383
384 static void
385 mono_amd64_resume_unwind (guint64 dummy1, guint64 dummy2, guint64 dummy3, guint64 dummy4,
386                                                   guint64 dummy5, guint64 dummy6,
387                                                   mgreg_t *regs, mgreg_t rip,
388                                                   guint32 dummy7, gint64 dummy8)
389 {
390         /* Only the register parameters are valid */
391         MonoContext ctx;
392
393         ctx.rsp = regs [AMD64_RSP];
394         ctx.rip = rip;
395         ctx.rbx = regs [AMD64_RBX];
396         ctx.rbp = regs [AMD64_RBP];
397         ctx.r12 = regs [AMD64_R12];
398         ctx.r13 = regs [AMD64_R13];
399         ctx.r14 = regs [AMD64_R14];
400         ctx.r15 = regs [AMD64_R15];
401         ctx.rdi = regs [AMD64_RDI];
402         ctx.rsi = regs [AMD64_RSI];
403         ctx.rax = regs [AMD64_RAX];
404         ctx.rcx = regs [AMD64_RCX];
405         ctx.rdx = regs [AMD64_RDX];
406
407         mono_resume_unwind (&ctx);
408 }
409
410 /*
411  * get_throw_trampoline:
412  *
413  *  Generate a call to mono_amd64_throw_exception/
414  * mono_amd64_throw_corlib_exception.
415  */
416 static gpointer
417 get_throw_trampoline (MonoTrampInfo **info, gboolean rethrow, gboolean corlib, gboolean llvm_abs, gboolean resume_unwind, const char *tramp_name, gboolean aot)
418 {
419         guint8* start;
420         guint8 *code;
421         MonoJumpInfo *ji = NULL;
422         GSList *unwind_ops = NULL;
423         int i, stack_size, arg_offsets [16], regs_offset, dummy_stack_space;
424         const guint kMaxCodeSize = NACL_SIZE (256, 512);
425
426 #ifdef TARGET_WIN32
427         dummy_stack_space = 6 * sizeof(mgreg_t);        /* Windows expects stack space allocated for all 6 dummy args. */
428 #else
429         dummy_stack_space = 0;
430 #endif
431
432         start = code = mono_global_codeman_reserve (kMaxCodeSize);
433
434         /* The stack is unaligned on entry */
435         stack_size = 192 + 8 + dummy_stack_space;
436
437         code = start;
438
439         if (info)
440                 unwind_ops = mono_arch_get_cie_program ();
441
442         /* Alloc frame */
443         amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, stack_size);
444         if (info)
445                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, stack_size + 8);
446
447         /*
448          * To hide linux/windows calling convention differences, we pass all arguments on
449          * the stack by passing 6 dummy values in registers.
450          */
451
452         arg_offsets [0] = dummy_stack_space + 0;
453         arg_offsets [1] = dummy_stack_space + sizeof(mgreg_t);
454         arg_offsets [2] = dummy_stack_space + sizeof(mgreg_t) * 2;
455         arg_offsets [3] = dummy_stack_space + sizeof(mgreg_t) * 3;
456         regs_offset = dummy_stack_space + sizeof(mgreg_t) * 4;
457
458         /* Save registers */
459         for (i = 0; i < AMD64_NREG; ++i)
460                 if (i != AMD64_RSP)
461                         amd64_mov_membase_reg (code, AMD64_RSP, regs_offset + (i * sizeof(mgreg_t)), i, sizeof(mgreg_t));
462         /* Save RSP */
463         amd64_lea_membase (code, AMD64_RAX, AMD64_RSP, stack_size + sizeof(mgreg_t));
464         amd64_mov_membase_reg (code, AMD64_RSP, regs_offset + (AMD64_RSP * sizeof(mgreg_t)), X86_EAX, sizeof(mgreg_t));
465         /* Set arg1 == regs */
466         amd64_lea_membase (code, AMD64_RAX, AMD64_RSP, regs_offset);
467         amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [0], AMD64_RAX, sizeof(mgreg_t));
468         /* Set arg2 == eip */
469         if (llvm_abs)
470                 amd64_alu_reg_reg (code, X86_XOR, AMD64_RAX, AMD64_RAX);
471         else
472                 amd64_mov_reg_membase (code, AMD64_RAX, AMD64_RSP, stack_size, sizeof(mgreg_t));
473         amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [1], AMD64_RAX, sizeof(mgreg_t));
474         /* Set arg3 == exc/ex_token_index */
475         if (resume_unwind)
476                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [2], 0, sizeof(mgreg_t));
477         else
478                 amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [2], AMD64_ARG_REG1, sizeof(mgreg_t));
479         /* Set arg4 == rethrow/pc offset */
480         if (resume_unwind) {
481                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [3], 0, sizeof(mgreg_t));
482         } else if (corlib) {
483                 amd64_mov_membase_reg (code, AMD64_RSP, arg_offsets [3], AMD64_ARG_REG2, sizeof(mgreg_t));
484                 if (llvm_abs)
485                         /* 
486                          * The caller is LLVM code which passes the absolute address not a pc offset,
487                          * so compensate by passing 0 as 'rip' and passing the negated abs address as
488                          * the pc offset.
489                          */
490                         amd64_neg_membase (code, AMD64_RSP, arg_offsets [3]);
491         } else {
492                 amd64_mov_membase_imm (code, AMD64_RSP, arg_offsets [3], rethrow, sizeof(mgreg_t));
493         }
494
495         if (aot) {
496                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, corlib ? "mono_amd64_throw_corlib_exception" : "mono_amd64_throw_exception");
497                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
498         } else {
499                 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));
500         }
501         amd64_call_reg (code, AMD64_R11);
502         amd64_breakpoint (code);
503
504         mono_arch_flush_icache (start, code - start);
505
506         g_assert ((code - start) < kMaxCodeSize);
507
508         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
509
510         if (info)
511                 *info = mono_tramp_info_create (g_strdup (tramp_name), start, code - start, ji, unwind_ops);
512
513         return start;
514 }
515
516 /**
517  * mono_arch_get_throw_exception:
518  *
519  * Returns a function pointer which can be used to raise 
520  * exceptions. The returned function has the following 
521  * signature: void (*func) (MonoException *exc); 
522  *
523  */
524 gpointer
525 mono_arch_get_throw_exception (MonoTrampInfo **info, gboolean aot)
526 {
527         return get_throw_trampoline (info, FALSE, FALSE, FALSE, FALSE, "throw_exception", aot);
528 }
529
530 gpointer 
531 mono_arch_get_rethrow_exception (MonoTrampInfo **info, gboolean aot)
532 {
533         return get_throw_trampoline (info, TRUE, FALSE, FALSE, FALSE, "rethrow_exception", aot);
534 }
535
536 /**
537  * mono_arch_get_throw_corlib_exception:
538  *
539  * Returns a function pointer which can be used to raise 
540  * corlib exceptions. The returned function has the following 
541  * signature: void (*func) (guint32 ex_token, guint32 offset); 
542  * Here, offset is the offset which needs to be substracted from the caller IP 
543  * to get the IP of the throw. Passing the offset has the advantage that it 
544  * needs no relocations in the caller.
545  */
546 gpointer 
547 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
548 {
549         return get_throw_trampoline (info, FALSE, TRUE, FALSE, FALSE, "throw_corlib_exception", aot);
550 }
551
552 /*
553  * mono_arch_find_jit_info:
554  *
555  * This function is used to gather information from @ctx, and store it in @frame_info.
556  * It unwinds one stack frame, and stores the resulting context into @new_ctx. @lmf
557  * is modified if needed.
558  * Returns TRUE on success, FALSE otherwise.
559  */
560 gboolean
561 mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, 
562                                                          MonoJitInfo *ji, MonoContext *ctx, 
563                                                          MonoContext *new_ctx, MonoLMF **lmf,
564                                                          mgreg_t **save_locations,
565                                                          StackFrameInfo *frame)
566 {
567         gpointer ip = MONO_CONTEXT_GET_IP (ctx);
568
569         memset (frame, 0, sizeof (StackFrameInfo));
570         frame->ji = ji;
571
572         *new_ctx = *ctx;
573
574         if (ji != NULL) {
575                 mgreg_t regs [MONO_MAX_IREGS + 1];
576                 guint8 *cfa;
577                 guint32 unwind_info_len;
578                 guint8 *unwind_info;
579
580                 frame->type = FRAME_TYPE_MANAGED;
581
582                 if (ji->from_aot)
583                         unwind_info = mono_aot_get_unwind_info (ji, &unwind_info_len);
584                 else
585                         unwind_info = mono_get_cached_unwind_info (ji->used_regs, &unwind_info_len);
586
587                 frame->unwind_info = unwind_info;
588                 frame->unwind_info_len = unwind_info_len;
589  
590                 regs [AMD64_RAX] = new_ctx->rax;
591                 regs [AMD64_RBX] = new_ctx->rbx;
592                 regs [AMD64_RCX] = new_ctx->rcx;
593                 regs [AMD64_RDX] = new_ctx->rdx;
594                 regs [AMD64_RBP] = new_ctx->rbp;
595                 regs [AMD64_RSP] = new_ctx->rsp;
596                 regs [AMD64_RSI] = new_ctx->rsi;
597                 regs [AMD64_RDI] = new_ctx->rdi;
598                 regs [AMD64_RIP] = new_ctx->rip;
599                 regs [AMD64_R12] = new_ctx->r12;
600                 regs [AMD64_R13] = new_ctx->r13;
601                 regs [AMD64_R14] = new_ctx->r14;
602                 regs [AMD64_R15] = new_ctx->r15;
603
604                 mono_unwind_frame (unwind_info, unwind_info_len, ji->code_start, 
605                                                    (guint8*)ji->code_start + ji->code_size,
606                                                    ip, regs, MONO_MAX_IREGS + 1, 
607                                                    save_locations, MONO_MAX_IREGS, &cfa);
608
609                 new_ctx->rax = regs [AMD64_RAX];
610                 new_ctx->rbx = regs [AMD64_RBX];
611                 new_ctx->rcx = regs [AMD64_RCX];
612                 new_ctx->rdx = regs [AMD64_RDX];
613                 new_ctx->rbp = regs [AMD64_RBP];
614                 new_ctx->rsp = regs [AMD64_RSP];
615                 new_ctx->rsi = regs [AMD64_RSI];
616                 new_ctx->rdi = regs [AMD64_RDI];
617                 new_ctx->rip = regs [AMD64_RIP];
618                 new_ctx->r12 = regs [AMD64_R12];
619                 new_ctx->r13 = regs [AMD64_R13];
620                 new_ctx->r14 = regs [AMD64_R14];
621                 new_ctx->r15 = regs [AMD64_R15];
622  
623                 /* The CFA becomes the new SP value */
624                 new_ctx->rsp = (mgreg_t)cfa;
625
626                 /* Adjust IP */
627                 new_ctx->rip --;
628
629                 if (*lmf && ((*lmf) != jit_tls->first_lmf) && (MONO_CONTEXT_GET_SP (ctx) >= (gpointer)(*lmf)->rsp)) {
630                         /* remove any unused lmf */
631                         *lmf = (gpointer)(((guint64)(*lmf)->previous_lmf) & ~3);
632                 }
633
634 #ifndef MONO_AMD64_NO_PUSHES
635                 /* Pop arguments off the stack */
636                 if (ji->has_arch_eh_info)
637                         new_ctx->rsp += mono_jit_info_get_arch_eh_info (ji)->stack_size;
638 #endif
639
640                 return TRUE;
641         } else if (*lmf) {
642                 guint64 rip;
643
644                 if (((guint64)(*lmf)->previous_lmf) & 2) {
645                         /* 
646                          * This LMF entry is created by the soft debug code to mark transitions to
647                          * managed code done during invokes.
648                          */
649                         MonoLMFExt *ext = (MonoLMFExt*)(*lmf);
650
651                         g_assert (ext->debugger_invoke);
652
653                         memcpy (new_ctx, &ext->ctx, sizeof (MonoContext));
654
655                         *lmf = (gpointer)(((guint64)(*lmf)->previous_lmf) & ~3);
656
657                         frame->type = FRAME_TYPE_DEBUGGER_INVOKE;
658
659                         return TRUE;
660                 }
661
662                 if (((guint64)(*lmf)->previous_lmf) & 1) {
663                         /* This LMF has the rip field set */
664                         rip = (*lmf)->rip;
665                 } else if ((*lmf)->rsp == 0) {
666                         /* Top LMF entry */
667                         return FALSE;
668                 } else {
669                         /* 
670                          * The rsp field is set just before the call which transitioned to native 
671                          * code. Obtain the rip from the stack.
672                          */
673                         rip = *(guint64*)((*lmf)->rsp - sizeof(mgreg_t));
674                 }
675
676                 ji = mini_jit_info_table_find (domain, (gpointer)rip, NULL);
677                 /*
678                  * FIXME: ji == NULL can happen when a managed-to-native wrapper is interrupted
679                  * in the soft debugger suspend code, since (*lmf)->rsp no longer points to the
680                  * return address.
681                  */
682                 //g_assert (ji);
683                 if (!ji)
684                         return FALSE;
685
686                 /* Adjust IP */
687                 rip --;
688
689                 frame->ji = ji;
690                 frame->type = FRAME_TYPE_MANAGED_TO_NATIVE;
691
692                 new_ctx->rip = rip;
693                 new_ctx->rbp = (*lmf)->rbp;
694                 new_ctx->rsp = (*lmf)->rsp;
695
696                 new_ctx->rbx = (*lmf)->rbx;
697                 new_ctx->r12 = (*lmf)->r12;
698                 new_ctx->r13 = (*lmf)->r13;
699                 new_ctx->r14 = (*lmf)->r14;
700                 new_ctx->r15 = (*lmf)->r15;
701 #ifdef TARGET_WIN32
702                 new_ctx->rdi = (*lmf)->rdi;
703                 new_ctx->rsi = (*lmf)->rsi;
704 #endif
705
706                 *lmf = (gpointer)(((guint64)(*lmf)->previous_lmf) & ~3);
707
708                 return TRUE;
709         }
710
711         return FALSE;
712 }
713
714 /*
715  * handle_exception:
716  *
717  *   Called by resuming from a signal handler.
718  */
719 static void
720 handle_signal_exception (gpointer obj)
721 {
722         MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
723         MonoContext ctx;
724         static void (*restore_context) (MonoContext *);
725
726         if (!restore_context)
727                 restore_context = mono_get_restore_context ();
728
729         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
730
731         if (mono_debugger_handle_exception (&ctx, (MonoObject *)obj))
732                 return;
733
734         mono_handle_exception (&ctx, obj);
735
736         restore_context (&ctx);
737 }
738
739 void
740 mono_arch_setup_async_callback (MonoContext *ctx, void (*async_cb)(void *fun), gpointer user_data)
741 {
742         guint64 sp = ctx->rsp;
743
744         ctx->rdi = (guint64)user_data;
745
746         /* Allocate a stack frame below the red zone */
747         sp -= 128;
748         /* The stack should be unaligned */
749         if ((sp % 16) == 0)
750                 sp -= 8;
751         ctx->rsp = sp;
752         ctx->rip = (guint64)async_cb;
753 }
754
755 /**
756  * mono_arch_handle_exception:
757  *
758  * @ctx: saved processor state
759  * @obj: the exception object
760  */
761 gboolean
762 mono_arch_handle_exception (void *sigctx, gpointer obj)
763 {
764 #if defined(MONO_ARCH_USE_SIGACTION)
765         MonoContext mctx;
766
767         /*
768          * Handling the exception in the signal handler is problematic, since the original
769          * signal is disabled, and we could run arbitrary code though the debugger. So
770          * resume into the normal stack and do most work there if possible.
771          */
772         MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
773
774         /* Pass the ctx parameter in TLS */
775         mono_arch_sigctx_to_monoctx (sigctx, &jit_tls->ex_ctx);
776
777         mctx = jit_tls->ex_ctx;
778         mono_arch_setup_async_callback (&mctx, handle_signal_exception, obj);
779         mono_monoctx_to_sigctx (&mctx, sigctx);
780
781         return TRUE;
782 #else
783         MonoContext mctx;
784
785         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
786
787         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj))
788                 return TRUE;
789
790         mono_handle_exception (&mctx, obj);
791
792         mono_arch_monoctx_to_sigctx (&mctx, sigctx);
793
794         return TRUE;
795 #endif
796 }
797
798 void
799 mono_arch_sigctx_to_monoctx (void *sigctx, MonoContext *mctx)
800 {
801         mono_sigctx_to_monoctx (sigctx, mctx);
802 }
803
804 void
805 mono_arch_monoctx_to_sigctx (MonoContext *mctx, void *sigctx)
806 {
807         mono_monoctx_to_sigctx (mctx, sigctx);
808 }
809
810 gpointer
811 mono_arch_ip_from_context (void *sigctx)
812 {
813 #if defined(MONO_ARCH_USE_SIGACTION)
814         ucontext_t *ctx = (ucontext_t*)sigctx;
815
816         return (gpointer)UCONTEXT_REG_RIP (ctx);
817 #else
818         MonoContext *ctx = sigctx;
819         return (gpointer)ctx->rip;
820 #endif  
821 }
822
823 static void
824 restore_soft_guard_pages (void)
825 {
826         MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
827         if (jit_tls->stack_ovf_guard_base)
828                 mono_mprotect (jit_tls->stack_ovf_guard_base, jit_tls->stack_ovf_guard_size, MONO_MMAP_NONE);
829 }
830
831 /* 
832  * this function modifies mctx so that when it is restored, it
833  * won't execcute starting at mctx.eip, but in a function that
834  * will restore the protection on the soft-guard pages and return back to
835  * continue at mctx.eip.
836  */
837 static void
838 prepare_for_guard_pages (MonoContext *mctx)
839 {
840         gpointer *sp;
841         sp = (gpointer)(mctx->rsp);
842         sp -= 1;
843         /* the return addr */
844         sp [0] = (gpointer)(mctx->rip);
845         mctx->rip = (guint64)restore_soft_guard_pages;
846         mctx->rsp = (guint64)sp;
847 }
848
849 static void
850 altstack_handle_and_restore (void *sigctx, gpointer obj, gboolean stack_ovf)
851 {
852         void (*restore_context) (MonoContext *);
853         MonoContext mctx;
854
855         restore_context = mono_get_restore_context ();
856         mono_arch_sigctx_to_monoctx (sigctx, &mctx);
857
858         if (mono_debugger_handle_exception (&mctx, (MonoObject *)obj)) {
859                 if (stack_ovf)
860                         prepare_for_guard_pages (&mctx);
861                 restore_context (&mctx);
862         }
863
864         mono_handle_exception (&mctx, obj);
865         if (stack_ovf)
866                 prepare_for_guard_pages (&mctx);
867         restore_context (&mctx);
868 }
869
870 void
871 mono_arch_handle_altstack_exception (void *sigctx, gpointer fault_addr, gboolean stack_ovf)
872 {
873 #if defined(MONO_ARCH_USE_SIGACTION)
874         MonoException *exc = NULL;
875         ucontext_t *ctx = (ucontext_t*)sigctx;
876         MonoJitInfo *ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)UCONTEXT_REG_RIP (sigctx), NULL);
877         gpointer *sp;
878         int frame_size;
879
880         if (stack_ovf)
881                 exc = mono_domain_get ()->stack_overflow_ex;
882         if (!ji)
883                 mono_handle_native_sigsegv (SIGSEGV, sigctx);
884
885         /* setup a call frame on the real stack so that control is returned there
886          * and exception handling can continue.
887          * The frame looks like:
888          *   ucontext struct
889          *   ...
890          *   return ip
891          * 128 is the size of the red zone
892          */
893         frame_size = sizeof (ucontext_t) + sizeof (gpointer) * 4 + 128;
894         frame_size += 15;
895         frame_size &= ~15;
896         sp = (gpointer)(UCONTEXT_REG_RSP (sigctx) & ~15);
897         sp = (gpointer)((char*)sp - frame_size);
898         /* the arguments must be aligned */
899         sp [-1] = (gpointer)UCONTEXT_REG_RIP (sigctx);
900         /* may need to adjust pointers in the new struct copy, depending on the OS */
901         memcpy (sp + 4, ctx, sizeof (ucontext_t));
902         /* at the return form the signal handler execution starts in altstack_handle_and_restore() */
903         UCONTEXT_REG_RIP (sigctx) = (unsigned long)altstack_handle_and_restore;
904         UCONTEXT_REG_RSP (sigctx) = (unsigned long)(sp - 1);
905         UCONTEXT_REG_RDI (sigctx) = (unsigned long)(sp + 4);
906         UCONTEXT_REG_RSI (sigctx) = (guint64)exc;
907         UCONTEXT_REG_RDX (sigctx) = stack_ovf;
908 #endif
909 }
910
911 guint64
912 mono_amd64_get_original_ip (void)
913 {
914         MonoLMF *lmf = mono_get_lmf ();
915
916         g_assert (lmf);
917
918         /* Reset the change to previous_lmf */
919         lmf->previous_lmf = (gpointer)((guint64)lmf->previous_lmf & ~1);
920
921         return lmf->rip;
922 }
923
924 gpointer
925 mono_arch_get_throw_pending_exception (MonoTrampInfo **info, gboolean aot)
926 {
927         guint8 *code, *start;
928         guint8 *br[1];
929         gpointer throw_trampoline;
930         MonoJumpInfo *ji = NULL;
931         GSList *unwind_ops = NULL;
932         const guint kMaxCodeSize = NACL_SIZE (128, 256);
933
934         start = code = mono_global_codeman_reserve (kMaxCodeSize);
935
936         /* We are in the frame of a managed method after a call */
937         /* 
938          * We would like to throw the pending exception in such a way that it looks to
939          * be thrown from the managed method.
940          */
941
942         /* Save registers which might contain the return value of the call */
943         amd64_push_reg (code, AMD64_RAX);
944         amd64_push_reg (code, AMD64_RDX);
945
946         amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 8);
947         amd64_movsd_membase_reg (code, AMD64_RSP, 0, AMD64_XMM0);
948
949         /* Align stack */
950         amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 8);
951
952         /* Obtain the pending exception */
953         if (aot) {
954                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, "mono_thread_get_and_clear_pending_exception");
955                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
956         } else {
957                 amd64_mov_reg_imm (code, AMD64_R11, mono_thread_get_and_clear_pending_exception);
958         }
959         amd64_call_reg (code, AMD64_R11);
960
961         /* Check if it is NULL, and branch */
962         amd64_alu_reg_imm (code, X86_CMP, AMD64_RAX, 0);
963         br[0] = code; x86_branch8 (code, X86_CC_EQ, 0, FALSE);
964
965         /* exc != NULL branch */
966
967         /* Save the exc on the stack */
968         amd64_push_reg (code, AMD64_RAX);
969         /* Align stack */
970         amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 8);
971
972         /* Obtain the original ip and clear the flag in previous_lmf */
973         if (aot) {
974                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, "mono_amd64_get_original_ip");
975                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
976         } else {
977                 amd64_mov_reg_imm (code, AMD64_R11, mono_amd64_get_original_ip);
978         }
979         amd64_call_reg (code, AMD64_R11);       
980
981         /* Load exc */
982         amd64_mov_reg_membase (code, AMD64_R11, AMD64_RSP, 8, 8);
983
984         /* Pop saved stuff from the stack */
985         amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 6 * 8);
986
987         /* Setup arguments for the throw trampoline */
988         /* Exception */
989         amd64_mov_reg_reg (code, AMD64_ARG_REG1, AMD64_R11, 8);
990         /* The trampoline expects the caller ip to be pushed on the stack */
991         amd64_push_reg (code, AMD64_RAX);
992
993         /* Call the throw trampoline */
994         if (aot) {
995                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, "mono_amd64_throw_exception");
996                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
997         } else {
998                 throw_trampoline = mono_get_throw_exception ();
999                 amd64_mov_reg_imm (code, AMD64_R11, throw_trampoline);
1000         }
1001         /* We use a jump instead of a call so we can push the original ip on the stack */
1002         amd64_jump_reg (code, AMD64_R11);
1003
1004         /* ex == NULL branch */
1005         mono_amd64_patch (br [0], code);
1006
1007         /* Obtain the original ip and clear the flag in previous_lmf */
1008         if (aot) {
1009                 ji = mono_patch_info_list_prepend (ji, code - start, MONO_PATCH_INFO_JIT_ICALL_ADDR, "mono_amd64_get_original_ip");
1010                 amd64_mov_reg_membase (code, AMD64_R11, AMD64_RIP, 0, 8);
1011         } else {
1012                 amd64_mov_reg_imm (code, AMD64_R11, mono_amd64_get_original_ip);
1013         }
1014         amd64_call_reg (code, AMD64_R11);       
1015         amd64_mov_reg_reg (code, AMD64_R11, AMD64_RAX, 8);
1016
1017         /* Restore registers */
1018         amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 8);
1019         amd64_movsd_reg_membase (code, AMD64_XMM0, AMD64_RSP, 0);
1020         amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 8);
1021         amd64_pop_reg (code, AMD64_RDX);
1022         amd64_pop_reg (code, AMD64_RAX);
1023
1024         /* Return to original code */
1025         amd64_jump_reg (code, AMD64_R11);
1026
1027         g_assert ((code - start) < kMaxCodeSize);
1028
1029         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
1030
1031         if (info)
1032                 *info = mono_tramp_info_create (g_strdup_printf ("throw_pending_exception"), start, code - start, ji, unwind_ops);
1033
1034         return start;
1035 }
1036
1037 static gpointer throw_pending_exception;
1038
1039 /*
1040  * Called when a thread receives an async exception while executing unmanaged code.
1041  * Instead of checking for this exception in the managed-to-native wrapper, we hijack 
1042  * the return address on the stack to point to a helper routine which throws the
1043  * exception.
1044  */
1045 void
1046 mono_arch_notify_pending_exc (void)
1047 {
1048         MonoLMF *lmf = mono_get_lmf ();
1049
1050         if (!lmf)
1051                 /* Not yet started */
1052                 return;
1053
1054         if (lmf->rsp == 0)
1055                 /* Initial LMF */
1056                 return;
1057
1058         if ((guint64)lmf->previous_lmf & 1)
1059                 /* Already hijacked or trampoline LMF entry */
1060                 return;
1061
1062         /* lmf->rsp is set just before making the call which transitions to unmanaged code */
1063         lmf->rip = *(guint64*)(lmf->rsp - 8);
1064         /* Signal that lmf->rip is set */
1065         lmf->previous_lmf = (gpointer)((guint64)lmf->previous_lmf | 1);
1066
1067         *(gpointer*)(lmf->rsp - 8) = throw_pending_exception;
1068 }
1069
1070 GSList*
1071 mono_amd64_get_exception_trampolines (gboolean aot)
1072 {
1073         MonoTrampInfo *info;
1074         GSList *tramps = NULL;
1075
1076         mono_arch_get_throw_pending_exception (&info, aot);
1077         tramps = g_slist_prepend (tramps, info);
1078
1079         /* LLVM needs different throw trampolines */
1080         get_throw_trampoline (&info, FALSE, TRUE, FALSE, FALSE, "llvm_throw_corlib_exception_trampoline", aot);
1081         tramps = g_slist_prepend (tramps, info);
1082
1083         get_throw_trampoline (&info, FALSE, TRUE, TRUE, FALSE, "llvm_throw_corlib_exception_abs_trampoline", aot);
1084         tramps = g_slist_prepend (tramps, info);
1085
1086         get_throw_trampoline (&info, FALSE, TRUE, TRUE, TRUE, "llvm_resume_unwind_trampoline", FALSE);
1087         tramps = g_slist_prepend (tramps, info);
1088
1089         return tramps;
1090 }
1091
1092 void
1093 mono_arch_exceptions_init (void)
1094 {
1095         GSList *tramps, *l;
1096         gpointer tramp;
1097
1098         if (mono_aot_only) {
1099                 throw_pending_exception = mono_aot_get_trampoline ("throw_pending_exception");
1100                 tramp = mono_aot_get_trampoline ("llvm_throw_corlib_exception_trampoline");
1101                 mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_trampoline", NULL, TRUE);
1102                 tramp = mono_aot_get_trampoline ("llvm_throw_corlib_exception_abs_trampoline");
1103                 mono_register_jit_icall (tramp, "llvm_throw_corlib_exception_abs_trampoline", NULL, TRUE);
1104                 tramp = mono_aot_get_trampoline ("llvm_resume_unwind_trampoline");
1105                 mono_register_jit_icall (tramp, "llvm_resume_unwind_trampoline", NULL, TRUE);
1106         } else {
1107                 /* Call this to avoid initialization races */
1108                 throw_pending_exception = mono_arch_get_throw_pending_exception (NULL, FALSE);
1109
1110                 tramps = mono_amd64_get_exception_trampolines (FALSE);
1111                 for (l = tramps; l; l = l->next) {
1112                         MonoTrampInfo *info = l->data;
1113
1114                         mono_register_jit_icall (info->code, g_strdup (info->name), NULL, TRUE);
1115                         mono_save_trampoline_xdebug_info (info);
1116                         mono_tramp_info_free (info);
1117                 }
1118                 g_slist_free (tramps);
1119         }
1120 }
1121
1122 #ifdef TARGET_WIN32
1123
1124 /*
1125  * The mono_arch_unwindinfo* methods are used to build and add
1126  * function table info for each emitted method from mono.  On Winx64
1127  * the seh handler will not be called if the mono methods are not
1128  * added to the function table.  
1129  *
1130  * We should not need to add non-volatile register info to the 
1131  * table since mono stores that info elsewhere. (Except for the register 
1132  * used for the fp.)
1133  */
1134
1135 #define MONO_MAX_UNWIND_CODES 22
1136
1137 typedef union _UNWIND_CODE {
1138     struct {
1139         guchar CodeOffset;
1140         guchar UnwindOp : 4;
1141         guchar OpInfo   : 4;
1142     };
1143     gushort FrameOffset;
1144 } UNWIND_CODE, *PUNWIND_CODE;
1145
1146 typedef struct _UNWIND_INFO {
1147         guchar Version       : 3;
1148         guchar Flags         : 5;
1149         guchar SizeOfProlog;
1150         guchar CountOfCodes;
1151         guchar FrameRegister : 4;
1152         guchar FrameOffset   : 4;
1153         /* custom size for mono allowing for mono allowing for*/
1154         /*UWOP_PUSH_NONVOL ebp offset = 21*/
1155         /*UWOP_ALLOC_LARGE : requires 2 or 3 offset = 20*/
1156         /*UWOP_SET_FPREG : requires 2 offset = 17*/
1157         /*UWOP_PUSH_NONVOL offset = 15-0*/
1158         UNWIND_CODE UnwindCode[MONO_MAX_UNWIND_CODES]; 
1159
1160 /*      UNWIND_CODE MoreUnwindCode[((CountOfCodes + 1) & ~1) - 1];
1161  *      union {
1162  *          OPTIONAL ULONG ExceptionHandler;
1163  *          OPTIONAL ULONG FunctionEntry;
1164  *      };
1165  *      OPTIONAL ULONG ExceptionData[]; */
1166 } UNWIND_INFO, *PUNWIND_INFO;
1167
1168 typedef struct
1169 {
1170         RUNTIME_FUNCTION runtimeFunction;
1171         UNWIND_INFO unwindInfo;
1172 } MonoUnwindInfo, *PMonoUnwindInfo;
1173
1174 static void
1175 mono_arch_unwindinfo_create (gpointer* monoui)
1176 {
1177         PMonoUnwindInfo newunwindinfo;
1178         *monoui = newunwindinfo = g_new0 (MonoUnwindInfo, 1);
1179         newunwindinfo->unwindInfo.Version = 1;
1180 }
1181
1182 void
1183 mono_arch_unwindinfo_add_push_nonvol (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg )
1184 {
1185         PMonoUnwindInfo unwindinfo;
1186         PUNWIND_CODE unwindcode;
1187         guchar codeindex;
1188         if (!*monoui)
1189                 mono_arch_unwindinfo_create (monoui);
1190         
1191         unwindinfo = (MonoUnwindInfo*)*monoui;
1192
1193         if (unwindinfo->unwindInfo.CountOfCodes >= MONO_MAX_UNWIND_CODES)
1194                 g_error ("Larger allocation needed for the unwind information.");
1195
1196         codeindex = MONO_MAX_UNWIND_CODES - (++unwindinfo->unwindInfo.CountOfCodes);
1197         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
1198         unwindcode->UnwindOp = 0; /*UWOP_PUSH_NONVOL*/
1199         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
1200         unwindcode->OpInfo = reg;
1201
1202         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
1203                 g_error ("Adding unwind info in wrong order.");
1204         
1205         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
1206 }
1207
1208 void
1209 mono_arch_unwindinfo_add_set_fpreg (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg )
1210 {
1211         PMonoUnwindInfo unwindinfo;
1212         PUNWIND_CODE unwindcode;
1213         guchar codeindex;
1214         if (!*monoui)
1215                 mono_arch_unwindinfo_create (monoui);
1216         
1217         unwindinfo = (MonoUnwindInfo*)*monoui;
1218
1219         if (unwindinfo->unwindInfo.CountOfCodes + 1 >= MONO_MAX_UNWIND_CODES)
1220                 g_error ("Larger allocation needed for the unwind information.");
1221
1222         codeindex = MONO_MAX_UNWIND_CODES - (unwindinfo->unwindInfo.CountOfCodes += 2);
1223         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
1224         unwindcode->FrameOffset = 0; /*Assuming no frame pointer offset for mono*/
1225         unwindcode++;
1226         unwindcode->UnwindOp = 3; /*UWOP_SET_FPREG*/
1227         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
1228         unwindcode->OpInfo = reg;
1229         
1230         unwindinfo->unwindInfo.FrameRegister = reg;
1231
1232         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
1233                 g_error ("Adding unwind info in wrong order.");
1234         
1235         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
1236 }
1237
1238 void
1239 mono_arch_unwindinfo_add_alloc_stack (gpointer* monoui, gpointer codebegin, gpointer nextip, guint size )
1240 {
1241         PMonoUnwindInfo unwindinfo;
1242         PUNWIND_CODE unwindcode;
1243         guchar codeindex;
1244         guchar codesneeded;
1245         if (!*monoui)
1246                 mono_arch_unwindinfo_create (monoui);
1247         
1248         unwindinfo = (MonoUnwindInfo*)*monoui;
1249
1250         if (size < 0x8)
1251                 g_error ("Stack allocation must be equal to or greater than 0x8.");
1252         
1253         if (size <= 0x80)
1254                 codesneeded = 1;
1255         else if (size <= 0x7FFF8)
1256                 codesneeded = 2;
1257         else
1258                 codesneeded = 3;
1259         
1260         if (unwindinfo->unwindInfo.CountOfCodes + codesneeded > MONO_MAX_UNWIND_CODES)
1261                 g_error ("Larger allocation needed for the unwind information.");
1262
1263         codeindex = MONO_MAX_UNWIND_CODES - (unwindinfo->unwindInfo.CountOfCodes += codesneeded);
1264         unwindcode = &unwindinfo->unwindInfo.UnwindCode[codeindex];
1265
1266         if (codesneeded == 1) {
1267                 /*The size of the allocation is 
1268                   (the number in the OpInfo member) times 8 plus 8*/
1269                 unwindcode->OpInfo = (size - 8)/8;
1270                 unwindcode->UnwindOp = 2; /*UWOP_ALLOC_SMALL*/
1271         }
1272         else {
1273                 if (codesneeded == 3) {
1274                         /*the unscaled size of the allocation is recorded
1275                           in the next two slots in little-endian format*/
1276                         *((unsigned int*)(&unwindcode->FrameOffset)) = size;
1277                         unwindcode += 2;
1278                         unwindcode->OpInfo = 1;
1279                 }
1280                 else {
1281                         /*the size of the allocation divided by 8
1282                           is recorded in the next slot*/
1283                         unwindcode->FrameOffset = size/8; 
1284                         unwindcode++;   
1285                         unwindcode->OpInfo = 0;
1286                         
1287                 }
1288                 unwindcode->UnwindOp = 1; /*UWOP_ALLOC_LARGE*/
1289         }
1290
1291         unwindcode->CodeOffset = (((guchar*)nextip)-((guchar*)codebegin));
1292
1293         if (unwindinfo->unwindInfo.SizeOfProlog >= unwindcode->CodeOffset)
1294                 g_error ("Adding unwind info in wrong order.");
1295         
1296         unwindinfo->unwindInfo.SizeOfProlog = unwindcode->CodeOffset;
1297 }
1298
1299 guint
1300 mono_arch_unwindinfo_get_size (gpointer monoui)
1301 {
1302         PMonoUnwindInfo unwindinfo;
1303         if (!monoui)
1304                 return 0;
1305         
1306         unwindinfo = (MonoUnwindInfo*)monoui;
1307         return (8 + sizeof (MonoUnwindInfo)) - 
1308                 (sizeof (UNWIND_CODE) * (MONO_MAX_UNWIND_CODES - unwindinfo->unwindInfo.CountOfCodes));
1309 }
1310
1311 PRUNTIME_FUNCTION
1312 MONO_GET_RUNTIME_FUNCTION_CALLBACK ( DWORD64 ControlPc, IN PVOID Context )
1313 {
1314         MonoJitInfo *ji;
1315         guint64 pos;
1316         PMonoUnwindInfo targetinfo;
1317         MonoDomain *domain = mono_domain_get ();
1318
1319         ji = mini_jit_info_table_find (domain, (char*)ControlPc, NULL);
1320         if (!ji)
1321                 return 0;
1322
1323         pos = (guint64)(((char*)ji->code_start) + ji->code_size);
1324         
1325         targetinfo = (PMonoUnwindInfo)ALIGN_TO (pos, 8);
1326
1327         targetinfo->runtimeFunction.UnwindData = ((DWORD64)&targetinfo->unwindInfo) - ((DWORD64)Context);
1328
1329         return &targetinfo->runtimeFunction;
1330 }
1331
1332 void
1333 mono_arch_unwindinfo_install_unwind_info (gpointer* monoui, gpointer code, guint code_size)
1334 {
1335         PMonoUnwindInfo unwindinfo, targetinfo;
1336         guchar codecount;
1337         guint64 targetlocation;
1338         if (!*monoui)
1339                 return;
1340
1341         unwindinfo = (MonoUnwindInfo*)*monoui;
1342         targetlocation = (guint64)&(((guchar*)code)[code_size]);
1343         targetinfo = (PMonoUnwindInfo) ALIGN_TO(targetlocation, 8);
1344
1345         unwindinfo->runtimeFunction.EndAddress = code_size;
1346         unwindinfo->runtimeFunction.UnwindData = ((guchar*)&targetinfo->unwindInfo) - ((guchar*)code);
1347         
1348         memcpy (targetinfo, unwindinfo, sizeof (MonoUnwindInfo) - (sizeof (UNWIND_CODE) * MONO_MAX_UNWIND_CODES));
1349         
1350         codecount = unwindinfo->unwindInfo.CountOfCodes;
1351         if (codecount) {
1352                 memcpy (&targetinfo->unwindInfo.UnwindCode[0], &unwindinfo->unwindInfo.UnwindCode[MONO_MAX_UNWIND_CODES-codecount], 
1353                         sizeof (UNWIND_CODE) * unwindinfo->unwindInfo.CountOfCodes);
1354         }
1355
1356         g_free (unwindinfo);
1357         *monoui = 0;
1358
1359         RtlInstallFunctionTableCallback (((DWORD64)code) | 0x3, (DWORD64)code, code_size, MONO_GET_RUNTIME_FUNCTION_CALLBACK, code, NULL);
1360 }
1361
1362 #endif
1363
1364 #if MONO_SUPPORT_TASKLETS
1365 MonoContinuationRestore
1366 mono_tasklets_arch_restore (void)
1367 {
1368         static guint8* saved = NULL;
1369         guint8 *code, *start;
1370         int cont_reg = AMD64_R9; /* register usable on both call conventions */
1371         const guint kMaxCodeSize = NACL_SIZE (64, 128);
1372         
1373
1374         if (saved)
1375                 return (MonoContinuationRestore)saved;
1376         code = start = mono_global_codeman_reserve (kMaxCodeSize);
1377         /* the signature is: restore (MonoContinuation *cont, int state, MonoLMF **lmf_addr) */
1378         /* cont is in AMD64_ARG_REG1 ($rcx or $rdi)
1379          * state is in AMD64_ARG_REG2 ($rdx or $rsi)
1380          * lmf_addr is in AMD64_ARG_REG3 ($r8 or $rdx)
1381          * We move cont to cont_reg since we need both rcx and rdi for the copy
1382          * state is moved to $rax so it's setup as the return value and we can overwrite $rsi
1383          */
1384         amd64_mov_reg_reg (code, cont_reg, MONO_AMD64_ARG_REG1, 8);
1385         amd64_mov_reg_reg (code, AMD64_RAX, MONO_AMD64_ARG_REG2, 8);
1386         /* setup the copy of the stack */
1387         amd64_mov_reg_membase (code, AMD64_RCX, cont_reg, G_STRUCT_OFFSET (MonoContinuation, stack_used_size), sizeof (int));
1388         amd64_shift_reg_imm (code, X86_SHR, AMD64_RCX, 3);
1389         x86_cld (code);
1390         amd64_mov_reg_membase (code, AMD64_RSI, cont_reg, G_STRUCT_OFFSET (MonoContinuation, saved_stack), sizeof (gpointer));
1391         amd64_mov_reg_membase (code, AMD64_RDI, cont_reg, G_STRUCT_OFFSET (MonoContinuation, return_sp), sizeof (gpointer));
1392         amd64_prefix (code, X86_REP_PREFIX);
1393         amd64_movsl (code);
1394
1395         /* now restore the registers from the LMF */
1396         amd64_mov_reg_membase (code, AMD64_RCX, cont_reg, G_STRUCT_OFFSET (MonoContinuation, lmf), 8);
1397         amd64_mov_reg_membase (code, AMD64_RBX, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, rbx), 8);
1398         amd64_mov_reg_membase (code, AMD64_RBP, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, rbp), 8);
1399         amd64_mov_reg_membase (code, AMD64_R12, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, r12), 8);
1400         amd64_mov_reg_membase (code, AMD64_R13, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, r13), 8);
1401         amd64_mov_reg_membase (code, AMD64_R14, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, r14), 8);
1402 #if !defined(__native_client_codegen__)
1403         amd64_mov_reg_membase (code, AMD64_R15, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, r15), 8);
1404 #endif
1405 #ifdef TARGET_WIN32
1406         amd64_mov_reg_membase (code, AMD64_RDI, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, rdi), 8);
1407         amd64_mov_reg_membase (code, AMD64_RSI, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, rsi), 8);
1408 #endif
1409         amd64_mov_reg_membase (code, AMD64_RSP, AMD64_RCX, G_STRUCT_OFFSET (MonoLMF, rsp), 8);
1410
1411         /* restore the lmf chain */
1412         /*x86_mov_reg_membase (code, X86_ECX, X86_ESP, 12, 4);
1413         x86_mov_membase_reg (code, X86_ECX, 0, X86_EDX, 4);*/
1414
1415         /* state is already in rax */
1416         amd64_jump_membase (code, cont_reg, G_STRUCT_OFFSET (MonoContinuation, return_ip));
1417         g_assert ((code - start) <= kMaxCodeSize);
1418
1419         nacl_global_codeman_validate(&start, kMaxCodeSize, &code);
1420
1421         saved = start;
1422         return (MonoContinuationRestore)saved;
1423 }
1424 #endif
1425
1426 /*
1427  * mono_arch_setup_resume_sighandler_ctx:
1428  *
1429  *   Setup CTX so execution continues at FUNC.
1430  */
1431 void
1432 mono_arch_setup_resume_sighandler_ctx (MonoContext *ctx, gpointer func)
1433 {
1434         /* 
1435          * When resuming from a signal handler, the stack should be misaligned, just like right after
1436          * a call.
1437          */
1438         if ((((guint64)MONO_CONTEXT_GET_SP (ctx)) % 16) == 0)
1439                 MONO_CONTEXT_SET_SP (ctx, (guint64)MONO_CONTEXT_GET_SP (ctx) - 8);
1440         MONO_CONTEXT_SET_IP (ctx, func);
1441 }