aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/expr.c
blob: a8727430221fec5e1d59c7d0cf76d1f9a99bc200 (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
/* Routines for manipulation of expression nodes.
   Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
   Free Software Foundation, Inc.
   Contributed by Andy Vaught

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT 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
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

#include "config.h"
#include "system.h"
#include "gfortran.h"
#include "arith.h"
#include "match.h"
#include "target-memory.h" /* for gfc_convert_boz */

/* Get a new expr node.  */

gfc_expr *
gfc_get_expr (void)
{
  gfc_expr *e;

  e = gfc_getmem (sizeof (gfc_expr));
  gfc_clear_ts (&e->ts);
  e->shape = NULL;
  e->ref = NULL;
  e->symtree = NULL;
  e->con_by_offset = NULL;
  return e;
}


/* Free an argument list and everything below it.  */

void
gfc_free_actual_arglist (gfc_actual_arglist *a1)
{
  gfc_actual_arglist *a2;

  while (a1)
    {
      a2 = a1->next;
      gfc_free_expr (a1->expr);
      gfc_free (a1);
      a1 = a2;
    }
}


/* Copy an arglist structure and all of the arguments.  */

gfc_actual_arglist *
gfc_copy_actual_arglist (gfc_actual_arglist *p)
{
  gfc_actual_arglist *head, *tail, *new;

  head = tail = NULL;

  for (; p; p = p->next)
    {
      new = gfc_get_actual_arglist ();
      *new = *p;

      new->expr = gfc_copy_expr (p->expr);
      new->next = NULL;

      if (head == NULL)
	head = new;
      else
	tail->next = new;

      tail = new;
    }

  return head;
}


/* Free a list of reference structures.  */

void
gfc_free_ref_list (gfc_ref *p)
{
  gfc_ref *q;
  int i;

  for (; p; p = q)
    {
      q = p->next;

      switch (p->type)
	{
	case REF_ARRAY:
	  for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
	    {
	      gfc_free_expr (p->u.ar.start[i]);
	      gfc_free_expr (p->u.ar.end[i]);
	      gfc_free_expr (p->u.ar.stride[i]);
	    }

	  break;

	case REF_SUBSTRING:
	  gfc_free_expr (p->u.ss.start);
	  gfc_free_expr (p->u.ss.end);
	  break;

	case REF_COMPONENT:
	  break;
	}

      gfc_free (p);
    }
}


/* Workhorse function for gfc_free_expr() that frees everything
   beneath an expression node, but not the node itself.  This is
   useful when we want to simplify a node and replace it with
   something else or the expression node belongs to another structure.  */

static void
free_expr0 (gfc_expr *e)
{
  int n;

  switch (e->expr_type)
    {
    case EXPR_CONSTANT:
      /* Free any parts of the value that need freeing.  */
      switch (e->ts.type)
	{
	case BT_INTEGER:
	  mpz_clear (e->value.integer);
	  break;

	case BT_REAL:
	  mpfr_clear (e->value.real);
	  break;

	case BT_CHARACTER:
	  gfc_free (e->value.character.string);
	  break;

	case BT_COMPLEX:
	  mpfr_clear (e->value.complex.r);
	  mpfr_clear (e->value.complex.i);
	  break;

	default:
	  break;
	}

      /* Free the representation.  */
      if (e->representation.string)
	gfc_free (e->representation.string);

      break;

    case EXPR_OP:
      if (e->value.op.op1 != NULL)
	gfc_free_expr (e->value.op.op1);
      if (e->value.op.op2 != NULL)
	gfc_free_expr (e->value.op.op2);
      break;

    case EXPR_FUNCTION:
      gfc_free_actual_arglist (e->value.function.actual);
      break;

    case EXPR_VARIABLE:
      break;

    case EXPR_ARRAY:
    case EXPR_STRUCTURE:
      gfc_free_constructor (e->value.constructor);
      break;

    case EXPR_SUBSTRING:
      gfc_free (e->value.character.string);
      break;

    case EXPR_NULL:
      break;

    default:
      gfc_internal_error ("free_expr0(): Bad expr type");
    }

  /* Free a shape array.  */
  if (e->shape != NULL)
    {
      for (n = 0; n < e->rank; n++)
	mpz_clear (e->shape[n]);

      gfc_free (e->shape);
    }

  gfc_free_ref_list (e->ref);

  memset (e, '\0', sizeof (gfc_expr));
}


/* Free an expression node and everything beneath it.  */

void
gfc_free_expr (gfc_expr *e)
{
  if (e == NULL)
    return;
  if (e->con_by_offset)
    splay_tree_delete (e->con_by_offset); 
  free_expr0 (e);
  gfc_free (e);
}


/* Graft the *src expression onto the *dest subexpression.  */

void
gfc_replace_expr (gfc_expr *dest, gfc_expr *src)
{
  free_expr0 (dest);
  *dest = *src;
  gfc_free (src);
}


/* Try to extract an integer constant from the passed expression node.
   Returns an error message or NULL if the result is set.  It is
   tempting to generate an error and return SUCCESS or FAILURE, but
   failure is OK for some callers.  */

const char *
gfc_extract_int (gfc_expr *expr, int *result)
{
  if (expr->expr_type != EXPR_CONSTANT)
    return _("Constant expression required at %C");

  if (expr->ts.type != BT_INTEGER)
    return _("Integer expression required at %C");

  if ((mpz_cmp_si (expr->value.integer, INT_MAX) > 0)
      || (mpz_cmp_si (expr->value.integer, INT_MIN) < 0))
    {
      return _("Integer value too large in expression at %C");
    }

  *result = (int) mpz_get_si (expr->value.integer);

  return NULL;
}


/* Recursively copy a list of reference structures.  */

static gfc_ref *
copy_ref (gfc_ref *src)
{
  gfc_array_ref *ar;
  gfc_ref *dest;

  if (src == NULL)
    return NULL;

  dest = gfc_get_ref ();
  dest->type = src->type;

  switch (src->type)
    {
    case REF_ARRAY:
      ar = gfc_copy_array_ref (&src->u.ar);
      dest->u.ar = *ar;
      gfc_free (ar);
      break;

    case REF_COMPONENT:
      dest->u.c = src->u.c;
      break;

    case REF_SUBSTRING:
      dest->u.ss = src->u.ss;
      dest->u.ss.start = gfc_copy_expr (src->u.ss.start);
      dest->u.ss.end = gfc_copy_expr (src->u.ss.end);
      break;
    }

  dest->next = copy_ref (src->next);

  return dest;
}


/* Detect whether an expression has any vector index array references.  */

int
gfc_has_vector_index (gfc_expr *e)
{
  gfc_ref *ref;
  int i;
  for (ref = e->ref; ref; ref = ref->next)
    if (ref->type == REF_ARRAY)
      for (i = 0; i < ref->u.ar.dimen; i++)
	if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
	  return 1;
  return 0;
}


/* Copy a shape array.  */

mpz_t *
gfc_copy_shape (mpz_t *shape, int rank)
{
  mpz_t *new_shape;
  int n;

  if (shape == NULL)
    return NULL;

  new_shape = gfc_get_shape (rank);

  for (n = 0; n < rank; n++)
    mpz_init_set (new_shape[n], shape[n]);

  return new_shape;
}


/* Copy a shape array excluding dimension N, where N is an integer
   constant expression.  Dimensions are numbered in fortran style --
   starting with ONE.

   So, if the original shape array contains R elements
      { s1 ... sN-1  sN  sN+1 ... sR-1 sR}
   the result contains R-1 elements:
      { s1 ... sN-1  sN+1    ...  sR-1}

   If anything goes wrong -- N is not a constant, its value is out
   of range -- or anything else, just returns NULL.  */

mpz_t *
gfc_copy_shape_excluding (mpz_t *shape, int rank, gfc_expr *dim)
{
  mpz_t *new_shape, *s;
  int i, n;

  if (shape == NULL 
      || rank <= 1
      || dim == NULL
      || dim->expr_type != EXPR_CONSTANT 
      || dim->ts.type != BT_INTEGER)
    return NULL;

  n = mpz_get_si (dim->value.integer);
  n--; /* Convert to zero based index.  */
  if (n < 0 || n >= rank)
    return NULL;

  s = new_shape = gfc_get_shape (rank - 1);

  for (i = 0; i < rank; i++)
    {
      if (i == n)
	continue;
      mpz_init_set (*s, shape[i]);
      s++;
    }

  return new_shape;
}


/* Given an expression pointer, return a copy of the expression.  This
   subroutine is recursive.  */

gfc_expr *
gfc_copy_expr (gfc_expr *p)
{
  gfc_expr *q;
  gfc_char_t *s;
  char *c;

  if (p == NULL)
    return NULL;

  q = gfc_get_expr ();
  *q = *p;

  switch (q->expr_type)
    {
    case EXPR_SUBSTRING:
      s = gfc_get_wide_string (p->value.character.length + 1);
      q->value.character.string = s;
      memcpy (s, p->value.character.string,
	      (p->value.character.length + 1) * sizeof (gfc_char_t));
      break;

    case EXPR_CONSTANT:
      /* Copy target representation, if it exists.  */
      if (p->representation.string)
	{
	  c = gfc_getmem (p->representation.length + 1);
	  q->representation.string = c;
	  memcpy (c, p->representation.string, (p->representation.length + 1));
	}

      /* Copy the values of any pointer components of p->value.  */
      switch (q->ts.type)
	{
	case BT_INTEGER:
	  mpz_init_set (q->value.integer, p->value.integer);
	  break;

	case BT_REAL:
	  gfc_set_model_kind (q->ts.kind);
	  mpfr_init (q->value.real);
	  mpfr_set (q->value.real, p->value.real, GFC_RND_MODE);
	  break;

	case BT_COMPLEX:
	  gfc_set_model_kind (q->ts.kind);
	  mpfr_init (q->value.complex.r);
	  mpfr_init (q->value.complex.i);
	  mpfr_set (q->value.complex.r, p->value.complex.r, GFC_RND_MODE);
	  mpfr_set (q->value.complex.i, p->value.complex.i, GFC_RND_MODE);
	  break;

	case BT_CHARACTER:
	  if (p->representation.string)
	    q->value.character.string
	      = gfc_char_to_widechar (q->representation.string);
	  else
	    {
	      s = gfc_get_wide_string (p->value.character.length + 1);
	      q->value.character.string = s;

	      /* This is the case for the C_NULL_CHAR named constant.  */
	      if (p->value.character.length == 0
		  && (p->ts.is_c_interop || p->ts.is_iso_c))
		{
		  *s = '\0';
		  /* Need to set the length to 1 to make sure the NUL
		     terminator is copied.  */
		  q->value.character.length = 1;
		}
	      else
		memcpy (s, p->value.character.string,
			(p->value.character.length + 1) * sizeof (gfc_char_t));
	    }
	  break;

	case BT_HOLLERITH:
	case BT_LOGICAL:
	case BT_DERIVED:
	  break;		/* Already done.  */

	case BT_PROCEDURE:
        case BT_VOID:
           /* Should never be reached.  */
	case BT_UNKNOWN:
	  gfc_internal_error ("gfc_copy_expr(): Bad expr node");
	  /* Not reached.  */
	}

      break;

    case EXPR_OP:
      switch (q->value.op.operator)
	{
	case INTRINSIC_NOT:
	case INTRINSIC_PARENTHESES:
	case INTRINSIC_UPLUS:
	case INTRINSIC_UMINUS:
	  q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
	  break;

	default:		/* Binary operators.  */
	  q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
	  q->value.op.op2 = gfc_copy_expr (p->value.op.op2);
	  break;
	}

      break;

    case EXPR_FUNCTION:
      q->value.function.actual =
	gfc_copy_actual_arglist (p->value.function.actual);
      break;

    case EXPR_STRUCTURE:
    case EXPR_ARRAY:
      q->value.constructor = gfc_copy_constructor (p->value.constructor);
      break;

    case EXPR_VARIABLE:
    case EXPR_NULL:
      break;
    }

  q->shape = gfc_copy_shape (p->shape, p->rank);

  q->ref = copy_ref (p->ref);

  return q;
}


/* Return the maximum kind of two expressions.  In general, higher
   kind numbers mean more precision for numeric types.  */

int
gfc_kind_max (gfc_expr *e1, gfc_expr *e2)
{
  return (e1->ts.kind > e2->ts.kind) ? e1->ts.kind : e2->ts.kind;
}


/* Returns nonzero if the type is numeric, zero otherwise.  */

static int
numeric_type (bt type)
{
  return type == BT_COMPLEX || type == BT_REAL || type == BT_INTEGER;
}


/* Returns nonzero if the typespec is a numeric type, zero otherwise.  */

int
gfc_numeric_ts (gfc_typespec *ts)
{
  return numeric_type (ts->type);
}


/* Returns an expression node that is an integer constant.  */

gfc_expr *
gfc_int_expr (int i)
{
  gfc_expr *p;

  p = gfc_get_expr ();

  p->expr_type = EXPR_CONSTANT;
  p->ts.type = BT_INTEGER;
  p->ts.kind = gfc_default_integer_kind;

  p->where = gfc_current_locus;
  mpz_init_set_si (p->value.integer, i);

  return p;
}


/* Returns an expression node that is a logical constant.  */

gfc_expr *
gfc_logical_expr (int i, locus *where)
{
  gfc_expr *p;

  p = gfc_get_expr ();

  p->expr_type = EXPR_CONSTANT;
  p->ts.type = BT_LOGICAL;
  p->ts.kind = gfc_default_logical_kind;

  if (where == NULL)
    where = &gfc_current_locus;
  p->where = *where;
  p->value.logical = i;

  return p;
}


/* Return an expression node with an optional argument list attached.
   A variable number of gfc_expr pointers are strung together in an
   argument list with a NULL pointer terminating the list.  */

gfc_expr *
gfc_build_conversion (gfc_expr *e)
{
  gfc_expr *p;

  p = gfc_get_expr ();
  p->expr_type = EXPR_FUNCTION;
  p->symtree = NULL;
  p->value.function.actual = NULL;

  p->value.function.actual = gfc_get_actual_arglist ();
  p->value.function.actual->expr = e;

  return p;
}


/* Given an expression node with some sort of numeric binary
   expression, insert type conversions required to make the operands
   have the same type.

   The exception is that the operands of an exponential don't have to
   have the same type.  If possible, the base is promoted to the type
   of the exponent.  For example, 1**2.3 becomes 1.0**2.3, but
   1.0**2 stays as it is.  */

void
gfc_type_convert_binary (gfc_expr *e)
{
  gfc_expr *op1, *op2;

  op1 = e->value.op.op1;
  op2 = e->value.op.op2;

  if (op1->ts.type == BT_UNKNOWN || op2->ts.type == BT_UNKNOWN)
    {
      gfc_clear_ts (&e->ts);
      return;
    }

  /* Kind conversions of same type.  */
  if (op1->ts.type == op2->ts.type)
    {
      if (op1->ts.kind == op2->ts.kind)
	{
	  /* No type conversions.  */
	  e->ts = op1->ts;
	  goto done;
	}

      if (op1->ts.kind > op2->ts.kind)
	gfc_convert_type (op2, &op1->ts, 2);
      else
	gfc_convert_type (op1, &op2->ts, 2);

      e->ts = op1->ts;
      goto done;
    }

  /* Integer combined with real or complex.  */
  if (op2->ts.type == BT_INTEGER)
    {
      e->ts = op1->ts;

      /* Special case for ** operator.  */
      if (e->value.op.operator == INTRINSIC_POWER)
	goto done;

      gfc_convert_type (e->value.op.op2, &e->ts, 2);
      goto done;
    }

  if (op1->ts.type == BT_INTEGER)
    {
      e->ts = op2->ts;
      gfc_convert_type (e->value.op.op1, &e->ts, 2);
      goto done;
    }

  /* Real combined with complex.  */
  e->ts.type = BT_COMPLEX;
  if (op1->ts.kind > op2->ts.kind)
    e->ts.kind = op1->ts.kind;
  else
    e->ts.kind = op2->ts.kind;
  if (op1->ts.type != BT_COMPLEX || op1->ts.kind != e->ts.kind)
    gfc_convert_type (e->value.op.op1, &e->ts, 2);
  if (op2->ts.type != BT_COMPLEX || op2->ts.kind != e->ts.kind)
    gfc_convert_type (e->value.op.op2, &e->ts, 2);

done:
  return;
}


static match
check_specification_function (gfc_expr *e)
{
  gfc_symbol *sym;

  if (!e->symtree)
    return MATCH_NO;

  sym = e->symtree->n.sym;

  /* F95, 7.1.6.2; F2003, 7.1.7  */
  if (sym
      && sym->attr.function
      && sym->attr.pure
      && !sym->attr.intrinsic
      && !sym->attr.recursive
      && sym->attr.proc != PROC_INTERNAL
      && sym->attr.proc != PROC_ST_FUNCTION
      && sym->attr.proc != PROC_UNKNOWN
      && sym->formal == NULL)
    return MATCH_YES;

  return MATCH_NO;
}

/* Function to determine if an expression is constant or not.  This
   function expects that the expression has already been simplified.  */

int
gfc_is_constant_expr (gfc_expr *e)
{
  gfc_constructor *c;
  gfc_actual_arglist *arg;
  int rv;

  if (e == NULL)
    return 1;

  switch (e->expr_type)
    {
    case EXPR_OP:
      rv = (gfc_is_constant_expr (e->value.op.op1)
	    && (e->value.op.op2 == NULL
		|| gfc_is_constant_expr (e->value.op.op2)));
      break;

    case EXPR_VARIABLE:
      rv = 0;
      break;

    case EXPR_FUNCTION:
      /* Specification functions are constant.  */
      if (check_specification_function (e) == MATCH_YES)
	{
	  rv = 1;
	  break;
	}

      /* Call to intrinsic with at least one argument.  */
      rv = 0;
      if (e->value.function.isym && e->value.function.actual)
	{
	  for (arg = e->value.function.actual; arg; arg = arg->next)
	    {
	      if (!gfc_is_constant_expr (arg->expr))
		break;
	    }
	  if (arg == NULL)
	    rv = 1;
	}
      break;

    case EXPR_CONSTANT:
    case EXPR_NULL:
      rv = 1;
      break;

    case EXPR_SUBSTRING:
      rv = e->ref == NULL || (gfc_is_constant_expr (e->ref->u.ss.start)
			      && gfc_is_constant_expr (e->ref->u.ss.end));
      break;

    case EXPR_STRUCTURE:
      rv = 0;
      for (c = e->value.constructor; c; c = c->next)
	if (!gfc_is_constant_expr (c->expr))
	  break;

      if (c == NULL)
	rv = 1;
      break;

    case EXPR_ARRAY:
      rv = gfc_constant_ac (e);
      break;

    default:
      gfc_internal_error ("gfc_is_constant_expr(): Unknown expression type");
    }

  return rv;
}


/* Is true if an array reference is followed by a component or substring
   reference.  */
bool
is_subref_array (gfc_expr * e)
{
  gfc_ref * ref;
  bool seen_array;

  if (e->expr_type != EXPR_VARIABLE)
    return false;

  if (e->symtree->n.sym->attr.subref_array_pointer)
    return true;

  seen_array = false;
  for (ref = e->ref; ref; ref = ref->next)
    {
      if (ref->type == REF_ARRAY
	    && ref->u.ar.type != AR_ELEMENT)
	seen_array = true;

      if (seen_array
	    && ref->type != REF_ARRAY)
	return seen_array;
    }
  return false;
}


/* Try to collapse intrinsic expressions.  */

static try
simplify_intrinsic_op (gfc_expr *p, int type)
{
  gfc_intrinsic_op op;
  gfc_expr *op1, *op2, *result;

  if (p->value.op.operator == INTRINSIC_USER)
    return SUCCESS;

  op1 = p->value.op.op1;
  op2 = p->value.op.op2;
  op  = p->value.op.operator;

  if (gfc_simplify_expr (op1, type) == FAILURE)
    return FAILURE;
  if (gfc_simplify_expr (op2, type) == FAILURE)
    return FAILURE;

  if (!gfc_is_constant_expr (op1)
      || (op2 != NULL && !gfc_is_constant_expr (op2)))
    return SUCCESS;

  /* Rip p apart.  */
  p->value.op.op1 = NULL;
  p->value.op.op2 = NULL;

  switch (op)
    {
    case INTRINSIC_PARENTHESES:
      result = gfc_parentheses (op1);
      break;

    case INTRINSIC_UPLUS:
      result = gfc_uplus (op1);
      break;

    case INTRINSIC_UMINUS:
      result = gfc_uminus (op1);
      break;

    case INTRINSIC_PLUS:
      result = gfc_add (op1, op2);
      break;

    case INTRINSIC_MINUS:
      result = gfc_subtract (op1, op2);
      break;

    case INTRINSIC_TIMES:
      result = gfc_multiply (op1, op2);
      break;

    case INTRINSIC_DIVIDE:
      result = gfc_divide (op1, op2);
      break;

    case INTRINSIC_POWER:
      result = gfc_power (op1, op2);
      break;

    case INTRINSIC_CONCAT:
      result = gfc_concat (op1, op2);
      break;

    case INTRINSIC_EQ:
    case INTRINSIC_EQ_OS:
      result = gfc_eq (op1, op2, op);
      break;

    case INTRINSIC_NE:
    case INTRINSIC_NE_OS:
      result = gfc_ne (op1, op2, op);
      break;

    case INTRINSIC_GT:
    case INTRINSIC_GT_OS:
      result = gfc_gt (op1, op2, op);
      break;

    case INTRINSIC_GE:
    case INTRINSIC_GE_OS:
      result = gfc_ge (op1, op2, op);
      break;

    case INTRINSIC_LT:
    case INTRINSIC_LT_OS:
      result = gfc_lt (op1, op2, op);
      break;

    case INTRINSIC_LE:
    case INTRINSIC_LE_OS:
      result = gfc_le (op1, op2, op);
      break;

    case INTRINSIC_NOT:
      result = gfc_not (op1);
      break;

    case INTRINSIC_AND:
      result = gfc_and (op1, op2);
      break;

    case INTRINSIC_OR:
      result = gfc_or (op1, op2);
      break;

    case INTRINSIC_EQV:
      result = gfc_eqv (op1, op2);
      break;

    case INTRINSIC_NEQV:
      result = gfc_neqv (op1, op2);
      break;

    default:
      gfc_internal_error ("simplify_intrinsic_op(): Bad operator");
    }

  if (result == NULL)
    {
      gfc_free_expr (op1);
      gfc_free_expr (op2);
      return FAILURE;
    }

  result->rank = p->rank;
  result->where = p->where;
  gfc_replace_expr (p, result);

  return SUCCESS;
}


/* Subroutine to simplify constructor expressions.  Mutually recursive
   with gfc_simplify_expr().  */

static try
simplify_constructor (gfc_constructor *c, int type)
{
  gfc_expr *p;

  for (; c; c = c->next)
    {
      if (c->iterator
	  && (gfc_simplify_expr (c->iterator->start, type) == FAILURE
	      || gfc_simplify_expr (c->iterator->end, type) == FAILURE
	      || gfc_simplify_expr (c->iterator->step, type) == FAILURE))
	return FAILURE;

      if (c->expr)
	{
	  /* Try and simplify a copy.  Replace the original if successful
	     but keep going through the constructor at all costs.  Not
	     doing so can make a dog's dinner of complicated things.  */
	  p = gfc_copy_expr (c->expr);

	  if (gfc_simplify_expr (p, type) == FAILURE)
	    {
	      gfc_free_expr (p);
	      continue;
	    }

	  gfc_replace_expr (c->expr, p);
	}
    }

  return SUCCESS;
}


/* Pull a single array element out of an array constructor.  */

static try
find_array_element (gfc_constructor *cons, gfc_array_ref *ar,
		    gfc_constructor **rval)
{
  unsigned long nelemen;
  int i;
  mpz_t delta;
  mpz_t offset;
  mpz_t span;
  mpz_t tmp;
  gfc_expr *e;
  try t;

  t = SUCCESS;
  e = NULL;

  mpz_init_set_ui (offset, 0);
  mpz_init (delta);
  mpz_init (tmp);
  mpz_init_set_ui (span, 1);
  for (i = 0; i < ar->dimen; i++)
    {
      e = gfc_copy_expr (ar->start[i]);
      if (e->expr_type != EXPR_CONSTANT)
	{
	  cons = NULL;
	  goto depart;
	}
        /* Check the bounds.  */
      if ((ar->as->upper[i]
	     && ar->as->upper[i]->expr_type == EXPR_CONSTANT
	     && mpz_cmp (e->value.integer,
			 ar->as->upper[i]->value.integer) > 0)
		||
	  (ar->as->lower[i]->expr_type == EXPR_CONSTANT
	     && mpz_cmp (e->value.integer,
			 ar->as->lower[i]->value.integer) < 0))
	{
	  gfc_error ("Index in dimension %d is out of bounds "
		     "at %L", i + 1, &ar->c_where[i]);
	  cons = NULL;
	  t = FAILURE;
	  goto depart;
	}

      mpz_sub (delta, e->value.integer, ar->as->lower[i]->value.integer);
      mpz_mul (delta, delta, span);
      mpz_add (offset, offset, delta);

      mpz_set_ui (tmp, 1);
      mpz_add (tmp, tmp, ar->as->upper[i]->value.integer);
      mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
      mpz_mul (span, span, tmp);
    }

    for (nelemen = mpz_get_ui (offset); nelemen > 0; nelemen--)
      {
        if (cons)
	  {
	    if (cons->iterator)
	      {
	        cons = NULL;
	      
	        goto depart;
	      }
	    cons = cons->next;
	  }
      }

depart:
  mpz_clear (delta);
  mpz_clear (offset);
  mpz_clear (span);
  mpz_clear (tmp);
  if (e)
    gfc_free_expr (e);
  *rval = cons;
  return t;
}


/* Find a component of a structure constructor.  */

static gfc_constructor *
find_component_ref (gfc_constructor *cons, gfc_ref *ref)
{
  gfc_component *comp;
  gfc_component *pick;

  comp = ref->u.c.sym->components;
  pick = ref->u.c.component;
  while (comp != pick)
    {
      comp = comp->next;
      cons = cons->next;
    }

  return cons;
}


/* Replace an expression with the contents of a constructor, removing
   the subobject reference in the process.  */

static void
remove_subobject_ref (gfc_expr *p, gfc_constructor *cons)
{
  gfc_expr *e;

  e = cons->expr;
  cons->expr = NULL;
  e->ref = p->ref->next;
  p->ref->next =  NULL;
  gfc_replace_expr (p, e);
}


/* Pull an array section out of an array constructor.  */

static try
find_array_section (gfc_expr *expr, gfc_ref *ref)
{
  int idx;
  int rank;
  int d;
  int shape_i;
  long unsigned one = 1;
  bool incr_ctr;
  mpz_t start[GFC_MAX_DIMENSIONS];
  mpz_t end[GFC_MAX_DIMENSIONS];
  mpz_t stride[GFC_MAX_DIMENSIONS];
  mpz_t delta[GFC_MAX_DIMENSIONS];
  mpz_t ctr[GFC_MAX_DIMENSIONS];
  mpz_t delta_mpz;
  mpz_t tmp_mpz;
  mpz_t nelts;
  mpz_t ptr;
  mpz_t index;
  gfc_constructor *cons;
  gfc_constructor *base;
  gfc_expr *begin;
  gfc_expr *finish;
  gfc_expr *step;
  gfc_expr *upper;
  gfc_expr *lower;
  gfc_constructor *vecsub[GFC_MAX_DIMENSIONS], *c;
  try t;

  t = SUCCESS;

  base = expr->value.constructor;
  expr->value.constructor = NULL;

  rank = ref->u.ar.as->rank;

  if (expr->shape == NULL)
    expr->shape = gfc_get_shape (rank);

  mpz_init_set_ui (delta_mpz, one);
  mpz_init_set_ui (nelts, one);
  mpz_init (tmp_mpz);

  /* Do the initialization now, so that we can cleanup without
     keeping track of where we were.  */
  for (d = 0; d < rank; d++)
    {
      mpz_init (delta[d]);
      mpz_init (start[d]);
      mpz_init (end[d]);
      mpz_init (ctr[d]);
      mpz_init (stride[d]);
      vecsub[d] = NULL;
    }

  /* Build the counters to clock through the array reference.  */
  shape_i = 0;
  for (d = 0; d < rank; d++)
    {
      /* Make this stretch of code easier on the eye!  */
      begin = ref->u.ar.start[d];
      finish = ref->u.ar.end[d];
      step = ref->u.ar.stride[d];
      lower = ref->u.ar.as->lower[d];
      upper = ref->u.ar.as->upper[d];

      if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR)  /* Vector subscript.  */
	{
	  gcc_assert (begin);

	  if (begin->expr_type != EXPR_ARRAY || !gfc_is_constant_expr (begin))
	    {
	      t = FAILURE;
	      goto cleanup;
	    }

	  gcc_assert (begin->rank == 1);
	  gcc_assert (begin->shape);

	  vecsub[d] = begin->value.constructor;
	  mpz_set (ctr[d], vecsub[d]->expr->value.integer);
	  mpz_mul (nelts, nelts, begin->shape[0]);
	  mpz_set (expr->shape[shape_i++], begin->shape[0]);

	  /* Check bounds.  */
	  for (c = vecsub[d]; c; c = c->next)
	    {
	      if (mpz_cmp (c->expr->value.integer, upper->value.integer) > 0
		  || mpz_cmp (c->expr->value.integer,
			      lower->value.integer) < 0)
		{
		  gfc_error ("index in dimension %d is out of bounds "
			     "at %L", d + 1, &ref->u.ar.c_where[d]);
		  t = FAILURE;
		  goto cleanup;
		}
	    }
	}
      else
	{
	  if ((begin && begin->expr_type != EXPR_CONSTANT)
	      || (finish && finish->expr_type != EXPR_CONSTANT)
	      || (step && step->expr_type != EXPR_CONSTANT))
	    {
	      t = FAILURE;
	      goto cleanup;
	    }

	  /* Obtain the stride.  */
	  if (step)
	    mpz_set (stride[d], step->value.integer);
	  else
	    mpz_set_ui (stride[d], one);

	  if (mpz_cmp_ui (stride[d], 0) == 0)
	    mpz_set_ui (stride[d], one);

	  /* Obtain the start value for the index.  */
	  if (begin)
	    mpz_set (start[d], begin->value.integer);
	  else
	    mpz_set (start[d], lower->value.integer);

	  mpz_set (ctr[d], start[d]);

	  /* Obtain the end value for the index.  */
	  if (finish)
	    mpz_set (end[d], finish->value.integer);
	  else
	    mpz_set (end[d], upper->value.integer);

	  /* Separate 'if' because elements sometimes arrive with
	     non-null end.  */
	  if (ref->u.ar.dimen_type[d] == DIMEN_ELEMENT)
	    mpz_set (end [d], begin->value.integer);

	  /* Check the bounds.  */
	  if (mpz_cmp (ctr[d], upper->value.integer) > 0
	      || mpz_cmp (end[d], upper->value.integer) > 0
	      || mpz_cmp (ctr[d], lower->value.integer) < 0
	      || mpz_cmp (end[d], lower->value.integer) < 0)
	    {
	      gfc_error ("index in dimension %d is out of bounds "
			 "at %L", d + 1, &ref->u.ar.c_where[d]);
	      t = FAILURE;
	      goto cleanup;
	    }

	  /* Calculate the number of elements and the shape.  */
	  mpz_set (tmp_mpz, stride[d]);
	  mpz_add (tmp_mpz, end[d], tmp_mpz);
	  mpz_sub (tmp_mpz, tmp_mpz, ctr[d]);
	  mpz_div (tmp_mpz, tmp_mpz, stride[d]);
	  mpz_mul (nelts, nelts, tmp_mpz);

	  /* An element reference reduces the rank of the expression; don't
	     add anything to the shape array.  */
	  if (ref->u.ar.dimen_type[d] != DIMEN_ELEMENT) 
	    mpz_set (expr->shape[shape_i++], tmp_mpz);
	}

      /* Calculate the 'stride' (=delta) for conversion of the
	 counter values into the index along the constructor.  */
      mpz_set (delta[d], delta_mpz);
      mpz_sub (tmp_mpz, upper->value.integer, lower->value.integer);
      mpz_add_ui (tmp_mpz, tmp_mpz, one);
      mpz_mul (delta_mpz, delta_mpz, tmp_mpz);
    }

  mpz_init (index);
  mpz_init (ptr);
  cons = base;

  /* Now clock through the array reference, calculating the index in
     the source constructor and transferring the elements to the new
     constructor.  */  
  for (idx = 0; idx < (int) mpz_get_si (nelts); idx++)
    {
      if (ref->u.ar.offset)
	mpz_set (ptr, ref->u.ar.offset->value.integer);
      else
	mpz_init_set_ui (ptr, 0);

      incr_ctr = true;
      for (d = 0; d < rank; d++)
	{
	  mpz_set (tmp_mpz, ctr[d]);
	  mpz_sub (tmp_mpz, tmp_mpz, ref->u.ar.as->lower[d]->value.integer);
	  mpz_mul (tmp_mpz, tmp_mpz, delta[d]);
	  mpz_add (ptr, ptr, tmp_mpz);

	  if (!incr_ctr) continue;

	  if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript.  */
	    {
	      gcc_assert(vecsub[d]);

	      if (!vecsub[d]->next)
		vecsub[d] = ref->u.ar.start[d]->value.constructor;
	      else
		{
		  vecsub[d] = vecsub[d]->next;
		  incr_ctr = false;
		}
	      mpz_set (ctr[d], vecsub[d]->expr->value.integer);
	    }
	  else
	    {
	      mpz_add (ctr[d], ctr[d], stride[d]); 

	      if (mpz_cmp_ui (stride[d], 0) > 0
		  ? mpz_cmp (ctr[d], end[d]) > 0
		  : mpz_cmp (ctr[d], end[d]) < 0)
		mpz_set (ctr[d], start[d]);
	      else
		incr_ctr = false;
	    }
	}

      /* There must be a better way of dealing with negative strides
	 than resetting the index and the constructor pointer!  */ 
      if (mpz_cmp (ptr, index) < 0)
	{
	  mpz_set_ui (index, 0);
	  cons = base;
	}

      while (cons && cons->next && mpz_cmp (ptr, index) > 0)
	{
	  mpz_add_ui (index, index, one);
	  cons = cons->next;
	}

      gfc_append_constructor (expr, gfc_copy_expr (cons->expr));
    }

  mpz_clear (ptr);
  mpz_clear (index);

cleanup:

  mpz_clear (delta_mpz);
  mpz_clear (tmp_mpz);
  mpz_clear (nelts);
  for (d = 0; d < rank; d++)
    {
      mpz_clear (delta[d]);
      mpz_clear (start[d]);
      mpz_clear (end[d]);
      mpz_clear (ctr[d]);
      mpz_clear (stride[d]);
    }
  gfc_free_constructor (base);
  return t;
}

