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
|
(* Operations on core types *)
open Misc
open Typedtree
exception Unify
let current_level = ref 0
let generic_level = (-1)
let begin_def () = incr current_level
and end_def () = decr current_level
let newvar () =
Tvar { tvar_level = !current_level; tvar_link = None }
let rec repr = function
Tvar({tvar_link = Some ty} as v) ->
let r = repr ty in
if r != ty then v.tvar_link <- Some r;
r
| t -> t
let rec generalize ty =
match repr ty with
Tvar v ->
if v.tvar_level > !current_level then v.tvar_level <- generic_level
| Tarrow(t1, t2) ->
generalize t1; generalize t2
| Ttuple tl ->
List.iter generalize tl
| Tconstr(p, []) ->
()
| Tconstr(p, tl) ->
List.iter generalize tl
let rec make_nongen ty =
match repr ty with
Tvar v ->
if v.tvar_level > !current_level then v.tvar_level <- !current_level
| Tarrow(t1, t2) ->
make_nongen t1; make_nongen t2
| Ttuple tl ->
List.iter make_nongen tl
| Tconstr(p, []) ->
()
| Tconstr(p, tl) ->
List.iter make_nongen tl
let inst_subst = ref ([] : (type_expr * type_expr) list)
let rec copy ty =
match repr ty with
Tvar v as t ->
if v.tvar_level = generic_level then begin
try
List.assq t !inst_subst
with Not_found ->
let t' = newvar() in
inst_subst := (t, t') :: !inst_subst;
t'
end else t
| Tarrow(t1, t2) ->
Tarrow(copy t1, copy t2)
| Ttuple tl ->
Ttuple(List.map copy tl)
| Tconstr(p, []) as t ->
t
| Tconstr(p, tl) ->
Tconstr(p, List.map copy tl)
let instance sch =
inst_subst := [];
let ty = copy sch in
inst_subst := [];
ty
let instance_constructor cstr =
inst_subst := [];
let ty_res = copy cstr.cstr_res in
let ty_args = List.map copy cstr.cstr_args in
inst_subst := [];
(ty_args, ty_res)
let instance_label lbl =
inst_subst := [];
let ty_res = copy lbl.lbl_res in
let ty_arg = copy lbl.lbl_arg in
inst_subst := [];
(ty_arg, ty_res)
let substitute params args body =
inst_subst := List.combine(params, args);
let ty = copy body in
inst_subst := [];
ty
exception Cannot_expand
let expand_abbrev env path args =
let decl = Env.find_type path env in
match decl.type_kind with
Type_manifest body -> substitute decl.type_params args body
| _ -> raise Cannot_expand
let rec occur tvar ty =
match repr ty with
Tvar v ->
if v == tvar then raise Unify;
if v.tvar_level > tvar.tvar_level then v.tvar_level <- tvar.tvar_level
| Tarrow(t1, t2) ->
occur tvar t1; occur tvar t2
| Ttuple tl ->
List.iter (occur tvar) tl
| Tconstr(p, []) ->
()
| Tconstr(p, tl) ->
List.iter (occur tvar) tl
let rec unify env t1 t2 =
if t1 == t2 then () else begin
let t1 = repr t1 in
let t2 = repr t2 in
if t1 == t2 then () else begin
match (t1, t2) with
(Tvar v, _) ->
occur v t2; v.tvar_link <- Some t2
| (_, Tvar v) ->
occur v t1; v.tvar_link <- Some t1
| (Tarrow(t1, u1), Tarrow(t2, u2)) ->
unify env t1 t2; unify env u1 u2
| (Ttuple tl1, Ttuple tl2) ->
unify_list env tl1 tl2
| (Tconstr(p1, tl1), Tconstr(p2, tl2)) ->
if Path.same p1 p2 then
unify_list env tl1 tl2
else begin
try
unify env (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
try
unify env t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
raise Unify
end
| (Tconstr(p1, tl1), _) ->
begin try
unify env (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
raise Unify
end
| (_, Tconstr(p2, tl2)) ->
begin try
unify env t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
raise Unify
end
| (_, _) ->
raise Unify
end
end
and unify_list env tl1 tl2 =
match (tl1, tl2) with
([], []) -> ()
| (t1::r1, t2::r2) -> unify env t1 t2; unify_list env r1 r2
| (_, _) -> raise Unify
let rec filter_arrow env t =
match repr t with
Tvar v ->
let t1 = Tvar { tvar_level = v.tvar_level; tvar_link = None }
and t2 = Tvar { tvar_level = v.tvar_level; tvar_link = None } in
v.tvar_link <- Some(Tarrow(t1, t2));
(t1, t2)
| Tarrow(t1, t2) ->
(t1, t2)
| Tconstr(p, tl) ->
begin try
filter_arrow env (expand_abbrev env p tl)
with Cannot_expand ->
raise Unify
end
| _ ->
raise Unify
let rec filter env t1 t2 =
if t1 == t2 then () else begin
let t1 = repr t1 in
let t2 = repr t2 in
if t1 == t2 then () else begin
match (t1, t2) with
(Tvar v, _) ->
if v.tvar_level = generic_level then raise Unify;
occur v t2;
v.tvar_link <- Some t2
| (Tarrow(t1, u1), Tarrow(t2, u2)) ->
filter env t1 t2; filter env u1 u2
| (Ttuple tl1, Ttuple tl2) ->
filter_list env tl1 tl2
| (Tconstr(p1, tl1), Tconstr(p2, tl2)) ->
if Path.same p1 p2 then
filter_list env tl1 tl2
else begin
try
filter env (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
try
filter env t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
raise Unify
end
| (Tconstr(p1, tl1), _) ->
begin try
filter env (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
raise Unify
end
| (_, Tconstr(p2, tl2)) ->
begin try
filter env t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
raise Unify
end
| (_, _) ->
raise Unify
end
end
and filter_list env tl1 tl2 =
match (tl1, tl2) with
([], []) -> ()
| (t1::r1, t2::r2) -> filter env t1 t2; filter_list env r1 r2
| (_, _) -> raise Unify
let moregeneral env sch1 sch2 =
try
filter env (instance sch1) sch2; true
with Unify ->
false
let equal env params1 ty1 params2 ty2 =
let subst = List.combine (params1, params2) in
let rec eqtype t1 t2 =
let t1 = repr t1 in
let t2 = repr t2 in
match (t1, t2) with
(Tvar _, Tvar _) ->
begin try
List.assq t1 subst == t2
with Not_found ->
fatal_error "Ctype.equal"
end
| (Tarrow(t1, u1), Tarrow(t2, u2)) ->
eqtype t1 t2 & eqtype u1 u2
| (Ttuple tl1, Ttuple tl2) ->
eqtype_list tl1 tl2
| (Tconstr(p1, tl1), Tconstr(p2, tl2)) ->
if Path.same p1 p2 then
eqtype_list tl1 tl2
else begin
try
eqtype (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
try
eqtype t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
false
end
| (Tconstr(p1, tl1), _) ->
begin try
eqtype (expand_abbrev env p1 tl1) t2
with Cannot_expand ->
false
end
| (_, Tconstr(p2, tl2)) ->
begin try
eqtype t1 (expand_abbrev env p2 tl2)
with Cannot_expand ->
false
end
| (_, _) ->
false
and eqtype_list tl1 tl2 =
match (tl1, tl2) with
([], []) -> true
| (t1::r1, t2::r2) -> eqtype t1 t2 & eqtype_list r1 r2
| (_, _) -> false
in
eqtype ty1 ty2
let rec closed_schema ty =
match repr ty with
Tvar v -> v.tvar_level = generic_level
| Tarrow(t1, t2) -> closed_schema t1 & closed_schema t2
| Ttuple tl -> List.for_all closed_schema tl
| Tconstr(p, tl) -> List.for_all closed_schema tl
let rec nondep_type env id ty =
match repr ty with
Tvar v as tvar -> tvar
| Tarrow(t1, t2) ->
Tarrow(nondep_type env id t1, nondep_type env id t2)
| Ttuple tl ->
Ttuple(List.map (nondep_type env id) tl)
| Tconstr(p, tl) ->
if Path.isfree id p then begin
let ty' =
try
expand_abbrev env p tl
with Cannot_expand ->
raise Not_found in
nondep_type env id ty'
end else
Tconstr(p, List.map (nondep_type env id) tl)
let rec free_type_ident env id ty =
match repr ty with
Tvar _ -> false
| Tarrow(t1, t2) ->
free_type_ident env id t1 or free_type_ident env id t2
| Ttuple tl ->
List.exists (free_type_ident env id) tl
| Tconstr(p, tl) ->
if Path.isfree id p then true else begin
try
free_type_ident env id (expand_abbrev env p tl)
with Cannot_expand ->
List.exists (free_type_ident env id) tl
end
let is_generic ty =
match repr ty with
Tvar v -> v.tvar_level = generic_level
| _ -> fatal_error "Ctype.is_generic"
let rec arity ty =
match repr ty with
Tarrow(t1, t2) -> 1 + arity t2
| _ -> 0
let none = Ttuple [] (* Clearly ill-formed type *)
|