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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
open Import
open Ast
module S = Set.Make (String)
module M = Map.Make (String)
type original_types = (string, string * int) Hashtbl.t
let init_table () =
let seqnum = ref 0 in
let tbl = Hashtbl.create 20 in
List.iter (
fun (k, n, opt_td) ->
incr seqnum;
Hashtbl.add tbl k (!seqnum, n, opt_td, None)
) Predef.list;
seqnum, tbl
let rec mapvar_expr
(f : string -> string) (x : Ast.type_expr) : Ast.type_expr =
match x with
Sum (loc, vl, a) ->
Sum (loc, List.map (mapvar_variant f) vl, a)
| Record (loc, fl, a) ->
Record (loc, List.map (mapvar_field f) fl, a)
| Tuple (loc, tl, a) ->
Tuple (loc,
List.map (fun (loc, x, a) -> (loc, mapvar_expr f x, a)) tl,
a)
| List (loc, t, a) ->
List (loc, mapvar_expr f t, a)
| Name (loc, (loc2, "list", [t]), a) ->
Name (loc, (loc2, "list", [mapvar_expr f t]), a)
| Option (loc, t, a) ->
Option (loc, mapvar_expr f t, a)
| Name (loc, (loc2, "option", [t]), a) ->
Name (loc, (loc2, "option", [mapvar_expr f t]), a)
| Nullable (loc, t, a) ->
Nullable (loc, mapvar_expr f t, a)
| Name (loc, (loc2, "nullable", [t]), a) ->
Name (loc, (loc2, "nullable", [mapvar_expr f t]), a)
| Shared (loc, t, a) ->
Shared (loc, mapvar_expr f t, a)
| Name (loc, (loc2, "shared", [t]), a) ->
Name (loc, (loc2, "shared", [mapvar_expr f t]), a)
| Wrap (loc, t, a) ->
Wrap (loc, mapvar_expr f t, a)
| Name (loc, (loc2, "wrap", [t]), a) ->
Name (loc, (loc2, "wrap", [mapvar_expr f t]), a)
| Tvar (loc, s) -> Tvar (loc, f s)
| Name (loc, (loc2, k, args), a) ->
Name (loc, (loc2, k, List.map (mapvar_expr f) args), a)
and mapvar_field f = function
`Field (loc, k, t) -> `Field (loc, k, mapvar_expr f t)
| `Inherit (loc, t) -> `Inherit (loc, mapvar_expr f t)
and mapvar_variant f = function
| Variant (loc, k, opt_t) ->
Variant (loc, k, (Option.map (mapvar_expr f) opt_t))
| Inherit (loc, t) -> Inherit (loc, mapvar_expr f t)
let var_of_int i =
let letter = i mod 26 in
let number = i / 26 in
let prefix = String.make 1 (Char.chr (letter + Char.code 'a')) in
if number = 0 then prefix
else prefix ^ string_of_int number
let vars_of_int n = List.init n var_of_int
let is_special s = String.length s > 0 && s.[0] = '@'
let make_type_name loc orig_name args an =
let tbl = Hashtbl.create 10 in
let n = ref 0 in
let mapping = ref [] in
let assign_name s =
try Hashtbl.find tbl s
with Not_found ->
let name = var_of_int !n in
mapping := (s, name) :: !mapping;
incr n;
name
in
let normalized_args = List.map (mapvar_expr assign_name) args in
let new_name =
"@(" ^ Print.string_of_type_name orig_name normalized_args an ^ ")" in
let mapping = List.rev !mapping in
let new_args =
List.map (fun (old_s, _) -> Tvar (loc, old_s)) mapping in
let new_env =
List.map (fun (old_s, new_s) -> old_s, Tvar (loc, new_s)) mapping
in
new_name, new_args, new_env
let is_abstract (x : type_expr) =
match x with
Name (_, (_, "abstract", _), _) -> true
| _ -> false
let expr_of_lvalue loc name param annot =
Name (loc, (loc, name, List.map (fun s -> Tvar (loc, s)) param), annot)
let is_cyclic lname t =
match t with
Name (_, (_, rname, _), _) -> lname = rname
| _ -> false
let is_tvar = function
Tvar _ -> true
| _ -> false
let add_annot (x : type_expr) a : type_expr =
Ast.map_annot (fun a0 -> Annot.merge (a @ a0)) x
let expand ?(keep_poly = false) (l : type_def list)
: type_def list * original_types =
let seqnum, tbl = init_table () in
let original_types = Hashtbl.create 16 in
let rec subst env (t : type_expr) : type_expr =
match t with
Sum (loc, vl, a) ->
Sum (loc, List.map (subst_variant env) vl, a)
| Record (loc, fl, a) ->
Record (loc, List.map (subst_field env) fl, a)
| Tuple (loc, tl, a) ->
Tuple (loc,
List.map (fun (loc, x, a) -> (loc, subst env x, a)) tl, a)
| List (loc as loc2, t, a)
| Name (loc, (loc2, "list", [t]), a) ->
let t' = subst env t in
subst_type_name loc loc2 "list" [t'] a
| Option (loc as loc2, t, a)
| Name (loc, (loc2, "option", [t]), a) ->
let t' = subst env t in
subst_type_name loc loc2 "option" [t'] a
| Nullable (loc as loc2, t, a)
| Name (loc, (loc2, "nullable", [t]), a) ->
let t' = subst env t in
subst_type_name loc loc2 "nullable" [t'] a
| Shared (loc as loc2, t, a)
| Name (loc, (loc2, "shared", [t]), a) ->
let t' = subst env t in
subst_type_name loc loc2 "shared" [t'] a
| Wrap (loc as loc2, t, a)
| Name (loc, (loc2, "wrap", [t]), a) ->
let t' = subst env t in
subst_type_name loc loc2 "wrap" [t'] a
| Tvar (_, s) as x -> Option.value (List.assoc s env) ~default:x
| Name (loc, (loc2, name, args), a) ->
let args' = List.map (subst env) args in
if List.for_all is_tvar args' then
Name (loc, (loc2, name, args'), a)
else
subst_type_name loc loc2 name args' a
and subst_type_name loc loc2 name args an =
let new_name, new_args, new_env = make_type_name loc2 name args an in
let n_param = List.length new_env in
if not (Hashtbl.mem tbl new_name) then
create_type_def loc name args new_env new_name n_param an;
Name (loc, (loc2, new_name, new_args), [])
and create_type_def loc orig_name orig_args env name n_param an0 =
incr seqnum;
let i = !seqnum in
Hashtbl.add tbl name (i, n_param, None, None);
Hashtbl.add original_types name (orig_name, List.length orig_args);
let (_, _, orig_opt_td, _) =
try Hashtbl.find tbl orig_name
with Not_found ->
assert false
in
let ((_, _, _) as td') =
match orig_opt_td with
None ->
assert false
| Some (_, (k, pl, def_an), t) ->
assert (k = orig_name);
let new_params = vars_of_int n_param in
let t = add_annot t an0 in
let t = set_type_expr_loc loc t in
let args = List.map (subst env) orig_args in
let env = List.map2 (fun var value -> (var, value)) pl args in
let t' =
if is_abstract t then
let t =
expr_of_lvalue loc orig_name pl
(Ast.annot_of_type_expr t)
in
subst_only_args env t
else
let t' = subst env t in
if is_cyclic name t' then
subst_only_args env t
else
t'
in
(loc, (name, new_params, def_an), t')
in
Hashtbl.replace tbl name (i, n_param, None, Some td')
and subst_field env = function
`Field (loc, k, t) -> `Field (loc, k, subst env t)
| `Inherit (loc, t) -> `Inherit (loc, subst env t)
and subst_variant env = function
Variant (loc, k, opt_t) as x ->
(match opt_t with
None -> x
| Some t -> Variant (loc, k, Some (subst env t))
)
| Inherit (loc, t) -> Inherit (loc, subst env t)
and subst_only_args env = function
List (loc, t, a)
| Name (loc, (_, "list", [t]), a) ->
List (loc, subst env t, a)
| Option (loc, t, a)
| Name (loc, (_, "option", [t]), a) ->
Option (loc, subst env t, a)
| Nullable (loc, t, a)
| Name (loc, (_, "nullable", [t]), a) ->
Nullable (loc, subst env t, a)
| Shared (loc, t, a)
| Name (loc, (_, "shared", [t]), a) ->
Shared (loc, subst env t, a)
| Wrap (loc, t, a)
| Name (loc, (_, "wrap", [t]), a) ->
Wrap (loc, subst env t, a)
| Name (loc, (loc2, name, args), an) ->
Name (loc, (loc2, name, List.map (subst env) args), an)
| _ -> assert false
in
List.iter (
fun ((_, (k, pl, _), _) as td) ->
incr seqnum;
let i = !seqnum in
let n = List.length pl in
Hashtbl.add tbl k (i, n, Some td, None)
) l;
List.iter (
fun ((loc, (k, pl, a), t) as td) ->
if pl = [] || keep_poly then (
let (i, n, _, _) =
try Hashtbl.find tbl k
with Not_found -> assert false
in
let t' = subst [] t in
let td' = (loc, (k, pl, a), t') in
Hashtbl.replace tbl k (i, n, Some td, Some td')
)
) l;
let l =
Hashtbl.fold (
fun _ (i, n, _, opt_td') l ->
match opt_td' with
None -> l
| Some td' ->
if n = 0 || keep_poly then (i, td') :: l
else l
) tbl []
in
let l = List.sort (fun (i, _) (j, _) -> compare i j) l in
(List.map snd l, original_types)
let replace_type_names (subst : string -> string) (t : type_expr) : type_expr =
let rec replace (t : type_expr) : type_expr =
match t with
Sum (loc, vl, a) -> Sum (loc, List.map replace_variant vl, a)
| Record (loc, fl, a) -> Record (loc, List.map replace_field fl, a)
| Tuple (loc, tl, a) ->
Tuple (loc, List.map (fun (loc, x, a) -> loc, replace x, a) tl, a)
| List (loc, t, a) -> List (loc, replace t, a)
| Option (loc, t, a) -> Option (loc, replace t, a)
| Nullable (loc, t, a) -> Nullable (loc, replace t, a)
| Shared (loc, t, a) -> Shared (loc, replace t, a)
| Wrap (loc, t, a) -> Wrap (loc, replace t, a)
| Tvar (_, _) as t -> t
| Name (loc, (loc2, k, l), a) ->
Name (loc, (loc2, subst k, List.map replace l), a)
and replace_field = function
`Field (loc, k, t) -> `Field (loc, k, replace t)
| `Inherit (loc, t) -> `Inherit (loc, replace t)
and replace_variant = function
Variant (loc, k, opt_t) as x ->
(match opt_t with
None -> x
| Some t -> Variant (loc, k, Some (replace t))
)
| Inherit (loc, t) -> Inherit (loc, replace t)
in
replace t
let standardize_type_names
~prefix ~original_types (l : type_def list) : type_def list =
let new_id =
let n = ref 0 in
let rec f tbl =
incr n;
let id = prefix ^ string_of_int !n in
if Hashtbl.mem tbl id then f tbl
else id
in
f
in
let tbl = Hashtbl.create 50 in
List.iter (fun (k, _, _) -> Hashtbl.add tbl k k) Predef.list;
List.iter (
fun (_, (k, _, _), _) ->
if not (is_special k) then (
Hashtbl.add tbl k k
)
) l;
let replace_name k =
try Hashtbl.find tbl k
with Not_found ->
assert (is_special k);
let k' = new_id tbl in
Hashtbl.add tbl k k';
begin try
let orig_info = Hashtbl.find original_types k in
Hashtbl.remove original_types k;
Hashtbl.add original_types k' orig_info
with Not_found ->
assert false
end;
k'
in
let l =
List.map (
fun (loc, (k, pl, a), t) ->
let k' = replace_name k in
(loc, (k', pl, a), t)
) l
in
let subst s =
try Hashtbl.find tbl s
with Not_found ->
s
in
List.map (fun (loc, x, t) -> (loc, x, replace_type_names subst t)) l
let expand_module_body ?(prefix = "_") ?keep_poly ?(debug = false) l =
let td_list = List.map (function (Type td) -> td) l in
let (td_list, original_types) = expand ?keep_poly td_list in
let td_list =
if debug then td_list
else standardize_type_names ~prefix ~original_types td_list
in
(List.map (fun td -> (Type td)) td_list, original_types)