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
open Util
open Names
open Constr
open Declarations
open Mod_declarations
open Declareops
open Environ
open Mod_subst
(** {6 Errors } *)
type signature_mismatch_error =
| InductiveFieldExpected of mutual_inductive_body
| DefinitionFieldExpected
| ModuleFieldExpected
| ModuleTypeFieldExpected
| NotConvertibleInductiveField of Id.t
| NotConvertibleConstructorField of Id.t
| NotConvertibleBodyField
| NotConvertibleTypeField of env * types * types
| CumulativeStatusExpected of bool
| PolymorphicStatusExpected of bool
| NotSameConstructorNamesField
| NotSameInductiveNameInBlockField
| FiniteInductiveFieldExpected of bool
| InductiveNumbersFieldExpected of int
| InductiveParamsNumberField of int
| RecordFieldExpected of bool
| RecordProjectionsExpected of Name.t list
| NotEqualInductiveAliases
| IncompatibleUniverses of UGraph.univ_inconsistency
| IncompatiblePolymorphism of env * types * types
| IncompatibleConstraints of { got : UVars.AbstractContext.t; expect : UVars.AbstractContext.t }
| IncompatibleVariance
| NoRewriteRulesSubtyping
type subtyping_trace_elt =
| Submodule of Label.t
| FunctorArgument of int
type module_typing_error =
| SignatureMismatch of subtyping_trace_elt list * Label.t * signature_mismatch_error
| LabelAlreadyDeclared of Label.t
| NotAFunctor
| IsAFunctor of ModPath.t
| IncompatibleModuleTypes of module_type_body * module_type_body
| NotEqualModulePaths of ModPath.t * ModPath.t
| NoSuchLabel of Label.t * ModPath.t
| NotAModuleLabel of Label.t
| NotAConstant of Label.t
| IncorrectWithConstraint of Label.t
| GenerativeModuleExpected of Label.t
| LabelMissing of Label.t * string
| IncludeRestrictedFunctor of ModPath.t
exception ModuleTypingError of module_typing_error
let error_existing_label l =
raise (ModuleTypingError (LabelAlreadyDeclared l))
let error_not_a_functor () =
raise (ModuleTypingError NotAFunctor)
let error_is_a_functor mp =
raise (ModuleTypingError (IsAFunctor mp))
let error_incompatible_modtypes mexpr1 mexpr2 =
raise (ModuleTypingError (IncompatibleModuleTypes (mexpr1,mexpr2)))
let error_not_equal_modpaths mp1 mp2 =
raise (ModuleTypingError (NotEqualModulePaths (mp1,mp2)))
let error_signature_mismatch trace l why =
raise (ModuleTypingError (SignatureMismatch (trace,l,why)))
let error_no_such_label l mp =
raise (ModuleTypingError (NoSuchLabel (l,mp)))
let error_not_a_module_label s =
raise (ModuleTypingError (NotAModuleLabel s))
let error_not_a_constant l =
raise (ModuleTypingError (NotAConstant l))
let error_incorrect_with_constraint l =
raise (ModuleTypingError (IncorrectWithConstraint l))
let error_generative_module_expected l =
raise (ModuleTypingError (GenerativeModuleExpected l))
let error_no_such_label_sub l l1 =
raise (ModuleTypingError (LabelMissing (l,l1)))
let error_include_restricted_functor mp =
raise (ModuleTypingError (IncludeRestrictedFunctor mp))
(** {6 Operations on functors } *)
let is_functor = function
| NoFunctor _ -> false
| MoreFunctor _ -> true
let destr_functor = function
| NoFunctor _ -> error_not_a_functor ()
| MoreFunctor (mbid,ty,x) -> (mbid,ty,x)
let destr_nofunctor mp = function
| NoFunctor a -> a
| MoreFunctor _ -> error_is_a_functor mp
let get_global_delta mb = match mod_global_delta mb with
| None -> assert false
| Some delta -> delta
(** {6 Misc operations } *)
let module_type_of_module = Mod_declarations.module_type_of_module
let module_body_of_type = Mod_declarations.module_body_of_type
let check_modpath_equiv env mp1 mp2 =
if ModPath.equal mp1 mp2 then ()
else
let mp1' = mp_of_delta (mod_delta @@ lookup_module mp1 env) mp1 in
let mp2' = mp_of_delta (mod_delta @@ lookup_module mp2 env) mp2 in
if ModPath.equal mp1' mp2' then ()
else error_not_equal_modpaths mp1 mp2
let rec annotate_module_expression me mty = match me, mty with
| MENoFunctor me, (NoFunctor _ | MoreFunctor _) -> NoFunctor me
| MEMoreFunctor me, MoreFunctor (mbid, arg, mty) ->
let me = annotate_module_expression me mty in
MoreFunctor (mbid, arg, me)
| MEMoreFunctor _, NoFunctor _ -> assert false
let rec annotate_struct_body body sign = match sign with
| NoFunctor _ -> NoFunctor body
| MoreFunctor (mbid, mty, sign) ->
MoreFunctor (mbid, mty, annotate_struct_body body sign)
(** {6 Substitutions of modular structures } *)
let subst_signature subst = subst_signature subst_codom subst
let subst_structure subst = subst_structure subst_codom subst
(** {6 Adding a module in the environment } *)
let add_retroknowledge l env =
List.fold_left Primred.add_retroknowledge env l
let rec add_structure mp sign resolver linkinfo env =
let add_field env (l,elem) = match elem with
| SFBconst cb ->
let c = constant_of_delta_kn resolver (KerName.make mp l) in
Environ.add_constant_key c cb linkinfo env
| SFBmind mib ->
let mind = mind_of_delta_kn resolver (KerName.make mp l) in
let mib =
if mib.mind_private != None then
{ mib with mind_private = Some true }
else mib
in
Environ.add_mind_key mind (mib,ref linkinfo) env
| SFBmodule mb -> add_module (MPdot (mp, l)) mb linkinfo env
| SFBmodtype mtb -> Environ.add_modtype (MPdot (mp, l)) mtb env
| SFBrules r -> Environ.add_rewrite_rules r.rewrules_rules env
in
List.fold_left add_field env sign
and add_module mp mb linkinfo env =
let env = Environ.shallow_add_module mp mb env in
match mod_type mb with
| NoFunctor struc ->
let delta = get_global_delta mb in
add_retroknowledge (mod_retroknowledge mb)
(add_structure mp struc delta linkinfo env)
| MoreFunctor _ -> env
let add_linked_module mp mb linkinfo env =
add_module mp mb linkinfo env
let add_structure mp sign resolver env =
add_structure mp sign resolver no_link_info env
let add_module mp mb env =
add_module mp mb no_link_info env
let add_module_parameter mbid mtb env =
add_module (MPbound mbid) (module_body_of_type mtb) env
(** {6 Strengthening a signature for subtyping } *)
let strengthen_const mp_from l cb resolver =
match cb.const_body with
| Def _ -> cb
| _ ->
let kn = KerName.make mp_from l in
let con = constant_of_delta_kn resolver kn in
let u = UVars.make_abstract_instance (Declareops.constant_polymorphic_context cb) in
{ cb with
const_body = Def (mkConstU (con,u));
const_body_code = Some (Vmbytegen.compile_alias con) }
let rec strengthen_module mp mb = match mod_type mb with
| NoFunctor struc ->
let delta_mb = get_global_delta mb in
if mp_in_delta mp delta_mb then mb
else
let reso, struc' = strengthen_signature mp struc delta_mb in
let reso = add_mp_delta_resolver mp mp (add_delta_resolver delta_mb reso) in
strengthen_module_body ~src:mp (NoFunctor struc') reso mb
| MoreFunctor _ -> mb
and strengthen_signature mp struc reso0 =
let strengthen_field reso item = match item with
| (l, SFBconst cb) ->
reso, (l, SFBconst (strengthen_const mp l cb reso0))
| (l, SFBmodule mb) ->
let mp' = MPdot (mp, l) in
let mb' = strengthen_module mp' mb in
let reso = match mod_global_delta mb with
| None ->
add_mp_delta_resolver mp' mp' reso
| Some delta ->
add_delta_resolver delta reso
in
reso, (l, SFBmodule mb')
| (_, (SFBmind _ | SFBrules _ | SFBmodtype _)) ->
reso, item
in
List.fold_left_map strengthen_field (empty_delta_resolver mp) struc
let strengthen mtb mp = match mod_type mtb with
| NoFunctor struc ->
let delta_mtb = get_global_delta mtb in
if mp_in_delta mp delta_mtb then mtb
else
let reso', struc' = strengthen_signature mp struc delta_mtb in
let reso' = add_delta_resolver delta_mtb (add_mp_delta_resolver mp mp reso') in
strengthen_module_type struc' reso' mtb
| MoreFunctor _ -> mtb
(** {6 Strengthening a module for [Module M := M'] or [Include M] } *)
let rec strengthen_and_subst_module mb subst mp_from mp_to =
match mod_type mb with
| NoFunctor struc ->
let delta_mb = get_global_delta mb in
let mb_is_an_alias = mp_in_delta mp_from delta_mb in
if mb_is_an_alias then subst_module subst_dom subst mp_from mb
else
let reso',struc' =
strengthen_and_subst_struct struc subst
mp_from mp_to false false delta_mb
in
let reso' = add_mp_delta_resolver mp_to mp_from reso' in
strengthen_module_body ~src:mp_from (NoFunctor struc') reso' mb
| MoreFunctor _ ->
let subst = add_mp mp_from mp_to (empty_delta_resolver mp_to) subst in
subst_module subst_dom_codom subst mp_from mb
and strengthen_and_subst_struct struc subst mp_from mp_to alias incl reso =
let strengthen_and_subst_field reso' item = match item with
| (l,SFBconst cb) ->
let cb' = subst_const_body subst cb in
let cb' =
if alias then cb'
else strengthen_const mp_from l cb' reso
in
let item' = if cb' == cb then item else (l, SFBconst cb') in
if incl then
let kn_from = KerName.make mp_from l in
let kn_to = KerName.make mp_to l in
let kn_canonical = kn_of_delta reso kn_from in
add_kn_delta_resolver kn_to kn_canonical reso', item'
else
reso', item'
| (l,SFBmind mib) ->
let mib' = subst_mind_body subst mib in
let item' = if mib' == mib then item else (l, SFBmind mib') in
if incl then
let kn_from = KerName.make mp_from l in
let kn_to = KerName.make mp_to l in
let kn_canonical = kn_of_delta reso kn_from in
add_kn_delta_resolver kn_to kn_canonical reso', item'
else
reso', item'
| (l, SFBrules rrb) ->
let rrb' = subst_rewrite_rules subst rrb in
let item' = if rrb' == rrb then item else (l, SFBrules rrb') in
if incl then
let kn_from = KerName.make mp_from l in
let kn_to = KerName.make mp_to l in
let kn_canonical = kn_of_delta reso kn_from in
add_kn_delta_resolver kn_to kn_canonical reso', item'
else
reso', item'
| (l,SFBmodule mb) ->
let mp_from' = MPdot (mp_from,l) in
let mp_to' = MPdot (mp_to,l) in
let mb' = if alias then
subst_module subst_dom subst mp_from' mb
else
strengthen_and_subst_module mb subst mp_from' mp_to'
in
let item' = if mb' == mb then item else (l, SFBmodule mb') in
begin match mod_global_delta mb' with
| None ->
add_mp_delta_resolver mp_to' mp_to' reso', item'
| Some delta ->
add_delta_resolver delta reso', item'
end
| (l,SFBmodtype mty) ->
let mp_from' = MPdot (mp_from,l) in
let mp_to' = MPdot(mp_to,l) in
let subst' = add_mp mp_from' mp_to' (empty_delta_resolver mp_to') subst in
let mty' = subst_modtype (subst_shallow_dom_codom subst') subst' mp_from' mty in
let item' = if mty' == mty then item else (l, SFBmodtype mty') in
add_mp_delta_resolver mp_to' mp_to' reso', item'
in
List.Smart.fold_left_map strengthen_and_subst_field (empty_delta_resolver mp_to) struc
(** Let P be a module path when we write:
"Module M:=P." or "Module M. Include P. End M."
We need to perform two operations to compute the body of M.
- The first one is applying the substitution {P <- M} on the type of P, i.e.
to replace any expression in P referring to P itself by the same
expression referring instead to M
- The second one is strengthening, i.e. associating to each
abstract/opaque field t in P a defined field t := Q.t where Q is the
Delta-normal form of P (possibly P itself):
- in the alias case "Module M:=P." where "P" is already an alias
with canonical form "Q": add the module Delta-equivalence "M := Q"
- in the alias case where P is not itself an alias:
add the module Delta-equivalence "M := P"
- in the "Include" case: add a Delta-equivalence "t := t'" where
"t'" is the canonical form of "P.t" on each field *)
let strengthen_and_subst_module_body mp_from mb mp include_b = match mod_type mb with
| NoFunctor struc ->
let delta_mb = get_global_delta mb in
let mb_is_an_alias = mp_in_delta mp_from delta_mb in
let mp_alias = mp_of_delta delta_mb mp_from in
let subst_resolver = map_mp mp_from mp (empty_delta_resolver mp) in
let new_resolver =
add_mp_delta_resolver mp mp_alias
(subst_dom_delta_resolver subst_resolver delta_mb)
in
let subst = map_mp mp_from mp new_resolver in
let reso',struc' =
strengthen_and_subst_struct struc subst
mp_from mp mb_is_an_alias include_b delta_mb
in
let reso' = if include_b then reso' else add_delta_resolver new_resolver reso' in
strengthen_module_body ~src:mp_from (NoFunctor struc') reso' mb
| MoreFunctor _ ->
let subst = map_mp mp_from mp (empty_delta_resolver mp) in
Mod_declarations.subst_module subst_dom_codom subst mp_from mb
let subst_modtype_signature_and_resolver mp_from mp_to sign reso =
let subst = map_mp mp_from mp_to (empty_delta_resolver mp_to) in
Mod_declarations.subst_signature subst_dom_codom subst mp_from sign, subst_dom_codom_delta_resolver subst reso
let rec collect_mbid l sign = match sign with
| MoreFunctor (mbid,ty,m) ->
let m' = collect_mbid (MBIset.add mbid l) m in
if m==m' then sign else MoreFunctor (mbid,ty,m')
| NoFunctor struc ->
let struc' = clean_structure l struc in
if struc==struc' then sign else NoFunctor struc'
let clean_bounded_mod_expr sign =
if is_functor sign then collect_mbid MBIset.empty sign else sign
(** {6 Building map of constants to inline } *)
let inline_delta_resolver env inl mp mbid mtb delta =
let constants = inline_of_delta inl (mod_delta mtb) in
let rec make_inline delta = function
| [] -> delta
| (lev,kn)::r ->
let kn = replace_mp_in_kn (MPbound mbid) mp kn in
let con = constant_of_delta_kn delta kn in
if not (Environ.mem_constant con env) then
error_no_such_label_sub (Constant.label con)
(ModPath.to_string (Constant.modpath con))
else
let constant = lookup_constant con env in
let l = make_inline delta r in
match constant.const_body with
| Undef _ | OpaqueDef _ | Primitive _ | Symbol _ -> l
| Def constr ->
let ctx = Declareops.constant_polymorphic_context constant in
let constr = {UVars.univ_abstracted_value=constr; univ_abstracted_binder=ctx} in
add_inline_delta_resolver kn (lev, Some constr) l
in
make_inline delta constants