1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
module Raw = struct
type t = private int
type 'a state =
| Running
| Finished of ('a, exn) result [@warning "-unused-constructor"]
type 'a term_sync = {
mutable state : 'a state [@warning "-unused-field"] ;
mut : Mutex.t ;
cond : Condition.t ;
}
external spawn : (unit -> 'a) -> 'a term_sync -> t
= "caml_domain_spawn"
external self : unit -> t
= "caml_ml_domain_id" [@@noalloc]
external cpu_relax : unit -> unit
= "caml_ml_domain_cpu_relax"
external get_recommended_domain_count: unit -> int
= "caml_recommended_domain_count" [@@noalloc]
end
let cpu_relax () = Raw.cpu_relax ()
type id = Raw.t
type 'a t = {
domain : Raw.t;
term_sync : 'a Raw.term_sync;
}
module DLS = struct
module Obj_opt : sig
type t
val none : t
val some : 'a -> t
val is_some : t -> bool
(** [unsafe_get obj] may only be called safely
if [is_some] is true.
[unsafe_get (some v)] is equivalent to
[Obj.obj (Obj.repr v)]. *)
val unsafe_get : t -> 'a
end = struct
type t = Obj.t
let none = Obj.repr (ref 0)
let some v = Obj.repr v
let is_some obj = (obj != none)
let unsafe_get obj = Obj.obj obj
end
type dls_state = Obj_opt.t array
external get_dls_state : unit -> dls_state = "%dls_get"
external set_dls_state : dls_state -> unit =
"caml_domain_dls_set" [@@noalloc]
external compare_and_set_dls_state : dls_state -> dls_state -> bool =
"caml_domain_dls_compare_and_set" [@@noalloc]
let create_dls () =
let st = Array.make 8 Obj_opt.none in
set_dls_state st
let _ = create_dls ()
type 'a key = int * (unit -> 'a)
let key_counter = Atomic.make 0
type key_initializer =
KI: 'a key * ('a -> 'a) -> key_initializer
let parent_keys = Atomic.make ([] : key_initializer list)
let rec add_parent_key ki =
let l = Atomic.get parent_keys in
if not (Atomic.compare_and_set parent_keys l (ki :: l))
then add_parent_key ki
let new_key ?split_from_parent init_orphan =
let idx = Atomic.fetch_and_add key_counter 1 in
let k = (idx, init_orphan) in
begin match split_from_parent with
| None -> ()
| Some split -> add_parent_key (KI(k, split))
end;
k
let rec maybe_grow idx =
let st = get_dls_state () in
let sz = Array.length st in
if idx < sz then st
else begin
let rec compute_new_size s =
if idx < s then s else compute_new_size (2 * s)
in
let new_sz = compute_new_size sz in
let new_st = Array.make new_sz Obj_opt.none in
Array.blit st 0 new_st 0 sz;
if compare_and_set_dls_state st new_st
then new_st
else maybe_grow idx
end
let set (type a) (idx, _init) (x : a) =
let st = maybe_grow idx in
st.(idx) <- Obj_opt.some (Sys.opaque_identity x)
let[@inline never] array_compare_and_set a i oldval newval =
let curval = a.(i) in
if curval == oldval then (
Array.unsafe_set a i newval;
true
) else false
let get (type a) ((idx, init) : a key) : a =
let st = maybe_grow idx in
let obj = st.(idx) in
if Obj_opt.is_some obj
then (Obj_opt.unsafe_get obj : a)
else begin
let v : a = init () in
let new_obj = Obj_opt.some (Sys.opaque_identity v) in
let st = get_dls_state () in
if array_compare_and_set st idx obj new_obj
then v
else begin
let updated_obj = st.(idx) in
if Obj_opt.is_some updated_obj
then (Obj_opt.unsafe_get updated_obj : a)
else assert false
end
end
type key_value = KV : 'a key * 'a -> key_value
let get_initial_keys () : key_value list =
List.map
(fun (KI (k, split)) -> KV (k, (split (get k))))
(Atomic.get parent_keys)
let set_initial_keys (l: key_value list) =
List.iter (fun (KV (k, v)) -> set k v) l
end
let get_id { domain; _ } = domain
let self () = Raw.self ()
let is_main_domain () = (self () :> int) = 0
external self_index : unit -> int
= "caml_ml_domain_index" [@@noalloc]
let first_domain_spawned = Atomic.make false
let first_spawn_function = ref (fun () -> ())
let before_first_spawn f =
if Atomic.get first_domain_spawned then
raise (Invalid_argument "first domain already spawned")
else begin
let old_f = !first_spawn_function in
let new_f () = old_f (); f () in
first_spawn_function := new_f
end
let do_before_first_spawn () =
if not (Atomic.get first_domain_spawned) then begin
Atomic.set first_domain_spawned true;
!first_spawn_function();
first_spawn_function := (fun () -> ())
end
let at_exit_key = DLS.new_key (fun () -> (fun () -> ()))
let at_exit f =
let old_exit : unit -> unit = DLS.get at_exit_key in
let new_exit () =
f (); old_exit ()
in
DLS.set at_exit_key new_exit
let do_at_exit () =
let f : unit -> unit = DLS.get at_exit_key in
f ()
let _ = Stdlib.do_domain_local_at_exit := do_at_exit
let spawn f =
do_before_first_spawn ();
let pk = DLS.get_initial_keys () in
let term_sync =
Raw.{ state = Running ;
mut = Mutex.create () ;
cond = Condition.create () }
in
let body () =
match
DLS.create_dls ();
DLS.set_initial_keys pk;
let res = f () in
res
with
| res ->
do_at_exit ();
res
| exception exn ->
(try do_at_exit () with _ -> ());
raise exn
in
let domain = Raw.spawn body term_sync in
{ domain ; term_sync }
let join { term_sync ; _ } =
let open Raw in
let rec loop () =
match term_sync.state with
| Running ->
Condition.wait term_sync.cond term_sync.mut;
loop ()
| Finished res ->
res
in
match Mutex.protect term_sync.mut loop with
| Ok x -> x
| Error ex -> raise ex
let recommended_domain_count = Raw.get_recommended_domain_count