[sgen] Switch to nopar context when we are left with one worker
[mono.git] / mono / sgen / 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  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
9  */
10
11 #include "config.h"
12 #ifdef HAVE_SGEN_GC
13
14 #include <string.h>
15
16 #include "mono/sgen/sgen-gc.h"
17 #include "mono/sgen/sgen-workers.h"
18 #include "mono/sgen/sgen-thread-pool.h"
19 #include "mono/utils/mono-membar.h"
20 #include "mono/sgen/sgen-client.h"
21
22 static int workers_num;
23 static volatile gboolean forced_stop;
24 static WorkerData *workers_data;
25 static SgenWorkerCallback worker_init_cb;
26
27 /*
28  * When using multiple workers, we need to have the last worker
29  * enqueue the preclean jobs (if there are any). This lock ensures
30  * that when the last worker takes it, all the other workers have
31  * gracefully finished, so it can restart them.
32  */
33 static mono_mutex_t finished_lock;
34
35 static SgenSectionGrayQueue workers_distribute_gray_queue;
36 static gboolean workers_distribute_gray_queue_inited;
37
38 /*
39  * Allowed transitions:
40  *
41  * | from \ to          | NOT WORKING | WORKING | WORK ENQUEUED |
42  * |--------------------+-------------+---------+---------------+
43  * | NOT WORKING        | -           | -       | main / worker |
44  * | WORKING            | worker      | -       | main / worker |
45  * | WORK ENQUEUED      | -           | worker  | -             |
46  *
47  * The WORK ENQUEUED state guarantees that the worker thread will inspect the queue again at
48  * least once.  Only after looking at the queue will it go back to WORKING, and then,
49  * eventually, to NOT WORKING.  After enqueuing work the main thread transitions the state
50  * to WORK ENQUEUED.  Signalling the worker thread to wake up is only necessary if the old
51  * state was NOT WORKING.
52  */
53
54 enum {
55         STATE_NOT_WORKING,
56         STATE_WORKING,
57         STATE_WORK_ENQUEUED
58 };
59
60 typedef gint32 State;
61
62 static SgenObjectOperations * volatile idle_func_object_ops;
63 static SgenObjectOperations *idle_func_object_ops_par, *idle_func_object_ops_nopar;
64 /*
65  * finished_callback is called only when the workers finish work normally (when they
66  * are not forced to finish). The callback is used to enqueue preclean jobs.
67  */
68 static volatile SgenWorkersFinishCallback finish_callback;
69
70 static guint64 stat_workers_num_finished;
71
72 static gboolean
73 set_state (WorkerData *data, State old_state, State new_state)
74 {
75         SGEN_ASSERT (0, old_state != new_state, "Why are we transitioning to the same state?");
76         if (new_state == STATE_NOT_WORKING)
77                 SGEN_ASSERT (0, old_state == STATE_WORKING, "We can only transition to NOT WORKING from WORKING");
78         else if (new_state == STATE_WORKING)
79                 SGEN_ASSERT (0, old_state == STATE_WORK_ENQUEUED, "We can only transition to WORKING from WORK ENQUEUED");
80         if (new_state == STATE_NOT_WORKING || new_state == STATE_WORKING)
81                 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");
82
83         return InterlockedCompareExchange (&data->state, new_state, old_state) == old_state;
84 }
85
86 static gboolean
87 state_is_working_or_enqueued (State state)
88 {
89         return state == STATE_WORKING || state == STATE_WORK_ENQUEUED;
90 }
91
92 static void
93 sgen_workers_ensure_awake (void)
94 {
95         int i;
96         gboolean need_signal = FALSE;
97
98         /*
99          * All workers are awaken, make sure we reset the parallel context.
100          * We call this function only when starting the workers so nobody is running,
101          * or when the last worker is enqueuing preclean work. In both cases we can't
102          * have a worker working using a nopar context, which means it is safe.
103          */
104         idle_func_object_ops = (workers_num > 1) ? idle_func_object_ops_par : idle_func_object_ops_nopar;
105
106         for (i = 0; i < workers_num; i++) {
107                 State old_state;
108                 gboolean did_set_state;
109
110                 do {
111                         old_state = workers_data [i].state;
112
113                         if (old_state == STATE_WORK_ENQUEUED)
114                                 break;
115
116                         did_set_state = set_state (&workers_data [i], old_state, STATE_WORK_ENQUEUED);
117                 } while (!did_set_state);
118
119                 if (!state_is_working_or_enqueued (old_state))
120                         need_signal = TRUE;
121         }
122
123         if (need_signal)
124                 sgen_thread_pool_idle_signal ();
125 }
126
127 static void
128 worker_try_finish (WorkerData *data)
129 {
130         State old_state;
131         int i, working = 0;
132
133         ++stat_workers_num_finished;
134
135         mono_os_mutex_lock (&finished_lock);
136
137         for (i = 0; i < workers_num; i++) {
138                 if (state_is_working_or_enqueued (workers_data [i].state))
139                         working++;
140         }
141
142         if (working == 1) {
143                 SgenWorkersFinishCallback callback = finish_callback;
144                 SGEN_ASSERT (0, idle_func_object_ops == idle_func_object_ops_nopar, "Why are we finishing with parallel context");
145                 /* We are the last one left. Enqueue preclean job if we have one and awake everybody */
146                 SGEN_ASSERT (0, data->state != STATE_NOT_WORKING, "How did we get from doing idle work to NOT WORKING without setting it ourselves?");
147                 if (callback) {
148                         finish_callback = NULL;
149                         callback ();
150                         /* Make sure each worker has a chance of seeing the enqueued jobs */
151                         sgen_workers_ensure_awake ();
152                         SGEN_ASSERT (0, data->state == STATE_WORK_ENQUEUED, "Why did we fail to set our own state to ENQUEUED");
153                         goto work_available;
154                 }
155         }
156
157         do {
158                 old_state = data->state;
159
160                 SGEN_ASSERT (0, old_state != STATE_NOT_WORKING, "How did we get from doing idle work to NOT WORKING without setting it ourselves?");
161                 if (old_state == STATE_WORK_ENQUEUED)
162                         goto work_available;
163                 SGEN_ASSERT (0, old_state == STATE_WORKING, "What other possibility is there?");
164         } while (!set_state (data, old_state, STATE_NOT_WORKING));
165
166         /*
167          * If we are second to last to finish, we set the scan context to the non-parallel
168          * version so we can speed up the last worker. This helps us maintain same level
169          * of performance as non-parallel mode even if we fail to distribute work properly.
170          */
171         if (working == 2)
172                 idle_func_object_ops = idle_func_object_ops_nopar;
173
174         mono_os_mutex_unlock (&finished_lock);
175
176         binary_protocol_worker_finish (sgen_timestamp (), forced_stop);
177
178         sgen_gray_object_queue_trim_free_list (&data->private_gray_queue);
179         return;
180
181 work_available:
182         mono_os_mutex_unlock (&finished_lock);
183 }
184
185 void
186 sgen_workers_enqueue_job (SgenThreadPoolJob *job, gboolean enqueue)
187 {
188         if (!enqueue) {
189                 job->func (NULL, job);
190                 sgen_thread_pool_job_free (job);
191                 return;
192         }
193
194         sgen_thread_pool_job_enqueue (job);
195 }
196
197 static gboolean
198 workers_get_work (WorkerData *data)
199 {
200         SgenMajorCollector *major;
201
202         g_assert (sgen_gray_object_queue_is_empty (&data->private_gray_queue));
203
204         /* If we're concurrent, steal from the workers distribute gray queue. */
205         major = sgen_get_major_collector ();
206         if (major->is_concurrent) {
207                 GrayQueueSection *section = sgen_section_gray_queue_dequeue (&workers_distribute_gray_queue);
208                 if (section) {
209                         sgen_gray_object_enqueue_section (&data->private_gray_queue, section);
210                         return TRUE;
211                 }
212         }
213
214         /* Nobody to steal from */
215         g_assert (sgen_gray_object_queue_is_empty (&data->private_gray_queue));
216         return FALSE;
217 }
218
219 static void
220 concurrent_enqueue_check (GCObject *obj)
221 {
222         g_assert (sgen_concurrent_collection_in_progress ());
223         g_assert (!sgen_ptr_in_nursery (obj));
224         g_assert (SGEN_LOAD_VTABLE (obj));
225 }
226
227 static void
228 init_private_gray_queue (WorkerData *data)
229 {
230         sgen_gray_object_queue_init (&data->private_gray_queue,
231                         sgen_get_major_collector ()->is_concurrent ? concurrent_enqueue_check : NULL,
232                         FALSE);
233 }
234
235 static void
236 thread_pool_init_func (void *data_untyped)
237 {
238         WorkerData *data = (WorkerData *)data_untyped;
239         SgenMajorCollector *major = sgen_get_major_collector ();
240
241         sgen_client_thread_register_worker ();
242
243         if (!major->is_concurrent)
244                 return;
245
246         init_private_gray_queue (data);
247
248         if (worker_init_cb)
249                 worker_init_cb (data);
250 }
251
252 static gboolean
253 continue_idle_func (void *data_untyped)
254 {
255         if (data_untyped) {
256                 WorkerData *data = (WorkerData *)data_untyped;
257                 return state_is_working_or_enqueued (data->state);
258         } else {
259                 /* Return if any of the threads is working */
260                 return !sgen_workers_all_done ();
261         }
262 }
263
264 static void
265 marker_idle_func (void *data_untyped)
266 {
267         WorkerData *data = (WorkerData *)data_untyped;
268
269         SGEN_ASSERT (0, continue_idle_func (data_untyped), "Why are we called when we're not supposed to work?");
270         SGEN_ASSERT (0, sgen_concurrent_collection_in_progress (), "The worker should only mark in concurrent collections.");
271
272         if (data->state == STATE_WORK_ENQUEUED) {
273                 set_state (data, STATE_WORK_ENQUEUED, STATE_WORKING);
274                 SGEN_ASSERT (0, data->state != STATE_NOT_WORKING, "How did we get from WORK ENQUEUED to NOT WORKING?");
275         }
276
277         if (!forced_stop && (!sgen_gray_object_queue_is_empty (&data->private_gray_queue) || workers_get_work (data))) {
278                 ScanCopyContext ctx = CONTEXT_FROM_OBJECT_OPERATIONS (idle_func_object_ops, &data->private_gray_queue);
279
280                 SGEN_ASSERT (0, !sgen_gray_object_queue_is_empty (&data->private_gray_queue), "How is our gray queue empty if we just got work?");
281
282                 sgen_drain_gray_stack (ctx);
283         } else {
284                 worker_try_finish (data);
285         }
286 }
287
288 static void
289 init_distribute_gray_queue (void)
290 {
291         if (workers_distribute_gray_queue_inited) {
292                 g_assert (sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue));
293                 g_assert (workers_distribute_gray_queue.locked);
294                 return;
295         }
296
297         sgen_section_gray_queue_init (&workers_distribute_gray_queue, TRUE,
298                         sgen_get_major_collector ()->is_concurrent ? concurrent_enqueue_check : NULL);
299         workers_distribute_gray_queue_inited = TRUE;
300 }
301
302 void
303 sgen_workers_init_distribute_gray_queue (void)
304 {
305         SGEN_ASSERT (0, sgen_get_major_collector ()->is_concurrent,
306                         "Why should we init the distribute gray queue if we don't need it?");
307         init_distribute_gray_queue ();
308 }
309
310 void
311 sgen_workers_init (int num_workers, SgenWorkerCallback callback)
312 {
313         int i;
314         void **workers_data_ptrs = (void **)alloca(num_workers * sizeof(void *));
315
316         if (!sgen_get_major_collector ()->is_concurrent) {
317                 sgen_thread_pool_init (num_workers, thread_pool_init_func, NULL, NULL, NULL);
318                 return;
319         }
320
321         mono_os_mutex_init (&finished_lock);
322         //g_print ("initing %d workers\n", num_workers);
323
324         workers_num = num_workers;
325
326         workers_data = (WorkerData *)sgen_alloc_internal_dynamic (sizeof (WorkerData) * num_workers, INTERNAL_MEM_WORKER_DATA, TRUE);
327         memset (workers_data, 0, sizeof (WorkerData) * num_workers);
328
329         init_distribute_gray_queue ();
330
331         for (i = 0; i < num_workers; ++i)
332                 workers_data_ptrs [i] = (void *) &workers_data [i];
333
334         worker_init_cb = callback;
335
336         sgen_thread_pool_init (num_workers, thread_pool_init_func, marker_idle_func, continue_idle_func, workers_data_ptrs);
337
338         mono_counters_register ("# workers finished", MONO_COUNTER_GC | MONO_COUNTER_ULONG, &stat_workers_num_finished);
339 }
340
341 void
342 sgen_workers_stop_all_workers (void)
343 {
344         finish_callback = NULL;
345         mono_memory_write_barrier ();
346         forced_stop = TRUE;
347
348         sgen_thread_pool_wait_for_all_jobs ();
349         sgen_thread_pool_idle_wait ();
350         SGEN_ASSERT (0, sgen_workers_all_done (), "Can only signal enqueue work when in no work state");
351 }
352
353 void
354 sgen_workers_start_all_workers (SgenObjectOperations *object_ops_nopar, SgenObjectOperations *object_ops_par, SgenWorkersFinishCallback callback)
355 {
356         idle_func_object_ops_par = object_ops_par;
357         idle_func_object_ops_nopar = object_ops_nopar;
358         forced_stop = FALSE;
359         finish_callback = callback;
360         mono_memory_write_barrier ();
361
362         sgen_workers_ensure_awake ();
363 }
364
365 void
366 sgen_workers_join (void)
367 {
368         int i;
369
370         sgen_thread_pool_wait_for_all_jobs ();
371         sgen_thread_pool_idle_wait ();
372         SGEN_ASSERT (0, sgen_workers_all_done (), "Can only signal enqueue work when in no work state");
373
374         /* At this point all the workers have stopped. */
375
376         SGEN_ASSERT (0, sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue), "Why is there still work left to do?");
377         for (i = 0; i < workers_num; ++i)
378                 SGEN_ASSERT (0, sgen_gray_object_queue_is_empty (&workers_data [i].private_gray_queue), "Why is there still work left to do?");
379 }
380
381 /*
382  * Can only be called if the workers are stopped.
383  * If we're stopped, there are also no pending jobs.
384  */
385 gboolean
386 sgen_workers_have_idle_work (void)
387 {
388         int i;
389
390         SGEN_ASSERT (0, forced_stop && sgen_workers_all_done (), "Checking for idle work should only happen if the workers are stopped.");
391
392         if (!sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue))
393                 return TRUE;
394
395         for (i = 0; i < workers_num; ++i) {
396                 if (!sgen_gray_object_queue_is_empty (&workers_data [i].private_gray_queue))
397                         return TRUE;
398         }
399
400         return FALSE;
401 }
402
403 gboolean
404 sgen_workers_all_done (void)
405 {
406         int i;
407
408         for (i = 0; i < workers_num; i++) {
409                 if (state_is_working_or_enqueued (workers_data [i].state))
410                         return FALSE;
411         }
412         return TRUE;
413 }
414
415 /* Must only be used for debugging */
416 gboolean
417 sgen_workers_are_working (void)
418 {
419         return !sgen_workers_all_done ();
420 }
421
422 void
423 sgen_workers_assert_gray_queue_is_empty (void)
424 {
425         SGEN_ASSERT (0, sgen_section_gray_queue_is_empty (&workers_distribute_gray_queue), "Why is the workers gray queue not empty?");
426 }
427
428 void
429 sgen_workers_take_from_queue (SgenGrayQueue *queue)
430 {
431         for (;;) {
432                 GrayQueueSection *section = sgen_gray_object_dequeue_section (queue);
433                 if (!section)
434                         break;
435                 sgen_section_gray_queue_enqueue (&workers_distribute_gray_queue, section);
436         }
437
438         SGEN_ASSERT (0, !sgen_workers_are_working (), "We should fully populate the distribute gray queue before we start the workers");
439 }
440
441 SgenObjectOperations*
442 sgen_workers_get_idle_func_object_ops (void)
443 {
444         return (idle_func_object_ops_par) ? idle_func_object_ops_par : idle_func_object_ops_nopar;
445 }
446
447 /*
448  * If we have a single worker, splitting into multiple jobs makes no sense. With
449  * more than one worker, we split into a larger number of jobs so that, in case
450  * the work load is uneven, a worker that finished quickly can take up more jobs
451  * than another one.
452  */
453 int
454 sgen_workers_get_job_split_count (void)
455 {
456         return (workers_num > 1) ? workers_num * 4 : 1;
457 }
458
459 void
460 sgen_workers_foreach (SgenWorkerCallback callback)
461 {
462         int i;
463
464         for (i = 0; i < workers_num; i++)
465                 callback (&workers_data [i]);
466 }
467
468 #endif