Skip to content

Commit 5dfc56c

Browse files
committed
MPR#7643, ocamldep: fix nested structure blowup
1 parent 990845b commit 5dfc56c

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Stephen Dolan <stedolan>
6767
Junsong Li <lijunsong@mantis>
6868
Junsong Li <ljs.darkfish@gmail.com>
6969
Christophe Raffali <craff@mantis>
70+
Christophe Raffali <ChriChri@mantis>
7071
Anton Bachin <antron@mantis>
7172
Reed Wilson <omion>
7273
David Scott <djs55>

Changes

+4
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,10 @@ Release branch for 4.06:
337337
and module type elements
338338
(Florian Angeletti, review by Yawar Amin and Gabriel Scherer)
339339

340+
- MPR#7643, GPR#1377: ocamldep, fix an exponential blowup in presence of nested
341+
structures and signatures (e.g. "include struct … include(struct … end) … end")
342+
(Florian Angeletti, review by Gabriel Scherer, report by Christophe Raffalli)
343+
340344
- GPR#681: Introduce ocamltest, a new test driver for the
341345
OCaml compiler testsuite
342346
(Sébastien Hinderer, review by Damien Doligez)

parsing/depend.ml

+7-6
Original file line numberDiff line numberDiff line change
@@ -324,16 +324,16 @@ and add_module_alias bv l =
324324
| _ -> addmodule bv l; bound (* cannot delay *)
325325

326326
and add_modtype_binding bv mty =
327-
if not !Clflags.transparent_modules then add_modtype bv mty;
328327
match mty.pmty_desc with
329328
Pmty_alias l ->
329+
if not !Clflags.transparent_modules then addmodule bv l;
330330
add_module_alias bv l
331331
| Pmty_signature s ->
332332
make_node (add_signature_binding bv s)
333333
| Pmty_typeof modl ->
334334
add_module_binding bv modl
335335
| _ ->
336-
if !Clflags.transparent_modules then add_modtype bv mty; bound
336+
add_modtype bv mty; bound
337337

338338
and add_signature bv sg =
339339
ignore (add_signature_binding bv sg)
@@ -386,9 +386,9 @@ and add_sig_item (bv, m) item =
386386
(bv, m)
387387

388388
and add_module_binding bv modl =
389-
if not !Clflags.transparent_modules then add_module bv modl;
390389
match modl.pmod_desc with
391390
Pmod_ident l ->
391+
if not !Clflags.transparent_modules then addmodule bv l;
392392
begin try
393393
add_parent bv l;
394394
lookup_map l.txt bv
@@ -398,9 +398,10 @@ and add_module_binding bv modl =
398398
| _ -> addmodule bv l; bound
399399
end
400400
| Pmod_structure s ->
401-
make_node (snd (add_structure_binding bv s))
402-
| _ ->
403-
if !Clflags.transparent_modules then add_module bv modl; bound
401+
let n = make_node (snd @@ add_structure_binding bv s) in
402+
if not !Clflags.transparent_modules then add_names (collect_free n);
403+
n
404+
| _ -> add_module bv modl; bound
404405

405406
and add_module bv modl =
406407
match modl.pmod_desc with

0 commit comments

Comments
 (0)