summaryrefslogtreecommitdiff
path: root/gcc/ada/prj-nmsc.adb
blob: 6089bea61ed252f381509f3781a3824cfddc2461 (plain)
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
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
------------------------------------------------------------------------------
--                                                                          --
--                         GNAT COMPILER COMPONENTS                         --
--                                                                          --
--                             P R J . N M S C                              --
--                                                                          --
--                                 B o d y                                  --
--                                                                          --
--          Copyright (C) 2000-2003 Free Software Foundation, Inc.          --
--                                                                          --
-- GNAT is free software;  you can  redistribute it  and/or modify it under --
-- terms of the  GNU General Public License as published  by the Free Soft- --
-- ware  Foundation;  either version 2,  or (at your option) any later ver- --
-- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
-- for  more details.  You should have  received  a copy of the GNU General --
-- Public License  distributed with GNAT;  see file COPYING.  If not, write --
-- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
-- MA 02111-1307, USA.                                                      --
--                                                                          --
-- GNAT was originally developed  by the GNAT team at  New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc.      --
--                                                                          --
------------------------------------------------------------------------------

with Err_Vars; use Err_Vars;
with Fmap;     use Fmap;
with Hostparm;
with MLib.Tgt;
with Namet;    use Namet;
with Osint;    use Osint;
with Output;   use Output;
with MLib.Tgt; use MLib.Tgt;
with Prj.Com;  use Prj.Com;
with Prj.Env;  use Prj.Env;
with Prj.Err;
with Prj.Util; use Prj.Util;
with Sinput.P;
with Snames;   use Snames;
with Types;    use Types;

with Ada.Characters.Handling;    use Ada.Characters.Handling;
with Ada.Strings;                use Ada.Strings;
with Ada.Strings.Fixed;          use Ada.Strings.Fixed;
with Ada.Strings.Maps.Constants; use Ada.Strings.Maps.Constants;

with GNAT.Case_Util;             use GNAT.Case_Util;
with GNAT.Directory_Operations;  use GNAT.Directory_Operations;
with GNAT.OS_Lib;                use GNAT.OS_Lib;
with GNAT.HTable;

