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
|
implementation module explicitimports
// compile with reuse unique nodes option
import StdEnv
import syntax, typesupport, parse, checksupport, utilities, checktypes, transform, predef
cUndef :== (-1)
implies a b :== not a || b
:: ImportNrAndIdents =
{ ini_symbol_nr :: !Index
, ini_imp_decl :: !ImportDeclaration
}
:: SolvedImports =
{ si_explicit :: ![([Declaration], Position)]
, si_qualified_explicit :: ![([Declaration], ModuleN, Position)]
, si_implicit :: ![(ModuleN, Position)]
}
markExplImpSymbols :: !Int !*(!*ExplImpInfos,!*SymbolTable) -> (!.[Ident],!(!*ExplImpInfos,!*SymbolTable))
markExplImpSymbols component_nr (expl_imp_info, cs_symbol_table)
# (expl_imp_info_from_component,expl_imp_info) = expl_imp_info![component_nr]
#! nr_of_expl_imp_symbols = size expl_imp_info_from_component
# (new_symbols, expl_imp_info_from_component, cs_symbol_table) = iFoldSt (mark_symbol component_nr) 0 nr_of_expl_imp_symbols ([], expl_imp_info_from_component, cs_symbol_table)
expl_imp_info = {expl_imp_info & [component_nr] = expl_imp_info_from_component}
= (new_symbols, (expl_imp_info, cs_symbol_table))
where
mark_symbol component_nr i (changed_symbols_accu, expl_imp_info_from_component, cs_symbol_table)
# (eii, expl_imp_info_from_component) = expl_imp_info_from_component![i]
(eii_ident, eii) = get_eei_ident eii
expl_imp_info_from_component = {expl_imp_info_from_component & [i] = eii}
(ste, cs_symbol_table) = readPtr eii_ident.id_info cs_symbol_table
cai = { cai_component_nr = component_nr, cai_index = i }
= case ste.ste_kind of
STE_ExplImpComponentNrs component_nrs
# new_ste_kind = STE_ExplImpComponentNrs [cai:component_nrs]
cs_symbol_table = writePtr eii_ident.id_info { ste & ste_kind = new_ste_kind } cs_symbol_table
-> (changed_symbols_accu, expl_imp_info_from_component, cs_symbol_table)
_
# new_ste = { ste & ste_kind = STE_ExplImpComponentNrs [cai], ste_previous = ste }
-> ([eii_ident:changed_symbols_accu], expl_imp_info_from_component, writePtr eii_ident.id_info new_ste cs_symbol_table)
updateExplImpForMarkedSymbol :: !Index !Declaration !SymbolTableEntry !u:{#DclModule} !*ExplImpInfos !*SymbolTable
-> (!u:{#DclModule},!*ExplImpInfos,!*SymbolTable)
updateExplImpForMarkedSymbol mod_index decl {ste_kind=STE_ExplImpComponentNrs component_numbers} dcl_modules expl_imp_infos cs_symbol_table
= foldSt (addExplImpInfo mod_index decl) component_numbers (dcl_modules, expl_imp_infos, cs_symbol_table)
updateExplImpForMarkedSymbol _ _ entry dcl_modules expl_imp_infos cs_symbol_table
= (dcl_modules, expl_imp_infos, cs_symbol_table)
addExplImpInfo :: !Index Declaration !ComponentNrAndIndex !(!u:{#DclModule},!*ExplImpInfos,!*SymbolTable)
-> (!u:{#DclModule},!*ExplImpInfos,!*SymbolTable)
addExplImpInfo mod_index decl { cai_component_nr, cai_index } (dcl_modules, expl_imp_infos, cs_symbol_table)
# (ExplImpInfo eii_ident eii_declaring_modules, expl_imp_infos) = expl_imp_infos![cai_component_nr,cai_index]
(di_belonging, dcl_modules, cs_symbol_table)
= get_belonging_symbol_nrs decl dcl_modules cs_symbol_table
di = { di_decl = decl, di_belonging = di_belonging }
new_expl_imp_info = ExplImpInfo eii_ident (ikhInsert` False mod_index di eii_declaring_modules)
= (dcl_modules, { expl_imp_infos & [cai_component_nr,cai_index] = new_expl_imp_info }, cs_symbol_table)
where
get_belonging_symbol_nrs :: !Declaration !v:{#DclModule} !*SymbolTable
-> (!.NumberSet,!v:{#DclModule},!*SymbolTable)
get_belonging_symbol_nrs decl dcl_modules cs_symbol_table
# (all_belonging_symbols, dcl_modules) = getBelongingSymbols decl dcl_modules
nr_of_belongs = nrOfBelongingSymbols all_belonging_symbols
(_, belonging_bitvect, cs_symbol_table)
= foldlBelongingSymbols set_bit all_belonging_symbols (0, bitvectCreate nr_of_belongs, cs_symbol_table)
= (bitvectToNumberSet belonging_bitvect, dcl_modules, cs_symbol_table)
set_bit {id_info} (bit_nr, bitvect, cs_symbol_table)
# ({ste_kind}, cs_symbol_table) = readPtr id_info cs_symbol_table
= ( bit_nr+1
, case ste_kind of
STE_Empty -> bitvect
STE_BelongingSymbolForExportedSymbol -> bitvect
_ -> bitvectSet bit_nr bitvect
, cs_symbol_table
)
foldlBelongingSymbols f bs st
:== case bs of
BS_Constructors constructors
-> foldSt (\{ds_ident} st -> f ds_ident st) constructors st
BS_Fields fields
-> foldlArraySt (\{fs_ident} st -> f fs_ident st) fields st
BS_Members members
-> foldlArraySt (\{ds_ident} st -> f ds_ident st) members st
BS_Nothing
-> st
/*
imp_decl_to_string (ID_Function {ii_ident={id_name}}) = "ID_Function "+++toString id_name
imp_decl_to_string (ID_Class {ii_ident={id_name}} _) = "ID_Class "+++toString id_name
imp_decl_to_string (ID_Type {ii_ident={id_name}} _) = "ID_Type "+++toString id_name
imp_decl_to_string (ID_Record {ii_ident={id_name}} _) = "ID_Record "+++toString id_name
imp_decl_to_string (ID_Instance {ii_ident={id_name}} _ _ ) = "ID_Instance "+++toString id_name
imp_decl_to_string (ID_OldSyntax idents) = "ID_OldSyntax "+++idents_to_string idents
where
idents_to_string [] = ""
idents_to_string [{id_name}] = toString id_name
idents_to_string [{id_name}:l] = toString id_name+++","+++idents_to_string l
*/
getBelongingSymbolsFromID :: !ImportDeclaration -> Optional [Ident]
getBelongingSymbolsFromID (ID_Class _ x) = x
getBelongingSymbolsFromID (ID_Type _ x) = x
getBelongingSymbolsFromID (ID_Record _ x) = x
getBelongingSymbolsFromID _ = No
solveExplicitImports :: !(IntKeyHashtable [ExplicitImport]) !{#Int} !Index
!*(!v:{#DclModule},!*{#Int},!{!*ExplImpInfo},!*CheckState)
-> (!.SolvedImports,! (!v:{#DclModule},!.{#Int},!{!.ExplImpInfo},!.CheckState))
solveExplicitImports expl_imp_indices_ikh modules_in_component_set importing_mod (dcl_modules, visited_modules, expl_imp_info, cs)
# import_indices = ikhSearch` importing_mod expl_imp_indices_ikh
(expl_imp_indices,qualified_expl_imp_indices,impl_imports) = split_imports import_indices
state = (dcl_modules, visited_modules, expl_imp_info, cs)
path = [importing_mod]
(expl_imports, state)
= mapSt (solve_expl_imp_from_module expl_imp_indices_ikh modules_in_component_set path)
expl_imp_indices state
path = []
(qualified_expl_imports, state)
= mapSt (solve_qualified_expl_imp_from_module expl_imp_indices_ikh modules_in_component_set path)
qualified_expl_imp_indices state
= ({ si_explicit=expl_imports, si_qualified_explicit=qualified_expl_imports, si_implicit=impl_imports }, state)
where
split_imports :: [ExplicitImport] -> (![ExplicitImport],![ExplicitImport],![(Int,Position)])
split_imports [imports:import_indices]
# (expl_imp_indices,qualified_expl_imp_indices,impl_imports) = split_imports import_indices
= case imports of
{ei_symbols=ImportSymbolsOnly _,ei_qualified=NotQualified}
-> ([imports:expl_imp_indices],qualified_expl_imp_indices,impl_imports)
{ei_symbols=ImportSymbolsOnly _}
-> (expl_imp_indices,[imports:qualified_expl_imp_indices],impl_imports)
{ei_symbols=ImportSymbolsAll,ei_module_n,ei_position}
-> (expl_imp_indices,qualified_expl_imp_indices,[(ei_module_n,ei_position):impl_imports])
split_imports []
= ([],[],[])
solve_expl_imp_from_module expl_imp_indices_ikh modules_in_component_set path
{ei_module_n=imported_mod, ei_position=position, ei_symbols=ImportSymbolsOnly imported_symbols} (dcl_modules, visited_modules, expl_imp_info, cs)
# (not_exported_symbols,decl_accu, unsolved_belonging, visited_modules, expl_imp_info)
= search_expl_imp_symbols imported_symbols expl_imp_indices_ikh modules_in_component_set path imported_mod
([],[], [], visited_modules, expl_imp_info)
(expl_imp_info,dcl_modules,cs_error)
= report_not_exported_symbol_errors not_exported_symbols position expl_imp_info imported_mod dcl_modules cs.cs_error
(decl_accu, dcl_modules, visited_modules, expl_imp_info, cs)
= solve_belongings unsolved_belonging position expl_imp_indices_ikh modules_in_component_set path
(decl_accu, dcl_modules, visited_modules, expl_imp_info, { cs & cs_error = cs_error })
= ((decl_accu, position), (dcl_modules, visited_modules, expl_imp_info, cs))
solve_qualified_expl_imp_from_module expl_imp_indices_ikh modules_in_component_set path
{ei_module_n=imported_mod, ei_position=position, ei_symbols=ImportSymbolsOnly imported_symbols} (dcl_modules, visited_modules, expl_imp_info, cs)
# (not_exported_symbols,decl_accu, unsolved_belonging, visited_modules, expl_imp_info)
= search_qualified_expl_imp_symbols imported_symbols expl_imp_indices_ikh modules_in_component_set path imported_mod
([],[], [], visited_modules, expl_imp_info)
(expl_imp_info,dcl_modules,cs_error)
= report_not_exported_symbol_errors not_exported_symbols position expl_imp_info imported_mod dcl_modules cs.cs_error
(decl_accu, dcl_modules, visited_modules, expl_imp_info, cs)
= solve_belongings unsolved_belonging position expl_imp_indices_ikh modules_in_component_set path
(decl_accu, dcl_modules, visited_modules, expl_imp_info, { cs & cs_error = cs_error })
= ((decl_accu, imported_mod, position), (dcl_modules, visited_modules, expl_imp_info, cs))
search_expl_imp_symbols imported_symbols expl_imp_indices_ikh modules_in_component_set path imported_mod state
= foldSt (search_expl_imp_symbol expl_imp_indices_ikh modules_in_component_set path imported_mod)
imported_symbols state
search_qualified_expl_imp_symbols imported_symbols expl_imp_indices_ikh modules_in_component_set path imported_mod state
= foldSt (search_qualified_expl_imp_symbol expl_imp_indices_ikh modules_in_component_set path imported_mod)
imported_symbols state
solve_belongings unsolved_belonging position expl_imp_indices_ikh modules_in_component_set path state
= foldSt (solve_belonging position expl_imp_indices_ikh modules_in_component_set path)
unsolved_belonging state
solve_belonging position expl_imp_indices_ikh modules_in_component_set path
(decl, {ini_symbol_nr, ini_imp_decl}, imported_mod)
(decls_accu, dcl_modules, visited_modules, expl_imp_info, cs=:{cs_error, cs_symbol_table})
# (Yes belongs) = getBelongingSymbolsFromID ini_imp_decl
(all_belongs, dcl_modules) = get_all_belongs decl dcl_modules
(ExplImpInfo eii_ident eii_declaring_modules, expl_imp_info) = expl_imp_info![ini_symbol_nr]
(need_all, belongs_set, cs_error, cs_symbol_table)
= case belongs of
[]
// an import like ::A(..) or ::A{..} or class c{..}
-> (False, [(belong_nr, belong_ident) \\ belong_nr<-[0..] & belong_ident<-all_belongs],
cs_error, cs_symbol_table)
_
// an import like ::A(C1, C2) or ::A{f1} or class c{m1}
# (nr_of_belongs, cs_symbol_table)
= foldSt numerate_belongs all_belongs (0, cs_symbol_table)
belongs_bitvect = bitvectCreate nr_of_belongs
(belongs_set, (cs_error, cs_symbol_table))
= mapFilterYesSt (get_opt_nr_and_ident position eii_ident) belongs (cs_error, cs_symbol_table)
cs_symbol_table = foldSt restoreHeap all_belongs cs_symbol_table
-> (True, belongs_set, cs_error, cs_symbol_table)
(decls_accu, dcl_modules, eii_declaring_modules, visited_modules, cs_error)
= foldSt
(search_belonging need_all position eii_ident decl expl_imp_indices_ikh modules_in_component_set
imported_mod ini_symbol_nr path)
belongs_set (decls_accu, dcl_modules, eii_declaring_modules, visited_modules, cs_error)
expl_imp_info = { expl_imp_info & [ini_symbol_nr] = ExplImpInfo eii_ident eii_declaring_modules }
= (decls_accu, dcl_modules, visited_modules, expl_imp_info, { cs & cs_error = cs_error, cs_symbol_table = cs_symbol_table })
search_belonging need_all position eii_ident decl expl_imp_indices_ikh modules_in_component_set imported_mod ini_symbol_nr path
(belong_nr, belong_ident) (decls_accu, dcl_modules, eii_declaring_modules, visited_modules, cs_error)
# (found, path, eii_declaring_modules, visited_modules)
= depth_first_search expl_imp_indices_ikh modules_in_component_set
imported_mod ini_symbol_nr belong_nr belong_ident path
eii_declaring_modules (bitvectResetAll visited_modules)
= case found of
Yes _
# eii_declaring_modules = foldSt (store_belonging belong_nr ini_symbol_nr) path eii_declaring_modules
(belong_decl, dcl_modules) = get_nth_belonging_decl position belong_nr decl dcl_modules
-> ([belong_decl:decls_accu], dcl_modules, eii_declaring_modules, visited_modules, cs_error)
_
| need_all
# (module_name,dcl_modules)=dcl_modules![imported_mod].dcl_name.id_name
cs_error = pushErrorAdmin (newPosition import_ident position) cs_error
cs_error = checkError belong_ident ("of "+++eii_ident.id_name+++" not exported by module "+++module_name) cs_error
cs_error = popErrorAdmin cs_error
-> (decls_accu, dcl_modules, eii_declaring_modules, visited_modules, cs_error)
-> (decls_accu, dcl_modules, eii_declaring_modules, visited_modules, cs_error)
store_belonging belong_nr ini_symbol_nr mod_index eii_declaring_modules
# (Yes di=:{di_belonging}, eii_declaring_modules)
= ikhUSearch mod_index eii_declaring_modules
(new, eii_declaring_modules)
= ikhInsert True mod_index { di & di_belonging = addNr belong_nr di_belonging } eii_declaring_modules
| new
= abort "sanity check failed in module explicitimports"
= eii_declaring_modules
get_nth_belonging_decl position belong_nr decl=:(Declaration {decl_kind}) dcl_modules
# (STE_Imported _ def_mod_index) = decl_kind
(belongin_symbols, dcl_modules) = getBelongingSymbols decl dcl_modules
= case belongin_symbols of
BS_Constructors constructors
# {ds_ident, ds_index} = constructors!!belong_nr
-> (Declaration { decl_ident = ds_ident, decl_pos = position,
decl_kind = STE_Imported STE_Constructor def_mod_index,
decl_index = ds_index }, dcl_modules)
BS_Fields rt_fields
# {fs_ident, fs_index} = rt_fields.[belong_nr]
({sd_ident}, dcl_modules)
= dcl_modules![def_mod_index].dcl_common.com_selector_defs.[fs_index]
-> (Declaration { decl_ident = fs_ident, decl_pos = position,
decl_kind = STE_Imported (STE_Field sd_ident) def_mod_index,
decl_index = fs_index }, dcl_modules)
BS_Members class_members
# {ds_ident, ds_index} = class_members.[belong_nr]
-> (Declaration { decl_ident = ds_ident, decl_pos = position,
decl_kind = STE_Imported STE_Member def_mod_index,
decl_index = ds_index }, dcl_modules)
get_all_belongs decl=:(Declaration {decl_kind,decl_index}) dcl_modules
# (belonging_symbols, dcl_modules) = getBelongingSymbols decl dcl_modules
= case belonging_symbols of
BS_Constructors constructors
-> ([ds_ident \\ {ds_ident}<-constructors], dcl_modules)
BS_Fields rt_fields
-> ([fs_ident \\ {fs_ident}<-:rt_fields], dcl_modules)
BS_Members class_members
-> ([ds_ident \\ {ds_ident}<-:class_members], dcl_modules)
BS_Nothing
-> ([], dcl_modules)
numerate_belongs {id_info} (i, cs_symbol_table)
# (ste, cs_symbol_table) = readPtr id_info cs_symbol_table
new_ste = { ste & ste_kind = STE_BelongingSymbol i, ste_previous = ste }
= (i+1, writePtr id_info new_ste cs_symbol_table)
get_opt_nr_and_ident position eii_ident ii_ident=:{id_info} (cs_error, cs_symbol_table)
# ({ste_kind}, cs_symbol_table) = readPtr id_info cs_symbol_table
= case ste_kind of
STE_BelongingSymbol i
-> (Yes (i, ii_ident), (cs_error, cs_symbol_table))
_
# cs_error = pushErrorAdmin (newPosition import_ident position) cs_error
cs_error = checkError ii_ident ("does not belong to "+++eii_ident.id_name) cs_error
-> (No, (popErrorAdmin cs_error, cs_symbol_table))
search_expl_imp_symbol :: (IntKeyHashtable [ExplicitImport]) {#Int} [Int] Int ImportNrAndIdents
*([ImportNrAndIdents],[Declaration],[(Declaration,ImportNrAndIdents,Int)],*{#Int},*{!*ExplImpInfo})
-> ([ImportNrAndIdents],[Declaration],[(Declaration,ImportNrAndIdents,Int)],*{#Int},*{!*ExplImpInfo})
search_expl_imp_symbol expl_imp_indices_ikh modules_in_component_set path imported_mod
ini=:{ini_symbol_nr} (not_exported_symbols,decls_accu, belonging_accu, visited_modules, expl_imp_info)
# (ExplImpInfo eii_ident eii_declaring_modules, expl_imp_info) = expl_imp_info![ini_symbol_nr]
(opt_decl, path, eii_declaring_modules, visited_modules)
= depth_first_search expl_imp_indices_ikh modules_in_component_set imported_mod
ini_symbol_nr cUndef stupid_ident path
eii_declaring_modules (bitvectResetAll visited_modules)
= case opt_decl of
Yes di=:{di_decl=di_decl=:Declaration {decl_kind}}
| is_not_STE_member decl_kind
# new_eii_declaring_modules = update_declaring_modules di_decl path eii_declaring_modules
expl_imp_info = {expl_imp_info & [ini_symbol_nr] = ExplImpInfo eii_ident new_eii_declaring_modules}
new_belonging_accu = update_belonging_accu di_decl ini imported_mod belonging_accu
-> (not_exported_symbols,[di_decl:decls_accu], new_belonging_accu, visited_modules, expl_imp_info)
_
# expl_imp_info = {expl_imp_info & [ini_symbol_nr] = ExplImpInfo eii_ident eii_declaring_modules}
-> ([ini:not_exported_symbols],decls_accu, belonging_accu, visited_modules, expl_imp_info)
search_qualified_expl_imp_symbol :: (IntKeyHashtable [ExplicitImport]) {#Int} [Int] Int ImportNrAndIdents
*([ImportNrAndIdents],[Declaration],[(Declaration,ImportNrAndIdents,Int)],*{#Int},*{!*ExplImpInfo})
-> ([ImportNrAndIdents],[Declaration],[(Declaration,ImportNrAndIdents,Int)],*{#Int},*{!*ExplImpInfo})
search_qualified_expl_imp_symbol expl_imp_indices_ikh modules_in_component_set path imported_mod
ini=:{ini_symbol_nr} (not_exported_symbols,decls_accu, belonging_accu, visited_modules, expl_imp_info)
# (ExplImpInfo eii_ident eii_declaring_modules, expl_imp_info) = expl_imp_info![ini_symbol_nr]
(opt_decl, path, eii_declaring_modules, visited_modules)
= depth_first_search expl_imp_indices_ikh modules_in_component_set imported_mod
ini_symbol_nr cUndef stupid_ident path
eii_declaring_modules (bitvectResetAll visited_modules)
= case opt_decl of
Yes di=:{di_decl}
# new_eii_declaring_modules = update_declaring_modules di_decl path eii_declaring_modules
expl_imp_info = {expl_imp_info & [ini_symbol_nr] = ExplImpInfo eii_ident new_eii_declaring_modules}
new_belonging_accu = update_belonging_accu di_decl ini imported_mod belonging_accu
-> (not_exported_symbols,[di_decl:decls_accu], new_belonging_accu, visited_modules, expl_imp_info)
_
# expl_imp_info = {expl_imp_info & [ini_symbol_nr] = ExplImpInfo eii_ident eii_declaring_modules}
-> ([ini:not_exported_symbols],decls_accu, belonging_accu, visited_modules, expl_imp_info)
is_not_STE_member (STE_Imported STE_Member _) = False
is_not_STE_member STE_Member = False
is_not_STE_member _ = True
update_declaring_modules di_decl path eii_declaring_modules
= foldSt (\mod_index eei_dm->ikhInsert` False mod_index {di_decl = di_decl, di_belonging=EndNumbers} eei_dm) path eii_declaring_modules
update_belonging_accu di_decl ini imported_mod belonging_accu
= case getBelongingSymbolsFromID ini.ini_imp_decl of
No -> belonging_accu
Yes _ -> [(di_decl, ini, imported_mod):belonging_accu]
depth_first_search expl_imp_indices_ikh modules_in_component_set
imported_mod imported_symbol belong_nr belong_ident path eii_declaring_modules visited_modules
// | False--->("depth_first_search imported_mod", imported_mod, "imported_symbol", imported_symbol)
// = undef
# (search_result, eii_declaring_modules) = ikhUSearch imported_mod eii_declaring_modules
= case search_result of
yes_di=:(Yes di)
| belong_nr==cUndef
-> (yes_di, path, eii_declaring_modules, visited_modules)
| inNumberSet belong_nr di.di_belonging
-> (yes_di, path, eii_declaring_modules, visited_modules)
_
| not (bitvectSelect imported_mod modules_in_component_set)
// the eii_declaring_modules is complete for modules that are outside
// (=beneath) the actual component=> no need to search further
-> (No, [], eii_declaring_modules, visited_modules)
# imports_of_imported_mod = ikhSearch` imported_mod expl_imp_indices_ikh
-> try_children imports_of_imported_mod expl_imp_indices_ikh
modules_in_component_set imported_symbol belong_nr belong_ident
[imported_mod:path]
eii_declaring_modules (bitvectSet imported_mod visited_modules)
try_children [{ei_module_n=imp_imp_mod,ei_symbols}:imports] expl_imp_indices_ikh
modules_in_component_set imported_symbol belong_nr belong_ident path eii_declaring_modules visited_modules
| bitvectSelect imp_imp_mod visited_modules
= try_children imports expl_imp_indices_ikh modules_in_component_set imported_symbol
belong_nr belong_ident path eii_declaring_modules visited_modules
= case ei_symbols of
ImportSymbolsAll
-> continue imp_imp_mod imports expl_imp_indices_ikh modules_in_component_set imported_symbol
belong_nr belong_ident path eii_declaring_modules visited_modules
ImportSymbolsOnly imp_imp_symbols
// follow the path trough an explicit import only if the symbol is listed there
# (found, opt_belongs)
= search_imported_symbol imported_symbol imp_imp_symbols
| not (found && implies (belong_nr<>cUndef) (belong_ident_found belong_ident opt_belongs))
-> try_children imports expl_imp_indices_ikh modules_in_component_set imported_symbol
belong_nr belong_ident path eii_declaring_modules visited_modules
-> continue imp_imp_mod imports expl_imp_indices_ikh modules_in_component_set imported_symbol
belong_nr belong_ident path eii_declaring_modules visited_modules
where
continue imp_imp_mod imports expl_imp_indices_ikh modules_in_component_set imported_symbol
belong_nr belong_ident path eii_declaring_modules visited_modules
# (opt_decl, path, eii_declaring_modules, visited_modules)
= depth_first_search expl_imp_indices_ikh modules_in_component_set imp_imp_mod
imported_symbol belong_nr belong_ident path eii_declaring_modules visited_modules
= case opt_decl of
Yes _
-> (opt_decl, path, eii_declaring_modules, visited_modules)
No
-> try_children imports expl_imp_indices_ikh modules_in_component_set
imported_symbol belong_nr belong_ident path eii_declaring_modules visited_modules
try_children [] expl_imp_indices_ikh _ imported_symbol belong_nr belong_ident path
eii_declaring_modules visited_modules
= (No, [], eii_declaring_modules, visited_modules)
search_imported_symbol :: !Int ![ImportNrAndIdents] -> (!Bool, !Optional [Ident])
search_imported_symbol imported_symbol []
= (False, No)
search_imported_symbol imported_symbol [{ini_symbol_nr, ini_imp_decl}:t]
| imported_symbol==ini_symbol_nr
= (True, getBelongingSymbolsFromID ini_imp_decl)
= search_imported_symbol imported_symbol t
belong_ident_found :: !Ident !(Optional [Ident]) -> Bool
belong_ident_found belong_ident No
// like from m import ::T
= False
belong_ident_found belong_ident (Yes [])
// like from m import ::T(..)
= True
belong_ident_found belong_ident (Yes import_list)
// like from m import ::T(C1,C2)
= is_member belong_ident import_list
is_member :: !Ident ![Ident] -> Bool
is_member belong_ident []
= False
is_member belong_ident [ii_ident:t]
| belong_ident==ii_ident
= True
= is_member belong_ident t
report_not_exported_symbol_errors [{ini_symbol_nr,ini_imp_decl}:not_exported_symbols] position expl_imp_info imported_mod dcl_modules cs_error
# (eii, expl_imp_info) = expl_imp_info![ini_symbol_nr]
(eii_ident, eii) = get_eei_ident eii
expl_imp_info = {expl_imp_info & [ini_symbol_nr] = eii}
(module_name,dcl_modules)=dcl_modules![imported_mod].dcl_name.id_name
cs_error = popErrorAdmin (checkError eii_ident
("not exported as a "+++impDeclToNameSpaceString ini_imp_decl +++" by module "+++module_name)
(pushErrorAdmin (newPosition import_ident position) cs_error))
= report_not_exported_symbol_errors not_exported_symbols position expl_imp_info imported_mod dcl_modules cs_error
report_not_exported_symbol_errors [] position expl_imp_info imported_mod dcl_modules cs_error
= (expl_imp_info,dcl_modules,cs_error)
impDeclToNameSpaceString (ID_Function _) = "function/macro"
impDeclToNameSpaceString (ID_Class _ _) = "class"
impDeclToNameSpaceString (ID_Type _ _) = "type"
impDeclToNameSpaceString (ID_Record _ _) = "type"
impDeclToNameSpaceString (ID_Instance _ _ _)= "instance"
get_eei_ident (eii=:ExplImpInfo eii_ident _) = (eii_ident, eii)
:: CheckCompletenessState =
{ ccs_dcl_modules :: !.{#DclModule}
, ccs_macro_defs :: !.{#.{#FunDef}}
, ccs_set_of_visited_macros :: !.{#.{#Bool}}
, ccs_expr_heap :: !.ExpressionHeap
, ccs_symbol_table :: !.SymbolTable
, ccs_error :: !.ErrorAdmin
, ccs_heap_changes_accu :: ![SymbolPtr]
}
:: CheckCompletenessStateBox = { box_ccs :: !.CheckCompletenessState }
:: CheckCompletenessInput =
{ cci_import_position :: !Position
, cci_main_dcl_module_n :: !Int
}
:: CheckCompletenessInputBox = { box_cci :: !CheckCompletenessInput }
checkExplicitImportCompleteness :: ![([Declaration], Position)] ![([Declaration], Int, Position)]
!*{#DclModule} !*{#*{#FunDef}} !*ExpressionHeap !*CheckState
-> (!.{#DclModule},!*{#*{#FunDef}},!.ExpressionHeap,!.CheckState)
checkExplicitImportCompleteness dcls_explicit explicit_qualified_imports dcl_modules macro_defs expr_heap cs=:{cs_symbol_table, cs_error}
#! n_dcl_modules = size dcl_modules
# (modified_symbol_ptrs,cs_symbol_table) = store_qualified_explicitly_imported_symbols_in_symbol_table explicit_qualified_imports [] cs_symbol_table
box_ccs = { ccs_dcl_modules = dcl_modules, ccs_macro_defs=macro_defs,
ccs_set_of_visited_macros = { {} \\ module_n<-[0..n_dcl_modules-1]},
ccs_expr_heap = expr_heap, ccs_symbol_table = cs_symbol_table,
ccs_error = cs_error, ccs_heap_changes_accu = modified_symbol_ptrs }
main_dcl_module_n = cs.cs_x.x_main_dcl_module_n
ccs = foldSt (\(dcls, position) ccs
-> foldSt (checkCompleteness main_dcl_module_n position) dcls ccs)
dcls_explicit
{ box_ccs = box_ccs }
{ ccs_dcl_modules, ccs_macro_defs,ccs_expr_heap, ccs_symbol_table, ccs_error, ccs_heap_changes_accu } = ccs.box_ccs
// repair heap contents
ccs_symbol_table = restore_symbol_table_after_checking_completeness ccs_heap_changes_accu ccs_symbol_table
cs = { cs & cs_symbol_table = ccs_symbol_table, cs_error = ccs_error }
= (ccs_dcl_modules, ccs_macro_defs, ccs_expr_heap, cs)
where
checkCompleteness :: !Int !Position !Declaration !*CheckCompletenessStateBox -> *CheckCompletenessStateBox
checkCompleteness main_dcl_module_n import_position (Declaration {decl_ident, decl_index, decl_kind=STE_Imported expl_imp_kind mod_index}) ccs
#! ({dcl_common,dcl_functions}, ccs) = ccs!box_ccs.ccs_dcl_modules.[mod_index]
cci = { box_cci = { cci_import_position = import_position, cci_main_dcl_module_n=main_dcl_module_n }}
= continuation expl_imp_kind dcl_common dcl_functions cci ccs
where
continuation :: !STE_Kind CommonDefs !{# FunType} !CheckCompletenessInputBox !*CheckCompletenessStateBox
-> *CheckCompletenessStateBox
continuation STE_Type dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_type_defs.[decl_index] cci ccs
continuation STE_Constructor dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_cons_defs.[decl_index] cci ccs
continuation (STE_Field _) dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_selector_defs.[decl_index] cci ccs
continuation STE_Class dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_class_defs.[decl_index] cci ccs
continuation STE_Member dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_member_defs.[decl_index] cci ccs
continuation STE_Instance dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_instance_defs.[decl_index] cci ccs
continuation STE_DclFunction dcl_common dcl_functions cci ccs
= check_completeness dcl_functions.[decl_index] cci ccs
continuation (STE_DclMacroOrLocalMacroFunction _) dcl_common dcl_functions cci ccs
# (macro,ccs) = ccs!box_ccs.ccs_macro_defs.[mod_index,decl_index]
= check_completeness macro cci ccs
continuation STE_Generic dcl_common dcl_functions cci ccs
= check_completeness dcl_common.com_generic_defs.[decl_index] cci ccs
instance toString STE_Kind where
toString (STE_FunctionOrMacro _) = "function/macro"
toString (STE_DclMacroOrLocalMacroFunction _) = "macro"
toString STE_Type = "type"
toString STE_Constructor = "constructor"
toString (STE_Field _) = "field"
toString STE_Class = "class"
toString STE_Member = "class member"
toString STE_Generic = "generic" //AA
toString STE_Instance = "instance"
toString ste = "<<unknown symbol kind>>"
check_whether_ident_is_imported :: !Ident !Int !Int !STE_Kind !CheckCompletenessInputBox !*CheckCompletenessStateBox
-> *CheckCompletenessStateBox
check_whether_ident_is_imported ident module_n symbol_index wanted_ste_kind cci ccs=:{box_ccs=box_ccs=:{ccs_symbol_table}}
#! (ste=:{ste_kind,ste_index}, ccs_symbol_table) = readPtr ident.id_info ccs_symbol_table
ccs = { ccs & box_ccs = {box_ccs & ccs_symbol_table = ccs_symbol_table } }
| is_imported ste_kind wanted_ste_kind symbol_index module_n ste_index
= ccs
#! (ccs=:{box_ccs=box_ccs=:{ccs_symbol_table, ccs_error, ccs_heap_changes_accu}}) = ccs
# {box_cci={cci_import_position}} = cci
ccs_error = checkErrorWithIdentPos (newPosition { id_name="import", id_info=nilPtr } cci_import_position)
(" "+++toString wanted_ste_kind+++" "+++toString ident.id_name+++" not imported") ccs_error
// pretend that the unimported symbol was imported to prevent doubling error mesages
ccs_symbol_table = writePtr ident.id_info { ste & ste_kind = STE_ExplImpSymbolNotImported module_n ste_kind } ccs_symbol_table
ccs_heap_changes_accu = case ste_kind of
STE_ExplImpSymbolNotImported _ _
-> ccs_heap_changes_accu
STE_ImportedQualified _ _
-> ccs_heap_changes_accu
_
-> [ident.id_info:ccs_heap_changes_accu]
= { ccs & box_ccs = { box_ccs & ccs_error = ccs_error, ccs_symbol_table = ccs_symbol_table, ccs_heap_changes_accu = ccs_heap_changes_accu }}
where
is_imported :: !STE_Kind !STE_Kind !Int !Int !Int -> Bool
is_imported (STE_Imported ste_kind ste_module_n) wanted_ste_kind symbol_index module_n ste_index
= ste_module_n==module_n && ste_index==symbol_index && ste_kind==wanted_ste_kind
is_imported (STE_ImportedQualified (Declaration {decl_index,decl_kind=STE_Imported decl_kind decl_module_n}) ste_kind) wanted_ste_kind symbol_index module_n ste_index
| decl_module_n==module_n && decl_index==symbol_index && decl_kind==wanted_ste_kind
= True
= is_imported ste_kind wanted_ste_kind symbol_index module_n ste_index
is_imported (STE_ExplImpSymbolNotImported ste_module_n ste_kind) wanted_ste_kind symbol_index module_n ste_index
| module_n==ste_module_n
= True
= is_imported ste_kind wanted_ste_kind symbol_index module_n ste_index
is_imported ste_kind wanted_ste_kind symbol_index module_n ste_index
= cci.box_cci.cci_main_dcl_module_n==module_n && ste_index==symbol_index && ste_kind==wanted_ste_kind
class check_completeness x :: !x !CheckCompletenessInputBox !*CheckCompletenessStateBox -> *CheckCompletenessStateBox
instance check_completeness App where
check_completeness {app_symb, app_args} cci ccs
= check_completeness app_symb cci
(check_completeness app_args cci ccs)
instance check_completeness AlgebraicPattern where
check_completeness {ap_symbol={glob_module,glob_object={ds_ident,ds_index}}, ap_expr} cci ccs
= check_completeness ap_expr cci
(check_whether_ident_is_imported ds_ident glob_module ds_index STE_Constructor cci ccs)
instance check_completeness AType where
check_completeness {at_type} cci ccs
= check_completeness at_type cci ccs
instance check_completeness BasicPattern where
check_completeness {bp_expr} cci ccs
= check_completeness bp_expr cci ccs
instance check_completeness LetBind where
check_completeness {lb_src} cci ccs
= check_completeness lb_src cci ccs
instance check_completeness Case where
check_completeness { case_expr, case_guards, case_default } cci ccs
= ( (check_completeness case_expr cci)
o (check_completeness case_guards cci)
o (check_completeness case_default cci)
) ccs
instance check_completeness CasePatterns where
check_completeness (AlgebraicPatterns _ algebraicPatterns) cci ccs
= check_completeness algebraicPatterns cci ccs
check_completeness (BasicPatterns _ basicPatterns) cci ccs
= check_completeness basicPatterns cci ccs
check_completeness (OverloadedListPatterns _ _ algebraicPatterns) cci ccs
= check_completeness algebraicPatterns cci ccs
check_completeness (DynamicPatterns dynamicPatterns) cci ccs
= check_completeness dynamicPatterns cci ccs
check_completeness NoPattern _ ccs
= ccs
instance check_completeness CheckedAlternative where
check_completeness {ca_rhs} cci ccs
= check_completeness ca_rhs cci ccs
instance check_completeness CheckedBody where
check_completeness {cb_rhs} cci ccs
= check_completeness cb_rhs cci ccs
instance check_completeness ClassDef where
check_completeness {class_context} cci ccs
= check_completeness class_context cci ccs
instance check_completeness ClassInstance where
check_completeness {ins_class_index={gi_module,gi_index},ins_class_ident={ci_ident=Ident class_ident},ins_type} cci ccs
= check_completeness ins_type cci
(check_whether_ident_is_imported class_ident gi_module gi_index STE_Class cci ccs)
instance check_completeness ConsDef
where
check_completeness {cons_type} cci ccs
= check_completeness cons_type cci ccs
instance check_completeness DynamicPattern where
check_completeness { dp_rhs, dp_type } cci ccs
= check_completeness dp_rhs cci
(check_completeness_of_dyn_expr_ptr cci dp_type ccs)
instance check_completeness DynamicExpr where
check_completeness { dyn_expr, dyn_opt_type } cci ccs
= check_completeness dyn_expr cci
(check_completeness dyn_opt_type cci ccs)
instance check_completeness DynamicType where
check_completeness { dt_type } cci ccs
= check_completeness dt_type cci ccs
instance check_completeness Expression where
check_completeness (Var _) cci ccs
= ccs
check_completeness (App app) cci ccs
= check_completeness app cci ccs
check_completeness (expression @ expressions) cci ccs
= check_completeness expression cci
(check_completeness expressions cci ccs)
check_completeness (Let lad) cci ccs
= check_completeness lad cci ccs
check_completeness (Case keesje) cci ccs
= check_completeness keesje cci ccs
check_completeness (Selection _ expression selections) cci ccs
= check_completeness expression cci
(check_completeness selections cci ccs)
check_completeness (TupleSelect _ _ expression) cci ccs
= check_completeness expression cci ccs
check_completeness (BasicExpr _) _ ccs
= ccs
check_completeness (AnyCodeExpr _ _ _) _ ccs
= ccs
check_completeness (ABCCodeExpr _ _) _ ccs
= ccs
check_completeness (Update expr1 selections expr2) cci ccs
= ( (check_completeness expr1 cci)
o (check_completeness selections cci)
o (check_completeness expr2) cci
) ccs
check_completeness (MatchExpr {glob_module,glob_object={ds_ident,ds_index}} expression) cci ccs
= check_completeness expression cci
(check_whether_ident_is_imported ds_ident glob_module ds_index STE_Constructor cci ccs)
check_completeness (IsConstructor expr {glob_module,glob_object={ds_ident,ds_index}} _ _ _ _) cci ccs
= check_completeness expr cci
(check_whether_ident_is_imported ds_ident glob_module ds_index STE_Constructor cci ccs)
check_completeness (FreeVar _) _ ccs
= ccs
check_completeness (DynamicExpr dynamicExpr) cci ccs
= check_completeness dynamicExpr cci ccs
check_completeness EE _ ccs
= ccs
check_completeness expr _ _
= abort "explicitimports:check_completeness (Expression) does not match" //<<- expr
instance check_completeness FunctionBody where
check_completeness (CheckedBody body) cci ccs
= check_completeness body cci ccs
check_completeness (TransformedBody body) cci ccs
= check_completeness body cci ccs
check_completeness (RhsMacroBody body) cci ccs
= check_completeness body cci ccs
instance check_completeness FunDef where
check_completeness {fun_type, fun_body, fun_info} cci ccs
= ( (check_completeness fun_type cci)
o (check_completeness fun_body cci)
o (check_completeness_of_dyn_expr_ptrs cci fun_info.fi_dynamics)
) ccs
instance check_completeness FunType where
check_completeness {ft_type} cci ccs
= check_completeness ft_type cci ccs
instance check_completeness GenericDef where
check_completeness {gen_type} cci ccs
= check_completeness gen_type cci ccs
instance check_completeness (Global x) | check_completeness x where
check_completeness { glob_object } cci ccs
= check_completeness glob_object cci ccs
instance check_completeness InstanceType where
check_completeness {it_types, it_context} cci ccs
= check_completeness it_types cci
(check_completeness it_context cci ccs)
instance check_completeness Let where
check_completeness { let_strict_binds, let_lazy_binds, let_expr } cci ccs
= ( (check_completeness let_expr cci)
o (check_completeness let_strict_binds cci)
o (check_completeness let_lazy_binds cci)
) ccs
instance check_completeness MemberDef where
check_completeness {me_type} cci ccs
= check_completeness me_type cci ccs
instance check_completeness (Optional x) | check_completeness x where
check_completeness (Yes x) cci ccs
= check_completeness x cci ccs
check_completeness No _ ccs
= ccs
instance check_completeness Selection where
check_completeness (RecordSelection {glob_object={ds_index},glob_module} _) cci ccs
#! ({dcl_common}, ccs) = ccs!box_ccs.ccs_dcl_modules.[glob_module] // the selector's field has to be looked up
({sd_field}) = dcl_common.com_selector_defs.[ds_index]
= check_whether_ident_is_imported sd_field glob_module ds_index ste_field cci ccs
check_completeness (ArraySelection _ _ index_expr) cci ccs
= check_completeness index_expr cci ccs
check_completeness (DictionarySelection _ selections _ index_expr) cci ccs
= check_completeness selections cci
(check_completeness index_expr cci ccs)
instance check_completeness SelectorDef where
check_completeness {sd_type} cci ccs
= check_completeness sd_type cci ccs
instance check_completeness SymbIdent where
check_completeness {symb_ident, symb_kind} cci ccs
= case symb_kind of
SK_Constructor {glob_module,glob_object}
-> check_whether_ident_is_imported symb_ident glob_module glob_object STE_Constructor cci ccs
SK_Function global_index
-> check_completeness_for_function symb_ident global_index cci ccs
SK_DclMacro global_index
-> check_completeness_for_macro symb_ident global_index cci ccs
SK_LocalDclMacroFunction global_index
-> check_completeness_for_local_dcl_macro symb_ident global_index cci ccs
SK_OverloadedFunction {glob_module,glob_object}
-> check_whether_ident_is_imported symb_ident glob_module glob_object STE_Member cci ccs
where
check_completeness_for_function symb_ident {glob_object,glob_module} cci ccs
= check_whether_ident_is_imported symb_ident glob_module glob_object (STE_FunctionOrMacro []) cci ccs
check_completeness_for_macro symb_ident global_index cci ccs
| global_index.glob_module<>cci.box_cci.cci_main_dcl_module_n
= check_whether_ident_is_imported symb_ident global_index.glob_module global_index.glob_object (STE_DclMacroOrLocalMacroFunction []) cci ccs
= check_completeness_for_local_dcl_macro symb_ident global_index cci ccs
check_completeness_for_local_dcl_macro symb_ident {glob_module,glob_object} cci ccs
| size ccs.box_ccs.ccs_set_of_visited_macros.[glob_module]==0
// #! n_macros_in_dcl_module=size ccs.box_ccs.ccs_macro_defs.[glob_module]
# (n_macros_in_dcl_module,ccs) = get_n_macros_in_dcl_module ccs glob_module
with
get_n_macros_in_dcl_module :: *CheckCompletenessStateBox Int -> (!Int,!*CheckCompletenessStateBox)
get_n_macros_in_dcl_module ccs glob_module
#! n_macros_in_dcl_module=size ccs.box_ccs.ccs_macro_defs.[glob_module]
= (n_macros_in_dcl_module,ccs)
# visited_dcl_macros = {createArray n_macros_in_dcl_module False & [glob_object]=True}
# ccs= {ccs & box_ccs.ccs_set_of_visited_macros.[glob_module]=visited_dcl_macros}
# (macro_def, ccs) = ccs!box_ccs.ccs_macro_defs.[glob_module,glob_object]
= check_completeness macro_def cci ccs
| ccs.box_ccs.ccs_set_of_visited_macros.[glob_module].[glob_object]
= ccs
# ccs = {ccs & box_ccs.ccs_set_of_visited_macros.[glob_module].[glob_object]=True}
# (macro_def, ccs) = ccs!box_ccs.ccs_macro_defs.[glob_module,glob_object]
= check_completeness macro_def cci ccs
instance check_completeness SymbolType where
check_completeness {st_args, st_result, st_context} cci ccs
= ( (check_completeness st_args cci)
o (check_completeness st_result cci)
o (check_completeness st_context cci)
) ccs
instance check_completeness TransformedBody where
check_completeness {tb_rhs} cci ccs
= check_completeness tb_rhs cci ccs
instance check_completeness Type where
check_completeness (TA {type_ident,type_index={glob_module,glob_object}} arguments) cci ccs
= check_completeness arguments cci
(check_whether_ident_is_imported type_ident glob_module glob_object STE_Type cci ccs)
check_completeness (TAS {type_ident,type_index={glob_module,glob_object}} arguments _) cci ccs
= check_completeness arguments cci
(check_whether_ident_is_imported type_ident glob_module glob_object STE_Type cci ccs)
check_completeness (l --> r) cci ccs
= check_completeness l cci
(check_completeness r cci ccs)
check_completeness (_ :@: arguments) cci ccs
= check_completeness arguments cci ccs
check_completeness _ _ ccs
= ccs
instance check_completeness TypeContext where
check_completeness {tc_class=TCClass {glob_module,glob_object={ds_ident,ds_index}}, tc_types} cci ccs
= check_completeness tc_types cci
(check_whether_ident_is_imported ds_ident glob_module ds_index STE_Class cci ccs)
check_completeness {tc_class=TCGeneric {gtc_generic={glob_module,glob_object={ds_ident,ds_index}}}, tc_types} cci ccs
= check_completeness tc_types cci
(check_whether_ident_is_imported ds_ident glob_module ds_index STE_Generic cci ccs)
instance check_completeness (TypeDef TypeRhs) where
check_completeness td=:{td_rhs} cci ccs
= check_completeness td_rhs cci ccs
instance check_completeness TypeRhs where
check_completeness (SynType aType) cci ccs
= check_completeness aType cci ccs
check_completeness _ _ ccs
= ccs
instance check_completeness [a] | check_completeness a
where
check_completeness [] _ ccs
= ccs
check_completeness [h:t] cci ccs
= check_completeness h cci
(check_completeness t cci ccs)
check_completeness_of_dyn_expr_ptr :: !CheckCompletenessInputBox !ExprInfoPtr !*CheckCompletenessStateBox
-> *CheckCompletenessStateBox
check_completeness_of_dyn_expr_ptr cci dyn_expr_ptr ccs=:{box_ccs=box_ccs=:{ccs_expr_heap}}
#! (expr_info, ccs_expr_heap) = readPtr dyn_expr_ptr ccs_expr_heap
ccs = { ccs & box_ccs = { box_ccs & ccs_expr_heap = ccs_expr_heap }}
= case expr_info of
(EI_UnmarkedDynamic No further_dynamic_ptrs)
-> (check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
(EI_UnmarkedDynamic (Yes dynamic_type) further_dynamic_ptrs)
-> check_completeness dynamic_type cci (check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
(EI_Dynamic No further_dynamic_ptrs)
-> (check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
(EI_Dynamic (Yes dynamic_type) further_dynamic_ptrs)
-> check_completeness dynamic_type cci (check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
(EI_DynamicType dynamic_type further_dynamic_ptrs)
-> check_completeness dynamic_type cci (check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
(EI_DynamicTypeWithVars _ dynamic_type further_dynamic_ptrs)
-> check_completeness dynamic_type cci
(check_completeness_of_dyn_expr_ptrs cci further_dynamic_ptrs ccs)
check_completeness_of_dyn_expr_ptrs :: !CheckCompletenessInputBox ![ExprInfoPtr] !*CheckCompletenessStateBox
-> *CheckCompletenessStateBox
check_completeness_of_dyn_expr_ptrs cci dynamic_ptrs ccs
= foldSt (check_completeness_of_dyn_expr_ptr cci) dynamic_ptrs ccs
// STE_Kinds just for comparision
ste_field =: STE_Field { id_name="", id_info=nilPtr }
stupid_ident =: { id_name = "stupid", id_info = nilPtr }
// XXX from m import :: T(..) works also if T is a record type
store_qualified_explicitly_imported_symbols_in_symbol_table :: ![([Declaration],Int,Position)] ![SymbolPtr] !*SymbolTable -> (![SymbolPtr],!*SymbolTable)
store_qualified_explicitly_imported_symbols_in_symbol_table [(declarations,module_n,position):qualified_explicit_imports] modified_symbol_ptrs symbol_table
# (modified_symbol_ptrs,symbol_table) = foldSt store_qualified_explicitly_imported_symbol declarations (modified_symbol_ptrs,symbol_table)
= store_qualified_explicitly_imported_symbols_in_symbol_table qualified_explicit_imports modified_symbol_ptrs symbol_table
where
store_qualified_explicitly_imported_symbol declaration=:(Declaration {decl_ident={id_info},decl_kind=STE_Imported _ module_n}) (modified_symbol_ptrs,symbol_table)
# (symbol_ste=:{ste_kind},symbol_table) = readPtr id_info symbol_table
# ste_kind = STE_ImportedQualified declaration ste_kind
# symbol_table = writePtr id_info {symbol_ste & ste_kind=ste_kind} symbol_table
= case ste_kind of
STE_ImportedQualified _ _
-> ([id_info:modified_symbol_ptrs],symbol_table)
_
-> (modified_symbol_ptrs,symbol_table)
store_qualified_explicitly_imported_symbols_in_symbol_table [] modified_symbol_ptrs symbol_table
= (modified_symbol_ptrs,symbol_table)
restore_symbol_table_after_checking_completeness :: ![SymbolPtr] !*SymbolTable -> *SymbolTable
restore_symbol_table_after_checking_completeness modified_symbol_ptrs symbol_table
= foldSt restore_symbol modified_symbol_ptrs symbol_table
where
restore_symbol symbol_ptr symbol_table
# (symbol_ste=:{ste_kind},symbol_table) = readPtr symbol_ptr symbol_table
# ste_kind = restore_ste_kind ste_kind
with
restore_ste_kind (STE_ImportedQualified declaration ste_kind)
= restore_ste_kind ste_kind
restore_ste_kind (STE_ExplImpSymbolNotImported _ ste_kind)
= restore_ste_kind ste_kind
restore_ste_kind ste_kind
= ste_kind
= writePtr symbol_ptr {symbol_ste & ste_kind=ste_kind} symbol_table
store_qualified_explicit_imports_in_symbol_table :: ![([Declaration],Int,Position)] ![(SymbolPtr,STE_Kind)] !*SymbolTable !*{#DclModule} -> (![(SymbolPtr,STE_Kind)],!*SymbolTable,!*{#DclModule})
store_qualified_explicit_imports_in_symbol_table [(declarations,module_n,position):qualified_explicit_imports] modified_ste_kinds symbol_table modules
# (module_symbol_ptr,modules) = modules![module_n].dcl_name.id_info
(module_ste=:{ste_kind},symbol_table) = readPtr module_symbol_ptr symbol_table
(modified_ste_kinds,sorted_qualified_imports)
= case ste_kind of
STE_ModuleQualifiedImports sorted_qualified_imports
-> (modified_ste_kinds,sorted_qualified_imports)
STE_ClosedModule
-> ([(module_symbol_ptr,ste_kind):modified_ste_kinds],EmptySortedQualifiedImports)
STE_Module _
-> ([(module_symbol_ptr,ste_kind):modified_ste_kinds],EmptySortedQualifiedImports)
sorted_qualified_imports = foldSt add_qualified_import declarations sorted_qualified_imports
module_ste = {module_ste & ste_kind=STE_ModuleQualifiedImports sorted_qualified_imports}
symbol_table = writePtr module_symbol_ptr module_ste symbol_table
= store_qualified_explicit_imports_in_symbol_table qualified_explicit_imports modified_ste_kinds symbol_table modules
store_qualified_explicit_imports_in_symbol_table [] modified_ste_kinds symbol_table modules
= (modified_ste_kinds,symbol_table,modules)
add_qualified_import :: !Declaration !u:SortedQualifiedImports -> u:SortedQualifiedImports
add_qualified_import new_declaration EmptySortedQualifiedImports
= SortedQualifiedImports new_declaration EmptySortedQualifiedImports EmptySortedQualifiedImports
add_qualified_import new_declaration=:(Declaration {decl_ident=new_ident,decl_kind=new_ste_kind}) (SortedQualifiedImports declaration=:(Declaration {decl_ident,decl_kind}) sqi_left sqi_right)
| new_ident.id_name<decl_ident.id_name
= SortedQualifiedImports declaration (add_qualified_import new_declaration sqi_left) sqi_right
| new_ident.id_name==decl_ident.id_name && less_imported_ste_kind new_ste_kind decl_kind
= SortedQualifiedImports declaration (add_qualified_import new_declaration sqi_left) sqi_right
= SortedQualifiedImports declaration sqi_left (add_qualified_import new_declaration sqi_right)
less_imported_ste_kind (STE_Imported ste_kind1 _) (STE_Imported ste_kind2 _)
= ste_kind_to_name_space_n ste_kind1 < ste_kind_to_name_space_n ste_kind2
less_imported_ste_kind _ _
= False
imported_ste_kind_to_name_space_n (STE_Imported ste_kind1 _)
= ste_kind_to_name_space_n ste_kind1
imported_ste_kind_to_name_space_n _
= 3
:: NameSpaceN:==Int
ExpressionNameSpaceN:==0
TypeNameSpaceN:==1
ClassNameSpaceN:==2
FieldNameSpaceN:==3
OtherNameSpaceN:==4
ste_kind_to_name_space_n STE_DclFunction = ExpressionNameSpaceN
ste_kind_to_name_space_n STE_Constructor = ExpressionNameSpaceN
ste_kind_to_name_space_n STE_Member = ExpressionNameSpaceN
ste_kind_to_name_space_n (STE_DclMacroOrLocalMacroFunction _) = ExpressionNameSpaceN
ste_kind_to_name_space_n STE_Type = TypeNameSpaceN
ste_kind_to_name_space_n STE_Class = ClassNameSpaceN
ste_kind_to_name_space_n (STE_Field _) = FieldNameSpaceN
ste_kind_to_name_space_n _ = OtherNameSpaceN
search_qualified_ident :: !Ident {#Char} !NameSpaceN !*CheckState -> (!Bool,!DeclarationRecord,!*CheckState)
search_qualified_ident module_id=:{id_info} ident_name name_space_n cs
# ({ste_kind}, cs_symbol_table) = readPtr id_info cs.cs_symbol_table
# cs = {cs & cs_symbol_table=cs_symbol_table}
= case ste_kind of
STE_ModuleQualifiedImports sorted_qualified_imports
# (found,declaration) = search_qualified_import ident_name sorted_qualified_imports name_space_n
| found
-> (True,declaration,cs)
-> not_imported_error cs
STE_ClosedModule
-> not_imported_error cs
STE_Module _
-> not_imported_error cs
_
-> (False,{decl_ident={id_name="",id_info=nilPtr},decl_pos=NoPos,decl_kind=STE_Empty,decl_index=NoIndex},
{cs & cs_error=checkError module_id "undefined" cs.cs_error})
where
not_imported_error cs
= (False,{decl_ident={id_name="",id_info=nilPtr},decl_pos=NoPos,decl_kind=STE_Empty,decl_index=NoIndex},
{cs & cs_error=checkError ("'"+++module_id.id_name+++"'."+++ident_name) "not imported" cs.cs_error})
search_qualified_import :: !String !SortedQualifiedImports !NameSpaceN -> (!Bool,!DeclarationRecord)
search_qualified_import name EmptySortedQualifiedImports name_space_n
= (False,{decl_ident = {id_name="",id_info=nilPtr},decl_pos=NoPos,decl_kind=STE_Empty,decl_index=0})
search_qualified_import name (SortedQualifiedImports (Declaration declaration=:{decl_ident={id_name},decl_kind}) sqi_left sqi_right) name_space_n
| name==id_name
# decl_name_space_n = imported_ste_kind_to_name_space_n decl_kind
| name_space_n == decl_name_space_n
= (True,declaration)
| name_space_n < decl_name_space_n
= search_qualified_import name sqi_left name_space_n
= search_qualified_import name sqi_right name_space_n
| name<id_name
= search_qualified_import name sqi_left name_space_n
= search_qualified_import name sqi_right name_space_n
search_qualified_imports :: !String !SortedQualifiedImports !NameSpaceN -> [DeclarationRecord]
search_qualified_imports name EmptySortedQualifiedImports name_space_n
= []
search_qualified_imports name (SortedQualifiedImports (Declaration declaration=:{decl_ident={id_name},decl_kind}) sqi_left sqi_right) name_space_n
| name==id_name
# decl_name_space_n = imported_ste_kind_to_name_space_n decl_kind
| name_space_n == decl_name_space_n
# declarations_left =search_qualified_imports name sqi_left name_space_n
# declarations_right=search_qualified_imports name sqi_right name_space_n
= declarations_left++[declaration:declarations_right]
| name_space_n < decl_name_space_n
= search_qualified_imports name sqi_left name_space_n
= search_qualified_imports name sqi_right name_space_n
| name<id_name
= search_qualified_imports name sqi_left name_space_n
= search_qualified_imports name sqi_right name_space_n
restore_module_ste_kinds_in_symbol_table :: ![(SymbolPtr,STE_Kind)] !*SymbolTable -> *SymbolTable
restore_module_ste_kinds_in_symbol_table [(ptr,ste_kind):ptrs_and_ste_kinds] symbol_table
# (ste,symbol_table) = readPtr ptr symbol_table
# symbol_table = writePtr ptr {ste & ste_kind=ste_kind} symbol_table
= restore_module_ste_kinds_in_symbol_table ptrs_and_ste_kinds symbol_table
restore_module_ste_kinds_in_symbol_table [] symbol_table
= symbol_table
|