package picos_mux

  1. Overview
  2. Docs

Source file picos_mux_multififo.ml

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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
open Picos

let[@inline never] quota_non_positive () = invalid_arg "quota must be positive"
let[@inline never] already_running () = invalid_arg "already running"
let[@inline never] not_worker () = invalid_arg "not a worker thread"

module Mpmcq = Picos_aux_mpmcq

type ready =
  | Spawn of Fiber.t * (Fiber.t -> unit)
  | Continue of Fiber.t * (unit, unit) Effect.Deep.continuation
  | Resume of
      Fiber.t
      * ((exn * Printexc.raw_backtrace) option, unit) Effect.Deep.continuation
  | Return of Fiber.Maybe.t * (unit, unit) Effect.Deep.continuation

type t = {
  mutable num_waiters_non_zero : bool;
  num_waiters : int ref;
  num_started : int Atomic.t;
  mutex : Mutex.t;
  condition : Condition.t;
  handler : (unit, unit) Effect.Deep.handler;
  quota : int;
  mutable run : bool;
  mutable threads : [ `Nothing | `Per_thread ] tdt array;
  mutable threads_num : int;
}

and _ tdt =
  | Nothing : [> `Nothing ] tdt
  | Per_thread : {
      ready : ready Mpmcq.t;
      resume :
        Trigger.t ->
        Fiber.t ->
        ((exn * Printexc.raw_backtrace) option, unit) Effect.Deep.continuation ->
        unit;
      return : ((unit, unit) Effect.Deep.continuation -> unit) option;
      discontinue : ((unit, unit) Effect.Deep.continuation -> unit) option;
      context : t;
      mutable index : int;
      mutable num_started : int;
      mutable num_stopped : int;
      mutable fiber : Fiber.Maybe.t;
      mutable remaining_quota : int;
    }
      -> [> `Per_thread ] tdt

