Merge pull request #1949 from lewurm/fixtype
[mono.git] / mono / utils / mach-support-x86.c
1 /*
2  * mach-support-x86.c: mach support for x86
3  *
4  * Authors:
5  *   Geoff Norton (gnorton@novell.com)
6  *
7  * (C) 2010 Novell, Inc.
8  */
9
10 #include <config.h>
11
12 #if defined(__MACH__)
13 #include <stdint.h>
14 #include <glib.h>
15 #include <pthread.h>
16 #include "utils/mono-sigcontext.h"
17 #include "mach-support.h"
18
19 /* Known offsets used for TLS storage*/
20
21 /* All OSX versions up to 10.8 */
22 #define TLS_VECTOR_OFFSET_CATS 0x48
23 #define TLS_VECTOR_OFFSET_10_9 0xb0
24 #define TLS_VECTOR_OFFSET_10_11 0x100
25
26
27 /* This is 2 slots less than the known low */
28 #define TLS_PROBE_LOW_WATERMARK 0x40
29 /* This is 28 slots above the know high, which is more than the known high-low*/
30 #define TLS_PROBE_HIGH_WATERMARK 0x120
31
32
33 static int tls_vector_offset;
34
35 void *
36 mono_mach_arch_get_ip (thread_state_t state)
37 {
38         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
39
40         return (void *) arch_state->__eip;
41 }
42
43 void *
44 mono_mach_arch_get_sp (thread_state_t state)
45 {
46         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
47
48         return (void *) arch_state->__esp;
49 }
50
51 int
52 mono_mach_arch_get_mcontext_size ()
53 {
54         return sizeof (struct __darwin_mcontext32);
55 }
56
57 void
58 mono_mach_arch_thread_state_to_mcontext (thread_state_t state, void *context)
59 {
60         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
61         struct __darwin_mcontext32 *ctx = (struct __darwin_mcontext32 *) context;
62
63         ctx->__ss = *arch_state;
64 }
65
66 void
67 mono_mach_arch_mcontext_to_thread_state (void *context, thread_state_t state)
68 {
69         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
70         struct __darwin_mcontext32 *ctx = (struct __darwin_mcontext32 *) context;
71
72         *arch_state = ctx->__ss;
73 }
74
75 void
76 mono_mach_arch_thread_state_to_mono_context (thread_state_t state, MonoContext *context)
77 {
78         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
79         context->eax = arch_state->__eax;
80         context->ebx = arch_state->__ebx;
81         context->ecx = arch_state->__ecx;
82         context->edx = arch_state->__edx;
83         context->ebp = arch_state->__ebp;
84         context->esp = arch_state->__esp;
85         context->esi = arch_state->__edi;
86         context->edi = arch_state->__esi;
87         context->eip = arch_state->__eip;
88 }
89
90
91 int
92 mono_mach_arch_get_thread_state_size ()
93 {
94         return sizeof (x86_thread_state32_t);
95 }
96
97 kern_return_t
98 mono_mach_arch_get_thread_state (thread_port_t thread, thread_state_t state, mach_msg_type_number_t *count)
99 {
100 #if defined(HOST_WATCHOS)
101         g_error ("thread_get_state() is not supported by this platform");
102 #else
103         x86_thread_state32_t *arch_state = (x86_thread_state32_t *) state;
104         kern_return_t ret;
105
106         *count = x86_THREAD_STATE32_COUNT;
107         ret = thread_get_state (thread, x86_THREAD_STATE32, (thread_state_t) arch_state, count);
108
109         return ret;
110 #endif
111 }
112
113 kern_return_t
114 mono_mach_arch_set_thread_state (thread_port_t thread, thread_state_t state, mach_msg_type_number_t count)
115 {
116 #if defined(HOST_WATCHOS)
117         g_error ("thread_set_state() is not supported by this platform");
118 #else
119         return thread_set_state (thread, x86_THREAD_STATE32, state, count);
120 #endif  
121 }
122
123 void *
124 mono_mach_get_tls_address_from_thread (pthread_t thread, pthread_key_t key)
125 {
126         /* OSX stores TLS values in a hidden array inside the pthread_t structure
127          * They are keyed off a giant array from a known offset into the pointer.  This value
128          * is baked into their pthread_getspecific implementation
129          */
130         intptr_t *p = (intptr_t *) thread;
131         intptr_t **tsd = (intptr_t **) ((char*)p + tls_vector_offset);
132         g_assert (tls_vector_offset != -1);
133
134         return (void *) &tsd [key];     
135 }
136
137 void *
138 mono_mach_arch_get_tls_value_from_thread (pthread_t thread, guint32 key)
139 {
140         return *(void**)mono_mach_get_tls_address_from_thread (thread, key);
141 }
142
143 void
144 mono_mach_init (pthread_key_t key)
145 {
146         int i;
147         void *old_value = pthread_getspecific (key);
148         void *canary = (void*)0xDEADBEEFu;
149
150         pthread_key_create (&key, NULL);
151         g_assert (old_value != canary);
152
153         pthread_setspecific (key, canary);
154
155         /*First we probe for cats*/
156         tls_vector_offset = TLS_VECTOR_OFFSET_CATS;
157         if (mono_mach_arch_get_tls_value_from_thread (pthread_self (), key) == canary)
158                 goto ok;
159
160         tls_vector_offset = TLS_VECTOR_OFFSET_10_9;
161         if (mono_mach_arch_get_tls_value_from_thread (pthread_self (), key) == canary)
162                 goto ok;
163
164         tls_vector_offset = TLS_VECTOR_OFFSET_10_11;
165         if (mono_mach_arch_get_tls_value_from_thread (pthread_self (), key) == canary)
166                 goto ok;
167
168         /*Fallback to scanning a large range of offsets*/
169         for (i = TLS_PROBE_LOW_WATERMARK; i <= TLS_PROBE_HIGH_WATERMARK; i += 4) {
170                 tls_vector_offset = i;
171                 if (mono_mach_arch_get_tls_value_from_thread (pthread_self (), key) == canary) {
172                         g_warning ("Found new TLS offset at %d", i);
173                         goto ok;
174                 }
175         }
176
177         tls_vector_offset = -1;
178         g_warning ("could not discover the mach TLS offset");
179 ok:
180         pthread_setspecific (key, old_value);
181 }
182
183 #endif