Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mono / metadata / sgen-os-mach.c
1 /*
2  * sgen-os-mach.c: Simple generational GC.
3  *
4  * Author:
5  *      Paolo Molaro (lupus@ximian.com)
6  *      Mark Probst (mprobst@novell.com)
7  *      Geoff Norton (gnorton@novell.com)
8  *
9  * Copyright 2010 Novell, Inc (http://www.novell.com)
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining
12  * a copy of this software and associated documentation files (the
13  * "Software"), to deal in the Software without restriction, including
14  * without limitation the rights to use, copy, modify, merge, publish,
15  * distribute, sublicense, and/or sell copies of the Software, and to
16  * permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  * 
19  * The above copyright notice and this permission notice shall be
20  * included in all copies or substantial portions of the Software.
21  * 
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29  */
30
31 #include "config.h"
32 #ifdef HAVE_SGEN_GC
33
34
35 #include <glib.h>
36 #include "metadata/sgen-gc.h"
37 #include "metadata/sgen-archdep.h"
38 #include "metadata/sgen-protocol.h"
39 #include "metadata/object-internals.h"
40 #include "metadata/gc-internal.h"
41
42 #if defined(__MACH__)
43 #include "utils/mach-support.h"
44 #endif
45
46 #if defined(__MACH__) && MONO_MACH_ARCH_SUPPORTED
47 gboolean
48 sgen_resume_thread (SgenThreadInfo *info)
49 {
50         return thread_resume (info->info.native_handle) == KERN_SUCCESS;
51 }
52
53 gboolean
54 sgen_suspend_thread (SgenThreadInfo *info)
55 {
56         mach_msg_type_number_t num_state;
57         thread_state_t state;
58         kern_return_t ret;
59         ucontext_t ctx;
60         mcontext_t mctx;
61
62         gpointer stack_start;
63
64         state = (thread_state_t) alloca (mono_mach_arch_get_thread_state_size ());
65         mctx = (mcontext_t) alloca (mono_mach_arch_get_mcontext_size ());
66
67         ret = thread_suspend (info->info.native_handle);
68         if (ret != KERN_SUCCESS)
69                 return FALSE;
70
71         ret = mono_mach_arch_get_thread_state (info->info.native_handle, state, &num_state);
72         if (ret != KERN_SUCCESS)
73                 return FALSE;
74
75         mono_mach_arch_thread_state_to_mcontext (state, mctx);
76         ctx.uc_mcontext = mctx;
77
78         info->stopped_domain = mono_mach_arch_get_tls_value_from_thread (
79                 mono_thread_info_get_tid (info), mono_domain_get_tls_offset ());
80         info->stopped_ip = (gpointer) mono_mach_arch_get_ip (state);
81         info->stack_start = NULL;
82         stack_start = (char*) mono_mach_arch_get_sp (state) - REDZONE_SIZE;
83         /* If stack_start is not within the limits, then don't set it in info and we will be restarted. */
84         if (stack_start >= info->stack_start_limit && info->stack_start <= info->stack_end) {
85                 info->stack_start = stack_start;
86
87 #ifdef USE_MONO_CTX
88                 mono_sigctx_to_monoctx (&ctx, &info->ctx);
89 #else
90                 ARCH_COPY_SIGCTX_REGS (&info->regs, &ctx);
91 #endif
92         } else {
93                 g_assert (!info->stack_start);
94         }
95
96         /* Notify the JIT */
97         if (mono_gc_get_gc_callbacks ()->thread_suspend_func)
98                 mono_gc_get_gc_callbacks ()->thread_suspend_func (info->runtime_data, &ctx, NULL);
99
100         DEBUG (1, fprintf (gc_debug_file, "thread %p stopped at %p stack_start=%p\n", (void*)info->info.native_handle, info->stopped_ip, info->stack_start));
101
102         binary_protocol_thread_suspend ((gpointer)mono_thread_info_get_tid (info), info->stopped_ip);
103
104         return TRUE;
105 }
106
107 void
108 sgen_wait_for_suspend_ack (int count)
109 {
110     /* mach thread_resume is synchronous so we dont need to wait for them */
111 }
112
113 /* LOCKING: assumes the GC lock is held */
114 int
115 sgen_thread_handshake (BOOL suspend)
116 {
117         SgenThreadInfo *cur_thread = mono_thread_info_current ();
118         kern_return_t ret;
119         SgenThreadInfo *info;
120
121         int count = 0;
122
123         FOREACH_THREAD_SAFE (info) {
124                 if (info->joined_stw == suspend)
125                         continue;
126                 info->joined_stw = suspend;
127
128                 if (info == cur_thread || sgen_is_worker_thread (mono_thread_info_get_tid (info)))
129                         continue;
130                 if (info->gc_disabled)
131                         continue;
132
133                 if (suspend) {
134                         g_assert (!info->doing_handshake);
135                         info->doing_handshake = TRUE;
136
137                         if (!sgen_suspend_thread (info))
138                                 continue;
139                 } else {
140                         g_assert (info->doing_handshake);
141                         info->doing_handshake = FALSE;
142
143                         ret = thread_resume (info->info.native_handle);
144                         if (ret != KERN_SUCCESS)
145                                 continue;
146                 }
147                 count ++;
148         } END_FOREACH_THREAD_SAFE
149         return count;
150 }
151
152 void
153 sgen_os_init (void)
154 {
155 }
156
157 int
158 mono_gc_get_suspend_signal (void)
159 {
160         return -1;
161 }
162 #endif
163 #endif