and per_thread = [ `Per_thread ] tdt

let per_thread_key = Picos_thread.TLS.create ()

let[@inline] get_per_thread () : per_thread =
  match Picos_thread.TLS.get_exn per_thread_key with
  | Nothing -> not_worker ()
  | Per_thread _ as pt -> pt

let get_thread t i : per_thread =
  match Array.unsafe_get t.threads i with
  | Nothing -> not_worker ()
  | Per_thread _ as pt -> pt

let any_fibers_alive t =
  (* We read the number of stopped fibers first. *)
  let stopped = ref 0 in
  for i = 0 to t.threads_num - 1 do
    let (Per_thread p) = get_thread t i in
    stopped := !stopped + p.num_stopped
  done;
  (* Then we read the number of started fibers.

     The [Atomic.get] below provides a fence that ensures we really read the
     number of started fibers after reading the number of stopped fibers. *)
  let started = ref (Atomic.get t.num_started) in
  for i = 0 to t.threads_num - 1 do
    let (Per_thread p) = get_thread t i in
    started := !started + p.num_started
  done;
  (* Is the difference positive? *)
  0 < !started - !stopped

let rec any_fibers_ready t i =
  0 <= i
  &&
  let (Per_thread p) = get_thread t i in
  Mpmcq.length p.ready != 0 || any_fibers_ready t (i - 1)

let any_fibers_ready t = any_fibers_ready t (t.threads_num - 1)

let next_index t i =
  let i = i + 1 in
  if i < t.threads_num then i else 0

let[@inline] relaxed_wakeup t ~known_not_empty ready =
  if t.num_waiters_non_zero && (known_not_empty || Mpmcq.length ready != 0) then begin
    Mutex.lock t.mutex;
    Mutex.unlock t.mutex;
    Condition.signal t.condition
  end

let exec ready (Per_thread p : per_thread) t =
  p.remaining_quota <- t.quota;
  match ready with
  | Spawn (fiber, main) ->
      p.fiber <- Fiber.Maybe.of_fiber fiber;
      Effect.Deep.match_with main fiber t.handler
  | Return (fiber, k) ->
      p.fiber <- fiber;
      Effect.Deep.continue k ()
  | Continue (fiber, k) ->
      p.fiber <- Fiber.Maybe.of_fiber fiber;
      Fiber.continue fiber k ()
  | Resume (fiber, k) ->
      p.fiber <- Fiber.Maybe.of_fiber fiber;
      Fiber.resume fiber k

let rec next (Per_thread p as pt : per_thread) =
  match Mpmcq.pop_exn p.ready with
  | ready ->
      let t = p.context in
      relaxed_wakeup t ~known_not_empty:false p.ready;
      exec ready pt t
  | exception Mpmcq.Empty ->
      p.fiber <- Fiber.Maybe.nothing;
      let t = p.context in
      try_steal pt t (next_index t p.index)

and try_steal (Per_thread p as pt : per_thread) t i =
  if p.index <> i then begin
    let (Per_thread other_p) = get_thread t i in
    match Mpmcq.pop_exn other_p.ready with
    | ready ->
        relaxed_wakeup t ~known_not_empty:false other_p.ready;
        exec ready pt t
    | exception Mpmcq.Empty -> try_steal pt t (next_index t i)
  end
  else wait pt t

and wait (pt : per_thread) t =
  if any_fibers_alive t then begin
    Mutex.lock t.mutex;
    let n = !(t.num_waiters) + 1 in
    t.num_waiters := n;
    if n = 1 then t.num_waiters_non_zero <- true;
    if (not (any_fibers_ready t)) && any_fibers_alive t then begin
      match Condition.wait t.condition t.mutex with
      | () ->
          let n = !(t.num_waiters) - 1 in
          t.num_waiters := n;
          if n = 0 then t.num_waiters_non_zero <- false;
          Mutex.unlock t.mutex;
          next pt
      | exception async_exn ->
          let n = !(t.num_waiters) - 1 in
          t.num_waiters := n;
          if n = 0 then t.num_waiters_non_zero <- false;
          Mutex.unlock t.mutex;
          raise async_exn
    end
    else begin
      let n = !(t.num_waiters) - 1 in
      t.num_waiters := n;
      if n = 0 then t.num_waiters_non_zero <- false;
      Mutex.unlock t.mutex;
      next pt
    end
  end
  else begin
    Mutex.lock t.mutex;
    Mutex.unlock t.mutex;
    Condition.broadcast t.condition
  end

let default_fatal_exn_handler exn =
  prerr_string "Fatal error: exception ";
  prerr_string (Printexc.to_string exn);
  prerr_char '\n';
  Printexc.print_backtrace stderr;
  flush stderr;
  exit 2

let per_thread context =
  let ready = Mpmcq.create ~padded:true () in
  let rec pt : per_thread =
    Per_thread
      {
        ready;
        resume;
        return;
        discontinue;
        context;
        index = 0;
        num_started = 0;
        num_stopped = 0;
        fiber = Fiber.Maybe.nothing;
        remaining_quota = 0;
      }
  and resume trigger fiber k =
    let resume = Resume (fiber, k) in
    let (Per_thread p_original) = pt in
    match Picos_thread.TLS.get_exn per_thread_key with
    | Per_thread p_current when p_original.context == p_current.context ->
        (* We are running on a thread of this scheduler *)
        if Fiber.unsuspend fiber trigger then Mpmcq.push p_current.ready resume
        else Mpmcq.push_head p_current.ready resume;
        relaxed_wakeup p_current.context ~known_not_empty:true p_current.ready
    | _ | (exception Picos_thread.TLS.Not_set) ->
        (* We are running on a foreign thread *)
        if Fiber.unsuspend fiber trigger then Mpmcq.push p_original.ready resume
        else Mpmcq.push_head p_original.ready resume;
        let t = p_original.context in
        let non_zero =
          match Mutex.lock t.mutex with
          | () ->
              let non_zero = t.num_waiters_non_zero in
              Mutex.unlock t.mutex;
              non_zero
          | exception Sys_error _ -> false
        in
        if non_zero then Condition.signal t.condition
  and return =
    Some
      (fun k ->
        let (Per_thread p) = pt in
        let remaining_quota = p.remaining_quota - 1 in
        if 0 < remaining_quota then begin
          p.remaining_quota <- remaining_quota;
          Effect.Deep.continue k ()
        end
        else begin
          Mpmcq.push p.ready (Return (p.fiber, k));
          next pt
        end)
  and discontinue =
    Some
      (fun k ->
        let (Per_thread p) = pt in
        let fiber = Fiber.Maybe.to_fiber p.fiber in
        Fiber.continue fiber k ())
  in
  pt

let with_per_thread t fn =
  let (Per_thread new_p as new_pt) = per_thread t in
  begin
    Mutex.lock t.mutex;
    match
      if Array.length t.threads = t.threads_num then begin
        t.threads <-
          Array.init
            ((t.threads_num * 2) + 1)
            (fun i ->
              if i < t.threads_num then Array.unsafe_get t.threads i
              else Nothing)
      end;
      new_p.index <- t.threads_num;
      Array.unsafe_set t.threads t.threads_num new_pt;
      if t.threads_num = 0 then Atomic.incr t.num_started
      else Multicore_magic.fence t.num_started;
      t.threads_num <- t.threads_num + 1
    with
    | () -> Mutex.unlock t.mutex
    | exception exn ->
        Mutex.unlock t.mutex;
        raise exn
  end;
  let old_p =
    try Picos_thread.TLS.get_exn per_thread_key
    with Picos_thread.TLS.Not_set -> Nothing
  in
  Picos_thread.TLS.set per_thread_key new_pt;
  match fn (new_pt : per_thread) with
  | value ->
      (* TODO: maybe remove from [t.threads]? *)
      Picos_thread.TLS.set per_thread_key old_p;
      value
  | exception exn ->
      Picos_thread.TLS.set per_thread_key old_p;
      raise exn

let current =
  Some
    (fun k ->
      let (Per_thread p) = get_per_thread () in
      let fiber = Fiber.Maybe.to_fiber p.fiber in
      Effect.Deep.continue k fiber)

let yield =
  Some
    (fun k ->
      let (Per_thread p as pt) = get_per_thread () in
      let fiber = Fiber.Maybe.to_fiber p.fiber in
      Mpmcq.push p.ready (Continue (fiber, k));
      next pt)

let[@alert "-handler"] effc :
    type a. a Effect.t -> ((a, _) Effect.Deep.continuation -> _) option =
  function
  | Fiber.Current -> current
  | Fiber.Spawn r ->
      let (Per_thread p) = get_per_thread () in
      let fiber = Fiber.Maybe.to_fiber p.fiber in
      if Fiber.is_canceled fiber then p.discontinue
      else begin
        p.num_started <- p.num_started + 1;
        (* The queue [push] includes a full fence, which means the increment
           of [num_started] will happen before increment of [num_stopped]. *)
        Mpmcq.push p.ready (Spawn (r.fiber, r.main));
        let t = p.context in
        relaxed_wakeup t ~known_not_empty:true p.ready;
        p.return
      end
  | Fiber.Yield -> yield
  | Computation.Cancel_after r -> begin
      let (Per_thread p) = get_per_thread () in
      let fiber = Fiber.Maybe.to_fiber p.fiber in
      if Fiber.is_canceled fiber then p.discontinue
      else
        match
          Select.cancel_after r.computation ~seconds:r.seconds r.exn r.bt
        with
        | () -> p.return
        | exception exn ->
            let bt = Printexc.get_raw_backtrace () in
            Some (fun k -> Effect.Deep.discontinue_with_backtrace k exn bt)
    end
  | Trigger.Await trigger ->
      Some
        (fun k ->
          let (Per_thread p as pt) = get_per_thread () in
          let fiber = Fiber.Maybe.to_fiber p.fiber in
          if Fiber.try_suspend fiber trigger fiber k p.resume then next pt
          else
            let remaining_quota = p.remaining_quota - 1 in
            if 0 < remaining_quota then begin
              p.remaining_quota <- remaining_quota;
              Fiber.resume fiber k
            end
            else begin
              Mpmcq.push p.ready (Resume (fiber, k));
              next pt
            end)
  | _ -> None

let retc () =
  let (Per_thread p as pt) = get_per_thread () in
  p.num_stopped <- p.num_stopped + 1;
  next pt

let context ?quota ?fatal_exn_handler () =
  let quota =
    match quota with
    | None -> Int.max_int
    | Some quota ->
        if quota <= 0 then quota_non_positive ();
        quota
  in
  let exnc =
    match fatal_exn_handler with
    | None -> default_fatal_exn_handler
    | Some handler ->
        fun exn ->
          handler exn;
          raise exn
  in
  Select.check_configured ();
  let mutex = Mutex.create ()
  and condition = Condition.create ()
  and num_waiters = ref 0 |> Multicore_magic.copy_as_padded
  and num_started = Atomic.make 0 |> Multicore_magic.copy_as_padded in
  let rec context =
    {
      num_waiters_non_zero = false;
      num_waiters;
      num_started;
      mutex;
      condition;
      handler;
      quota;
      run = false;
      threads = Array.make 15 Nothing;
      threads_num = 0;
    }
  and handler = { retc; exnc; effc } in
  context

let runner_on_this_thread t =
  Select.check_configured ();
  with_per_thread t next

let run_fiber ?context:t_opt fiber main =
  let t = match t_opt with None -> context () | Some t -> t in
  with_per_thread t @@ fun (Per_thread p as pt) ->
  Mutex.lock t.mutex;
  if t.run then begin
    Mutex.unlock t.mutex;
    already_running ()
  end
  else begin
    t.run <- true;
    Mutex.unlock t.mutex
  end;
  Mpmcq.push p.ready (Spawn (fiber, main));
  next pt

let run ?context ?(forbid = false) main =
  let computation = Computation.create ~mode:`LIFO () in
  let fiber = Fiber.create ~forbid computation in
  let main _ = Computation.capture computation main () in
  run_fiber ?context fiber main;
  Computation.await computation

let rec run_fiber_on n fiber main runner_main context =
  if n <= 1 then run_fiber ~context fiber main
  else
    let runner =
      try Domain.spawn runner_main
      with exn ->
        let bt = Printexc.get_raw_backtrace () in
        run ~context Fun.id;
        Printexc.raise_with_backtrace exn bt
    in
    match run_fiber_on (n - 1) fiber main runner_main context with
    | result ->
        begin
          match Domain.join runner with
          | None -> ()
          | Some (exn, bt) -> Printexc.raise_with_backtrace exn bt
        end;
        result
    | exception exn ->
        let bt = Printexc.get_raw_backtrace () in
        begin
          match Domain.join runner with
          | None -> ()
          | Some (exn, bt) -> Printexc.raise_with_backtrace exn bt
        end;
        Printexc.raise_with_backtrace exn bt

let run_fiber_on ?quota ?fatal_exn_handler ~n_domains fiber main =
  if n_domains < 1 then invalid_arg "n_domains must be positive";
  let context = context ?quota ?fatal_exn_handler () in
  let runner_main =
    if n_domains = 1 then fun () -> None
    else
      let bt_status = Printexc.backtrace_status () in
      fun () ->
        Printexc.record_backtrace bt_status;
        match runner_on_this_thread context with
        | () -> None
        | exception exn ->
            let bt = Printexc.get_raw_backtrace () in
            Some (exn, bt)
  in
  run_fiber_on n_domains fiber main runner_main context

let run_on ?quota ?fatal_exn_handler ~n_domains ?(forbid = false) main =
  let computation = Computation.create ~mode:`LIFO () in
  let fiber = Fiber.create ~forbid computation in
  let main _ = Computation.capture computation main () in
  run_fiber_on ?quota ?fatal_exn_handler ~n_domains fiber main;
  Computation.await computation
OCaml

Innovation. Community. Security.