/* Pull a substring out of an expression.  */

static try
find_substring_ref (gfc_expr *p, gfc_expr **newp)
{
  int end;
  int start;
  int length;
  gfc_char_t *chr;

  if (p->ref->u.ss.start->expr_type != EXPR_CONSTANT
      || p->ref->u.ss.end->expr_type != EXPR_CONSTANT)
    return FAILURE;

  *newp = gfc_copy_expr (p);
  gfc_free ((*newp)->value.character.string);

  end = (int) mpz_get_ui (p->ref->u.ss.end->value.integer);
  start = (int) mpz_get_ui (p->ref->u.ss.start->value.integer);
  length = end - start + 1;

  chr = (*newp)->value.character.string = gfc_get_wide_string (length + 1);
  (*newp)->value.character.length = length;
  memcpy (chr, &p->value.character.string[start - 1],
	  length * sizeof (gfc_char_t));
  chr[length] = '\0';
  return SUCCESS;
}



/* Simplify a subobject reference of a constructor.  This occurs when
   parameter variable values are substituted.  */

static try
simplify_const_ref (gfc_expr *p)
{
  gfc_constructor *cons;
  gfc_expr *newp;

  while (p->ref)
    {
      switch (p->ref->type)
	{
	case REF_ARRAY:
	  switch (p->ref->u.ar.type)
	    {
	    case AR_ELEMENT:
	      if (find_array_element (p->value.constructor, &p->ref->u.ar,
				      &cons) == FAILURE)
		return FAILURE;

	      if (!cons)
		return SUCCESS;

	      remove_subobject_ref (p, cons);
	      break;

	    case AR_SECTION:
	      if (find_array_section (p, p->ref) == FAILURE)
		return FAILURE;
	      p->ref->u.ar.type = AR_FULL;

	    /* Fall through.  */

	    case AR_FULL:
	      if (p->ref->next != NULL
		  && (p->ts.type == BT_CHARACTER || p->ts.type == BT_DERIVED))
		{
		  cons = p->value.constructor;
		  for (; cons; cons = cons->next)
		    {
		      cons->expr->ref = copy_ref (p->ref->next);
		      simplify_const_ref (cons->expr);
		    }
		}
	      gfc_free_ref_list (p->ref);
	      p->ref = NULL;
	      break;

	    default:
	      return SUCCESS;
	    }

	  break;

	case REF_COMPONENT:
	  cons = find_component_ref (p->value.constructor, p->ref);
	  remove_subobject_ref (p, cons);
	  break;

	case REF_SUBSTRING:
  	  if (find_substring_ref (p, &newp) == FAILURE)
	    return FAILURE;

	  gfc_replace_expr (p, newp);
	  gfc_free_ref_list (p->ref);
	  p->ref = NULL;
	  break;
	}
    }

  return SUCCESS;
}


/* Simplify a chain of references.  */

static try
simplify_ref_chain (gfc_ref *ref, int type)
{
  int n;

  for (; ref; ref = ref->next)
    {
      switch (ref->type)
	{
	case REF_ARRAY:
	  for (n = 0; n < ref->u.ar.dimen; n++)
	    {
	      if (gfc_simplify_expr (ref->u.ar.start[n], type) == FAILURE)
		return FAILURE;
	      if (gfc_simplify_expr (ref->u.ar.end[n], type) == FAILURE)
		return FAILURE;
	      if (gfc_simplify_expr (ref->u.ar.stride[n], type) == FAILURE)
		return FAILURE;
	    }
	  break;

	case REF_SUBSTRING:
	  if (gfc_simplify_expr (ref->u.ss.start, type) == FAILURE)
	    return FAILURE;
	  if (gfc_simplify_expr (ref->u.ss.end, type) == FAILURE)
	    return FAILURE;
	  break;

	default:
	  break;
	}
    }
  return SUCCESS;
}


/* Try to substitute the value of a parameter variable.  */

static try
simplify_parameter_variable (gfc_expr *p, int type)
{
  gfc_expr *e;
  try t;

  e = gfc_copy_expr (p->symtree->n.sym->value);
  if (e == NULL)
    return FAILURE;

  e->rank = p->rank;

  /* Do not copy subobject refs for constant.  */
  if (e->expr_type != EXPR_CONSTANT && p->ref != NULL)
    e->ref = copy_ref (p->ref);
  t = gfc_simplify_expr (e, type);

  /* Only use the simplification if it eliminated all subobject references.  */
  if (t == SUCCESS && !e->ref)
    gfc_replace_expr (p, e);
  else
    gfc_free_expr (e);

  return t;
}

/* Given an expression, simplify it by collapsing constant
   expressions.  Most simplification takes place when the expression
   tree is being constructed.  If an intrinsic function is simplified
   at some point, we get called again to collapse the result against
   other constants.

   We work by recursively simplifying expression nodes, simplifying
   intrinsic functions where possible, which can lead to further
   constant collapsing.  If an operator has constant operand(s), we
   rip the expression apart, and rebuild it, hoping that it becomes
   something simpler.

   The expression type is defined for:
     0   Basic expression parsing
     1   Simplifying array constructors -- will substitute
	 iterator values.
   Returns FAILURE on error, SUCCESS otherwise.
   NOTE: Will return SUCCESS even if the expression can not be simplified.  */

try
gfc_simplify_expr (gfc_expr *p, int type)
{
  gfc_actual_arglist *ap;

  if (p == NULL)
    return SUCCESS;

  switch (p->expr_type)
    {
    case EXPR_CONSTANT:
    case EXPR_NULL:
      break;

    case EXPR_FUNCTION:
      for (ap = p->value.function.actual; ap; ap = ap->next)
	if (gfc_simplify_expr (ap->expr, type) == FAILURE)
	  return FAILURE;

      if (p->value.function.isym != NULL
	  && gfc_intrinsic_func_interface (p, 1) == MATCH_ERROR)
	return FAILURE;

      break;

    case EXPR_SUBSTRING:
      if (simplify_ref_chain (p->ref, type) == FAILURE)
	return FAILURE;

      if (gfc_is_constant_expr (p))
	{
	  gfc_char_t *s;
	  int start, end;

	  if (p->ref && p->ref->u.ss.start)
	    {
	      gfc_extract_int (p->ref->u.ss.start, &start);
	      start--;  /* Convert from one-based to zero-based.  */
	    }
	  else
	    start = 0;

	  if (p->ref && p->ref->u.ss.end)
	    gfc_extract_int (p->ref->u.ss.end, &end);
	  else
	    end = p->value.character.length;

	  s = gfc_get_wide_string (end - start + 2);
	  memcpy (s, p->value.character.string + start,
		  (end - start) * sizeof (gfc_char_t));
	  s[end - start + 1] = '\0';  /* TODO: C-style string.  */
	  gfc_free (p->value.character.string);
	  p->value.character.string = s;
	  p->value.character.length = end - start;
	  p->ts.cl = gfc_get_charlen ();
	  p->ts.cl->next = gfc_current_ns->cl_list;
	  gfc_current_ns->cl_list = p->ts.cl;
	  p->ts.cl->length = gfc_int_expr (p->value.character.length);
	  gfc_free_ref_list (p->ref);
	  p->ref = NULL;
	  p->expr_type = EXPR_CONSTANT;
	}
      break;

    case EXPR_OP:
      if (simplify_intrinsic_op (p, type) == FAILURE)
	return FAILURE;
      break;

    case EXPR_VARIABLE:
      /* Only substitute array parameter variables if we are in an
	 initialization expression, or we want a subsection.  */
      if (p->symtree->n.sym->attr.flavor == FL_PARAMETER
	  && (gfc_init_expr || p->ref
	      || p->symtree->n.sym->value->expr_type != EXPR_ARRAY))
	{
	  if (simplify_parameter_variable (p, type) == FAILURE)
	    return FAILURE;
	  break;
	}

      if (type == 1)
	{
	  gfc_simplify_iterator_var (p);
	}

      /* Simplify subcomponent references.  */
      if (simplify_ref_chain (p->ref, type) == FAILURE)
	return FAILURE;

      break;

    case EXPR_STRUCTURE:
    case EXPR_ARRAY:
      if (simplify_ref_chain (p->ref, type) == FAILURE)
	return FAILURE;

      if (simplify_constructor (p->value.constructor, type) == FAILURE)
	return FAILURE;

      if (p->expr_type == EXPR_ARRAY && p->ref && p->ref->type == REF_ARRAY
	  && p->ref->u.ar.type == AR_FULL)
	  gfc_expand_constructor (p);

      if (simplify_const_ref (p) == FAILURE)
	return FAILURE;

      break;
    }

  return SUCCESS;
}


/* Returns the type of an expression with the exception that iterator
   variables are automatically integers no matter what else they may
   be declared as.  */

static bt
et0 (gfc_expr *e)
{
  if (e->expr_type == EXPR_VARIABLE && gfc_check_iter_variable (e) == SUCCESS)
    return BT_INTEGER;

  return e->ts.type;
}


/* Check an intrinsic arithmetic operation to see if it is consistent
   with some type of expression.  */

static try check_init_expr (gfc_expr *);


/* Scalarize an expression for an elemental intrinsic call.  */

static try
scalarize_intrinsic_call (gfc_expr *e)
{
  gfc_actual_arglist *a, *b;
  gfc_constructor *args[5], *ctor, *new_ctor;
  gfc_expr *expr, *old;
  int n, i, rank[5], array_arg;

  /* Find which, if any, arguments are arrays.  Assume that the old
     expression carries the type information and that the first arg
     that is an array expression carries all the shape information.*/
  n = array_arg = 0;
  a = e->value.function.actual;
  for (; a; a = a->next)
    {
      n++;
      if (a->expr->expr_type != EXPR_ARRAY)
	continue;
      array_arg = n;
      expr = gfc_copy_expr (a->expr);
      break;
    }

  if (!array_arg)
    return FAILURE;

  old = gfc_copy_expr (e);

  gfc_free_constructor (expr->value.constructor);
  expr->value.constructor = NULL;

  expr->ts = old->ts;
  expr->where = old->where;
  expr->expr_type = EXPR_ARRAY;

  /* Copy the array argument constructors into an array, with nulls
     for the scalars.  */
  n = 0;
  a = old->value.function.actual;
  for (; a; a = a->next)
    {
      /* Check that this is OK for an initialization expression.  */
      if (a->expr && check_init_expr (a->expr) == FAILURE)
	goto cleanup;

      rank[n] = 0;
      if (a->expr && a->expr->rank && a->expr->expr_type == EXPR_VARIABLE)
	{
	  rank[n] = a->expr->rank;
	  ctor = a->expr->symtree->n.sym->value->value.constructor;
	  args[n] = gfc_copy_constructor (ctor);
	}
      else if (a->expr && a->expr->expr_type == EXPR_ARRAY)
	{
	  if (a->expr->rank)
	    rank[n] = a->expr->rank;
	  else
	    rank[n] = 1;
	  args[n] = gfc_copy_constructor (a->expr->value.constructor);
	}
      else
	args[n] = NULL;
      n++;
    }


  /* Using the array argument as the master, step through the array
     calling the function for each element and advancing the array
     constructors together.  */
  ctor = args[array_arg - 1];
  new_ctor = NULL;
  for (; ctor; ctor = ctor->next)
    {
	  if (expr->value.constructor == NULL)
	    expr->value.constructor
		= new_ctor = gfc_get_constructor ();
	  else
	    {
	      new_ctor->next = gfc_get_constructor ();
	      new_ctor = new_ctor->next;
	    }
	  new_ctor->expr = gfc_copy_expr (old);
	  gfc_free_actual_arglist (new_ctor->expr->value.function.actual);
	  a = NULL;
	  b = old->value.function.actual;
	  for (i = 0; i < n; i++)
	    {
	      if (a == NULL)
		new_ctor->expr->value.function.actual
			= a = gfc_get_actual_arglist ();
	      else
		{
		  a->next = gfc_get_actual_arglist ();
		  a = a->next;
		}
	      if (args[i])
		a->expr = gfc_copy_expr (args[i]->expr);
	      else
		a->expr = gfc_copy_expr (b->expr);

	      b = b->next;
	    }

	  /* Simplify the function calls.  If the simplification fails, the
	     error will be flagged up down-stream or the library will deal
	     with it.  */
	  gfc_simplify_expr (new_ctor->expr, 0);

	  for (i = 0; i < n; i++)
	    if (args[i])
	      args[i] = args[i]->next;

	  for (i = 1; i < n; i++)
	    if (rank[i] && ((args[i] != NULL && args[array_arg - 1] == NULL)
			 || (args[i] == NULL && args[array_arg - 1] != NULL)))
	      goto compliance;
    }

  free_expr0 (e);
  *e = *expr;
  gfc_free_expr (old);
  return SUCCESS;

compliance:
  gfc_error_now ("elemental function arguments at %C are not compliant");

cleanup:
  gfc_free_expr (expr);
  gfc_free_expr (old);
  return FAILURE;
}


static try
check_intrinsic_op (gfc_expr *e, try (*check_function) (gfc_expr *))
{
  gfc_expr *op1 = e->value.op.op1;
  gfc_expr *op2 = e->value.op.op2;

  if ((*check_function) (op1) == FAILURE)
    return FAILURE;

  switch (e->value.op.operator)
    {
    case INTRINSIC_UPLUS:
    case INTRINSIC_UMINUS:
      if (!numeric_type (et0 (op1)))
	goto not_numeric;
      break;

    case INTRINSIC_EQ:
    case INTRINSIC_EQ_OS:
    case INTRINSIC_NE:
    case INTRINSIC_NE_OS:
    case INTRINSIC_GT:
    case INTRINSIC_GT_OS:
    case INTRINSIC_GE:
    case INTRINSIC_GE_OS:
    case INTRINSIC_LT:
    case INTRINSIC_LT_OS:
    case INTRINSIC_LE:
    case INTRINSIC_LE_OS:
      if ((*check_function) (op2) == FAILURE)
	return FAILURE;
      
      if (!(et0 (op1) == BT_CHARACTER && et0 (op2) == BT_CHARACTER)
	  && !(numeric_type (et0 (op1)) && numeric_type (et0 (op2))))
	{
	  gfc_error ("Numeric or CHARACTER operands are required in "
		     "expression at %L", &e->where);
	 return FAILURE;
	}
      break;

    case INTRINSIC_PLUS:
    case INTRINSIC_MINUS:
    case INTRINSIC_TIMES:
    case INTRINSIC_DIVIDE:
    case INTRINSIC_POWER:
      if ((*check_function) (op2) == FAILURE)
	return FAILURE;

      if (!numeric_type (et0 (op1)) || !numeric_type (et0 (op2)))
	goto not_numeric;

      if (e->value.op.operator == INTRINSIC_POWER
	  && check_function == check_init_expr && et0 (op2) != BT_INTEGER)
	{
	  if (gfc_notify_std (GFC_STD_F2003,"Fortran 2003: Noninteger "
			      "exponent in an initialization "
			      "expression at %L", &op2->where)
	      == FAILURE)
	    return FAILURE;
	}

      break;

    case INTRINSIC_CONCAT:
      if ((*check_function) (op2) == FAILURE)
	return FAILURE;

      if (et0 (op1) != BT_CHARACTER || et0 (op2) != BT_CHARACTER)
	{
	  gfc_error ("Concatenation operator in expression at %L "
		     "must have two CHARACTER operands", &op1->where);
	  return FAILURE;
	}

      if (op1->ts.kind != op2->ts.kind)
	{
	  gfc_error ("Concat operator at %L must concatenate strings of the "
		     "same kind", &e->where);
	  return FAILURE;
	}

      break;

    case INTRINSIC_NOT:
      if (et0 (op1) != BT_LOGICAL)
	{
	  gfc_error (".NOT. operator in expression at %L must have a LOGICAL "
		     "operand", &op1->where);
	  return FAILURE;
	}

      break;

    case INTRINSIC_AND:
    case INTRINSIC_OR:
    case INTRINSIC_EQV:
    case INTRINSIC_NEQV:
      if ((*check_function) (op2) == FAILURE)
	return FAILURE;

      if (et0 (op1) != BT_LOGICAL || et0 (op2) != BT_LOGICAL)
	{
	  gfc_error ("LOGICAL operands are required in expression at %L",
		     &e->where);
	  return FAILURE;
	}

      break;

    case INTRINSIC_PARENTHESES:
      break;

    default:
      gfc_error ("Only intrinsic operators can be used in expression at %L",
		 &e->where);
      return FAILURE;
    }

  return SUCCESS;

not_numeric:
  gfc_error ("Numeric operands are required in expression at %L", &e->where);

  return FAILURE;
}


static match
check_init_expr_arguments (gfc_expr *e)
{
  gfc_actual_arglist *ap;

  for (ap = e->value.function.actual; ap; ap = ap->next)
    if (check_init_expr (ap->expr) == FAILURE)
      return MATCH_ERROR;

  return MATCH_YES;
}

/* F95, 7.1.6.1, Initialization expressions, (7)
   F2003, 7.1.7 Initialization expression, (8)  */

static match
check_inquiry (gfc_expr *e, int not_restricted)
{
  const char *name;
  const char *const *functions;

  static const char *const inquiry_func_f95[] = {
    "lbound", "shape", "size", "ubound",
    "bit_size", "len", "kind",
    "digits", "epsilon", "huge", "maxexponent", "minexponent",
    "precision", "radix", "range", "tiny",
    NULL
  };

  static const char *const inquiry_func_f2003[] = {
    "lbound", "shape", "size", "ubound",
    "bit_size", "len", "kind",
    "digits", "epsilon", "huge", "maxexponent", "minexponent",
    "precision", "radix", "range", "tiny",
    "new_line", NULL
  };

  int i;
  gfc_actual_arglist *ap;

  if (!e->value.function.isym
      || !e->value.function.isym->inquiry)
    return MATCH_NO;

  /* An undeclared parameter will get us here (PR25018).  */
  if (e->symtree == NULL)
    return MATCH_NO;

  name = e->symtree->n.sym->name;

  functions = (gfc_option.warn_std & GFC_STD_F2003) 
		? inquiry_func_f2003 : inquiry_func_f95;

  for (i = 0; functions[i]; i++)
    if (strcmp (functions[i], name) == 0)
      break;

  if (functions[i] == NULL)
    return MATCH_ERROR;

  /* At this point we have an inquiry function with a variable argument.  The
     type of the variable might be undefined, but we need it now, because the
     arguments of these functions are not allowed to be undefined.  */

  for (ap = e->value.function.actual; ap; ap = ap->next)
    {
      if (!ap->expr)
	continue;

      if (ap->expr->ts.type == BT_UNKNOWN)
	{
	  if (ap->expr->symtree->n.sym->ts.type == BT_UNKNOWN
	      && gfc_set_default_type (ap->expr->symtree->n.sym, 0, gfc_current_ns)
	      == FAILURE)
	    return MATCH_NO;

	  ap->expr->ts = ap->expr->symtree->n.sym->ts;
	}

	/* Assumed character length will not reduce to a constant expression
	   with LEN, as required by the standard.  */
	if (i == 5 && not_restricted
	    && ap->expr->symtree->n.sym->ts.type == BT_CHARACTER
	    && ap->expr->symtree->n.sym->ts.cl->length == NULL)
	  {
	    gfc_error ("Assumed character length variable '%s' in constant "
		       "expression at %L", e->symtree->n.sym->name, &e->where);
	      return MATCH_ERROR;
	  }
	else if (not_restricted && check_init_expr (ap->expr) == FAILURE)
	  return MATCH_ERROR;
    }

  return MATCH_YES;
}


/* F95, 7.1.6.1, Initialization expressions, (5)
   F2003, 7.1.7 Initialization expression, (5)  */

static match
check_transformational (gfc_expr *e)
{
  static const char * const trans_func_f95[] = {
    "repeat", "reshape", "selected_int_kind",
    "selected_real_kind", "transfer", "trim", NULL
  };

  int i;
  const char *name;

  if (!e->value.function.isym
      || !e->value.function.isym->transformational)
    return MATCH_NO;

  name = e->symtree->n.sym->name;

  /* NULL() is dealt with below.  */
  if (strcmp ("null", name) == 0)
    return MATCH_NO;

  for (i = 0; trans_func_f95[i]; i++)
    if (strcmp (trans_func_f95[i], name) == 0)
      break;

  /* FIXME, F2003: implement translation of initialization
     expressions before enabling this check. For F95, error
     out if the transformational function is not in the list.  */
#if 0
  if (trans_func_f95[i] == NULL
      && gfc_notify_std (GFC_STD_F2003, 
			 "transformational intrinsic '%s' at %L is not permitted "
			 "in an initialization expression", name, &e->where) == FAILURE)
    return MATCH_ERROR;
#else
  if (trans_func_f95[i] == NULL)
    {
      gfc_error("transformational intrinsic '%s' at %L is not permitted "
		"in an initialization expression", name, &e->where);
      return MATCH_ERROR;
    }
#endif

  return check_init_expr_arguments (e);
}


/* F95, 7.1.6.1, Initialization expressions, (6)
   F2003, 7.1.7 Initialization expression, (6)  */

static match
check_null (gfc_expr *e)
{
  if (strcmp ("null", e->symtree->n.sym->name) != 0)
    return MATCH_NO;

  return check_init_expr_arguments (e);
}


static match
check_elemental (gfc_expr *e)
{
  if (!e->value.function.isym
      || !e->value.function.isym->elemental)
    return MATCH_NO;

  if (e->ts.type != BT_INTEGER
      && e->ts.type != BT_CHARACTER
      && gfc_notify_std (GFC_STD_F2003, "Extension: Evaluation of "
			"nonstandard initialization expression at %L",
			&e->where) == FAILURE)
    return MATCH_ERROR;

  return check_init_expr_arguments (e);
}


static match
check_conversion (gfc_expr *e)
{
  if (!e->value.function.isym
      || !e->value.function.isym->conversion)
    return MATCH_NO;

  return check_init_expr_arguments (e);
}


/* Verify that an expression is an initialization expression.  A side
   effect is that the expression tree is reduced to a single constant
   node if all goes well.  This would normally happen when the
   expression is constructed but function references are assumed to be
   intrinsics in the context of initialization expressions.  If
   FAILURE is returned an error message has been generated.  */

static try
check_init_expr (gfc_expr *e)
{
  match m;
  try t;
  gfc_intrinsic_sym *isym;

  if (e == NULL)
    return SUCCESS;

  switch (e->expr_type)
    {
    case EXPR_OP:
      t = check_intrinsic_op (e, check_init_expr);
      if (t == SUCCESS)
	t = gfc_simplify_expr (e, 0);

      break;

    case EXPR_FUNCTION:
      t = FAILURE;

      if ((m = check_specification_function (e)) != MATCH_YES)
	{
	  if ((m = gfc_intrinsic_func_interface (e, 0)) != MATCH_YES)
	    {
	      gfc_error ("Function '%s' in initialization expression at %L "
			 "must be an intrinsic or a specification function",
			 e->symtree->n.sym->name, &e->where);
	      break;
	    }

	  if ((m = check_conversion (e)) == MATCH_NO
	      && (m = check_inquiry (e, 1)) == MATCH_NO
	      && (m = check_null (e)) == MATCH_NO
	      && (m = check_transformational (e)) == MATCH_NO
	      && (m = check_elemental (e)) == MATCH_NO)
	    {
	      gfc_error ("Intrinsic function '%s' at %L is not permitted "
			 "in an initialization expression",
			 e->symtree->n.sym->name, &e->where);
	      m = MATCH_ERROR;
	    }

	  /* Try to scalarize an elemental intrinsic function that has an
	     array argument.  */
	  isym = gfc_find_function (e->symtree->n.sym->name);
	  if (isym && isym->elemental
		&& (t = scalarize_intrinsic_call (e)) == SUCCESS)
	    break;
	}

      if (m == MATCH_YES)
	t = gfc_simplify_expr (e, 0);

      break;

    case EXPR_VARIABLE:
      t = SUCCESS;

      if (gfc_check_iter_variable (e) == SUCCESS)
	break;

      if (e->symtree->n.sym->attr.flavor == FL_PARAMETER)
	{
	  /* A PARAMETER shall not be used to define itself, i.e.
		REAL, PARAMETER :: x = transfer(0, x)
	     is invalid.  */
	  if (!e->symtree->n.sym->value)
	    {
	      gfc_error("PARAMETER '%s' is used at %L before its definition "
			"is complete", e->symtree->n.sym->name, &e->where);
	      t = FAILURE;
	    }
	  else
	    t = simplify_parameter_variable (e, 0);

	  break;
	}

      if (gfc_in_match_data ())
	break;

      t = FAILURE;

      if (e->symtree->n.sym->as)
	{
	  switch (e->symtree->n.sym->as->type)
	    {
	      case AS_ASSUMED_SIZE:
		gfc_error ("Assumed size array '%s' at %L is not permitted "
			   "in an initialization expression",
			   e->symtree->n.sym->name, &e->where);
		break;

	      case AS_ASSUMED_SHAPE:
		gfc_error ("Assumed shape array '%s' at %L is not permitted "
			   "in an initialization expression",
			   e->symtree->n.sym->name, &e->where);
		break;

	      case AS_DEFERRED:
		gfc_error ("Deferred array '%s' at %L is not permitted "
			   "in an initialization expression",
			   e->symtree->n.sym->name, &e->where);
		break;

	      case AS_EXPLICIT:
		gfc_error ("Array '%s' at %L is a variable, which does "
			   "not reduce to a constant expression",
			   e->symtree->n.sym->name, &e->where);
		break;

	      default:
		gcc_unreachable();
	  }
	}
      else
	gfc_error ("Parameter '%s' at %L has not been declared or is "
		   "a variable, which does not reduce to a constant "
		   "expression", e->symtree->n.sym->name, &e->where);

      break;

    case EXPR_CONSTANT:
    case EXPR_NULL:
      t = SUCCESS;
      break;

    case EXPR_SUBSTRING:
      t = check_init_expr (e->ref->u.ss.start);
      if (t == FAILURE)
	break;

      t = check_init_expr (e->ref->u.ss.end);
      if (t == SUCCESS)
	t = gfc_simplify_expr (e, 0);

      break;

    case EXPR_STRUCTURE:
      if (e->ts.is_iso_c)
	t = SUCCESS;
      else
	t = gfc_check_constructor (e, check_init_expr);
      break;

    case EXPR_ARRAY:
      t = gfc_check_constructor (e, check_init_expr);
      if (t == FAILURE)
	break;

      t = gfc_expand_constructor (e);
      if (t == FAILURE)
	break;

      t = gfc_check_constructor_type (e);
      break;

    default:
      gfc_internal_error ("check_init_expr(): Unknown expression type");
    }

  return t;
}


/* Match an initialization expression.  We work by first matching an
   expression, then reducing it to a constant.  */

match
gfc_match_init_expr (gfc_expr **result)
{
  gfc_expr *expr;
  match m;
  try t;

  m = gfc_match_expr (&expr);
  if (m != MATCH_YES)
    return m;

  gfc_init_expr = 1;
  t = gfc_resolve_expr (expr);
  if (t == SUCCESS)
    t = check_init_expr (expr);
  gfc_init_expr = 0;

  if (t == FAILURE)
    {
      gfc_free_expr (expr);
      return MATCH_ERROR;
    }

  if (expr->expr_type == EXPR_ARRAY
      && (gfc_check_constructor_type (expr) == FAILURE
	  || gfc_expand_constructor (expr) == FAILURE))
    {
      gfc_free_expr (expr);
      return MATCH_ERROR;
    }

  /* Not all inquiry functions are simplified to constant expressions
     so it is necessary to call check_inquiry again.  */ 
  if (!gfc_is_constant_expr (expr) && check_inquiry (expr, 1) != MATCH_YES
      && !gfc_in_match_data ())
    {
      gfc_error ("Initialization expression didn't reduce %C");
      return MATCH_ERROR;
    }

  *result = expr;

  return MATCH_YES;
}


static try check_restricted (gfc_expr *);

/* Given an actual argument list, test to see that each argument is a
   restricted expression and optionally if the expression type is
   integer or character.  */

static try
restricted_args (gfc_actual_arglist *a)
{
  for (; a; a = a->next)
    {
      if (check_restricted (a->expr) == FAILURE)
	return FAILURE;
    }

  return SUCCESS;
}


/************* Restricted/specification expressions *************/


/* Make sure a non-intrinsic function is a specification function.  */

static try
external_spec_function (gfc_expr *e)
{
  gfc_symbol *f;

  f = e->value.function.esym;

  if (f->attr.proc == PROC_ST_FUNCTION)
    {
      gfc_error ("Specification function '%s' at %L cannot be a statement "
		 "function", f->name, &e->where);
      return FAILURE;
    }

  if (f->attr.proc == PROC_INTERNAL)
    {
      gfc_error ("Specification function '%s' at %L cannot be an internal "
		 "function", f->name, &e->where);
      return FAILURE;
    }

  if (!f->attr.pure && !f->attr.elemental)
    {
      gfc_error ("Specification function '%s' at %L must be PURE", f->name,
		 &e->where);
      return FAILURE;
    }

  if (f->attr.recursive)
    {
      gfc_error ("Specification function '%s' at %L cannot be RECURSIVE",
		 f->name, &e->where);
      return FAILURE;
    }

  return restricted_args (e->value.function.actual);
}


