-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmode.mli
510 lines (309 loc) · 10.2 KB
/
mode.mli
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
type changes
val undo_changes : changes -> unit
val change_log : (changes -> unit) ref
module Locality : sig
module Const : sig
type t =
| Global
| Local
val legacy : t
val min : t
val max : t
val le : t -> t -> bool
val join : t -> t -> t
val meet : t -> t -> t
val print : Format.formatter -> t -> unit
end
type t
val legacy : t
val of_const : Const.t -> t
val global : t
val local : t
val submode : t -> t -> (unit, unit) result
val submode_exn : t -> t -> unit
val equate : t -> t -> (unit, unit) result
val join : t list -> t
val constrain_upper : t -> Const.t
val constrain_lower : t -> Const.t
val newvar : unit -> t
val newvar_below : t -> t * bool
val newvar_above : t -> t * bool
val check_const : t -> Const.t option
val print' : ?verbose:bool -> ?label:string -> Format.formatter -> t -> unit
val print : Format.formatter -> t -> unit
end
module Regionality : sig
module Const : sig
type t =
| Global
| Regional
| Local
end
type t
type error =
[ `Regionality
| `Locality ]
val global : t
val regional : t
val local : t
val submode : t -> t -> (unit, error) result
val of_locality : Locality.t -> t
val regional_to_local : t -> t
val global_to_regional : t -> t
val local_to_regional : t -> t
val regional_to_global : t -> t
val regional_to_global_locality : t -> Locality.t
val print : Format.formatter -> t -> unit
end
module Uniqueness : sig
module Const : sig
type t =
| Unique
| Shared
val legacy : t
val min : t
val max : t
val le : t -> t -> bool
val join : t -> t -> t
val meet : t -> t -> t
val print : Format.formatter -> t -> unit
end
type t
val legacy : t
val of_const : Const.t -> t
val unique : t
val shared : t
val submode : t -> t -> (unit, unit) result
val submode_exn : t -> t -> unit
val equate : t -> t -> (unit, unit) result
val join : t list -> t
val meet : t list -> t
val constrain_upper : t -> Const.t
val constrain_lower : t -> Const.t
val newvar : unit -> t
val newvar_below : t -> t * bool
val newvar_above : t -> t * bool
val check_const : t -> Const.t option
val print' : ?verbose:bool -> ?label:string -> Format.formatter -> t -> unit
val print : Format.formatter -> t -> unit
end
module Linearity : sig
module Const : sig
type t =
| Many
| Once
val legacy : t
val min : t
val max : t
val le : t -> t -> bool
val join : t -> t -> t
val meet : t -> t -> t
val print : Format.formatter -> t -> unit
val to_dual : t -> Uniqueness.Const.t
val of_dual : Uniqueness.Const.t -> t
end
type t
val legacy : t
val of_const : Const.t -> t
val to_dual : t -> Uniqueness.t
val of_dual : Uniqueness.t -> t
val once : t
val many : t
val submode : t -> t -> (unit, unit) result
val submode_exn : t -> t -> unit
val equate : t -> t -> (unit, unit) result
val join : t list -> t
val constrain_upper : t -> Const.t
val constrain_lower : t -> Const.t
val newvar : unit -> t
val newvar_below : t -> t * bool
val newvar_above : t -> t * bool
val check_const : t -> Const.t option
val print' : ?verbose:bool -> ?label:string -> Format.formatter -> t -> unit
val print : Format.formatter -> t -> unit
end
type ('a, 'b, 'c) modes =
{ locality : 'a;
uniqueness : 'b;
linearity : 'c
}
module Alloc : sig
module Const : sig
type t = (Locality.Const.t, Uniqueness.Const.t, Linearity.Const.t) modes
val legacy : t
val join : t -> t -> t
val close_over : t -> t
val partial_apply : t -> t
val min_with_uniqueness : Uniqueness.Const.t -> t
end
type t
val legacy : t
val local : t
val unique : t
val local_unique : t
val prod : Locality.t -> Uniqueness.t -> Linearity.t -> t
val of_const : Const.t -> t
val is_const : t -> bool
val min_mode : t
val max_mode : t
(** Projections to Locality, Uniqueness and Linearity *)
val locality : t -> Locality.t
val uniqueness : t -> Uniqueness.t
val linearity : t -> Linearity.t
type error =
[ `Locality
| `Uniqueness
| `Linearity ]
val submode : t -> t -> (unit, error) result
val submode_exn : t -> t -> unit
val equate : t -> t -> (unit, error) result
val join : t list -> t
(* Force a mode variable to its upper bound *)
val constrain_upper : t -> Const.t
(* Force a mode variable to its lower bound *)
val constrain_lower : t -> Const.t
(* Force a mode variable to legacys *)
val constrain_legacy : t -> Const.t
val newvar : unit -> t
val newvar_below : t -> t * bool
(* Same as [newvar_below] but only on the comonadic axes *)
val newvar_below_comonadic : t -> t * bool
val newvar_above : t -> t * bool
val with_locality : Locality.t -> t -> t
val with_uniqueness : Uniqueness.t -> t -> t
val with_linearity : Linearity.t -> t -> t
val of_uniqueness : Uniqueness.t -> t
val of_locality : Locality.t -> t
val of_linearity : Linearity.t -> t
val check_const :
t ->
( Locality.Const.t option,
Uniqueness.Const.t option,
Linearity.Const.t option )
modes
val print' : ?verbose:bool -> Format.formatter -> t -> unit
val print : Format.formatter -> t -> unit
val close_over : t -> t
val partial_apply : t -> t
end
module Value : sig
module Const : sig
type t = (Regionality.Const.t, Uniqueness.Const.t, Linearity.Const.t) modes
end
type t
val legacy : t
val regional : t
val local : t
val unique : t
val regional_unique : t
val local_unique : t
val of_const : Const.t -> t
val max_mode : t
val min_mode : t
(** Injections from Locality and Uniqueness into [Value_mode.t] *)
(* The 'min_with_*' functions extend the min_mode,
the 'max_with_' functions extend the max_mode,
the 'with_*' functions extend given mode.
*)
val min_with_uniqueness : Uniqueness.t -> t
val max_with_uniqueness : Uniqueness.t -> t
val min_with_locality : Regionality.t -> t
val max_with_locality : Regionality.t -> t
val min_with_linearity : Linearity.t -> t
val with_locality : Regionality.t -> t -> t
val with_uniqueness : Uniqueness.t -> t -> t
val with_linearity : Linearity.t -> t -> t
(** Projections to Locality, Uniqueness and Linearity *)
val locality : t -> Regionality.t
val uniqueness : t -> Uniqueness.t
val linearity : t -> Linearity.t
(** Injections from [Alloc.t] into [Value_mode.t] *)
(** [of_alloc] maps [Global] to [Global] and [Local] to [Local] *)
val of_alloc : Alloc.t -> t
(** Kernel operators *)
(** The kernel operator [local_to_regional] maps [Local] to
[Regional] and leaves the others unchanged. *)
val local_to_regional : t -> t
(** The kernel operator [regional_to_global] maps [Regional]
to [Global] and leaves the others unchanged. *)
val regional_to_global : t -> t
val to_global : t -> t
val to_unique : t -> t
val to_many : t -> t
(** Closure operators *)
(** The closure operator [regional_to_local] maps [Regional]
to [Local] and leaves the others unchanged. *)
val regional_to_local : t -> t
(** The closure operator [global_to_regional] maps [Global] to
[Regional] and leaves the others unchanged. *)
val global_to_regional : t -> t
val to_local : t -> t
val to_shared : t -> t
val to_once : t -> t
(** Note that the kernal and closure operators are in the following
adjunction relationship:
{v
local_to_regional
-| regional_to_local
-| regional_to_global
-| global_to_regional
v}
Equivalently,
{v
local_to_regional a <= b iff a <= regional_to_local b
regional_to_local a <= b iff a <= regional_to_global b
regional_to_global a <= b iff a <= global_to_regional b
v}
As well as:
{v
to_global -| to_local
to_unique -| to_shared
v}
*)
(** Versions of the operators that return [Alloc.t] *)
(** Maps [Regional] to [Global] and leaves the others unchanged. *)
val regional_to_global_alloc : t -> Alloc.t
(** Maps [Regional] to [Local] and leaves the others unchanged. *)
val regional_to_local_alloc : t -> Alloc.t
(** Maps [Regional] to [Global] *)
val regional_to_global_locality : t -> Locality.t
(** Maps [Regional] to [Local] *)
val regional_to_local_locality : t -> Locality.t
type error =
[ `Regionality
| `Locality
| `Uniqueness
| `Linearity ]
val submode : t -> t -> (unit, error) result
val submode_exn : t -> t -> unit
val equate : t -> t -> (unit, error) result
val submode_meet : t -> t list -> (unit, error) result
val join : t list -> t
val constrain_upper : t -> Const.t
val constrain_lower : t -> Const.t
val newvar : unit -> t
val newvar_below : t -> t * bool
val newvar_above : t -> t * bool
val check_const :
t ->
( Regionality.Const.t option,
Uniqueness.Const.t option,
Linearity.Const.t option )
modes
val print' : ?verbose:bool -> Format.formatter -> t -> unit
val print : Format.formatter -> t -> unit
end