Merge pull request #1693 from Garciat/fix-assembly-get-satellite
[mono.git] / mono / metadata / sgen-workers.c
1 /*
2  * sgen-workers.c: Worker threads for parallel and concurrent GC.
3  *
4  * Copyright 2001-2003 Ximian, Inc
5  * Copyright 2003-2010 Novell, Inc.
6  * Copyright (C) 2012 Xamarin Inc
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License 2.0 as published by the Free Software Foundation;
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License 2.0 along with this library; if not, write to the Free
19  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #include "config.h"
23 #ifdef HAVE_SGEN_GC
24
25 #include "metadata/sgen-gc.h"
26 #include "metadata/sgen-workers.h"
27 #include "metadata/sgen-thread-pool.h"
28 #include "utils/mono-counters.h"
29
30 static int workers_num;
31 static WorkerData *workers_data;
32
33 static SgenSectionGrayQueue workers_distribute_gray_queue;
34 static gboolean workers_distribute_gray_queue_inited;
35
36 /*
37  * Allowed transitions:
38  *
39  * | from \ to          | NOT WORKING | WORKING | WORK ENQUEUED | NURSERY COLLECTION |
40  * |--------------------+-------------+---------+---------------+--------------------|
41  * | NOT WORKING        | -           | -       | main          | main               |
42  * | WORKING            | worker      | -       | main          | main               |
43  * | WORK ENQUEUED      | -           | worker  | -             | main               |
44  * | NURSERY COLLECTION | -           | -       | main          | -                  |
45  *
46  * The WORK ENQUEUED state guarantees that the worker thread will inspect the queue again at
47  * least once.  Only after looking at the queue will it go back to WORKING, and then,
48  * eventually, to NOT WORKING.  After enqueuing work the main thread transitions the state
49  * to WORK ENQUEUED.  Signalling the worker thread to wake up is only necessary if the old
50  * state was NOT WORKING.
51  */
52
53 enum {
54         STATE_NOT_WORKING,
55         STATE_WORKING,
56         STATE_WORK_ENQUEUED,
57         STATE_NURSERY_COLLECTION
58 } WorkersStateName;
59
60 typedef gint32 State;
61
62 static volatile State workers_state;
63
64 static SgenObjectOperations * volatile idle_func_object_ops;
65
66 static guint64 stat_workers_num_finished;
67
68 static gboolean
69 set_state (State old_state, State new_state)
70 {
71         SGEN_ASSERT (0, old_state != new_state, "Why are we transitioning to the same state?");
72         if (new_state == STATE_NOT_WORKING)
73                 SGEN_ASSERT (0, old_state == STATE_WORKING, "We can only transition to NOT WORKING from WORKING");
74         else if (new_state == STATE_WORKING)
75                 SGEN_ASSERT (0, old_state == STATE_WORK_ENQUEUED, "We can only transition to WORKING from WORK ENQUEUED");
76         if (new_state == STATE_NOT_WORKING || new_state == STATE_WORKING)
77                 SGEN_ASSERT (6, sgen_thread_pool_is_thread_pool_thread (mono_native_thread_id_get ()), "Only the worker thread is allowed to transition to NOT_WORKING or WORKING");
78
79         return InterlockedCompareExchange (&workers_state, new_state, old_state) == old_state;
80 }
81
82 static void
83 assert_nursery_collection (State state)
84 {
85         SGEN_ASSERT (0, state == STATE_NURSERY_COLLECTION, "Must be in the nursery collection state");
86 }
87
88 static gboolean
89 state_is_working_or_enqueued (State state)
90 {
91         return state == STATE_WORKING || state == STATE_WORK_ENQUEUED;
92 }
93
94 static void
95 workers_signal_enqueue_work (gboolean from_nursery_collection)
96 {
97         State old_state;
98         gboolean did_set_state;
99
100         do {
101                 old_state = workers_state;
102
103                 if (from_nursery_collection)
104                         assert_nursery_collection (old_state);
105                 else
106                         SGEN_ASSERT (0, old_state != STATE_NURSERY_COLLECTION, "If we're not in a nursery collection, how come the state is NURSERY COLLECTION?");
107
108                 if (old_state == STATE_WORK_ENQUEUED)
109                         break;
110
111                 did_set_state = set_state (old_state, STATE_WORK_ENQUEUED);
112                 if (from_nursery_collection)
113                         SGEN_ASSERT (0, did_set_state, "Nobody else should be mutating the state");
114         } while (!did_set_state);
115
116         if (!state_is_working_or_enqueued (old_state))
117                 sgen_thread_pool_idle_signal ();
118 }
119
120 void
121 sgen_workers_ensure_awake (void)
122 {
123         SGEN_ASSERT (0, workers_state != STATE_NURSERY_COLLECTION, "Can't wake workers during nursery collection");
124         workers_signal_enqueue_work (FALSE);
125 }
126
127 static void
128 worker_try_finish (void)
129 {
130         State old_state;
131
132         ++stat_workers_num_finished;
133
134         do {
135                 old_state = workers_state;
136
137                 SGEN_ASSERT (0, old_state != STATE_NOT_WORKING, "How did we get from doing idle work to NOT WORKING without setting it ourselves?");
138                 if (old_state == STATE_NURSERY_COLLECTION)
139                         return;
140                 if (old_state == STATE_WORK_ENQUEUED)
141                         return;
142                 SGEN_ASSERT (0, old_state == STATE_WORKING, "What other possibility is there?");
143
144                 /* We are the last thread to go to sleep. */
145         } while (!set_state (old_state, STATE_NOT_WORKING));
146 }
147
148 static gboolean
149 collection_needs_workers (void)
150 {
151         return sgen_collection_is_concurrent ();
152 }
153
154 void
155 sgen_workers_enqueue_job (SgenThreadPoolJob *job)
156 {
157         if (!collection_needs_workers ()) {
158                 job->func (NULL, job);
159                 sgen_thread_pool_job_free (job);
160                 return;
161         }
162
163         sgen_thread_pool_job_enqueue (job);
164 }
165
166 void
167 sgen_workers_wait_for_jobs_finished (void)
168 {
169         sgen_thread_pool_wait_for_all_jobs ();
170 }
171
172 void
173 sgen_workers_signal_start_nursery_collection_and_wait (void)
174 {
175         State old_state;
176
177         do {
178                 old_state = workers_state;
179
180                 if (old_state != STATE_NOT_WORKING)
181                         SGEN_ASSERT (0, old_state != STATE_NURSERY_COLLECTION, "Why are we transitioning to NURSERY COLLECTION when we're already there?");
182         } while (!set_state (old_state, STATE_NURSERY_COLLECTION));
183
184         sgen_thread_pool_idle_wait ();
185
186         assert_nursery_collection (workers_state);
187 }
188
189 void
190 sgen_workers_signal_finish_nursery_collection (void)
191 {
192         assert_nursery_collection (workers_state);
193         workers_signal_enqueue_work (TRUE);
194 }
195
196 static gboolean
197 workers_get_work (WorkerData *data)
198 {
199         SgenMajorCollector *major;
200
201         g_assert (sgen_gray_object_queue_is_empty (&data->private_gray_queue));
202
203         /* If we're concurrent, steal from the workers distribute gray queue. */
204         major = sgen_get_major_collector ();
205         if (major->is_concurrent) {
206                 GrayQueueSection *section = sgen_section_gray_queue_dequeue (&workers_distribute_gray_queue);
207                 if (section) {
208                         sgen_gray_object_enqueue_section (&data->private_gray_queue, section);
209                         return TRUE;
210                 }
211         }
212
213         /* Nobody to steal from */
214         g_assert (sgen_gray_object_queue_is_empty (&data->private_gray_queue));
215         return FALSE;
216 }
217
218 static void
219 concurrent_enqueue_check (char *obj)
220 {
221         g_assert (sgen_concurrent_collection_in_progress ());
222         g_assert (!sgen_ptr_in_nursery (obj));
223         g_assert (SGEN_LOAD_VTABLE (obj));
224 }
225
226 static void
227 init_private_gray_queue (WorkerData *data)
228 {
229         sgen_gray_object_queue_init (&data->private_gray_queue,
230                         sgen_get_major_collector ()->is_concurrent ? concurrent_enqueue_check : NULL);
231 }
232
233 static void
234 thread_pool_init_func (void *data_untyped)
235 {
236         WorkerData *data = data_untyped;
237         SgenMajorCollector *major = sgen_get_major_collector ();
238
239         mono_thread_info_register_small_id ();
240
241         if (!major->is_concurrent)
242                 return;
243
244         init_private_gray_queue (data);
245 }
246
247 static gboolean
248 continue_idle_func (void)
249 {
250         return state_is_working_or_enqueued (workers_state);
251 }
252
253 static void
254 marker_idle_func (void *data_untyped)
255 {
256         WorkerData *data = data_untyped;
257
258         if (!continue_idle_func ())
259                 return;
260
261         SGEN_ASSERT (0, sgen_concurrent_collection_in_progress (), "The worker should only mark in concurrent collections.");
262         SGEN_ASSERT (0, sgen_get_current_collection_generation () != GENERATION_NURSERY, "Why are we doing work while there's a nursery collection happening?");
263
264         if (workers_state == STATE_WORK_ENQUEUED) {
265                 set_state (STATE_WORK_ENQUEUED, STATE_WORKING);
266                 SGEN_ASSERT (0, workers_state != STATE_NOT_WORKING, "How did we get from WORK ENQUEUED to NOT WORKING?");
267         }
268
269         if (!sgen_gray_object_queue_is_empty (&data->private_gray_queue) || workers_get_work (data)) {
270                 ScanCopyContext ctx = CONTEXT_FROM_OBJECT_OPERATIONS (idle_func_object_ops, &data->private_gray_queue);
271
272                 SGEN_ASSERT (0, !sgen_gray_object_queue_is_empty (&data->private_gray_queue), "How is our gray queue empty if we just got work?");
273
274                 sgen_drain_gray_stack (32, ctx);
275         } else {
276                 worker_try_finish ();
277         }
278 }
279
280 static void
281 init_distribute_gray_queue (void)
282 {
283         if (workers_distribute_gray_queue_inited) {
284                 g_assert (sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue));
285                 g_assert (workers_distribute_gray_queue.locked);
286                 return;
287         }
288
289         sgen_section_gray_queue_init (&workers_distribute_gray_queue, TRUE,
290                         sgen_get_major_collector ()->is_concurrent ? concurrent_enqueue_check : NULL);
291         workers_distribute_gray_queue_inited = TRUE;
292 }
293
294 void
295 sgen_workers_init_distribute_gray_queue (void)
296 {
297         SGEN_ASSERT (0, sgen_get_major_collector ()->is_concurrent && collection_needs_workers (),
298                         "Why should we init the distribute gray queue if we don't need it?");
299         init_distribute_gray_queue ();
300 }
301
302 void
303 sgen_workers_init (int num_workers)
304 {
305         int i;
306         void *workers_data_ptrs [num_workers];
307
308         if (!sgen_get_major_collector ()->is_concurrent) {
309                 sgen_thread_pool_init (num_workers, thread_pool_init_func, NULL, NULL, NULL);
310                 return;
311         }
312
313         //g_print ("initing %d workers\n", num_workers);
314
315         workers_num = num_workers;
316
317         workers_data = sgen_alloc_internal_dynamic (sizeof (WorkerData) * num_workers, INTERNAL_MEM_WORKER_DATA, TRUE);
318         memset (workers_data, 0, sizeof (WorkerData) * num_workers);
319
320         init_distribute_gray_queue ();
321
322         for (i = 0; i < workers_num; ++i)
323                 workers_data_ptrs [i] = &workers_data [i];
324
325         sgen_thread_pool_init (num_workers, thread_pool_init_func, marker_idle_func, continue_idle_func, workers_data_ptrs);
326
327         mono_counters_register ("# workers finished", MONO_COUNTER_GC | MONO_COUNTER_ULONG, &stat_workers_num_finished);
328 }
329
330 void
331 sgen_workers_start_all_workers (SgenObjectOperations *object_ops)
332 {
333         if (!collection_needs_workers ())
334                 return;
335
336         idle_func_object_ops = object_ops;
337         mono_memory_write_barrier ();
338
339         workers_signal_enqueue_work (FALSE);
340 }
341
342 void
343 sgen_workers_join (void)
344 {
345         int i;
346
347         SGEN_ASSERT (0, workers_state != STATE_NURSERY_COLLECTION, "Can't be in nursery collection when joining");
348
349         if (!collection_needs_workers ())
350                 return;
351
352         sgen_thread_pool_wait_for_all_jobs ();
353         sgen_thread_pool_idle_wait ();
354         SGEN_ASSERT (0, workers_state == STATE_NOT_WORKING, "Can only signal enqueue work when in no work state");
355
356         /* At this point all the workers have stopped. */
357
358         SGEN_ASSERT (0, sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue), "Why is there still work left to do?");
359         for (i = 0; i < workers_num; ++i)
360                 SGEN_ASSERT (0, sgen_gray_object_queue_is_empty (&workers_data [i].private_gray_queue), "Why is there still work left to do?");
361 }
362
363 gboolean
364 sgen_workers_all_done (void)
365 {
366         return workers_state == STATE_NOT_WORKING;
367 }
368
369 /* Must only be used for debugging */
370 gboolean
371 sgen_workers_are_working (void)
372 {
373         return state_is_working_or_enqueued (workers_state);
374 }
375
376 void
377 sgen_workers_wait (void)
378 {
379         sgen_thread_pool_idle_wait ();
380         SGEN_ASSERT (0, sgen_workers_all_done (), "Why are the workers not done after we wait for them?");
381 }
382
383 SgenSectionGrayQueue*
384 sgen_workers_get_distribute_section_gray_queue (void)
385 {
386         return &workers_distribute_gray_queue;
387 }
388
389 #endif