forked from ocaml/ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmtype.ml
422 lines (379 loc) · 13.9 KB
/
mtype.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
(**************************************************************************)
(* *)
(* 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. *)
(* *)
(**************************************************************************)
(* Operations on module types *)
open Asttypes
open Path
open Types
let rec scrape env mty =
match mty with
Mty_ident p ->
begin try
scrape env (Env.find_modtype_expansion p env)
with Not_found ->
mty
end
| _ -> mty
let freshen mty =
Subst.modtype Subst.identity mty
let rec strengthen ~aliasable env mty p =
match scrape env mty with
Mty_signature sg ->
Mty_signature(strengthen_sig ~aliasable env sg p 0)
| Mty_functor(param, arg, res)
when !Clflags.applicative_functors && Ident.name param <> "*" ->
Mty_functor(param, arg,
strengthen ~aliasable:false env res (Papply(p, Pident param)))
| mty ->
mty
and strengthen_sig ~aliasable env sg p pos =
match sg with
[] -> []
| (Sig_value(_, desc) as sigelt) :: rem ->
let nextpos =
match desc.val_kind with
| Val_prim _ -> pos
| _ -> pos + 1
in
sigelt :: strengthen_sig ~aliasable env rem p nextpos
| Sig_type(id, {type_kind=Type_abstract}, _) ::
(Sig_type(id', {type_private=Private}, _) :: _ as rem)
when Ident.name id = Ident.name id' ^ "#row" ->
strengthen_sig ~aliasable env rem p pos
| Sig_type(id, decl, rs) :: rem ->
let newdecl =
match decl.type_manifest, decl.type_private, decl.type_kind with
Some _, Public, _ -> decl
| Some _, Private, (Type_record _ | Type_variant _) -> decl
| _ ->
let manif =
Some(Btype.newgenty(Tconstr(Pdot(p, Ident.name id, nopos),
decl.type_params, ref Mnil))) in
if decl.type_kind = Type_abstract then
{ decl with type_private = Public; type_manifest = manif }
else
{ decl with type_manifest = manif }
in
Sig_type(id, newdecl, rs) :: strengthen_sig ~aliasable env rem p pos
| (Sig_typext _ as sigelt) :: rem ->
sigelt :: strengthen_sig ~aliasable env rem p (pos+1)
| Sig_module(id, md, rs) :: rem ->
let str =
strengthen_decl ~aliasable env md (Pdot(p, Ident.name id, pos))
in
Sig_module(id, str, rs)
:: strengthen_sig ~aliasable
(Env.add_module_declaration ~check:false id md env) rem p (pos+1)
(* Need to add the module in case it defines manifest module types *)
| Sig_modtype(id, decl) :: rem ->
let newdecl =
match decl.mtd_type with
None ->
{decl with mtd_type = Some(Mty_ident(Pdot(p,Ident.name id,nopos)))}
| Some _ ->
decl
in
Sig_modtype(id, newdecl) ::
strengthen_sig ~aliasable (Env.add_modtype id decl env) rem p pos
(* Need to add the module type in case it is manifest *)
| (Sig_class _ as sigelt) :: rem ->
sigelt :: strengthen_sig ~aliasable env rem p (pos+1)
| (Sig_class_type _ as sigelt) :: rem ->
sigelt :: strengthen_sig ~aliasable env rem p pos
and strengthen_decl ~aliasable env md p =
match md.md_type with
| Mty_alias _ -> md
| _ when aliasable -> {md with md_type = Mty_alias(Mta_present, p)}
| mty -> {md with md_type = strengthen ~aliasable env mty p}
let () = Env.strengthen := strengthen
(* In nondep_supertype, env is only used for the type it assigns to id.
Hence there is no need to keep env up-to-date by adding the bindings
traversed. *)
type variance = Co | Contra | Strict
let nondep_supertype env mid mty =
let rec nondep_mty env va mty =
match mty with
Mty_ident p ->
if Path.isfree mid p then
nondep_mty env va (Env.find_modtype_expansion p env)
else mty
| Mty_alias(_, p) ->
if Path.isfree mid p then
nondep_mty env va (Env.find_module p env).md_type
else mty
| Mty_signature sg ->
Mty_signature(nondep_sig env va sg)
| Mty_functor(param, arg, res) ->
let var_inv =
match va with Co -> Contra | Contra -> Co | Strict -> Strict in
Mty_functor(param, Misc.may_map (nondep_mty env var_inv) arg,
nondep_mty
(Env.add_module ~arg:true param
(Btype.default_mty arg) env) va res)
and nondep_sig env va = function
[] -> []
| item :: rem ->
let rem' = nondep_sig env va rem in
match item with
Sig_value(id, d) ->
Sig_value(id,
{d with val_type = Ctype.nondep_type env mid d.val_type})
:: rem'
| Sig_type(id, d, rs) ->
Sig_type(id, Ctype.nondep_type_decl env mid id (va = Co) d, rs)
:: rem'
| Sig_typext(id, ext, es) ->
Sig_typext(id, Ctype.nondep_extension_constructor env mid ext, es)
:: rem'
| Sig_module(id, md, rs) ->
Sig_module(id, {md with md_type=nondep_mty env va md.md_type}, rs)
:: rem'
| Sig_modtype(id, d) ->
begin try
Sig_modtype(id, nondep_modtype_decl env d) :: rem'
with Not_found ->
match va with
Co -> Sig_modtype(id, {mtd_type=None; mtd_loc=Location.none;
mtd_attributes=[]}) :: rem'
| _ -> raise Not_found
end
| Sig_class(id, d, rs) ->
Sig_class(id, Ctype.nondep_class_declaration env mid d, rs)
:: rem'
| Sig_class_type(id, d, rs) ->
Sig_class_type(id, Ctype.nondep_cltype_declaration env mid d, rs)
:: rem'
and nondep_modtype_decl env mtd =
{mtd with mtd_type = Misc.may_map (nondep_mty env Strict) mtd.mtd_type}
in
nondep_mty env Co mty
let enrich_typedecl env p decl =
match decl.type_manifest with
Some _ -> decl
| None ->
try
let orig_decl = Env.find_type p env in
if orig_decl.type_arity <> decl.type_arity
then decl
else {decl with type_manifest =
Some(Btype.newgenty(Tconstr(p, decl.type_params, ref Mnil)))}
with Not_found ->
decl
let rec enrich_modtype env p mty =
match mty with
Mty_signature sg ->
Mty_signature(List.map (enrich_item env p) sg)
| _ ->
mty
and enrich_item env p = function
Sig_type(id, decl, rs) ->
Sig_type(id,
enrich_typedecl env (Pdot(p, Ident.name id, nopos)) decl, rs)
| Sig_module(id, md, rs) ->
Sig_module(id,
{md with
md_type = enrich_modtype env
(Pdot(p, Ident.name id, nopos)) md.md_type},
rs)
| item -> item
let rec type_paths env p mty =
match scrape env mty with
Mty_ident _ -> []
| Mty_alias _ -> []
| Mty_signature sg -> type_paths_sig env p 0 sg
| Mty_functor _ -> []
and type_paths_sig env p pos sg =
match sg with
[] -> []
| Sig_value(_id, decl) :: rem ->
let pos' = match decl.val_kind with Val_prim _ -> pos | _ -> pos + 1 in
type_paths_sig env p pos' rem
| Sig_type(id, _decl, _) :: rem ->
Pdot(p, Ident.name id, nopos) :: type_paths_sig env p pos rem
| Sig_module(id, md, _) :: rem ->
type_paths env (Pdot(p, Ident.name id, pos)) md.md_type @
type_paths_sig (Env.add_module_declaration ~check:false id md env)
p (pos+1) rem
| Sig_modtype(id, decl) :: rem ->
type_paths_sig (Env.add_modtype id decl env) p pos rem
| (Sig_typext _ | Sig_class _) :: rem ->
type_paths_sig env p (pos+1) rem
| (Sig_class_type _) :: rem ->
type_paths_sig env p pos rem
let rec no_code_needed env mty =
match scrape env mty with
Mty_ident _ -> false
| Mty_signature sg -> no_code_needed_sig env sg
| Mty_functor(_, _, _) -> false
| Mty_alias(Mta_absent, _) -> true
| Mty_alias(Mta_present, _) -> false
and no_code_needed_sig env sg =
match sg with
[] -> true
| Sig_value(_id, decl) :: rem ->
begin match decl.val_kind with
| Val_prim _ -> no_code_needed_sig env rem
| _ -> false
end
| Sig_module(id, md, _) :: rem ->
no_code_needed env md.md_type &&
no_code_needed_sig
(Env.add_module_declaration ~check:false id md env) rem
| (Sig_type _ | Sig_modtype _ | Sig_class_type _) :: rem ->
no_code_needed_sig env rem
| (Sig_typext _ | Sig_class _) :: _ ->
false
(* Check whether a module type may return types *)
let rec contains_type env = function
Mty_ident path ->
begin try match (Env.find_modtype path env).mtd_type with
| None -> raise Exit (* PR#6427 *)
| Some mty -> contains_type env mty
with Not_found -> raise Exit
end
| Mty_signature sg ->
contains_type_sig env sg
| Mty_functor (_, _, body) ->
contains_type env body
| Mty_alias _ ->
()
and contains_type_sig env = List.iter (contains_type_item env)
and contains_type_item env = function
Sig_type (_,({type_manifest = None} |
{type_kind = Type_abstract; type_private = Private}),_)
| Sig_modtype _
| Sig_typext (_, {ext_args = Cstr_record _}, _) ->
(* We consider that extension constructors with an inlined
record create a type (the inlined record), even though
it would be technically safe to ignore that considering
the current constraints which guarantee that this type
is kept local to expressions. *)
raise Exit
| Sig_module (_, {md_type = mty}, _) ->
contains_type env mty
| Sig_value _
| Sig_type _
| Sig_typext _
| Sig_class _
| Sig_class_type _ ->
()
let contains_type env mty =
try contains_type env mty; false with Exit -> true
(* Remove module aliases from a signature *)
module PathSet = Set.Make (Path)
module PathMap = Map.Make (Path)
module IdentSet = Set.Make (Ident)
let rec get_prefixes = function
Pident _ -> PathSet.empty
| Pdot (p, _, _)
| Papply (p, _) -> PathSet.add p (get_prefixes p)
let rec get_arg_paths = function
Pident _ -> PathSet.empty
| Pdot (p, _, _) -> get_arg_paths p
| Papply (p1, p2) ->
PathSet.add p2
(PathSet.union (get_prefixes p2)
(PathSet.union (get_arg_paths p1) (get_arg_paths p2)))
let rec rollback_path subst p =
try Pident (PathMap.find p subst)
with Not_found ->
match p with
Pident _ | Papply _ -> p
| Pdot (p1, s, n) ->
let p1' = rollback_path subst p1 in
if Path.same p1 p1' then p else rollback_path subst (Pdot (p1', s, n))
let rec collect_ids subst bindings p =
begin match rollback_path subst p with
Pident id ->
let ids =
try collect_ids subst bindings (Ident.find_same id bindings)
with Not_found -> IdentSet.empty
in
IdentSet.add id ids
| _ -> IdentSet.empty
end
let collect_arg_paths mty =
let open Btype in
let paths = ref PathSet.empty
and subst = ref PathMap.empty
and bindings = ref Ident.empty in
(* let rt = Ident.create "Root" in
and prefix = ref (Path.Pident rt) in *)
let it_path p = paths := PathSet.union (get_arg_paths p) !paths
and it_signature_item it si =
type_iterators.it_signature_item it si;
match si with
Sig_module (id, {md_type=Mty_alias(_, p)}, _) ->
bindings := Ident.add id p !bindings
| Sig_module (id, {md_type=Mty_signature sg}, _) ->
List.iter
(function Sig_module (id', _, _) ->
subst :=
PathMap.add (Pdot (Pident id, Ident.name id', -1)) id' !subst
| _ -> ())
sg
| _ -> ()
in
let it = {type_iterators with it_path; it_signature_item} in
it.it_module_type it mty;
it.it_module_type unmark_iterators mty;
PathSet.fold (fun p -> IdentSet.union (collect_ids !subst !bindings p))
!paths IdentSet.empty
let rec remove_aliases env excl mty =
match mty with
Mty_signature sg ->
Mty_signature (remove_aliases_sig env excl sg)
| Mty_alias _ ->
let mty' = Env.scrape_alias env mty in
if mty' = mty then mty else
remove_aliases env excl mty'
| mty ->
mty
and remove_aliases_sig env excl sg =
match sg with
[] -> []
| Sig_module(id, md, rs) :: rem ->
let mty =
match md.md_type with
Mty_alias _ when IdentSet.mem id excl ->
md.md_type
| mty ->
remove_aliases env excl mty
in
Sig_module(id, {md with md_type = mty} , rs) ::
remove_aliases_sig (Env.add_module id mty env) excl rem
| Sig_modtype(id, mtd) :: rem ->
Sig_modtype(id, mtd) ::
remove_aliases_sig (Env.add_modtype id mtd env) excl rem
| it :: rem ->
it :: remove_aliases_sig env excl rem
let remove_aliases env sg =
let excl = collect_arg_paths sg in
(* PathSet.iter (fun p -> Format.eprintf "%a@ " Printtyp.path p) excl;
Format.eprintf "@."; *)
remove_aliases env excl sg
(* Lower non-generalizable type variables *)
let lower_nongen nglev mty =
let open Btype in
let it_type_expr it ty =
let ty = repr ty in
match ty with
{desc=Tvar _; level} ->
if level < generic_level && level > nglev then set_level ty nglev
| _ ->
type_iterators.it_type_expr it ty
in
let it = {type_iterators with it_type_expr} in
it.it_module_type it mty;
it.it_module_type unmark_iterators mty