Merge pull request #205 from m3rlinez/master
[mono.git] / mono / metadata / sgen-workers.h
1 /*
2  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  */
23 #ifndef __MONO_SGEN_WORKER_H__
24 #define __MONO_SGEN_WORKER_H__
25
26 #define STEALABLE_STACK_SIZE    512
27
28
29 typedef struct _WorkerData WorkerData;
30 struct _WorkerData {
31         MonoNativeThreadId thread;
32         void *major_collector_data;
33
34         SgenGrayQueue private_gray_queue; /* only read/written by worker thread */
35
36         mono_mutex_t stealable_stack_mutex;
37         volatile int stealable_stack_fill;
38         char *stealable_stack [STEALABLE_STACK_SIZE];
39 };
40
41 typedef void (*JobFunc) (WorkerData *worker_data, void *job_data);
42
43 typedef struct _JobQueueEntry JobQueueEntry;
44 struct _JobQueueEntry {
45         JobFunc func;
46         void *data;
47
48         volatile JobQueueEntry *next;
49 };
50
51 void mono_sgen_workers_init (int num_workers) MONO_INTERNAL;
52 void mono_sgen_workers_start_all_workers (void) MONO_INTERNAL;
53 void mono_sgen_workers_init_distribute_gray_queue (void) MONO_INTERNAL;
54 void mono_sgen_workers_enqueue_job (JobFunc func, void *data) MONO_INTERNAL;
55 void mono_sgen_workers_start_marking (void) MONO_INTERNAL;
56 void mono_sgen_workers_distribute_gray_queue_sections (void) MONO_INTERNAL;
57 void mono_sgen_workers_reset_data (void) MONO_INTERNAL;
58 void mono_sgen_workers_join (void) MONO_INTERNAL;
59 gboolean mono_sgen_workers_is_distributed_queue (SgenGrayQueue *queue) MONO_INTERNAL;
60 SgenGrayQueue* mono_sgen_workers_get_distribute_gray_queue (void) MONO_INTERNAL;
61
62 #endif