/* Check to see that a function reference to an intrinsic is a
   restricted expression.  */

static try
restricted_intrinsic (gfc_expr *e)
{
  /* TODO: Check constraints on inquiry functions.  7.1.6.2 (7).  */
  if (check_inquiry (e, 0) == MATCH_YES)
    return SUCCESS;

  return restricted_args (e->value.function.actual);
}


/* Verify that an expression is a restricted expression.  Like its
   cousin check_init_expr(), an error message is generated if we
   return FAILURE.  */

static try
check_restricted (gfc_expr *e)
{
  gfc_symbol *sym;
  try t;

  if (e == NULL)
    return SUCCESS;

  switch (e->expr_type)
    {
    case EXPR_OP:
      t = check_intrinsic_op (e, check_restricted);
      if (t == SUCCESS)
	t = gfc_simplify_expr (e, 0);

      break;

    case EXPR_FUNCTION:
      t = e->value.function.esym ? external_spec_function (e)
				 : restricted_intrinsic (e);
      break;

    case EXPR_VARIABLE:
      sym = e->symtree->n.sym;
      t = FAILURE;

      /* If a dummy argument appears in a context that is valid for a
	 restricted expression in an elemental procedure, it will have
	 already been simplified away once we get here.  Therefore we
	 don't need to jump through hoops to distinguish valid from
	 invalid cases.  */
      if (sym->attr.dummy && sym->ns == gfc_current_ns
	  && sym->ns->proc_name && sym->ns->proc_name->attr.elemental)
	{
	  gfc_error ("Dummy argument '%s' not allowed in expression at %L",
		     sym->name, &e->where);
	  break;
	}

      if (sym->attr.optional)
	{
	  gfc_error ("Dummy argument '%s' at %L cannot be OPTIONAL",
		     sym->name, &e->where);
	  break;
	}

      if (sym->attr.intent == INTENT_OUT)
	{
	  gfc_error ("Dummy argument '%s' at %L cannot be INTENT(OUT)",
		     sym->name, &e->where);
	  break;
	}

      /* gfc_is_formal_arg broadcasts that a formal argument list is being
	 processed in resolve.c(resolve_formal_arglist).  This is done so
	 that host associated dummy array indices are accepted (PR23446).
	 This mechanism also does the same for the specification expressions
	 of array-valued functions.  */
      if (sym->attr.in_common
	  || sym->attr.use_assoc
	  || sym->attr.dummy
	  || sym->attr.implied_index
	  || sym->ns != gfc_current_ns
	  || (sym->ns->proc_name != NULL
	      && sym->ns->proc_name->attr.flavor == FL_MODULE)
	  || (gfc_is_formal_arg () && (sym->ns == gfc_current_ns)))
	{
	  t = SUCCESS;
	  break;
	}

      gfc_error ("Variable '%s' cannot appear in the expression at %L",
		 sym->name, &e->where);

      break;

    case EXPR_NULL:
    case EXPR_CONSTANT:
      t = SUCCESS;
      break;

    case EXPR_SUBSTRING:
      t = gfc_specification_expr (e->ref->u.ss.start);
      if (t == FAILURE)
	break;

      t = gfc_specification_expr (e->ref->u.ss.end);
      if (t == SUCCESS)
	t = gfc_simplify_expr (e, 0);

      break;

    case EXPR_STRUCTURE:
      t = gfc_check_constructor (e, check_restricted);
      break;

    case EXPR_ARRAY:
      t = gfc_check_constructor (e, check_restricted);
      break;

    default:
      gfc_internal_error ("check_restricted(): Unknown expression type");
    }

  return t;
}


/* Check to see that an expression is a specification expression.  If
   we return FAILURE, an error has been generated.  */

try
gfc_specification_expr (gfc_expr *e)
{

  if (e == NULL)
    return SUCCESS;

  if (e->ts.type != BT_INTEGER)
    {
      gfc_error ("Expression at %L must be of INTEGER type, found %s",
		 &e->where, gfc_basic_typename (e->ts.type));
      return FAILURE;
    }

  if (e->expr_type == EXPR_FUNCTION
	  && !e->value.function.isym
	  && !e->value.function.esym
	  && !gfc_pure (e->symtree->n.sym))
    {
      gfc_error ("Function '%s' at %L must be PURE",
		 e->symtree->n.sym->name, &e->where);
      /* Prevent repeat error messages.  */
      e->symtree->n.sym->attr.pure = 1;
      return FAILURE;
    }

  if (e->rank != 0)
    {
      gfc_error ("Expression at %L must be scalar", &e->where);
      return FAILURE;
    }

  if (gfc_simplify_expr (e, 0) == FAILURE)
    return FAILURE;

  return check_restricted (e);
}


/************** Expression conformance checks.  *************/

/* Given two expressions, make sure that the arrays are conformable.  */

try
gfc_check_conformance (const char *optype_msgid, gfc_expr *op1, gfc_expr *op2)
{
  int op1_flag, op2_flag, d;
  mpz_t op1_size, op2_size;
  try t;

  if (op1->rank == 0 || op2->rank == 0)
    return SUCCESS;

  if (op1->rank != op2->rank)
    {
      gfc_error ("Incompatible ranks in %s (%d and %d) at %L", _(optype_msgid),
		 op1->rank, op2->rank, &op1->where);
      return FAILURE;
    }

  t = SUCCESS;

  for (d = 0; d < op1->rank; d++)
    {
      op1_flag = gfc_array_dimen_size (op1, d, &op1_size) == SUCCESS;
      op2_flag = gfc_array_dimen_size (op2, d, &op2_size) == SUCCESS;

      if (op1_flag && op2_flag && mpz_cmp (op1_size, op2_size) != 0)
	{
	  gfc_error ("Different shape for %s at %L on dimension %d "
		     "(%d and %d)", _(optype_msgid), &op1->where, d + 1,
		     (int) mpz_get_si (op1_size),
		     (int) mpz_get_si (op2_size));

	  t = FAILURE;
	}

      if (op1_flag)
	mpz_clear (op1_size);
      if (op2_flag)
	mpz_clear (op2_size);

      if (t == FAILURE)
	return FAILURE;
    }

  return SUCCESS;
}


/* Given an assignable expression and an arbitrary expression, make
   sure that the assignment can take place.  */

try
gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform)
{
  gfc_symbol *sym;
  gfc_ref *ref;
  int has_pointer;

  sym = lvalue->symtree->n.sym;

  /* Check INTENT(IN), unless the object itself is the component or
     sub-component of a pointer.  */
  has_pointer = sym->attr.pointer;

  for (ref = lvalue->ref; ref; ref = ref->next)
    if (ref->type == REF_COMPONENT && ref->u.c.component->pointer)
      {
	has_pointer = 1;
	break;
      }

  if (!has_pointer && sym->attr.intent == INTENT_IN)
    {
      gfc_error ("Cannot assign to INTENT(IN) variable '%s' at %L",
		 sym->name, &lvalue->where);
      return FAILURE;
    }

  /* 12.5.2.2, Note 12.26: The result variable is very similar to any other
     variable local to a function subprogram.  Its existence begins when
     execution of the function is initiated and ends when execution of the
     function is terminated...
     Therefore, the left hand side is no longer a variable, when it is:  */
  if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_ST_FUNCTION
      && !sym->attr.external)
    {
      bool bad_proc;
      bad_proc = false;

      /* (i) Use associated;  */
      if (sym->attr.use_assoc)
	bad_proc = true;

      /* (ii) The assignment is in the main program; or  */
      if (gfc_current_ns->proc_name->attr.is_main_program)
	bad_proc = true;

      /* (iii) A module or internal procedure...  */
      if ((gfc_current_ns->proc_name->attr.proc == PROC_INTERNAL
	   || gfc_current_ns->proc_name->attr.proc == PROC_MODULE)
	  && gfc_current_ns->parent
	  && (!(gfc_current_ns->parent->proc_name->attr.function
		|| gfc_current_ns->parent->proc_name->attr.subroutine)
	      || gfc_current_ns->parent->proc_name->attr.is_main_program))
	{
	  /* ... that is not a function...  */ 
	  if (!gfc_current_ns->proc_name->attr.function)
	    bad_proc = true;

	  /* ... or is not an entry and has a different name.  */
	  if (!sym->attr.entry && sym->name != gfc_current_ns->proc_name->name)
	    bad_proc = true;
	}

      /* (iv) Host associated and not the function symbol or the
	      parent result.  This picks up sibling references, which
	      cannot be entries.  */
      if (!sym->attr.entry
	    && sym->ns == gfc_current_ns->parent
	    && sym != gfc_current_ns->proc_name
	    && sym != gfc_current_ns->parent->proc_name->result)
	bad_proc = true;

      if (bad_proc)
	{
	  gfc_error ("'%s' at %L is not a VALUE", sym->name, &lvalue->where);
	  return FAILURE;
	}
    }

  if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
    {
      gfc_error ("Incompatible ranks %d and %d in assignment at %L",
		 lvalue->rank, rvalue->rank, &lvalue->where);
      return FAILURE;
    }

  if (lvalue->ts.type == BT_UNKNOWN)
    {
      gfc_error ("Variable type is UNKNOWN in assignment at %L",
		 &lvalue->where);
      return FAILURE;
    }

  if (rvalue->expr_type == EXPR_NULL)
    {  
      if (lvalue->symtree->n.sym->attr.pointer
	  && lvalue->symtree->n.sym->attr.data)
        return SUCCESS;
      else
	{
	  gfc_error ("NULL appears on right-hand side in assignment at %L",
		     &rvalue->where);
	  return FAILURE;
	}
    }

   if (sym->attr.cray_pointee
       && lvalue->ref != NULL
       && lvalue->ref->u.ar.type == AR_FULL
       && lvalue->ref->u.ar.as->cp_was_assumed)
     {
       gfc_error ("Vector assignment to assumed-size Cray Pointee at %L "
		  "is illegal", &lvalue->where);
       return FAILURE;
     }

  /* This is possibly a typo: x = f() instead of x => f().  */
  if (gfc_option.warn_surprising 
      && rvalue->expr_type == EXPR_FUNCTION
      && rvalue->symtree->n.sym->attr.pointer)
    gfc_warning ("POINTER valued function appears on right-hand side of "
		 "assignment at %L", &rvalue->where);

  /* Check size of array assignments.  */
  if (lvalue->rank != 0 && rvalue->rank != 0
      && gfc_check_conformance ("array assignment", lvalue, rvalue) != SUCCESS)
    return FAILURE;

  if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER
      && lvalue->symtree->n.sym->attr.data
      && gfc_notify_std (GFC_STD_GNU, "Extension: BOZ literal at %L used to "
                         "initialize non-integer variable '%s'",
			 &rvalue->where, lvalue->symtree->n.sym->name)
	 == FAILURE)
    return FAILURE;
  else if (rvalue->is_boz && !lvalue->symtree->n.sym->attr.data
      && gfc_notify_std (GFC_STD_GNU, "Extension: BOZ literal at %L outside "
			 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
			 &rvalue->where) == FAILURE)
    return FAILURE;

  /* Handle the case of a BOZ literal on the RHS.  */
  if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER)
    {
      int rc;
      if (gfc_option.warn_surprising)
        gfc_warning ("BOZ literal at %L is bitwise transferred "
                     "non-integer symbol '%s'", &rvalue->where,
                     lvalue->symtree->n.sym->name);
      if (!gfc_convert_boz (rvalue, &lvalue->ts))
	return FAILURE;
      if ((rc = gfc_range_check (rvalue)) != ARITH_OK)
	{
	  if (rc == ARITH_UNDERFLOW)
	    gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
		       ". This check can be disabled with the option "
		       "-fno-range-check", &rvalue->where);
	  else if (rc == ARITH_OVERFLOW)
	    gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
		       ". This check can be disabled with the option "
		       "-fno-range-check", &rvalue->where);
	  else if (rc == ARITH_NAN)
	    gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
		       ". This check can be disabled with the option "
		       "-fno-range-check", &rvalue->where);
	  return FAILURE;
	}
    }

  if (gfc_compare_types (&lvalue->ts, &rvalue->ts))
    return SUCCESS;

  if (!conform)
    {
      /* Numeric can be converted to any other numeric. And Hollerith can be
	 converted to any other type.  */
      if ((gfc_numeric_ts (&lvalue->ts) && gfc_numeric_ts (&rvalue->ts))
	  || rvalue->ts.type == BT_HOLLERITH)
	return SUCCESS;

      if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL)
	return SUCCESS;

      gfc_error ("Incompatible types in assignment at %L; attempted assignment "
		 "of %s to %s", &rvalue->where, gfc_typename (&rvalue->ts),
		 gfc_typename (&lvalue->ts));

      return FAILURE;
    }

  /* Assignment is the only case where character variables of different
     kind values can be converted into one another.  */
  if (lvalue->ts.type == BT_CHARACTER && rvalue->ts.type == BT_CHARACTER)
    {
      if (lvalue->ts.kind != rvalue->ts.kind)
	gfc_convert_chartype (rvalue, &lvalue->ts);

      return SUCCESS;
    }

  return gfc_convert_type (rvalue, &lvalue->ts, 1);
}


/* Check that a pointer assignment is OK.  We first check lvalue, and
   we only check rvalue if it's not an assignment to NULL() or a
   NULLIFY statement.  */