package body Prj.Nmsc is

   Error_Report    : Put_Line_Access := null;

   ALI_Suffix : constant String := ".ali";

   type Name_Location is record
      Name     : Name_Id;
      Location : Source_Ptr;
      Found    : Boolean := False;
   end record;
   --  Information about file names found in string list attribute
   --  Source_Files or in a source list file, stored in hash table
   --  Source_Names, used by procedure
   --  Ada_Check.Get_Path_Names_And_Record_Sources.

   No_Name_Location : constant Name_Location :=
     (Name => No_Name, Location => No_Location, Found => False);

   package Source_Names is new GNAT.HTable.Simple_HTable
     (Header_Num => Header_Num,
      Element    => Name_Location,
      No_Element => No_Name_Location,
      Key        => Name_Id,
      Hash       => Hash,
      Equal      => "=");
   --  Hash table to store file names found in string list attribute
   --  Source_Files or in a source list file, stored in hash table
   --  Source_Names, used by procedure
   --  Ada_Check.Get_Path_Names_And_Record_Sources.

   package Recursive_Dirs is new GNAT.HTable.Simple_HTable
     (Header_Num => Header_Num,
      Element    => Boolean,
      No_Element => False,
      Key        => Name_Id,
      Hash       => Hash,
      Equal      => "=");
   --  Hash table to store recursive source directories, to avoid looking
   --  several times, and to avoid cycles that may be introduced by symbolic
   --  links.

   function ALI_File_Name (Source : String) return String;
   --  Return the ALI file name corresponding to a source.

   procedure Check_Ada_Naming_Scheme
     (Project : Project_Id;
      Naming  : Naming_Data);
   --  Check that the package Naming is correct.

   procedure Check_Ada_Name
     (Name : String;
      Unit : out Name_Id);
   --  Check that a name is a valid Ada unit name.

   procedure Error_Msg
     (Project       : Project_Id;
      Msg           : String;
      Flag_Location : Source_Ptr);
   --  Output an error message. If Error_Report is null, simply call
   --  Prj.Err.Error_Msg. Otherwise, disregard Flag_Location and use
   --  Error_Report.

   procedure Get_Unit
     (Canonical_File_Name : Name_Id;
      Naming              : Naming_Data;
      Unit_Name           : out Name_Id;
      Unit_Kind           : out Spec_Or_Body;
      Needs_Pragma        : out Boolean);
   --  Find out, from a file name, the unit name, the unit kind and if a
   --  specific SFN pragma is needed. If the file name corresponds to no
   --  unit, then Unit_Name will be No_Name.

   function Is_Illegal_Suffix
     (Suffix                          : String;
      Dot_Replacement_Is_A_Single_Dot : Boolean)
      return                            Boolean;
   --  Returns True if the string Suffix cannot be used as
   --  a spec suffix, a body suffix or a separate suffix.

   procedure Record_Source
     (File_Name       : Name_Id;
      Path_Name       : Name_Id;
      Project         : Project_Id;
      Data            : in out Project_Data;
      Location        : Source_Ptr;
      Current_Source  : in out String_List_Id;
      Source_Recorded : in out Boolean);
   --  Put a unit in the list of units of a project, if the file name
   --  corresponds to a valid unit name.

   procedure Show_Source_Dirs (Project : Project_Id);
   --  List all the source directories of a project.

   procedure Locate_Directory
     (Name    : Name_Id;
      Parent  : Name_Id;
      Dir     : out Name_Id;
      Display : out Name_Id);
   --  Locate a directory.
   --  Returns No_Name if directory does not exist.

   function Path_Name_Of
     (File_Name : Name_Id;
      Directory : Name_Id)
      return      String;
   --  Returns the path name of a (non project) file.
   --  Returns an empty string if file cannot be found.

   function Project_Extends
     (Extending : Project_Id;
      Extended  : Project_Id)
      return      Boolean;
   --  Returns True if Extending is extending directly or indirectly Extended.

   procedure Check_Naming_Scheme
     (Data    : in out Project_Data;
      Project : Project_Id);
   --  Check the naming scheme part of Data

   type Unit_Info is record
      Kind : Spec_Or_Body;
      Unit : Name_Id;
   end record;
   No_Unit : constant Unit_Info := (Specification, No_Name);

   package Naming_Exceptions is new GNAT.HTable.Simple_HTable
     (Header_Num => Header_Num,
      Element    => Unit_Info,
      No_Element => No_Unit,
      Key        => Name_Id,
      Hash       => Hash,
      Equal      => "=");

   function Hash (Unit : Unit_Info) return Header_Num;

   package Reverse_Naming_Exceptions is new GNAT.HTable.Simple_HTable
     (Header_Num => Header_Num,
      Element    => Name_Id,
      No_Element => No_Name,
      Key        => Unit_Info,
      Hash       => Hash,
      Equal      => "=");
   --  A table to check if a unit with an exceptional name will hide
   --  a source with a file name following the naming convention.

   procedure Prepare_Naming_Exceptions
     (List : Array_Element_Id;
      Kind : Spec_Or_Body);
   --  Prepare the internal hash tables used for checking naming exceptions.
   --  Insert all elements of List in the tables.

   procedure Free_Naming_Exceptions;
   --  Free the internal hash tables used for checking naming exceptions

   function Compute_Directory_Last (Dir : String) return Natural;
   --  Return the index of the last significant character in Dir. This is used
   --  to avoid duplicates '/' at the end of directory names

   ----------------------------
   -- Compute_Directory_Last --
   ----------------------------

   function Compute_Directory_Last (Dir : String) return Natural is
   begin
      if Dir'Length > 1
        and then (Dir (Dir'Last - 1) = Directory_Separator
                  or else Dir (Dir'Last - 1) = '/')
      then
         return Dir'Last - 1;
      else
         return Dir'Last;
      end if;
   end Compute_Directory_Last;


   -------------------------------
   -- Prepare_Naming_Exceptions --
   -------------------------------

   procedure Prepare_Naming_Exceptions
     (List : Array_Element_Id;
      Kind : Spec_Or_Body)
   is
      Current : Array_Element_Id := List;
      Element : Array_Element;

   begin
      while Current /= No_Array_Element loop
         Element := Array_Elements.Table (Current);

         if Element.Index /= No_Name then
            Naming_Exceptions.Set
              (Element.Value.Value,
               (Kind => Kind, Unit => Element.Index));
            Reverse_Naming_Exceptions.Set
              ((Kind => Kind, Unit => Element.Index),
               Element.Value.Value);
         end if;

         Current := Element.Next;
      end loop;
   end Prepare_Naming_Exceptions;

   ----------
   -- Hash --
   ----------

   function Hash (Unit : Unit_Info) return Header_Num is
   begin
      return Header_Num (Unit.Unit mod 2048);
   end Hash;

   ----------------------------
   -- Free_Naming_Exceptions --
   ----------------------------

   procedure Free_Naming_Exceptions is
   begin
      Naming_Exceptions.Reset;
      Reverse_Naming_Exceptions.Reset;
   end Free_Naming_Exceptions;

   -------------------------
   -- Check_Naming_Scheme --
   -------------------------

   procedure Check_Naming_Scheme
     (Data    : in out Project_Data;
      Project : Project_Id)
   is
      Naming_Id : constant Package_Id :=
                    Util.Value_Of (Name_Naming, Data.Decl.Packages);

      Naming : Package_Element;

      procedure Check_Unit_Names (List : Array_Element_Id);
      --  Check that a list of unit names contains only valid names.

      ----------------------
      -- Check_Unit_Names --
      ----------------------

      procedure Check_Unit_Names (List : Array_Element_Id) is
         Current   : Array_Element_Id := List;
         Element   : Array_Element;
         Unit_Name : Name_Id;

      begin
         --  Loop through elements of the string list

         while Current /= No_Array_Element loop
            Element := Array_Elements.Table (Current);

            --  Put file name in canonical case

            Get_Name_String (Element.Value.Value);
            Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
            Element.Value.Value := Name_Find;

            --  Check that it contains a valid unit name

            Get_Name_String (Element.Index);
            Check_Ada_Name (Name_Buffer (1 .. Name_Len), Unit_Name);

            if Unit_Name = No_Name then
               Err_Vars.Error_Msg_Name_1 := Element.Index;
               Error_Msg
                 (Project,
                  "{ is not a valid unit name.",
                  Element.Value.Location);

            else
               if Current_Verbosity = High then
                  Write_Str ("    Unit (""");
                  Write_Str (Get_Name_String (Unit_Name));
                  Write_Line (""")");
               end if;

               Element.Index := Unit_Name;
               Array_Elements.Table (Current) := Element;
            end if;

            Current := Element.Next;
         end loop;
      end Check_Unit_Names;

   --  Start of processing for Check_Naming_Scheme

   begin
      --  If there is a package Naming, we will put in Data.Naming what is in
      --  this package Naming.

      if Naming_Id /= No_Package then
         Naming := Packages.Table (Naming_Id);

         if Current_Verbosity = High then
            Write_Line ("Checking ""Naming"" for Ada.");
         end if;

         declare
            Bodies : constant Array_Element_Id :=
                       Util.Value_Of (Name_Body, Naming.Decl.Arrays);

            Specs : constant Array_Element_Id :=
                      Util.Value_Of (Name_Spec, Naming.Decl.Arrays);

         begin
            if Bodies /= No_Array_Element then

               --  We have elements in the array Body_Part

               if Current_Verbosity = High then
                  Write_Line ("Found Bodies.");
               end if;

               Data.Naming.Bodies := Bodies;
               Check_Unit_Names (Bodies);

            else
               if Current_Verbosity = High then
                  Write_Line ("No Bodies.");
               end if;
            end if;

            if Specs /= No_Array_Element then

               --  We have elements in the array Specs

               if Current_Verbosity = High then
                  Write_Line ("Found Specs.");
               end if;

               Data.Naming.Specs := Specs;
               Check_Unit_Names (Specs);

            else
               if Current_Verbosity = High then
                  Write_Line ("No Specs.");
               end if;
            end if;
         end;

         --  We are now checking if variables Dot_Replacement, Casing,
         --  Spec_Suffix, Body_Suffix and/or Separate_Suffix
         --  exist.

         --  For each variable, if it does not exist, we do nothing,
         --  because we already have the default.

         --  Check Dot_Replacement

         declare
            Dot_Replacement : constant Variable_Value :=
                                Util.Value_Of
                                  (Name_Dot_Replacement,
                                   Naming.Decl.Attributes);

         begin
            pragma Assert (Dot_Replacement.Kind = Single,
                           "Dot_Replacement is not a single string");

            if not Dot_Replacement.Default then
               Get_Name_String (Dot_Replacement.Value);

               if Name_Len = 0 then
                  Error_Msg
                    (Project,
                     "Dot_Replacement cannot be empty",
                     Dot_Replacement.Location);

               else
                  Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
                  Data.Naming.Dot_Replacement := Name_Find;
                  Data.Naming.Dot_Repl_Loc := Dot_Replacement.Location;
               end if;
            end if;
         end;

         if Current_Verbosity = High then
            Write_Str  ("  Dot_Replacement = """);
            Write_Str  (Get_Name_String (Data.Naming.Dot_Replacement));
            Write_Char ('"');
            Write_Eol;
         end if;

         --  Check Casing

         declare
            Casing_String : constant Variable_Value :=
                              Util.Value_Of
                                (Name_Casing, Naming.Decl.Attributes);

         begin
            pragma Assert (Casing_String.Kind = Single,
                           "Casing is not a single string");

            if not Casing_String.Default then
               declare
                  Casing_Image : constant String :=
                                   Get_Name_String (Casing_String.Value);
               begin
                  declare
                     Casing : constant Casing_Type := Value (Casing_Image);
                  begin
                     Data.Naming.Casing := Casing;
                  end;

               exception
                  when Constraint_Error =>
                     if Casing_Image'Length = 0 then
                        Error_Msg
                          (Project,
                           "Casing cannot be an empty string",
                           Casing_String.Location);

                     else
                        Name_Len := Casing_Image'Length;
                        Name_Buffer (1 .. Name_Len) := Casing_Image;
                        Err_Vars.Error_Msg_Name_1 := Name_Find;
                        Error_Msg
                          (Project,
                           "{ is not a correct Casing",
                           Casing_String.Location);
                     end if;
               end;
            end if;
         end;

         if Current_Verbosity = High then
            Write_Str  ("  Casing = ");
            Write_Str  (Image (Data.Naming.Casing));
            Write_Char ('.');
            Write_Eol;
         end if;

         --  Check Spec_Suffix

         declare
            Ada_Spec_Suffix : constant Variable_Value :=
                                Prj.Util.Value_Of
                                 (Index => Name_Ada,
                                  In_Array => Data.Naming.Spec_Suffix);

         begin
            if Ada_Spec_Suffix.Kind = Single
              and then Get_Name_String (Ada_Spec_Suffix.Value) /= ""
            then
               Data.Naming.Current_Spec_Suffix := Ada_Spec_Suffix.Value;
               Data.Naming.Spec_Suffix_Loc := Ada_Spec_Suffix.Location;

            else
               Data.Naming.Current_Spec_Suffix := Default_Ada_Spec_Suffix;
            end if;
         end;

         if Current_Verbosity = High then
            Write_Str  ("  Spec_Suffix = """);
            Write_Str  (Get_Name_String (Data.Naming.Current_Spec_Suffix));
            Write_Char ('"');
            Write_Eol;
         end if;

         --  Check Body_Suffix

         declare
            Ada_Body_Suffix : constant Variable_Value :=
              Prj.Util.Value_Of
              (Index => Name_Ada,
               In_Array => Data.Naming.Body_Suffix);

         begin
            if Ada_Body_Suffix.Kind = Single
              and then Get_Name_String (Ada_Body_Suffix.Value) /= ""
            then
               Data.Naming.Current_Body_Suffix := Ada_Body_Suffix.Value;
               Data.Naming.Body_Suffix_Loc := Ada_Body_Suffix.Location;

            else
               Data.Naming.Current_Body_Suffix := Default_Ada_Body_Suffix;
            end if;
         end;

         if Current_Verbosity = High then
            Write_Str  ("  Body_Suffix = """);
            Write_Str  (Get_Name_String (Data.Naming.Current_Body_Suffix));
            Write_Char ('"');
            Write_Eol;
         end if;

         --  Check Separate_Suffix

         declare
            Ada_Sep_Suffix : constant Variable_Value :=
                               Prj.Util.Value_Of
                                 (Variable_Name => Name_Separate_Suffix,
                                  In_Variables  => Naming.Decl.Attributes);

         begin
            if Ada_Sep_Suffix.Default then
               Data.Naming.Separate_Suffix :=
                 Data.Naming.Current_Body_Suffix;

            else
               if Get_Name_String (Ada_Sep_Suffix.Value) = "" then
                  Error_Msg
                    (Project,
                     "Separate_Suffix cannot be empty",
                     Ada_Sep_Suffix.Location);

               else
                  Data.Naming.Separate_Suffix := Ada_Sep_Suffix.Value;
                  Data.Naming.Sep_Suffix_Loc  := Ada_Sep_Suffix.Location;
               end if;
            end if;
         end;

         if Current_Verbosity = High then
            Write_Str  ("  Separate_Suffix = """);
            Write_Str  (Get_Name_String (Data.Naming.Separate_Suffix));
            Write_Char ('"');
            Write_Eol;
         end if;

         --  Check if Data.Naming is valid

         Check_Ada_Naming_Scheme (Project, Data.Naming);

      else
         Data.Naming.Current_Spec_Suffix := Default_Ada_Spec_Suffix;
         Data.Naming.Current_Body_Suffix := Default_Ada_Body_Suffix;
         Data.Naming.Separate_Suffix     := Default_Ada_Body_Suffix;
      end if;
   end Check_Naming_Scheme;

   ---------------
   -- Ada_Check --
   ---------------

   procedure Ada_Check
     (Project      : Project_Id;
      Report_Error : Put_Line_Access)
   is
      Data         : Project_Data;
      Languages    : Variable_Value := Nil_Variable_Value;

      Extending    : Boolean := False;

      function Check_Project (P : Project_Id) return Boolean;
      --  Returns True if P is Project or a project extended by Project

      procedure Find_Sources;
      --  Find all the sources in all of the source directories
      --  of a project.

      procedure Get_Path_Names_And_Record_Sources;
      --  Find the path names of the source files in the Source_Names table
      --  in the source directories and record those that are Ada sources.

      procedure Get_Sources_From_File
        (Path     : String;
         Location : Source_Ptr);
      --  Get the sources of a project from a text file

      procedure Warn_If_Not_Sources
        (Conventions : Array_Element_Id;
         Specs       : Boolean);
      --  Check that individual naming conventions apply to immediate
      --  sources of the project; if not, issue a warning.

      -------------------
      -- Check_Project --
      -------------------

      function Check_Project (P : Project_Id) return Boolean is
      begin
         if P = Project then
            return True;
         elsif Extending then
            declare
               Data : Project_Data := Projects.Table (Project);

            begin
               while Data.Extends /= No_Project loop
                  if P = Data.Extends then
                     return True;
                  end if;

                  Data := Projects.Table (Data.Extends);
               end loop;
            end;
         end if;

         return False;
      end Check_Project;

      ------------------
      -- Find_Sources --
      ------------------

      procedure Find_Sources is
         Source_Dir      : String_List_Id := Data.Source_Dirs;
         Element         : String_Element;
         Dir             : Dir_Type;
         Current_Source  : String_List_Id := Nil_String;
         Source_Recorded : Boolean := False;

      begin
         if Current_Verbosity = High then
            Write_Line ("Looking for sources:");
         end if;

         --  For each subdirectory

         while Source_Dir /= Nil_String loop
            begin
               Source_Recorded := False;
               Element := String_Elements.Table (Source_Dir);
               if Element.Value /= No_Name then
                  declare
                     Source_Directory : constant String :=
                       Get_Name_String (Element.Value);

                  begin
                     if Current_Verbosity = High then
                        Write_Str ("Source_Dir = ");
                        Write_Line (Source_Directory);
                     end if;

                     --  We look to every entry in the source directory

                     Open (Dir, Source_Directory);

                     --  Canonical_Case_File_Name (Source_Directory);

                     loop
                        Read (Dir, Name_Buffer, Name_Len);

                        if Current_Verbosity = High then
                           Write_Str  ("   Checking ");
                           Write_Line (Name_Buffer (1 .. Name_Len));
                        end if;

                        exit when Name_Len = 0;

                        --  Canonical_Case_File_Name
                        --    (Name_Buffer (1 .. Name_Len));

                        declare
                           File_Name : constant Name_Id := Name_Find;
                           Dir       : constant String :=
                                         Source_Directory &
                                         Directory_Separator;
                           Dir_Last  : constant Natural :=
                                         Compute_Directory_Last (Dir);
                           Path      : constant String :=
                                  Normalize_Pathname
                                    (Name      => Name_Buffer (1 .. Name_Len),
                                     Directory => Dir (Dir'First .. Dir_Last));
                           Path_Name : Name_Id;

                        begin
                           if Is_Regular_File (Path) then

                              Name_Len := Path'Length;
                              Name_Buffer (1 .. Name_Len) := Path;
                              Path_Name := Name_Find;

                              --  We attempt to register it as a source.
                              --  However, there is no error if the file
                              --  does not contain a valid source.
                              --  But there is an error if we have a
                              --  duplicate unit name.

                              Record_Source
                                (File_Name       => File_Name,
                                 Path_Name       => Path_Name,
                                 Project         => Project,
                                 Data            => Data,
                                 Location        => No_Location,
                                 Current_Source  => Current_Source,
                                 Source_Recorded => Source_Recorded);
                           end if;
                        end;
                     end loop;

                     Close (Dir);
                  end;
               end if;

            exception
               when Directory_Error =>
                  null;
            end;

            if Source_Recorded then
               String_Elements.Table (Source_Dir).Flag := True;
            end if;

            Source_Dir := Element.Next;
         end loop;

         if Current_Verbosity = High then
            Write_Line ("end Looking for sources.");
         end if;

         --  If we have looked for sources and found none, then
         --  it is an error, except if it is an extending project.
         --  If a non extending project is not supposed to contain
         --  any source, then we never call Find_Sources.

         if Data.Extends = No_Project
           and then Current_Source = Nil_String
         then
            Error_Msg
              (Project,
               "there are no Ada sources in this project",
               Data.Location);
         end if;
      end Find_Sources;

      ---------------------------------------
      -- Get_Path_Names_And_Record_Sources --
      ---------------------------------------

      procedure Get_Path_Names_And_Record_Sources is
         Source_Dir : String_List_Id := Data.Source_Dirs;
         Element    : String_Element;
         Path       : Name_Id;

         Dir      : Dir_Type;
         Name     : Name_Id;
         Canonical_Name : Name_Id;
         Name_Str : String (1 .. 1_024);
         Last     : Natural := 0;
         NL       : Name_Location;

         Current_Source : String_List_Id := Nil_String;

         First_Error : Boolean := True;

         Source_Recorded : Boolean := False;

      begin
         --  We look in all source directories for this file name

         while Source_Dir /= Nil_String loop
            Source_Recorded := False;
            Element := String_Elements.Table (Source_Dir);

            declare
               Dir_Path : constant String := Get_Name_String (Element.Value);
            begin
               if Current_Verbosity = High then
                  Write_Str ("checking directory """);
                  Write_Str (Dir_Path);
                  Write_Line ("""");
               end if;

               Open (Dir, Dir_Path);

               loop
                  Read (Dir, Name_Str, Last);
                  exit when Last = 0;
                  Name_Len := Last;
                  Name_Buffer (1 .. Name_Len) := Name_Str (1 .. Last);
                  Name := Name_Find;
                  Canonical_Case_File_Name (Name_Str (1 .. Last));
                  Name_Len := Last;
                  Name_Buffer (1 .. Name_Len) := Name_Str (1 .. Last);
                  Canonical_Name := Name_Find;
                  NL := Source_Names.Get (Canonical_Name);

                  if NL /= No_Name_Location and then not NL.Found then
                     NL.Found := True;
                     Source_Names.Set (Canonical_Name, NL);
                     Name_Len := Dir_Path'Length;
                     Name_Buffer (1 .. Name_Len) := Dir_Path;
                     Add_Char_To_Name_Buffer (Directory_Separator);
                     Add_Str_To_Name_Buffer (Name_Str (1 .. Last));
                     Path := Name_Find;

                     if Current_Verbosity = High then
                        Write_Str  ("  found ");
                        Write_Line (Get_Name_String (Name));
                     end if;

                     --  Register the source if it is an Ada compilation unit..

                     Record_Source
                       (File_Name       => Name,
                        Path_Name       => Path,
                        Project         => Project,
                        Data            => Data,
                        Location        => NL.Location,
                        Current_Source  => Current_Source,
                        Source_Recorded => Source_Recorded);
                  end if;
               end loop;

               Close (Dir);
            end;

            if Source_Recorded then
               String_Elements.Table (Source_Dir).Flag := True;
            end if;

            Source_Dir := Element.Next;
         end loop;

         --  It is an error if a source file name in a source list or
         --  in a source list file is not found.

         NL := Source_Names.Get_First;

         while NL /= No_Name_Location loop
            if not NL.Found then
               Err_Vars.Error_Msg_Name_1 := NL.Name;

               if First_Error then
                  Error_Msg
                    (Project,
                     "source file { cannot be found",
                     NL.Location);
                  First_Error := False;

               else
                  Error_Msg
                    (Project,
                     "\source file { cannot be found",
                     NL.Location);
               end if;
            end if;

            NL := Source_Names.Get_Next;
         end loop;
      end Get_Path_Names_And_Record_Sources;

      ---------------------------
      -- Get_Sources_From_File --
      ---------------------------

      procedure Get_Sources_From_File
        (Path     : String;
         Location : Source_Ptr)
      is
         File           : Prj.Util.Text_File;
         Line           : String (1 .. 250);
         Last           : Natural;
         Source_Name    : Name_Id;

      begin
         if Current_Verbosity = High then
            Write_Str  ("Opening """);
            Write_Str  (Path);
            Write_Line (""".");
         end if;

         --  We open the file

         Prj.Util.Open (File, Path);

         if not Prj.Util.Is_Valid (File) then
            Error_Msg (Project, "file does not exist", Location);
         else
            Source_Names.Reset;

            while not Prj.Util.End_Of_File (File) loop
               Prj.Util.Get_Line (File, Line, Last);

               --  If the line is not empty and does not start with "--",
               --  then it should contain a file name. However, if the
               --  file name does not exist, it may be for another language
               --  and we don't fail.

               if Last /= 0
                 and then (Last = 1 or else Line (1 .. 2) /= "--")
               then
                  Name_Len := Last;
                  Name_Buffer (1 .. Name_Len) := Line (1 .. Last);
                  Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
                  Source_Name := Name_Find;
                  Source_Names.Set
                    (K => Source_Name,
                     E =>
                       (Name     => Source_Name,
                        Location => Location,
                        Found    => False));
               end if;
            end loop;

            Prj.Util.Close (File);

         end if;

         Get_Path_Names_And_Record_Sources;

         --  We should have found at least one source.
         --  If not, report an error.

         if Data.Sources = Nil_String then
            Error_Msg (Project,
                       "there are no Ada sources in this project",
                       Location);
         end if;
      end Get_Sources_From_File;

      -------------------------
      -- Warn_If_Not_Sources --
      -------------------------

      procedure Warn_If_Not_Sources
        (Conventions : Array_Element_Id;
         Specs       : Boolean)
      is
         Conv          : Array_Element_Id := Conventions;
         Unit          : Name_Id;
         The_Unit_Id   : Unit_Id;
         The_Unit_Data : Unit_Data;
         Location      : Source_Ptr;

      begin
         while Conv /= No_Array_Element loop
            Unit := Array_Elements.Table (Conv).Index;
            Error_Msg_Name_1 := Unit;
            Get_Name_String (Unit);
            To_Lower (Name_Buffer (1 .. Name_Len));
            Unit := Name_Find;
            The_Unit_Id := Units_Htable.Get (Unit);
            Location := Array_Elements.Table (Conv).Value.Location;

            if The_Unit_Id = Prj.Com.No_Unit then
               Error_Msg
                 (Project,
                  "?unknown unit {",
                  Location);

            else
               The_Unit_Data := Units.Table (The_Unit_Id);

               if Specs then
                  if not Check_Project
                    (The_Unit_Data.File_Names (Specification).Project)
                  then
                     Error_Msg
                       (Project,
                        "?unit{ has no spec in this project",
                        Location);
                  end if;

               else
                  if not Check_Project
                    (The_Unit_Data.File_Names (Com.Body_Part).Project)
                  then
                     Error_Msg
                       (Project,
                        "?unit{ has no body in this project",
                        Location);
                  end if;
               end if;
            end if;

            Conv := Array_Elements.Table (Conv).Next;
         end loop;
      end Warn_If_Not_Sources;

   --  Start of processing for Ada_Check

   begin
      Language_Independent_Check (Project, Report_Error);

      Error_Report    := Report_Error;

      Data      := Projects.Table (Project);
      Extending := Data.Extends /= No_Project;
      Languages := Prj.Util.Value_Of (Name_Languages, Data.Decl.Attributes);

      Data.Naming.Current_Language := Name_Ada;
      Data.Sources_Present         := Data.Source_Dirs /= Nil_String;

      if not Languages.Default then
         declare
            Current   : String_List_Id := Languages.Values;
            Element   : String_Element;
            Ada_Found : Boolean := False;

         begin
            Look_For_Ada : while Current /= Nil_String loop
               Element := String_Elements.Table (Current);
               Get_Name_String (Element.Value);
               To_Lower (Name_Buffer (1 .. Name_Len));

               if Name_Buffer (1 .. Name_Len) = "ada" then
                  Ada_Found := True;
                  exit Look_For_Ada;
               end if;

               Current := Element.Next;
            end loop Look_For_Ada;

            if not Ada_Found then

               --  Mark the project file as having no sources for Ada

               Data.Sources_Present := False;
            end if;
         end;
      end if;

      Check_Naming_Scheme (Data, Project);

      Prepare_Naming_Exceptions (Data.Naming.Bodies, Body_Part);
      Prepare_Naming_Exceptions (Data.Naming.Specs,  Specification);

      --  If we have source directories, then find the sources

      if Data.Sources_Present then
         if Data.Source_Dirs = Nil_String then
            Data.Sources_Present := False;

         else
            declare
               Sources : constant Variable_Value :=
                           Util.Value_Of
                             (Name_Source_Files,
                              Data.Decl.Attributes);

               Source_List_File : constant Variable_Value :=
                                    Util.Value_Of
                                      (Name_Source_List_File,
                                       Data.Decl.Attributes);

               Locally_Removed : constant Variable_Value :=
                           Util.Value_Of
                             (Name_Locally_Removed_Files,
                              Data.Decl.Attributes);


            begin
               pragma Assert
                 (Sources.Kind = List,
                    "Source_Files is not a list");

               pragma Assert
                 (Source_List_File.Kind = Single,
                    "Source_List_File is not a single string");

               if not Sources.Default then
                  if not Source_List_File.Default then
                     Error_Msg
                       (Project,
                        "?both variables source_files and " &
                        "source_list_file are present",
                        Source_List_File.Location);
                  end if;

                  --  Sources is a list of file names

                  declare
                     Current        : String_List_Id := Sources.Values;
                     Element        : String_Element;
                     Location       : Source_Ptr;
                     Name           : Name_Id;

                  begin
                     Source_Names.Reset;

                     Data.Sources_Present := Current /= Nil_String;

                     while Current /= Nil_String loop
                        Element := String_Elements.Table (Current);
                        Get_Name_String (Element.Value);
                        Canonical_Case_File_Name
                          (Name_Buffer (1 .. Name_Len));
                        Name := Name_Find;

                        --  If the element has no location, then use the
                        --  location of Sources to report possible errors.

                        if Element.Location = No_Location then
                           Location := Sources.Location;

                        else
                           Location := Element.Location;
                        end if;

                        Source_Names.Set
                          (K => Name,
                           E =>
                             (Name     => Name,
                              Location => Location,
                              Found    => False));

                        Current := Element.Next;
                     end loop;

                     Get_Path_Names_And_Record_Sources;
                  end;

                  --  No source_files specified.
                  --  We check Source_List_File has been specified.

               elsif not Source_List_File.Default then

                  --  Source_List_File is the name of the file
                  --  that contains the source file names

                  declare
                     Source_File_Path_Name : constant String :=
                       Path_Name_Of
                       (Source_List_File.Value,
                        Data.Directory);

                  begin
                     if Source_File_Path_Name'Length = 0 then
                        Err_Vars.Error_Msg_Name_1 := Source_List_File.Value;
                        Error_Msg
                          (Project,
                           "file with sources { does not exist",
                           Source_List_File.Location);

                     else
                        Get_Sources_From_File
                          (Source_File_Path_Name,
                           Source_List_File.Location);
                     end if;
                  end;

               else
                  --  Neither Source_Files nor Source_List_File has been
                  --  specified.
                  --  Find all the files that satisfy
                  --  the naming scheme in all the source directories.

                  Find_Sources;
               end if;

               --  If there are sources that are locally removed, mark them as
               --  such in the Units table.

               if not Locally_Removed.Default then
                  --  Sources can be locally removed only in extending
                  --  project files.

                  if Data.Extends = No_Project then
                     Error_Msg
                       (Project,
                        "Locally_Removed_Files can only be used " &
                        "in an extending project file",
                        Locally_Removed.Location);

                  else
                     declare
                        Current        : String_List_Id :=
                                           Locally_Removed.Values;
                        Element        : String_Element;
                        Location       : Source_Ptr;
                        OK             : Boolean;
                        Unit           : Unit_Data;
                        Name           : Name_Id;
                        Extended       : Project_Id;

                     begin
                        while Current /= Nil_String loop
                           Element := String_Elements.Table (Current);
                           Get_Name_String (Element.Value);
                           Canonical_Case_File_Name
                             (Name_Buffer (1 .. Name_Len));
                           Name := Name_Find;

                           --  If the element has no location, then use the
                           --  location of Locally_Removed to report
                           --  possible errors.

                           if Element.Location = No_Location then
                              Location := Locally_Removed.Location;

                           else
                              Location := Element.Location;
                           end if;

                           OK := False;

                           for Index in 1 .. Units.Last loop
                              Unit := Units.Table (Index);

                              if
                                Unit.File_Names (Specification).Name = Name
                              then
                                 OK := True;

                                 --  Check that this is from a project that
                                 --  the current project extends, but not the
                                 --  current project.

                                 Extended := Unit.File_Names
                                                    (Specification).Project;

                                 if Extended = Project then
                                    Error_Msg
                                      (Project,
                                       "cannot remove a source " &
                                       "of the same project",
                                       Location);

                                 elsif
                                   Project_Extends (Project, Extended)
                                 then
                                    Unit.File_Names
                                      (Specification).Path := Slash;
                                    Unit.File_Names
                                      (Specification).Needs_Pragma := False;
                                    Units.Table (Index) := Unit;
                                    Add_Forbidden_File_Name
                                      (Unit.File_Names (Specification).Name);
                                    exit;

                                 else
                                    Error_Msg
                                      (Project,
                                       "cannot remove a source from " &
                                       "another project",
                                       Location);
                                 end if;

                              elsif
                                Unit.File_Names (Body_Part).Name = Name
                              then
                                 OK := True;

                                 --  Check that this is from a project that
                                 --  the current project extends, but not the
                                 --  current project.

                                 Extended := Unit.File_Names
                                                    (Body_Part).Project;

                                 if Extended = Project then
                                    Error_Msg
                                      (Project,
                                       "cannot remove a source " &
                                       "of the same project",
                                       Location);

                                 elsif
                                   Project_Extends (Project, Extended)
                                 then
                                    Unit.File_Names (Body_Part).Path := Slash;
                                    Unit.File_Names (Body_Part).Needs_Pragma
                                      := False;
                                    Units.Table (Index) := Unit;
                                    Add_Forbidden_File_Name
                                      (Unit.File_Names (Body_Part).Name);
                                    exit;
                                 end if;

                              end if;
                           end loop;

                           if not OK then
                              Err_Vars.Error_Msg_Name_1 := Name;
                              Error_Msg (Project, "unknown file {", Location);
                           end if;

                           Current := Element.Next;
                        end loop;
                     end;
                  end if;
               end if;
            end;
         end if;
      end if;

      if Data.Sources_Present then

         --  Check that all individual naming conventions apply to
         --  sources of this project file.

         Warn_If_Not_Sources (Data.Naming.Bodies, Specs => False);
         Warn_If_Not_Sources (Data.Naming.Specs,  Specs => True);
      end if;

      --  If it is a library project file, check if it is a standalone library

      if Data.Library then
         Standalone_Library : declare
            Lib_Interfaces : constant Prj.Variable_Value :=
                               Prj.Util.Value_Of
                                 (Snames.Name_Library_Interface,
                                  Data.Decl.Attributes);
            Lib_Auto_Init  : constant Prj.Variable_Value :=
                               Prj.Util.Value_Of
                                 (Snames.Name_Library_Auto_Init,
                                  Data.Decl.Attributes);

            Lib_Src_Dir : constant Prj.Variable_Value :=
                            Prj.Util.Value_Of
                              (Snames.Name_Library_Src_Dir,
                               Data.Decl.Attributes);

            Lib_Symbol_File : constant Prj.Variable_Value :=
                                Prj.Util.Value_Of
                                  (Snames.Name_Library_Symbol_File,
                                   Data.Decl.Attributes);

            Lib_Symbol_Policy : constant Prj.Variable_Value :=
                                  Prj.Util.Value_Of
                                    (Snames.Name_Library_Symbol_Policy,
                                     Data.Decl.Attributes);

            Lib_Ref_Symbol_File : constant Prj.Variable_Value :=
                                  Prj.Util.Value_Of
                                    (Snames.Name_Library_Reference_Symbol_File,
                                     Data.Decl.Attributes);

            Auto_Init_Supported : constant Boolean :=
                                    MLib.Tgt.
                                     Standalone_Library_Auto_Init_Is_Supported;

            OK : Boolean := True;

         begin
            pragma Assert (Lib_Interfaces.Kind = List);

            --  It is a stand-alone library project file if attribute
            --  Library_Interface is defined.

            if not Lib_Interfaces.Default then
               declare
                  Interfaces : String_List_Id := Lib_Interfaces.Values;
                  Interface_ALIs : String_List_Id := Nil_String;
                  Unit : Name_Id;
                  The_Unit_Id : Unit_Id;
                  The_Unit_Data : Unit_Data;

                  procedure Add_ALI_For (Source : Name_Id);
                  --  Add an ALI file name to the list of Interface ALIs

                  -----------------
                  -- Add_ALI_For --
                  -----------------

                  procedure Add_ALI_For (Source : Name_Id) is
                  begin
                     Get_Name_String (Source);

                     declare
                        ALI : constant String :=
                                ALI_File_Name (Name_Buffer (1 .. Name_Len));
                        ALI_Name_Id : Name_Id;
                     begin
                        Name_Len := ALI'Length;
                        Name_Buffer (1 .. Name_Len) := ALI;
                        ALI_Name_Id := Name_Find;

                        String_Elements.Increment_Last;
                        String_Elements.Table (String_Elements.Last) :=
                          (Value    => ALI_Name_Id,
                           Display_Value => No_Name,
                           Location => String_Elements.Table
                                                         (Interfaces).Location,
                           Flag     => False,
                           Next     => Interface_ALIs);
                        Interface_ALIs := String_Elements.Last;
                     end;
                  end Add_ALI_For;

               begin
                  Data.Standalone_Library := True;

                  --  Library_Interface cannot be an empty list

                  if Interfaces = Nil_String then
                     Error_Msg
                       (Project,
                        "Library_Interface cannot be an empty list",
                        Lib_Interfaces.Location);
                  end if;

                  --  Process each unit name specified in the attribute
                  --  Library_Interface.

                  while Interfaces /= Nil_String loop
                     Get_Name_String
                       (String_Elements.Table (Interfaces).Value);
                     To_Lower (Name_Buffer (1 .. Name_Len));

                     if Name_Len = 0 then
                        Error_Msg
                          (Project,
                           "an interface cannot be an empty string",
                           String_Elements.Table (Interfaces).Location);

                     else
                        Unit := Name_Find;
                        Error_Msg_Name_1 := Unit;
                        The_Unit_Id := Units_Htable.Get (Unit);

                        if The_Unit_Id = Prj.Com.No_Unit then
                           Error_Msg
                             (Project,
                              "unknown unit {",
                              String_Elements.Table (Interfaces).Location);

                        else
                           --  Check that the unit is part of the project

                           The_Unit_Data := Units.Table (The_Unit_Id);

                           if The_Unit_Data.File_Names
                                (Com.Body_Part).Name /= No_Name
                             and then The_Unit_Data.File_Names
                                        (Com.Body_Part).Path /= Slash
                           then
                              if Check_Project
                                 (The_Unit_Data.File_Names (Body_Part).Project)
                              then
                                 --  There is a body for this unit.
                                 --  If there is no spec, we need to check
                                 --  that it is not a subunit.

                                 if The_Unit_Data.File_Names
                                      (Specification).Name = No_Name
                                 then
                                    declare
                                       Src_Ind : Source_File_Index;

                                    begin
                                       Src_Ind := Sinput.P.Load_Project_File
                                                   (Get_Name_String
                                                      (The_Unit_Data.File_Names
                                                         (Body_Part).Path));

                                       if Sinput.P.Source_File_Is_Subunit
                                                     (Src_Ind)
                                       then
                                          Error_Msg
                                            (Project,
                                             "{ is a subunit; " &
                                             "it cannot be an interface",
                                             String_Elements.Table
                                               (Interfaces).Location);
                                       end if;
                                    end;
                                 end if;

                                 --  The unit is not a subunit, so we add
                                 --  to the Interface ALIs the ALI file
                                 --  corresponding to the body.

                                 Add_ALI_For
                                   (The_Unit_Data.File_Names (Body_Part).Name);

                              else
                                 Error_Msg
                                   (Project,
                                    "{ is not an unit of this project",
                                    String_Elements.Table
                                      (Interfaces).Location);
                              end if;

                           elsif The_Unit_Data.File_Names
                                   (Com.Specification).Name /= No_Name
                              and then The_Unit_Data.File_Names
                                         (Com.Specification).Path /= Slash
                              and then Check_Project
                                         (The_Unit_Data.File_Names
                                            (Specification).Project)

                           then
                              --  The unit is part of the project, it has
                              --  a spec, but no body. We add to the Interface
                              --  ALIs the ALI file corresponding to the spec.

                              Add_ALI_For
                               (The_Unit_Data.File_Names (Specification).Name);

                           else
                              Error_Msg
                                (Project,
                                 "{ is not an unit of this project",
                                 String_Elements.Table (Interfaces).Location);
                           end if;
                        end if;

                     end if;

                     Interfaces := String_Elements.Table (Interfaces).Next;
                  end loop;

                  --  Put the list of Interface ALIs in the project data

                  Data.Lib_Interface_ALIs := Interface_ALIs;

                  --  Check value of attribute Library_Auto_Init and set
                  --  Lib_Auto_Init accordingly.

                  if Lib_Auto_Init.Default then
                     --  If no attribute Library_Auto_Init is declared, then
                     --  set auto init only if it is supported.

                     Data.Lib_Auto_Init := Auto_Init_Supported;

                  else
                     Get_Name_String (Lib_Auto_Init.Value);
                     To_Lower (Name_Buffer (1 .. Name_Len));

                     if Name_Buffer (1 .. Name_Len) = "false" then
                        Data.Lib_Auto_Init := False;

                     elsif Name_Buffer (1 .. Name_Len) = "true" then
                        if Auto_Init_Supported then
                           Data.Lib_Auto_Init := True;

                        else
                           --  Library_Auto_Init cannot be "true" if auto init
                           --  is not supported

                           Error_Msg
                             (Project,
                              "library auto init not supported " &
                              "on this platform",
                              Lib_Auto_Init.Location);
                        end if;

                     else
                        Error_Msg
                          (Project,
                           "invalid value for attribute Library_Auto_Init",
                           Lib_Auto_Init.Location);
                     end if;
                  end if;
               end;

               --  If attribute Library_Src_Dir is defined and not the
               --  empty string, check if the directory exist and is not
               --  the object directory or one of the source directories.
               --  This is the directory where copies of the interface
               --  sources will be copied. Note that this directory may be
               --  the library directory.

               if Lib_Src_Dir.Value /= Empty_String then
                  declare
                     Dir_Id : constant Name_Id := Lib_Src_Dir.Value;

                  begin
                     Locate_Directory
                       (Dir_Id, Data.Display_Directory,
                        Data.Library_Src_Dir,
                        Data.Display_Library_Src_Dir);

                     --  If directory does not exist, report an error

                     if Data.Library_Src_Dir = No_Name then

                        --  Get the absolute name of the library directory
                        --  that does not exist, to report an error.

                        declare
                           Dir_Name : constant String :=
                                        Get_Name_String (Dir_Id);

                        begin
                           if Is_Absolute_Path (Dir_Name) then
                              Err_Vars.Error_Msg_Name_1 := Dir_Id;

                           else
                              Get_Name_String (Data.Directory);

                              if Name_Buffer (Name_Len) /=
                                Directory_Separator
                              then
                                 Name_Len := Name_Len + 1;
                                 Name_Buffer (Name_Len) :=
                                   Directory_Separator;
                              end if;

                              Name_Buffer
                                (Name_Len + 1 ..
                                   Name_Len + Dir_Name'Length) :=
                                  Dir_Name;
                              Name_Len := Name_Len + Dir_Name'Length;
                              Err_Vars.Error_Msg_Name_1 := Name_Find;
                           end if;

                           --  Report the error

                           Error_Msg
                             (Project,
                              "Directory { does not exist",
                              Lib_Src_Dir.Location);
                        end;

                     --  Report an error if it is the same as the object
                     --  directory.

                     elsif Data.Library_Src_Dir = Data.Object_Directory then
                        Error_Msg
                          (Project,
                           "directory to copy interfaces cannot be " &
                           "the object directory",
                           Lib_Src_Dir.Location);
                        Data.Library_Src_Dir := No_Name;

                     --  Check if it is the same as one of the source
                     --  directories.

                     else
                        declare
                           Src_Dirs : String_List_Id := Data.Source_Dirs;
                           Src_Dir  : String_Element;

                        begin
                           while Src_Dirs /= Nil_String loop
                              Src_Dir := String_Elements.Table (Src_Dirs);
                              Src_Dirs := Src_Dir.Next;

                              --  Report an error if it is one of the
                              --  source directories.

                              if Data.Library_Src_Dir = Src_Dir.Value then
                                 Error_Msg
                                   (Project,
                                    "directory to copy interfaces cannot " &
                                    "be one of the source directories",
                                    Lib_Src_Dir.Location);
                                 Data.Library_Src_Dir := No_Name;
                                 exit;
                              end if;
                           end loop;
                        end;

                        if Data.Library_Src_Dir /= No_Name
                          and then Current_Verbosity = High
                        then
                           Write_Str ("Directory to copy interfaces =""");
                           Write_Str (Get_Name_String (Data.Library_Dir));
                           Write_Line ("""");
                        end if;
                     end if;
                  end;
               end if;

               if not Lib_Symbol_File.Default then
                  Data.Symbol_Data.Symbol_File := Lib_Symbol_File.Value;

                  Get_Name_String (Lib_Symbol_File.Value);

                  if Name_Len = 0 then
                     Error_Msg
                       (Project,
                        "symbol file name cannot be an empty string",
                        Lib_Symbol_File.Location);

                  else
                     OK := not Is_Absolute_Path (Name_Buffer (1 .. Name_Len));

                     if OK then
                        for J in 1 .. Name_Len loop
                           if Name_Buffer (J) = '/'
                             or else Name_Buffer (J) = Directory_Separator
                           then
                              OK := False;
                              exit;
                           end if;
                        end loop;
                     end if;

                     if not OK then
                        Error_Msg_Name_1 := Lib_Symbol_File.Value;
                        Error_Msg
                          (Project,
                           "symbol file name { is illegal. " &
                           "Name canot include directory info.",
                           Lib_Symbol_File.Location);
                     end if;
                  end if;
               end if;

               if not Lib_Symbol_Policy.Default then
                  declare
                     Value : constant String :=
                               To_Lower
                                 (Get_Name_String (Lib_Symbol_Policy.Value));

                  begin
                     if Value = "autonomous" or else Value = "default" then
                        Data.Symbol_Data.Symbol_Policy := Autonomous;

                     elsif Value = "compliant" then
                        Data.Symbol_Data.Symbol_Policy := Compliant;

                     elsif Value = "controlled" then
                        Data.Symbol_Data.Symbol_Policy := Controlled;

                     else
                        Error_Msg
                          (Project,
                           "illegal value for Library_Symbol_Policy",
                           Lib_Symbol_Policy.Location);
                     end if;
                  end;
               end if;

               if Lib_Ref_Symbol_File.Default then
                  if Data.Symbol_Data.Symbol_Policy /= Autonomous then
                     Error_Msg
                       (Project,
                        "a reference symbol file need to be defined",
                        Lib_Symbol_Policy.Location);
                  end if;

               else
                  Data.Symbol_Data.Reference := Lib_Ref_Symbol_File.Value;

                  Get_Name_String (Lib_Symbol_File.Value);

                  if Name_Len = 0 then
                     Error_Msg
                       (Project,
                        "reference symbol file name cannot be an empty string",
                        Lib_Symbol_File.Location);

                  else
                     OK := not Is_Absolute_Path (Name_Buffer (1 .. Name_Len));

                     if OK then
                        for J in 1 .. Name_Len loop
                           if Name_Buffer (J) = '/'
                             or else Name_Buffer (J) = Directory_Separator
                           then
                              OK := False;
                              exit;
                           end if;
                        end loop;
                     end if;

                     if not OK then
                        Error_Msg_Name_1 := Lib_Ref_Symbol_File.Value;
                        Error_Msg
                          (Project,
                           "reference symbol file { name is illegal. " &
                           "Name canot include directory info.",
                           Lib_Ref_Symbol_File.Location);
                     end if;

                     if not Is_Regular_File
                       (Get_Name_String (Data.Object_Directory) &
                        Directory_Separator &
                        Get_Name_String (Lib_Ref_Symbol_File.Value))
                     then
                        Error_Msg_Name_1 := Lib_Ref_Symbol_File.Value;
                        Error_Msg
                          (Project,
                           "library reference symbol file { does not exist",
                           Lib_Ref_Symbol_File.Location);
                     end if;

                     if Data.Symbol_Data.Symbol_File /= No_Name then
                        declare
                           Symbol : String :=
                                      Get_Name_String
                                        (Data.Symbol_Data.Symbol_File);

                           Reference : String :=
                                         Get_Name_String
                                           (Data.Symbol_Data.Reference);

                        begin
                           Canonical_Case_File_Name (Symbol);
                           Canonical_Case_File_Name (Reference);

                           if Symbol = Reference then
                              Error_Msg
                                (Project,
                                 "reference symbol file and symbol file " &
                                 "cannot be the same file",
                                 Lib_Ref_Symbol_File.Location);
                           end if;
                        end;
                     end if;
                  end if;
               end if;
            end if;
         end Standalone_Library;
      end if;

      --  Put the list of Mains, if any, in the project data

      declare
         Mains : constant Variable_Value :=
                   Prj.Util.Value_Of (Name_Main, Data.Decl.Attributes);

      begin
         Data.Mains := Mains.Values;

         --  If no Mains were specified, and if we are an extending
         --  project, inherit the Mains from the project we are extending.

         if Mains.Default then
            if Data.Extends /= No_Project then
               Data.Mains := Projects.Table (Data.Extends).Mains;
            end if;

         --  In a library project file, Main cannot be specified

         elsif Data.Library then
            Error_Msg
              (Project,
               "a library project file cannot have Main specified",
               Mains.Location);
         end if;
      end;

      Projects.Table (Project) := Data;

      Free_Naming_Exceptions;
   end Ada_Check;

   -------------------
   -- ALI_File_Name --
   -------------------

   function ALI_File_Name (Source : String) return String is
   begin
      --  If the source name has an extension, then replace it with
      --  the ALI suffix.

      for Index in reverse Source'First + 1 .. Source'Last loop
         if Source (Index) = '.' then
            return Source (Source'First .. Index - 1) & ALI_Suffix;
         end if;
      end loop;

      --  If there is no dot, or if it is the first character, just add the
      --  ALI suffix.

      return Source & ALI_Suffix;
   end ALI_File_Name;

   --------------------
   -- Check_Ada_Name --
   --------------------

   procedure Check_Ada_Name
     (Name : String;
      Unit : out Name_Id)
   is
      The_Name        : String := Name;
      Real_Name       : Name_Id;
      Need_Letter     : Boolean := True;
      Last_Underscore : Boolean := False;
      OK              : Boolean := The_Name'Length > 0;

   begin
      To_Lower (The_Name);

      Name_Len := The_Name'Length;
      Name_Buffer (1 .. Name_Len) := The_Name;
      Real_Name := Name_Find;

      --  Check first that the given name is not an Ada reserved word

      if Get_Name_Table_Byte (Real_Name) /= 0
        and then Real_Name /= Name_Project
        and then Real_Name /= Name_Extends
        and then Real_Name /= Name_External
      then
         Unit := No_Name;

         if Current_Verbosity = High then
            Write_Str (The_Name);
            Write_Line (" is an Ada reserved word.");
         end if;

         return;
      end if;

      for Index in The_Name'Range loop
         if Need_Letter then

            --  We need a letter (at the beginning, and following a dot),
            --  but we don't have one.

            if Is_Letter (The_Name (Index)) then
               Need_Letter := False;

            else
               OK := False;

               if Current_Verbosity = High then
                  Write_Int  (Types.Int (Index));
                  Write_Str  (": '");
                  Write_Char (The_Name (Index));
                  Write_Line ("' is not a letter.");
               end if;

               exit;
            end if;

         elsif Last_Underscore
           and then (The_Name (Index) = '_' or else The_Name (Index) = '.')
         then
            --  Two underscores are illegal, and a dot cannot follow
            --  an underscore.

            OK := False;

            if Current_Verbosity = High then
               Write_Int  (Types.Int (Index));
               Write_Str  (": '");
               Write_Char (The_Name (Index));
               Write_Line ("' is illegal here.");
            end if;

            exit;

         elsif The_Name (Index) = '.' then

            --  We need a letter after a dot

            Need_Letter := True;

         elsif The_Name (Index) = '_' then
            Last_Underscore := True;

         else
            --  We need an letter or a digit

            Last_Underscore := False;

            if not Is_Alphanumeric (The_Name (Index)) then
               OK := False;

               if Current_Verbosity = High then
                  Write_Int  (Types.Int (Index));
                  Write_Str  (": '");
                  Write_Char (The_Name (Index));
                  Write_Line ("' is not alphanumeric.");
               end if;

               exit;
            end if;
         end if;
      end loop;

      --  Cannot end with an underscore or a dot

      OK := OK and then not Need_Letter and then not Last_Underscore;

      if OK then
         Unit := Real_Name;

      else
         --  Signal a problem with No_Name

         Unit := No_Name;
      end if;
   end Check_Ada_Name;

   -----------------------------
   -- Check_Ada_Naming_Scheme --
   -----------------------------

   procedure Check_Ada_Naming_Scheme
     (Project : Project_Id;
      Naming  : Naming_Data)
   is
   begin
      --  Only check if we are not using the standard naming scheme

      if Naming /= Standard_Naming_Data then
         declare
            Dot_Replacement       : constant String :=
                                     Get_Name_String
                                       (Naming.Dot_Replacement);

            Spec_Suffix : constant String :=
                                     Get_Name_String
                                       (Naming.Current_Spec_Suffix);

            Body_Suffix : constant String :=
                                     Get_Name_String
                                       (Naming.Current_Body_Suffix);

            Separate_Suffix       : constant String :=
                                     Get_Name_String
                                       (Naming.Separate_Suffix);

         begin
            --  Dot_Replacement cannot
            --   - be empty
            --   - start or end with an alphanumeric
            --   - be a single '_'
            --   - start with an '_' followed by an alphanumeric
            --   - contain a '.' except if it is "."

            if Dot_Replacement'Length = 0
              or else Is_Alphanumeric
                        (Dot_Replacement (Dot_Replacement'First))
              or else Is_Alphanumeric
                        (Dot_Replacement (Dot_Replacement'Last))
              or else (Dot_Replacement (Dot_Replacement'First) = '_'
                        and then
                        (Dot_Replacement'Length = 1
                          or else
                           Is_Alphanumeric
                             (Dot_Replacement (Dot_Replacement'First + 1))))
              or else (Dot_Replacement'Length > 1
                         and then
                           Index (Source => Dot_Replacement,
                                  Pattern => ".") /= 0)
            then
               Error_Msg
                 (Project,
                  '"' & Dot_Replacement &
                  """ is illegal for Dot_Replacement.",
                  Naming.Dot_Repl_Loc);
            end if;

            --  Suffixes cannot
            --   - be empty

            if Is_Illegal_Suffix
                 (Spec_Suffix, Dot_Replacement = ".")
            then
               Err_Vars.Error_Msg_Name_1 := Naming.Current_Spec_Suffix;
               Error_Msg
                 (Project,
                  "{ is illegal for Spec_Suffix",
                  Naming.Spec_Suffix_Loc);
            end if;

            if Is_Illegal_Suffix
                 (Body_Suffix, Dot_Replacement = ".")
            then
               Err_Vars.Error_Msg_Name_1 := Naming.Current_Body_Suffix;
               Error_Msg
                 (Project,
                  "{ is illegal for Body_Suffix",
                  Naming.Body_Suffix_Loc);
            end if;

            if Body_Suffix /= Separate_Suffix then
               if Is_Illegal_Suffix
                    (Separate_Suffix, Dot_Replacement = ".")
               then
                  Err_Vars.Error_Msg_Name_1 := Naming.Separate_Suffix;
                  Error_Msg
                    (Project,
                     "{ is illegal for Separate_Suffix",
                     Naming.Sep_Suffix_Loc);
               end if;
            end if;

            --  Spec_Suffix cannot have the same termination as
            --  Body_Suffix or Separate_Suffix

            if Spec_Suffix'Length <= Body_Suffix'Length
              and then
                Body_Suffix (Body_Suffix'Last -
                             Spec_Suffix'Length + 1 ..
                             Body_Suffix'Last) = Spec_Suffix
            then
               Error_Msg
                 (Project,
                  "Body_Suffix (""" &
                  Body_Suffix &
                  """) cannot end with" &
                  " Spec_Suffix  (""" &
                  Spec_Suffix & """).",
                  Naming.Body_Suffix_Loc);
            end if;

            if Body_Suffix /= Separate_Suffix
              and then Spec_Suffix'Length <= Separate_Suffix'Length
              and then
                Separate_Suffix
                  (Separate_Suffix'Last - Spec_Suffix'Length + 1
                    ..
                   Separate_Suffix'Last) = Spec_Suffix
            then
               Error_Msg
                 (Project,
                  "Separate_Suffix (""" &
                  Separate_Suffix &
                  """) cannot end with" &
                  " Spec_Suffix (""" &
                  Spec_Suffix & """).",
                  Naming.Sep_Suffix_Loc);
            end if;
         end;
      end if;
   end Check_Ada_Naming_Scheme;

   ---------------
   -- Error_Msg --
   ---------------

   procedure Error_Msg
     (Project       : Project_Id;
      Msg           : String;
      Flag_Location : Source_Ptr)
   is
      Error_Buffer : String (1 .. 5_000);
      Error_Last   : Natural := 0;
      Msg_Name     : Natural := 0;
      First        : Positive := Msg'First;

      procedure Add (C : Character);
      --  Add a character to the buffer

      procedure Add (S : String);
      --  Add a string to the buffer

      procedure Add (Id : Name_Id);
      --  Add a name to the buffer

      ---------
      -- Add --
      ---------

      procedure Add (C : Character) is
      begin
         Error_Last := Error_Last + 1;
         Error_Buffer (Error_Last) := C;
      end Add;

      procedure Add (S : String) is
      begin
         Error_Buffer (Error_Last + 1 .. Error_Last + S'Length) := S;
         Error_Last := Error_Last + S'Length;
      end Add;

      procedure Add (Id : Name_Id) is
      begin
         Get_Name_String (Id);
         Add (Name_Buffer (1 .. Name_Len));
      end Add;

   --  Start of processing for Error_Msg

   begin
      if Error_Report = null then
         Prj.Err.Error_Msg (Msg, Flag_Location);
         return;
      end if;

      if Msg (First) = '\' then

         --  Continuation character, ignore.

         First := First + 1;

      elsif Msg (First) = '?' then

         --  Warning character. It is always the first one in this package

         First := First + 1;
         Add ("Warning: ");
      end if;

      for Index in First .. Msg'Last loop
         if Msg (Index) = '{' or else Msg (Index) = '%' then

            --  Include a name between double quotes.

            Msg_Name := Msg_Name + 1;
            Add ('"');

            case Msg_Name is
               when 1 => Add (Err_Vars.Error_Msg_Name_1);
               when 2 => Add (Err_Vars.Error_Msg_Name_2);
               when 3 => Add (Err_Vars.Error_Msg_Name_3);

               when others => null;
            end case;

            Add ('"');

         else
            Add (Msg (Index));
         end if;

      end loop;

      Error_Report (Error_Buffer (1 .. Error_Last), Project);
   end Error_Msg;

   --------------
   -- Get_Unit --
   --------------

   procedure Get_Unit
     (Canonical_File_Name : Name_Id;
      Naming              : Naming_Data;
      Unit_Name           : out Name_Id;
      Unit_Kind           : out Spec_Or_Body;
      Needs_Pragma        : out Boolean)
   is
      function Check_Exception (Canonical : Name_Id) return Boolean;
      pragma Inline (Check_Exception);
      --  Check if Canonical is one of the exceptions in List.
      --  Returns True if Get_Unit should exit

      ---------------------
      -- Check_Exception --
      ---------------------

      function Check_Exception (Canonical : Name_Id) return Boolean is
         Info     : Unit_Info := Naming_Exceptions.Get (Canonical);
         VMS_Name : Name_Id;

      begin
         if Info = No_Unit then
            if Hostparm.OpenVMS then
               VMS_Name := Canonical;
               Get_Name_String (VMS_Name);

               if Name_Buffer (Name_Len) = '.' then
                  Name_Len := Name_Len - 1;
                  VMS_Name := Name_Find;
               end if;

               Info := Naming_Exceptions.Get (VMS_Name);
            end if;

            if Info = No_Unit then
               return False;
            end if;
         end if;

         Unit_Kind := Info.Kind;
         Unit_Name := Info.Unit;
         Needs_Pragma := True;
         return True;
      end Check_Exception;

   --  Start of processing for Get_Unit

   begin
      Needs_Pragma := False;

      if Check_Exception (Canonical_File_Name) then
         return;
      end if;

      Get_Name_String (Canonical_File_Name);

      declare
         File          : String := Name_Buffer (1 .. Name_Len);
         First         : constant Positive := File'First;
         Last          : Natural           := File'Last;
         Standard_GNAT : Boolean;

      begin
         Standard_GNAT :=
           Naming.Current_Spec_Suffix = Default_Ada_Spec_Suffix
             and then Naming.Current_Body_Suffix = Default_Ada_Body_Suffix;

         --  Check if the end of the file name is Specification_Append

         Get_Name_String (Naming.Current_Spec_Suffix);

         if File'Length > Name_Len
           and then File (Last - Name_Len + 1 .. Last) =
                                                Name_Buffer (1 .. Name_Len)
         then
            --  We have a spec

            Unit_Kind := Specification;
            Last := Last - Name_Len;

            if Current_Verbosity = High then
               Write_Str  ("   Specification: ");
               Write_Line (File (First .. Last));
            end if;

         else
            Get_Name_String (Naming.Current_Body_Suffix);

            --  Check if the end of the file name is Body_Append

            if File'Length > Name_Len
              and then File (Last - Name_Len + 1 .. Last) =
                                                Name_Buffer (1 .. Name_Len)
            then
               --  We have a body

               Unit_Kind := Body_Part;
               Last := Last - Name_Len;

               if Current_Verbosity = High then
                  Write_Str  ("   Body: ");
                  Write_Line (File (First .. Last));
               end if;

            elsif Naming.Separate_Suffix /= Naming.Current_Spec_Suffix then
               Get_Name_String (Naming.Separate_Suffix);

               --  Check if the end of the file name is Separate_Append

               if File'Length > Name_Len
                 and then File (Last - Name_Len + 1 .. Last) =
                                                Name_Buffer (1 .. Name_Len)
               then
                  --  We have a separate (a body)

                  Unit_Kind := Body_Part;
                  Last := Last - Name_Len;

                  if Current_Verbosity = High then
                     Write_Str  ("   Separate: ");
                     Write_Line (File (First .. Last));
                  end if;

               else
                  Last := 0;
               end if;

            else
               Last := 0;
            end if;
         end if;

         if Last = 0 then

            --  This is not a source file

            Unit_Name := No_Name;
            Unit_Kind := Specification;

            if Current_Verbosity = High then
               Write_Line ("   Not a valid file name.");
            end if;

            return;
         end if;

         Get_Name_String (Naming.Dot_Replacement);
         Standard_GNAT :=
           Standard_GNAT and then Name_Buffer (1 .. Name_Len) = "-";

         if Name_Buffer (1 .. Name_Len) /= "." then

            --  If Dot_Replacement is not a single dot,
            --  then there should not be any dot in the name.

            for Index in First .. Last loop
               if File (Index) = '.' then
                  if Current_Verbosity = High then
                     Write_Line
                       ("   Not a valid file name (some dot not replaced).");
                  end if;

                  Unit_Name := No_Name;
                  return;

               end if;
            end loop;

            --  Replace the substring Dot_Replacement with dots

            declare
               Index : Positive := First;

            begin
               while Index <= Last - Name_Len + 1 loop

                  if File (Index .. Index + Name_Len - 1) =
                    Name_Buffer (1 .. Name_Len)
                  then
                     File (Index) := '.';

                     if Name_Len > 1 and then Index < Last then
                        File (Index + 1 .. Last - Name_Len + 1) :=
                          File (Index + Name_Len .. Last);
                     end if;

                     Last := Last - Name_Len + 1;
                  end if;

                  Index := Index + 1;
               end loop;
            end;
         end if;

         --  Check if the casing is right

         declare
            Src : String := File (First .. Last);

         begin
            case Naming.Casing is
               when All_Lower_Case =>
                  Fixed.Translate
                    (Source  => Src,
                     Mapping => Lower_Case_Map);

               when All_Upper_Case =>
                  Fixed.Translate
                    (Source  => Src,
                     Mapping => Upper_Case_Map);

               when Mixed_Case | Unknown =>
                  null;
            end case;

            if Src /= File (First .. Last) then
               if Current_Verbosity = High then
                  Write_Line ("   Not a valid file name (casing).");
               end if;

               Unit_Name := No_Name;
               return;
            end if;

            --  We put the name in lower case

            Fixed.Translate
              (Source  => Src,
               Mapping => Lower_Case_Map);

            --  In the standard GNAT naming scheme, check for special cases:
            --  children or separates of A, G, I or S, and run time sources.

            if Standard_GNAT and then Src'Length >= 3 then
               declare
                  S1 : constant Character := Src (Src'First);
                  S2 : constant Character := Src (Src'First + 1);

               begin
                  if S1 = 'a' or else S1 = 'g'
                    or else S1 = 'i' or else S1 = 's'
                  then
                     --  Children or separates of packages A, G, I or S

                     if (Hostparm.OpenVMS and then S2 = '$')
                       or else (not Hostparm.OpenVMS and then S2 = '~')
                     then
                        Src (Src'First + 1) := '.';

                     --  If it is potentially a run time source, disable
                     --  filling of the mapping file to avoid warnings.

                     elsif S2 = '.' then
                        Set_Mapping_File_Initial_State_To_Empty;
                     end if;

                  end if;
               end;
            end if;

            if Current_Verbosity = High then
               Write_Str  ("      ");
               Write_Line (Src);
            end if;

            --  Now, we check if this name is a valid unit name

            Check_Ada_Name (Name => Src, Unit => Unit_Name);
         end;

      end;
   end Get_Unit;

   -----------------------
   -- Is_Illegal_Suffix --
   -----------------------

   function Is_Illegal_Suffix
     (Suffix                          : String;
      Dot_Replacement_Is_A_Single_Dot : Boolean)
      return                            Boolean
   is
   begin
      if Suffix'Length = 0 or else Index (Suffix, ".") = 0 then
         return True;
      end if;

      --  If dot replacement is a single dot, and first character of
      --  suffix is also a dot

      if Dot_Replacement_Is_A_Single_Dot
        and then Suffix (Suffix'First) = '.'
      then
         for Index in Suffix'First + 1 .. Suffix'Last loop

            --  If there is another dot

            if Suffix (Index) = '.' then

               --  It is illegal to have a letter following the initial dot

               return Is_Letter (Suffix (Suffix'First + 1));
            end if;
         end loop;
      end if;

      --  Everything is OK

      return False;
   end Is_Illegal_Suffix;

   --------------------------------
   -- Language_Independent_Check --
   --------------------------------

   procedure Language_Independent_Check
     (Project      : Project_Id;
      Report_Error : Put_Line_Access)
   is
      Last_Source_Dir : String_List_Id  := Nil_String;
      Data            : Project_Data    := Projects.Table (Project);

      procedure Find_Source_Dirs (From : Name_Id; Location : Source_Ptr);
      --  Find one or several source directories, and add them
      --  to the list of source directories of the project.

      ----------------------
      -- Find_Source_Dirs --
      ----------------------

      procedure Find_Source_Dirs (From : Name_Id; Location : Source_Ptr) is
         Directory    : constant String := Get_Name_String (From);
         Canonical_Directory_Id : Name_Id;
         Element      : String_Element;

         procedure Recursive_Find_Dirs (Path : Name_Id);
         --  Find all the subdirectories (recursively) of Path
         --  and add them to the list of source directories
         --  of the project.

         -------------------------
         -- Recursive_Find_Dirs --
         -------------------------

         procedure Recursive_Find_Dirs (Path : Name_Id) is
            Dir      : Dir_Type;
            Name     : String (1 .. 250);
            Last     : Natural;
            List     : String_List_Id := Data.Source_Dirs;
            Element  : String_Element;
            Found    : Boolean := False;

            Canonical_Path : Name_Id := No_Name;

         begin
            Get_Name_String (Path);
            Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));

            declare
               The_Path : String :=
                            Normalize_Pathname
                              (Name => Name_Buffer (1 .. Name_Len)) &
                            Directory_Separator;
               The_Path_Last : constant Natural :=
                                 Compute_Directory_Last (The_Path);
            begin
               Name_Len := The_Path_Last - The_Path'First + 1;
               Name_Buffer (1 .. Name_Len) :=
                 The_Path (The_Path'First .. The_Path_Last);
               Canonical_Path := Name_Find;

               --  To avoid processing the same directory several times, check
               --  if the directory is already in Recursive_Dirs. If it is,
               --  then there is nothing to do, just return. If it is not, put
               --  it there and continue recursive processing.

               if Recursive_Dirs.Get (Canonical_Path) then
                  return;

               else
                  Recursive_Dirs.Set (Canonical_Path, True);
               end if;

               --  Check if directory is already in list

               while List /= Nil_String loop
                  Element := String_Elements.Table (List);

                  if Element.Value /= No_Name then
                     Get_Name_String (Element.Value);
                     Found :=
                       The_Path (The_Path'First .. The_Path_Last) =
                       Name_Buffer (1 .. Name_Len);
                     exit when Found;
                  end if;

                  List := Element.Next;
               end loop;

               --  If directory is not already in list, put it there

               if not Found then
                  if Current_Verbosity = High then
                     Write_Str  ("   ");
                     Write_Line (The_Path (The_Path'First .. The_Path_Last));
                  end if;

                  String_Elements.Increment_Last;
                  Element :=
                    (Value    => Canonical_Path,
                     Display_Value => No_Name,
                     Location => No_Location,
                     Flag     => False,
                     Next     => Nil_String);

                  --  Case of first source directory

                  if Last_Source_Dir = Nil_String then
                     Data.Source_Dirs := String_Elements.Last;

                     --  Here we already have source directories.

                  else
                     --  Link the previous last to the new one

                     String_Elements.Table (Last_Source_Dir).Next :=
                       String_Elements.Last;
                  end if;

                  --  And register this source directory as the new last

                  Last_Source_Dir  := String_Elements.Last;
                  String_Elements.Table (Last_Source_Dir) := Element;
               end if;

               --  Now look for subdirectories. We do that even when this
               --  directory is already in the list, because some of its
               --  subdirectories may not be in the list yet.

               Open (Dir, The_Path (The_Path'First .. The_Path_Last));

               loop
                  Read (Dir, Name, Last);
                  exit when Last = 0;

                  if Name (1 .. Last) /= "."
                    and then Name (1 .. Last) /= ".."
                  then
                     --  Avoid . and ..

                     if Current_Verbosity = High then
                        Write_Str  ("   Checking ");
                        Write_Line (Name (1 .. Last));
                     end if;

                     declare
                        Path_Name : String :=
                                      Normalize_Pathname
                                        (Name      => Name (1 .. Last),
                                         Directory =>
                                           The_Path
                                            (The_Path'First .. The_Path_Last));

                     begin
                        Canonical_Case_File_Name (Path_Name);

                        if Is_Directory (Path_Name) then

                           --  We have found a new subdirectory, call self

                           Name_Len := Path_Name'Length;
                           Name_Buffer (1 .. Name_Len) := Path_Name;
                           Recursive_Find_Dirs (Name_Find);
                        end if;
                     end;
                  end if;
               end loop;

               Close (Dir);
            end;

         exception
            when Directory_Error =>
               null;
         end Recursive_Find_Dirs;

      --  Start of processing for Find_Source_Dirs

      begin
         if Current_Verbosity = High then
            Write_Str ("Find_Source_Dirs (""");
         end if;

         Get_Name_String (From);
         Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
         --  Directory    := Name_Buffer (1 .. Name_Len);
         Canonical_Directory_Id := Name_Find;

         if Current_Verbosity = High then
            Write_Str (Directory);
            Write_Line (""")");
         end if;

         --  First, check if we are looking for a directory tree,
         --  indicated by "/**" at the end.

         if Directory'Length >= 3
           and then Directory (Directory'Last - 1 .. Directory'Last) = "**"
           and then (Directory (Directory'Last - 2) = '/'
                       or else
                     Directory (Directory'Last - 2) = Directory_Separator)
         then
            Data.Known_Order_Of_Source_Dirs := False;

            Name_Len := Directory'Length - 3;

            if Name_Len = 0 then

               --  This is the case of "/**": all directories
               --  in the file system.

               Name_Len := 1;
               Name_Buffer (1) := Directory (Directory'First);

            else
               Name_Buffer (1 .. Name_Len) :=
                 Directory (Directory'First .. Directory'Last - 3);
            end if;

            if Current_Verbosity = High then
               Write_Str ("Looking for all subdirectories of """);
               Write_Str (Name_Buffer (1 .. Name_Len));
               Write_Line ("""");
            end if;

            declare
               Base_Dir : constant Name_Id := Name_Find;
               Root_Dir : constant String :=
                            Normalize_Pathname
                              (Name      => Get_Name_String (Base_Dir),
                               Directory =>
                                 Get_Name_String (Data.Display_Directory));

            begin
               if Root_Dir'Length = 0 then
                  Err_Vars.Error_Msg_Name_1 := Base_Dir;

                  if Location = No_Location then
                     Error_Msg
                       (Project,
                        "{ is not a valid directory.",
                        Data.Location);
                  else
                     Error_Msg
                       (Project,
                        "{ is not a valid directory.",
                        Location);
                  end if;

               else
                  --  We have an existing directory,
                  --  we register it and all of its subdirectories.

                  if Current_Verbosity = High then
                     Write_Line ("Looking for source directories:");
                  end if;

                  Name_Len := Root_Dir'Length;
                  Name_Buffer (1 .. Name_Len) := Root_Dir;
                  Recursive_Find_Dirs (Name_Find);

                  if Current_Verbosity = High then
                     Write_Line ("End of looking for source directories.");
                  end if;
               end if;
            end;

         --  We have a single directory

         else
            declare
               Path_Name : Name_Id;
               Display_Path_Name : Name_Id;
            begin
               Locate_Directory
                 (From, Data.Display_Directory, Path_Name, Display_Path_Name);
               if Path_Name = No_Name then
                  Err_Vars.Error_Msg_Name_1 := From;

                  if Location = No_Location then
                     Error_Msg
                       (Project,
                        "{ is not a valid directory",
                        Data.Location);
                  else
                     Error_Msg
                       (Project,
                        "{ is not a valid directory",
                        Location);
                  end if;
               else

                  --  As it is an existing directory, we add it to
                  --  the list of directories.

                  String_Elements.Increment_Last;
                  Element.Value := Path_Name;
                  Element.Display_Value := Display_Path_Name;

                  if Last_Source_Dir = Nil_String then

                     --  This is the first source directory

                     Data.Source_Dirs := String_Elements.Last;

                  else
                     --  We already have source directories,
                     --  link the previous last to the new one.

                     String_Elements.Table (Last_Source_Dir).Next :=
                       String_Elements.Last;
                  end if;

                  --  And register this source directory as the new last

                  Last_Source_Dir := String_Elements.Last;
                  String_Elements.Table (Last_Source_Dir) := Element;
               end if;
            end;
         end if;
      end Find_Source_Dirs;

   --  Start of processing for Language_Independent_Check

   begin
      if Data.Language_Independent_Checked then
         return;
      end if;

      Data.Language_Independent_Checked := True;

      Error_Report := Report_Error;

      Recursive_Dirs.Reset;

      if Current_Verbosity = High then
         Write_Line ("Starting to look for directories");
      end if;

      --  Check the object directory

      declare
         Object_Dir : constant Variable_Value :=
                        Util.Value_Of (Name_Object_Dir, Data.Decl.Attributes);

      begin
         pragma Assert (Object_Dir.Kind = Single,
                        "Object_Dir is not a single string");

         --  We set the object directory to its default

         Data.Object_Directory   := Data.Directory;
         Data.Display_Object_Dir := Data.Display_Directory;

         if Object_Dir.Value /= Empty_String then

            Get_Name_String (Object_Dir.Value);

            if Name_Len = 0 then
               Error_Msg
                 (Project,
                  "Object_Dir cannot be empty",
                  Object_Dir.Location);

            else
               --  We check that the specified object directory
               --  does exist.

               Locate_Directory
                 (Object_Dir.Value, Data.Display_Directory,
                  Data.Object_Directory, Data.Display_Object_Dir);

               if Data.Object_Directory = No_Name then
                  --  The object directory does not exist, report an error
                  Err_Vars.Error_Msg_Name_1 := Object_Dir.Value;
                  Error_Msg
                    (Project,
                     "the object directory { cannot be found",
                     Data.Location);

                  --  Do not keep a nil Object_Directory. Set it to the
                  --  specified (relative or absolute) path.
                  --  This is for the benefit of tools that recover from
                  --  errors; for example, these tools could create the
                  --  non existent directory.

                  Data.Display_Object_Dir := Object_Dir.Value;
                  Get_Name_String (Object_Dir.Value);
                  Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
                  Data.Object_Directory := Name_Find;
               end if;
            end if;
         end if;
      end;

      if Current_Verbosity = High then
         if Data.Object_Directory = No_Name then
            Write_Line ("No object directory");
         else
            Write_Str ("Object directory: """);
            Write_Str (Get_Name_String (Data.Display_Object_Dir));
            Write_Line ("""");
         end if;
      end if;

      --  Check the exec directory

      declare
         Exec_Dir : constant Variable_Value :=
                      Util.Value_Of (Name_Exec_Dir, Data.Decl.Attributes);

      begin
         pragma Assert (Exec_Dir.Kind = Single,
                        "Exec_Dir is not a single string");

         --  We set the object directory to its default

         Data.Exec_Directory   := Data.Object_Directory;
         Data.Display_Exec_Dir := Data.Display_Object_Dir;

         if Exec_Dir.Value /= Empty_String then

            Get_Name_String (Exec_Dir.Value);

            if Name_Len = 0 then
               Error_Msg
                 (Project,
                  "Exec_Dir cannot be empty",
                  Exec_Dir.Location);

            else
               --  We check that the specified object directory
               --  does exist.

               Locate_Directory
                 (Exec_Dir.Value, Data.Directory,
                  Data.Exec_Directory, Data.Display_Exec_Dir);

               if Data.Exec_Directory = No_Name then
                  Err_Vars.Error_Msg_Name_1 := Exec_Dir.Value;
                  Error_Msg
                    (Project,
                     "the exec directory { cannot be found",
                     Data.Location);
               end if;
            end if;
         end if;
      end;

      if Current_Verbosity = High then
         if Data.Exec_Directory = No_Name then
            Write_Line ("No exec directory");
         else
            Write_Str ("Exec directory: """);
            Write_Str (Get_Name_String (Data.Display_Exec_Dir));
            Write_Line ("""");
         end if;
      end if;

      --  Look for the source directories

      declare
         Source_Dirs : constant Variable_Value :=
                         Util.Value_Of
                           (Name_Source_Dirs, Data.Decl.Attributes);

      begin
         if Current_Verbosity = High then
            Write_Line ("Starting to look for source directories");
         end if;

         pragma Assert (Source_Dirs.Kind = List,
                          "Source_Dirs is not a list");

         if Source_Dirs.Default then

            --  No Source_Dirs specified: the single source directory
            --  is the one containing the project file

            String_Elements.Increment_Last;
            Data.Source_Dirs := String_Elements.Last;
            String_Elements.Table (Data.Source_Dirs) :=
              (Value    => Data.Directory,
               Display_Value => Data.Display_Directory,
               Location => No_Location,
               Flag     => False,
               Next     => Nil_String);

            if Current_Verbosity = High then
               Write_Line ("Single source directory:");
               Write_Str ("    """);
               Write_Str (Get_Name_String (Data.Display_Directory));
               Write_Line ("""");
            end if;

         elsif Source_Dirs.Values = Nil_String then

            --  If Source_Dirs is an empty string list, this means
            --  that this project contains no source. For projects that
            --  don't extend other projects, this also means that there is no
            --  need for an object directory, if not specified.

            if Data.Extends = No_Project
              and then  Data.Object_Directory = Data.Directory
            then
               Data.Object_Directory := No_Name;
            end if;

            Data.Source_Dirs     := Nil_String;
            Data.Sources_Present := False;

         else
            declare
               Source_Dir : String_List_Id := Source_Dirs.Values;
               Element    : String_Element;

            begin
               --  We will find the source directories for each
               --  element of the list

               while Source_Dir /= Nil_String loop
                  Element := String_Elements.Table (Source_Dir);
                  Find_Source_Dirs (Element.Value, Element.Location);
                  Source_Dir := Element.Next;
               end loop;
            end;
         end if;

         if Current_Verbosity = High then
            Write_Line ("Putting source directories in canonical cases");
         end if;

         declare
            Current : String_List_Id := Data.Source_Dirs;
            Element : String_Element;

         begin
            while Current /= Nil_String loop
               Element := String_Elements.Table (Current);
               if Element.Value /= No_Name then
                  Element.Display_Value := Element.Value;
                  Get_Name_String (Element.Value);
                  Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
                  Element.Value := Name_Find;
                  String_Elements.Table (Current) := Element;
               end if;

               Current := Element.Next;
            end loop;
         end;
      end;

      --  Library attributes

      declare
         Attributes : constant Prj.Variable_Id := Data.Decl.Attributes;

         Lib_Dir : constant Prj.Variable_Value :=
                     Prj.Util.Value_Of (Snames.Name_Library_Dir, Attributes);

         Lib_Name : constant Prj.Variable_Value :=
                      Prj.Util.Value_Of (Snames.Name_Library_Name, Attributes);

         Lib_Version : constant Prj.Variable_Value :=
                         Prj.Util.Value_Of
                           (Snames.Name_Library_Version, Attributes);

         The_Lib_Kind : constant Prj.Variable_Value :=
                          Prj.Util.Value_Of
                            (Snames.Name_Library_Kind, Attributes);

      begin
         --  Special case of extending project

         if Data.Extends /= No_Project then
            declare
               Extended_Data : constant Project_Data :=
                 Projects.Table (Data.Extends);

            begin
               --  If the project extended is a library project, we inherit
               --  the library name, if it is not redefined; we check that
               --  the library directory is specified; and we reset the
               --  library flag for the extended project.

               if Extended_Data.Library then
                  if Lib_Name.Default then
                     Data.Library_Name := Extended_Data.Library_Name;
                  end if;

                  if Lib_Dir.Default then

                     --  If the extending project is a virtual project, we
                     --  put the error message in the library project that
                     --  is extended, rather than in the extending all project.
                     --  Of course, we cannot put it in the virtual extending
                     --  project, because it has no source.

                     if Data.Virtual then
                        Error_Msg_Name_1 := Extended_Data.Name;

                        Error_Msg
                          (Project,
                           "library project % cannot be virtually extended",
                           Extended_Data.Location);

                     else
                        Error_Msg
                          (Project,
                           "a project extending a library project must " &
                           "specify an attribute Library_Dir",
                           Data.Location);
                     end if;
                  end if;

                  Projects.Table (Data.Extends).Library := False;
               end if;
            end;
         end if;

         pragma Assert (Lib_Dir.Kind = Single);

         if Lib_Dir.Value = Empty_String then

            if Current_Verbosity = High then
               Write_Line ("No library directory");
            end if;

         else
            --  Find path name, check that it is a directory

            Locate_Directory
              (Lib_Dir.Value, Data.Display_Directory,
               Data.Library_Dir, Data.Display_Library_Dir);

            if Data.Library_Dir = No_Name then

               --  Get the absolute name of the library directory that
               --  does not exist, to report an error.

               declare
                  Dir_Name : constant String :=
                    Get_Name_String (Lib_Dir.Value);
               begin
                  if Is_Absolute_Path (Dir_Name) then
                     Err_Vars.Error_Msg_Name_1 := Lib_Dir.Value;

                  else
                     Get_Name_String (Data.Display_Directory);

                     if Name_Buffer (Name_Len) /= Directory_Separator then
                        Name_Len := Name_Len + 1;
                        Name_Buffer (Name_Len) := Directory_Separator;
                     end if;

                     Name_Buffer
                       (Name_Len + 1 .. Name_Len + Dir_Name'Length) :=
                       Dir_Name;
                     Name_Len := Name_Len + Dir_Name'Length;
                     Err_Vars.Error_Msg_Name_1 := Name_Find;
                  end if;

                  --  Report the error

                  Error_Msg
                    (Project,
                     "library directory { does not exist",
                     Lib_Dir.Location);
               end;

            elsif Data.Library_Dir = Data.Object_Directory then
               Error_Msg
                 (Project,
                  "library directory cannot be the same " &
                  "as object directory",
                  Lib_Dir.Location);
               Data.Library_Dir := No_Name;
               Data.Display_Library_Dir := No_Name;

            else
               if Current_Verbosity = High then
                  Write_Str ("Library directory =""");
                  Write_Str (Get_Name_String (Data.Display_Library_Dir));
                  Write_Line ("""");
               end if;
            end if;
         end if;

         pragma Assert (Lib_Name.Kind = Single);

         if Lib_Name.Value = Empty_String then
            if Current_Verbosity = High
              and then Data.Library_Name = No_Name
            then
               Write_Line ("No library name");
            end if;

         else
            --  There is no restriction on the syntax of library names

            Data.Library_Name := Lib_Name.Value;
         end if;

         if Data.Library_Name /= No_Name
           and then Current_Verbosity = High
         then
            Write_Str ("Library name = """);
            Write_Str (Get_Name_String (Data.Library_Name));
            Write_Line ("""");
         end if;

         Data.Library :=
           Data.Library_Dir /= No_Name
             and then
           Data.Library_Name /= No_Name;

         if Data.Library then
            if MLib.Tgt.Support_For_Libraries = MLib.Tgt.None then
               Error_Msg
                 (Project,
                  "?libraries are not supported on this platform",
                  Lib_Name.Location);
               Data.Library := False;

            else
               pragma Assert (Lib_Version.Kind = Single);

               if Lib_Version.Value = Empty_String then
                  if Current_Verbosity = High then
                     Write_Line ("No library version specified");
                  end if;

               else
                  Data.Lib_Internal_Name := Lib_Version.Value;
               end if;

               pragma Assert (The_Lib_Kind.Kind = Single);

               if The_Lib_Kind.Value = Empty_String then
                  if Current_Verbosity = High then
                     Write_Line ("No library kind specified");
                  end if;

               else
                  Get_Name_String (The_Lib_Kind.Value);

                  declare
                     Kind_Name : constant String :=
                                   To_Lower (Name_Buffer (1 .. Name_Len));

                     OK : Boolean := True;

                  begin
                     if Kind_Name = "static" then
                        Data.Library_Kind := Static;

                     elsif Kind_Name = "dynamic" then
                        Data.Library_Kind := Dynamic;

                     elsif Kind_Name = "relocatable" then
                        Data.Library_Kind := Relocatable;

                     else
                        Error_Msg
                          (Project,
                           "illegal value for Library_Kind",
                           The_Lib_Kind.Location);
                        OK := False;
                     end if;

                     if Current_Verbosity = High and then OK then
                        Write_Str ("Library kind = ");
                        Write_Line (Kind_Name);
                     end if;

                     if Data.Library_Kind /= Static and then
                       MLib.Tgt.Support_For_Libraries = MLib.Tgt.Static_Only
                     then
                        Error_Msg
                          (Project,
                           "only static libraries are supported " &
                           "on this platform",
                          The_Lib_Kind.Location);
                        Data.Library := False;
                     end if;
                  end;
               end if;

               if Data.Library and then Current_Verbosity = High then
                  Write_Line ("This is a library project file");
               end if;

            end if;
         end if;
      end;

      if Current_Verbosity = High then
         Show_Source_Dirs (Project);
      end if;

      declare
         Naming_Id : constant Package_Id :=
                       Util.Value_Of (Name_Naming, Data.Decl.Packages);

         Naming    : Package_Element;

      begin
         --  If there is a package Naming, we will put in Data.Naming
         --  what is in this package Naming.

         if Naming_Id /= No_Package then
            Naming := Packages.Table (Naming_Id);

            if Current_Verbosity = High then
               Write_Line ("Checking ""Naming"".");
            end if;

            --  Check Spec_Suffix

            declare
               Spec_Suffixs : Array_Element_Id :=
                                Util.Value_Of
                                  (Name_Spec_Suffix,
                                   Naming.Decl.Arrays);
               Suffix  : Array_Element_Id;
               Element : Array_Element;
               Suffix2 : Array_Element_Id;

            begin
               --  If some suffixs have been specified, we make sure that
               --  for each language for which a default suffix has been
               --  specified, there is a suffix specified, either the one
               --  in the project file or if there were none, the default.

               if Spec_Suffixs /= No_Array_Element then
                  Suffix := Data.Naming.Spec_Suffix;

                  while Suffix /= No_Array_Element loop
                     Element := Array_Elements.Table (Suffix);
                     Suffix2 := Spec_Suffixs;

                     while Suffix2 /= No_Array_Element loop
                        exit when Array_Elements.Table (Suffix2).Index =
                          Element.Index;
                        Suffix2 := Array_Elements.Table (Suffix2).Next;
                     end loop;

                     --  There is a registered default suffix, but no
                     --  suffix specified in the project file.
                     --  Add the default to the array.

                     if Suffix2 = No_Array_Element then
                        Array_Elements.Increment_Last;
                        Array_Elements.Table (Array_Elements.Last) :=
                          (Index => Element.Index,
                           Index_Case_Sensitive => False,
                           Value => Element.Value,
                           Next  => Spec_Suffixs);
                        Spec_Suffixs := Array_Elements.Last;
                     end if;

                     Suffix := Element.Next;
                  end loop;

                  --  Put the resulting array as the specification suffixs

                  Data.Naming.Spec_Suffix := Spec_Suffixs;
               end if;
            end;

            declare
               Current : Array_Element_Id := Data.Naming.Spec_Suffix;
               Element : Array_Element;

            begin
               while Current /= No_Array_Element loop
                  Element := Array_Elements.Table (Current);
                  Get_Name_String (Element.Value.Value);

                  if Name_Len = 0 then
                     Error_Msg
                       (Project,
                        "Spec_Suffix cannot be empty",
                        Element.Value.Location);
                  end if;

                  Array_Elements.Table (Current) := Element;
                  Current := Element.Next;
               end loop;
            end;

            --  Check Body_Suffix

            declare
               Impl_Suffixs : Array_Element_Id :=
                                Util.Value_Of
                                  (Name_Body_Suffix,
                                   Naming.Decl.Arrays);

               Suffix  : Array_Element_Id;
               Element : Array_Element;
               Suffix2 : Array_Element_Id;

            begin
               --  If some suffixs have been specified, we make sure that
               --  for each language for which a default suffix has been
               --  specified, there is a suffix specified, either the one
               --  in the project file or if there were noe, the default.

               if Impl_Suffixs /= No_Array_Element then
                  Suffix := Data.Naming.Body_Suffix;

                  while Suffix /= No_Array_Element loop
                     Element := Array_Elements.Table (Suffix);
                     Suffix2 := Impl_Suffixs;

                     while Suffix2 /= No_Array_Element loop
                        exit when Array_Elements.Table (Suffix2).Index =
                          Element.Index;
                        Suffix2 := Array_Elements.Table (Suffix2).Next;
                     end loop;

                     --  There is a registered default suffix, but no
                     --  suffix specified in the project file.
                     --  Add the default to the array.

                     if Suffix2 = No_Array_Element then
                        Array_Elements.Increment_Last;
                        Array_Elements.Table (Array_Elements.Last) :=
                          (Index => Element.Index,
                           Index_Case_Sensitive => False,
                           Value => Element.Value,
                           Next  => Impl_Suffixs);
                        Impl_Suffixs := Array_Elements.Last;
                     end if;

                     Suffix := Element.Next;
                  end loop;

                  --  Put the resulting array as the implementation suffixs

                  Data.Naming.Body_Suffix := Impl_Suffixs;
               end if;
            end;

            declare
               Current : Array_Element_Id := Data.Naming.Body_Suffix;
               Element : Array_Element;

            begin
               while Current /= No_Array_Element loop
                  Element := Array_Elements.Table (Current);
                  Get_Name_String (Element.Value.Value);

                  if Name_Len = 0 then
                     Error_Msg
                       (Project,
                        "Body_Suffix cannot be empty",
                        Element.Value.Location);
                  end if;

                  Array_Elements.Table (Current) := Element;
                  Current := Element.Next;
               end loop;
            end;

            --  Get the exceptions, if any

            Data.Naming.Specification_Exceptions :=
              Util.Value_Of
                (Name_Specification_Exceptions,
                 In_Arrays => Naming.Decl.Arrays);

            Data.Naming.Implementation_Exceptions :=
              Util.Value_Of
                (Name_Implementation_Exceptions,
                 In_Arrays => Naming.Decl.Arrays);
         end if;
      end;

      Projects.Table (Project) := Data;
   end Language_Independent_Check;

   ----------------------
   -- Locate_Directory --
   ----------------------

   procedure Locate_Directory
     (Name    : Name_Id;
      Parent  : Name_Id;
      Dir     : out Name_Id;
      Display : out Name_Id)
   is
      The_Name   : constant String := Get_Name_String (Name);
      The_Parent : constant String :=
                     Get_Name_String (Parent) & Directory_Separator;
      The_Parent_Last : constant Natural :=
                     Compute_Directory_Last (The_Parent);

   begin
      if Current_Verbosity = High then
         Write_Str ("Locate_Directory (""");
         Write_Str (The_Name);
         Write_Str (""", """);
         Write_Str (The_Parent);
         Write_Line (""")");
      end if;

      Dir     := No_Name;
      Display := No_Name;

      if Is_Absolute_Path (The_Name) then
         if Is_Directory (The_Name) then
            declare
               Normed : constant String :=
                 Normalize_Pathname (The_Name);

            begin
               Name_Len := Normed'Length;
               Name_Buffer (1 .. Name_Len) := Normed;
               Display := Name_Find;
               Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
               Dir := Name_Find;
            end;
         end if;

      else
         declare
            Full_Path : constant String :=
                          The_Parent (The_Parent'First .. The_Parent_Last) &
                          The_Name;

         begin
            if Is_Directory (Full_Path) then
               declare
                  Normed : constant String :=
                             Normalize_Pathname (Full_Path);

               begin
                  Name_Len := Normed'Length;
                  Name_Buffer (1 .. Name_Len) := Normed;
                  Display := Name_Find;
                  Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
                  Dir := Name_Find;
               end;
            end if;
         end;
      end if;
   end Locate_Directory;

   ------------------
   -- Path_Name_Of --
   ------------------

   function Path_Name_Of
     (File_Name : Name_Id;
      Directory : Name_Id)
      return      String
   is
      Result : String_Access;
      The_Directory : constant String := Get_Name_String (Directory);

   begin
      Get_Name_String (File_Name);
      Result := Locate_Regular_File
        (File_Name => Name_Buffer (1 .. Name_Len),
         Path      => The_Directory);

      if Result = null then
         return "";
      else
         Canonical_Case_File_Name (Result.all);
         return Result.all;
      end if;
   end Path_Name_Of;

   ---------------------
   -- Project_Extends --
   ---------------------

   function Project_Extends
     (Extending : Project_Id;
      Extended  : Project_Id)
      return      Boolean
   is
      Current : Project_Id := Extending;
   begin
      loop
         if Current = No_Project then
            return False;

         elsif Current = Extended then
            return True;
         end if;

         Current := Projects.Table (Current).Extends;
      end loop;
   end Project_Extends;

   -------------------
   -- Record_Source --
   -------------------

   procedure Record_Source
     (File_Name       : Name_Id;
      Path_Name       : Name_Id;
      Project         : Project_Id;
      Data            : in out Project_Data;
      Location        : Source_Ptr;
      Current_Source  : in out String_List_Id;
      Source_Recorded : in out Boolean)
   is
      Canonical_File_Name : Name_Id;
      Canonical_Path_Name : Name_Id;
      Unit_Name    : Name_Id;
      Unit_Kind    : Spec_Or_Body;
      Needs_Pragma : Boolean;

      The_Location    : Source_Ptr     := Location;
      Previous_Source : constant String_List_Id := Current_Source;
      Except_Name     : Name_Id        := No_Name;

   begin
      Get_Name_String (File_Name);
      Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
      Canonical_File_Name := Name_Find;
      Get_Name_String (Path_Name);
      Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
      Canonical_Path_Name := Name_Find;

      --  Find out the unit name, the unit kind and if it needs
      --  a specific SFN pragma.

      Get_Unit
        (Canonical_File_Name => Canonical_File_Name,
         Naming              => Data.Naming,
         Unit_Name           => Unit_Name,
         Unit_Kind           => Unit_Kind,
         Needs_Pragma        => Needs_Pragma);

      if Unit_Name = No_Name then
         if Current_Verbosity = High then
            Write_Str  ("   """);
            Write_Str  (Get_Name_String (Canonical_File_Name));
            Write_Line (""" is not a valid source file name (ignored).");
         end if;

      else
         --  Check to see if the source has been hidden by an exception,
         --  but only if it is not an exception.

         if not Needs_Pragma then
            Except_Name :=
              Reverse_Naming_Exceptions.Get ((Unit_Kind, Unit_Name));

            if Except_Name /= No_Name then
               if Current_Verbosity = High then
                  Write_Str  ("   """);
                  Write_Str  (Get_Name_String (Canonical_File_Name));
                  Write_Str  (""" contains a unit that is found in """);
                  Write_Str  (Get_Name_String (Except_Name));
                  Write_Line (""" (ignored).");
               end if;

               --  The file is not included in the source of the project,
               --  because it is hidden by the exception.
               --  So, there is nothing else to do.

               return;
            end if;
         end if;

         --  Put the file name in the list of sources of the project

         String_Elements.Increment_Last;
         String_Elements.Table (String_Elements.Last) :=
           (Value         => Canonical_File_Name,
            Display_Value => File_Name,
            Location      => No_Location,
            Flag          => False,
            Next          => Nil_String);

         if Current_Source = Nil_String then
            Data.Sources := String_Elements.Last;

         else
            String_Elements.Table (Current_Source).Next :=
              String_Elements.Last;
         end if;

         Current_Source := String_Elements.Last;

         --  Put the unit in unit list

         declare
            The_Unit      : Unit_Id := Units_Htable.Get (Unit_Name);
            The_Unit_Data : Unit_Data;

         begin
            if Current_Verbosity = High then
               Write_Str  ("Putting ");
               Write_Str  (Get_Name_String (Unit_Name));
               Write_Line (" in the unit list.");
            end if;

            --  The unit is already in the list, but may be it is
            --  only the other unit kind (spec or body), or what is
            --  in the unit list is a unit of a project we are extending.

            if The_Unit /= Prj.Com.No_Unit then
               The_Unit_Data := Units.Table (The_Unit);

               if The_Unit_Data.File_Names (Unit_Kind).Name = No_Name
                 or else Project_Extends
                           (Data.Extends,
                            The_Unit_Data.File_Names (Unit_Kind).Project)
               then
                  if The_Unit_Data.File_Names (Unit_Kind).Path = Slash then
                     Remove_Forbidden_File_Name
                       (The_Unit_Data.File_Names (Unit_Kind).Name);
                  end if;

                  The_Unit_Data.File_Names (Unit_Kind) :=
                    (Name         => Canonical_File_Name,
                     Display_Name => File_Name,
                     Path         => Canonical_Path_Name,
                     Display_Path => Path_Name,
                     Project      => Project,
                     Needs_Pragma => Needs_Pragma);
                  Units.Table (The_Unit) := The_Unit_Data;
                  Source_Recorded := True;

               elsif The_Unit_Data.File_Names (Unit_Kind).Project = Project
                 and then (Data.Known_Order_Of_Source_Dirs or else
                           The_Unit_Data.File_Names (Unit_Kind).Path =
                                                          Canonical_Path_Name)
               then
                  if Previous_Source = Nil_String then
                     Data.Sources := Nil_String;
                  else
                     String_Elements.Table (Previous_Source).Next :=
                       Nil_String;
                     String_Elements.Decrement_Last;
                  end if;

                  Current_Source := Previous_Source;

               else
                  --  It is an error to have two units with the same name
                  --  and the same kind (spec or body).

                  if The_Location = No_Location then
                     The_Location := Projects.Table (Project).Location;
                  end if;

                  Err_Vars.Error_Msg_Name_1 := Unit_Name;
                  Error_Msg (Project, "duplicate source {", The_Location);

                  Err_Vars.Error_Msg_Name_1 :=
                    Projects.Table
                      (The_Unit_Data.File_Names (Unit_Kind).Project).Name;
                  Err_Vars.Error_Msg_Name_2 :=
                    The_Unit_Data.File_Names (Unit_Kind).Path;
                  Error_Msg (Project, "\   project file {, {", The_Location);

                  Err_Vars.Error_Msg_Name_1 := Projects.Table (Project).Name;
                  Err_Vars.Error_Msg_Name_2 := Canonical_Path_Name;
                  Error_Msg (Project, "\   project file {, {", The_Location);

               end if;

            --  It is a new unit, create a new record

            else
               Units.Increment_Last;
               The_Unit := Units.Last;
               Units_Htable.Set (Unit_Name, The_Unit);
               The_Unit_Data.Name := Unit_Name;
               The_Unit_Data.File_Names (Unit_Kind) :=
                 (Name         => Canonical_File_Name,
                  Display_Name => File_Name,
                  Path         => Canonical_Path_Name,
                  Display_Path => Path_Name,
                  Project      => Project,
                  Needs_Pragma => Needs_Pragma);
               Units.Table (The_Unit) := The_Unit_Data;
               Source_Recorded := True;
            end if;
         end;
      end if;
   end Record_Source;

   ----------------------
   -- Show_Source_Dirs --
   ----------------------

   procedure Show_Source_Dirs (Project : Project_Id) is
      Current : String_List_Id := Projects.Table (Project).Source_Dirs;
      Element : String_Element;

   begin
      Write_Line ("Source_Dirs:");

      while Current /= Nil_String loop
         Element := String_Elements.Table (Current);
         Write_Str  ("   ");
         Write_Line (Get_Name_String (Element.Value));
         Current := Element.Next;
      end loop;

      Write_Line ("end Source_Dirs.");
   end Show_Source_Dirs;

end Prj.Nmsc;