2661e657636dde188bb897b51a5284f77f254c3f
[mono.git] / mono / utils / mono-context.h
1 /*
2  * mono-context.h: plat independent machine state definitions
3  *
4  *
5  * Copyright (c) 2011 Novell, Inc (http://www.novell.com)
6  */
7
8
9 #ifndef __MONO_MONO_CONTEXT_H__
10 #define __MONO_MONO_CONTEXT_H__
11
12 #include "mono-compiler.h"
13 #include "mono-sigcontext.h"
14 #include "mono-machine.h"
15
16 #ifdef HAVE_SIGNAL_H
17 #include <signal.h>
18 #endif
19
20 /*
21  * General notes about mono-context.
22  * Each arch defines a MonoContext struct with all GPR regs + IP/PC.
23  * IP/PC should be the last element of the struct (this is a mild sgen constraint we could drop if needed)
24  * Macros to get/set BP, SP and IP are defined too.
25  * MONO_CONTEXT_GET_CURRENT captures the current context as close as possible. One reg might be clobbered
26  *  to hold the address of the target MonoContext. It will be a caller save one, so should not be a problem.
27  */
28 #if (defined(__i386__) && !defined(MONO_CROSS_COMPILE)) || (defined(TARGET_X86))
29
30 /*HACK, move this to an eventual mono-signal.c*/
31 #if defined( __linux__) || defined(__sun) || defined(__APPLE__) || defined(__NetBSD__) || \
32        defined(__FreeBSD__) || defined(__OpenBSD__)
33 #ifdef HAVE_SIGACTION
34 #define MONO_SIGNAL_USE_UCONTEXT_T 1
35 #endif
36 #endif
37
38 #if defined(__native_client__)
39 #undef MONO_SIGNAL_USE_UCONTEXT_T
40 #endif
41
42 #ifdef HOST_WIN32
43 /* sigcontext surrogate */
44 struct sigcontext {
45         unsigned int eax;
46         unsigned int ebx;
47         unsigned int ecx;
48         unsigned int edx;
49         unsigned int ebp;
50         unsigned int esp;
51         unsigned int esi;
52         unsigned int edi;
53         unsigned int eip;
54 };
55 #endif
56
57 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__)
58 # define SC_EAX sc_eax
59 # define SC_EBX sc_ebx
60 # define SC_ECX sc_ecx
61 # define SC_EDX sc_edx
62 # define SC_EBP sc_ebp
63 # define SC_EIP sc_eip
64 # define SC_ESP sc_esp
65 # define SC_EDI sc_edi
66 # define SC_ESI sc_esi
67 #elif defined(__HAIKU__)
68 # define SC_EAX regs.eax
69 # define SC_EBX regs._reserved_2[2]
70 # define SC_ECX regs.ecx
71 # define SC_EDX regs.edx
72 # define SC_EBP regs.ebp
73 # define SC_EIP regs.eip
74 # define SC_ESP regs.esp
75 # define SC_EDI regs._reserved_2[0]
76 # define SC_ESI regs._reserved_2[1]
77 #else
78 # define SC_EAX eax
79 # define SC_EBX ebx
80 # define SC_ECX ecx
81 # define SC_EDX edx
82 # define SC_EBP ebp
83 # define SC_EIP eip
84 # define SC_ESP esp
85 # define SC_EDI edi
86 # define SC_ESI esi
87 #endif
88
89 typedef struct {
90         mgreg_t eax;
91         mgreg_t ebx;
92         mgreg_t ecx;
93         mgreg_t edx;
94         mgreg_t ebp;
95         mgreg_t esp;
96         mgreg_t esi;
97         mgreg_t edi;
98         mgreg_t eip;
99 } MonoContext;
100
101 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->eip = (mgreg_t)(ip); } while (0); 
102 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->ebp = (mgreg_t)(bp); } while (0); 
103 #define MONO_CONTEXT_SET_SP(ctx,sp) do { (ctx)->esp = (mgreg_t)(sp); } while (0); 
104
105 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->eip))
106 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->ebp))
107 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->esp))
108
109 /*We set EAX to zero since we are clobering it anyway*/
110 #ifdef _MSC_VER
111 #define MONO_CONTEXT_GET_CURRENT(ctx) do { \
112         void *_ptr = &(ctx);                                                                                            \
113         __asm {                                                                                                                         \
114          __asm mov eax, _ptr                                                                                            \
115          __asm mov [eax+0x00], eax                                                                                      \
116          __asm mov [eax+0x04], ebx                                                                                      \
117          __asm mov [eax+0x08], ecx                                                                                      \
118          __asm mov [eax+0x0c], edx                                                                                      \
119          __asm mov [eax+0x10], ebp                                                                                      \
120          __asm mov [eax+0x14], esp                                                                                      \
121          __asm mov [eax+0x18], esi                                                                                      \
122          __asm mov [eax+0x1c], edi                                                                                      \
123          __asm call __mono_context_get_ip                                                                       \
124          __asm __mono_context_get_ip:                                                                           \
125          __asm pop dword ptr [eax+0x20]                                                                         \
126                  }                                                                                                                              \
127         } while (0)
128 #else
129 #define MONO_CONTEXT_GET_CURRENT(ctx) \
130         __asm__ __volatile__(   \
131         "movl $0x0, 0x00(%0)\n" \
132         "mov %%ebx, 0x04(%0)\n" \
133         "mov %%ecx, 0x08(%0)\n" \
134         "mov %%edx, 0x0c(%0)\n" \
135         "mov %%ebp, 0x10(%0)\n" \
136         "mov %%esp, 0x14(%0)\n" \
137         "mov %%esi, 0x18(%0)\n" \
138         "mov %%edi, 0x1c(%0)\n" \
139         "call 1f\n"     \
140         "1: pop 0x20(%0)\n"     \
141         :       \
142         : "a" (&(ctx))  \
143         : "memory")
144 #endif
145
146 #define MONO_ARCH_HAS_MONO_CONTEXT 1
147
148 #elif (defined(__x86_64__) && !defined(MONO_CROSS_COMPILE)) || (defined(TARGET_AMD64)) /* defined(__i386__) */
149
150 #include <mono/arch/amd64/amd64-codegen.h>
151
152 #if !defined( HOST_WIN32 ) && !defined(__native_client__) && !defined(__native_client_codegen__)
153
154 #ifdef HAVE_SIGACTION
155 #define MONO_SIGNAL_USE_UCONTEXT_T 1
156 #endif
157
158 #endif
159
160 typedef struct {
161         mgreg_t gregs [AMD64_NREG];
162         double fregs [AMD64_XMM_NREG];
163 } MonoContext;
164
165 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->gregs [AMD64_RIP] = (mgreg_t)(ip); } while (0);
166 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->gregs [AMD64_RBP] = (mgreg_t)(bp); } while (0);
167 #define MONO_CONTEXT_SET_SP(ctx,esp) do { (ctx)->gregs [AMD64_RSP] = (mgreg_t)(esp); } while (0);
168
169 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->gregs [AMD64_RIP]))
170 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->gregs [AMD64_RBP]))
171 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->gregs [AMD64_RSP]))
172
173 #if defined (HOST_WIN32) && !defined(__GNUC__)
174 /* msvc doesn't support inline assembly, so have to use a separate .asm file */
175 extern void mono_context_get_current (void *);
176 #define MONO_CONTEXT_GET_CURRENT(ctx) do { mono_context_get_current((void*)&(ctx)); } while (0)
177
178 #elif defined(__native_client__)
179 #define MONO_CONTEXT_GET_CURRENT(ctx)   \
180         __asm__ __volatile__(   \
181                 "movq $0x0,  %%nacl:0x00(%%r15, %0, 1)\n"       \
182                 "movq %%rcx, %%nacl:0x08(%%r15, %0, 1)\n"       \
183                 "movq %%rdx, %%nacl:0x10(%%r15, %0, 1)\n"       \
184                 "movq %%rbx, %%nacl:0x18(%%r15, %0, 1)\n"       \
185                 "movq %%rsp, %%nacl:0x20(%%r15, %0, 1)\n"       \
186                 "movq %%rbp, %%nacl:0x28(%%r15, %0, 1)\n"       \
187                 "movq %%rsi, %%nacl:0x30(%%r15, %0, 1)\n"       \
188                 "movq %%rdi, %%nacl:0x38(%%r15, %0, 1)\n"       \
189                 "movq %%r8,  %%nacl:0x40(%%r15, %0, 1)\n"       \
190                 "movq %%r9,  %%nacl:0x48(%%r15, %0, 1)\n"       \
191                 "movq %%r10, %%nacl:0x50(%%r15, %0, 1)\n"       \
192                 "movq %%r11, %%nacl:0x58(%%r15, %0, 1)\n"       \
193                 "movq %%r12, %%nacl:0x60(%%r15, %0, 1)\n"       \
194                 "movq %%r13, %%nacl:0x68(%%r15, %0, 1)\n"       \
195                 "movq %%r14, %%nacl:0x70(%%r15, %0, 1)\n"       \
196                 "movq %%r15, %%nacl:0x78(%%r15, %0, 1)\n"       \
197                 "leaq (%%rip), %%rdx\n" \
198                 "movq %%rdx, %%nacl:0x80(%%r15, %0, 1)\n"       \
199                 :       \
200                 : "a" ((int64_t)&(ctx)) \
201                 : "rdx", "memory")
202 #else
203
204 #define MONO_CONTEXT_GET_CURRENT(ctx)   \
205         __asm__ __volatile__(   \
206                 "movq $0x0,  0x00(%0)\n"        \
207                 "movq %%rcx, 0x08(%0)\n"        \
208                 "movq %%rdx, 0x10(%0)\n"        \
209                 "movq %%rbx, 0x18(%0)\n"        \
210                 "movq %%rsp, 0x20(%0)\n"        \
211                 "movq %%rbp, 0x28(%0)\n"        \
212                 "movq %%rsi, 0x30(%0)\n"        \
213                 "movq %%rdi, 0x38(%0)\n"        \
214                 "movq %%r8,  0x40(%0)\n"        \
215                 "movq %%r9,  0x48(%0)\n"        \
216                 "movq %%r10, 0x50(%0)\n"        \
217                 "movq %%r11, 0x58(%0)\n"        \
218                 "movq %%r12, 0x60(%0)\n"        \
219                 "movq %%r13, 0x68(%0)\n"        \
220                 "movq %%r14, 0x70(%0)\n"        \
221                 "movq %%r15, 0x78(%0)\n"        \
222                 /* "leaq (%%rip), %%rdx\n" is not understood by icc */  \
223                 ".byte 0x48, 0x8d, 0x15, 0x00, 0x00, 0x00, 0x00\n" \
224                 "movq %%rdx, 0x80(%0)\n"        \
225                 :       \
226                 : "a" (&(ctx))  \
227                 : "rdx", "memory")
228 #endif
229
230 #define MONO_ARCH_HAS_MONO_CONTEXT 1
231
232 #elif (defined(__arm__) && !defined(MONO_CROSS_COMPILE)) || (defined(TARGET_ARM)) /* defined(__x86_64__) */
233
234 #include <mono/arch/arm/arm-codegen.h>
235
236 typedef struct {
237         mgreg_t pc;
238         mgreg_t regs [16];
239         double fregs [16];
240         mgreg_t cpsr;
241 } MonoContext;
242
243 /* we have the stack pointer, not the base pointer in sigcontext */
244 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->pc = (mgreg_t)ip; } while (0); 
245 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->regs [ARMREG_FP] = (mgreg_t)bp; } while (0); 
246 #define MONO_CONTEXT_SET_SP(ctx,bp) do { (ctx)->regs [ARMREG_SP] = (mgreg_t)bp; } while (0); 
247
248 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->pc))
249 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->regs [ARMREG_FP]))
250 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->regs [ARMREG_SP]))
251
252 #if defined(HOST_WATCHOS)
253
254 #define MONO_CONTEXT_GET_CURRENT(ctx) do { \
255 } while (0);
256
257 #else
258
259 #define MONO_CONTEXT_GET_CURRENT(ctx)   do {    \
260         __asm__ __volatile__(                   \
261                 "push {r0}\n"                           \
262                 "push {r1}\n"                           \
263                 "mov r0, %0\n"                          \
264                 "ldr r1, [sp, #4]\n"                    \
265                 "str r1, [r0]!\n"                       \
266                 "ldr r1, [sp, #0]\n"                    \
267                 "str r1, [r0]!\n"                       \
268                 "stmia r0!, {r2-r12}\n"         \
269                 "str sp, [r0]!\n"                       \
270                 "str lr, [r0]!\n"                       \
271                 "mov r1, pc\n"                          \
272                 "str r1, [r0]!\n"                       \
273                 "pop {r1}\n"                            \
274                 "pop {r0}\n"                            \
275                 :                                                       \
276                 : "r" (&ctx.regs)                       \
277                 : "memory"                                      \
278         );                                                              \
279         ctx.pc = ctx.regs [15];                 \
280 } while (0)
281
282 #endif
283
284 #define MONO_ARCH_HAS_MONO_CONTEXT 1
285
286 #elif (defined(__aarch64__) && !defined(MONO_CROSS_COMPILE)) || (defined(TARGET_ARM64))
287
288 #include <mono/arch/arm64/arm64-codegen.h>
289
290 typedef struct {
291         mgreg_t regs [32];
292         double fregs [32];
293         mgreg_t pc;
294 } MonoContext;
295
296 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->pc = (mgreg_t)ip; } while (0)
297 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->regs [ARMREG_FP] = (mgreg_t)bp; } while (0);
298 #define MONO_CONTEXT_SET_SP(ctx,bp) do { (ctx)->regs [ARMREG_SP] = (mgreg_t)bp; } while (0);
299
300 #define MONO_CONTEXT_GET_IP(ctx) (gpointer)((ctx)->pc)
301 #define MONO_CONTEXT_GET_BP(ctx) (gpointer)((ctx)->regs [ARMREG_FP])
302 #define MONO_CONTEXT_GET_SP(ctx) (gpointer)((ctx)->regs [ARMREG_SP])
303
304 #if defined (HOST_APPLETVOS)
305
306 #define MONO_CONTEXT_GET_CURRENT(ctx) do { \
307         arm_unified_thread_state_t thread_state;        \
308         int state_flavor = ARM_UNIFIED_THREAD_STATE;    \
309         unsigned state_count = ARM_UNIFIED_THREAD_STATE_COUNT;  \
310         thread_port_t self = mach_thread_self ();       \
311         kern_return_t ret = thread_get_state (self, state_flavor, (thread_state_t) &thread_state, &state_count);        \
312         g_assert (ret == 0);    \
313         mono_mach_arch_thread_state_to_mono_context ((thread_state_t)&thread_state, &ctx); \
314         mach_port_deallocate (current_task (), self);   \
315 } while (0);
316
317 #else
318
319 #define MONO_CONTEXT_GET_CURRENT(ctx)   do {    \
320         __asm__ __volatile__(                   \
321                 "mov x16, %0\n" \
322                 "stp x0, x1, [x16], #16\n"      \
323                 "stp x2, x3, [x16], #16\n"      \
324                 "stp x4, x5, [x16], #16\n"      \
325                 "stp x6, x7, [x16], #16\n"      \
326                 "stp x8, x9, [x16], #16\n"      \
327                 "stp x10, x11, [x16], #16\n"    \
328                 "stp x12, x13, [x16], #16\n"    \
329                 "stp x14, x15, [x16], #16\n"    \
330                 "stp xzr, x17, [x16], #16\n"    \
331                 "stp x18, x19, [x16], #16\n"    \
332                 "stp x20, x21, [x16], #16\n"    \
333                 "stp x22, x23, [x16], #16\n"    \
334                 "stp x24, x25, [x16], #16\n"    \
335                 "stp x26, x27, [x16], #16\n"    \
336                 "stp x28, x29, [x16], #16\n"    \
337                 "stp x30, xzr, [x16]\n" \
338                 "mov x30, sp\n"                         \
339                 "str x30, [x16, #8]\n"          \
340                 :                                                       \
341                 : "r" (&ctx.regs)                       \
342                 : "x30", "memory"                       \
343         );                                                              \
344         __asm__ __volatile__( \
345                 "adr %0, L0%=\n" \
346                 "L0%=:\n"       \
347                 : "=r" (ctx.pc)         \
348                 :                                       \
349                 : "memory"                       \
350         ); \
351 } while (0)
352
353 #endif
354
355 #define MONO_ARCH_HAS_MONO_CONTEXT 1
356
357 #elif defined(__mono_ppc__) /* defined(__arm__) */
358
359 /* we define our own structure and we'll copy the data
360  * from sigcontext/ucontext/mach when we need it.
361  * This also makes us save stack space and time when copying
362  * We might also want to add an additional field to propagate
363  * the original context from the signal handler.
364  */
365 #ifdef __mono_ppc64__
366
367 typedef struct {
368         gulong sc_ir;          // pc 
369         gulong sc_sp;          // r1
370         mgreg_t regs [32];
371         double fregs [32];
372 } MonoContext;
373
374 /* we have the stack pointer, not the base pointer in sigcontext */
375 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->sc_ir = (gulong)ip; } while (0);
376 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->sc_sp = (gulong)bp; } while (0);
377 #define MONO_CONTEXT_SET_SP(ctx,sp) do { (ctx)->sc_sp = (gulong)sp; } while (0);
378
379 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->sc_ir))
380 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->regs [ppc_r31-13]))
381 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->sc_sp))
382
383 #define MONO_CONTEXT_GET_CURRENT(ctx)   \
384         __asm__ __volatile__(   \
385                 "std 0, 0(%0)\n"        \
386                 "std 1, 8(%0)\n"        \
387                 "std 0, 8*0+16(%0)\n"   \
388                 "std 1, 8*1+16(%0)\n"   \
389                 "std 2, 8*2+16(%0)\n"   \
390                 "std 3, 8*3+16(%0)\n"   \
391                 "std 4, 8*4+16(%0)\n"   \
392                 "std 5, 8*5+16(%0)\n"   \
393                 "std 6, 8*6+16(%0)\n"   \
394                 "std 7, 8*7+16(%0)\n"   \
395                 "std 8, 8*8+16(%0)\n"   \
396                 "std 9, 8*9+16(%0)\n"   \
397                 "std 10, 8*10+16(%0)\n" \
398                 "std 11, 8*11+16(%0)\n" \
399                 "std 12, 8*12+16(%0)\n" \
400                 "std 13, 8*13+16(%0)\n" \
401                 "std 14, 8*14+16(%0)\n" \
402                 "std 15, 8*15+16(%0)\n" \
403                 "std 16, 8*16+16(%0)\n" \
404                 "std 17, 8*17+16(%0)\n" \
405                 "std 18, 8*18+16(%0)\n" \
406                 "std 19, 8*19+16(%0)\n" \
407                 "std 20, 8*20+16(%0)\n" \
408                 "std 21, 8*21+16(%0)\n" \
409                 "std 22, 8*22+16(%0)\n" \
410                 "std 23, 8*23+16(%0)\n" \
411                 "std 24, 8*24+16(%0)\n" \
412                 "std 25, 8*25+16(%0)\n" \
413                 "std 26, 8*26+16(%0)\n" \
414                 "std 27, 8*27+16(%0)\n" \
415                 "std 28, 8*28+16(%0)\n" \
416                 "std 29, 8*29+16(%0)\n" \
417                 "std 30, 8*30+16(%0)\n" \
418                 "std 31, 8*31+16(%0)\n" \
419                 "stfd 0, 8*0+8*32+16(%0)\n"     \
420                 "stfd 1, 8*1+8*32+16(%0)\n"     \
421                 "stfd 2, 8*2+8*32+16(%0)\n"     \
422                 "stfd 3, 8*3+8*32+16(%0)\n"     \
423                 "stfd 4, 8*4+8*32+16(%0)\n"     \
424                 "stfd 5, 8*5+8*32+16(%0)\n"     \
425                 "stfd 6, 8*6+8*32+16(%0)\n"     \
426                 "stfd 7, 8*7+8*32+16(%0)\n"     \
427                 "stfd 8, 8*8+8*32+16(%0)\n"     \
428                 "stfd 9, 8*9+8*32+16(%0)\n"     \
429                 "stfd 10, 8*10+8*32+16(%0)\n"   \
430                 "stfd 11, 8*11+8*32+16(%0)\n"   \
431                 "stfd 12, 8*12+8*32+16(%0)\n"   \
432                 "stfd 13, 8*13+8*32+16(%0)\n"   \
433                 "stfd 14, 8*14+8*32+16(%0)\n"   \
434                 "stfd 15, 8*15+8*32+16(%0)\n"   \
435                 "stfd 16, 8*16+8*32+16(%0)\n"   \
436                 "stfd 17, 8*17+8*32+16(%0)\n"   \
437                 "stfd 18, 8*18+8*32+16(%0)\n"   \
438                 "stfd 19, 8*19+8*32+16(%0)\n"   \
439                 "stfd 20, 8*20+8*32+16(%0)\n"   \
440                 "stfd 21, 8*21+8*32+16(%0)\n"   \
441                 "stfd 22, 8*22+8*32+16(%0)\n"   \
442                 "stfd 23, 8*23+8*32+16(%0)\n"   \
443                 "stfd 24, 8*24+8*32+16(%0)\n"   \
444                 "stfd 25, 8*25+8*32+16(%0)\n"   \
445                 "stfd 26, 8*26+8*32+16(%0)\n"   \
446                 "stfd 27, 8*27+8*32+16(%0)\n"   \
447                 "stfd 28, 8*28+8*32+16(%0)\n"   \
448                 "stfd 29, 8*29+8*32+16(%0)\n"   \
449                 "stfd 30, 8*30+8*32+16(%0)\n"   \
450                 "stfd 31, 8*31+8*32+16(%0)\n"   \
451                 : : "r" (&(ctx))        \
452                 : "memory"                      \
453         )
454
455 #define MONO_ARCH_HAS_MONO_CONTEXT 1
456
457 #else 
458
459 typedef struct {
460         gulong sc_ir;          // pc 
461         gulong sc_sp;          // r1
462         mgreg_t regs [19]; /*FIXME, this must be changed to 32 for sgen*/
463         double fregs [18];
464 } MonoContext;
465
466 /* we have the stack pointer, not the base pointer in sigcontext */
467 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->sc_ir = (gulong)ip; } while (0);
468 /* FIXME: should be called SET_SP */
469 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->sc_sp = (gulong)bp; } while (0);
470 #define MONO_CONTEXT_SET_SP(ctx,sp) do { (ctx)->sc_sp = (gulong)sp; } while (0);
471
472 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->sc_ir))
473 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->regs [ppc_r31-13]))
474 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->sc_sp))
475 #endif
476
477 #elif defined(__sparc__) || defined(sparc) /* defined(__mono_ppc__) */
478
479 typedef struct MonoContext {
480         guint8 *ip;
481         gpointer *sp;
482         gpointer *fp;
483 } MonoContext;
484
485 #define MONO_CONTEXT_SET_IP(ctx,eip) do { (ctx)->ip = (gpointer)(eip); } while (0); 
486 #define MONO_CONTEXT_SET_BP(ctx,ebp) do { (ctx)->fp = (gpointer*)(ebp); } while (0); 
487 #define MONO_CONTEXT_SET_SP(ctx,esp) do { (ctx)->sp = (gpointer*)(esp); } while (0); 
488
489 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->ip))
490 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->fp))
491 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->sp))
492
493 #elif defined(__ia64__) /*defined(__sparc__) || defined(sparc) */
494
495 #ifndef UNW_LOCAL_ONLY
496
497 #define UNW_LOCAL_ONLY
498 #include <libunwind.h>
499
500 #endif
501
502 typedef struct MonoContext {
503         unw_cursor_t cursor;
504         /* Whenever the ip in 'cursor' points to the ip where the exception happened */
505         /* This is true for the initial context for exceptions thrown from signal handlers */
506         gboolean precise_ip;
507 } MonoContext;
508
509 /*XXX SET_BP is missing*/
510 #define MONO_CONTEXT_SET_IP(ctx,eip) do { int err = unw_set_reg (&(ctx)->cursor, UNW_IA64_IP, (unw_word_t)(eip)); g_assert (err == 0); } while (0)
511 #define MONO_CONTEXT_SET_SP(ctx,esp) do { int err = unw_set_reg (&(ctx)->cursor, UNW_IA64_SP, (unw_word_t)(esp)); g_assert (err == 0); } while (0)
512
513 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)(mono_ia64_context_get_ip ((ctx))))
514 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)(mono_ia64_context_get_fp ((ctx))))
515 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)(mono_ia64_context_get_sp ((ctx))))
516
517 static inline unw_word_t
518 mono_ia64_context_get_ip (MonoContext *ctx)
519 {
520         unw_word_t ip;
521         int err;
522
523         err = unw_get_reg (&ctx->cursor, UNW_IA64_IP, &ip);
524         g_assert (err == 0);
525
526         if (ctx->precise_ip) {
527                 return ip;
528         } else {
529                 /* Subtrack 1 so ip points into the actual instruction */
530                 return ip - 1;
531         }
532 }
533
534 static inline unw_word_t
535 mono_ia64_context_get_sp (MonoContext *ctx)
536 {
537         unw_word_t sp;
538         int err;
539
540         err = unw_get_reg (&ctx->cursor, UNW_IA64_SP, &sp);
541         g_assert (err == 0);
542
543         return sp;
544 }
545
546 static inline unw_word_t
547 mono_ia64_context_get_fp (MonoContext *ctx)
548 {
549         unw_cursor_t new_cursor;
550         unw_word_t fp;
551         int err;
552
553         {
554                 unw_word_t ip, sp;
555
556                 err = unw_get_reg (&ctx->cursor, UNW_IA64_SP, &sp);
557                 g_assert (err == 0);
558
559                 err = unw_get_reg (&ctx->cursor, UNW_IA64_IP, &ip);
560                 g_assert (err == 0);
561         }
562
563         /* fp is the SP of the parent frame */
564         new_cursor = ctx->cursor;
565
566         err = unw_step (&new_cursor);
567         g_assert (err >= 0);
568
569         err = unw_get_reg (&new_cursor, UNW_IA64_SP, &fp);
570         g_assert (err == 0);
571
572         return fp;
573 }
574
575 #elif ((defined(__mips__) && !defined(MONO_CROSS_COMPILE)) || (defined(TARGET_MIPS))) && SIZEOF_REGISTER == 4 /* defined(__ia64__) */
576
577 #include <mono/arch/mips/mips-codegen.h>
578
579 typedef struct {
580         mgreg_t     sc_pc;
581         mgreg_t         sc_regs [32];
582         gfloat          sc_fpregs [32];
583 } MonoContext;
584
585 #define MONO_CONTEXT_SET_IP(ctx,ip) do { (ctx)->sc_pc = (mgreg_t)(ip); } while (0);
586 #define MONO_CONTEXT_SET_BP(ctx,bp) do { (ctx)->sc_regs[mips_fp] = (mgreg_t)(bp); } while (0);
587 #define MONO_CONTEXT_SET_SP(ctx,sp) do { (ctx)->sc_regs[mips_sp] = (mgreg_t)(sp); } while (0);
588
589 #define MONO_CONTEXT_GET_IP(ctx) ((gpointer)((ctx)->sc_pc))
590 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->sc_regs[mips_fp]))
591 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->sc_regs[mips_sp]))
592
593 #define MONO_CONTEXT_GET_CURRENT(ctx)   \
594         __asm__ __volatile__(   \
595                 "sw $0,0(%0)\n\t"       \
596                 "sw $1,4(%0)\n\t"       \
597                 "sw $2,8(%0)\n\t"       \
598                 "sw $3,12(%0)\n\t"      \
599                 "sw $4,16(%0)\n\t"      \
600                 "sw $5,20(%0)\n\t"      \
601                 "sw $6,24(%0)\n\t"      \
602                 "sw $7,28(%0)\n\t"      \
603                 "sw $8,32(%0)\n\t"      \
604                 "sw $9,36(%0)\n\t"      \
605                 "sw $10,40(%0)\n\t"     \
606                 "sw $11,44(%0)\n\t"     \
607                 "sw $12,48(%0)\n\t"     \
608                 "sw $13,52(%0)\n\t"     \
609                 "sw $14,56(%0)\n\t"     \
610                 "sw $15,60(%0)\n\t"     \
611                 "sw $16,64(%0)\n\t"     \
612                 "sw $17,68(%0)\n\t"     \
613                 "sw $18,72(%0)\n\t"     \
614                 "sw $19,76(%0)\n\t"     \
615                 "sw $20,80(%0)\n\t"     \
616                 "sw $21,84(%0)\n\t"     \
617                 "sw $22,88(%0)\n\t"     \
618                 "sw $23,92(%0)\n\t"     \
619                 "sw $24,96(%0)\n\t"     \
620                 "sw $25,100(%0)\n\t"    \
621                 "sw $26,104(%0)\n\t"    \
622                 "sw $27,108(%0)\n\t"    \
623                 "sw $28,112(%0)\n\t"    \
624                 "sw $29,116(%0)\n\t"    \
625                 "sw $30,120(%0)\n\t"    \
626                 "sw $31,124(%0)\n\t"    \
627                 : : "r" (&(ctx).sc_regs [0])    \
628                 : "memory"                      \
629         )
630
631 #elif defined(__s390x__)
632
633 #define MONO_ARCH_HAS_MONO_CONTEXT 1
634
635 typedef struct ucontext MonoContext;
636
637 #define MONO_CONTEXT_SET_IP(ctx,ip)                                     \
638         do {                                                            \
639                 (ctx)->uc_mcontext.gregs[14] = (unsigned long)ip;       \
640                 (ctx)->uc_mcontext.psw.addr = (unsigned long)ip;        \
641         } while (0); 
642
643 #define MONO_CONTEXT_SET_SP(ctx,bp) MONO_CONTEXT_SET_BP((ctx),(bp))
644 #define MONO_CONTEXT_SET_BP(ctx,bp)                                     \
645         do {                                                            \
646                 (ctx)->uc_mcontext.gregs[15] = (unsigned long)bp;       \
647                 (ctx)->uc_stack.ss_sp        = (void*)bp;               \
648         } while (0) 
649
650 #define MONO_CONTEXT_GET_IP(ctx) (gpointer) (ctx)->uc_mcontext.psw.addr
651 #define MONO_CONTEXT_GET_SP(ctx) ((gpointer)((ctx)->uc_mcontext.gregs[15]))
652 #define MONO_CONTEXT_GET_BP(ctx) ((gpointer)((ctx)->uc_mcontext.gregs[11]))
653
654 #define MONO_CONTEXT_GET_CURRENT(ctx)   \
655         __asm__ __volatile__(   \
656                 "stmg   %%r0,%%r15,0(%0)\n"     \
657                 : : "r" (&(ctx).uc_mcontext.gregs[0])   \
658                 : "memory"                      \
659         )
660
661 #else
662
663 #error "Implement mono-context for the current arch"
664
665 #endif
666
667 /*
668  * The naming is misleading, the SIGCTX argument should be the platform's context
669  * structure (ucontext_c on posix, CONTEXT on windows).
670  */
671 void mono_sigctx_to_monoctx (void *sigctx, MonoContext *mctx);
672
673 /*
674  * This will not completely initialize SIGCTX since MonoContext contains less
675  * information that the system context. The caller should obtain a SIGCTX from
676  * the system, and use this function to override the parts of it which are
677  * also in MonoContext.
678  */
679 void mono_monoctx_to_sigctx (MonoContext *mctx, void *sigctx);
680
681 #endif /* __MONO_MONO_CONTEXT_H__ */