try
gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue)
{
  symbol_attribute attr;
  gfc_ref *ref;
  int is_pure;
  int pointer, check_intent_in;

  if (lvalue->symtree->n.sym->ts.type == BT_UNKNOWN)
    {
      gfc_error ("Pointer assignment target is not a POINTER at %L",
		 &lvalue->where);
      return FAILURE;
    }

  if (lvalue->symtree->n.sym->attr.flavor == FL_PROCEDURE
      && lvalue->symtree->n.sym->attr.use_assoc)
    {
      gfc_error ("'%s' in the pointer assignment at %L cannot be an "
		 "l-value since it is a procedure",
		 lvalue->symtree->n.sym->name, &lvalue->where);
      return FAILURE;
    }


  /* Check INTENT(IN), unless the object itself is the component or
     sub-component of a pointer.  */
  check_intent_in = 1;
  pointer = lvalue->symtree->n.sym->attr.pointer;

  for (ref = lvalue->ref; ref; ref = ref->next)
    {
      if (pointer)
	check_intent_in = 0;

      if (ref->type == REF_COMPONENT && ref->u.c.component->pointer)
	pointer = 1;
    }

  if (check_intent_in && lvalue->symtree->n.sym->attr.intent == INTENT_IN)
    {
      gfc_error ("Cannot assign to INTENT(IN) variable '%s' at %L",
		 lvalue->symtree->n.sym->name, &lvalue->where);
      return FAILURE;
    }

  if (!pointer)
    {
      gfc_error ("Pointer assignment to non-POINTER at %L", &lvalue->where);
      return FAILURE;
    }

  is_pure = gfc_pure (NULL);

  if (is_pure && gfc_impure_variable (lvalue->symtree->n.sym)
	&& lvalue->symtree->n.sym->value != rvalue)
    {
      gfc_error ("Bad pointer object in PURE procedure at %L", &lvalue->where);
      return FAILURE;
    }

  /* If rvalue is a NULL() or NULLIFY, we're done. Otherwise the type,
     kind, etc for lvalue and rvalue must match, and rvalue must be a
     pure variable if we're in a pure function.  */
  if (rvalue->expr_type == EXPR_NULL && rvalue->ts.type == BT_UNKNOWN)
    return SUCCESS;

  if (!gfc_compare_types (&lvalue->ts, &rvalue->ts))
    {
      gfc_error ("Different types in pointer assignment at %L; attempted "
		 "assignment of %s to %s", &lvalue->where, 
		 gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
      return FAILURE;
    }

  if (lvalue->ts.kind != rvalue->ts.kind)
    {
      gfc_error ("Different kind type parameters in pointer "
		 "assignment at %L", &lvalue->where);
      return FAILURE;
    }

  if (lvalue->rank != rvalue->rank)
    {
      gfc_error ("Different ranks in pointer assignment at %L",
		 &lvalue->where);
      return FAILURE;
    }

  /* Now punt if we are dealing with a NULLIFY(X) or X = NULL(X).  */
  if (rvalue->expr_type == EXPR_NULL)
    return SUCCESS;

  if (lvalue->ts.type == BT_CHARACTER
      && lvalue->ts.cl && rvalue->ts.cl
      && lvalue->ts.cl->length && rvalue->ts.cl->length
      && abs (gfc_dep_compare_expr (lvalue->ts.cl->length,
				    rvalue->ts.cl->length)) == 1)
    {
      gfc_error ("Different character lengths in pointer "
		 "assignment at %L", &lvalue->where);
      return FAILURE;
    }

  if (rvalue->expr_type == EXPR_VARIABLE && is_subref_array (rvalue))
    lvalue->symtree->n.sym->attr.subref_array_pointer = 1;

  attr = gfc_expr_attr (rvalue);
  if (!attr.target && !attr.pointer)
    {
      gfc_error ("Pointer assignment target is neither TARGET "
		 "nor POINTER at %L", &rvalue->where);
      return FAILURE;
    }

  if (is_pure && gfc_impure_variable (rvalue->symtree->n.sym))
    {
      gfc_error ("Bad target in pointer assignment in PURE "
		 "procedure at %L", &rvalue->where);
    }

  if (gfc_has_vector_index (rvalue))
    {
      gfc_error ("Pointer assignment with vector subscript "
		 "on rhs at %L", &rvalue->where);
      return FAILURE;
    }

  if (attr.protected && attr.use_assoc)
    {
      gfc_error ("Pointer assigment target has PROTECTED "
		 "attribute at %L", &rvalue->where);
      return FAILURE;
    }

  return SUCCESS;
}


/* Relative of gfc_check_assign() except that the lvalue is a single
   symbol.  Used for initialization assignments.  */

try
gfc_check_assign_symbol (gfc_symbol *sym, gfc_expr *rvalue)
{
  gfc_expr lvalue;
  try r;

  memset (&lvalue, '\0', sizeof (gfc_expr));

  lvalue.expr_type = EXPR_VARIABLE;
  lvalue.ts = sym->ts;
  if (sym->as)
    lvalue.rank = sym->as->rank;
  lvalue.symtree = (gfc_symtree *) gfc_getmem (sizeof (gfc_symtree));
  lvalue.symtree->n.sym = sym;
  lvalue.where = sym->declared_at;

  if (sym->attr.pointer)
    r = gfc_check_pointer_assign (&lvalue, rvalue);
  else
    r = gfc_check_assign (&lvalue, rvalue, 1);

  gfc_free (lvalue.symtree);

  return r;
}


/* Get an expression for a default initializer.  */

gfc_expr *
gfc_default_initializer (gfc_typespec *ts)
{
  gfc_constructor *tail;
  gfc_expr *init;
  gfc_component *c;

  /* See if we have a default initializer.  */
  for (c = ts->derived->components; c; c = c->next)
    if (c->initializer || c->allocatable)
      break;

  if (!c)
    return NULL;

  /* Build the constructor.  */
  init = gfc_get_expr ();
  init->expr_type = EXPR_STRUCTURE;
  init->ts = *ts;
  init->where = ts->derived->declared_at;

  tail = NULL;
  for (c = ts->derived->components; c; c = c->next)
    {
      if (tail == NULL)
	init->value.constructor = tail = gfc_get_constructor ();
      else
	{
	  tail->next = gfc_get_constructor ();
	  tail = tail->next;
	}

      if (c->initializer)
	tail->expr = gfc_copy_expr (c->initializer);

      if (c->allocatable)
	{
	  tail->expr = gfc_get_expr ();
	  tail->expr->expr_type = EXPR_NULL;
	  tail->expr->ts = c->ts;
	}
    }
  return init;
}


/* Given a symbol, create an expression node with that symbol as a
   variable. If the symbol is array valued, setup a reference of the
   whole array.  */

gfc_expr *
gfc_get_variable_expr (gfc_symtree *var)
{
  gfc_expr *e;

  e = gfc_get_expr ();
  e->expr_type = EXPR_VARIABLE;
  e->symtree = var;
  e->ts = var->n.sym->ts;

  if (var->n.sym->as != NULL)
    {
      e->rank = var->n.sym->as->rank;
      e->ref = gfc_get_ref ();
      e->ref->type = REF_ARRAY;
      e->ref->u.ar.type = AR_FULL;
    }

  return e;
}


/* General expression traversal function.  */

bool
gfc_traverse_expr (gfc_expr *expr, gfc_symbol *sym,
		   bool (*func)(gfc_expr *, gfc_symbol *, int*),
		   int f)
{
  gfc_array_ref ar;
  gfc_ref *ref;
  gfc_actual_arglist *args;
  gfc_constructor *c;
  int i;

  if (!expr)
    return false;

  if ((*func) (expr, sym, &f))
    return true;

  if (expr->ts.type == BT_CHARACTER
	&& expr->ts.cl
	&& expr->ts.cl->length
	&& expr->ts.cl->length->expr_type != EXPR_CONSTANT
	&& gfc_traverse_expr (expr->ts.cl->length, sym, func, f))
    return true;

  switch (expr->expr_type)
    {
    case EXPR_FUNCTION:
      for (args = expr->value.function.actual; args; args = args->next)
	{
	  if (gfc_traverse_expr (args->expr, sym, func, f))
	    return true;
	}
      break;

    case EXPR_VARIABLE:
    case EXPR_CONSTANT:
    case EXPR_NULL:
    case EXPR_SUBSTRING:
      break;

    case EXPR_STRUCTURE:
    case EXPR_ARRAY:
      for (c = expr->value.constructor; c; c = c->next)
	{
	  if (gfc_traverse_expr (c->expr, sym, func, f))
	    return true;
	  if (c->iterator)
	    {
	      if (gfc_traverse_expr (c->iterator->var, sym, func, f))
		return true;
	      if (gfc_traverse_expr (c->iterator->start, sym, func, f))
		return true;
	      if (gfc_traverse_expr (c->iterator->end, sym, func, f))
		return true;
	      if (gfc_traverse_expr (c->iterator->step, sym, func, f))
		return true;
	    }
	}
      break;

    case EXPR_OP:
      if (gfc_traverse_expr (expr->value.op.op1, sym, func, f))
	return true;
      if (gfc_traverse_expr (expr->value.op.op2, sym, func, f))
	return true;
      break;

    default:
      gcc_unreachable ();
      break;
    }

  ref = expr->ref;
  while (ref != NULL)
    {
      switch (ref->type)
	{
	case  REF_ARRAY:
	  ar = ref->u.ar;
	  for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
	    {
	      if (gfc_traverse_expr (ar.start[i], sym, func, f))
		return true;
	      if (gfc_traverse_expr (ar.end[i], sym, func, f))
		return true;
	      if (gfc_traverse_expr (ar.stride[i], sym, func, f))
		return true;
	    }
	  break;

	case REF_SUBSTRING:
	  if (gfc_traverse_expr (ref->u.ss.start, sym, func, f))
	    return true;
	  if (gfc_traverse_expr (ref->u.ss.end, sym, func, f))
	    return true;
	  break;

	case REF_COMPONENT:
	  if (ref->u.c.component->ts.type == BT_CHARACTER
		&& ref->u.c.component->ts.cl
		&& ref->u.c.component->ts.cl->length
		&& ref->u.c.component->ts.cl->length->expr_type
		     != EXPR_CONSTANT
		&& gfc_traverse_expr (ref->u.c.component->ts.cl->length,
				      sym, func, f))
	    return true;

	  if (ref->u.c.component->as)
	    for (i = 0; i < ref->u.c.component->as->rank; i++)
	      {
		if (gfc_traverse_expr (ref->u.c.component->as->lower[i],
				       sym, func, f))
		  return true;
		if (gfc_traverse_expr (ref->u.c.component->as->upper[i],
				       sym, func, f))
		  return true;
	      }
	  break;

	default:
	  gcc_unreachable ();
	}
      ref = ref->next;
    }
  return false;
}

/* Traverse expr, marking all EXPR_VARIABLE symbols referenced.  */

static bool
expr_set_symbols_referenced (gfc_expr *expr,
			     gfc_symbol *sym ATTRIBUTE_UNUSED,
			     int *f ATTRIBUTE_UNUSED)
{
  if (expr->expr_type != EXPR_VARIABLE)
    return false;
  gfc_set_sym_referenced (expr->symtree->n.sym);
  return false;
}

void
gfc_expr_set_symbols_referenced (gfc_expr *expr)
{
  gfc_traverse_expr (expr, NULL, expr_set_symbols_referenced, 0);
}
>, &invoke_as), INIT_STATIC_SPEC ("cpp", &cpp_spec), INIT_STATIC_SPEC ("cpp_options", &cpp_options), INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options), INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options), INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp), INIT_STATIC_SPEC ("cc1", &cc1_spec), INIT_STATIC_SPEC ("cc1_options", &cc1_options), INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec), INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec), INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec), INIT_STATIC_SPEC ("endfile", &endfile_spec), INIT_STATIC_SPEC ("link", &link_spec), INIT_STATIC_SPEC ("lib", &lib_spec), INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec), INIT_STATIC_SPEC ("mflib", &mflib_spec), INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec), INIT_STATIC_SPEC ("libgcc", &libgcc_spec), INIT_STATIC_SPEC ("startfile", &startfile_spec), INIT_STATIC_SPEC ("cross_compile", &cross_compile), INIT_STATIC_SPEC ("version", &compiler_version), INIT_STATIC_SPEC ("multilib", &multilib_select), INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults), INIT_STATIC_SPEC ("multilib_extra", &multilib_extra), INIT_STATIC_SPEC ("multilib_matches", &multilib_matches), INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions), INIT_STATIC_SPEC ("multilib_options", &multilib_options), INIT_STATIC_SPEC ("multilib_reuse", &multilib_reuse), INIT_STATIC_SPEC ("linker", &linker_name_spec), INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec), INIT_STATIC_SPEC ("lto_wrapper", &lto_wrapper_spec), INIT_STATIC_SPEC ("lto_gcc", &lto_gcc_spec), INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec), INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix), INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix), INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1), INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec), INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec), INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec), INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec), INIT_STATIC_SPEC ("self_spec", &self_spec), }; #ifdef EXTRA_SPECS /* additional specs needed */ /* Structure to keep track of just the first two args of a spec_list. That is all that the EXTRA_SPECS macro gives us. */ struct spec_list_1 { const char *const name; const char *const ptr; }; static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS }; static struct spec_list *extra_specs = (struct spec_list *) 0; #endif /* List of dynamically allocates specs that have been defined so far. */ static struct spec_list *specs = (struct spec_list *) 0; /* List of static spec functions. */ static const struct spec_function static_spec_functions[] = { { "getenv", getenv_spec_function }, { "if-exists", if_exists_spec_function }, { "if-exists-else", if_exists_else_spec_function }, { "replace-outfile", replace_outfile_spec_function }, { "remove-outfile", remove_outfile_spec_function }, { "version-compare", version_compare_spec_function }, { "include", include_spec_function }, { "find-file", find_file_spec_function }, { "find-plugindir", find_plugindir_spec_function }, { "print-asm-header", print_asm_header_spec_function }, { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function }, { "compare-debug-self-opt", compare_debug_self_opt_spec_function }, { "compare-debug-auxbase-opt", compare_debug_auxbase_opt_spec_function }, { "pass-through-libs", pass_through_libs_spec_func }, { "replace-extension", replace_extension_spec_func }, #ifdef EXTRA_SPEC_FUNCTIONS EXTRA_SPEC_FUNCTIONS #endif { 0, 0 } }; static int processing_spec_function; /* Add appropriate libgcc specs to OBSTACK, taking into account various permutations of -shared-libgcc, -shared, and such. */ #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC) #ifndef USE_LD_AS_NEEDED #define USE_LD_AS_NEEDED 0 #endif static void init_gcc_specs (struct obstack *obstack, const char *shared_name, const char *static_name, const char *eh_name) { char *buf; buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}" "%{!static:%{!static-libgcc:" #if USE_LD_AS_NEEDED "%{!shared-libgcc:", static_name, " --as-needed ", shared_name, " --no-as-needed" "}" "%{shared-libgcc:", shared_name, "%{!shared: ", static_name, "}" "}" #else "%{!shared:" "%{!shared-libgcc:", static_name, " ", eh_name, "}" "%{shared-libgcc:", shared_name, " ", static_name, "}" "}" #ifdef LINK_EH_SPEC "%{shared:" "%{shared-libgcc:", shared_name, "}" "%{!shared-libgcc:", static_name, "}" "}" #else "%{shared:", shared_name, "}" #endif #endif "}}", NULL); obstack_grow (obstack, buf, strlen (buf)); free (buf); } #endif /* ENABLE_SHARED_LIBGCC */ /* Initialize the specs lookup routines. */ static void init_spec (void) { struct spec_list *next = (struct spec_list *) 0; struct spec_list *sl = (struct spec_list *) 0; int i; if (specs) return; /* Already initialized. */ if (verbose_flag) fnotice (stderr, "Using built-in specs.\n"); #ifdef EXTRA_SPECS extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1)); for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--) { sl = &extra_specs[i]; sl->name = extra_specs_1[i].name; sl->ptr = extra_specs_1[i].ptr; sl->next = next; sl->name_len = strlen (sl->name); sl->ptr_spec = &sl->ptr; next = sl; } #endif for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--) { sl = &static_specs[i]; sl->next = next; next = sl; } #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC) /* ??? If neither -shared-libgcc nor --static-libgcc was seen, then we should be making an educated guess. Some proposed heuristics for ELF include: (1) If "-Wl,--export-dynamic", then it's a fair bet that the program will be doing dynamic loading, which will likely need the shared libgcc. (2) If "-ldl", then it's also a fair bet that we're doing dynamic loading. (3) For each ET_DYN we're linking against (either through -lfoo or /some/path/foo.so), check to see whether it or one of its dependencies depends on a shared libgcc. (4) If "-shared" If the runtime is fixed to look for program headers instead of calling __register_frame_info at all, for each object, use the shared libgcc if any EH symbol referenced. If crtstuff is fixed to not invoke __register_frame_info automatically, for each object, use the shared libgcc if any non-empty unwind section found. Doing any of this probably requires invoking an external program to do the actual object file scanning. */ { const char *p = libgcc_spec; int in_sep = 1; /* Transform the extant libgcc_spec into one that uses the shared libgcc when given the proper command line arguments. */ while (*p) { if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0) { init_gcc_specs (&obstack, "-lgcc_s" #ifdef USE_LIBUNWIND_EXCEPTIONS " -lunwind" #endif , "-lgcc", "-lgcc_eh" #ifdef USE_LIBUNWIND_EXCEPTIONS # ifdef HAVE_LD_STATIC_DYNAMIC " %{!static:" LD_STATIC_OPTION "} -lunwind" " %{!static:" LD_DYNAMIC_OPTION "}" # else " -lunwind" # endif #endif ); p += 5; in_sep = 0; } else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0) { /* Ug. We don't know shared library extensions. Hope that systems that use this form don't do shared libraries. */ init_gcc_specs (&obstack, "-lgcc_s", "libgcc.a%s", "libgcc_eh.a%s" #ifdef USE_LIBUNWIND_EXCEPTIONS " -lunwind" #endif ); p += 10; in_sep = 0; } else { obstack_1grow (&obstack, *p); in_sep = (*p == ' '); p += 1; } } obstack_1grow (&obstack, '\0'); libgcc_spec = XOBFINISH (&obstack, const char *); } #endif #ifdef USE_AS_TRADITIONAL_FORMAT /* Prepend "--traditional-format" to whatever asm_spec we had before. */ { static const char tf[] = "--traditional-format "; obstack_grow (&obstack, tf, sizeof(tf) - 1); obstack_grow0 (&obstack, asm_spec, strlen (asm_spec)); asm_spec = XOBFINISH (&obstack, const char *); } #endif #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \ defined LINKER_HASH_STYLE # ifdef LINK_BUILDID_SPEC /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */ obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof(LINK_BUILDID_SPEC) - 1); # endif # ifdef LINK_EH_SPEC /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */ obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1); # endif # ifdef LINKER_HASH_STYLE /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had before. */ { static const char hash_style[] = "--hash-style="; obstack_grow (&obstack, hash_style, sizeof(hash_style) - 1); obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof(LINKER_HASH_STYLE) - 1); obstack_1grow (&obstack, ' '); } # endif obstack_grow0 (&obstack, link_spec, strlen (link_spec)); link_spec = XOBFINISH (&obstack, const char *); #endif specs = sl; } /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is removed; If the spec starts with a + then SPEC is added to the end of the current spec. */ static void set_spec (const char *name, const char *spec, bool user_p) { struct spec_list *sl; const char *old_spec; int name_len = strlen (name); int i; /* If this is the first call, initialize the statically allocated specs. */ if (!specs) { struct spec_list *next = (struct spec_list *) 0; for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--) { sl = &static_specs[i]; sl->next = next; next = sl; } specs = sl; } /* See if the spec already exists. */ for (sl = specs; sl; sl = sl->next) if (name_len == sl->name_len && !strcmp (sl->name, name)) break; if (!sl) { /* Not found - make it. */ sl = XNEW (struct spec_list); sl->name = xstrdup (name); sl->name_len = name_len; sl->ptr_spec = &sl->ptr; sl->alloc_p = 0; *(sl->ptr_spec) = ""; sl->next = specs; specs = sl; } old_spec = *(sl->ptr_spec); *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1])) ? concat (old_spec, spec + 1, NULL) : xstrdup (spec)); #ifdef DEBUG_SPECS if (verbose_flag) fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec)); #endif /* Free the old spec. */ if (old_spec && sl->alloc_p) free (CONST_CAST(char *, old_spec)); sl->user_p = user_p; sl->alloc_p = true; } /* Accumulate a command (program name and args), and run it. */ typedef const char *const_char_p; /* For DEF_VEC_P. */ /* Vector of pointers to arguments in the current line of specifications. */ static vec<const_char_p> argbuf; /* Position in the argbuf vector containing the name of the output file (the value associated with the "-o" flag). */ static int have_o_argbuf_index = 0; /* Were the options -c, -S or -E passed. */ static int have_c = 0; /* Was the option -o passed. */ static int have_o = 0; /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for it here. */ static struct temp_name { const char *suffix; /* suffix associated with the code. */ int length; /* strlen (suffix). */ int unique; /* Indicates whether %g or %u/%U was used. */ const char *filename; /* associated filename. */ int filename_length; /* strlen (filename). */ struct temp_name *next; } *temp_names; /* Number of commands executed so far. */ static int execution_count; /* Number of commands that exited with a signal. */ static int signal_count; /* Allocate the argument vector. */ static void alloc_args (void) { argbuf.create (10); } /* Clear out the vector of arguments (after a command is executed). */ static void clear_args (void) { argbuf.truncate (0); } /* Add one argument to the vector at the end. This is done when a space is seen or at the end of the line. If DELETE_ALWAYS is nonzero, the arg is a filename and the file should be deleted eventually. If DELETE_FAILURE is nonzero, the arg is a filename and the file should be deleted if this compilation fails. */ static void store_arg (const char *arg, int delete_always, int delete_failure) { argbuf.safe_push (arg); if (strcmp (arg, "-o") == 0) have_o_argbuf_index = argbuf.length (); if (delete_always || delete_failure) { const char *p; /* If the temporary file we should delete is specified as part of a joined argument extract the filename. */ if (arg[0] == '-' && (p = strrchr (arg, '='))) arg = p + 1; record_temp_file (arg, delete_always, delete_failure); } } /* Load specs from a file name named FILENAME, replacing occurrences of various different types of line-endings, \r\n, \n\r and just \r, with a single \n. */ static char * load_specs (const char *filename) { int desc; int readlen; struct stat statbuf; char *buffer; char *buffer_p; char *specs; char *specs_p; if (verbose_flag) fnotice (stderr, "Reading specs from %s\n", filename); /* Open and stat the file. */ desc = open (filename, O_RDONLY, 0); if (desc < 0) pfatal_with_name (filename); if (stat (filename, &statbuf) < 0) pfatal_with_name (filename); /* Read contents of file into BUFFER. */ buffer = XNEWVEC (char, statbuf.st_size + 1); readlen = read (desc, buffer, (unsigned) statbuf.st_size); if (readlen < 0) pfatal_with_name (filename); buffer[readlen] = 0; close (desc); specs = XNEWVEC (char, readlen + 1); specs_p = specs; for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++) { int skip = 0; char c = *buffer_p; if (c == '\r') { if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */ skip = 1; else if (*(buffer_p + 1) == '\n') /* \r\n */ skip = 1; else /* \r */ c = '\n'; } if (! skip) *specs_p++ = c; } *specs_p = '\0'; free (buffer); return (specs); } /* Read compilation specs from a file named FILENAME, replacing the default ones. A suffix which starts with `*' is a definition for one of the machine-specific sub-specs. The "suffix" should be *asm, *cc1, *cpp, *link, *startfile, etc. The corresponding spec is stored in asm_spec, etc., rather than in the `compilers' vector. Anything invalid in the file is a fatal error. */ static void read_specs (const char *filename, bool main_p, bool user_p) { char *buffer; char *p; buffer = load_specs (filename); /* Scan BUFFER for specs, putting them in the vector. */ p = buffer; while (1) { char *suffix; char *spec; char *in, *out, *p1, *p2, *p3; /* Advance P in BUFFER to the next nonblank nocomment line. */ p = skip_whitespace (p); if (*p == 0) break; /* Is this a special command that starts with '%'? */ /* Don't allow this for the main specs file, since it would encourage people to overwrite it. */ if (*p == '%' && !main_p) { p1 = p; while (*p && *p != '\n') p++; /* Skip '\n'. */ p++; if (!strncmp (p1, "%include", sizeof ("%include") - 1) && (p1[sizeof "%include" - 1] == ' ' || p1[sizeof "%include" - 1] == '\t')) { char *new_filename; p1 += sizeof ("%include"); while (*p1 == ' ' || *p1 == '\t') p1++; if (*p1++ != '<' || p[-2] != '>') fatal_error ("specs %%include syntax malformed after " "%ld characters", (long) (p1 - buffer + 1)); p[-2] = '\0'; new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true); read_specs (new_filename ? new_filename : p1, false, user_p); continue; } else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1) && (p1[sizeof "%include_noerr" - 1] == ' ' || p1[sizeof "%include_noerr" - 1] == '\t')) { char *new_filename; p1 += sizeof "%include_noerr"; while (*p1 == ' ' || *p1 == '\t') p1++; if (*p1++ != '<' || p[-2] != '>') fatal_error ("specs %%include syntax malformed after " "%ld characters", (long) (p1 - buffer + 1)); p[-2] = '\0'; new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true); if (new_filename) read_specs (new_filename, false, user_p); else if (verbose_flag) fnotice (stderr, "could not find specs file %s\n", p1); continue; } else if (!strncmp (p1, "%rename", sizeof "%rename" - 1) && (p1[sizeof "%rename" - 1] == ' ' || p1[sizeof "%rename" - 1] == '\t')) { int name_len; struct spec_list *sl; struct spec_list *newsl; /* Get original name. */ p1 += sizeof "%rename"; while (*p1 == ' ' || *p1 == '\t') p1++; if (! ISALPHA ((unsigned char) *p1)) fatal_error ("specs %%rename syntax malformed after " "%ld characters", (long) (p1 - buffer)); p2 = p1; while (*p2 && !ISSPACE ((unsigned char) *p2)) p2++; if (*p2 != ' ' && *p2 != '\t') fatal_error ("specs %%rename syntax malformed after " "%ld characters", (long) (p2 - buffer)); name_len = p2 - p1; *p2++ = '\0'; while (*p2 == ' ' || *p2 == '\t') p2++; if (! ISALPHA ((unsigned char) *p2)) fatal_error ("specs %%rename syntax malformed after " "%ld characters", (long) (p2 - buffer)); /* Get new spec name. */ p3 = p2; while (*p3 && !ISSPACE ((unsigned char) *p3)) p3++; if (p3 != p - 1) fatal_error ("specs %%rename syntax malformed after " "%ld characters", (long) (p3 - buffer)); *p3 = '\0'; for (sl = specs; sl; sl = sl->next) if (name_len == sl->name_len && !strcmp (sl->name, p1)) break; if (!sl) fatal_error ("specs %s spec was not found to be renamed", p1); if (strcmp (p1, p2) == 0) continue; for (newsl = specs; newsl; newsl = newsl->next) if (strcmp (newsl->name, p2) == 0) fatal_error ("%s: attempt to rename spec %qs to " "already defined spec %qs", filename, p1, p2); if (verbose_flag) { fnotice (stderr, "rename spec %s to %s\n", p1, p2); #ifdef DEBUG_SPECS fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec)); #endif } set_spec (p2, *(sl->ptr_spec), user_p); if (sl->alloc_p) free (CONST_CAST (char *, *(sl->ptr_spec))); *(sl->ptr_spec) = ""; sl->alloc_p = 0; continue; } else fatal_error ("specs unknown %% command after %ld characters", (long) (p1 - buffer)); } /* Find the colon that should end the suffix. */ p1 = p; while (*p1 && *p1 != ':' && *p1 != '\n') p1++; /* The colon shouldn't be missing. */ if (*p1 != ':') fatal_error ("specs file malformed after %ld characters", (long) (p1 - buffer)); /* Skip back over trailing whitespace. */ p2 = p1; while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t')) p2--; /* Copy the suffix to a string. */ suffix = save_string (p, p2 - p); /* Find the next line. */ p = skip_whitespace (p1 + 1); if (p[1] == 0) fatal_error ("specs file malformed after %ld characters", (long) (p - buffer)); p1 = p; /* Find next blank line or end of string. */ while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0'))) p1++; /* Specs end at the blank line and do not include the newline. */ spec = save_string (p, p1 - p); p = p1; /* Delete backslash-newline sequences from the spec. */ in = spec; out = spec; while (*in != 0) { if (in[0] == '\\' && in[1] == '\n') in += 2; else if (in[0] == '#') while (*in && *in != '\n') in++; else *out++ = *in++; } *out = 0; if (suffix[0] == '*') { if (! strcmp (suffix, "*link_command")) link_command_spec = spec; else set_spec (suffix + 1, spec, user_p); } else { /* Add this pair to the vector. */ compilers = XRESIZEVEC (struct compiler, compilers, n_compilers + 2); compilers[n_compilers].suffix = suffix; compilers[n_compilers].spec = spec; n_compilers++; memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]); } if (*suffix == 0) link_command_spec = spec; } if (link_command_spec == 0) fatal_error ("spec file has no spec for linking"); } /* Record the names of temporary files we tell compilers to write, and delete them at the end of the run. */ /* This is the common prefix we use to make temp file names. It is chosen once for each run of this program. It is substituted into a spec by %g or %j. Thus, all temp file names contain this prefix. In practice, all temp file names start with this prefix. This prefix comes from the envvar TMPDIR if it is defined; otherwise, from the P_tmpdir macro if that is defined; otherwise, in /usr/tmp or /tmp; or finally the current directory if all else fails. */ static const char *temp_filename; /* Length of the prefix. */ static int temp_filename_length; /* Define the list of temporary files to delete. */ struct temp_file { const char *name; struct temp_file *next; }; /* Queue of files to delete on success or failure of compilation. */ static struct temp_file *always_delete_queue; /* Queue of files to delete on failure of compilation. */ static struct temp_file *failure_delete_queue; /* Record FILENAME as a file to be deleted automatically. ALWAYS_DELETE nonzero means delete it if all compilation succeeds; otherwise delete it in any case. FAIL_DELETE nonzero means delete it if a compilation step fails; otherwise delete it in any case. */ void record_temp_file (const char *filename, int always_delete, int fail_delete) { char *const name = xstrdup (filename); if (always_delete) { struct temp_file *temp; for (temp = always_delete_queue; temp; temp = temp->next) if (! filename_cmp (name, temp->name)) goto already1; temp = XNEW (struct temp_file); temp->next = always_delete_queue; temp->name = name; always_delete_queue = temp; already1:; } if (fail_delete) { struct temp_file *temp; for (temp = failure_delete_queue; temp; temp = temp->next) if (! filename_cmp (name, temp->name)) { free (name); goto already2; } temp = XNEW (struct temp_file); temp->next = failure_delete_queue; temp->name = name; failure_delete_queue = temp; already2:; } } /* Delete all the temporary files whose names we previously recorded. */ #ifndef DELETE_IF_ORDINARY #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \ do \ { \ if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \ if (unlink (NAME) < 0) \ if (VERBOSE_FLAG) \ perror_with_name (NAME); \ } while (0) #endif static void delete_if_ordinary (const char *name) { struct stat st; #ifdef DEBUG int i, c; printf ("Delete %s? (y or n) ", name); fflush (stdout); i = getchar (); if (i != '\n') while ((c = getchar ()) != '\n' && c != EOF) ; if (i == 'y' || i == 'Y') #endif /* DEBUG */ DELETE_IF_ORDINARY (name, st, verbose_flag); } static void delete_temp_files (void) { struct temp_file *temp; for (temp = always_delete_queue; temp; temp = temp->next) delete_if_ordinary (temp->name); always_delete_queue = 0; } /* Delete all the files to be deleted on error. */ static void delete_failure_queue (void) { struct temp_file *temp; for (temp = failure_delete_queue; temp; temp = temp->next) delete_if_ordinary (temp->name); } static void clear_failure_queue (void) { failure_delete_queue = 0; } /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK returns non-NULL. If DO_MULTI is true iterate over the paths twice, first with multilib suffix then without, otherwise iterate over the paths once without adding a multilib suffix. When DO_MULTI is true, some attempt is made to avoid visiting the same path twice, but we could do better. For instance, /usr/lib/../lib is considered different from /usr/lib. At least EXTRA_SPACE chars past the end of the path passed to CALLBACK are available for use by the callback. CALLBACK_INFO allows extra parameters to be passed to CALLBACK. Returns the value returned by CALLBACK. */ static void * for_each_path (const struct path_prefix *paths, bool do_multi, size_t extra_space, void *(*callback) (char *, void *), void *callback_info) { struct prefix_list *pl; const char *multi_dir = NULL; const char *multi_os_dir = NULL; const char *multiarch_suffix = NULL; const char *multi_suffix; const char *just_multi_suffix; char *path = NULL; void *ret = NULL; bool skip_multi_dir = false; bool skip_multi_os_dir = false; multi_suffix = machine_suffix; just_multi_suffix = just_machine_suffix; if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0) { multi_dir = concat (multilib_dir, dir_separator_str, NULL); multi_suffix = concat (multi_suffix, multi_dir, NULL); just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL); } if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0) multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL); if (multiarch_dir) multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL); while (1) { size_t multi_dir_len = 0; size_t multi_os_dir_len = 0; size_t multiarch_len = 0; size_t suffix_len; size_t just_suffix_len; size_t len; if (multi_dir) multi_dir_len = strlen (multi_dir); if (multi_os_dir) multi_os_dir_len = strlen (multi_os_dir); if (multiarch_suffix) multiarch_len = strlen (multiarch_suffix); suffix_len = strlen (multi_suffix); just_suffix_len = strlen (just_multi_suffix); if (path == NULL) { len = paths->max_len + extra_space + 1; len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len); path = XNEWVEC (char, len); } for (pl = paths->plist; pl != 0; pl = pl->next) { len = strlen (pl->prefix); memcpy (path, pl->prefix, len); /* Look first in MACHINE/VERSION subdirectory. */ if (!skip_multi_dir) { memcpy (path + len, multi_suffix, suffix_len + 1); ret = callback (path, callback_info); if (ret) break; } /* Some paths are tried with just the machine (ie. target) subdir. This is used for finding as, ld, etc. */ if (!skip_multi_dir && pl->require_machine_suffix == 2) { memcpy (path + len, just_multi_suffix, just_suffix_len + 1); ret = callback (path, callback_info); if (ret) break; } /* Now try the multiarch path. */ if (!skip_multi_dir && !pl->require_machine_suffix && multiarch_dir) { memcpy (path + len, multiarch_suffix, multiarch_len + 1); ret = callback (path, callback_info); if (ret) break; } /* Now try the base path. */ if (!pl->require_machine_suffix && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir)) { const char *this_multi; size_t this_multi_len; if (pl->os_multilib) { this_multi = multi_os_dir; this_multi_len = multi_os_dir_len; } else { this_multi = multi_dir; this_multi_len = multi_dir_len; } if (this_multi_len) memcpy (path + len, this_multi, this_multi_len + 1); else path[len] = '\0'; ret = callback (path, callback_info); if (ret) break; } } if (pl) break; if (multi_dir == NULL && multi_os_dir == NULL) break; /* Run through the paths again, this time without multilibs. Don't repeat any we have already seen. */ if (multi_dir) { free (CONST_CAST (char *, multi_dir)); multi_dir = NULL; free (CONST_CAST (char *, multi_suffix)); multi_suffix = machine_suffix; free (CONST_CAST (char *, just_multi_suffix)); just_multi_suffix = just_machine_suffix; } else skip_multi_dir = true; if (multi_os_dir) { free (CONST_CAST (char *, multi_os_dir)); multi_os_dir = NULL; } else skip_multi_os_dir = true; } if (multi_dir) { free (CONST_CAST (char *, multi_dir)); free (CONST_CAST (char *, multi_suffix)); free (CONST_CAST (char *, just_multi_suffix)); } if (multi_os_dir) free (CONST_CAST (char *, multi_os_dir)); if (ret != path) free (path); return ret; } /* Callback for build_search_list. Adds path to obstack being built. */ struct add_to_obstack_info { struct obstack *ob; bool check_dir; bool first_time; }; static void * add_to_obstack (char *path, void *data) { struct add_to_obstack_info *info = (struct add_to_obstack_info *) data; if (info->check_dir && !is_directory (path, false)) return NULL; if (!info->first_time) obstack_1grow (info->ob, PATH_SEPARATOR); obstack_grow (info->ob, path, strlen (path)); info->first_time = false; return NULL; } /* Add or change the value of an environment variable, outputting the change to standard error if in verbose mode. */ static void xputenv (const char *string) { if (verbose_flag) fnotice (stderr, "%s\n", string); putenv (CONST_CAST (char *, string)); } /* Build a list of search directories from PATHS. PREFIX is a string to prepend to the list. If CHECK_DIR_P is true we ensure the directory exists. If DO_MULTI is true, multilib paths are output first, then non-multilib paths. This is used mostly by putenv_from_prefixes so we use `collect_obstack'. It is also used by the --print-search-dirs flag. */ static char * build_search_list (const struct path_prefix *paths, const char *prefix, bool check_dir, bool do_multi) { struct add_to_obstack_info info; info.ob = &collect_obstack; info.check_dir = check_dir; info.first_time = true; obstack_grow (&collect_obstack, prefix, strlen (prefix)); obstack_1grow (&collect_obstack, '='); for_each_path (paths, do_multi, 0, add_to_obstack, &info); obstack_1grow (&collect_obstack, '\0'); return XOBFINISH (&collect_obstack, char *); } /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables for collect. */ static void putenv_from_prefixes (const struct path_prefix *paths, const char *env_var, bool do_multi) { xputenv (build_search_list (paths, env_var, true, do_multi)); } /* Check whether NAME can be accessed in MODE. This is like access, except that it never considers directories to be executable. */ static int access_check (const char *name, int mode) { if (mode == X_OK) { struct stat st; if (stat (name, &st) < 0 || S_ISDIR (st.st_mode)) return -1; } return access (name, mode); } /* Callback for find_a_file. Appends the file name to the directory path. If the resulting file exists in the right mode, return the full pathname to the file. */ struct file_at_path_info { const char *name; const char *suffix; int name_len; int suffix_len; int mode; }; static void * file_at_path (char *path, void *data) { struct file_at_path_info *info = (struct file_at_path_info *) data; size_t len = strlen (path); memcpy (path + len, info->name, info->name_len); len += info->name_len; /* Some systems have a suffix for executable files. So try appending that first. */ if (info->suffix_len) { memcpy (path + len, info->suffix, info->suffix_len + 1); if (access_check (path, info->mode) == 0) return path; } path[len] = '\0'; if (access_check (path, info->mode) == 0) return path; return NULL; } /* Search for NAME using the prefix list PREFIXES. MODE is passed to access to check permissions. If DO_MULTI is true, search multilib paths then non-multilib paths, otherwise do not search multilib paths. Return 0 if not found, otherwise return its name, allocated with malloc. */ static char * find_a_file (const struct path_prefix *pprefix, const char *name, int mode, bool do_multi) { struct file_at_path_info info; #ifdef DEFAULT_ASSEMBLER if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0) return xstrdup (DEFAULT_ASSEMBLER); #endif #ifdef DEFAULT_LINKER if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0) return xstrdup (DEFAULT_LINKER); #endif /* Determine the filename to execute (special case for absolute paths). */ if (IS_ABSOLUTE_PATH (name)) { if (access (name, mode) == 0) return xstrdup (name); return NULL; } info.name = name; info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : ""; info.name_len = strlen (info.name); info.suffix_len = strlen (info.suffix); info.mode = mode; return (char*) for_each_path (pprefix, do_multi, info.name_len + info.suffix_len, file_at_path, &info); } /* Ranking of prefixes in the sort list. -B prefixes are put before all others. */ enum path_prefix_priority { PREFIX_PRIORITY_B_OPT, PREFIX_PRIORITY_LAST }; /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending order according to PRIORITY. Within each PRIORITY, new entries are appended. If WARN is nonzero, we will warn if no file is found through this prefix. WARN should point to an int which will be set to 1 if this entry is used. COMPONENT is the value to be passed to update_path. REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without the complete value of machine_suffix. 2 means try both machine_suffix and just_machine_suffix. */ static void add_prefix (struct path_prefix *pprefix, const char *prefix, const char *component, /* enum prefix_priority */ int priority, int require_machine_suffix, int os_multilib) { struct prefix_list *pl, **prev; int len; for (prev = &pprefix->plist; (*prev) != NULL && (*prev)->priority <= priority; prev = &(*prev)->next) ; /* Keep track of the longest prefix. */ prefix = update_path (prefix, component); len = strlen (prefix); if (len > pprefix->max_len) pprefix->max_len = len; pl = XNEW (struct prefix_list); pl->prefix = prefix; pl->require_machine_suffix = require_machine_suffix; pl->priority = priority; pl->os_multilib = os_multilib; /* Insert after PREV. */ pl->next = (*prev); (*prev) = pl; } /* Same as add_prefix, but prepending target_system_root to prefix. */ /* The target_system_root prefix has been relocated by gcc_exec_prefix. */ static void add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix, const char *component, /* enum prefix_priority */ int priority, int require_machine_suffix, int os_multilib) { if (!IS_ABSOLUTE_PATH (prefix)) fatal_error ("system path %qs is not absolute", prefix); if (target_system_root) { char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root); size_t sysroot_len = strlen (target_system_root); if (sysroot_len > 0 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR) sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0'; if (target_sysroot_suffix) prefix = concat (sysroot_no_trailing_dir_separator, target_sysroot_suffix, prefix, NULL); else prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL); free (sysroot_no_trailing_dir_separator); /* We have to override this because GCC's notion of sysroot moves along with GCC. */ component = "GCC"; } add_prefix (pprefix, prefix, component, priority, require_machine_suffix, os_multilib); } /* Execute the command specified by the arguments on the current line of spec. When using pipes, this includes several piped-together commands with `|' between them. Return 0 if successful, -1 if failed. */ static int execute (void) { int i; int n_commands; /* # of command. */ char *string; struct pex_obj *pex; struct command { const char *prog; /* program name. */ const char **argv; /* vector of args. */ }; const char *arg; struct command *commands; /* each command buffer with above info. */ gcc_assert (!processing_spec_function); if (wrapper_string) { string = find_a_file (&exec_prefixes, argbuf[0], X_OK, false); if (string) argbuf[0] = string; insert_wrapper (wrapper_string); } /* Count # of piped commands. */ for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) if (strcmp (arg, "|") == 0) n_commands++; /* Get storage for each command. */ commands = (struct command *) alloca (n_commands * sizeof (struct command)); /* Split argbuf into its separate piped processes, and record info about each one. Also search for the programs that are to be run. */ argbuf.safe_push (0); commands[0].prog = argbuf[0]; /* first command. */ commands[0].argv = argbuf.address (); if (!wrapper_string) { string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false); commands[0].argv[0] = (string) ? string : commands[0].argv[0]; } for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) if (arg && strcmp (arg, "|") == 0) { /* each command. */ #if defined (__MSDOS__) || defined (OS2) || defined (VMS) fatal_error ("-pipe not supported"); #endif argbuf[i] = 0; /* Termination of command args. */ commands[n_commands].prog = argbuf[i + 1]; commands[n_commands].argv = &(argbuf.address ())[i + 1]; string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK, false); if (string) commands[n_commands].argv[0] = string; n_commands++; } /* If -v, print what we are about to do, and maybe query. */ if (verbose_flag) { /* For help listings, put a blank line between sub-processes. */ if (print_help_list) fputc ('\n', stderr); /* Print each piped command as a separate line. */ for (i = 0; i < n_commands; i++) { const char *const *j; if (verbose_only_flag) { for (j = commands[i].argv; *j; j++) { const char *p; for (p = *j; *p; ++p) if (!ISALNUM ((unsigned char) *p) && *p != '_' && *p != '/' && *p != '-' && *p != '.') break; if (*p || !*j) { fprintf (stderr, " \""); for (p = *j; *p; ++p) { if (*p == '"' || *p == '\\' || *p == '$') fputc ('\\', stderr); fputc (*p, stderr); } fputc ('"', stderr); } /* If it's empty, print "". */ else if (!**j) fprintf (stderr, " \"\""); else fprintf (stderr, " %s", *j); } } else for (j = commands[i].argv; *j; j++) /* If it's empty, print "". */ if (!**j) fprintf (stderr, " \"\""); else fprintf (stderr, " %s", *j); /* Print a pipe symbol after all but the last command. */ if (i + 1 != n_commands) fprintf (stderr, " |"); fprintf (stderr, "\n"); } fflush (stderr); if (verbose_only_flag != 0) { /* verbose_only_flag should act as if the spec was executed, so increment execution_count before returning. This prevents spurious warnings about unused linker input files, etc. */ execution_count++; return 0; } #ifdef DEBUG fnotice (stderr, "\nGo ahead? (y or n) "); fflush (stderr); i = getchar (); if (i != '\n') while (getchar () != '\n') ; if (i != 'y' && i != 'Y') return 0; #endif /* DEBUG */ } #ifdef ENABLE_VALGRIND_CHECKING /* Run the each command through valgrind. To simplify prepending the path to valgrind and the option "-q" (for quiet operation unless something triggers), we allocate a separate argv array. */ for (i = 0; i < n_commands; i++) { const char **argv; int argc; int j; for (argc = 0; commands[i].argv[argc] != NULL; argc++) ; argv = XALLOCAVEC (const char *, argc + 3); argv[0] = VALGRIND_PATH; argv[1] = "-q"; for (j = 2; j < argc + 2; j++) argv[j] = commands[i].argv[j - 2]; argv[j] = NULL; commands[i].argv = argv; commands[i].prog = argv[0]; } #endif /* Run each piped subprocess. */ pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file) ? PEX_RECORD_TIMES : 0), progname, temp_filename); if (pex == NULL) fatal_error ("pex_init failed: %m"); for (i = 0; i < n_commands; i++) { const char *errmsg; int err; const char *string = commands[i].argv[0]; errmsg = pex_run (pex, ((i + 1 == n_commands ? PEX_LAST : 0) | (string == commands[i].prog ? PEX_SEARCH : 0)), string, CONST_CAST (char **, commands[i].argv), NULL, NULL, &err); if (errmsg != NULL) { if (err == 0) fatal_error (errmsg); else { errno = err; pfatal_with_name (errmsg); } } if (string != commands[i].prog) free (CONST_CAST (char *, string)); } execution_count++; /* Wait for all the subprocesses to finish. */ { int *statuses; struct pex_time *times = NULL; int ret_code = 0; statuses = (int *) alloca (n_commands * sizeof (int)); if (!pex_get_status (pex, n_commands, statuses)) fatal_error ("failed to get exit status: %m"); if (report_times || report_times_to_file) { times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time)); if (!pex_get_times (pex, n_commands, times)) fatal_error ("failed to get process times: %m"); } pex_free (pex); for (i = 0; i < n_commands; ++i) { int status = statuses[i]; if (WIFSIGNALED (status)) { #ifdef SIGPIPE /* SIGPIPE is a special case. It happens in -pipe mode when the compiler dies before the preprocessor is done, or the assembler dies before the compiler is done. There's generally been an error already, and this is just fallout. So don't generate another error unless we would otherwise have succeeded. */ if (WTERMSIG (status) == SIGPIPE && (signal_count || greatest_status >= MIN_FATAL_STATUS)) { signal_count++; ret_code = -1; } else #endif internal_error ("%s (program %s)", strsignal (WTERMSIG (status)), commands[i].prog); } else if (WIFEXITED (status) && WEXITSTATUS (status) >= MIN_FATAL_STATUS) { if (WEXITSTATUS (status) > greatest_status) greatest_status = WEXITSTATUS (status); ret_code = -1; } if (report_times || report_times_to_file) { struct pex_time *pt = &times[i]; double ut, st; ut = ((double) pt->user_seconds + (double) pt->user_microseconds / 1.0e6); st = ((double) pt->system_seconds + (double) pt->system_microseconds / 1.0e6); if (ut + st != 0) { if (report_times) fnotice (stderr, "# %s %.2f %.2f\n", commands[i].prog, ut, st); if (report_times_to_file) { int c = 0; const char *const *j; fprintf (report_times_to_file, "%g %g", ut, st); for (j = &commands[i].prog; *j; j = &commands[i].argv[++c]) { const char *p; for (p = *j; *p; ++p) if (*p == '"' || *p == '\\' || *p == '$' || ISSPACE (*p)) break; if (*p) { fprintf (report_times_to_file, " \""); for (p = *j; *p; ++p) { if (*p == '"' || *p == '\\' || *p == '$') fputc ('\\', report_times_to_file); fputc (*p, report_times_to_file); } fputc ('"', report_times_to_file); } else fprintf (report_times_to_file, " %s", *j); } fputc ('\n', report_times_to_file); } } } } return ret_code; } } /* Find all the switches given to us and make a vector describing them. The elements of the vector are strings, one per switch given. If a switch uses following arguments, then the `part1' field is the switch itself and the `args' field is a null-terminated vector containing the following arguments. Bits in the `live_cond' field are: SWITCH_LIVE to indicate this switch is true in a conditional spec. SWITCH_FALSE to indicate this switch is overridden by a later switch. SWITCH_IGNORE to indicate this switch should be ignored (used in %<S). SWITCH_IGNORE_PERMANENTLY to indicate this switch should be ignored in all do_spec calls afterwards. Used for %<S from self specs. The `validated' field is nonzero if any spec has looked at this switch; if it remains zero at the end of the run, it must be meaningless. */ #define SWITCH_LIVE (1 << 0) #define SWITCH_FALSE (1 << 1) #define SWITCH_IGNORE (1 << 2) #define SWITCH_IGNORE_PERMANENTLY (1 << 3) #define SWITCH_KEEP_FOR_GCC (1 << 4) struct switchstr { const char *part1; const char **args; unsigned int live_cond; bool known; bool validated; bool ordering; }; static struct switchstr *switches; static int n_switches; static int n_switches_alloc; /* Set to zero if -fcompare-debug is disabled, positive if it's enabled and we're running the first compilation, negative if it's enabled and we're running the second compilation. For most of the time, it's in the range -1..1, but it can be temporarily set to 2 or 3 to indicate that the -fcompare-debug flags didn't come from the command-line, but rather from the GCC_COMPARE_DEBUG environment variable, until a synthesized -fcompare-debug flag is added to the command line. */ int compare_debug; /* Set to nonzero if we've seen the -fcompare-debug-second flag. */ int compare_debug_second; /* Set to the flags that should be passed to the second compilation in a -fcompare-debug compilation. */ const char *compare_debug_opt; static struct switchstr *switches_debug_check[2]; static int n_switches_debug_check[2]; static int n_switches_alloc_debug_check[2]; static char *debug_check_temp_file[2]; /* Language is one of three things: 1) The name of a real programming language. 2) NULL, indicating that no one has figured out what it is yet. 3) '*', indicating that the file should be passed to the linker. */ struct infile { const char *name; const char *language; struct compiler *incompiler; bool compiled; bool preprocessed; }; /* Also a vector of input files specified. */ static struct infile *infiles; int n_infiles; static int n_infiles_alloc; /* True if multiple input files are being compiled to a single assembly file. */ static bool combine_inputs; /* This counts the number of libraries added by lang_specific_driver, so that we can tell if there were any user supplied any files or libraries. */ static int added_libraries; /* And a vector of corresponding output files is made up later. */ const char **outfiles; #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX) /* Convert NAME to a new name if it is the standard suffix. DO_EXE is true if we should look for an executable suffix. DO_OBJ is true if we should look for an object suffix. */ static const char * convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED, int do_obj ATTRIBUTE_UNUSED) { #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) int i; #endif int len; if (name == NULL) return NULL; len = strlen (name); #ifdef HAVE_TARGET_OBJECT_SUFFIX /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */ if (do_obj && len > 2 && name[len - 2] == '.' && name[len - 1] == 'o') { obstack_grow (&obstack, name, len - 2); obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX)); name = XOBFINISH (&obstack, const char *); } #endif #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) /* If there is no filetype, make it the executable suffix (which includes the "."). But don't get confused if we have just "-o". */ if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-')) return name; for (i = len - 1; i >= 0; i--) if (IS_DIR_SEPARATOR (name[i])) break; for (i++; i < len; i++) if (name[i] == '.') return name; obstack_grow (&obstack, name, len); obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX, strlen (TARGET_EXECUTABLE_SUFFIX)); name = XOBFINISH (&obstack, const char *); #endif return name; } #endif /* Display the command line switches accepted by gcc. */ static void display_help (void) { printf (_("Usage: %s [options] file...\n"), progname); fputs (_("Options:\n"), stdout); fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout); fputs (_(" --help Display this information\n"), stdout); fputs (_(" --target-help Display target specific command line options\n"), stdout); fputs (_(" --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...]\n"), stdout); fputs (_(" Display specific types of command line options\n"), stdout); if (! verbose_flag) fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout); fputs (_(" --version Display compiler version information\n"), stdout); fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout); fputs (_(" -dumpversion Display the version of the compiler\n"), stdout); fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout); fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout); fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout); fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout); fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout); fputs (_("\ -print-multiarch Display the target's normalized GNU triplet, used as\n\ a component in the library path\n"), stdout); fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout); fputs (_("\ -print-multi-lib Display the mapping between command line options and\n\ multiple library search directories\n"), stdout); fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout); fputs (_(" -print-sysroot Display the target libraries directory\n"), stdout); fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout); fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout); fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout); fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout); fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout); fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout); fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout); fputs (_(" -save-temps Do not delete intermediate files\n"), stdout); fputs (_(" -save-temps=<arg> Do not delete intermediate files\n"), stdout); fputs (_("\ -no-canonical-prefixes Do not canonicalize paths when building relative\n\ prefixes to other gcc components\n"), stdout); fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout); fputs (_(" -time Time the execution of each subprocess\n"), stdout); fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout); fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout); fputs (_("\ --sysroot=<directory> Use <directory> as the root directory for headers\n\ and libraries\n"), stdout); fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout); fputs (_(" -v Display the programs invoked by the compiler\n"), stdout); fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout); fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout); fputs (_(" -S Compile only; do not assemble or link\n"), stdout); fputs (_(" -c Compile and assemble, but do not link\n"), stdout); fputs (_(" -o <file> Place the output into <file>\n"), stdout); fputs (_(" -pie Create a position independent executable\n"), stdout); fputs (_(" -shared Create a shared library\n"), stdout); fputs (_("\ -x <language> Specify the language of the following input files\n\ Permissible languages include: c c++ assembler none\n\ 'none' means revert to the default behavior of\n\ guessing the language based on the file's extension\n\ "), stdout); printf (_("\ \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\ passed on to the various sub-processes invoked by %s. In order to pass\n\ other options on to these processes the -W<letter> options must be used.\n\ "), progname); /* The rest of the options are displayed by invocations of the various sub-processes. */ } static void add_preprocessor_option (const char *option, int len) { preprocessor_options.safe_push (save_string (option, len)); } static void add_assembler_option (const char *option, int len) { assembler_options.safe_push (save_string (option, len)); } static void add_linker_option (const char *option, int len) { linker_options.safe_push (save_string (option, len)); } /* Allocate space for an input file in infiles. */ static void alloc_infile (void) { if (n_infiles_alloc == 0) { n_infiles_alloc = 16; infiles = XNEWVEC (struct infile, n_infiles_alloc); } else if (n_infiles_alloc == n_infiles) { n_infiles_alloc *= 2; infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc); } } /* Store an input file with the given NAME and LANGUAGE in infiles. */ static void add_infile (const char *name, const char *language) { alloc_infile (); infiles[n_infiles].name = name; infiles[n_infiles++].language = language; } /* Allocate space for a switch in switches. */ static void alloc_switch (void) { if (n_switches_alloc == 0) { n_switches_alloc = 16; switches = XNEWVEC (struct switchstr, n_switches_alloc); } else if (n_switches_alloc == n_switches) { n_switches_alloc *= 2; switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc); } } /* Save an option OPT with N_ARGS arguments in array ARGS, marking it as validated if VALIDATED and KNOWN if it is an internal switch. */ static void save_switch (const char *opt, size_t n_args, const char *const *args, bool validated, bool known) { alloc_switch (); switches[n_switches].part1 = opt + 1; if (n_args == 0) switches[n_switches].args = 0; else { switches[n_switches].args = XNEWVEC (const char *, n_args + 1); memcpy (switches[n_switches].args, args, n_args * sizeof (const char *)); switches[n_switches].args[n_args] = NULL; } switches[n_switches].live_cond = 0; switches[n_switches].validated = validated; switches[n_switches].known = known; switches[n_switches].ordering = 0; n_switches++; } /* Handle an option DECODED that is unknown to the option-processing machinery. */ static bool driver_unknown_option_callback (const struct cl_decoded_option *decoded) { const char *opt = decoded->arg; if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-' && !(decoded->errors & CL_ERR_NEGATIVE)) { /* Leave unknown -Wno-* options for the compiler proper, to be diagnosed only if there are warnings. */ save_switch (decoded->canonical_option[0], decoded->canonical_option_num_elements - 1, &decoded->canonical_option[1], false, true); return false; } if (decoded->opt_index == OPT_SPECIAL_unknown) { /* Give it a chance to define it a a spec file. */ save_switch (decoded->canonical_option[0], decoded->canonical_option_num_elements - 1, &decoded->canonical_option[1], false, false); return false; } else return true; } /* Handle an option DECODED that is not marked as CL_DRIVER. LANG_MASK will always be CL_DRIVER. */ static void driver_wrong_lang_callback (const struct cl_decoded_option *decoded, unsigned int lang_mask ATTRIBUTE_UNUSED) { /* At this point, non-driver options are accepted (and expected to be passed down by specs) unless marked to be rejected by the driver. Options to be rejected by the driver but accepted by the compilers proper are treated just like completely unknown options. */ const struct cl_option *option = &cl_options[decoded->opt_index]; if (option->cl_reject_driver) error ("unrecognized command line option %qs", decoded->orig_option_with_args_text); else save_switch (decoded->canonical_option[0], decoded->canonical_option_num_elements - 1, &decoded->canonical_option[1], false, true); } static const char *spec_lang = 0; static int last_language_n_infiles; /* Handle a driver option; arguments and return value as for handle_option. */ static bool driver_handle_option (struct gcc_options *opts, struct gcc_options *opts_set, const struct cl_decoded_option *decoded, unsigned int lang_mask ATTRIBUTE_UNUSED, int kind, location_t loc, const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED, diagnostic_context *dc) { size_t opt_index = decoded->opt_index; const char *arg = decoded->arg; const char *compare_debug_replacement_opt; int value = decoded->value; bool validated = false; bool do_save = true; gcc_assert (opts == &global_options); gcc_assert (opts_set == &global_options_set); gcc_assert (kind == DK_UNSPECIFIED); gcc_assert (loc == UNKNOWN_LOCATION); gcc_assert (dc == global_dc); switch (opt_index) { case OPT_dumpspecs: { struct spec_list *sl; init_spec (); for (sl = specs; sl; sl = sl->next) printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec)); if (link_command_spec) printf ("*link_command:\n%s\n\n", link_command_spec); exit (0); } case OPT_dumpversion: printf ("%s\n", spec_version); exit (0); case OPT_dumpmachine: printf ("%s\n", spec_machine); exit (0); case OPT__version: print_version = 1; /* CPP driver cannot obtain switch from cc1_options. */ if (is_cpp_driver) add_preprocessor_option ("--version", strlen ("--version")); add_assembler_option ("--version", strlen ("--version")); add_linker_option ("--version", strlen ("--version")); break; case OPT__help: print_help_list = 1; /* CPP driver cannot obtain switch from cc1_options. */ if (is_cpp_driver) add_preprocessor_option ("--help", 6); add_assembler_option ("--help", 6); add_linker_option ("--help", 6); break; case OPT__help_: print_subprocess_help = 2; break; case OPT__target_help: print_subprocess_help = 1; /* CPP driver cannot obtain switch from cc1_options. */ if (is_cpp_driver) add_preprocessor_option ("--target-help", 13); add_assembler_option ("--target-help", 13); add_linker_option ("--target-help", 13); break; case OPT__no_sysroot_suffix: case OPT_pass_exit_codes: case OPT_print_search_dirs: case OPT_print_file_name_: case OPT_print_prog_name_: case OPT_print_multi_lib: case OPT_print_multi_directory: case OPT_print_sysroot: case OPT_print_multi_os_directory: case OPT_print_multiarch: case OPT_print_sysroot_headers_suffix: case OPT_time: case OPT_wrapper: /* These options set the variables specified in common.opt automatically, and do not need to be saved for spec processing. */ do_save = false; break; case OPT_print_libgcc_file_name: print_file_name = "libgcc.a"; do_save = false; break; case OPT_fcompare_debug_second: compare_debug_second = 1; break; case OPT_fcompare_debug: switch (value) { case 0: compare_debug_replacement_opt = "-fcompare-debug="; arg = ""; goto compare_debug_with_arg; case 1: compare_debug_replacement_opt = "-fcompare-debug=-gtoggle"; arg = "-gtoggle"; goto compare_debug_with_arg; default: gcc_unreachable (); } break; case OPT_fcompare_debug_: compare_debug_replacement_opt = decoded->canonical_option[0]; compare_debug_with_arg: gcc_assert (decoded->canonical_option_num_elements == 1); gcc_assert (arg != NULL); if (*arg) compare_debug = 1; else compare_debug = -1; if (compare_debug < 0) compare_debug_opt = NULL; else compare_debug_opt = arg; save_switch (compare_debug_replacement_opt, 0, NULL, validated, true); return true; case OPT_Wa_: { int prev, j; /* Pass the rest of this option to the assembler. */ /* Split the argument at commas. */ prev = 0; for (j = 0; arg[j]; j++) if (arg[j] == ',') { add_assembler_option (arg + prev, j - prev); prev = j + 1; } /* Record the part after the last comma. */ add_assembler_option (arg + prev, j - prev); } do_save = false; break; case OPT_Wp_: { int prev, j; /* Pass the rest of this option to the preprocessor. */ /* Split the argument at commas. */ prev = 0; for (j = 0; arg[j]; j++) if (arg[j] == ',') { add_preprocessor_option (arg + prev, j - prev); prev = j + 1; } /* Record the part after the last comma. */ add_preprocessor_option (arg + prev, j - prev); } do_save = false; break; case OPT_Wl_: { int prev, j; /* Split the argument at commas. */ prev = 0; for (j = 0; arg[j]; j++) if (arg[j] == ',') { add_infile (save_string (arg + prev, j - prev), "*"); prev = j + 1; } /* Record the part after the last comma. */ add_infile (arg + prev, "*"); } do_save = false; break; case OPT_Xlinker: add_infile (arg, "*"); do_save = false; break; case OPT_Xpreprocessor: add_preprocessor_option (arg, strlen (arg)); do_save = false; break; case OPT_Xassembler: add_assembler_option (arg, strlen (arg)); do_save = false; break; case OPT_l: /* POSIX allows separation of -l and the lib arg; canonicalize by concatenating -l with its arg */ add_infile (concat ("-l", arg, NULL), "*"); do_save = false; break; case OPT_L: /* Similarly, canonicalize -L for linkers that may not accept separate arguments. */ save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true); return true; case OPT_F: /* Likewise -F. */ save_switch (concat ("-F", arg, NULL), 0, NULL, validated, true); return true; case OPT_save_temps: save_temps_flag = SAVE_TEMPS_CWD; validated = true; break; case OPT_save_temps_: if (strcmp (arg, "cwd") == 0) save_temps_flag = SAVE_TEMPS_CWD; else if (strcmp (arg, "obj") == 0 || strcmp (arg, "object") == 0) save_temps_flag = SAVE_TEMPS_OBJ; else fatal_error ("%qs is an unknown -save-temps option", decoded->orig_option_with_args_text); break; case OPT_no_canonical_prefixes: /* Already handled as a special case, so ignored here. */ do_save = false; break; case OPT_pipe: validated = true; /* These options set the variables specified in common.opt automatically, but do need to be saved for spec processing. */ break; case OPT_specs_: { struct user_specs *user = XNEW (struct user_specs); user->next = (struct user_specs *) 0; user->filename = arg; if (user_specs_tail) user_specs_tail->next = user; else user_specs_head = user; user_specs_tail = user; } validated = true; break; case OPT__sysroot_: target_system_root = arg; target_system_root_changed = 1; do_save = false; break; case OPT_time_: if (report_times_to_file) fclose (report_times_to_file); report_times_to_file = fopen (arg, "a"); do_save = false; break; case OPT____: /* "-###" This is similar to -v except that there is no execution of the commands and the echoed arguments are quoted. It is intended for use in shell scripts to capture the driver-generated command line. */ verbose_only_flag++; verbose_flag = 1; do_save = false; break; case OPT_B: { size_t len = strlen (arg); /* Catch the case where the user has forgotten to append a directory separator to the path. Note, they may be using -B to add an executable name prefix, eg "i386-elf-", in order to distinguish between multiple installations of GCC in the same directory. Hence we must check to see if appending a directory separator actually makes a valid directory name. */ if (!IS_DIR_SEPARATOR (arg[len - 1]) && is_directory (arg, false)) { char *tmp = XNEWVEC (char, len + 2); strcpy (tmp, arg); tmp[len] = DIR_SEPARATOR; tmp[++len] = 0; arg = tmp; } add_prefix (&exec_prefixes, arg, NULL, PREFIX_PRIORITY_B_OPT, 0, 0); add_prefix (&startfile_prefixes, arg, NULL, PREFIX_PRIORITY_B_OPT, 0, 0); add_prefix (&include_prefixes, arg, NULL, PREFIX_PRIORITY_B_OPT, 0, 0); } validated = true; break; case OPT_x: spec_lang = arg; if (!strcmp (spec_lang, "none")) /* Suppress the warning if -xnone comes after the last input file, because alternate command interfaces like g++ might find it useful to place -xnone after each input file. */ spec_lang = 0; else last_language_n_infiles = n_infiles; do_save = false; break; case OPT_o: have_o = 1; #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX) arg = convert_filename (arg, ! have_c, 0); #endif /* Save the output name in case -save-temps=obj was used. */ save_temps_prefix = xstrdup (arg); /* On some systems, ld cannot handle "-o" without a space. So split the option from its argument. */ save_switch ("-o", 1, &arg, validated, true); return true; case OPT_static_libgcc: case OPT_shared_libgcc: case OPT_static_libgfortran: case OPT_static_libstdc__: /* These are always valid, since gcc.c itself understands the first two, gfortranspec.c understands -static-libgfortran and g++spec.c understands -static-libstdc++ */ validated = true; break; default: /* Various driver options need no special processing at this point, having been handled in a prescan above or being handled by specs. */ break; } if (do_save) save_switch (decoded->canonical_option[0], decoded->canonical_option_num_elements - 1, &decoded->canonical_option[1], validated, true); return true; } /* Put the driver's standard set of option handlers in *HANDLERS. */ static void set_option_handlers (struct cl_option_handlers *handlers) { handlers->unknown_option_callback = driver_unknown_option_callback; handlers->wrong_lang_callback = driver_wrong_lang_callback; handlers->num_handlers = 3; handlers->handlers[0].handler = driver_handle_option; handlers->handlers[0].mask = CL_DRIVER; handlers->handlers[1].handler = common_handle_option; handlers->handlers[1].mask = CL_COMMON; handlers->handlers[2].handler = target_handle_option; handlers->handlers[2].mask = CL_TARGET; } /* Create the vector `switches' and its contents. Store its length in `n_switches'. */ static void process_command (unsigned int decoded_options_count, struct cl_decoded_option *decoded_options) { const char *temp; char *temp1; char *tooldir_prefix, *tooldir_prefix2; char *(*get_relative_prefix) (const char *, const char *, const char *) = NULL; struct cl_option_handlers handlers; unsigned int j; gcc_exec_prefix = getenv ("GCC_EXEC_PREFIX"); n_switches = 0; n_infiles = 0; added_libraries = 0; /* Figure compiler version from version string. */ compiler_version = temp1 = xstrdup (version_string); for (; *temp1; ++temp1) { if (*temp1 == ' ') { *temp1 = '\0'; break; } } /* Handle any -no-canonical-prefixes flag early, to assign the function that builds relative prefixes. This function creates default search paths that are needed later in normal option handling. */ for (j = 1; j < decoded_options_count; j++) { if (decoded_options[j].opt_index == OPT_no_canonical_prefixes) { get_relative_prefix = make_relative_prefix_ignore_links; break; } } if (! get_relative_prefix) get_relative_prefix = make_relative_prefix; /* Set up the default search paths. If there is no GCC_EXEC_PREFIX, see if we can create it from the pathname specified in decoded_options[0].arg. */ gcc_libexec_prefix = standard_libexec_prefix; #ifndef VMS /* FIXME: make_relative_prefix doesn't yet work for VMS. */ if (!gcc_exec_prefix) { gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg, standard_bindir_prefix, standard_exec_prefix); gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg, standard_bindir_prefix, standard_libexec_prefix); if (gcc_exec_prefix) xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL)); } else { /* make_relative_prefix requires a program name, but GCC_EXEC_PREFIX is typically a directory name with a trailing / (which is ignored by make_relative_prefix), so append a program name. */ char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL); gcc_libexec_prefix = get_relative_prefix (tmp_prefix, standard_exec_prefix, standard_libexec_prefix); /* The path is unrelocated, so fallback to the original setting. */ if (!gcc_libexec_prefix) gcc_libexec_prefix = standard_libexec_prefix; free (tmp_prefix); } #else #endif /* From this point onward, gcc_exec_prefix is non-null if the toolchain is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX or an automatically created GCC_EXEC_PREFIX from decoded_options[0].arg. */ /* Do language-specific adjustment/addition of flags. */ lang_specific_driver (&decoded_options, &decoded_options_count, &added_libraries); if (gcc_exec_prefix) { int len = strlen (gcc_exec_prefix); if (len > (int) sizeof ("/lib/gcc/") - 1 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1]))) { temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1; if (IS_DIR_SEPARATOR (*temp) && filename_ncmp (temp + 1, "lib", 3) == 0 && IS_DIR_SEPARATOR (temp[4]) && filename_ncmp (temp + 5, "gcc", 3) == 0) len -= sizeof ("/lib/gcc/") - 1; } set_std_prefix (gcc_exec_prefix, len); add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC", PREFIX_PRIORITY_LAST, 0, 0); add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC", PREFIX_PRIORITY_LAST, 0, 0); } /* COMPILER_PATH and LIBRARY_PATH have values that are lists of directory names with colons. */ temp = getenv ("COMPILER_PATH"); if (temp) { const char *startp, *endp; char *nstore = (char *) alloca (strlen (temp) + 3); startp = endp = temp; while (1) { if (*endp == PATH_SEPARATOR || *endp == 0) { strncpy (nstore, startp, endp - startp); if (endp == startp) strcpy (nstore, concat (".", dir_separator_str, NULL)); else if (!IS_DIR_SEPARATOR (endp[-1])) { nstore[endp - startp] = DIR_SEPARATOR; nstore[endp - startp + 1] = 0; } else nstore[endp - startp] = 0; add_prefix (&exec_prefixes, nstore, 0, PREFIX_PRIORITY_LAST, 0, 0); add_prefix (&include_prefixes, nstore, 0, PREFIX_PRIORITY_LAST, 0, 0); if (*endp == 0) break; endp = startp = endp + 1; } else endp++; } } temp = getenv (LIBRARY_PATH_ENV); if (temp && *cross_compile == '0') { const char *startp, *endp; char *nstore = (char *) alloca (strlen (temp) + 3); startp = endp = temp; while (1) { if (*endp == PATH_SEPARATOR || *endp == 0) { strncpy (nstore, startp, endp - startp); if (endp == startp) strcpy (nstore, concat (".", dir_separator_str, NULL)); else if (!IS_DIR_SEPARATOR (endp[-1])) { nstore[endp - startp] = DIR_SEPARATOR; nstore[endp - startp + 1] = 0; } else nstore[endp - startp] = 0; add_prefix (&startfile_prefixes, nstore, NULL, PREFIX_PRIORITY_LAST, 0, 1); if (*endp == 0) break; endp = startp = endp + 1; } else endp++; } } /* Use LPATH like LIBRARY_PATH (for the CMU build program). */ temp = getenv ("LPATH"); if (temp && *cross_compile == '0') { const char *startp, *endp; char *nstore = (char *) alloca (strlen (temp) + 3); startp = endp = temp; while (1) { if (*endp == PATH_SEPARATOR || *endp == 0) { strncpy (nstore, startp, endp - startp); if (endp == startp) strcpy (nstore, concat (".", dir_separator_str, NULL)); else if (!IS_DIR_SEPARATOR (endp[-1])) { nstore[endp - startp] = DIR_SEPARATOR; nstore[endp - startp + 1] = 0; } else nstore[endp - startp] = 0; add_prefix (&startfile_prefixes, nstore, NULL, PREFIX_PRIORITY_LAST, 0, 1); if (*endp == 0) break; endp = startp = endp + 1; } else endp++; } } /* Process the options and store input files and switches in their vectors. */ last_language_n_infiles = -1; set_option_handlers (&handlers); for (j = 1; j < decoded_options_count; j++) { switch (decoded_options[j].opt_index) { case OPT_S: case OPT_c: case OPT_E: have_c = 1; break; } if (have_c) break; } for (j = 1; j < decoded_options_count; j++) { if (decoded_options[j].opt_index == OPT_SPECIAL_input_file) { const char *arg = decoded_options[j].arg; const char *p = strrchr (arg, '@'); char *fname; long offset; int consumed; #ifdef HAVE_TARGET_OBJECT_SUFFIX arg = convert_filename (arg, 0, access (arg, F_OK)); #endif /* For LTO static archive support we handle input file specifications that are composed of a filename and an offset like FNAME@OFFSET. */ if (p && p != arg && sscanf (p, "@%li%n", &offset, &consumed) >= 1 && strlen (p) == (unsigned int)consumed) { fname = (char *)xmalloc (p - arg + 1); memcpy (fname, arg, p - arg); fname[p - arg] = '\0'; /* Only accept non-stdin and existing FNAME parts, otherwise try with the full name. */ if (strcmp (fname, "-") == 0 || access (fname, F_OK) < 0) { free (fname); fname = xstrdup (arg); } } else fname = xstrdup (arg); if (strcmp (fname, "-") != 0 && access (fname, F_OK) < 0) perror_with_name (fname); else add_infile (arg, spec_lang); free (fname); continue; } read_cmdline_option (&global_options, &global_options_set, decoded_options + j, UNKNOWN_LOCATION, CL_DRIVER, &handlers, global_dc); } /* If -save-temps=obj and -o name, create the prefix to use for %b. Otherwise just make -save-temps=obj the same as -save-temps=cwd. */ if (save_temps_flag == SAVE_TEMPS_OBJ && save_temps_prefix != NULL) { save_temps_length = strlen (save_temps_prefix); temp = strrchr (lbasename (save_temps_prefix), '.'); if (temp) { save_temps_length -= strlen (temp); save_temps_prefix[save_temps_length] = '\0'; } } else if (save_temps_prefix != NULL) { free (save_temps_prefix); save_temps_prefix = NULL; } if (save_temps_flag && use_pipes) { /* -save-temps overrides -pipe, so that temp files are produced */ if (save_temps_flag) warning (0, "-pipe ignored because -save-temps specified"); use_pipes = 0; } if (!compare_debug) { const char *gcd = getenv ("GCC_COMPARE_DEBUG"); if (gcd && gcd[0] == '-') { compare_debug = 2; compare_debug_opt = gcd; } else if (gcd && *gcd && strcmp (gcd, "0")) { compare_debug = 3; compare_debug_opt = "-gtoggle"; } } else if (compare_debug < 0) { compare_debug = 0; gcc_assert (!compare_debug_opt); } /* Set up the search paths. We add directories that we expect to contain GNU Toolchain components before directories specified by the machine description so that we will find GNU components (like the GNU assembler) before those of the host system. */ /* If we don't know where the toolchain has been installed, use the configured-in locations. */ if (!gcc_exec_prefix) { #ifndef OS2 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC", PREFIX_PRIORITY_LAST, 1, 0); add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS", PREFIX_PRIORITY_LAST, 2, 0); add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS", PREFIX_PRIORITY_LAST, 2, 0); #endif add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS", PREFIX_PRIORITY_LAST, 1, 0); } gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix)); tooldir_prefix2 = concat (tooldir_base_prefix, spec_machine, dir_separator_str, NULL); /* Look for tools relative to the location from which the driver is running, or, if that is not available, the configured prefix. */ tooldir_prefix = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix, spec_machine, dir_separator_str, spec_version, dir_separator_str, tooldir_prefix2, NULL); free (tooldir_prefix2); add_prefix (&exec_prefixes, concat (tooldir_prefix, "bin", dir_separator_str, NULL), "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0); add_prefix (&startfile_prefixes, concat (tooldir_prefix, "lib", dir_separator_str, NULL), "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1); free (tooldir_prefix); #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS) /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix, then consider it to relocate with the rest of the GCC installation if GCC_EXEC_PREFIX is set. ``make_relative_prefix'' is not compiled for VMS, so don't call it. */ if (target_system_root && !target_system_root_changed && gcc_exec_prefix) { char *tmp_prefix = get_relative_prefix (decoded_options[0].arg, standard_bindir_prefix, target_system_root); if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0) { target_system_root = tmp_prefix; target_system_root_changed = 1; } } #endif /* More prefixes are enabled in main, after we read the specs file and determine whether this is cross-compilation or not. */ if (n_infiles == last_language_n_infiles && spec_lang != 0) warning (0, "%<-x %s%> after last input file has no effect", spec_lang); /* Synthesize -fcompare-debug flag from the GCC_COMPARE_DEBUG environment variable. */ if (compare_debug == 2 || compare_debug == 3) { const char *opt = concat ("-fcompare-debug=", compare_debug_opt, NULL); save_switch (opt, 0, NULL, false, true); compare_debug = 1; } /* Ensure we only invoke each subprocess once. */ if (print_subprocess_help || print_help_list || print_version) { n_infiles = 0; /* Create a dummy input file, so that we can pass the help option on to the various sub-processes. */ add_infile ("help-dummy", "c"); } alloc_switch (); switches[n_switches].part1 = 0; alloc_infile (); infiles[n_infiles].name = 0; } /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS and place that in the environment. */ static void set_collect_gcc_options (void) { int i; int first_time; /* Build COLLECT_GCC_OPTIONS to have all of the options specified to the compiler. */ obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=", sizeof ("COLLECT_GCC_OPTIONS=") - 1); first_time = TRUE; for (i = 0; (int) i < n_switches; i++) { const char *const *args; const char *p, *q; if (!first_time) obstack_grow (&collect_obstack, " ", 1); first_time = FALSE; /* Ignore elided switches. */ if ((switches[i].live_cond & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC)) == SWITCH_IGNORE) continue; obstack_grow (&collect_obstack, "'-", 2); q = switches[i].part1; while ((p = strchr (q, '\''))) { obstack_grow (&collect_obstack, q, p - q); obstack_grow (&collect_obstack, "'\\''", 4); q = ++p; } obstack_grow (&collect_obstack, q, strlen (q)); obstack_grow (&collect_obstack, "'", 1); for (args = switches[i].args; args && *args; args++) { obstack_grow (&collect_obstack, " '", 2); q = *args; while ((p = strchr (q, '\''))) { obstack_grow (&collect_obstack, q, p - q); obstack_grow (&collect_obstack, "'\\''", 4); q = ++p; } obstack_grow (&collect_obstack, q, strlen (q)); obstack_grow (&collect_obstack, "'", 1); } } obstack_grow (&collect_obstack, "\0", 1); xputenv (XOBFINISH (&collect_obstack, char *)); } /* Process a spec string, accumulating and running commands. */ /* These variables describe the input file name. input_file_number is the index on outfiles of this file, so that the output file name can be stored for later use by %o. input_basename is the start of the part of the input file sans all directory names, and basename_length is the number of characters starting there excluding the suffix .c or whatever. */ static const char *gcc_input_filename; static int input_file_number; size_t input_filename_length; static int basename_length; static int suffixed_basename_length; static const char *input_basename; static const char *input_suffix; #ifndef HOST_LACKS_INODE_NUMBERS static struct stat input_stat; #endif static int input_stat_set; /* The compiler used to process the current input file. */ static struct compiler *input_file_compiler; /* These are variables used within do_spec and do_spec_1. */ /* Nonzero if an arg has been started and not yet terminated (with space, tab or newline). */ static int arg_going; /* Nonzero means %d or %g has been seen; the next arg to be terminated is a temporary file name. */ static int delete_this_arg; /* Nonzero means %w has been seen; the next arg to be terminated is the output file name of this compilation. */ static int this_is_output_file; /* Nonzero means %s has been seen; the next arg to be terminated is the name of a library file and we should try the standard search dirs for it. */ static int this_is_library_file; /* Nonzero means %T has been seen; the next arg to be terminated is the name of a linker script and we should try all of the standard search dirs for it. If it is found insert a --script command line switch and then substitute the full path in place, otherwise generate an error message. */ static int this_is_linker_script; /* Nonzero means that the input of this command is coming from a pipe. */ static int input_from_pipe; /* Nonnull means substitute this for any suffix when outputting a switches arguments. */ static const char *suffix_subst; /* If there is an argument being accumulated, terminate it and store it. */ static void end_going_arg (void) { if (arg_going) { const char *string; obstack_1grow (&obstack, 0); string = XOBFINISH (&obstack, const char *); if (this_is_library_file) string = find_file (string); if (this_is_linker_script) { char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true); if (full_script_path == NULL) { error ("unable to locate default linker script %qs in the library search paths", string); /* Script was not found on search path. */ return; } store_arg ("--script", false, false); string = full_script_path; } store_arg (string, delete_this_arg, this_is_output_file); if (this_is_output_file) outfiles[input_file_number] = string; arg_going = 0; } } /* Parse the WRAPPER string which is a comma separated list of the command line and insert them into the beginning of argbuf. */ static void insert_wrapper (const char *wrapper) { int n = 0; int i; char *buf = xstrdup (wrapper); char *p = buf; unsigned int old_length = argbuf.length (); do { n++; while (*p == ',') p++; } while ((p = strchr (p, ',')) != NULL); argbuf.safe_grow (old_length + n); memmove (argbuf.address () + n, argbuf.address (), old_length * sizeof (const_char_p)); i = 0; p = buf; do { while (*p == ',') { *p = 0; p++; } argbuf[i] = p; i++; } while ((p = strchr (p, ',')) != NULL); gcc_assert (i == n); } /* Process the spec SPEC and run the commands specified therein. Returns 0 if the spec is successfully processed; -1 if failed. */ int do_spec (const char *spec) { int value; value = do_spec_2 (spec); /* Force out any unfinished command. If -pipe, this forces out the last command if it ended in `|'. */ if (value == 0) { if (argbuf.length () > 0 && !strcmp (argbuf.last (), "|")) argbuf.pop (); set_collect_gcc_options (); if (argbuf.length () > 0) value = execute (); } return value; } static int do_spec_2 (const char *spec) { int result; clear_args (); arg_going = 0; delete_this_arg = 0; this_is_output_file = 0; this_is_library_file = 0; this_is_linker_script = 0; input_from_pipe = 0; suffix_subst = NULL; result = do_spec_1 (spec, 0, NULL); end_going_arg (); return result; } /* Process the given spec string and add any new options to the end of the switches/n_switches array. */ static void do_option_spec (const char *name, const char *spec) { unsigned int i, value_count, value_len; const char *p, *q, *value; char *tmp_spec, *tmp_spec_p; if (configure_default_options[0].name == NULL) return; for (i = 0; i < ARRAY_SIZE (configure_default_options); i++) if (strcmp (configure_default_options[i].name, name) == 0) break; if (i == ARRAY_SIZE (configure_default_options)) return; value = configure_default_options[i].value; value_len = strlen (value); /* Compute the size of the final spec. */ value_count = 0; p = spec; while ((p = strstr (p, "%(VALUE)")) != NULL) { p ++; value_count ++; } /* Replace each %(VALUE) by the specified value. */ tmp_spec = (char *) alloca (strlen (spec) + 1 + value_count * (value_len - strlen ("%(VALUE)"))); tmp_spec_p = tmp_spec; q = spec; while ((p = strstr (q, "%(VALUE)")) != NULL) { memcpy (tmp_spec_p, q, p - q); tmp_spec_p = tmp_spec_p + (p - q); memcpy (tmp_spec_p, value, value_len); tmp_spec_p += value_len; q = p + strlen ("%(VALUE)"); } strcpy (tmp_spec_p, q); do_self_spec (tmp_spec); } /* Process the given spec string and add any new options to the end of the switches/n_switches array. */ static void do_self_spec (const char *spec) { int i; do_spec_2 (spec); do_spec_1 (" ", 0, NULL); /* Mark %<S switches processed by do_self_spec to be ignored permanently. do_self_specs adds the replacements to switches array, so it shouldn't be processed afterwards. */ for (i = 0; i < n_switches; i++) if ((switches[i].live_cond & SWITCH_IGNORE)) switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY; if (argbuf.length () > 0) { const char **argbuf_copy; struct cl_decoded_option *decoded_options; struct cl_option_handlers handlers; unsigned int decoded_options_count; unsigned int j; /* Create a copy of argbuf with a dummy argv[0] entry for decode_cmdline_options_to_array. */ argbuf_copy = XNEWVEC (const char *, argbuf.length () + 1); argbuf_copy[0] = ""; memcpy (argbuf_copy + 1, argbuf.address (), argbuf.length () * sizeof (const char *)); decode_cmdline_options_to_array (argbuf.length () + 1, argbuf_copy, CL_DRIVER, &decoded_options, &decoded_options_count); free (argbuf_copy); set_option_handlers (&handlers); for (j = 1; j < decoded_options_count; j++) { switch (decoded_options[j].opt_index) { case OPT_SPECIAL_input_file: /* Specs should only generate options, not input files. */ if (strcmp (decoded_options[j].arg, "-") != 0) fatal_error ("switch %qs does not start with %<-%>", decoded_options[j].arg); else fatal_error ("spec-generated switch is just %<-%>"); break; case OPT_fcompare_debug_second: case OPT_fcompare_debug: case OPT_fcompare_debug_: case OPT_o: /* Avoid duplicate processing of some options from compare-debug specs; just save them here. */ save_switch (decoded_options[j].canonical_option[0], (decoded_options[j].canonical_option_num_elements - 1), &decoded_options[j].canonical_option[1], false, true); break; default: read_cmdline_option (&global_options, &global_options_set, decoded_options + j, UNKNOWN_LOCATION, CL_DRIVER, &handlers, global_dc); break; } } alloc_switch (); switches[n_switches].part1 = 0; } } /* Callback for processing %D and %I specs. */ struct spec_path_info { const char *option; const char *append; size_t append_len; bool omit_relative; bool separate_options; }; static void * spec_path (char *path, void *data) { struct spec_path_info *info = (struct spec_path_info *) data; size_t len = 0; char save = 0; if (info->omit_relative && !IS_ABSOLUTE_PATH (path)) return NULL; if (info->append_len != 0) { len = strlen (path); memcpy (path + len, info->append, info->append_len + 1); } if (!is_directory (path, true)) return NULL; do_spec_1 (info->option, 1, NULL); if (info->separate_options) do_spec_1 (" ", 0, NULL); if (info->append_len == 0) { len = strlen (path); save = path[len - 1]; if (IS_DIR_SEPARATOR (path[len - 1])) path[len - 1] = '\0'; } do_spec_1 (path, 1, NULL); do_spec_1 (" ", 0, NULL); /* Must not damage the original path. */ if (info->append_len == 0) path[len - 1] = save; return NULL; } /* Create a temporary FILE with the contents of ARGV. Add @FILE to the argument list. */ static void create_at_file (char **argv) { char *temp_file = make_temp_file (""); char *at_argument = concat ("@", temp_file, NULL); FILE *f = fopen (temp_file, "w"); int status; if (f == NULL) fatal_error ("could not open temporary response file %s", temp_file); status = writeargv (argv, f); if (status) fatal_error ("could not write to temporary response file %s", temp_file); status = fclose (f); if (EOF == status) fatal_error ("could not close temporary response file %s", temp_file); store_arg (at_argument, 0, 0); record_temp_file (temp_file, !save_temps_flag, !save_temps_flag); } /* True if we should compile INFILE. */ static bool compile_input_file_p (struct infile *infile) { if ((!infile->language) || (infile->language[0] != '*')) if (infile->incompiler == input_file_compiler) return true; return false; } /* Process each member of VEC as a spec. */ static void do_specs_vec (vec<char_p> vec) { unsigned ix; char *opt; FOR_EACH_VEC_ELT (vec, ix, opt) { do_spec_1 (opt, 1, NULL); /* Make each accumulated option a separate argument. */ do_spec_1 (" ", 0, NULL); } } /* Process the sub-spec SPEC as a portion of a larger spec. This is like processing a whole spec except that we do not initialize at the beginning and we do not supply a newline by default at the end. INSWITCH nonzero means don't process %-sequences in SPEC; in this case, % is treated as an ordinary character. This is used while substituting switches. INSWITCH nonzero also causes SPC not to terminate an argument. Value is zero unless a line was finished and the command on that line reported an error. */ static int do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part) { const char *p = spec; int c; int i; int value; /* If it's an empty string argument to a switch, keep it as is. */ if (inswitch && !*p) arg_going = 1; while ((c = *p++)) /* If substituting a switch, treat all chars like letters. Otherwise, NL, SPC, TAB and % are special. */ switch (inswitch ? 'a' : c) { case '\n': end_going_arg (); if (argbuf.length () > 0 && !strcmp (argbuf.last (), "|")) { /* A `|' before the newline means use a pipe here, but only if -pipe was specified. Otherwise, execute now and don't pass the `|' as an arg. */ if (use_pipes) { input_from_pipe = 1; break; } else argbuf.pop (); } set_collect_gcc_options (); if (argbuf.length () > 0) { value = execute (); if (value) return value; } /* Reinitialize for a new command, and for a new argument. */ clear_args (); arg_going = 0; delete_this_arg = 0; this_is_output_file = 0; this_is_library_file = 0; this_is_linker_script = 0; input_from_pipe = 0; break; case '|': end_going_arg (); /* Use pipe */ obstack_1grow (&obstack, c); arg_going = 1; break; case '\t': case ' ': end_going_arg (); /* Reinitialize for a new argument. */ delete_this_arg = 0; this_is_output_file = 0; this_is_library_file = 0; this_is_linker_script = 0; break; case '%': switch (c = *p++) { case 0: fatal_error ("spec %qs invalid", spec); case 'b': if (save_temps_length) obstack_grow (&obstack, save_temps_prefix, save_temps_length); else obstack_grow (&obstack, input_basename, basename_length); if (compare_debug < 0) obstack_grow (&obstack, ".gk", 3); arg_going = 1; break; case 'B': if (save_temps_length) obstack_grow (&obstack, save_temps_prefix, save_temps_length); else obstack_grow (&obstack, input_basename, suffixed_basename_length); if (compare_debug < 0) obstack_grow (&obstack, ".gk", 3); arg_going = 1; break; case 'd': delete_this_arg = 2; break; /* Dump out the directories specified with LIBRARY_PATH, followed by the absolute directories that we search for startfiles. */ case 'D': { struct spec_path_info info; info.option = "-L"; info.append_len = 0; #ifdef RELATIVE_PREFIX_NOT_LINKDIR /* Used on systems which record the specified -L dirs and use them to search for dynamic linking. Relative directories always come from -B, and it is better not to use them for searching at run time. In particular, stage1 loses. */ info.omit_relative = true; #else info.omit_relative = false; #endif info.separate_options = false; for_each_path (&startfile_prefixes, true, 0, spec_path, &info); } break; case 'e': /* %efoo means report an error with `foo' as error message and don't execute any more commands for this file. */ { const char *q = p; char *buf; while (*p != 0 && *p != '\n') p++; buf = (char *) alloca (p - q + 1); strncpy (buf, q, p - q); buf[p - q] = 0; error ("%s", _(buf)); return -1; } break; case 'n': /* %nfoo means report a notice with `foo' on stderr. */ { const char *q = p; char *buf; while (*p != 0 && *p != '\n') p++; buf = (char *) alloca (p - q + 1); strncpy (buf, q, p - q); buf[p - q] = 0; inform (0, "%s", _(buf)); if (*p) p++; } break; case 'j': { struct stat st; /* If save_temps_flag is off, and the HOST_BIT_BUCKET is defined, and it is not a directory, and it is writable, use it. Otherwise, treat this like any other temporary file. */ if ((!save_temps_flag) && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode)) && (access (HOST_BIT_BUCKET, W_OK) == 0)) { obstack_grow (&obstack, HOST_BIT_BUCKET, strlen (HOST_BIT_BUCKET)); delete_this_arg = 0; arg_going = 1; break; } } goto create_temp_file; case '|': if (use_pipes) { obstack_1grow (&obstack, '-'); delete_this_arg = 0; arg_going = 1; /* consume suffix */ while (*p == '.' || ISALNUM ((unsigned char) *p)) p++; if (p[0] == '%' && p[1] == 'O') p += 2; break; } goto create_temp_file; case 'm': if (use_pipes) { /* consume suffix */ while (*p == '.' || ISALNUM ((unsigned char) *p)) p++; if (p[0] == '%' && p[1] == 'O') p += 2; break; } goto create_temp_file; case 'g': case 'u': case 'U': create_temp_file: { struct temp_name *t; int suffix_length; const char *suffix = p; char *saved_suffix = NULL; while (*p == '.' || ISALNUM ((unsigned char) *p)) p++; suffix_length = p - suffix; if (p[0] == '%' && p[1] == 'O') { p += 2; /* We don't support extra suffix characters after %O. */ if (*p == '.' || ISALNUM ((unsigned char) *p)) fatal_error ("spec %qs has invalid %<%%0%c%>", spec, *p); if (suffix_length == 0) suffix = TARGET_OBJECT_SUFFIX; else { saved_suffix = XNEWVEC (char, suffix_length + strlen (TARGET_OBJECT_SUFFIX)); strncpy (saved_suffix, suffix, suffix_length); strcpy (saved_suffix + suffix_length, TARGET_OBJECT_SUFFIX); } suffix_length += strlen (TARGET_OBJECT_SUFFIX); } if (compare_debug < 0) { suffix = concat (".gk", suffix, NULL); suffix_length += 3; } /* If -save-temps=obj and -o were specified, use that for the temp file. */ if (save_temps_length) { char *tmp; temp_filename_length = save_temps_length + suffix_length + 1; tmp = (char *) alloca (temp_filename_length); memcpy (tmp, save_temps_prefix, save_temps_length); memcpy (tmp + save_temps_length, suffix, suffix_length); tmp[save_temps_length + suffix_length] = '\0'; temp_filename = save_string (tmp, save_temps_length + suffix_length); obstack_grow (&obstack, temp_filename, temp_filename_length); arg_going = 1; delete_this_arg = 0; break; } /* If the gcc_input_filename has the same suffix specified for the %g, %u, or %U, and -save-temps is specified, we could end up using that file as an intermediate thus clobbering the user's source file (.e.g., gcc -save-temps foo.s would clobber foo.s with the output of cpp0). So check for this condition and generate a temp file as the intermediate. */ if (save_temps_flag) { char *tmp; temp_filename_length = basename_length + suffix_length + 1; tmp = (char *) alloca (temp_filename_length); memcpy (tmp, input_basename, basename_length); memcpy (tmp + basename_length, suffix, suffix_length); tmp[basename_length + suffix_length] = '\0'; temp_filename = tmp; if (filename_cmp (temp_filename, gcc_input_filename) != 0) { #ifndef HOST_LACKS_INODE_NUMBERS struct stat st_temp; /* Note, set_input() resets input_stat_set to 0. */ if (input_stat_set == 0) { input_stat_set = stat (gcc_input_filename, &input_stat); if (input_stat_set >= 0) input_stat_set = 1; } /* If we have the stat for the gcc_input_filename and we can do the stat for the temp_filename then the they could still refer to the same file if st_dev/st_ino's are the same. */ if (input_stat_set != 1 || stat (temp_filename, &st_temp) < 0 || input_stat.st_dev != st_temp.st_dev || input_stat.st_ino != st_temp.st_ino) #else /* Just compare canonical pathnames. */ char* input_realname = lrealpath (gcc_input_filename); char* temp_realname = lrealpath (temp_filename); bool files_differ = filename_cmp (input_realname, temp_realname); free (input_realname); free (temp_realname); if (files_differ) #endif { temp_filename = save_string (temp_filename, temp_filename_length + 1); obstack_grow (&obstack, temp_filename, temp_filename_length); arg_going = 1; delete_this_arg = 0; break; } } } /* See if we already have an association of %g/%u/%U and suffix. */ for (t = temp_names; t; t = t->next) if (t->length == suffix_length && strncmp (t->suffix, suffix, suffix_length) == 0 && t->unique == (c == 'u' || c == 'U' || c == 'j')) break; /* Make a new association if needed. %u and %j require one. */ if (t == 0 || c == 'u' || c == 'j') { if (t == 0) { t = XNEW (struct temp_name); t->next = temp_names; temp_names = t; } t->length = suffix_length; if (saved_suffix) { t->suffix = saved_suffix; saved_suffix = NULL; } else t->suffix = save_string (suffix, suffix_length); t->unique = (c == 'u' || c == 'U' || c == 'j'); temp_filename = make_temp_file (t->suffix); temp_filename_length = strlen (temp_filename); t->filename = temp_filename; t->filename_length = temp_filename_length; } free (saved_suffix); obstack_grow (&obstack, t->filename, t->filename_length); delete_this_arg = 1; } arg_going = 1; break; case 'i': if (combine_inputs) { if (at_file_supplied) { /* We are going to expand `%i' to `@FILE', where FILE is a newly-created temporary filename. The filenames that would usually be expanded in place of %o will be written to the temporary file. */ char **argv; int n_files = 0; int j; for (i = 0; i < n_infiles; i++) if (compile_input_file_p (&infiles[i])) n_files++; argv = (char **) alloca (sizeof (char *) * (n_files + 1)); /* Copy the strings over. */ for (i = 0, j = 0; i < n_infiles; i++) if (compile_input_file_p (&infiles[i])) { argv[j] = CONST_CAST (char *, infiles[i].name); infiles[i].compiled = true; j++; } argv[j] = NULL; create_at_file (argv); } else for (i = 0; (int) i < n_infiles; i++) if (compile_input_file_p (&infiles[i])) { store_arg (infiles[i].name, 0, 0); infiles[i].compiled = true; } } else { obstack_grow (&obstack, gcc_input_filename, input_filename_length); arg_going = 1; } break; case 'I': { struct spec_path_info info; if (multilib_dir) { do_spec_1 ("-imultilib", 1, NULL); /* Make this a separate argument. */ do_spec_1 (" ", 0, NULL); do_spec_1 (multilib_dir, 1, NULL); do_spec_1 (" ", 0, NULL); } if (multiarch_dir) { do_spec_1 ("-imultiarch", 1, NULL); /* Make this a separate argument. */ do_spec_1 (" ", 0, NULL); do_spec_1 (multiarch_dir, 1, NULL); do_spec_1 (" ", 0, NULL); } if (gcc_exec_prefix) { do_spec_1 ("-iprefix", 1, NULL); /* Make this a separate argument. */ do_spec_1 (" ", 0, NULL); do_spec_1 (gcc_exec_prefix, 1, NULL); do_spec_1 (" ", 0, NULL); } if (target_system_root_changed || (target_system_root && target_sysroot_hdrs_suffix)) { do_spec_1 ("-isysroot", 1, NULL); /* Make this a separate argument. */ do_spec_1 (" ", 0, NULL); do_spec_1 (target_system_root, 1, NULL); if (target_sysroot_hdrs_suffix) do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL); do_spec_1 (" ", 0, NULL); } info.option = "-isystem"; info.append = "include"; info.append_len = strlen (info.append); info.omit_relative = false; info.separate_options = true; for_each_path (&include_prefixes, false, info.append_len, spec_path, &info); info.append = "include-fixed"; if (*sysroot_hdrs_suffix_spec) info.append = concat (info.append, dir_separator_str, multilib_dir, NULL); info.append_len = strlen (info.append); for_each_path (&include_prefixes, false, info.append_len, spec_path, &info); } break; case 'o': { int max = n_infiles; max += lang_specific_extra_outfiles; if (HAVE_GNU_LD && at_file_supplied) { /* We are going to expand `%o' to `@FILE', where FILE is a newly-created temporary filename. The filenames that would usually be expanded in place of %o will be written to the temporary file. */ char **argv; int n_files, j; /* Convert OUTFILES into a form suitable for writeargv. */ /* Determine how many are non-NULL. */ for (n_files = 0, i = 0; i < max; i++) n_files += outfiles[i] != NULL; argv = (char **) alloca (sizeof (char *) * (n_files + 1)); /* Copy the strings over. */ for (i = 0, j = 0; i < max; i++) if (outfiles[i]) { argv[j] = CONST_CAST (char *, outfiles[i]); j++; } argv[j] = NULL; create_at_file (argv); } else for (i = 0; i < max; i++) if (outfiles[i]) store_arg (outfiles[i], 0, 0); break; } case 'O': obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX)); arg_going = 1; break; case 's': this_is_library_file = 1; break; case 'T': this_is_linker_script = 1; break; case 'V': outfiles[input_file_number] = NULL; break; case 'w': this_is_output_file = 1; break; case 'W': { unsigned int cur_index = argbuf.length (); /* Handle the {...} following the %W. */ if (*p != '{') fatal_error ("spec %qs has invalid %<%%W%c%>", spec, *p); p = handle_braces (p + 1); if (p == 0) return -1; end_going_arg (); /* If any args were output, mark the last one for deletion on failure. */ if (argbuf.length () != cur_index) record_temp_file (argbuf.last (), 0, 1); break; } /* %x{OPTION} records OPTION for %X to output. */ case 'x': { const char *p1 = p; char *string; char *opt; unsigned ix; /* Skip past the option value and make a copy. */ if (*p != '{') fatal_error ("spec %qs has invalid %<%%x%c%>", spec, *p); while (*p++ != '}') ; string = save_string (p1 + 1, p - p1 - 2); /* See if we already recorded this option. */ FOR_EACH_VEC_ELT (linker_options, ix, opt) if (! strcmp (string, opt)) { free (string); return 0; } /* This option is new; add it. */ add_linker_option (string, strlen (string)); free (string); } break; /* Dump out the options accumulated previously using %x. */ case 'X': do_specs_vec (linker_options); break; /* Dump out the options accumulated previously using -Wa,. */ case 'Y': do_specs_vec (assembler_options); break; /* Dump out the options accumulated previously using -Wp,. */ case 'Z': do_specs_vec (preprocessor_options); break; /* Here are digits and numbers that just process a certain constant string as a spec. */ case '1': value = do_spec_1 (cc1_spec, 0, NULL); if (value != 0) return value; break; case '2': value = do_spec_1 (cc1plus_spec, 0, NULL); if (value != 0) return value; break; case 'a': value = do_spec_1 (asm_spec, 0, NULL); if (value != 0) return value; break; case 'A': value = do_spec_1 (asm_final_spec, 0, NULL); if (value != 0) return value; break; case 'C': { const char *const spec = (input_file_compiler->cpp_spec ? input_file_compiler->cpp_spec : cpp_spec); value = do_spec_1 (spec, 0, NULL); if (value != 0) return value; } break; case 'E': value = do_spec_1 (endfile_spec, 0, NULL); if (value != 0) return value; break; case 'l': value = do_spec_1 (link_spec, 0, NULL); if (value != 0) return value; break; case 'L': value = do_spec_1 (lib_spec, 0, NULL); if (value != 0) return value; break; case 'M': if (multilib_os_dir == NULL) obstack_1grow (&obstack, '.'); else obstack_grow (&obstack, multilib_os_dir, strlen (multilib_os_dir)); break; case 'G': value = do_spec_1 (libgcc_spec, 0, NULL); if (value != 0) return value; break; case 'R': /* We assume there is a directory separator at the end of this string. */ if (target_system_root) { obstack_grow (&obstack, target_system_root, strlen (target_system_root)); if (target_sysroot_suffix) obstack_grow (&obstack, target_sysroot_suffix, strlen (target_sysroot_suffix)); } break; case 'S': value = do_spec_1 (startfile_spec, 0, NULL); if (value != 0) return value; break; /* Here we define characters other than letters and digits. */ case '{': p = handle_braces (p); if (p == 0) return -1; break; case ':': p = handle_spec_function (p); if (p == 0) return -1; break; case '%': obstack_1grow (&obstack, '%'); break; case '.': { unsigned len = 0; while (p[len] && p[len] != ' ' && p[len] != '%') len++; suffix_subst = save_string (p - 1, len + 1); p += len; } break; /* Henceforth ignore the option(s) matching the pattern after the %<. */ case '<': case '>': { unsigned len = 0; int have_wildcard = 0; int i; int switch_option; if (c == '>') switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC; else switch_option = SWITCH_IGNORE; while (p[len] && p[len] != ' ' && p[len] != '\t') len++; if (p[len-1] == '*') have_wildcard = 1; for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, p, len - have_wildcard) && (have_wildcard || switches[i].part1[len] == '\0')) { switches[i].live_cond |= switch_option; /* User switch be validated from validate_all_switches. when the definition is seen from the spec file. If not defined anywhere, will be rejected. */ if (switches[i].known) switches[i].validated = true; } p += len; } break; case '*': if (soft_matched_part) { if (soft_matched_part[0]) do_spec_1 (soft_matched_part, 1, NULL); do_spec_1 (" ", 0, NULL); } else /* Catch the case where a spec string contains something like '%{foo:%*}'. i.e. there is no * in the pattern on the left hand side of the :. */ error ("spec failure: %<%%*%> has not been initialized by pattern match"); break; /* Process a string found as the value of a spec given by name. This feature allows individual machine descriptions to add and use their own specs. */ case '(': { const char *name = p; struct spec_list *sl; int len; /* The string after the S/P is the name of a spec that is to be processed. */ while (*p && *p != ')') p++; /* See if it's in the list. */ for (len = p - name, sl = specs; sl; sl = sl->next) if (sl->name_len == len && !strncmp (sl->name, name, len)) { name = *(sl->ptr_spec); #ifdef DEBUG_SPECS fnotice (stderr, "Processing spec (%s), which is '%s'\n", sl->name, name); #endif break; } if (sl) { value = do_spec_1 (name, 0, NULL); if (value != 0) return value; } /* Discard the closing paren. */ if (*p) p++; } break; default: error ("spec failure: unrecognized spec option %qc", c); break; } break; case '\\': /* Backslash: treat next character as ordinary. */ c = *p++; /* Fall through. */ default: /* Ordinary character: put it into the current argument. */ obstack_1grow (&obstack, c); arg_going = 1; } /* End of string. If we are processing a spec function, we need to end any pending argument. */ if (processing_spec_function) end_going_arg (); return 0; } /* Look up a spec function. */ static const struct spec_function * lookup_spec_function (const char *name) { const struct spec_function *sf; for (sf = static_spec_functions; sf->name != NULL; sf++) if (strcmp (sf->name, name) == 0) return sf; return NULL; } /* Evaluate a spec function. */ static const char * eval_spec_function (const char *func, const char *args) { const struct spec_function *sf; const char *funcval; /* Saved spec processing context. */ vec<const_char_p> save_argbuf; int save_arg_going; int save_delete_this_arg; int save_this_is_output_file; int save_this_is_library_file; int save_input_from_pipe; int save_this_is_linker_script; const char *save_suffix_subst; int save_growing_size; void *save_growing_value; sf = lookup_spec_function (func); if (sf == NULL) fatal_error ("unknown spec function %qs", func); /* Push the spec processing context. */ save_argbuf = argbuf; save_arg_going = arg_going; save_delete_this_arg = delete_this_arg; save_this_is_output_file = this_is_output_file; save_this_is_library_file = this_is_library_file; save_this_is_linker_script = this_is_linker_script; save_input_from_pipe = input_from_pipe; save_suffix_subst = suffix_subst; /* If we have some object growing now, finalize it so the args and function eval proceed from a cleared context. This is needed to prevent the first constructed arg from mistakenly including the growing value. We'll push this value back on the obstack once the function evaluation is done, to restore a consistent processing context for our caller. This is fine as the address of growing objects isn't guaranteed to remain stable until they are finalized, and we expect this situation to be rare enough for the extra copy not to be an issue. */ save_growing_size = obstack_object_size (&obstack); if (save_growing_size > 0) save_growing_value = obstack_finish (&obstack); /* Create a new spec processing context, and build the function arguments. */ alloc_args (); if (do_spec_2 (args) < 0) fatal_error ("error in args to spec function %qs", func); /* argbuf_index is an index for the next argument to be inserted, and so contains the count of the args already inserted. */ funcval = (*sf->func) (argbuf.length (), argbuf.address ()); /* Pop the spec processing context. */ argbuf.release (); argbuf = save_argbuf; arg_going = save_arg_going; delete_this_arg = save_delete_this_arg; this_is_output_file = save_this_is_output_file; this_is_library_file = save_this_is_library_file; this_is_linker_script = save_this_is_linker_script; input_from_pipe = save_input_from_pipe; suffix_subst = save_suffix_subst; if (save_growing_size > 0) obstack_grow (&obstack, save_growing_value, save_growing_size); return funcval; } /* Handle a spec function call of the form: %:function(args) ARGS is processed as a spec in a separate context and split into an argument vector in the normal fashion. The function returns a string containing a spec which we then process in the caller's context, or NULL if no processing is required. */ static const char * handle_spec_function (const char *p) { char *func, *args; const char *endp, *funcval; int count; processing_spec_function++; /* Get the function name. */ for (endp = p; *endp != '\0'; endp++) { if (*endp == '(') /* ) */ break; /* Only allow [A-Za-z0-9], -, and _ in function names. */ if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_')) fatal_error ("malformed spec function name"); } if (*endp != '(') /* ) */ fatal_error ("no arguments for spec function"); func = save_string (p, endp - p); p = ++endp; /* Get the arguments. */ for (count = 0; *endp != '\0'; endp++) { /* ( */ if (*endp == ')') { if (count == 0) break; count--; } else if (*endp == '(') /* ) */ count++; } /* ( */ if (*endp != ')') fatal_error ("malformed spec function arguments"); args = save_string (p, endp - p); p = ++endp; /* p now points to just past the end of the spec function expression. */ funcval = eval_spec_function (func, args); if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0) p = NULL; free (func); free (args); processing_spec_function--; return p; } /* Inline subroutine of handle_braces. Returns true if the current input suffix matches the atom bracketed by ATOM and END_ATOM. */ static inline bool input_suffix_matches (const char *atom, const char *end_atom) { return (input_suffix && !strncmp (input_suffix, atom, end_atom - atom) && input_suffix[end_atom - atom] == '\0'); } /* Subroutine of handle_braces. Returns true if the current input file's spec name matches the atom bracketed by ATOM and END_ATOM. */ static bool input_spec_matches (const char *atom, const char *end_atom) { return (input_file_compiler && input_file_compiler->suffix && input_file_compiler->suffix[0] != '\0' && !strncmp (input_file_compiler->suffix + 1, atom, end_atom - atom) && input_file_compiler->suffix[end_atom - atom + 1] == '\0'); } /* Subroutine of handle_braces. Returns true if a switch matching the atom bracketed by ATOM and END_ATOM appeared on the command line. */ static bool switch_matches (const char *atom, const char *end_atom, int starred) { int i; int len = end_atom - atom; int plen = starred ? len : -1; for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, atom, len) && (starred || switches[i].part1[len] == '\0') && check_live_switch (i, plen)) return true; /* Check if a switch with separated form matching the atom. We check -D and -U switches. */ else if (switches[i].args != 0) { if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U') && *switches[i].part1 == atom[0]) { if (!strncmp (switches[i].args[0], &atom[1], len - 1) && (starred || (switches[i].part1[1] == '\0' && switches[i].args[0][len - 1] == '\0')) && check_live_switch (i, (starred ? 1 : -1))) return true; } } return false; } /* Inline subroutine of handle_braces. Mark all of the switches which match ATOM (extends to END_ATOM; STARRED indicates whether there was a star after the atom) for later processing. */ static inline void mark_matching_switches (const char *atom, const char *end_atom, int starred) { int i; int len = end_atom - atom; int plen = starred ? len : -1; for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, atom, len) && (starred || switches[i].part1[len] == '\0') && check_live_switch (i, plen)) switches[i].ordering = 1; } /* Inline subroutine of handle_braces. Process all the currently marked switches through give_switch, and clear the marks. */ static inline void process_marked_switches (void) { int i; for (i = 0; i < n_switches; i++) if (switches[i].ordering == 1) { switches[i].ordering = 0; give_switch (i, 0); } } /* Handle a %{ ... } construct. P points just inside the leading {. Returns a pointer one past the end of the brace block, or 0 if we call do_spec_1 and that returns -1. */ static const char * handle_braces (const char *p) { const char *atom, *end_atom; const char *d_atom = NULL, *d_end_atom = NULL; const char *orig = p; bool a_is_suffix; bool a_is_spectype; bool a_is_starred; bool a_is_negated; bool a_matched; bool a_must_be_last = false; bool ordered_set = false; bool disjunct_set = false; bool disj_matched = false; bool disj_starred = true; bool n_way_choice = false; bool n_way_matched = false; #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0) do { if (a_must_be_last) goto invalid; /* Scan one "atom" (S in the description above of %{}, possibly with '!', '.', '@', ',', or '*' modifiers). */ a_matched = false; a_is_suffix = false; a_is_starred = false; a_is_negated = false; a_is_spectype = false; SKIP_WHITE(); if (*p == '!') p++, a_is_negated = true; SKIP_WHITE(); if (*p == '.') p++, a_is_suffix = true; else if (*p == ',') p++, a_is_spectype = true; atom = p; while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '=' || *p == ',' || *p == '.' || *p == '@') p++; end_atom = p; if (*p == '*') p++, a_is_starred = 1; SKIP_WHITE(); switch (*p) { case '&': case '}': /* Substitute the switch(es) indicated by the current atom. */ ordered_set = true; if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix || a_is_spectype || atom == end_atom) goto invalid; mark_matching_switches (atom, end_atom, a_is_starred); if (*p == '}') process_marked_switches (); break; case '|': case ':': /* Substitute some text if the current atom appears as a switch or suffix. */ disjunct_set = true; if (ordered_set) goto invalid; if (atom == end_atom) { if (!n_way_choice || disj_matched || *p == '|' || a_is_negated || a_is_suffix || a_is_spectype || a_is_starred) goto invalid; /* An empty term may appear as the last choice of an N-way choice set; it means "otherwise". */ a_must_be_last = true; disj_matched = !n_way_matched; disj_starred = false; } else { if ((a_is_suffix || a_is_spectype) && a_is_starred) goto invalid; if (!a_is_starred) disj_starred = false; /* Don't bother testing this atom if we already have a match. */ if (!disj_matched && !n_way_matched) { if (a_is_suffix) a_matched = input_suffix_matches (atom, end_atom); else if (a_is_spectype) a_matched = input_spec_matches (atom, end_atom); else a_matched = switch_matches (atom, end_atom, a_is_starred); if (a_matched != a_is_negated) { disj_matched = true; d_atom = atom; d_end_atom = end_atom; } } } if (*p == ':') { /* Found the body, that is, the text to substitute if the current disjunction matches. */ p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred, disj_matched && !n_way_matched); if (p == 0) return 0; /* If we have an N-way choice, reset state for the next disjunction. */ if (*p == ';') { n_way_choice = true; n_way_matched |= disj_matched; disj_matched = false; disj_starred = true; d_atom = d_end_atom = NULL; } } break; default: goto invalid; } } while (*p++ != '}'); return p; invalid: fatal_error ("braced spec %qs is invalid at %qc", orig, *p); #undef SKIP_WHITE } /* Subroutine of handle_braces. Scan and process a brace substitution body (X in the description of %{} syntax). P points one past the colon; ATOM and END_ATOM bracket the first atom which was found to be true (present) in the current disjunction; STARRED indicates whether all the atoms in the current disjunction were starred (for syntax validation); MATCHED indicates whether the disjunction matched or not, and therefore whether or not the body is to be processed through do_spec_1 or just skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1 returns -1. */ static const char * process_brace_body (const char *p, const char *atom, const char *end_atom, int starred, int matched) { const char *body, *end_body; unsigned int nesting_level; bool have_subst = false; /* Locate the closing } or ;, honoring nested braces. Trim trailing whitespace. */ body = p; nesting_level = 1; for (;;) { if (*p == '{') nesting_level++; else if (*p == '}') { if (!--nesting_level) break; } else if (*p == ';' && nesting_level == 1) break; else if (*p == '%' && p[1] == '*' && nesting_level == 1) have_subst = true; else if (*p == '\0') goto invalid; p++; } end_body = p; while (end_body[-1] == ' ' || end_body[-1] == '\t') end_body--; if (have_subst && !starred) goto invalid; if (matched) { /* Copy the substitution body to permanent storage and execute it. If have_subst is false, this is a simple matter of running the body through do_spec_1... */ char *string = save_string (body, end_body - body); if (!have_subst) { if (do_spec_1 (string, 0, NULL) < 0) return 0; } else { /* ... but if have_subst is true, we have to process the body once for each matching switch, with %* set to the variant part of the switch. */ unsigned int hard_match_len = end_atom - atom; int i; for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, atom, hard_match_len) && check_live_switch (i, hard_match_len)) { if (do_spec_1 (string, 0, &switches[i].part1[hard_match_len]) < 0) return 0; /* Pass any arguments this switch has. */ give_switch (i, 1); suffix_subst = NULL; } } } return p; invalid: fatal_error ("braced spec body %qs is invalid", body); } /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*} spec, or -1 if either exact match or %* is used. A -O switch is obsoleted by a later -O switch. A -f, -g, -m, or -W switch whose value does not begin with "no-" is obsoleted by the same value with the "no-", similarly for a switch with the "no-" prefix. */ static int check_live_switch (int switchnum, int prefix_length) { const char *name = switches[switchnum].part1; int i; /* If we already processed this switch and determined if it was live or not, return our past determination. */ if (switches[switchnum].live_cond != 0) return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0 && (switches[switchnum].live_cond & SWITCH_FALSE) == 0 && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY) == 0); /* In the common case of {<at-most-one-letter>*}, a negating switch would always match, so ignore that case. We will just send the conflicting switches to the compiler phase. */ if (prefix_length >= 0 && prefix_length <= 1) return 1; /* Now search for duplicate in a manner that depends on the name. */ switch (*name) { case 'O': for (i = switchnum + 1; i < n_switches; i++) if (switches[i].part1[0] == 'O') { switches[switchnum].validated = true; switches[switchnum].live_cond = SWITCH_FALSE; return 0; } break; case 'W': case 'f': case 'm': case 'g': if (! strncmp (name + 1, "no-", 3)) { /* We have Xno-YYY, search for XYYY. */ for (i = switchnum + 1; i < n_switches; i++) if (switches[i].part1[0] == name[0] && ! strcmp (&switches[i].part1[1], &name[4])) { /* --specs are validated with the validate_switches mechanism. */ if (switches[switchnum].known) switches[switchnum].validated = true; switches[switchnum].live_cond = SWITCH_FALSE; return 0; } } else { /* We have XYYY, search for Xno-YYY. */ for (i = switchnum + 1; i < n_switches; i++) if (switches[i].part1[0] == name[0] && switches[i].part1[1] == 'n' && switches[i].part1[2] == 'o' && switches[i].part1[3] == '-' && !strcmp (&switches[i].part1[4], &name[1])) { /* --specs are validated with the validate_switches mechanism. */ if (switches[switchnum].known) switches[switchnum].validated = true; switches[switchnum].live_cond = SWITCH_FALSE; return 0; } } break; } /* Otherwise the switch is live. */ switches[switchnum].live_cond |= SWITCH_LIVE; return 1; } /* Pass a switch to the current accumulating command in the same form that we received it. SWITCHNUM identifies the switch; it is an index into the vector of switches gcc received, which is `switches'. This cannot fail since it never finishes a command line. If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */ static void give_switch (int switchnum, int omit_first_word) { if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0) return; if (!omit_first_word) { do_spec_1 ("-", 0, NULL); do_spec_1 (switches[switchnum].part1, 1, NULL); } if (switches[switchnum].args != 0) { const char **p; for (p = switches[switchnum].args; *p; p++) { const char *arg = *p; do_spec_1 (" ", 0, NULL); if (suffix_subst) { unsigned length = strlen (arg); int dot = 0; while (length-- && !IS_DIR_SEPARATOR (arg[length])) if (arg[length] == '.') { (CONST_CAST(char *, arg))[length] = 0; dot = 1; break; } do_spec_1 (arg, 1, NULL); if (dot) (CONST_CAST(char *, arg))[length] = '.'; do_spec_1 (suffix_subst, 1, NULL); } else do_spec_1 (arg, 1, NULL); } } do_spec_1 (" ", 0, NULL); switches[switchnum].validated = true; } /* Search for a file named NAME trying various prefixes including the user's -B prefix and some standard ones. Return the absolute file name found. If nothing is found, return NAME. */ static const char * find_file (const char *name) { char *newname = find_a_file (&startfile_prefixes, name, R_OK, true); return newname ? newname : name; } /* Determine whether a directory exists. If LINKER, return 0 for certain fixed names not needed by the linker. */ static int is_directory (const char *path1, bool linker) { int len1; char *path; char *cp; struct stat st; /* Ensure the string ends with "/.". The resulting path will be a directory even if the given path is a symbolic link. */ len1 = strlen (path1); path = (char *) alloca (3 + len1); memcpy (path, path1, len1); cp = path + len1; if (!IS_DIR_SEPARATOR (cp[-1])) *cp++ = DIR_SEPARATOR; *cp++ = '.'; *cp = '\0'; /* Exclude directories that the linker is known to search. */ if (linker && IS_DIR_SEPARATOR (path[0]) && ((cp - path == 6 && filename_ncmp (path + 1, "lib", 3) == 0) || (cp - path == 10 && filename_ncmp (path + 1, "usr", 3) == 0 && IS_DIR_SEPARATOR (path[4]) && filename_ncmp (path + 5, "lib", 3) == 0))) return 0; return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode)); } /* Set up the various global variables to indicate that we're processing the input file named FILENAME. */ void set_input (const char *filename) { const char *p; gcc_input_filename = filename; input_filename_length = strlen (gcc_input_filename); input_basename = lbasename (gcc_input_filename); /* Find a suffix starting with the last period, and set basename_length to exclude that suffix. */ basename_length = strlen (input_basename); suffixed_basename_length = basename_length; p = input_basename + basename_length; while (p != input_basename && *p != '.') --p; if (*p == '.' && p != input_basename) { basename_length = p - input_basename; input_suffix = p + 1; } else input_suffix = ""; /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then we will need to do a stat on the gcc_input_filename. The INPUT_STAT_SET signals that the stat is needed. */ input_stat_set = 0; } /* On fatal signals, delete all the temporary files. */ static void fatal_signal (int signum) { signal (signum, SIG_DFL); delete_failure_queue (); delete_temp_files (); /* Get the same signal again, this time not handled, so its normal effect occurs. */ kill (getpid (), signum); } /* Compare the contents of the two files named CMPFILE[0] and CMPFILE[1]. Return zero if they're identical, nonzero otherwise. */ static int compare_files (char *cmpfile[]) { int ret = 0; FILE *temp[2] = { NULL, NULL }; int i; #if HAVE_MMAP_FILE { size_t length[2]; void *map[2] = { NULL, NULL }; for (i = 0; i < 2; i++) { struct stat st; if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode)) { error ("%s: could not determine length of compare-debug file %s", gcc_input_filename, cmpfile[i]); ret = 1; break; } length[i] = st.st_size; } if (!ret && length[0] != length[1]) { error ("%s: -fcompare-debug failure (length)", gcc_input_filename); ret = 1; } if (!ret) for (i = 0; i < 2; i++) { int fd = open (cmpfile[i], O_RDONLY); if (fd < 0) { error ("%s: could not open compare-debug file %s", gcc_input_filename, cmpfile[i]); ret = 1; break; } map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0); close (fd); if (map[i] == (void *) MAP_FAILED) { ret = -1; break; } } if (!ret) { if (memcmp (map[0], map[1], length[0]) != 0) { error ("%s: -fcompare-debug failure", gcc_input_filename); ret = 1; } } for (i = 0; i < 2; i++) if (map[i]) munmap ((caddr_t) map[i], length[i]); if (ret >= 0) return ret; ret = 0; } #endif for (i = 0; i < 2; i++) { temp[i] = fopen (cmpfile[i], "r"); if (!temp[i]) { error ("%s: could not open compare-debug file %s", gcc_input_filename, cmpfile[i]); ret = 1; break; } } if (!ret && temp[0] && temp[1]) for (;;) { int c0, c1; c0 = fgetc (temp[0]); c1 = fgetc (temp[1]); if (c0 != c1) { error ("%s: -fcompare-debug failure", gcc_input_filename); ret = 1; break; } if (c0 == EOF) break; } for (i = 1; i >= 0; i--) { if (temp[i]) fclose (temp[i]); } return ret; } extern int main (int, char **); int main (int argc, char **argv) { size_t i; int value; int linker_was_run = 0; int lang_n_infiles = 0; int num_linker_inputs = 0; char *explicit_link_files; char *specs_file; char *lto_wrapper_file; const char *p; struct user_specs *uptr; char **old_argv = argv; struct cl_decoded_option *decoded_options; unsigned int decoded_options_count; p = argv[0] + strlen (argv[0]); while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1])) --p; progname = p; xmalloc_set_program_name (progname); expandargv (&argc, &argv); /* Determine if any expansions were made. */ if (argv != old_argv) at_file_supplied = true; /* Register the language-independent parameters. */ global_init_params (); finish_params (); init_options_struct (&global_options, &global_options_set); decode_cmdline_options_to_array (argc, CONST_CAST2 (const char **, char **, argv), CL_DRIVER, &decoded_options, &decoded_options_count); /* Unlock the stdio streams. */ unlock_std_streams (); gcc_init_libintl (); diagnostic_initialize (global_dc, 0); #ifdef GCC_DRIVER_HOST_INITIALIZATION /* Perform host dependent initialization when needed. */ GCC_DRIVER_HOST_INITIALIZATION; #endif if (atexit (delete_temp_files) != 0) fatal_error ("atexit failed"); if (signal (SIGINT, SIG_IGN) != SIG_IGN) signal (SIGINT, fatal_signal); #ifdef SIGHUP if (signal (SIGHUP, SIG_IGN) != SIG_IGN) signal (SIGHUP, fatal_signal); #endif if (signal (SIGTERM, SIG_IGN) != SIG_IGN) signal (SIGTERM, fatal_signal); #ifdef SIGPIPE if (signal (SIGPIPE, SIG_IGN) != SIG_IGN) signal (SIGPIPE, fatal_signal); #endif #ifdef SIGCHLD /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will receive the signal. A different setting is inheritable */ signal (SIGCHLD, SIG_DFL); #endif /* Parsing and gimplification sometimes need quite large stack. Increase stack size limits if possible. */ stack_limit_increase (64 * 1024 * 1024); /* Allocate the argument vector. */ alloc_args (); obstack_init (&obstack); /* Build multilib_select, et. al from the separate lines that make up each multilib selection. */ { const char *const *q = multilib_raw; int need_space; obstack_init (&multilib_obstack); while ((p = *q++) != (char *) 0) obstack_grow (&multilib_obstack, p, strlen (p)); obstack_1grow (&multilib_obstack, 0); multilib_select = XOBFINISH (&multilib_obstack, const char *); q = multilib_matches_raw; while ((p = *q++) != (char *) 0) obstack_grow (&multilib_obstack, p, strlen (p)); obstack_1grow (&multilib_obstack, 0); multilib_matches = XOBFINISH (&multilib_obstack, const char *); q = multilib_exclusions_raw; while ((p = *q++) != (char *) 0) obstack_grow (&multilib_obstack, p, strlen (p)); obstack_1grow (&multilib_obstack, 0); multilib_exclusions = XOBFINISH (&multilib_obstack, const char *); q = multilib_reuse_raw; while ((p = *q++) != (char *) 0) obstack_grow (&multilib_obstack, p, strlen (p)); obstack_1grow (&multilib_obstack, 0); multilib_reuse = XOBFINISH (&multilib_obstack, const char *); need_space = FALSE; for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++) { if (need_space) obstack_1grow (&multilib_obstack, ' '); obstack_grow (&multilib_obstack, multilib_defaults_raw[i], strlen (multilib_defaults_raw[i])); need_space = TRUE; } obstack_1grow (&multilib_obstack, 0); multilib_defaults = XOBFINISH (&multilib_obstack, const char *); } #ifdef INIT_ENVIRONMENT /* Set up any other necessary machine specific environment variables. */ xputenv (INIT_ENVIRONMENT); #endif /* Make a table of what switches there are (switches, n_switches). Make a table of specified input files (infiles, n_infiles). Decode switches that are handled locally. */ process_command (decoded_options_count, decoded_options); /* Initialize the vector of specs to just the default. This means one element containing 0s, as a terminator. */ compilers = XNEWVAR (struct compiler, sizeof default_compilers); memcpy (compilers, default_compilers, sizeof default_compilers); n_compilers = n_default_compilers; /* Read specs from a file if there is one. */ machine_suffix = concat (spec_machine, dir_separator_str, spec_version, dir_separator_str, NULL); just_machine_suffix = concat (spec_machine, dir_separator_str, NULL); specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true); /* Read the specs file unless it is a default one. */ if (specs_file != 0 && strcmp (specs_file, "specs")) read_specs (specs_file, true, false); else init_spec (); /* We need to check standard_exec_prefix/just_machine_suffix/specs for any override of as, ld and libraries. */ specs_file = (char *) alloca (strlen (standard_exec_prefix) + strlen (just_machine_suffix) + sizeof ("specs")); strcpy (specs_file, standard_exec_prefix); strcat (specs_file, just_machine_suffix); strcat (specs_file, "specs"); if (access (specs_file, R_OK) == 0) read_specs (specs_file, true, false); /* Process any configure-time defaults specified for the command line options, via OPTION_DEFAULT_SPECS. */ for (i = 0; i < ARRAY_SIZE (option_default_specs); i++) do_option_spec (option_default_specs[i].name, option_default_specs[i].spec); /* Process DRIVER_SELF_SPECS, adding any new options to the end of the command line. */ for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++) do_self_spec (driver_self_specs[i]); /* If not cross-compiling, look for executables in the standard places. */ if (*cross_compile == '0') { if (*md_exec_prefix) { add_prefix (&exec_prefixes, md_exec_prefix, "GCC", PREFIX_PRIORITY_LAST, 0, 0); } } /* Process sysroot_suffix_spec. */ if (*sysroot_suffix_spec != 0 && !no_sysroot_suffix && do_spec_2 (sysroot_suffix_spec) == 0) { if (argbuf.length () > 1) error ("spec failure: more than one arg to SYSROOT_SUFFIX_SPEC"); else if (argbuf.length () == 1) target_sysroot_suffix = xstrdup (argbuf.last ()); } #ifdef HAVE_LD_SYSROOT /* Pass the --sysroot option to the linker, if it supports that. If there is a sysroot_suffix_spec, it has already been processed by this point, so target_system_root really is the system root we should be using. */ if (target_system_root) { obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) ")); obstack_grow0 (&obstack, link_spec, strlen (link_spec)); set_spec ("link", XOBFINISH (&obstack, const char *), false); } #endif /* Process sysroot_hdrs_suffix_spec. */ if (*sysroot_hdrs_suffix_spec != 0 && !no_sysroot_suffix && do_spec_2 (sysroot_hdrs_suffix_spec) == 0) { if (argbuf.length () > 1) error ("spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC"); else if (argbuf.length () == 1) target_sysroot_hdrs_suffix = xstrdup (argbuf.last ()); } /* Look for startfiles in the standard places. */ if (*startfile_prefix_spec != 0 && do_spec_2 (startfile_prefix_spec) == 0 && do_spec_1 (" ", 0, NULL) == 0) { const char *arg; int ndx; FOR_EACH_VEC_ELT (argbuf, ndx, arg) add_sysrooted_prefix (&startfile_prefixes, arg, "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1); } /* We should eventually get rid of all these and stick to startfile_prefix_spec exclusively. */ else if (*cross_compile == '0' || target_system_root) { if (*md_startfile_prefix) add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix, "GCC", PREFIX_PRIORITY_LAST, 0, 1); if (*md_startfile_prefix_1) add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1, "GCC", PREFIX_PRIORITY_LAST, 0, 1); /* If standard_startfile_prefix is relative, base it on standard_exec_prefix. This lets us move the installed tree as a unit. If GCC_EXEC_PREFIX is defined, base standard_startfile_prefix on that as well. If the prefix is relative, only search it for native compilers; otherwise we will search a directory containing host libraries. */ if (IS_ABSOLUTE_PATH (standard_startfile_prefix)) add_sysrooted_prefix (&startfile_prefixes, standard_startfile_prefix, "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1); else if (*cross_compile == '0') { add_prefix (&startfile_prefixes, concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix, machine_suffix, standard_startfile_prefix, NULL), NULL, PREFIX_PRIORITY_LAST, 0, 1); } /* Sysrooted prefixes are relocated because target_system_root is also relocated by gcc_exec_prefix. */ if (*standard_startfile_prefix_1) add_sysrooted_prefix (&startfile_prefixes, standard_startfile_prefix_1, "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1); if (*standard_startfile_prefix_2) add_sysrooted_prefix (&startfile_prefixes, standard_startfile_prefix_2, "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1); } /* Process any user specified specs in the order given on the command line. */ for (uptr = user_specs_head; uptr; uptr = uptr->next) { char *filename = find_a_file (&startfile_prefixes, uptr->filename, R_OK, true); read_specs (filename ? filename : uptr->filename, false, true); } /* Process any user self specs. */ { struct spec_list *sl; for (sl = specs; sl; sl = sl->next) if (sl->name_len == sizeof "self_spec" - 1 && !strcmp (sl->name, "self_spec")) do_self_spec (*sl->ptr_spec); } if (compare_debug) { enum save_temps save; if (!compare_debug_second) { n_switches_debug_check[1] = n_switches; n_switches_alloc_debug_check[1] = n_switches_alloc; switches_debug_check[1] = XDUPVEC (struct switchstr, switches, n_switches_alloc); do_self_spec ("%:compare-debug-self-opt()"); n_switches_debug_check[0] = n_switches; n_switches_alloc_debug_check[0] = n_switches_alloc; switches_debug_check[0] = switches; n_switches = n_switches_debug_check[1]; n_switches_alloc = n_switches_alloc_debug_check[1]; switches = switches_debug_check[1]; } /* Avoid crash when computing %j in this early. */ save = save_temps_flag; save_temps_flag = SAVE_TEMPS_NONE; compare_debug = -compare_debug; do_self_spec ("%:compare-debug-self-opt()"); save_temps_flag = save; if (!compare_debug_second) { n_switches_debug_check[1] = n_switches; n_switches_alloc_debug_check[1] = n_switches_alloc; switches_debug_check[1] = switches; compare_debug = -compare_debug; n_switches = n_switches_debug_check[0]; n_switches_alloc = n_switches_debug_check[0]; switches = switches_debug_check[0]; } } /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */ if (gcc_exec_prefix) gcc_exec_prefix = concat (gcc_exec_prefix, spec_machine, dir_separator_str, spec_version, dir_separator_str, NULL); /* Now we have the specs. Set the `valid' bits for switches that match anything in any spec. */ validate_all_switches (); /* Now that we have the switches and the specs, set the subdirectory based on the options. */ set_multilib_dir (); /* Set up to remember the pathname of gcc and any options needed for collect. We use argv[0] instead of progname because we need the complete pathname. */ obstack_init (&collect_obstack); obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1); obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1); xputenv (XOBFINISH (&collect_obstack, char *)); /* Set up to remember the pathname of the lto wrapper. */ if (have_c) lto_wrapper_file = NULL; else lto_wrapper_file = find_a_file (&exec_prefixes, "lto-wrapper", X_OK, false); if (lto_wrapper_file) { lto_wrapper_file = convert_white_space (lto_wrapper_file); lto_wrapper_spec = lto_wrapper_file; obstack_init (&collect_obstack); obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=", sizeof ("COLLECT_LTO_WRAPPER=") - 1); obstack_grow (&collect_obstack, lto_wrapper_spec, strlen (lto_wrapper_spec) + 1); xputenv (XOBFINISH (&collect_obstack, char *)); } /* Reject switches that no pass was interested in. */ for (i = 0; (int) i < n_switches; i++) if (! switches[i].validated) error ("unrecognized command line option %<-%s%>", switches[i].part1); /* Obey some of the options. */ if (print_search_dirs) { printf (_("install: %s%s\n"), gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix, gcc_exec_prefix ? "" : machine_suffix); printf (_("programs: %s\n"), build_search_list (&exec_prefixes, "", false, false)); printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes, "", false, true)); return (0); } if (print_file_name) { printf ("%s\n", find_file (print_file_name)); return (0); } if (print_prog_name) { char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK, 0); printf ("%s\n", (newname ? newname : print_prog_name)); return (0); } if (print_multi_lib) { print_multilib_info (); return (0); } if (print_multi_directory) { if (multilib_dir == NULL) printf (".\n"); else printf ("%s\n", multilib_dir); return (0); } if (print_multiarch) { if (multiarch_dir == NULL) printf ("\n"); else printf ("%s\n", multiarch_dir); return (0); } if (print_sysroot) { if (target_system_root) { if (target_sysroot_suffix) printf ("%s%s\n", target_system_root, target_sysroot_suffix); else printf ("%s\n", target_system_root); } return (0); } if (print_multi_os_directory) { if (multilib_os_dir == NULL) printf (".\n"); else printf ("%s\n", multilib_os_dir); return (0); } if (print_sysroot_headers_suffix) { if (*sysroot_hdrs_suffix_spec) { printf("%s\n", (target_sysroot_hdrs_suffix ? target_sysroot_hdrs_suffix : "")); return (0); } else /* The error status indicates that only one set of fixed headers should be built. */ fatal_error ("not configured with sysroot headers suffix"); } if (print_help_list) { display_help (); if (! verbose_flag) { printf (_("\nFor bug reporting instructions, please see:\n")); printf ("%s.\n", bug_report_url); return (0); } /* We do not exit here. Instead we have created a fake input file called 'help-dummy' which needs to be compiled, and we pass this on the various sub-processes, along with the --help switch. Ensure their output appears after ours. */ fputc ('\n', stdout); fflush (stdout); } if (print_version) { printf (_("%s %s%s\n"), progname, pkgversion_string, version_string); printf ("Copyright %s 2013 Free Software Foundation, Inc.\n", _("(C)")); fputs (_("This is free software; see the source for copying conditions. There is NO\n\ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"), stdout); if (! verbose_flag) return 0; /* We do not exit here. We use the same mechanism of --help to print the version of the sub-processes. */ fputc ('\n', stdout); fflush (stdout); } if (verbose_flag) { int n; const char *thrmod; fnotice (stderr, "Target: %s\n", spec_machine); fnotice (stderr, "Configured with: %s\n", configuration_arguments); #ifdef THREAD_MODEL_SPEC /* We could have defined THREAD_MODEL_SPEC to "%*" by default, but there's no point in doing all this processing just to get thread_model back. */ obstack_init (&obstack); do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model); obstack_1grow (&obstack, '\0'); thrmod = XOBFINISH (&obstack, const char *); #else thrmod = thread_model; #endif fnotice (stderr, "Thread model: %s\n", thrmod); /* compiler_version is truncated at the first space when initialized from version string, so truncate version_string at the first space before comparing. */ for (n = 0; version_string[n]; n++) if (version_string[n] == ' ') break; if (! strncmp (version_string, compiler_version, n) && compiler_version[n] == 0) fnotice (stderr, "gcc version %s %s\n", version_string, pkgversion_string); else fnotice (stderr, "gcc driver version %s %sexecuting gcc version %s\n", version_string, pkgversion_string, compiler_version); if (n_infiles == 0) return (0); } if (n_infiles == added_libraries) fatal_error ("no input files"); if (seen_error ()) goto out; /* Make a place to record the compiler output file names that correspond to the input files. */ i = n_infiles; i += lang_specific_extra_outfiles; outfiles = XCNEWVEC (const char *, i); /* Record which files were specified explicitly as link input. */ explicit_link_files = XCNEWVEC (char, n_infiles); combine_inputs = have_o || flag_wpa; for (i = 0; (int) i < n_infiles; i++) { const char *name = infiles[i].name; struct compiler *compiler = lookup_compiler (name, strlen (name), infiles[i].language); if (compiler && !(compiler->combinable)) combine_inputs = false; if (lang_n_infiles > 0 && compiler != input_file_compiler && infiles[i].language && infiles[i].language[0] != '*') infiles[i].incompiler = compiler; else if (compiler) { lang_n_infiles++; input_file_compiler = compiler; infiles[i].incompiler = compiler; } else { /* Since there is no compiler for this input file, assume it is a linker file. */ explicit_link_files[i] = 1; infiles[i].incompiler = NULL; } infiles[i].compiled = false; infiles[i].preprocessed = false; } if (!combine_inputs && have_c && have_o && lang_n_infiles > 1) fatal_error ("cannot specify -o with -c, -S or -E with multiple files"); for (i = 0; (int) i < n_infiles; i++) { int this_file_error = 0; /* Tell do_spec what to substitute for %i. */ input_file_number = i; set_input (infiles[i].name); if (infiles[i].compiled) continue; /* Use the same thing in %o, unless cp->spec says otherwise. */ outfiles[i] = gcc_input_filename; /* Figure out which compiler from the file's suffix. */ input_file_compiler = lookup_compiler (infiles[i].name, input_filename_length, infiles[i].language); if (input_file_compiler) { /* Ok, we found an applicable compiler. Run its spec. */ if (input_file_compiler->spec[0] == '#') { error ("%s: %s compiler not installed on this system", gcc_input_filename, &input_file_compiler->spec[1]); this_file_error = 1; } else { if (compare_debug) { free (debug_check_temp_file[0]); debug_check_temp_file[0] = NULL; free (debug_check_temp_file[1]); debug_check_temp_file[1] = NULL; } value = do_spec (input_file_compiler->spec); infiles[i].compiled = true; if (value < 0) this_file_error = 1; else if (compare_debug && debug_check_temp_file[0]) { if (verbose_flag) inform (0, "recompiling with -fcompare-debug"); compare_debug = -compare_debug; n_switches = n_switches_debug_check[1]; n_switches_alloc = n_switches_alloc_debug_check[1]; switches = switches_debug_check[1]; value = do_spec (input_file_compiler->spec); compare_debug = -compare_debug; n_switches = n_switches_debug_check[0]; n_switches_alloc = n_switches_alloc_debug_check[0]; switches = switches_debug_check[0]; if (value < 0) { error ("during -fcompare-debug recompilation"); this_file_error = 1; } gcc_assert (debug_check_temp_file[1] && filename_cmp (debug_check_temp_file[0], debug_check_temp_file[1])); if (verbose_flag) inform (0, "comparing final insns dumps"); if (compare_files (debug_check_temp_file)) this_file_error = 1; } if (compare_debug) { free (debug_check_temp_file[0]); debug_check_temp_file[0] = NULL; free (debug_check_temp_file[1]); debug_check_temp_file[1] = NULL; } } } /* If this file's name does not contain a recognized suffix, record it as explicit linker input. */ else explicit_link_files[i] = 1; /* Clear the delete-on-failure queue, deleting the files in it if this compilation failed. */ if (this_file_error) { delete_failure_queue (); errorcount++; } /* If this compilation succeeded, don't delete those files later. */ clear_failure_queue (); } /* Reset the input file name to the first compile/object file name, for use with %b in LINK_SPEC. We use the first input file that we can find a compiler to compile it instead of using infiles.language since for languages other than C we use aliases that we then lookup later. */ if (n_infiles > 0) { int i; for (i = 0; i < n_infiles ; i++) if (infiles[i].incompiler || (infiles[i].language && infiles[i].language[0] != '*')) { set_input (infiles[i].name); break; } } if (!seen_error ()) { /* Make sure INPUT_FILE_NUMBER points to first available open slot. */ input_file_number = n_infiles; if (lang_specific_pre_link ()) errorcount++; } /* Determine if there are any linker input files. */ num_linker_inputs = 0; for (i = 0; (int) i < n_infiles; i++) if (explicit_link_files[i] || outfiles[i] != NULL) num_linker_inputs++; /* Run ld to link all the compiler output files. */ if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2) { int tmp = execution_count; if (! have_c) { #if HAVE_LTO_PLUGIN > 0 #if HAVE_LTO_PLUGIN == 2 const char *fno_use_linker_plugin = "fno-use-linker-plugin"; #else const char *fuse_linker_plugin = "fuse-linker-plugin"; #endif #endif /* We'll use ld if we can't find collect2. */ if (! strcmp (linker_name_spec, "collect2")) { char *s = find_a_file (&exec_prefixes, "collect2", X_OK, false); if (s == NULL) linker_name_spec = "ld"; } #if HAVE_LTO_PLUGIN > 0 #if HAVE_LTO_PLUGIN == 2 if (!switch_matches (fno_use_linker_plugin, fno_use_linker_plugin + strlen (fno_use_linker_plugin), 0)) #else if (switch_matches (fuse_linker_plugin, fuse_linker_plugin + strlen (fuse_linker_plugin), 0)) #endif { char *temp_spec = find_a_file (&exec_prefixes, LTOPLUGINSONAME, R_OK, false); if (!temp_spec) fatal_error ("-fuse-linker-plugin, but %s not found", LTOPLUGINSONAME); linker_plugin_file_spec = convert_white_space (temp_spec); } #endif lto_gcc_spec = argv[0]; } /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables for collect. */ putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false); putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true); if (print_subprocess_help == 1) { printf (_("\nLinker options\n==============\n\n")); printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\"" " to the linker.\n\n")); fflush (stdout); } value = do_spec (link_command_spec); if (value < 0) errorcount = 1; linker_was_run = (tmp != execution_count); } /* If options said don't run linker, complain about input files to be given to the linker. */ if (! linker_was_run && !seen_error ()) for (i = 0; (int) i < n_infiles; i++) if (explicit_link_files[i] && !(infiles[i].language && infiles[i].language[0] == '*')) warning (0, "%s: linker input file unused because linking not done", outfiles[i]); /* Delete some or all of the temporary files we made. */ if (seen_error ()) delete_failure_queue (); delete_temp_files (); if (print_help_list) { printf (("\nFor bug reporting instructions, please see:\n")); printf ("%s\n", bug_report_url); } out: return (signal_count != 0 ? 2 : seen_error () ? (pass_exit_codes ? greatest_status : 1) : 0); } /* Find the proper compilation spec for the file name NAME, whose length is LENGTH. LANGUAGE is the specified language, or 0 if this file is to be passed to the linker. */ static struct compiler * lookup_compiler (const char *name, size_t length, const char *language) { struct compiler *cp; /* If this was specified by the user to be a linker input, indicate that. */ if (language != 0 && language[0] == '*') return 0; /* Otherwise, look for the language, if one is spec'd. */ if (language != 0) { for (cp = compilers + n_compilers - 1; cp >= compilers; cp--) if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language)) return cp; error ("language %s not recognized", language); return 0; } /* Look for a suffix. */ for (cp = compilers + n_compilers - 1; cp >= compilers; cp--) { if (/* The suffix `-' matches only the file name `-'. */ (!strcmp (cp->suffix, "-") && !strcmp (name, "-")) || (strlen (cp->suffix) < length /* See if the suffix matches the end of NAME. */ && !strcmp (cp->suffix, name + length - strlen (cp->suffix)) )) break; } #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Look again, but case-insensitively this time. */ if (cp < compilers) for (cp = compilers + n_compilers - 1; cp >= compilers; cp--) { if (/* The suffix `-' matches only the file name `-'. */ (!strcmp (cp->suffix, "-") && !strcmp (name, "-")) || (strlen (cp->suffix) < length /* See if the suffix matches the end of NAME. */ && ((!strcmp (cp->suffix, name + length - strlen (cp->suffix)) || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ")) && !strcasecmp (cp->suffix, name + length - strlen (cp->suffix))) )) break; } #endif if (cp >= compilers) { if (cp->spec[0] != '@') /* A non-alias entry: return it. */ return cp; /* An alias entry maps a suffix to a language. Search for the language; pass 0 for NAME and LENGTH to avoid infinite recursion if language not found. */ return lookup_compiler (NULL, 0, cp->spec + 1); } return 0; } static char * save_string (const char *s, int len) { char *result = XNEWVEC (char, len + 1); memcpy (result, s, len); result[len] = 0; return result; } void pfatal_with_name (const char *name) { perror_with_name (name); delete_temp_files (); exit (1); } static void perror_with_name (const char *name) { error ("%s: %m", name); } static inline void validate_switches_from_spec (const char *spec, bool user) { const char *p = spec; char c; while ((c = *p++)) if (c == '%' && (*p == '{' || *p == '<' || (*p == 'W' && *++p == '{'))) /* We have a switch spec. */ p = validate_switches (p + 1, user); } static void validate_all_switches (void) { struct compiler *comp; struct spec_list *spec; for (comp = compilers; comp->spec; comp++) validate_switches_from_spec (comp->spec, false); /* Look through the linked list of specs read from the specs file. */ for (spec = specs; spec; spec = spec->next) validate_switches_from_spec (*spec->ptr_spec, spec->user_p); validate_switches_from_spec (link_command_spec, false); } /* Look at the switch-name that comes after START and mark as valid all supplied switches that match it. */ static const char * validate_switches (const char *start, bool user_spec) { const char *p = start; const char *atom; size_t len; int i; bool suffix = false; bool starred = false; #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0) next_member: SKIP_WHITE (); if (*p == '!') p++; SKIP_WHITE (); if (*p == '.' || *p == ',') suffix = true, p++; atom = p; while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '=' || *p == ',' || *p == '.' || *p == '@') p++; len = p - atom; if (*p == '*') starred = true, p++; SKIP_WHITE (); if (!suffix) { /* Mark all matching switches as valid. */ for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, atom, len) && (starred || switches[i].part1[len] == '\0') && (switches[i].known || user_spec)) switches[i].validated = true; } if (*p) p++; if (*p && (p[-1] == '|' || p[-1] == '&')) goto next_member; if (*p && p[-1] == ':') { while (*p && *p != ';' && *p != '}') { if (*p == '%') { p++; if (*p == '{' || *p == '<') p = validate_switches (p+1, user_spec); else if (p[0] == 'W' && p[1] == '{') p = validate_switches (p+2, user_spec); } else p++; } if (*p) p++; if (*p && p[-1] == ';') goto next_member; } return p; #undef SKIP_WHITE } struct mdswitchstr { const char *str; int len; }; static struct mdswitchstr *mdswitches; static int n_mdswitches; /* Check whether a particular argument was used. The first time we canonicalize the switches to keep only the ones we care about. */ static int used_arg (const char *p, int len) { struct mswitchstr { const char *str; const char *replace; int len; int rep_len; }; static struct mswitchstr *mswitches; static int n_mswitches; int i, j; if (!mswitches) { struct mswitchstr *matches; const char *q; int cnt = 0; /* Break multilib_matches into the component strings of string and replacement string. */ for (q = multilib_matches; *q != '\0'; q++) if (*q == ';') cnt++; matches = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt); i = 0; q = multilib_matches; while (*q != '\0') { matches[i].str = q; while (*q != ' ') { if (*q == '\0') { invalid_matches: fatal_error ("multilib spec %qs is invalid", multilib_matches); } q++; } matches[i].len = q - matches[i].str; matches[i].replace = ++q; while (*q != ';' && *q != '\0') { if (*q == ' ') goto invalid_matches; q++; } matches[i].rep_len = q - matches[i].replace; i++; if (*q == ';') q++; } /* Now build a list of the replacement string for switches that we care about. Make sure we allocate at least one entry. This prevents xmalloc from calling fatal, and prevents us from re-executing this block of code. */ mswitches = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1)); for (i = 0; i < n_switches; i++) if ((switches[i].live_cond & SWITCH_IGNORE) == 0) { int xlen = strlen (switches[i].part1); for (j = 0; j < cnt; j++) if (xlen == matches[j].len && ! strncmp (switches[i].part1, matches[j].str, xlen)) { mswitches[n_mswitches].str = matches[j].replace; mswitches[n_mswitches].len = matches[j].rep_len; mswitches[n_mswitches].replace = (char *) 0; mswitches[n_mswitches].rep_len = 0; n_mswitches++; break; } } /* Add MULTILIB_DEFAULTS switches too, as long as they were not present on the command line nor any options mutually incompatible with them. */ for (i = 0; i < n_mdswitches; i++) { const char *r; for (q = multilib_options; *q != '\0'; q++) { while (*q == ' ') q++; r = q; while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0 || strchr (" /", q[mdswitches[i].len]) == NULL) { while (*q != ' ' && *q != '/' && *q != '\0') q++; if (*q != '/') break; q++; } if (*q != ' ' && *q != '\0') { while (*r != ' ' && *r != '\0') { q = r; while (*q != ' ' && *q != '/' && *q != '\0') q++; if (used_arg (r, q - r)) break; if (*q != '/') { mswitches[n_mswitches].str = mdswitches[i].str; mswitches[n_mswitches].len = mdswitches[i].len; mswitches[n_mswitches].replace = (char *) 0; mswitches[n_mswitches].rep_len = 0; n_mswitches++; break; } r = q + 1; } break; } } } } for (i = 0; i < n_mswitches; i++) if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len)) return 1; return 0; } static int default_arg (const char *p, int len) { int i; for (i = 0; i < n_mdswitches; i++) if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len)) return 1; return 0; } /* Work out the subdirectory to use based on the options. The format of multilib_select is a list of elements. Each element is a subdirectory name followed by a list of options followed by a semicolon. The format of multilib_exclusions is the same, but without the preceding directory. First gcc will check the exclusions, if none of the options beginning with an exclamation point are present, and all of the other options are present, then we will ignore this completely. Passing that, gcc will consider each multilib_select in turn using the same rules for matching the options. If a match is found, that subdirectory will be used. A subdirectory name is optionally followed by a colon and the corresponding multiarch name. */ static void set_multilib_dir (void) { const char *p; unsigned int this_path_len; const char *this_path, *this_arg; const char *start, *end; int not_arg; int ok, ndfltok, first; n_mdswitches = 0; start = multilib_defaults; while (*start == ' ' || *start == '\t') start++; while (*start != '\0') { n_mdswitches++; while (*start != ' ' && *start != '\t' && *start != '\0') start++; while (*start == ' ' || *start == '\t') start++; } if (n_mdswitches) { int i = 0; mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches); for (start = multilib_defaults; *start != '\0'; start = end + 1) { while (*start == ' ' || *start == '\t') start++; if (*start == '\0') break; for (end = start + 1; *end != ' ' && *end != '\t' && *end != '\0'; end++) ; obstack_grow (&multilib_obstack, start, end - start); obstack_1grow (&multilib_obstack, 0); mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *); mdswitches[i++].len = end - start; if (*end == '\0') break; } } p = multilib_exclusions; while (*p != '\0') { /* Ignore newlines. */ if (*p == '\n') { ++p; continue; } /* Check the arguments. */ ok = 1; while (*p != ';') { if (*p == '\0') { invalid_exclusions: fatal_error ("multilib exclusions %qs is invalid", multilib_exclusions); } if (! ok) { ++p; continue; } this_arg = p; while (*p != ' ' && *p != ';') { if (*p == '\0') goto invalid_exclusions; ++p; } if (*this_arg != '!') not_arg = 0; else { not_arg = 1; ++this_arg; } ok = used_arg (this_arg, p - this_arg); if (not_arg) ok = ! ok; if (*p == ' ') ++p; } if (ok) return; ++p; } first = 1; p = multilib_select; /* Append multilib reuse rules if any. With those rules, we can reuse one multilib for certain different options sets. */ if (strlen (multilib_reuse) > 0) p = concat (p, multilib_reuse, NULL); while (*p != '\0') { /* Ignore newlines. */ if (*p == '\n') { ++p; continue; } /* Get the initial path. */ this_path = p; while (*p != ' ') { if (*p == '\0') { invalid_select: fatal_error ("multilib select %qs %qs is invalid", multilib_select, multilib_reuse); } ++p; } this_path_len = p - this_path; /* Check the arguments. */ ok = 1; ndfltok = 1; ++p; while (*p != ';') { if (*p == '\0') goto invalid_select; if (! ok) { ++p; continue; } this_arg = p; while (*p != ' ' && *p != ';') { if (*p == '\0') goto invalid_select; ++p; } if (*this_arg != '!') not_arg = 0; else { not_arg = 1; ++this_arg; } /* If this is a default argument, we can just ignore it. This is true even if this_arg begins with '!'. Beginning with '!' does not mean that this argument is necessarily inappropriate for this library: it merely means that there is a more specific library which uses this argument. If this argument is a default, we need not consider that more specific library. */ ok = used_arg (this_arg, p - this_arg); if (not_arg) ok = ! ok; if (! ok) ndfltok = 0; if (default_arg (this_arg, p - this_arg)) ok = 1; if (*p == ' ') ++p; } if (ok && first) { if (this_path_len != 1 || this_path[0] != '.') { char *new_multilib_dir = XNEWVEC (char, this_path_len + 1); char *q; strncpy (new_multilib_dir, this_path, this_path_len); new_multilib_dir[this_path_len] = '\0'; q = strchr (new_multilib_dir, ':'); if (q != NULL) *q = '\0'; multilib_dir = new_multilib_dir; } first = 0; } if (ndfltok) { const char *q = this_path, *end = this_path + this_path_len; while (q < end && *q != ':') q++; if (q < end) { const char *q2 = q + 1, *ml_end = end; char *new_multilib_os_dir; while (q2 < end && *q2 != ':') q2++; if (*q2 == ':') ml_end = q2; new_multilib_os_dir = XNEWVEC (char, ml_end - q); memcpy (new_multilib_os_dir, q + 1, ml_end - q - 1); new_multilib_os_dir[ml_end - q - 1] = '\0'; multilib_os_dir = *new_multilib_os_dir ? new_multilib_os_dir : "."; if (q2 < end && *q2 == ':') { char *new_multiarch_dir = XNEWVEC (char, end - q2); memcpy (new_multiarch_dir, q2 + 1, end - q2 - 1); new_multiarch_dir[end - q2 - 1] = '\0'; multiarch_dir = new_multiarch_dir; } break; } } ++p; } if (multilib_dir == NULL && multilib_os_dir != NULL && strcmp (multilib_os_dir, ".") == 0) { free (CONST_CAST (char *, multilib_os_dir)); multilib_os_dir = NULL; } else if (multilib_dir != NULL && multilib_os_dir == NULL) multilib_os_dir = multilib_dir; } /* Print out the multiple library subdirectory selection information. This prints out a series of lines. Each line looks like SUBDIRECTORY;@OPTION@OPTION, with as many options as is required. Only the desired options are printed out, the negative matches. The options are print without a leading dash. There are no spaces to make it easy to use the information in the shell. Each subdirectory is printed only once. This assumes the ordering generated by the genmultilib script. Also, we leave out ones that match the exclusions. */ static void print_multilib_info (void) { const char *p = multilib_select; const char *last_path = 0, *this_path; int skip; unsigned int last_path_len = 0; while (*p != '\0') { skip = 0; /* Ignore newlines. */ if (*p == '\n') { ++p; continue; } /* Get the initial path. */ this_path = p; while (*p != ' ') { if (*p == '\0') { invalid_select: fatal_error ("multilib select %qs is invalid", multilib_select); } ++p; } /* When --disable-multilib was used but target defines MULTILIB_OSDIRNAMES, entries starting with .: (and not starting with .:: for multiarch configurations) are there just to find multilib_os_dir, so skip them from output. */ if (this_path[0] == '.' && this_path[1] == ':' && this_path[2] != ':') skip = 1; /* Check for matches with the multilib_exclusions. We don't bother with the '!' in either list. If any of the exclusion rules match all of its options with the select rule, we skip it. */ { const char *e = multilib_exclusions; const char *this_arg; while (*e != '\0') { int m = 1; /* Ignore newlines. */ if (*e == '\n') { ++e; continue; } /* Check the arguments. */ while (*e != ';') { const char *q; int mp = 0; if (*e == '\0') { invalid_exclusion: fatal_error ("multilib exclusion %qs is invalid", multilib_exclusions); } if (! m) { ++e; continue; } this_arg = e; while (*e != ' ' && *e != ';') { if (*e == '\0') goto invalid_exclusion; ++e; } q = p + 1; while (*q != ';') { const char *arg; int len = e - this_arg; if (*q == '\0') goto invalid_select; arg = q; while (*q != ' ' && *q != ';') { if (*q == '\0') goto invalid_select; ++q; } if (! strncmp (arg, this_arg, (len < q - arg) ? q - arg : len) || default_arg (this_arg, e - this_arg)) { mp = 1; break; } if (*q == ' ') ++q; } if (! mp) m = 0; if (*e == ' ') ++e; } if (m) { skip = 1; break; } if (*e != '\0') ++e; } } if (! skip) { /* If this is a duplicate, skip it. */ skip = (last_path != 0 && (unsigned int) (p - this_path) == last_path_len && ! filename_ncmp (last_path, this_path, last_path_len)); last_path = this_path; last_path_len = p - this_path; } /* If this directory requires any default arguments, we can skip it. We will already have printed a directory identical to this one which does not require that default argument. */ if (! skip) { const char *q; q = p + 1; while (*q != ';') { const char *arg; if (*q == '\0') goto invalid_select; if (*q == '!') arg = NULL; else arg = q; while (*q != ' ' && *q != ';') { if (*q == '\0') goto invalid_select; ++q; } if (arg != NULL && default_arg (arg, q - arg)) { skip = 1; break; } if (*q == ' ') ++q; } } if (! skip) { const char *p1; for (p1 = last_path; p1 < p && *p1 != ':'; p1++) putchar (*p1); putchar (';'); } ++p; while (*p != ';') { int use_arg; if (*p == '\0') goto invalid_select; if (skip) { ++p; continue; } use_arg = *p != '!'; if (use_arg) putchar ('@'); while (*p != ' ' && *p != ';') { if (*p == '\0') goto invalid_select; if (use_arg) putchar (*p); ++p; } if (*p == ' ') ++p; } if (! skip) { /* If there are extra options, print them now. */ if (multilib_extra && *multilib_extra) { int print_at = TRUE; const char *q; for (q = multilib_extra; *q != '\0'; q++) { if (*q == ' ') print_at = TRUE; else { if (print_at) putchar ('@'); putchar (*q); print_at = FALSE; } } } putchar ('\n'); } ++p; } } /* getenv built-in spec function. Returns the value of the environment variable given by its first argument, concatenated with the second argument. If the environment variable is not defined, a fatal error is issued. */ static const char * getenv_spec_function (int argc, const char **argv) { char *value; char *result; char *ptr; size_t len; if (argc != 2) return NULL; value = getenv (argv[0]); if (!value) fatal_error ("environment variable %qs not defined", argv[0]); /* We have to escape every character of the environment variable so they are not interpreted as active spec characters. A particularly painful case is when we are reading a variable holding a windows path complete with \ separators. */ len = strlen (value) * 2 + strlen (argv[1]) + 1; result = XNEWVAR (char, len); for (ptr = result; *value; ptr += 2) { ptr[0] = '\\'; ptr[1] = *value++; } strcpy (ptr, argv[1]); return result; } /* if-exists built-in spec function. Checks to see if the file specified by the absolute pathname in ARGS exists. Returns that pathname if found. The usual use for this function is to check for a library file (whose name has been expanded with %s). */ static const char * if_exists_spec_function (int argc, const char **argv) { /* Must have only one argument. */ if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK)) return argv[0]; return NULL; } /* if-exists-else built-in spec function. This is like if-exists, but takes an additional argument which is returned if the first argument does not exist. */ static const char * if_exists_else_spec_function (int argc, const char **argv) { /* Must have exactly two arguments. */ if (argc != 2) return NULL; if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK)) return argv[0]; return argv[1]; } /* replace-outfile built-in spec function. This looks for the first argument in the outfiles array's name and replaces it with the second argument. */ static const char * replace_outfile_spec_function (int argc, const char **argv) { int i; /* Must have exactly two arguments. */ if (argc != 2) abort (); for (i = 0; i < n_infiles; i++) { if (outfiles[i] && !filename_cmp (outfiles[i], argv[0])) outfiles[i] = xstrdup (argv[1]); } return NULL; } /* remove-outfile built-in spec function. * * This looks for the first argument in the outfiles array's name and * removes it. */ static const char * remove_outfile_spec_function (int argc, const char **argv) { int i; /* Must have exactly one argument. */ if (argc != 1) abort (); for (i = 0; i < n_infiles; i++) { if (outfiles[i] && !filename_cmp (outfiles[i], argv[0])) outfiles[i] = NULL; } return NULL; } /* Given two version numbers, compares the two numbers. A version number must match the regular expression ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))* */ static int compare_version_strings (const char *v1, const char *v2) { int rresult; regex_t r; if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$", REG_EXTENDED | REG_NOSUB) != 0) abort (); rresult = regexec (&r, v1, 0, NULL, 0); if (rresult == REG_NOMATCH) fatal_error ("invalid version number %qs", v1); else if (rresult != 0) abort (); rresult = regexec (&r, v2, 0, NULL, 0); if (rresult == REG_NOMATCH) fatal_error ("invalid version number %qs", v2); else if (rresult != 0) abort (); return strverscmp (v1, v2); } /* version_compare built-in spec function. This takes an argument of the following form: <comparison-op> <arg1> [<arg2>] <switch> <result> and produces "result" if the comparison evaluates to true, and nothing if it doesn't. The supported <comparison-op> values are: >= true if switch is a later (or same) version than arg1 !> opposite of >= < true if switch is an earlier version than arg1 !< opposite of < >< true if switch is arg1 or later, and earlier than arg2 <> true if switch is earlier than arg1 or is arg2 or later If the switch is not present, the condition is false unless the first character of the <comparison-op> is '!'. For example, %:version-compare(>= 10.3 mmacosx-version-min= -lmx) adds -lmx if -mmacosx-version-min=10.3.9 was passed. */ static const char * version_compare_spec_function (int argc, const char **argv) { int comp1, comp2; size_t switch_len; const char *switch_value = NULL; int nargs = 1, i; bool result; if (argc < 3) fatal_error ("too few arguments to %%:version-compare"); if (argv[0][0] == '\0') abort (); if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!') nargs = 2; if (argc != nargs + 3) fatal_error ("too many arguments to %%:version-compare"); switch_len = strlen (argv[nargs + 1]); for (i = 0; i < n_switches; i++) if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len) && check_live_switch (i, switch_len)) switch_value = switches[i].part1 + switch_len; if (switch_value == NULL) comp1 = comp2 = -1; else { comp1 = compare_version_strings (switch_value, argv[1]); if (nargs == 2) comp2 = compare_version_strings (switch_value, argv[2]); else comp2 = -1; /* This value unused. */ } switch (argv[0][0] << 8 | argv[0][1]) { case '>' << 8 | '=': result = comp1 >= 0; break; case '!' << 8 | '<': result = comp1 >= 0 || switch_value == NULL; break; case '<' << 8: result = comp1 < 0; break; case '!' << 8 | '>': result = comp1 < 0 || switch_value == NULL; break; case '>' << 8 | '<': result = comp1 >= 0 && comp2 < 0; break; case '<' << 8 | '>': result = comp1 < 0 || comp2 >= 0; break; default: fatal_error ("unknown operator %qs in %%:version-compare", argv[0]); } if (! result) return NULL; return argv[nargs + 2]; } /* %:include builtin spec function. This differs from %include in that it can be nested inside a spec, and thus be conditionalized. It takes one argument, the filename, and looks for it in the startfile path. The result is always NULL, i.e. an empty expansion. */ static const char * include_spec_function (int argc, const char **argv) { char *file; if (argc != 1) abort (); file = find_a_file (&startfile_prefixes, argv[0], R_OK, true); read_specs (file ? file : argv[0], false, false); return NULL; } /* %:find-file spec function. This function replaces its argument by the file found through find_file, that is the -print-file-name gcc program option. */ static const char * find_file_spec_function (int argc, const char **argv) { const char *file; if (argc != 1) abort (); file = find_file (argv[0]); return file; } /* %:find-plugindir spec function. This function replaces its argument by the -iplugindir=<dir> option. `dir' is found through find_file, that is the -print-file-name gcc program option. */ static const char * find_plugindir_spec_function (int argc, const char **argv ATTRIBUTE_UNUSED) { const char *option; if (argc != 0) abort (); option = concat ("-iplugindir=", find_file ("plugin"), NULL); return option; } /* %:print-asm-header spec function. Print a banner to say that the following output is from the assembler. */ static const char * print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED, const char **argv ATTRIBUTE_UNUSED) { printf (_("Assembler options\n=================\n\n")); printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n")); fflush (stdout); return NULL; } /* Get a random number for -frandom-seed */ static unsigned HOST_WIDE_INT get_random_number (void) { unsigned HOST_WIDE_INT ret = 0; int fd; fd = open ("/dev/urandom", O_RDONLY); if (fd >= 0) { read (fd, &ret, sizeof (HOST_WIDE_INT)); close (fd); if (ret) return ret; } /* Get some more or less random data. */ #ifdef HAVE_GETTIMEOFDAY { struct timeval tv; gettimeofday (&tv, NULL); ret = tv.tv_sec * 1000 + tv.tv_usec / 1000; } #else { time_t now = time (NULL); if (now != (time_t)-1) ret = (unsigned) now; } #endif return ret ^ getpid(); } /* %:compare-debug-dump-opt spec function. Save the last argument, expected to be the last -fdump-final-insns option, or generate a temporary. */ static const char * compare_debug_dump_opt_spec_function (int arg, const char **argv ATTRIBUTE_UNUSED) { char *ret; char *name; int which; static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3]; if (arg != 0) fatal_error ("too many arguments to %%:compare-debug-dump-opt"); do_spec_2 ("%{fdump-final-insns=*:%*}"); do_spec_1 (" ", 0, NULL); if (argbuf.length () > 0 && strcmp (argv[argbuf.length () - 1], ".")) { if (!compare_debug) return NULL; name = xstrdup (argv[argbuf.length () - 1]); ret = NULL; } else { const char *ext = NULL; if (argbuf.length () > 0) { do_spec_2 ("%{o*:%*}%{!o:%{!S:%b%O}%{S:%b.s}}"); ext = ".gkd"; } else if (!compare_debug) return NULL; else do_spec_2 ("%g.gkd"); do_spec_1 (" ", 0, NULL); gcc_assert (argbuf.length () > 0); name = concat (argbuf.last (), ext, NULL); ret = concat ("-fdump-final-insns=", name, NULL); } which = compare_debug < 0; debug_check_temp_file[which] = name; if (!which) { unsigned HOST_WIDE_INT value = get_random_number (); sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value); } if (*random_seed) { char *tmp = ret; ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ", ret, NULL); free (tmp); } if (which) *random_seed = 0; return ret; } static const char *debug_auxbase_opt; /* %:compare-debug-self-opt spec function. Expands to the options that are to be passed in the second compilation of compare-debug. */ static const char * compare_debug_self_opt_spec_function (int arg, const char **argv ATTRIBUTE_UNUSED) { if (arg != 0) fatal_error ("too many arguments to %%:compare-debug-self-opt"); if (compare_debug >= 0) return NULL; do_spec_2 ("%{c|S:%{o*:%*}}"); do_spec_1 (" ", 0, NULL); if (argbuf.length () > 0) debug_auxbase_opt = concat ("-auxbase-strip ", argbuf.last (), NULL); else debug_auxbase_opt = NULL; return concat ("\ %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \ %<fdump-final-insns=* -w -S -o %j \ %{!fcompare-debug-second:-fcompare-debug-second} \ ", compare_debug_opt, NULL); } /* %:compare-debug-auxbase-opt spec function. Expands to the auxbase options that are to be passed in the second compilation of compare-debug. It expects, as an argument, the basename of the current input file name, with the .gk suffix appended to it. */ static const char * compare_debug_auxbase_opt_spec_function (int arg, const char **argv) { char *name; int len; if (arg == 0) fatal_error ("too few arguments to %%:compare-debug-auxbase-opt"); if (arg != 1) fatal_error ("too many arguments to %%:compare-debug-auxbase-opt"); if (compare_debug >= 0) return NULL; len = strlen (argv[0]); if (len < 3 || strcmp (argv[0] + len - 3, ".gk") != 0) fatal_error ("argument to %%:compare-debug-auxbase-opt " "does not end in .gk"); if (debug_auxbase_opt) return debug_auxbase_opt; #define OPT "-auxbase " len -= 3; name = (char*) xmalloc (sizeof (OPT) + len); memcpy (name, OPT, sizeof (OPT) - 1); memcpy (name + sizeof (OPT) - 1, argv[0], len); name[sizeof (OPT) - 1 + len] = '\0'; #undef OPT return name; } /* %:pass-through-libs spec function. Finds all -l options and input file names in the lib spec passed to it, and makes a list of them prepended with the plugin option to cause them to be passed through to the final link after all the new object files have been added. */ const char * pass_through_libs_spec_func (int argc, const char **argv) { char *prepended = xstrdup (" "); int n; /* Shlemiel the painter's algorithm. Innately horrible, but at least we know that there will never be more than a handful of strings to concat, and it's only once per run, so it's not worth optimising. */ for (n = 0; n < argc; n++) { char *old = prepended; /* Anything that isn't an option is a full path to an output file; pass it through if it ends in '.a'. Among options, pass only -l. */ if (argv[n][0] == '-' && argv[n][1] == 'l') { const char *lopt = argv[n] + 2; /* Handle both joined and non-joined -l options. If for any reason there's a trailing -l with no joined or following arg just discard it. */ if (!*lopt && ++n >= argc) break; else if (!*lopt) lopt = argv[n]; prepended = concat (prepended, "-plugin-opt=-pass-through=-l", lopt, " ", NULL); } else if (!strcmp (".a", argv[n] + strlen (argv[n]) - 2)) { prepended = concat (prepended, "-plugin-opt=-pass-through=", argv[n], " ", NULL); } if (prepended != old) free (old); } return prepended; } /* %:replace-extension spec function. Replaces the extension of the first argument with the second argument. */ const char * replace_extension_spec_func (int argc, const char **argv) { char *name; char *p; char *result; int i; if (argc != 2) fatal_error ("too few arguments to %%:replace-extension"); name = xstrdup (argv[0]); for (i = strlen(name) - 1; i >= 0; i--) if (IS_DIR_SEPARATOR (name[i])) break; p = strrchr (name + i + 1, '.'); if (p != NULL) *p = '\0'; result = concat (name, argv[1], NULL); free (name); return result; } /* Insert backslash before spaces in ORIG (usually a file path), to avoid being broken by spec parser. This function is needed as do_spec_1 treats white space (' ' and '\t') as the end of an argument. But in case of -plugin /usr/gcc install/xxx.so, the file name should be treated as a single argument rather than being broken into multiple. Solution is to insert '\\' before the space in a file name. This function converts and only converts all occurrence of ' ' to '\\' + ' ' and '\t' to '\\' + '\t'. For example: "a b" -> "a\\ b" "a b" -> "a\\ \\ b" "a\tb" -> "a\\\tb" "a\\ b" -> "a\\\\ b" orig: input null-terminating string that was allocated by xalloc. The memory it points to might be freed in this function. Behavior undefined if ORIG wasn't xalloced or was freed already at entry. Return: ORIG if no conversion needed. Otherwise a newly allocated string that was converted from ORIG. */ static char * convert_white_space (char *orig) { int len, number_of_space = 0; for (len = 0; orig[len]; len++) if (orig[len] == ' ' || orig[len] == '\t') number_of_space++; if (number_of_space) { char *new_spec = (char *) xmalloc (len + number_of_space + 1); int j, k; for (j = 0, k = 0; j <= len; j++, k++) { if (orig[j] == ' ' || orig[j] == '\t') new_spec[k++] = '\\'; new_spec[k] = orig[j]; } free (orig); return new_spec; } else return orig; }