Source file declaremods.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
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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
open Pp
open CErrors
open Util
open Names
open Declarations
open Entries
open Libnames
open Libobject
open Mod_subst
(** {6 Inlining levels} *)
(** Rigid / flexible module signature *)
type 'a module_signature =
| Enforce of 'a (** ... : T *)
| Check of 'a list (** ... <: T1 <: T2, possibly empty *)
(** Which module inline annotations should we honor,
either None or the ones whose level is less or equal
to the given integer *)
type inline =
| NoInline
| DefaultInline
| InlineAt of int
let default_inline () = Some (Flags.get_inline_level ())
let inl2intopt = function
| NoInline -> None
| InlineAt i -> Some i
| DefaultInline -> default_inline ()
(** ModSubstObjs : a cache of module substitutive objects
This table is common to modules and module types.
- For a Module M:=N, the objects of N will be reloaded
with M after substitution.
- For a Module M:SIG:=..., the module M gets its objects from SIG
Invariants:
- A alias (i.e. a module path inside a Ref constructor) should
never lead to another alias, but rather to a concrete Objs
constructor.
We will plug later a handler dealing with missing entries in the
cache. Such missing entries may come from inner parts of module
types, which aren't registered by the standard libobject machinery.
*)
module ModSubstObjs :
sig
val set : ModPath.t -> substitutive_objects -> unit
val get : ModPath.t -> substitutive_objects
val set_missing_handler : (ModPath.t -> substitutive_objects) -> unit
end =
struct
let table =
Summary.ref (MPmap.empty : substitutive_objects MPmap.t)
~name:"MODULE-SUBSTOBJS"
let missing_handler = ref (fun mp -> assert false)
let set_missing_handler f = (missing_handler := f)
let set mp objs = (table := MPmap.add mp objs !table)
let get mp =
try MPmap.find mp !table with Not_found -> !missing_handler mp
end
(** Some utilities about substitutive objects :
substitution, expansion *)
let sobjs_no_functor (mbids,_) = List.is_empty mbids
let subst_filtered sub (f,mp as x) =
let mp' = subst_mp sub mp in
if mp == mp' then x
else f, mp'
let rec subst_aobjs sub = function
| Objs o as objs ->
let o' = subst_objects sub o in
if o == o' then objs else Objs o'
| Ref (mp, sub0) as r ->
let sub0' = join sub0 sub in
if sub0' == sub0 then r else Ref (mp, sub0')
and subst_sobjs sub (mbids,aobjs as sobjs) =
let aobjs' = subst_aobjs sub aobjs in
if aobjs' == aobjs then sobjs else (mbids, aobjs')
and subst_objects subst seg =
let subst_one node =
match node with
| AtomicObject obj ->
let obj' = Libobject.subst_object (subst,obj) in
if obj' == obj then node else AtomicObject obj'
| ModuleObject (id, sobjs) ->
let sobjs' = subst_sobjs subst sobjs in
if sobjs' == sobjs then node else ModuleObject (id, sobjs')
| ModuleTypeObject (id, sobjs) ->
let sobjs' = subst_sobjs subst sobjs in
if sobjs' == sobjs then node else ModuleTypeObject (id, sobjs')
| IncludeObject aobjs ->
let aobjs' = subst_aobjs subst aobjs in
if aobjs' == aobjs then node else IncludeObject aobjs'
| ExportObject { mpl } ->
let mpl' = List.Smart.map (subst_filtered subst) mpl in
if mpl'==mpl then node else ExportObject { mpl = mpl' }
| KeepObject _ -> assert false
in
List.Smart.map subst_one seg
let expand_aobjs = function
| Objs o -> o
| Ref (mp, sub) ->
match ModSubstObjs.get mp with
| (_,Objs o) -> subst_objects sub o
| _ -> assert false
let expand_sobjs (_,aobjs) = expand_aobjs aobjs
(** {6 ModObjs : a cache of module objects}
For each module, we also store a cache of
"prefix", "substituted objects", "keep objects".
This is used for instance to implement the "Import" command.
substituted objects :
roughly the objects above after the substitution - we need to
keep them to call open_object when the module is opened (imported)
keep objects :
The list of non-substitutive objects - as above, for each of
them we will call open_object when the module is opened
(Some) Invariants:
* If the module is a functor, it won't appear in this cache.
* Module objects in substitutive_objects part have empty substituted
objects.
* Modules which where created with Module M:=mexpr or with
Module M:SIG. ... End M. have the keep list empty.
*)
type module_objects =
{ module_prefix : Nametab.object_prefix;
module_substituted_objects : Libobject.t list;
module_keep_objects : Libobject.t list;
}
module ModObjs :
sig
val set : ModPath.t -> module_objects -> unit
val get : ModPath.t -> module_objects
val all : unit -> module_objects MPmap.t
end =
struct
let table =
Summary.ref (MPmap.empty : module_objects MPmap.t)
~name:"MODULE-OBJS"
let set mp objs = (table := MPmap.add mp objs !table)
let get mp = MPmap.find mp !table
let all () = !table
end
(** {6 Name management}
Auxiliary functions to transform full_path and kernel_name given
by Lib into ModPath.t and DirPath.t needed for modules
*)
let mp_of_kn kn =
let mp,l = KerName.repr kn in
MPdot (mp,l)
let dir_of_sp sp =
let dir,id = repr_path sp in
add_dirpath_suffix dir id
(** {6 Declaration of module substitutive objects} *)
(** These functions register the visibility of the module and iterates
through its components. They are called by plenty of module functions *)
let consistency_checks exists dir =
if exists then
let _ =
try Nametab.locate_module (qualid_of_dirpath dir)
with Not_found ->
user_err
(DirPath.print dir ++ str " should already exist!")
in
()
else
if Nametab.exists_module dir then
user_err
(DirPath.print dir ++ str " already exists.")
let compute_visibility exists i =
if exists then Nametab.Exactly i else Nametab.Until i
(** Iterate some function [iter_objects] on all components of a module *)
let do_module exists iter_objects i obj_dir obj_mp sobjs kobjs =
let prefix = Nametab.{ obj_dir ; obj_mp; } in
consistency_checks exists obj_dir;
Nametab.push_module (compute_visibility exists i) obj_dir obj_mp;
ModSubstObjs.set obj_mp sobjs;
if sobjs_no_functor sobjs then begin
let objs = expand_sobjs sobjs in
let module_objects =
{ module_prefix = prefix;
module_substituted_objects = objs;
module_keep_objects = kobjs;
}
in
ModObjs.set obj_mp module_objects;
iter_objects (i+1) prefix objs;
iter_objects (i+1) prefix kobjs
end
let do_module' exists iter_objects i ((sp,kn),sobjs) =
do_module exists iter_objects i (dir_of_sp sp) (mp_of_kn kn) sobjs []
(** Nota: Interactive modules and module types cannot be recached!
This used to be checked here via a flag along the substobjs. *)
(** {6 Declaration of module type substitutive objects} *)
(** Nota: Interactive modules and module types cannot be recached!
This used to be checked more properly here. *)
let load_modtype i sp mp sobjs =
if Nametab.exists_modtype sp then
anomaly (pr_path sp ++ str " already exists.");
Nametab.push_modtype (Nametab.Until i) sp mp;
ModSubstObjs.set mp sobjs
(** {6 Declaration of substitutive objects for Include} *)
let rec load_object i (prefix, obj) =
match obj with
| AtomicObject o -> Libobject.load_object i (prefix, o)
| ModuleObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
do_module' false load_objects i (name, sobjs)
| ModuleTypeObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
let (sp,kn) = name in
load_modtype i sp (mp_of_kn kn) sobjs
| IncludeObject aobjs ->
load_include i (prefix, aobjs)
| ExportObject _ -> ()
| KeepObject (id,objs) ->
let name = Lib.make_oname prefix id in
load_keep i (name, objs)
and load_objects i prefix objs =
List.iter (fun obj -> load_object i (prefix, obj)) objs
and load_include i (prefix, aobjs) =
let o = expand_aobjs aobjs in
load_objects i prefix o
and load_keep i ((sp,kn),kobjs) =
let obj_dir = dir_of_sp sp and obj_mp = mp_of_kn kn in
let prefix = Nametab.{ obj_dir ; obj_mp; } in
let modobjs =
try ModObjs.get obj_mp
with Not_found -> assert false
in
assert Nametab.(eq_op modobjs.module_prefix prefix);
assert (List.is_empty modobjs.module_keep_objects);
ModObjs.set obj_mp { modobjs with module_keep_objects = kobjs };
load_objects i prefix kobjs
(** {6 Implementation of Import and Export commands} *)
let mark_object f obj (exports,acc) =
(exports, (f,obj)::acc)
let rec collect_modules mpl acc =
List.fold_left (fun acc fmp -> collect_module fmp acc) acc (List.rev mpl)
and collect_module (f,mp) acc =
let modobjs = ModObjs.get mp in
let prefix = modobjs.module_prefix in
let acc = collect_objects f 1 prefix modobjs.module_keep_objects acc in
collect_objects f 1 prefix modobjs.module_substituted_objects acc
and collect_object f i prefix obj acc =
match obj with
| ExportObject { mpl } -> collect_exports f i mpl acc
| AtomicObject _ | IncludeObject _ | KeepObject _
| ModuleObject _ | ModuleTypeObject _ -> mark_object f (prefix,obj) acc
and collect_objects f i prefix objs acc =
List.fold_left (fun acc obj -> collect_object f i prefix obj acc)
acc
(List.rev objs)
and collect_export f (f',mp) (exports,objs as acc) =
match filter_and f f' with
| None -> acc
| Some f ->
let exports' = MPmap.update mp (function
| None -> Some f
| Some f0 -> Some (filter_or f f0))
exports
in
if exports == exports' then acc
else
collect_module (f,mp) (exports', objs)
and collect_exports f i mpl acc =
if Int.equal i 1 then
List.fold_left (fun acc fmp -> collect_export f fmp acc) acc (List.rev mpl)
else acc
let open_modtype i ((sp,kn),_) =
let mp = mp_of_kn kn in
let mp' =
try Nametab.locate_modtype (qualid_of_path sp)
with Not_found ->
anomaly (pr_path sp ++ str " should already exist!");
in
assert (ModPath.equal mp mp');
Nametab.push_modtype (Nametab.Exactly i) sp mp
let rec open_object f i (prefix, obj) =
match obj with
| AtomicObject o -> Libobject.open_object f i (prefix, o)
| ModuleObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
let dir = dir_of_sp (fst name) in
let mp = mp_of_kn (snd name) in
open_module f i dir mp sobjs
| ModuleTypeObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
open_modtype i (name, sobjs)
| IncludeObject aobjs ->
open_include f i (prefix, aobjs)
| ExportObject { mpl } -> open_export f i mpl
| KeepObject (id,objs) ->
let name = Lib.make_oname prefix id in
open_keep f i (name, objs)
and open_module f i obj_dir obj_mp sobjs =
consistency_checks true obj_dir;
if in_filter ~cat:None f then Nametab.push_module (Nametab.Exactly i) obj_dir obj_mp;
if sobjs_no_functor sobjs then begin
let modobjs = ModObjs.get obj_mp in
open_objects f (i+1) modobjs.module_prefix modobjs.module_substituted_objects
end
and open_objects f i prefix objs =
List.iter (fun obj -> open_object f i (prefix, obj)) objs
and open_include f i (prefix, aobjs) =
let o = expand_aobjs aobjs in
open_objects f i prefix o
and open_export f i mpl =
let _,objs = collect_exports f i mpl (MPmap.empty, []) in
List.iter (fun (f,o) -> open_object f 1 o) objs
and open_keep f i ((sp,kn),kobjs) =
let obj_dir = dir_of_sp sp and obj_mp = mp_of_kn kn in
let prefix = Nametab.{ obj_dir; obj_mp; } in
open_objects f i prefix kobjs
let rec cache_object (prefix, obj) =
match obj with
| AtomicObject o -> Libobject.cache_object (prefix, o)
| ModuleObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
do_module' false load_objects 1 (name, sobjs)
| ModuleTypeObject (id,sobjs) ->
let name = Lib.make_oname prefix id in
let (sp,kn) = name in
load_modtype 0 sp (mp_of_kn kn) sobjs
| IncludeObject aobjs ->
cache_include (prefix, aobjs)
| ExportObject { mpl } -> anomaly Pp.(str "Export should not be cached")
| KeepObject (id,objs) ->
let name = Lib.make_oname prefix id in
cache_keep (name, objs)
and cache_include (prefix, aobjs) =
let o = expand_aobjs aobjs in
load_objects 1 prefix o;
open_objects unfiltered 1 prefix o
and cache_keep ((sp,kn),kobjs) =
anomaly (Pp.str "This module should not be cached!")
let add_leaf obj =
cache_object (Lib.prefix (),obj);
Lib.add_leaf_entry obj;
()
let add_leaves id objs =
let add_obj obj =
Lib.add_leaf_entry obj;
load_object 1 (Lib.prefix (),obj)
in
List.iter add_obj objs
(** {6 Handler for missing entries in ModSubstObjs} *)
(** Since the inner of Module Types are not added by default to
the ModSubstObjs table, we compensate this by explicit traversal
of Module Types inner objects when needed. Quite a hack... *)
let mp_id mp id = MPdot (mp, Label.of_id id)
let rec register_mod_objs mp obj = match obj with
| ModuleObject (id,sobjs) -> ModSubstObjs.set (mp_id mp id) sobjs
| ModuleTypeObject (id,sobjs) -> ModSubstObjs.set (mp_id mp id) sobjs
| IncludeObject aobjs ->
List.iter (register_mod_objs mp) (expand_aobjs aobjs)
| _ -> ()
let handle_missing_substobjs mp = match mp with
| MPdot (mp',l) ->
let objs = expand_sobjs (ModSubstObjs.get mp') in
List.iter (register_mod_objs mp') objs;
ModSubstObjs.get mp
| _ ->
assert false
let () = ModSubstObjs.set_missing_handler handle_missing_substobjs
(** {6 From module expression to substitutive objects} *)
(** Turn a chain of [MSEapply] into the head ModPath.t and the
list of ModPath.t parameters (deepest param coming first).
The left part of a [MSEapply] must be either [MSEident] or
another [MSEapply]. *)
let get_applications mexpr =
let rec get params = function
| MEident mp -> mp, params
| MEapply (fexpr, mp) -> get (mp::params) fexpr
| MEwith _ -> user_err Pp.(str "Non-atomic functor application.")
in get [] mexpr
(** Create the substitution corresponding to some functor applications *)
let rec compute_subst env mbids sign mp_l inl =
match mbids,mp_l with
| _,[] -> mbids,empty_subst
| [],r -> user_err Pp.(str "Application of a functor with too few arguments.")
| mbid::mbids,mp::mp_l ->
let farg_id, farg_b, fbody_b = Modops.destr_functor sign in
let mb = Environ.lookup_module mp env in
let mbid_left,subst = compute_subst env mbids fbody_b mp_l inl in
let resolver =
if Modops.is_functor mb.mod_type then empty_delta_resolver
else
Modops.inline_delta_resolver env inl mp farg_id farg_b mb.mod_delta
in
mbid_left,join (map_mbid mbid mp resolver) subst
(** Create the objects of a "with Module" structure. *)
let rec replace_module_object idl mp0 objs0 mp1 objs1 =
match idl, objs0 with
| _,[] -> []
| id::idl,(ModuleObject (id', sobjs))::tail when Id.equal id id' ->
begin
let mp_id = MPdot(mp0, Label.of_id id) in
let objs = match idl with
| [] -> subst_objects (map_mp mp1 mp_id empty_delta_resolver) objs1
| _ ->
let objs_id = expand_sobjs sobjs in
replace_module_object idl mp_id objs_id mp1 objs1
in
(ModuleObject (id, ([], Objs objs)))::tail
end
| idl,lobj::tail -> lobj::replace_module_object idl mp0 tail mp1 objs1
let type_of_mod mp env = function
| true -> (Environ.lookup_module mp env).mod_type
| false -> (Environ.lookup_modtype mp env).mod_type
let rec get_module_path = function
| MEident mp -> mp
| MEwith (me,_) -> get_module_path me
| MEapply (me,_) -> get_module_path me
(** Substitutive objects of a module expression (or module type) *)
let rec get_module_sobjs is_mod env inl = function
| MEident mp ->
begin match ModSubstObjs.get mp with
| (mbids,Objs _) when not (ModPath.is_bound mp) ->
(mbids,Ref (mp, empty_subst))
| sobjs -> sobjs
end
| MEwith (mty, WithDef _) -> get_module_sobjs is_mod env inl mty
| MEwith (mty, WithMod (idl,mp1)) ->
assert (not is_mod);
let sobjs0 = get_module_sobjs is_mod env inl mty in
assert (sobjs_no_functor sobjs0);
let mp0 = get_module_path mty in
let objs0 = expand_sobjs sobjs0 in
let objs1 = expand_sobjs (ModSubstObjs.get mp1) in
([], Objs (replace_module_object idl mp0 objs0 mp1 objs1))
| MEapply _ as me ->
let mp1, mp_l = get_applications me in
let mbids, aobjs = get_module_sobjs is_mod env inl (MEident mp1) in
let typ = type_of_mod mp1 env is_mod in
let mbids_left,subst = compute_subst env mbids typ mp_l inl in
(mbids_left, subst_aobjs subst aobjs)
let get_functor_sobjs is_mod env inl (params,mexpr) =
let (mbids, aobjs) = get_module_sobjs is_mod env inl mexpr in
(List.map pi1 params @ mbids, aobjs)
(** {6 Handling of module parameters} *)
(** For printing modules, [process_module_binding] adds names of
bound module (and its components) to Nametab. It also loads
objects associated to it. *)
let process_module_binding mbid me =
let dir = DirPath.make [MBId.to_id mbid] in
let mp = MPbound mbid in
let sobjs = get_module_sobjs false (Global.env()) (default_inline ()) me in
let subst = map_mp (get_module_path me) mp empty_delta_resolver in
let sobjs = subst_sobjs subst sobjs in
do_module false load_objects 1 dir mp sobjs []
(** Process a declaration of functor parameter(s) (Id1 .. Idn : Typ)
i.e. possibly multiple names with the same module type.
Global environment is updated on the fly.
Objects in these parameters are also loaded.
Output is accumulated on top of [acc] (in reverse order). *)
let intern_arg (acc, cst) (idl,(typ,ann)) =
let inl = inl2intopt ann in
let lib_dir = Lib.library_dp() in
let env = Global.env() in
let (mty, base, kind) = Modintern.intern_module_ast Modintern.ModType typ in
let (mty, cst') = Modintern.interp_module_ast env kind base mty in
let () = Global.push_context_set ~strict:true cst' in
let () =
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, (_, cst) = Mod_typing.translate_modtype state (Global.env ()) base inl ([], mty) in
Global.add_constraints cst
in
let env = Global.env () in
let sobjs = get_module_sobjs false env inl mty in
let mp0 = get_module_path mty in
let fold acc {CAst.v=id} =
let dir = DirPath.make [id] in
let mbid = MBId.make lib_dir id in
let mp = MPbound mbid in
let resolver = Global.add_module_parameter mbid mty inl in
let sobjs = subst_sobjs (map_mp mp0 mp resolver) sobjs in
do_module false load_objects 1 dir mp sobjs [];
(mbid,mty,inl)::acc
in
let acc = List.fold_left fold acc idl in
(acc, Univ.ContextSet.union cst cst')
(** Process a list of declarations of functor parameters
(Id11 .. Id1n : Typ1)..(Idk1 .. Idkm : Typk)
Global environment is updated on the fly.
The calls to [interp_modast] should be interleaved with these
env updates, otherwise some "with Definition" could be rejected.
Returns a list of mbids and entries (in reversed order).
This used to be a [List.concat (List.map ...)], but this should
be more efficient and independent of [List.map] eval order.
*)
let intern_args params =
let args, ctx = List.fold_left intern_arg ([], Univ.ContextSet.empty) params in
List.rev args, ctx
(** {6 Auxiliary functions concerning subtyping checks} *)
let check_sub mtb sub_mtb_l =
let fold sub_mtb (ocst, env) =
let state = ((Environ.universes env, Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, cst = Subtyping.check_subtypes state env mtb sub_mtb in
(Univ.Constraints.union ocst cst, Environ.add_constraints cst env)
in
let cst, _ = List.fold_right fold sub_mtb_l (Univ.Constraints.empty, Global.env ()) in
Global.add_constraints cst
(** This function checks if the type calculated for the module [mp] is
a "<:"-like subtype of all signatures in [sub_mtb_l]. Uses only
the global environment. *)
let check_subtypes mp sub_mtb_l =
let mb =
try Global.lookup_module mp with Not_found -> assert false
in
let mtb = Modops.module_type_of_module mb in
check_sub mtb sub_mtb_l
(** Same for module type [mp] *)
let check_subtypes_mt mp sub_mtb_l =
let mtb =
try Global.lookup_modtype mp with Not_found -> assert false
in
check_sub mtb sub_mtb_l
(** Prepare the module type list for check of subtypes *)
let build_subtypes env mp args mtys =
let (ctx, ans) = List.fold_left_map
(fun ctx (m,ann) ->
let inl = inl2intopt ann in
let mte, base, kind = Modintern.intern_module_ast Modintern.ModType m in
let mte, ctx' = Modintern.interp_module_ast env Modintern.ModType base mte in
let env = Environ.push_context_set ~strict:true ctx' env in
let ctx = Univ.ContextSet.union ctx ctx' in
let state = ((Environ.universes env, Univ.Constraints.empty), Reductionops.inferred_universes) in
let mtb, (_, cst) = Mod_typing.translate_modtype state env mp inl (args,mte) in
let ctx = Univ.ContextSet.add_constraints cst ctx in
ctx, mtb)
Univ.ContextSet.empty mtys
in
(ans, ctx)
let current_modresolver () =
fst @@ Safe_typing.delta_of_senv @@ Global.safe_env ()
let current_struct () =
let struc = Safe_typing.structure_body_of_safe_env @@ Global.safe_env () in
NoFunctor (List.rev struc)
(** {6 Current module information}
This information is stored by each [start_module] for use
in a later [end_module]. *)
type current_module_info = {
cur_typ : (module_struct_entry * int option) option; (** type via ":" *)
cur_typs : module_type_body list (** types via "<:" *)
}
let default_module_info = { cur_typ = None; cur_typs = [] }
let openmod_info = Summary.ref default_module_info ~name:"MODULE-INFO"
(** {6 Current module type information}
This information is stored by each [start_modtype] for use
in a later [end_modtype]. *)
let openmodtype_info =
Summary.ref ([] : module_type_body list) ~name:"MODTYPE-INFO"
(** {6 Modules : start, end, declare} *)
module RawModOps = struct
let start_module export id args res fs =
let mp = Global.start_module id in
let params, ctx = intern_args args in
let () = Global.push_context_set ~strict:true ctx in
let env = Global.env () in
let res_entry_o, subtyps, ctx = match res with
| Enforce (res,ann) ->
let inl = inl2intopt ann in
let (mte, base, kind) = Modintern.intern_module_ast Modintern.ModType res in
let (mte, ctx) = Modintern.interp_module_ast env kind base mte in
let env = Environ.push_context_set ~strict:true ctx env in
let state = ((Environ.universes env, Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, _, _, (_, cst) = Mod_typing.translate_mse state env None inl mte in
let ctx = Univ.ContextSet.add_constraints cst ctx in
Some (mte, inl), [], ctx
| Check resl ->
let typs, ctx = build_subtypes env mp params resl in
None, typs, ctx
in
let () = Global.push_context_set ~strict:true ctx in
openmod_info := { cur_typ = res_entry_o; cur_typs = subtyps };
let prefix = Lib.start_module export id mp fs in
Nametab.(push_dir (Until 1) (prefix.obj_dir) (GlobDirRef.DirOpenModule prefix));
mp
let end_module () =
let oldprefix,fs,lib_stack = Lib.end_module () in
let {Lib.substobjs = substitute; keepobjs = keep; anticipateobjs = special; } = lib_stack in
let m_info = !openmod_info in
let sobjs0, keep, special = match m_info.cur_typ with
| None -> ([], Objs substitute), keep, special
| Some (mty, inline) ->
get_module_sobjs false (Global.env()) inline mty, [], []
in
let olddp, id = split_dirpath oldprefix.Nametab.obj_dir in
let struc = current_struct () in
let restype' = Option.map (fun (ty,inl) -> (([],ty),inl)) m_info.cur_typ in
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, (_, cst) =
Mod_typing.finalize_module state (Global.env ()) (Global.current_modpath ())
(struc, None, current_modresolver ()) restype'
in
let () = Global.add_constraints cst in
let mp,mbids,resolver = Global.end_module fs id m_info.cur_typ in
let sobjs = let (ms,objs) = sobjs0 in (mbids@ms,objs) in
let () = check_subtypes mp m_info.cur_typs in
let sobjs =
match m_info.cur_typ with
| None -> sobjs
| Some (mty, _) ->
subst_sobjs (map_mp (get_module_path mty) mp resolver) sobjs
in
let node = ModuleObject (id,sobjs) in
let objects = match keep, mbids with
| [], _ | _, _ :: _ -> special@[node]
| _ -> special@[node;KeepObject (id,keep)]
in
let () = add_leaves id objects in
assert (DirPath.equal (Lib.prefix()).Nametab.obj_dir olddp);
assert (ModPath.equal oldprefix.Nametab.obj_mp mp);
mp
let declare_module id args res mexpr_o fs =
let mp = Global.start_module id in
let params, ctx = intern_args args in
let env = Global.env () in
let env = Environ.push_context_set ~strict:true ctx env in
let mty_entry_o, subs, inl_res, ctx' = match res with
| Enforce (mty,ann) ->
let inl = inl2intopt ann in
let (mte, base, kind) = Modintern.intern_module_ast Modintern.ModType mty in
let (mte, ctx) = Modintern.interp_module_ast env kind base mte in
let env = Environ.push_context_set ~strict:true ctx env in
let state = ((Environ.universes env, Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, _, _, (_, cst) = Mod_typing.translate_mse state env None inl mte in
let ctx = Univ.ContextSet.add_constraints cst ctx in
Some mte, [], inl, ctx
| Check mtys ->
let typs, ctx = build_subtypes env mp params mtys in
None, typs, default_inline (), ctx
in
let env = Environ.push_context_set ~strict:true ctx' env in
let ctx = Univ.ContextSet.union ctx ctx' in
let mexpr_entry_o, inl_expr, ctx' = match mexpr_o with
| None -> None, default_inline (), Univ.ContextSet.empty
| Some (mexpr,ann) ->
let (mte, base, kind) = Modintern.intern_module_ast Modintern.Module mexpr in
let (mte, ctx) = Modintern.interp_module_ast env kind base mte in
Some mte, inl2intopt ann, ctx
in
let env = Environ.push_context_set ~strict:true ctx' env in
let ctx = Univ.ContextSet.union ctx ctx' in
let entry = match mexpr_entry_o, mty_entry_o with
| None, None -> assert false
| None, Some typ -> MType (params, typ)
| Some body, otyp -> MExpr (params, body, otyp)
in
let sobjs, mp0 = match entry with
| MType (_,mte) | MExpr (_,_,Some mte) ->
get_functor_sobjs false env inl_res (params,mte), get_module_path mte
| MExpr (_,me,None) ->
get_functor_sobjs true env inl_expr (params,me), get_module_path me
in
Summary.unfreeze_summaries fs;
let inl = match inl_expr with
| None -> None
| _ -> inl_res
in
let () = Global.push_context_set ~strict:true ctx in
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, (_, cst) = Mod_typing.translate_module state (Global.env ()) mp inl entry in
let () = Global.add_constraints cst in
let mp_env,resolver = Global.add_module id entry inl in
assert (ModPath.equal mp (mp_of_kn (Lib.make_kn id)));
assert (ModPath.equal mp mp_env);
let () = check_subtypes mp subs in
let sobjs = subst_sobjs (map_mp mp0 mp resolver) sobjs in
add_leaf (ModuleObject (id,sobjs));
mp
end
(** {6 Module types : start, end, declare} *)
module RawModTypeOps = struct
let start_modtype id args mtys fs =
let mp = Global.start_modtype id in
let arg_entries_r, cst = intern_args args in
let () = Global.push_context_set ~strict:true cst in
let env = Global.env () in
let sub_mty_l, cst = build_subtypes env mp arg_entries_r mtys in
let () = Global.push_context_set ~strict:true cst in
openmodtype_info := sub_mty_l;
let prefix = Lib.start_modtype id mp fs in
Nametab.(push_dir (Until 1) (prefix.obj_dir) (GlobDirRef.DirOpenModtype prefix));
mp
let end_modtype () =
let oldprefix,fs,lib_stack = Lib.end_modtype () in
let olddp, id = split_dirpath oldprefix.Nametab.obj_dir in
let {Lib.substobjs = substitute; keepobjs = _; anticipateobjs = special; } = lib_stack in
let sub_mty_l = !openmodtype_info in
let mp, mbids = Global.end_modtype fs id in
let () = check_subtypes_mt mp sub_mty_l in
let modtypeobjs = (mbids, Objs substitute) in
let () = add_leaves id (special@[ModuleTypeObject (id,modtypeobjs)]) in
assert (DirPath.equal (Lib.prefix()).Nametab.obj_dir olddp);
assert (ModPath.equal oldprefix.Nametab.obj_mp mp);
mp
let declare_modtype id args mtys (mty,ann) fs =
let inl = inl2intopt ann in
let mp = Global.start_modtype id in
let params, arg_ctx = intern_args args in
let () = Global.push_context_set ~strict:true arg_ctx in
let env = Global.env () in
let mte, base, kind = Modintern.intern_module_ast Modintern.ModType mty in
let mte, mte_ctx = Modintern.interp_module_ast env kind base mte in
let () = Global.push_context_set ~strict:true mte_ctx in
let env = Global.env () in
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let _, _, _, (_, mte_cst) = Mod_typing.translate_mse state env None inl mte in
let () = Global.push_context_set ~strict:true (Univ.Level.Set.empty,mte_cst) in
let env = Global.env () in
let entry = params, mte in
let sub_mty_l, sub_mty_ctx = build_subtypes env mp params mtys in
let () = Global.push_context_set ~strict:true sub_mty_ctx in
let env = Global.env () in
let sobjs = get_functor_sobjs false env inl entry in
let subst = map_mp (get_module_path (snd entry)) mp empty_delta_resolver in
let sobjs = subst_sobjs subst sobjs in
Summary.unfreeze_summaries fs;
let () = Global.push_context_set ~strict:true arg_ctx in
let () = Global.push_context_set ~strict:true mte_ctx in
let () = Global.push_context_set ~strict:true (Univ.Level.Set.empty,mte_cst) in
let () = Global.push_context_set ~strict:true sub_mty_ctx in
let mp_env = Global.add_modtype id entry inl in
assert (ModPath.equal mp_env mp);
let () = check_subtypes_mt mp sub_mty_l in
add_leaf (ModuleTypeObject (id, sobjs));
mp
end
(** {6 Include} *)
module RawIncludeOps = struct
let rec include_subst env mp reso mbids sign inline = match mbids with
| [] -> empty_subst
| mbid::mbids ->
let farg_id, farg_b, fbody_b = Modops.destr_functor sign in
let subst = include_subst env mp reso mbids fbody_b inline in
let mp_delta =
Modops.inline_delta_resolver env inline mp farg_id farg_b reso
in
join (map_mbid mbid mp mp_delta) subst
let rec decompose_functor mpl typ =
match mpl, typ with
| [], _ -> typ
| _::mpl, MoreFunctor(_,_,str) -> decompose_functor mpl str
| _ -> user_err Pp.(str "Application of a functor with too much arguments.")
exception NoIncludeSelf
let type_of_incl env is_mod = function
| MEident mp -> type_of_mod mp env is_mod
| MEapply _ as me ->
let mp0, mp_l = get_applications me in
decompose_functor mp_l (type_of_mod mp0 env is_mod)
| MEwith _ -> raise NoIncludeSelf
(** Implements [Include F] where [F] has parameters [mbids] to be
instantiated by fields of the current "self" module, i.e. using
subtyping, by the current module itself. *)
let declare_one_include (me_ast,annot) =
let env = Global.env() in
let me, base, kind = Modintern.intern_module_ast Modintern.ModAny me_ast in
let me, cst = Modintern.interp_module_ast env kind base me in
let () = Global.push_context_set ~strict:true cst in
let env = Global.env () in
let is_mod = (kind == Modintern.Module) in
let cur_mp = Lib.current_mp () in
let inl = inl2intopt annot in
let mbids,aobjs = get_module_sobjs is_mod env inl me in
let subst_self =
try
if List.is_empty mbids then raise NoIncludeSelf;
let typ = type_of_incl env is_mod me in
let reso = current_modresolver () in
include_subst env cur_mp reso mbids typ inl
with NoIncludeSelf -> empty_subst
in
let base_mp = get_module_path me in
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let sign, (), resolver, (_, cst) =
Mod_typing.translate_mse_include is_mod state (Global.env ()) (Global.current_modpath ()) inl me
in
let () = Global.add_constraints cst in
let () = assert (ModPath.equal cur_mp (Global.current_modpath ())) in
let mb = { mod_mp = cur_mp;
mod_expr = ();
mod_type = current_struct ();
mod_type_alg = None;
mod_delta = current_modresolver ();
mod_retroknowledge = ModTypeRK }
in
let rec compute_sign sign =
match sign with
| MoreFunctor(mbid,mtb,str) ->
let state = ((Global.universes (), Univ.Constraints.empty), Reductionops.inferred_universes) in
let (_, cst) = Subtyping.check_subtypes state (Global.env ()) mb mtb in
let () = Global.add_constraints cst in
let mpsup_delta =
Modops.inline_delta_resolver (Global.env ()) inl cur_mp mbid mtb mb.mod_delta
in
let subst = Mod_subst.map_mbid mbid cur_mp mpsup_delta in
compute_sign (Modops.subst_signature subst str)
| NoFunctor str -> ()
in
let () = compute_sign sign in
let resolver = Global.add_include me is_mod inl in
let subst = join subst_self (map_mp base_mp cur_mp resolver) in
let aobjs = subst_aobjs subst aobjs in
cache_include (Lib.prefix(), aobjs);
Lib.add_leaf_entry (IncludeObject aobjs)
let declare_include me_asts = List.iter declare_one_include me_asts
end
(** {6 Module operations handling summary freeze/unfreeze} *)
let protect_summaries f =
let fs = Summary.freeze_summaries ~marshallable:false in
try f fs
with reraise ->
let reraise = Exninfo.capture reraise in
let () = Summary.unfreeze_summaries fs in
Exninfo.iraise reraise
let start_module export id args res =
protect_summaries (RawModOps.start_module export id args res)
let end_module = RawModOps.end_module
let declare_module id args mtys me_l =
let declare_me fs = match me_l with
| [] -> RawModOps.declare_module id args mtys None fs
| [me] -> RawModOps.declare_module id args mtys (Some me) fs
| me_l ->
ignore (RawModOps.start_module None id args mtys fs);
RawIncludeOps.declare_include me_l;
RawModOps.end_module ()
in
protect_summaries declare_me
let start_modtype id args mtys =
protect_summaries (RawModTypeOps.start_modtype id args mtys)
let end_modtype = RawModTypeOps.end_modtype
let declare_modtype id args mtys mty_l =
let declare_mt fs = match mty_l with
| [] -> assert false
| [mty] -> RawModTypeOps.declare_modtype id args mtys mty fs
| mty_l ->
ignore (RawModTypeOps.start_modtype id args mtys fs);
RawIncludeOps.declare_include mty_l;
RawModTypeOps.end_modtype ()
in
protect_summaries declare_mt
let declare_include me_asts =
if Global.sections_are_opened () then
user_err Pp.(str "Include is not allowed inside sections.");
protect_summaries (fun _ -> RawIncludeOps.declare_include me_asts)
(** {6 Libraries} *)
type library_name = DirPath.t
(** A library object is made of some substitutive objects
and some "keep" objects. *)
type library_objects = Libobject.t list * Libobject.t list
(** For the native compiler, we cache the library values *)
let register_library dir cenv (objs:library_objects) digest univ =
let mp = MPfile dir in
let () =
try
ignore(Global.lookup_module mp);
with Not_found ->
let mp' = Global.import cenv univ digest in
if not (ModPath.equal mp mp') then
anomaly (Pp.str "Unexpected disk module name.");
in
let sobjs,keepobjs = objs in
do_module false load_objects 1 dir mp ([],Objs sobjs) keepobjs
let start_library dir =
let mp = Global.start_library dir in
openmod_info := default_module_info;
Lib.start_compilation dir mp
let end_library_hook = ref ignore
let append_end_library_hook f =
let old_f = !end_library_hook in
end_library_hook := fun () -> old_f(); f ()
let end_library ~output_native_objects dir =
!end_library_hook();
let prefix, lib_stack = Lib.end_compilation dir in
let mp,cenv,ast = Global.export ~output_native_objects dir in
assert (ModPath.equal mp (MPfile dir));
let {Lib.substobjs = substitute; keepobjs = keep; anticipateobjs = _; } = lib_stack in
cenv,(substitute,keep),ast
let import_modules ~export mpl =
let _,objs = collect_modules mpl (MPmap.empty, []) in
List.iter (fun (f,o) -> open_object f 1 o) objs;
match export with
| Lib.Import -> ()
| Lib.Export -> Lib.add_leaf_entry (ExportObject { mpl })
let import_module f ~export mp =
import_modules ~export [f,mp]
(** {6 Iterators} *)
let iter_all_segments f =
let rec apply_obj prefix obj = match obj with
| IncludeObject aobjs ->
let objs = expand_aobjs aobjs in
List.iter (apply_obj prefix) objs
| _ -> f prefix obj
in
let apply_mod_obj _ modobjs =
let prefix = modobjs.module_prefix in
List.iter (apply_obj prefix) modobjs.module_substituted_objects;
List.iter (apply_obj prefix) modobjs.module_keep_objects
in
let apply_nodes (node, os) = List.iter (fun o -> f (Lib.node_prefix node) o) os in
MPmap.iter apply_mod_obj (ModObjs.all ());
List.iter apply_nodes (Lib.contents ())
(** {6 Some types used to shorten declaremods.mli} *)
type module_params = (lident list * (Constrexpr.module_ast * inline)) list
(** {6 Debug} *)
let debug_print_modtab _ =
let pr_seg = function
| [] -> str "[]"
| l -> str "[." ++ int (List.length l) ++ str ".]"
in
let pr_modinfo mp modobjs s =
let objs = modobjs.module_substituted_objects @ modobjs.module_keep_objects in
s ++ str (ModPath.to_string mp) ++ spc () ++ pr_seg objs
in
let modules = MPmap.fold pr_modinfo (ModObjs.all ()) (mt ()) in
hov 0 modules