Source file lic.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
(** Define the Data Structure representing Compiled programs. By
compiled we mean that constant are propagated, packages are
instanciated, recursive node are inlined, etc.
lic = lustre internal code
Basically it is Lustre with all the suggar removed.
*)
(**
Définition des structures de données utilisée pour la compil,
plus des utilitaires pour les messages d'erreurs, de bug etc.
N.B. on utilise beaucoup l'adjectif "effectif", qui signifie
simplement "correct" (c'est bizzare mais c'est ainsi.
REMARQUE GENERALE :
D'une manière générale, la compil d'une entité syntaxique
"toto" est implémentée par une fonction check_toto, qui
prend en entrée (entr'autre) un toto et renvoie un
toto.
TYPES DE DONNEES :
- type_ :
dénotation de type effectif, implémente l'équivalence des types,
construit à partir d'une type_exp.
- const :
dénotation de constante effective,
construit à partir d'une val_exp => IL S'AGIT DE LA REPRESENTATION
INTERNE DES CONSTANTES STATIQUES
- var_info :
déclaration de variable,
construit à partir de var_info.
- val :
union entre const et var_info.
- slice_info :
dénotation de tranche de tableau,
construit à partir de slice_info.
- left :
version compilée de left_part
- eq_info :
version compilée de eq_info
- node_exp :
dénotation d'opération,
peut être predef ou utilisateur,
construit à partir de node_exp.
- static_arg :
déclaration d'un static arg
- pack_env :
la "grosse" structure de données qui gère la compilation
des packages => implémentée dans CheckGlobal pour la partie type/const/function
(initialisation) et dans CheckNode pour la partie node/template qui
est faite à la demande.
UTILITAIRES :
- type_of_const : renvoie le type d'une const
- string_of_type : pretty-print d'un type
- string_of_const : pretty-print d'une const
- string_of_node_key : pretty-print d'un node_key
_ string_of_slice :
----------------------------------------------------------------------*)
open Lv6errors
open Printf
open Lxm
let _dbg = (Lv6Verbose.get_flag "lazyc")
type type_ =
| Bool_type_eff
| Int_type_eff
| Real_type_eff
| External_type_eff of Lv6Id.long
| Abstract_type_eff of Lv6Id.long * type_
| Enum_type_eff of Lv6Id.long * (Lv6Id.long list)
| Array_type_eff of type_ * int
| Struct_type_eff of
Lv6Id.long * (Lv6Id.t * (type_ * const option)) list
| TypeVar of type_var
and type_var =
| Any
| AnyNum
and node_profile = (Lv6Id.t * type_) list * (Lv6Id.t * type_) list
and profile = type_ list * type_ list
and slice_info = {
se_first : int;
se_last : int;
se_step : int;
se_width : int;
}
and left =
| LeftVarLic of (var_info * Lxm.t)
| LeftFieldLic of (left * Lv6Id.t * type_)
| LeftArrayLic of (left * int * type_)
| LeftSliceLic of (left * slice_info * type_)
and eq_info = left list * val_exp
and val_exp =
{ ve_core : val_exp_core ;
ve_typ : type_ list ;
ve_clk : clock list;
ve_src : Lxm.t
}
and val_exp_core =
| CallByPosLic of (by_pos_op srcflagged * val_exp list)
| CallByNameLic of (by_name_op srcflagged * (Lv6Id.t srcflagged * val_exp) list)
| Merge of val_exp * (const srcflagged * val_exp) list
and by_name_op =
| STRUCT of Lv6Id.long
| STRUCT_with of Lv6Id.long * Lv6Id.t
| STRUCT_anonymous
and by_pos_op =
| PREDEF_CALL of node_key srcflagged
| CALL of node_key srcflagged
| CONST_REF of Lv6Id.long
| CONST of const
| VAR_REF of Lv6Id.t
| PRE
| ARROW
| FBY
| CURRENT of Lv6Id.long option
| WHEN of clock
| TUPLE
| CONCAT
| HAT of int
| ARRAY
| STRUCT_ACCESS of Lv6Id.t
| ARRAY_ACCES of int
| ARRAY_SLICE of slice_info
and const =
Bool_const_eff of bool
| Int_const_eff of string
| Real_const_eff of string
| Extern_const_eff of (Lv6Id.long * type_)
| Abstract_const_eff of (Lv6Id.long * type_ * const * bool)
| Enum_const_eff of (Lv6Id.long * type_)
| Struct_const_eff of ((Lv6Id.t * const) list * type_)
| Array_const_eff of (const list * type_)
| Tuple_const_eff of const list
and var_info = {
var_name_eff : Lv6Id.t;
var_nature_eff : AstCore.var_nature;
var_number_eff : int;
var_type_eff : type_;
var_clock_eff : id_clock;
}
and id_clock = Lv6Id.t * clock
and clock =
| BaseLic
| ClockVar of int
| On of (Lv6Id.long * Lv6Id.t * type_) * clock
(** [node_exp] correspond à une instance de template (ou, cas
limite, de noeud sans param statique).
La clé est un couple ident/liste d'arguments statiques effectifs
N.B. une horloge formelle est soit None (base) soit l'index d'une
entrée (0..nb entrées-1). Les formal-clocks sont créées au cours du
type-checking (et pas du clock-checking)
*)
and node_exp = {
node_key_eff : node_key;
inlist_eff : var_info list;
outlist_eff : var_info list;
loclist_eff : var_info list option;
def_eff : node_def;
has_mem_eff : bool;
is_safe_eff : bool;
lxm : Lxm.t;
}
and type_matches = (type_var * type_) list
and node_def =
| ExternLic
| MetaOpLic
| AbstractLic of node_exp option
| BodyLic of node_body
and node_body = {
asserts_eff : (val_exp srcflagged) list;
eqs_eff : (eq_info srcflagged) list;
}
and item_key = Lv6Id.long
and node_key = item_key * static_arg list
and static_arg =
| ConstStaticArgLic of (Lv6Id.t * const)
| TypeStaticArgLic of (Lv6Id.t * type_)
| NodeStaticArgLic of (Lv6Id.t * node_key)
and sarg_node_eff = node_key * var_info list * var_info list
let (compare_var_info : var_info -> var_info -> int) =
fun v1 v2 ->
if
(v1.var_name_eff = v2.var_name_eff)
&& (v1.var_nature_eff = v2.var_nature_eff)
&& (v1.var_number_eff = v2.var_number_eff)
then
0
else compare v1 v2
(** Type check_flag
Au cours du check, on conserve le statut des idents :
- Checking => en cours de traitement, permet de lever les récursions
- Checked => traité et correct
- Incorrect => déjà marqué comme incorrect (pas besoin d'un nouveau
message d'erreur)
*)
type 'a check_flag =
Checking
| Checked of 'a
| Incorrect
let (profile_of_node_exp : node_exp -> profile) =
fun ne ->
List.map (fun vi -> vi.var_type_eff) ne.inlist_eff,
List.map (fun vi -> vi.var_type_eff) ne.outlist_eff
(** [type_are_compatible t1 t2] checks that t1 is compatible with t2, i.e.,
if t1 = t2 or t1 is abstract and not t2.
*)
let (type_are_compatible : type_ -> type_ -> bool) =
fun te1 te2 -> match te1, te2 with
| External_type_eff (id1), External_type_eff (id2) -> id1 = id2
| External_type_eff _, _ -> true
| Abstract_type_eff _, _ -> true
| TypeVar Any, _ -> true
| _, TypeVar Any -> true
| (TypeVar AnyNum), Real_type_eff | Real_type_eff, (TypeVar AnyNum)
| (TypeVar AnyNum), Int_type_eff | Int_type_eff, (TypeVar AnyNum) -> true
| t1, t2 -> t1 = t2
let (is_extern_type : type_ -> bool) =
fun te -> match te with
| External_type_eff _ -> true
| _ -> false
let (clock_are_equals : clock -> clock -> bool) =
fun c1 c2 -> match c1, c2 with
| On(cid1,_), On(cid2,_) -> cid1 = cid2
| c1, c2 -> c1 = c2
let (var_are_compatible : var_info -> var_info -> bool) =
fun v1 v2 ->
(type_are_compatible v1.var_type_eff v2.var_type_eff) &&
(clock_are_equals (snd v1.var_clock_eff) (snd v2.var_clock_eff))
let ident_of_type = function
| Bool_type_eff -> Lv6Id.out_of_pack "bool"
| Int_type_eff -> Lv6Id.out_of_pack "int"
| Real_type_eff -> Lv6Id.out_of_pack "real"
| External_type_eff id
| Abstract_type_eff (id, _)
| Enum_type_eff (id, _)
| Struct_type_eff (id, _) -> id
| TypeVar Any -> Lv6Id.out_of_pack "any"
| (TypeVar AnyNum) -> Lv6Id.out_of_pack "anynum"
| Array_type_eff(_,_) -> assert false
let (node_key_of_idref : Lv6Id.idref -> node_key) =
fun nkey -> (Lv6Id.long_of_idref nkey, [])
let (node_key_of_ident : string -> node_key) =
fun id -> (Lv6Id.long_of_string id, [])
let rec (subst_type : type_ -> type_ -> type_) =
fun t teff_ext -> match teff_ext with
| Bool_type_eff -> Bool_type_eff
| Int_type_eff -> Int_type_eff
| Real_type_eff -> Real_type_eff
| External_type_eff(l) -> External_type_eff(l)
| Abstract_type_eff(l,t) -> Abstract_type_eff(l,t)
| Enum_type_eff(l,el) -> Enum_type_eff(l,el)
| Array_type_eff(teff_ext,i) ->
Array_type_eff(subst_type t teff_ext, i)
| Struct_type_eff(l, fl) ->
Struct_type_eff(
l, List.map (fun (id,(teff,copt)) -> (id,(subst_type t teff,copt))) fl)
| TypeVar Any
| (TypeVar AnyNum) -> t
let rec subst_matches (matches: type_matches) (t: type_) : type_ =
match t with
| Bool_type_eff
| Int_type_eff
| Real_type_eff
| External_type_eff _
| Enum_type_eff _ -> t
| Array_type_eff(telts,i) ->
Array_type_eff(subst_matches matches telts, i)
| Abstract_type_eff(l,td) ->
Lv6Verbose.exe ~flag:Lv6MainArgs.paranoid ( fun () ->
let t' = Abstract_type_eff(l,subst_matches matches td) in
if t <> t' then assert false
);
t
| Struct_type_eff(l,fl) ->
Lv6Verbose.exe ~flag:Lv6MainArgs.paranoid ( fun () ->
let t' = Struct_type_eff(
l, List.map (fun (id,(teff,copt)) -> (id,(subst_matches matches teff, copt))) fl)
in
if t <> t' then assert false
);
t
| TypeVar tvar ->
try (List.assoc tvar matches) with Not_found -> t
let apply_type_matches (matches: type_matches) (tl: type_ list) : type_ list =
match matches with
| [] -> tl
| _ -> List.map (subst_matches matches) tl
let rec (type_is_poly : type_ -> bool) =
fun t -> match t with
| Bool_type_eff
| Int_type_eff
| Real_type_eff
| External_type_eff _
| Enum_type_eff(_) -> false
| Abstract_type_eff (_id,te) -> type_is_poly te
| TypeVar Any
| (TypeVar AnyNum) -> true
| Array_type_eff(teff_ext,_i) -> type_is_poly teff_ext
| Struct_type_eff(_l, fl) ->
List.exists (fun (_,(teff,_)) -> type_is_poly teff) fl
let node_is_poly (ne:node_exp) : bool =
let varispoly v = type_is_poly v.var_type_eff in
List.exists varispoly ne.inlist_eff
||
List.exists varispoly ne.outlist_eff
let node_is_extern (ne:node_exp) : bool =
match ne.def_eff with
| ExternLic -> true
| _ -> false
let (is_extern_const : const -> bool) =
fun te -> match te with
| Extern_const_eff _
| Abstract_const_eff (_,_,_, true) -> true
| _ -> false
let (val_exp_is_constant : val_exp -> bool) = function
| { ve_core = CallByPosLic({it=(CONST_REF _ | CONST _); _}, _);_ } -> true
| _ -> false
let type_of_val_exp ve = ve.ve_typ
let rec lxm_of_val_exp ve =
match ve.ve_core with
| CallByPosLic (x,_) -> x.src
| CallByNameLic (x, _) -> x.src
| Merge(ve, _) -> lxm_of_val_exp ve
let min_lxm lxm1 lxm2 =
if (line lxm1) = 0 then lxm2 else
if (line lxm1) = (line lxm2) then
if (cstart lxm1) < (cstart lxm2) then lxm1 else lxm2
else if (line lxm1) < (line lxm2) then lxm1 else lxm2
let max_lxm lxm1 lxm2 =
if (line lxm1) = (line lxm2) then
if (cend lxm1) > (cend lxm2) then lxm1 else lxm2
else if (line lxm1) > (line lxm2) then lxm1 else lxm2
let (type_of_const: const -> type_) =
function
| Bool_const_eff _ -> Bool_type_eff
| Int_const_eff _ -> Int_type_eff
| Real_const_eff _ -> Real_type_eff
| Extern_const_eff (_s, teff) -> teff
| Abstract_const_eff (_s, teff, _v, _is_exported) -> teff
| Enum_const_eff (_s, teff) -> teff
| Struct_const_eff (_fl, teff) -> teff
| Array_const_eff (ct, teff) -> Array_type_eff (teff, List.length ct)
| Tuple_const_eff _cl ->
print_internal_error "Lic.type_of_const" "should not have been called for a tuple";
assert false
let (types_of_const: const -> type_ list) =
function
| Tuple_const_eff cl -> List.map type_of_const cl
| c -> [type_of_const c]
let (true_type_of_const: const -> type_) =
function
| Abstract_const_eff (_s, teff, _v, _is_exported) -> teff
| teff -> type_of_const teff
let (type_of_left: left -> type_) =
function
| LeftVarLic(vi,_lxm) -> vi.var_type_eff
| LeftFieldLic(_, _, t) -> t
| LeftArrayLic(_, _, t) -> t
| LeftSliceLic(_, _, t) -> t
let rec (lxm_of_left: left -> Lxm.t) =
function
| LeftVarLic(_,lxm) -> lxm
| LeftFieldLic(l, _, _)
| LeftArrayLic(l, _, _)
| LeftSliceLic(l, _, _) -> lxm_of_left l
let rec (var_info_of_left: left -> var_info) =
function
| LeftVarLic (v, _) -> v
| LeftFieldLic(left,_,_) -> var_info_of_left left
| LeftArrayLic(left,_,_) -> var_info_of_left left
| LeftSliceLic(left,_,_) -> var_info_of_left left
let (clock_of_left: left -> clock) =
fun left ->
snd (var_info_of_left left).var_clock_eff
let string_of_ident = Lv6Id.string_of_long_bis false
let rec string_of_type = function
| Bool_type_eff -> "bool"
| Int_type_eff -> "int"
| Real_type_eff -> "real"
| External_type_eff (name) -> (string_of_ident name)
| Abstract_type_eff (name, _t) -> (string_of_ident name)
| Enum_type_eff (name, _) -> (string_of_ident name)
| Array_type_eff (ty, sz) ->
Printf.sprintf "%s^%d" (string_of_type ty) sz
| Struct_type_eff (name, _) -> (string_of_ident name)
| TypeVar Any -> "any"
| (TypeVar AnyNum) -> "anynum"
and string_of_type_list = function
| [] -> ""
| [x] -> string_of_type x
| l -> String.concat " * " (List.map string_of_type l)
and string_of_type_profile (i, o) =
(string_of_type_list i)^" -> "^(string_of_type_list o)
and string_of_clock = function
| BaseLic -> " on base"
| ClockVar i -> " on 'CV"^(string_of_int i)
| On ( (cc,cv,_ct), ck) ->
" on "^(Lv6Id.string_of_long false cc) ^ "("
^ (Lv6Id.to_string cv) ^ ")" ^(string_of_clock ck)
and enum_to_string s ll =
match Lv6MainArgs.global_opt.Lv6MainArgs.expand_enums with
| Lv6MainArgs.AsInt -> (string_of_int (Lv6util.pos_in_list 0 s ll))
| Lv6MainArgs.AsBool
| Lv6MainArgs.AsConst
| Lv6MainArgs.AsEnum -> string_of_ident s
and string_of_const = function
| Bool_const_eff true -> "true"
| Bool_const_eff false -> "false"
| Int_const_eff i -> (sprintf "%s" i)
| Real_const_eff r -> r
| Extern_const_eff (s,_) -> (string_of_ident s)
| Abstract_const_eff (s,_t,_v,_) -> (string_of_ident s)
| Enum_const_eff (s,Enum_type_eff(_,ll)) -> enum_to_string s ll
| Enum_const_eff _ -> assert false
| Struct_const_eff (fl, t) ->
let string_of_field (id, veff) =
(Lv6Id.to_string id)^" = "^ (string_of_const veff)
in
Printf.sprintf "%s{%s}"
(string_of_type t)
(String.concat "; " (List.map string_of_field fl))
| Array_const_eff (ctab, _t) ->
Printf.sprintf "[%s]" (String.concat ", " (List.map string_of_const ctab))
| Tuple_const_eff cl ->
Printf.sprintf "(%s)" (String.concat ", " (List.map string_of_const cl))
and string_of_var_info x =
(AstCore.string_of_var_nature x.var_nature_eff) ^ " " ^
(Lv6Id.to_string x.var_name_eff) ^ ":"^(string_of_type x.var_type_eff)^
(string_of_clock (snd x.var_clock_eff)^"("
^ (Lv6Id.to_string (fst x.var_clock_eff)) ^","^
(string_of_int x.var_number_eff)^")")
and string_of_var_list vl = String.concat " ; " (List.map string_of_var_info vl)
and string_of_node_key = function
| (ik, []) ->
(string_of_ident ik)
| (ik, sargs) -> Printf.sprintf "%s<<%s>>"
(string_of_ident ik)
(String.concat ", " (List.map string_of_static_arg sargs))
and string_of_static_arg = function
| ConstStaticArgLic(id, ceff) -> Printf.sprintf "const %s = %s" id (string_of_const ceff)
| TypeStaticArgLic (id, teff) -> Printf.sprintf "type %s = %s" id (string_of_type teff)
| NodeStaticArgLic (id, nk) ->
Printf.sprintf "node %s = %s" id (string_of_node_key nk)
and string_of_type_var tv = string_of_type (TypeVar tv)
and string_of_type_matches pm =
let sotm (tv,t) = Printf.sprintf "%s <- %s"
(string_of_type_var tv) (string_of_type t)
in
String.concat ", " (List.map sotm pm)
let string_of_node_exp ne =
(Printf.sprintf " node_key_eff = %s\n" (string_of_node_key ne.node_key_eff))
^ (Printf.sprintf " inlist_eff = %s\n" (string_of_var_list ne.inlist_eff))
^ (Printf.sprintf " outlist_eff = %s\n" (string_of_var_list ne.outlist_eff))
let create_var_list nat tl =
let pfx = match nat with
| AstCore.VarInput -> "i"
| AstCore.VarOutput -> "o"
| AstCore.VarLocal -> assert false
in
let cpt = ref 1 in
let dovar t = (
let i = !cpt in
let id = Printf.sprintf "%s%d" pfx i in
incr cpt;
{
var_name_eff = id;
var_nature_eff = nat;
var_number_eff = i;
var_type_eff = t;
var_clock_eff = (id, BaseLic);
}
) in List.map dovar tl
let create_var nat t name =
{
var_name_eff = name;
var_nature_eff = nat;
var_number_eff = 0;
var_type_eff = t;
var_clock_eff = (name, BaseLic);
}
exception Compile_node_error of node_key * Lxm.t * string
exception Global_node_error of node_key * string
module TopoSortVarInfo =
TopoSort.Make(
struct
type elt = var_info
type store = (var_info, var_info list) Hashtbl.t
let find_dep tbl x = try Hashtbl.find tbl x with Not_found -> []
let have_dep tbl x = try Hashtbl.find tbl x <> [] with Not_found -> false
let remove_dep tbl x = Hashtbl.remove tbl x; tbl
end
)
let (sort_var_info : var_info list -> var_info list) =
fun vars ->
let vartable = Hashtbl.create (List.length vars) in
let find_direct_dep v _vars =
match snd v.var_clock_eff with
| BaseLic -> None
| ClockVar _ -> None
| On((_cc,cv,_ct), _sclk) ->
flush stdout;
try Some (Hashtbl.find vartable cv)
with Not_found -> None
in
let dep_star vars =
let tbl = Hashtbl.create (List.length vars) in
let rec find_deps v =
if Hashtbl.mem tbl v then Hashtbl.find tbl v else
match find_direct_dep v vars with
| None -> []
| Some v2 ->
let v2_deps = find_deps v2 in
let v_deps = v2::v2_deps in
Hashtbl.replace tbl v v_deps;
v_deps
in
List.iter
(fun v ->
match find_deps v with
| [] -> Hashtbl.remove tbl v
| _::_ -> ()
)
vars;
tbl
in
List.iter (fun v -> Hashtbl.add vartable v.var_name_eff v) vars;
TopoSortVarInfo.f (dep_star vars) vars