Merge pull request #347 from JamesB7/master
[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/object-internals.h"
39 #include "metadata/gc-internal.h"
40
41 #if defined(__MACH__)
42 #include "utils/mach-support.h"
43 #endif
44
45 #if defined(__MACH__) && MONO_MACH_ARCH_SUPPORTED
46 gboolean
47 sgen_resume_thread (SgenThreadInfo *info)
48 {
49         return thread_resume (info->mach_port) == KERN_SUCCESS;
50 }
51
52 gboolean
53 sgen_suspend_thread (SgenThreadInfo *info)
54 {
55         mach_msg_type_number_t num_state;
56         thread_state_t state;
57         kern_return_t ret;
58         ucontext_t ctx;
59         mcontext_t mctx;
60
61         gpointer stack_start;
62
63         state = (thread_state_t) alloca (mono_mach_arch_get_thread_state_size ());
64         mctx = (mcontext_t) alloca (mono_mach_arch_get_mcontext_size ());
65
66         ret = thread_suspend (info->mach_port);
67         if (ret != KERN_SUCCESS)
68                 return FALSE;
69
70         ret = mono_mach_arch_get_thread_state (info->mach_port, state, &num_state);
71         if (ret != KERN_SUCCESS)
72                 return FALSE;
73
74         mono_mach_arch_thread_state_to_mcontext (state, mctx);
75         ctx.uc_mcontext = mctx;
76
77         info->stopped_domain = mono_mach_arch_get_tls_value_from_thread (
78                 mono_thread_info_get_tid (info), mono_domain_get_tls_offset ());
79         info->stopped_ip = (gpointer) mono_mach_arch_get_ip (state);
80         stack_start = (char*) mono_mach_arch_get_sp (state) - REDZONE_SIZE;
81         /* If stack_start is not within the limits, then don't set it in info and we will be restarted. */
82         if (stack_start >= info->stack_start_limit && info->stack_start <= info->stack_end) {
83                 info->stack_start = stack_start;
84
85 #ifdef USE_MONO_CTX
86                 mono_sigctx_to_monoctx (&ctx, &info->ctx);
87                 info->monoctx = &info->ctx;
88 #else
89                 ARCH_COPY_SIGCTX_REGS (&info->regs, &ctx);
90                 info->stopped_regs = &info->regs;
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);
99
100         return TRUE;
101 }
102
103 void
104 sgen_wait_for_suspend_ack (int count)
105 {
106     /* mach thread_resume is synchronous so we dont need to wait for them */
107 }
108
109 /* LOCKING: assumes the GC lock is held */
110 int
111 sgen_thread_handshake (BOOL suspend)
112 {
113         SgenThreadInfo *cur_thread = mono_thread_info_current ();
114         kern_return_t ret;
115         SgenThreadInfo *info;
116
117         int count = 0;
118
119         FOREACH_THREAD_SAFE (info) {
120                 if (info->joined_stw == suspend)
121                         continue;
122                 info->joined_stw = suspend;
123
124                 if (info == cur_thread || sgen_is_worker_thread (mono_thread_info_get_tid (info)))
125                         continue;
126                 if (info->gc_disabled)
127                         continue;
128
129                 if (suspend) {
130                         g_assert (!info->doing_handshake);
131                         info->doing_handshake = TRUE;
132
133                         if (!sgen_suspend_thread (info))
134                                 continue;
135                 } else {
136                         g_assert (info->doing_handshake);
137                         info->doing_handshake = FALSE;
138
139                         ret = thread_resume (info->mach_port);
140                         if (ret != KERN_SUCCESS)
141                                 continue;
142                 }
143                 count ++;
144         } END_FOREACH_THREAD_SAFE
145         return count;
146 }
147
148 void
149 sgen_os_init (void)
150 {
151 }
152
153 int
154 mono_gc_get_suspend_signal (void)
155 {
156         return -1;
157 }
158 #endif
159 #endif