Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mono / metadata / sgen-os-mach.c
1 /*
2  * sgen-os-mach.c: Mach-OS support.
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  * Copyright (C) 2012 Xamarin Inc
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Library General Public
14  * License 2.0 as published by the Free Software Foundation;
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License 2.0 along with this library; if not, write to the Free
23  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #include "config.h"
27 #ifdef HAVE_SGEN_GC
28
29
30 #include <glib.h>
31 #include "metadata/sgen-gc.h"
32 #include "metadata/sgen-archdep.h"
33 #include "metadata/sgen-protocol.h"
34 #include "metadata/object-internals.h"
35 #include "metadata/gc-internal.h"
36
37 #if defined(__MACH__)
38 #include "utils/mach-support.h"
39 #endif
40
41 #if defined(__MACH__) && MONO_MACH_ARCH_SUPPORTED
42 gboolean
43 sgen_resume_thread (SgenThreadInfo *info)
44 {
45         return thread_resume (info->info.native_handle) == KERN_SUCCESS;
46 }
47
48 gboolean
49 sgen_suspend_thread (SgenThreadInfo *info)
50 {
51         mach_msg_type_number_t num_state;
52         thread_state_t state;
53         kern_return_t ret;
54         ucontext_t ctx;
55         mcontext_t mctx;
56
57         gpointer stack_start;
58
59         state = (thread_state_t) alloca (mono_mach_arch_get_thread_state_size ());
60         mctx = (mcontext_t) alloca (mono_mach_arch_get_mcontext_size ());
61
62         ret = thread_suspend (info->info.native_handle);
63         if (ret != KERN_SUCCESS)
64                 return FALSE;
65
66         ret = mono_mach_arch_get_thread_state (info->info.native_handle, state, &num_state);
67         if (ret != KERN_SUCCESS)
68                 return FALSE;
69
70         mono_mach_arch_thread_state_to_mcontext (state, mctx);
71         ctx.uc_mcontext = mctx;
72
73         info->stopped_domain = mono_mach_arch_get_tls_value_from_thread (
74                 mono_thread_info_get_tid (info), mono_domain_get_tls_key ());
75         info->stopped_ip = (gpointer) mono_mach_arch_get_ip (state);
76         info->stack_start = NULL;
77         stack_start = (char*) mono_mach_arch_get_sp (state) - REDZONE_SIZE;
78         /* If stack_start is not within the limits, then don't set it in info and we will be restarted. */
79         if (stack_start >= info->stack_start_limit && info->stack_start <= info->stack_end) {
80                 info->stack_start = stack_start;
81
82 #ifdef USE_MONO_CTX
83                 mono_sigctx_to_monoctx (&ctx, &info->ctx);
84 #else
85                 ARCH_COPY_SIGCTX_REGS (&info->regs, &ctx);
86 #endif
87         } else {
88                 g_assert (!info->stack_start);
89         }
90
91         /* Notify the JIT */
92         if (mono_gc_get_gc_callbacks ()->thread_suspend_func)
93                 mono_gc_get_gc_callbacks ()->thread_suspend_func (info->runtime_data, &ctx, NULL);
94
95         SGEN_LOG (2, "thread %p stopped at %p stack_start=%p", (void*)info->info.native_handle, info->stopped_ip, info->stack_start);
96
97         binary_protocol_thread_suspend ((gpointer)mono_thread_info_get_tid (info), info->stopped_ip);
98
99         return TRUE;
100 }
101
102 void
103 sgen_wait_for_suspend_ack (int count)
104 {
105     /* mach thread_resume is synchronous so we dont need to wait for them */
106 }
107
108 /* LOCKING: assumes the GC lock is held */
109 int
110 sgen_thread_handshake (BOOL suspend)
111 {
112         SgenThreadInfo *cur_thread = mono_thread_info_current ();
113         kern_return_t ret;
114         SgenThreadInfo *info;
115
116         int count = 0;
117
118         FOREACH_THREAD_SAFE (info) {
119                 if (info->joined_stw == suspend)
120                         continue;
121                 info->joined_stw = suspend;
122
123                 if (info == cur_thread || sgen_is_worker_thread (mono_thread_info_get_tid (info)))
124                         continue;
125                 if (info->gc_disabled)
126                         continue;
127
128                 if (suspend) {
129                         g_assert (!info->doing_handshake);
130                         info->doing_handshake = TRUE;
131
132                         if (!sgen_suspend_thread (info))
133                                 continue;
134                 } else {
135                         g_assert (info->doing_handshake);
136                         info->doing_handshake = FALSE;
137
138                         ret = thread_resume (info->info.native_handle);
139                         if (ret != KERN_SUCCESS)
140                                 continue;
141                 }
142                 count ++;
143         } END_FOREACH_THREAD_SAFE
144         return count;
145 }
146
147 void
148 sgen_os_init (void)
149 {
150 }
151
152 int
153 mono_gc_get_suspend_signal (void)
154 {
155         return -1;
156 }
157 #endif
158 #endif