Transaction now has limited support for PromotableSinglePhaseEnlistment
[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->mach_port) == 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->mach_port);
68         if (ret != KERN_SUCCESS)
69                 return FALSE;
70
71         ret = mono_mach_arch_get_thread_state (info->mach_port, 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                 info->monoctx = &info->ctx;
90 #else
91                 ARCH_COPY_SIGCTX_REGS (&info->regs, &ctx);
92                 info->stopped_regs = &info->regs;
93 #endif
94         } else {
95                 g_assert (!info->stack_start);
96         }
97
98         /* Notify the JIT */
99         if (mono_gc_get_gc_callbacks ()->thread_suspend_func)
100                 mono_gc_get_gc_callbacks ()->thread_suspend_func (info->runtime_data, &ctx, NULL);
101
102         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));
103
104         binary_protocol_thread_suspend ((gpointer)mono_thread_info_get_tid (info), info->stopped_ip);
105
106         return TRUE;
107 }
108
109 void
110 sgen_wait_for_suspend_ack (int count)
111 {
112     /* mach thread_resume is synchronous so we dont need to wait for them */
113 }
114
115 /* LOCKING: assumes the GC lock is held */
116 int
117 sgen_thread_handshake (BOOL suspend)
118 {
119         SgenThreadInfo *cur_thread = mono_thread_info_current ();
120         kern_return_t ret;
121         SgenThreadInfo *info;
122
123         int count = 0;
124
125         FOREACH_THREAD_SAFE (info) {
126                 if (info->joined_stw == suspend)
127                         continue;
128                 info->joined_stw = suspend;
129
130                 if (info == cur_thread || sgen_is_worker_thread (mono_thread_info_get_tid (info)))
131                         continue;
132                 if (info->gc_disabled)
133                         continue;
134
135                 if (suspend) {
136                         g_assert (!info->doing_handshake);
137                         info->doing_handshake = TRUE;
138
139                         if (!sgen_suspend_thread (info))
140                                 continue;
141                 } else {
142                         g_assert (info->doing_handshake);
143                         info->doing_handshake = FALSE;
144
145                         ret = thread_resume (info->mach_port);
146                         if (ret != KERN_SUCCESS)
147                                 continue;
148                 }
149                 count ++;
150         } END_FOREACH_THREAD_SAFE
151         return count;
152 }
153
154 void
155 sgen_os_init (void)
156 {
157 }
158
159 int
160 mono_gc_get_suspend_signal (void)
161 {
162         return -1;
163 }
164 #endif
165 #endif