summaryrefslogtreecommitdiff
path: root/configs/boot/cc1.symbol
blob: 16c16912bc268aab3017d463cae5b149883c5cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
00000001201fec60 G DFbignan
00000001201fec68 G DFlittlenan
0000000120006f30 T GNU_xref_begin
0000000120006f70 T GNU_xref_end
00000001201e9b60 d Reg_names
00000001201fec70 G SFbignan
00000001201fec74 G SFlittlenan
00000001201e9ff8 D TFbignan
00000001201ea008 D TFlittlenan
00000001201e82c8 D W_options
00000001201ea018 D XFbignan
00000001201ea024 D XFlittlenan
00000001201fad48 D _DYNAMIC
00000001201fb210 D _GLOBAL_OFFSET_TABLE_
00000001201febe8 G _IO_stdin_used
00000001201faf10 T _PROCEDURE_LINKAGE_TABLE_
00000001201faef0 d __CTOR_END__
00000001201faee8 d __CTOR_LIST__
00000001201faf00 d __DTOR_END__
00000001201faef8 d __DTOR_LIST__
00000001201fad44 r __FRAME_END__
00000001201faf08 d __JCR_END__
00000001201faf08 d __JCR_LIST__
00000001201fecdc A __bss_start
00000001201e6a58 D __data_start
000000012019eb20 t __do_global_ctors_aux
00000001200019e0 t __do_global_dtors_aux
00000001201febf0 G __dso_handle
00000001201e6a58 A __fini_array_end
00000001201e6a58 A __fini_array_start
00000001201e6a58 A __init_array_end
00000001201e6a58 A __init_array_start
000000012019ea80 T __libc_csu_fini
000000012019e9d0 T __libc_csu_init
00000001200019a0 W __start
00000001201fecdc A _edata
00000001202157c8 A _end
000000012019eb80 T _fini
0000000120001938 T _init
00000001200019a0 T _start
00000001202003e8 S abs_optab
00000001200d89c0 t abstract_origin_attribute
000000012016a550 t actual_hazard
000000012016af00 t actual_hazard_this_instance
000000012016fb20 t add_bb_string
00000001201831a0 T add_clobbers
00000001201ff138 s add_cost
0000000120200858 S add_cost
0000000120164b10 t add_dependence
0000000120055d40 T add_double
00000001200b4c60 T add_insn
00000001200b2c40 T add_insn_after
00000001200b2d90 T add_insn_before
000000012002f860 t add_ixpansion
00000001200fed90 t add_label_notes
0000000120197770 T add_operand
0000000120200408 S add_optab
000000012015d210 t add_to_delay_list
00000001201ff5f8 s added_links_insn
00000001201ff4c0 s addr_combined_regs
00000001201ff4b8 s addr_placeholder
00000001201731d0 T address_operand
00000001201720f0 T adj_offsettable_operand
00000001200dfe00 t adjust_copied_decl_tree
000000012016aa30 t adjust_priority
0000000120095b20 T adjust_stack
00000001200291a0 t affix_data_type
00000001201ff588 s after_insn_hard_regs
0000000120062e10 T aggregate_value_p
00000001201fed48 s align.4
000000012005f550 t all_blocks
000000012006a350 T all_cases_count
00000001201eb418 d all_from_align
00000001201ff3e8 s all_minus_one
0000000120200110 S all_types_permanent
0000000120134ef0 t alloc_qty_for_scratch
0000000120094f90 T allocate_dynamic_stack_space
000000012010fc50 T allocate_for_life_analysis
0000000120154180 t allocate_reload_reg
00000001200422b0 T allocation_temporary_p
00000001201ff808 s allocno_calls_crossed
000000012013a160 t allocno_compare
00000001201ff818 s allocno_live_length
00000001201ff810 s allocno_n_refs
00000001201ff7a0 s allocno_order
00000001201ff798 s allocno_reg
00000001201ff7c0 s allocno_row_words
00000001201ff7a8 s allocno_size
00000001201ff820 s allocnos_live
00000001201fed6c s already.0
00000001201ff698 s altclass
000000012014b230 t alter_reg
000000012016e1e0 T alter_subreg
0000000120140e20 t alternative_allows_memconst
0000000120190fb0 t alu_unit_blockage
000000012018cc20 T alu_unit_blockage_range
000000012018c790 T alu_unit_ready_cost
00000001202005d8 S and_optab
00000001200387d0 T announce_function
00000001201ff258 s anonymous_types
0000000120095bd0 T anti_adjust_stack
00000001201645f0 T anti_dependence
000000012006f4f0 T any_pending_cleanups
000000012016f6b0 T app_disable
000000012016f690 T app_enable
00000001201ffb1c s app_on
0000000120203548 b apply_args_mode
0000000120203748 b apply_args_reg_offset
0000000120082a30 T apply_args_register_offset
0000000120084640 t apply_args_size
00000001201ff108 s apply_args_value
000000012016fd70 T apply_change_group
0000000120122f00 t apply_distributive_law
0000000120203648 b apply_result_mode
0000000120084920 t apply_result_size
000000012010d890 t approx_final_value
00000001202007d8 S arg_pointer_rtx
00000001202001e8 S arg_pointer_save_area
00000001201e73ff d argnofun.1
00000001201e73e8 d argstring.0
0000000120197640 T arith32_operand
00000001201975c0 T arith5_operand
00000001201976b0 T arith64_operand
0000000120197540 T arith_operand
00000001201eb6b8 d arityvec
0000000120043af0 T array_type_nelts
00000001200ba350 t asctoe
00000001200ba340 t asctoe113
00000001200ba310 t asctoe24
00000001200ba320 t asctoe53
00000001200ba330 t asctoe64
00000001200ba360 t asctoeg
00000001202004f0 S ashl_optab
0000000120200608 S ashr_optab
00000001201fff10 S asm_file_name
000000012016f110 T asm_fprintf
000000012016c9c0 t asm_insn_count
0000000120171ab0 T asm_noperands
0000000120200058 S asm_out_file
00000001200a80b0 T assemble_alias
00000001200a8fb0 T assemble_align
00000001200a8b20 T assemble_asm
00000001200a8a10 T assemble_constant_align
00000001200a8cb0 T assemble_constructor
00000001200a8bd0 T assemble_destructor
00000001200a8dd0 T assemble_end_function
00000001200a9310 T assemble_external
00000001200a9320 T assemble_external_libcall
00000001200a8d40 T assemble_gc_entry
00000001200a9330 T assemble_global
00000001200a4660 T assemble_integer
00000001200a93b0 T assemble_label
00000001200a3d40 T assemble_name
00000001200a4890 T assemble_real
00000001200a2700 T assemble_start_function
00000001200a3e80 T assemble_static_space
00000001200a9060 T assemble_string
00000001200a40f0 T assemble_trampoline_template
00000001200a2be0 T assemble_variable
00000001200a8f30 T assemble_zeros
0000000120059c00 T assign_outer_stack_local
000000012005d300 T assign_parms
0000000120059a60 T assign_stack_local
0000000120059db0 T assign_stack_temp
00000001201e7368 d asso_values.0
0000000120162c10 t attach_deaths
0000000120169c10 t attach_deaths_insn
0000000120040b10 T attribute_hash_list
0000000120040bc0 T attribute_list_contained
0000000120040b40 T attribute_list_equal
0000000120200b10 b attrtab
00000001201feec8 s attrtab_idx
0000000120200000 S aux_info_file
00000001201fefe0 s aux_info_file_name
000000012010cd40 T back_branch_in_range_p
00000001201ff8a4 s bad_spill_regs
000000012006c730 t balance_case_nodes
00000001201ff218 s base_label_num
00000001201ff520 s basic_block_drops_in
00000001202008c8 S basic_block_end
00000001202008d8 S basic_block_head
0000000120200878 S basic_block_live_at_start
00000001201ff528 s basic_block_loop_depth
0000000120215098 B basic_block_needs
00000001201045b0 t basic_induction_var
00000001201ffa18 s bb_dead_regs
00000001201fecb8 g bb_file_label_num
00000001201fecbc g bb_func_label_num
00000001201ffad0 s bb_head
00000001201ffa20 s bb_live_regs
00000001201fecb0 g bb_tail
00000001201ff968 s bb_ticks
0000000120081f90 T bc_adjust_stack
000000012019c610 T bc_align
000000012019b890 T bc_align_bytecode
000000012019bd00 T bc_align_const
000000012019bfa0 T bc_align_data
00000001200810f0 T bc_allocate_local
0000000120082af0 T bc_allocate_variable_array
000000012019b760 T bc_begin_function
0000000120063420 T bc_build_calldesc
0000000120081320 T bc_canonicalize_array_ref
000000012006ab50 t bc_check_for_full_enumeration_handling
000000012019c5f0 T bc_data
00000001201ffbc8 s bc_data_seg
000000012019b710 T bc_define_pointer
000000012019c760 T bc_emit
000000012019cb00 T bc_emit_bytecode
000000012019b960 T bc_emit_bytecode_const
000000012019ba90 T bc_emit_bytecode_labeldef
000000012019bb10 T bc_emit_bytecode_labelref
000000012019bc00 T bc_emit_code_labelref
000000012019c240 T bc_emit_common
000000012019bdd0 T bc_emit_const
000000012019bf60 T bc_emit_const_labeldef
000000012019bf80 T bc_emit_const_labelref
000000012019bea0 T bc_emit_const_skip
000000012019c070 T bc_emit_data
000000012019c200 T bc_emit_data_labeldef
000000012019c220 T bc_emit_data_labelref
000000012019c140 T bc_emit_data_skip
000000012019ac10 T bc_emit_instruction
000000012019c9b0 T bc_emit_labeldef
000000012019ca00 T bc_emit_labelref
000000012019c890 T bc_emit_skip
000000012019cc40 T bc_emit_trampoline
000000012019a140 T bc_end_function
0000000120081600 T bc_expand_address
000000012019d430 T bc_expand_binary_operation
0000000120081480 T bc_expand_component_address
0000000120081a90 T bc_expand_constructor
000000012019dd40 T bc_expand_conversion
0000000120068a10 t bc_expand_decl
0000000120068ce0 t bc_expand_decl_init
0000000120068110 t bc_expand_end_bindings
000000012006bc60 t bc_expand_end_case
0000000120065b50 t bc_expand_end_cond
000000012006fc40 t bc_expand_end_loop
000000012007b490 T bc_expand_expr
0000000120064180 t bc_expand_fixup
0000000120063670 T bc_expand_function_end
000000012005fcc0 T bc_expand_function_start
000000012006f690 t bc_expand_goto_internal
000000012019df90 T bc_expand_increment
0000000120069450 t bc_expand_start_case
0000000120065ab0 t bc_expand_start_cond
000000012019de90 T bc_expand_truth_conversion
000000012019d900 T bc_expand_unary_operation
0000000120064240 t bc_fixup_gotos
0000000120081910 T bc_gen_constr_label
000000012019ca60 T bc_gen_rtx
000000012019ba30 T bc_get_bytecode_label
000000012019c420 T bc_globalize_label
000000012019d350 T bc_init_mode_to_code_map
000000012006fe00 T bc_init_mode_to_opcode_maps
0000000120199ef0 T bc_initialize
0000000120082b60 T bc_load_bit_field
00000001200811a0 T bc_load_externaddr
0000000120081200 T bc_load_externaddr_id
0000000120081290 T bc_load_localaddr
0000000120080f90 T bc_load_memory
00000001200812d0 T bc_load_parmaddr
00000001200a9d10 t bc_make_decl_rtl
000000012006f5a0 T bc_new_uid
00000001200a9160 T bc_output_constructor
00000001200a9250 T bc_output_data_constructor
000000012019caf0 T bc_print_rtl
00000001200815a0 T bc_push_offset_and_size
000000012006a050 t bc_pushcase
0000000120081870 T bc_runtime_type_code
0000000120081f50 T bc_store_bit_field
0000000120081e50 T bc_store_field
0000000120081040 T bc_store_memory
000000012019c5d0 T bc_text
00000001201ffbc0 s bc_text_seg
00000001201ff0b0 s bc_uid.1
000000012019ca50 T bc_write_file
000000012019ce50 T bc_xstrdup
000000012020c108 B bcc_gen_fctn
00000001202004d0 S bcmp_libfunc
0000000120200698 S bcopy_libfunc
00000001201eb43c d best_from_align
000000012002b5a0 T binary_op_error
0000000120043510 T binfo_member
000000012016add0 t birthing_insn_p
00000001200d8380 t bit_offset_attribute
000000012018ed90 T bit_unit_ready_cost
000000012010ce50 T biv_total_increment
0000000120132150 t block_alloc
00000001201ffb18 s block_depth
00000001201ff530 s block_live_static
0000000120198b80 t block_move_loop
0000000120191ea0 t block_move_no_loop
00000001201921e0 t block_move_sequence
00000001202002d0 S block_stack
00000001202002ac S block_start_count
00000001201ff0e8 s block_vector
000000012005f520 t blocks_nreverse
00000001201e9f94 d bmask
00000001201ffda0 S boolean_false_node
00000001201ffcc8 S boolean_true_node
00000001201ffe58 S boolean_type_node
0000000120038bb0 T botch
0000000120096150 t break_out_memory_refs
0000000120205fe4 b buffer.0
0000000120206048 b buffer.1
00000001202063cc b buffer.10
0000000120206430 b buffer.11
0000000120206494 b buffer.12
00000001201fedf8 s buffer.2
00000001202060ac b buffer.2
0000000120206110 b buffer.3
0000000120206174 b buffer.4
00000001202061d8 b buffer.5
000000012020623c b buffer.6
00000001202062a0 b buffer.7
0000000120206304 b buffer.8
0000000120206368 b buffer.9
00000001201feee0 s buffer_length.2
000000012003fff0 T build
0000000120040250 T build1
000000012001adb0 T build_array_ref
00000001200414f0 T build_array_type
000000012001c1a0 T build_binary_op
0000000120044230 T build_block
000000012001fc20 T build_c_cast
0000000120042a00 T build_complex
00000001200415e0 T build_complex_type
000000012001a930 T build_component_ref
00000001200255b0 T build_compound_expr
000000012001f570 T build_conditional_expr
0000000120044170 T build_decl
00000001200442b0 T build_decl_attribute_variant
00000001200437a0 T build_decl_list
0000000120014920 T build_enumerator
000000012001b260 T build_function_call
0000000120044ed0 T build_function_type
0000000120044dd0 T build_index_2_type
0000000120044c40 T build_index_type
000000012001abc0 T build_indirect_ref
00000001200427b0 T build_int_2_wide
0000000120045090 T build_method_type
0000000120020200 T build_modify_expr
00000001200403e0 T build_nt
0000000120006f10 T build_objc_string
0000000120045170 T build_offset_type
00000001200404a0 T build_parse_node
00000001200412a0 T build_pointer_type
00000001200413a0 T build_range_type
0000000120042800 T build_real
000000012003dc50 T build_real_from_int_cst
0000000120044fd0 T build_reference_type
000000012003e0c0 T build_string
0000000120043750 T build_tree_list
0000000120040590 T build_type_attribute_variant
0000000120040810 T build_type_copy
0000000120040740 T build_type_variant
000000012001e500 T build_unary_op
00000001200105e0 T builtin_function
00000001202006f4 S byte_mode
00000001200d81c0 t byte_size_attribute
0000000120200a28 S bytecode
0000000120200510 S bzero_libfunc
0000000120025510 T c_alignof
0000000120019fd0 T c_alignof_expr
000000012002d690 T c_build_type_variant
000000012000c410 T c_decode_option
0000000120024980 T c_expand_asm_operands
000000012002d190 T c_expand_expr_stmt
0000000120024c10 T c_expand_return
0000000120025bf0 T c_expand_start_case
00000001201ffc18 S c_function_chain
00000001201fedc0 s c_function_varargs
0000000120017a00 T c_mark_varargs
0000000120025430 T c_size_in_bytes
0000000120019e30 T c_sizeof
0000000120025350 T c_sizeof_nowarn
0000000120084500 t c_strlen
000000012010d100 t calculate_giv_inc
0000000120197400 T call_address_operand
0000000120200928 S call_fixed_reg_set
0000000120213ab0 B call_fixed_regs
0000000120200910 S call_used_reg_set
0000000120213a70 B call_used_regs
0000000120200978 S caller_save_needed
0000000120084d50 t calls_function_1
00000001201ff128 s calls_function_save_exprs
000000012012c200 t can_combine_p
000000012009c7e0 T can_compare_p
00000001200a15b0 T can_extend_p
0000000120200800 S can_reach_end
00000001200e6860 T can_reverse_comparison_p
00000001201700e0 T cancel_changes
00000001201ff8c0 s cannot_omit_stores
00000001200e9090 t canon_hash
00000001200ea190 t canon_reg
00000001201648e0 t canon_rtx
000000012006f570 T case_index_expr_type
00000001202002c8 S case_stack
00000001201ff53c s cc0_live
0000000120200718 S cc0_rtx
00000001202007c8 S cc1_rtx
0000000120093200 T ceil_log2
0000000120043540 T chain_member
00000001200435a0 T chain_member_purpose
0000000120043570 T chain_member_value
00000001200435f0 T chainon
00000001200b22f0 T change_address
0000000120209a58 b change_locs
0000000120044710 T change_main_variant
0000000120209800 b change_objects
0000000120209990 b change_old_codes
0000000120209be8 b change_olds
00000001201ffc30 S char_array_type_node
00000001201ffcb8 S char_type_node
000000012016fc40 T check_asm_operands
000000012002d290 T check_case_value
0000000120105f70 t check_dbra_loop
00000001201040a0 t check_final_value
000000012006a850 T check_for_full_enumeration_handling
000000012002d7a0 t check_format_info
000000012002cce0 T check_function_format
00000001200234d0 t check_init_type_bitfields
0000000120008020 T check_newline
000000012012ff00 T choose_hard_reg_mode
0000000120093540 t choose_multiplier
000000012014e7e0 t choose_reload_regs
0000000120213514 B class_narrowest_mode
00000001200b3080 T classify_insn
0000000120196810 T classify_integer
0000000120200240 S cleanup_label
00000001202002d8 S cleanups_this_call
0000000120200a40 b clear_binding_level
00000001200a9450 T clear_const_double_mem
000000012006e9f0 T clear_last_expr
0000000120042460 T clear_momentary
0000000120017050 T clear_parm_order
0000000120082a90 T clear_pending_stack_adjust
00000001201559d0 t clear_reg_live
0000000120153020 t clear_reload_reg_in_use
0000000120082650 T clear_storage
0000000120200358 S cmp_optab
000000012020c4a8 B code_to_optab
000000012002e9d0 t collect_iterators
0000000120114400 t combinable_i3pat
00000001201ff590 s combine_attempts
00000001201fef14 S combine_dump
00000001201ffef0 S combine_dump_file
00000001201ff598 s combine_extras
0000000120105650 t combine_givs
0000000120113b30 T combine_instructions
00000001201ff5bc s combine_max_regno
00000001201ff594 s combine_merges
00000001200fe3a0 t combine_movables
0000000120015c30 T combine_parm_decls
0000000120133580 t combine_regs
0000000120146c80 t combine_reloads
00000001200294d0 T combine_strings
00000001201ff59c s combine_successes
000000012005a0d0 T combine_temp_slots
00000001201fffd4 S combine_time
0000000120019070 T common_type
00000001200801f0 t compare
00000001200a5200 t compare_constant_1
0000000120080310 T compare_from_rtx
0000000120152d50 t compare_spill_regs
00000001200e6bb0 T comparison_dominates_p
0000000120173a00 T comparison_operator
0000000120039530 t compile_file
00000001201feeb8 s compiled_from_record.0
0000000120011560 T complete_array_type
00000001201fece0 s completed.1
00000001201ffc08 S complex_double_type_node
00000001201ffe70 S complex_float_type_node
00000001201ffc38 S complex_integer_type_node
00000001201ffce8 S complex_long_double_type_node
00000001200196f0 T comptypes
0000000120200288 S cond_stack
00000001201968b0 T condition_value
00000001200e6db0 T condjump_in_parallel_p
00000001200e6cd0 T condjump_p
00000001201ff7b8 s conflicts
00000001201ff3f0 s consec_ints
0000000120105360 t consec_sets_giv
00000001201012d0 t consec_sets_invariant_p
0000000120200708 S const0_rtx
0000000120200780 S const1_rtx
0000000120200750 S const2_rtx
000000012004aac0 t const_binop
00000001201ff170 s const_double_chain
0000000120173400 T const_double_operand
00000001200a4df0 t const_hash
0000000120203b98 b const_hash_table
00000001201733f0 T const_int_operand
0000000120205b20 b const_int_rtx
00000001202006c8 S const_labelno
000000012018ee30 T const_num_delay_slots
00000001201ffe38 S const_ptr_type_node
00000001201ff188 s const_rtx_hash_table
00000001201ff1a8 s const_rtx_sym_hash_table
00000001200a8260 T const_section
00000001201ffe60 S const_string_type_node
0000000120213530 B const_tiny_rtx
00000001202007b8 S const_true_rtx
00000001200d9fa0 t const_value_attribute
000000012002cd30 T constant_expression_warning
00000001201ff438 s constant_pool_entries_cost
0000000120200798 S constm1_rtx
00000001201723a0 T constrain_operands
0000000120152980 t constraint_accepts_reg_p
00000001201feea0 s constructor_asmspec
00000001201fee58 s constructor_bit_index
00000001201fee68 s constructor_constant
00000001201fee98 s constructor_decl
00000001201fee80 s constructor_depth
00000001201fee60 s constructor_elements
00000001201fee70 s constructor_erroneous
00000001201fee28 s constructor_fields
00000001201fee84 s constructor_implicit
00000001201fee90 s constructor_incremental
00000001201fee30 s constructor_index
00000001201fee40 s constructor_max_index
00000001201fee00 S constructor_no_implicit
00000001201fee78 s constructor_pending_elts
00000001201fee38 s constructor_range_end
00000001201feeb0 s constructor_result
00000001201fee6c s constructor_simple
00000001201ffe98 S constructor_stack
00000001201fee74 s constructor_subconstants_deferred
00000001201feea8 s constructor_top_level
00000001201fee20 s constructor_type
00000001201fee48 s constructor_unfilled_fields
00000001201fee50 s constructor_unfilled_index
0000000120043f90 T contains_placeholder_p
00000001200a3c50 t contains_pointers_p
00000001201ff030 s context_display
00000001201ec720 d conversion_info
000000012019e5b0 t conversion_reasonable_p
000000012020ae90 b conversion_recipe
0000000120026880 T convert
000000012002cf90 T convert_and_check
000000012001b520 t convert_arguments
0000000120020650 t convert_for_assignment
0000000120071230 T convert_modes
0000000120070530 T convert_move
0000000120199c60 T convert_to_complex
0000000120199080 T convert_to_integer
00000001200711f0 T convert_to_mode
0000000120199930 T convert_to_pointer
0000000120199ad0 T convert_to_real
00000001200959e0 T copy_addr_to_reg
0000000120095600 T copy_all_regs
00000001201ff300 s copy_asm_constraints_vector
00000001201ff2f8 s copy_asm_operands_vector
00000001200a5dc0 t copy_constant
000000012012f480 t copy_cost
0000000120200834 S copy_cost
00000001200dae60 t copy_decl_list
00000001200dafd0 t copy_decl_rtls
00000001200daf10 t copy_decl_tree
00000001200db590 t copy_for_inline
0000000120017c10 T copy_lang_decl
00000001200426f0 T copy_list
0000000120109ac0 t copy_loop_body
00000001200aab70 T copy_most_rtx
000000012003d5b0 T copy_node
0000000120143780 T copy_replacements
00000001200aa7c0 T copy_rtx
00000001200dda30 T copy_rtx_and_substitute
00000001200b2430 T copy_rtx_if_shared
0000000120094b10 T copy_to_mode_reg
0000000120094a50 T copy_to_reg
0000000120095a90 T copy_to_suggested_reg
0000000120200440 S cos_optab
00000001201ff0d0 s cost_table
00000001201ff688 s costs
00000001201ffaf8 s count_basic_blocks
0000000120038620 T count_error
0000000120101550 t count_loop_regs_set
0000000120100050 t count_nonfixed_reads
0000000120152a80 t count_occurrences
000000012014a920 t count_possible_groups
00000001200f4b50 t count_reg_usage
00000001201ff8b0 s counted_for_groups
00000001201ff8b8 s counted_for_nongroups
0000000120165850 t create_reg_dead_note
00000001201ff310 s cross_jump_death_matters
00000001201fef0c S cse2_dump
00000001201fff38 S cse2_dump_file
00000001201fff90 S cse2_time
00000001200f4080 t cse_basic_block
00000001201ff3fc s cse_basic_block_end
00000001201ff3f8 s cse_basic_block_start
00000001200fc2e0 t cse_check_loop_start
00000001201ff440 s cse_check_loop_start_value
00000001201fef04 S cse_dump
00000001201ffff8 S cse_dump_file
00000001200f3530 T cse_end_of_basic_block
00000001200ed360 t cse_gen_binary
00000001200f6d90 t cse_insn
00000001201ff40c s cse_jumps_altered
00000001200f3a60 T cse_main
00000001202002e4 S cse_not_expected
00000001200f3290 t cse_process_notes
00000001200fb530 t cse_set_around_loop
00000001201fff44 S cse_time
00000001200a83f0 T ctors_section
00000001201fec54 g cur_insn_uid
00000001201fedd0 s current_binding_level
00000001201fed08 s current_declspecs
00000001201ff290 s current_dienum
00000001201fedc8 s current_extern_inline
00000001201fec90 g current_funcdef_number
0000000120200218 S current_function_arg_offset_rtx
0000000120200230 S current_function_args_info
0000000120200214 S current_function_args_size
0000000120200170 S current_function_calls_alloca
0000000120200188 S current_function_calls_longjmp
00000001202001a8 S current_function_calls_setjmp
0000000120200234 S current_function_contains_functions
00000001201ffd80 S current_function_decl
0000000120200168 S current_function_epilogue_delay_list
0000000120200258 S current_function_has_nonlocal_goto
0000000120200270 S current_function_has_nonlocal_label
00000001202001c8 S current_function_internal_arg_pointer
00000001202001f8 S current_function_name
0000000120200160 S current_function_needs_context
0000000120200248 S current_function_outgoing_args_size
00000001201fed98 s current_function_parm_tags
00000001201fed90 s current_function_parms
00000001202001c0 S current_function_pops_args
000000012020015c S current_function_pretend_args_size
00000001201feda0 s current_function_prototype_file
00000001201feda8 s current_function_prototype_line
0000000120200178 S current_function_return_rtx
00000001201ffcb0 S current_function_returns_null
0000000120200280 S current_function_returns_pcc_struct
0000000120200208 S current_function_returns_pointer
000000012020018c S current_function_returns_struct
00000001201ffdc0 S current_function_returns_value
00000001202001f0 S current_function_stdarg
0000000120200210 S current_function_uses_const_pool
00000001202001d0 S current_function_uses_pic_offset_table
000000012020020c S current_function_varargs
00000001201ff980 s current_live_regs
00000001202000a0 S current_obstack
00000001200d74c0 t data_member_location_attribute
00000001200a8580 T data_section
00000001201e6a58 W data_start
00000001201feec0 s data_type
00000001201fef2c S dbr_sched_dump
0000000120200038 S dbr_sched_dump_file
00000001201ffee0 S dbr_sched_time
00000001201593d0 T dbr_schedule
000000012016f6d0 T dbr_sequence_length
0000000120200730 S dconst0
00000001202007d0 S dconst1
0000000120200788 S dconst2
0000000120200700 S dconstm1
00000001201ffa30 s dead_notes
00000001200b08c0 T dead_or_set_p
00000001200ae500 T dead_or_set_regno_p
00000001201fef3c S debug_info_level
00000001201ffab8 s debug_insn
00000001201feffc S debug_no_type_hash
0000000120042380 T debug_obstack
00000001200bce10 T debug_real
0000000120145250 T debug_reload
00000001200acd80 T debug_rtx
00000001201ff1b8 S debug_rtx_count
00000001200acec0 T debug_rtx_find
00000001200acdd0 T debug_rtx_list
00000001201fec10 G debug_temp_inits
0000000120047750 T debug_tree
0000000120029800 T decl_attributes
0000000120041b90 T decl_function_context
0000000120039220 t decl_name
0000000120200060 S decl_printable_name
0000000120043810 T decl_tree_cons
00000001200453e0 T decl_type_context
000000012002c750 T declare_function_name
000000012006e810 T declare_nonlocal_label
0000000120016590 T declare_parm_level
00000001200a9b50 T declare_weak
00000001201fed10 s declspec_stack
00000001200a9f90 t decode_addr_const
0000000120171c90 T decode_asm_operands
0000000120058ce0 t decode_field_reference
00000001200a1bf0 T decode_reg_name
00000001200aa310 t decode_rtx_const
000000012013d160 t decompose
000000012019e060 t deduce_conversion
000000012001a1d0 T default_conversion
00000001201ffc48 S default_function_type
00000001200388a0 T default_print_error_function
00000001200a94a0 T defer_addressed_constants
00000001201ff180 s defer_addressed_constants_flag
000000012007e5d0 t defer_cleanups_to
00000001201ff178 s deferred_constants
000000012000e1a0 T define_label
0000000120016730 T delete_block
00000001200e4330 t delete_computation
00000001200f4de0 T delete_dead_from_cse
000000012014b150 t delete_dead_insn
00000001200e6f00 T delete_for_peephole
000000012015d2f0 t delete_from_delay_slot
00000001200e4d90 t delete_from_jump_chain
00000001200e4560 T delete_insn
00000001200b4ca0 T delete_insns_since
00000001200e42c0 T delete_jump
00000001200e5260 t delete_labelref_insn
0000000120152360 t delete_output_reload
0000000120021fc0 t digest_init
000000012020350c b direct_load
0000000120203529 b direct_store
00000001201feed8 s directive_buffer.1
0000000120056e70 t distribute_bit_expr
000000012012ba90 t distribute_links
000000012012ad10 t distribute_notes
000000012004a2b0 T div_and_round_double
0000000120203a3c b div_cost
000000012018ee60 t div_unit_blockage
000000012018ebb0 T div_unit_blockage_range
000000012018b380 T div_unit_ready_cost
0000000120038b90 T do_abort
00000001201ff250 s do_block
00000001200e3700 t do_cross_jump
00000001201ff000 s do_identifier_warnings
000000012007e800 T do_jump
000000012007fc50 t do_jump_by_parts_equality
000000012007fe50 t do_jump_by_parts_equality_rtx
000000012007f710 t do_jump_by_parts_greater
000000012007f9e0 T do_jump_by_parts_greater_rtx
000000012007fff0 t do_jump_for_compare
000000012006c110 t do_jump_if_equal
00000001201ff414 s do_not_record
000000012007e550 T do_pending_stack_adjust
00000001201fec3c G do_preexpand_calls
0000000120080560 t do_store_flag
00000001201ffc00 S doing_objc_thang
00000001201fed68 S dollars_in_ident
00000001201ffd98 S double_ftype_double
00000001201ffe18 S double_ftype_double_double
0000000120200998 S double_reg_address_ok
00000001201ffd78 S double_type_node
000000012006f350 T drop_through_at_end_p
00000001200a8470 T dtors_section
0000000120200018 S dump_base_name
000000012012beb0 T dump_combine_stats
000000012012bf10 T dump_combine_total_stats
0000000120139930 t dump_conflicts
0000000120112190 T dump_flow_info
0000000120139f80 T dump_global_regs
0000000120134e20 T dump_local_alloc
00000001201fff6c S dump_time
00000001200454e0 T dump_tree_statistics
0000000120017c20 t duplicate_decls
00000001200e2ab0 t duplicate_loop_exit_test
00000001200ce060 t dwarf_attr_name
00000001200ce5e0 t dwarf_fund_type_name
00000001201ff2c0 s dwarf_last_decl
00000001200d7200 t dwarf_tag_name
00000001200cd250 T dwarfout_begin_block
00000001200cd480 T dwarfout_begin_function
00000001200cd900 T dwarfout_define
00000001200cd300 T dwarfout_end_block
00000001200cd5c0 T dwarfout_end_epilogue
00000001200cd520 T dwarfout_end_function
00000001200caa30 T dwarfout_file_scope_decl
00000001200cc540 T dwarfout_finish
00000001200cb950 T dwarfout_init
00000001200cd3b0 T dwarfout_label
00000001200cb160 T dwarfout_line
00000001200cd7c0 T dwarfout_resume_previous_source_file
00000001200cd650 T dwarfout_start_new_source_file
00000001200cdbb0 T dwarfout_undef
00000001201ff094 s dynamic_offset
00000001200b8a30 t e113toe
00000001200b8e80 t e24toe
00000001201e9e2c D e32
00000001200b80a0 t e53toe
00000001200b8570 t e64toe
00000001200b6c40 t eadd
00000001200b6df0 t eadd1
00000001200b65e0 T earith
000000012013c790 t earlyclobber_operand_p
00000001200b95e0 t ecmp
00000001200b7570 t ediv
00000001200bd6a0 t edivm
00000001200bc0d0 T efixi
00000001200bc140 T efixui
00000001200bb210 t efloor
00000001201e9e08 D ehalf
00000001200bea70 t eifrac
00000001200bb5c0 t eiremain
00000001200b6a30 t eisnan
00000001200b6a10 t eisneg
00000001200bb380 t eldexp
00000001200d84f0 t element_list_attribute
000000012018e7c0 T eligible_for_annul_true
000000012018e1b0 T eligible_for_delay
00000001201ff548 s elim_reg_set
00000001201e8fc8 d elim_regs.0
00000001201ff834 s eliminable_regset
00000001201ea050 d eliminables.0
00000001201ea0a0 d eliminables.0
00000001201ea688 d eliminables.0
00000001201ea670 d eliminables.2
0000000120095380 T eliminate_constant_term
000000012014bc10 T eliminate_regs
000000012014cd40 t eliminate_regs_in_insn
00000001201e9e38 D elog2
00000001200bdd70 t emdnorm
00000001200b5f30 T emit
00000001200a1250 T emit_0_to_1_insn
0000000120194ba0 t emit_add
00000001200b5be0 T emit_barrier
00000001200b3010 T emit_barrier_after
00000001200b5250 T emit_barrier_before
00000001201957a0 T emit_bcnd
0000000120071840 T emit_block_move
0000000120089a50 t emit_call_1
00000001200b5ab0 T emit_call_insn
00000001200b5190 T emit_call_insn_before
000000012006cac0 t emit_case_nodes
00000001200a1210 T emit_clr_insn
000000012009c090 T emit_cmp_insn
000000012015cec0 t emit_delay_sequence
0000000120200298 S emit_filename
000000012009c830 T emit_float_lib_cmp
00000001200a1290 T emit_indirect_jump
00000001200b5750 T emit_insn
00000001200b2ee0 T emit_insn_after
00000001200b5340 T emit_insn_after_with_line_notes
00000001200b4fc0 T emit_insn_before
00000001200b58a0 T emit_insns
00000001200b5970 T emit_insns_after
00000001200b5900 T emit_insns_before
0000000120105ac0 T emit_iv_add_mult
000000012006e580 T emit_jump
000000012006ca30 t emit_jump_if_reachable
00000001200b59f0 T emit_jump_insn
00000001200b5500 T emit_jump_insn_after
00000001200b50e0 T emit_jump_insn_before
00000001200b5b80 T emit_label
00000001200b55b0 T emit_label_after
0000000120194ef0 t emit_ldst
000000012009be10 T emit_libcall_block
0000000120088070 T emit_library_call
00000001200887a0 T emit_library_call_value
00000001200b5c50 T emit_line_note
00000001200b5690 T emit_line_note_after
00000001200b5ef0 T emit_line_note_force
0000000120200290 S emit_lineno
0000000120071c20 T emit_move_insn
0000000120071e90 T emit_move_insn_1
0000000120191520 T emit_move_sequence
000000012009ba10 T emit_no_conflict_block
000000012006e460 T emit_nop
00000001200b5db0 T emit_note
00000001200b5610 T emit_note_after
00000001200b52c0 T emit_note_before
0000000120072360 T emit_push_insn
00000001200821d0 T emit_queue
0000000120150350 t emit_reload_insns
0000000120095df0 T emit_stack_restore
0000000120094d40 T emit_stack_save
00000001200922d0 T emit_store_flag
00000001201989a0 T emit_test
000000012019dc30 T emit_typecode_conversion
00000001200a0dc0 T emit_unop_insn
000000012010a770 T emit_unrolled_add
00000001200b6990 t emov
00000001200bd500 t emovi
00000001201e9ef8 d emtens
00000001200b7b30 t emul
00000001200bdb40 t emulm
000000012016b090 T end_final
00000001201fed28 s end_of_file
00000001201ff958 s end_of_function_label
0000000120209514 b end_of_function_needs
00000001200b6430 T end_sequence
0000000120042160 T end_temporary_allocation
00000001200bd410 t endian
00000001200b69e0 t eneg
00000001200b9ff0 t enormlz
00000001201fed70 s enum_next_value
00000001201fed78 s enum_overflow
00000001201e9e14 D eone
00000001201e9e50 D epi
00000001201ff0a8 s epilogue
00000001201ffb94 s epilogue_marked
00000001202005b0 S eqdf2_libfunc
0000000120200458 S eqhf2_libfunc
00000001202006b0 S eqsf2_libfunc
00000001202005e0 S eqtf2_libfunc
0000000120197ba0 T equality_op
00000001200f16c0 t equiv_constant
00000001201ff778 s equiv_mem
00000001201ff780 s equiv_mem_modified
0000000120205f5c b equot
00000001202003f0 S eqxf2_libfunc
00000001200b6750 T ereal_atof
00000001200bd250 T ereal_cmp
00000001200bd340 T ereal_from_double
00000001200bd2f0 T ereal_from_float
00000001200bc1b0 T ereal_from_int
00000001200bc7c0 T ereal_from_uint
00000001200bd2b0 T ereal_isneg
00000001200bcd90 T ereal_ldexp
00000001200bc080 T ereal_negate
00000001200bd200 T ereal_to_decimal
00000001200b6840 T ereal_to_int
00000001201e9fb8 d ermsg
0000000120030560 T error
00000001200301d0 T error_for_asm
0000000120021a20 T error_init
00000001201ffd48 S error_mark_node
000000012002ffa0 T error_with_decl
000000012002fcf0 T error_with_file_and_line
00000001201fef44 S errorcount
00000001200b9cc0 t eshift
00000001201ff240 s esqinited
00000001201e9e44 D esqrt2
000000012006c220 t estimate_case_costs
00000001200b6a90 t esub
00000001200bd090 T etardouble
00000001200bcf80 T etarldouble
00000001200bd0f0 T etarsingle
00000001200bce70 T etartdouble
00000001201e9e5c d etens
00000001200bf010 t etoasc
00000001200b92e0 t etoe53
00000001200bba10 T etrunci
00000001200bbd60 T etruncui
00000001201e9e20 D etwo
00000001200b9750 t euifrac
000000012004bf50 t eval_subst
0000000120197a00 T even_relop
00000001201fec98 g everything.1
00000001201fec9c g everything.2
00000001201feca0 g everything.5
0000000120038c80 T exact_log2_wide
00000001200e9450 t exp_equiv_p
000000012009ad30 T expand_abs
00000001200921b0 T expand_and
0000000120068e40 T expand_anon_union_decl
000000012006e940 T expand_asm
0000000120064330 T expand_asm_operands
0000000120072c90 T expand_assignment
00000001200962f0 T expand_binop
0000000120196d00 T expand_block_move
000000012007bde0 t expand_builtin
000000012007d3f0 t expand_builtin_apply
000000012007d180 t expand_builtin_apply_args
000000012007dad0 t expand_builtin_return
0000000120082930 T expand_builtin_return_addr
0000000120085050 T expand_call
00000001200690e0 t expand_cleanups
000000012007e6e0 T expand_cleanups_to
000000012009b0c0 T expand_complex_abs
000000012011e640 t expand_compound_operation
000000012006e5f0 T expand_computed_goto
000000012006eed0 T expand_continue_loop
0000000120093170 T expand_dec
0000000120068320 T expand_decl
000000012006f3f0 T expand_decl_cleanup
0000000120068b10 T expand_decl_init
000000012008eaa0 T expand_divmod
000000012006ed50 T expand_elseif
0000000120067850 T expand_end_bindings
000000012006acc0 T expand_end_case
0000000120069630 T expand_end_case_dummy
00000001200658d0 T expand_end_cond
0000000120065d70 T expand_end_loop
00000001200654b0 T expand_end_stmt_expr
000000012006ef30 T expand_exit_loop
000000012006ef90 T expand_exit_loop_if_false
000000012006f160 T expand_exit_something
0000000120075360 T expand_expr
0000000120064f60 T expand_expr_stmt
000000012011e960 t expand_field_assignment
000000012009ddb0 T expand_fix
0000000120063eb0 t expand_fixup
000000012006e920 T expand_fixups
000000012009cf70 T expand_float
00000001200607d0 T expand_function_end
000000012005ff70 T expand_function_start
00000001200639c0 T expand_goto
0000000120063ce0 t expand_goto_internal
00000001200930e0 T expand_inc
000000012007dce0 t expand_increment
00000001200dbc40 T expand_inline_function
000000012006e6a0 T expand_label
000000012006ee30 T expand_loop_continue_here
0000000120063660 T expand_main_function
000000012008da30 T expand_mult
00000001200933d0 T expand_mult_add
000000012008e3a0 T expand_mult_highpart
0000000120093240 T expand_mult_highpart_adjust
000000012006f1d0 T expand_null_return
00000001201374d0 t expand_preferences
0000000120066330 T expand_return
000000012008ce50 T expand_shift
0000000120067600 T expand_start_bindings
0000000120069210 T expand_start_case
0000000120069500 T expand_start_case_dummy
0000000120065700 T expand_start_cond
000000012006ec10 T expand_start_else
000000012006eb00 T expand_start_elseif
0000000120065b90 T expand_start_loop
000000012006edd0 T expand_start_loop_continue_elsewhere
000000012006ea10 T expand_start_stmt_expr
000000012002f4a0 t expand_stmt_with_iterators_1
00000001200998a0 T expand_twoval_binop
0000000120099f20 T expand_unop
00000001201fed54 S explicit_flag_signed_bitfields
0000000120095510 T expr_size
00000001202002a8 S expr_stmts_for_value
00000001202000b8 S expression_obstack
00000001202003f8 S extenddftf2_libfunc
0000000120200320 S extenddfxf2_libfunc
000000012012bd50 T extended_count
0000000120200658 S extendsfdf2_libfunc
0000000120200418 S extendsftf2_libfunc
0000000120200488 S extendsfxf2_libfunc
000000012020fce0 B extendtab
00000001201fefc4 S extra_warnings
000000012008b320 T extract_bit_field
000000012008c510 t extract_fixed_bit_field
000000012012c9c0 t extract_left_shift
000000012008cb50 t extract_split_bit_field
0000000120205f50 B ezero
00000001201e7a08 D f_options
00000001201ea030 D factors
00000001201ffba8 s failure_errno.1
00000001201ff2b8 s fake_containing_scope
0000000120038b70 T fancy_abort
0000000120030830 T fatal
000000012002f9d0 T fatal_insn
0000000120038790 T fatal_insn_not_found
0000000120038740 T fatal_io_error
0000000120200688 S ffs_optab
00000001200d9980 t field_byte_offset
0000000120018f00 t field_decl_cmp
00000001201ff270 s filename_table
000000012015b4b0 t fill_eager_delay_slots
0000000120159ed0 t fill_simple_delay_slots
000000012015e3a0 t fill_slots_from_thread
000000012016ca70 T final
000000012010bd30 T final_biv_value
000000012016f890 T final_end_function
000000012010c1d0 T final_giv_value
000000012016cdb0 T final_scan_insn
00000001202009c0 S final_sequence
000000012016f720 T final_start_function
00000001201ffed8 S final_time
00000001201ff264 s finalizing
00000001201003a0 t find_and_verify_loops
000000012010df00 t find_basic_blocks
00000001200f5950 t find_best_addr
00000001200f67a0 t find_comparison_args
0000000120173f60 t find_constant_term_loc
00000001200e3280 t find_cross_jump
000000012013c220 t find_dummy_reload
000000012015cc40 t find_end_label
0000000120143fa0 T find_equiv_reg
0000000120134400 t find_free_reg
0000000120061c20 T find_function_data
0000000120144fc0 t find_inc_amount
00000001200b03c0 T find_last_value
000000012006f5c0 T find_loop_tree_blocks
0000000120103610 t find_mem_givs
0000000120093b30 T find_next_ref
0000000120137ba0 t find_reg
00000001200ae880 T find_reg_fusage
00000001200b09c0 T find_reg_note
00000001200ae9e0 T find_regno_fusage
00000001200b0a20 T find_regno_note
000000012013d610 T find_reloads
0000000120141490 t find_reloads_address
0000000120142720 t find_reloads_address_1
0000000120143360 t find_reloads_address_part
0000000120140ed0 t find_reloads_toplev
0000000120145e60 T find_replacement
0000000120173060 T find_single_use
0000000120170dc0 t find_single_use_1
0000000120107b10 t find_single_use_in_loop
0000000120117900 t find_split_point
000000012010aff0 t find_splittable_givs
000000012010a800 t find_splittable_regs
0000000120164a10 t find_symbolic_term
0000000120111f40 t find_use_as_address
0000000120010df0 T finish_decl
0000000120014560 T finish_enum
0000000120006fb0 T finish_file
0000000120015fe0 T finish_function
0000000120016430 T finish_incomplete_decl
00000001200257e0 T finish_init
0000000120013a60 T finish_struct
0000000120200010 S finput
00000001202006d8 S first_global_object_name
00000001201ff1e8 s first_insn
00000001201ff210 s first_label_num
00000001201ff190 s first_pool
000000012005ed80 T fix_lexical_addr
0000000120130180 T fix_register
00000001202003b0 S fixdfdi_libfunc
0000000120200370 S fixdfsi_libfunc
00000001202002f8 S fixdfti_libfunc
0000000120200920 S fixed_reg_set
0000000120213bec B fixed_regs
0000000120200468 S fixsfdi_libfunc
00000001202005f0 S fixsfsi_libfunc
0000000120200368 S fixsfti_libfunc
000000012020c850 B fixtab
0000000120200400 S fixtfdi_libfunc
00000001202003a0 S fixtfsi_libfunc
00000001202004c0 S fixtfti_libfunc
0000000120211728 B fixtrunctab
00000001202005c8 S fixunsdfdi_libfunc
00000001202004e8 S fixunsdfsi_libfunc
00000001202005a0 S fixunsdfti_libfunc
0000000120200378 S fixunssfdi_libfunc
0000000120200448 S fixunssfsi_libfunc
0000000120200328 S fixunssfti_libfunc
00000001202003c8 S fixunstfdi_libfunc
00000001202006b8 S fixunstfsi_libfunc
00000001202003b8 S fixunstfti_libfunc
0000000120200310 S fixunsxfdi_libfunc
00000001202004f8 S fixunsxfsi_libfunc
0000000120200650 S fixunsxfti_libfunc
000000012006f820 t fixup_gotos
000000012005bd20 t fixup_memory_subreg
00000001200493d0 T fixup_signed_type
000000012005c060 t fixup_stack_1
00000001200494e0 T fixup_unsigned_type
000000012005aaa0 t fixup_var_refs
000000012005afa0 t fixup_var_refs_1
000000012005ac10 t fixup_var_refs_insns
0000000120200318 S fixxfdi_libfunc
0000000120200630 S fixxfsi_libfunc
0000000120200490 S fixxfti_libfunc
00000001201fed50 S flag_allow_single_precision
00000001201fef74 S flag_caller_saves
00000001201ffc40 S flag_cond_mismatch
00000001201fff28 S flag_cse_follow_jumps
00000001201fff98 S flag_cse_skip_blocks
00000001201fef84 S flag_defer_pop
0000000120200024 S flag_delayed_branch
00000001201fff88 S flag_expensive_optimizations
00000001201fef9c S flag_fast_math
00000001201fef88 S flag_float_store
00000001201fef80 S flag_force_addr
00000001201fef7c S flag_force_mem
00000001201fefa4 S flag_gen_aux_info
00000001201fec24 G flag_gnu_linker
00000001201fefb4 S flag_inhibit_size_directive
00000001201ffef8 S flag_inline_functions
00000001201ffecc S flag_keep_inline_functions
00000001201fec78 g flag_minimal_debug
00000001201ffe50 S flag_no_asm
00000001201ffc98 S flag_no_builtin
0000000120200008 S flag_no_common
00000001201fef90 S flag_no_function_cse
00000001201fed58 S flag_no_ident
00000001201fff68 S flag_no_inline
00000001201ffc94 S flag_no_nonansi_builtin
00000001201fef98 S flag_no_peephole
00000001201fef94 S flag_omit_frame_pointer
00000001201fefbc S flag_pack_struct
00000001201fef78 S flag_pcc_struct_return
00000001201fefa8 S flag_pedantic_errors
00000001201fffdc S flag_pic
00000001201ffec8 S flag_pretend_float
00000001201fef30 S flag_print_asm_name
00000001201fefdc s flag_rerun_cse_after_loop
00000001201fefac S flag_schedule_insns
00000001201fefb0 S flag_schedule_insns_after_reload
0000000120200030 S flag_shared_data
00000001201ffe20 S flag_short_double
00000001201ffee8 S flag_short_enums
00000001201fffb8 S flag_short_temps
00000001201fec0c G flag_signed_bitfields
00000001201fff48 S flag_signed_char
00000001201fef8c S flag_strength_reduce
00000001201fefa0 S flag_syntax_only
00000001201fff08 S flag_thread_jumps
00000001201ffdf8 S flag_traditional
00000001201fff94 S flag_unroll_all_loops
00000001201fec1c G flag_unroll_loops
00000001201fefb8 S flag_verbose_asm
00000001201fff60 S flag_volatile
0000000120200068 S flag_volatile_global
00000001201fec20 G flag_writable_strings
00000001202033e8 b float_error
00000001201ffd88 S float_ftype_float
00000001201fff0c S float_handled
000000012020ba18 B float_handler
00000001200394c0 t float_signal
00000001201ffdd0 S float_type_node
0000000120200648 S floatdidf_libfunc
00000001202004b8 S floatdisf_libfunc
0000000120200638 S floatditf_libfunc
0000000120200668 S floatdixf_libfunc
0000000120200380 S floatsidf_libfunc
0000000120200528 S floatsisf_libfunc
00000001202004a0 S floatsitf_libfunc
00000001202003e0 S floatsixf_libfunc
000000012020e298 B floattab
00000001202003a8 S floattidf_libfunc
0000000120200530 S floattisf_libfunc
00000001202005f8 S floattitf_libfunc
0000000120200338 S floattixf_libfunc
0000000120200438 S flodiv_optab
0000000120038ce0 T floor_log2_wide
000000012010db80 T flow_analysis
000000012010eea0 t flow_delete_insn
00000001201fef10 S flow_dump
0000000120200048 S flow_dump_file
0000000120200040 S flow_time
0000000120164f30 t flush_pending_lists
000000012004c5f0 T fold
0000000120056820 t fold_convert
00000001200ee250 t fold_rtx
0000000120057700 t fold_truthop
00000001200e3cc0 T follow_jumps
000000012020099c S forbidden_regs
00000001200a69e0 T force_const_mem
0000000120049f20 T force_fit_type
00000001200fe2a0 t force_movables
00000001200b5f10 T force_next_line_note
0000000120095a00 T force_not_mem
0000000120074c00 T force_operand
0000000120094bf0 T force_reg
0000000120120540 t force_to_mode
00000001202007f8 S forced_labels
000000012014e490 t forget_old_reloads_1
000000012000b7d0 T forget_protocol_qualifiers
0000000120145b80 T form_sum
000000012018f1c0 t fpadd100_unit_blockage
000000012018b860 T fpadd100_unit_blockage_range
000000012018b5e0 T fpadd100_unit_ready_cost
000000012018ef60 t fpadd110_unit_blockage
000000012018b460 T fpadd110_unit_blockage_range
000000012018ec40 T fpadd110_unit_ready_cost
000000012018fa70 t fpmul100_unit_blockage
000000012018bb20 T fpmul100_unit_blockage_range
000000012018ba30 T fpmul100_unit_ready_cost
000000012018ed00 T fpmul110_unit_ready_cost
0000000120001a80 t frame_dummy
00000001201ffb88 s frame_laid_out
00000001202001d8 S frame_offset
00000001202009ac S frame_pointer_needed
00000001202007c0 S frame_pointer_rtx
00000001201ffb8c s frame_size
00000001201fedd8 s free_binding_level
00000001200e7f30 t free_element
00000001201ff420 s free_element_chain
00000001201688c0 t free_pending_lists
0000000120062020 T free_temp_slots
0000000120062090 T free_temps_for_rtl_expr
00000001201ff27c s ft_entries
00000001201ff278 s ft_entries_allocated
0000000120200498 S ftrunc_optab
0000000120200284 S function_call_count
00000001200da320 T function_cannot_inline_p
00000001201ff160 s function_defined
00000001201feed0 s function_format_list
00000001202000f0 S function_maybepermanent_obstack
00000001202000c8 S function_obstack
00000001200a8830 T function_section
00000001200199a0 t function_types_compatible_p
00000001201eb100 D function_units
000000012018ced0 T function_units_used
00000001200ce960 t fundamental_type_code
00000001201fff9c S g_switch_set
00000001201ffeb0 S g_switch_value
000000012003bd90 T gcc_obstack_init
0000000120200360 S gedf2_libfunc
00000001202003d0 S gehf2_libfunc
000000012018a050 T gen_absdf2
000000012018a0c0 T gen_abssf2
00000001200a1330 T gen_add2_insn
0000000120188dc0 T gen_adddf3
0000000120188f50 T gen_adddi3
0000000120188ee0 T gen_addsf3
0000000120188d50 T gen_addsi3
00000001201898e0 T gen_anddi3
00000001201815c0 T gen_andsi3
0000000120181aa0 T gen_ashlsi3
0000000120181f00 T gen_ashrsi3
0000000120028650 T gen_aux_info_record
0000000120185ee0 T gen_bcnd
0000000120186100 T gen_beq
0000000120186a80 T gen_bge
0000000120186bd0 T gen_bgeu
00000001201863a0 T gen_bgt
00000001201864f0 T gen_bgtu
0000000120126bf0 t gen_binary
0000000120186df0 T gen_ble
0000000120186f40 T gen_bleu
000000012018a630 T gen_blockage
0000000120186710 T gen_blt
0000000120186860 T gen_bltu
0000000120186250 T gen_bne
0000000120185ff0 T gen_bxx
000000012018a130 T gen_call
0000000120187a30 T gen_call_block_move
0000000120187dc0 T gen_call_movstrsi_loop
000000012018a2e0 T gen_call_value
0000000120182830 T gen_casesi
0000000120182fc0 T gen_casesi_enter
0000000120182de0 T gen_casesi_jump
0000000120185360 T gen_cmpdf
0000000120185260 T gen_cmpsf
0000000120185120 T gen_cmpsi
0000000120027d40 t gen_decl
000000012018a6d0 T gen_decrement_and_branch_until_zero
0000000120181340 T gen_divdf3
0000000120189870 T gen_divsf3
000000012017f050 T gen_divsi3
0000000120183160 T gen_dummy
000000012018a590 T gen_epilogue
00000001200a15e0 T gen_extend_insn
0000000120188720 T gen_extendhisi2
0000000120188850 T gen_extendqihi2
0000000120188980 T gen_extendqisi2
0000000120188ab0 T gen_extendsfdf2
00000001201885a0 T gen_extendsidi2
0000000120189e90 T gen_extv
0000000120189f00 T gen_extzv
0000000120189d60 T gen_ffssi2
0000000120188c70 T gen_fix_truncdfsi2
0000000120188ce0 T gen_fix_truncsfsi2
0000000120188b90 T gen_floatsidf2
0000000120188c00 T gen_floatsisf2
0000000120028c20 t gen_formal_list_for_func_def
00000001200287b0 t gen_formal_list_for_type
00000001200b1bf0 T gen_highpart
00000001200b3e60 T gen_imagpart
000000012018a690 T gen_indirect_jump
00000001200b43f0 T gen_inline_header_rtx
0000000120189950 T gen_iordi3
0000000120181780 T gen_iorsi3
0000000120183100 T gen_jump
00000001200b4360 T gen_label_rtx
0000000120187160 T gen_locate1
0000000120187220 T gen_locate2
00000001200b4000 T gen_lowpart
00000001200b14c0 T gen_lowpart_common
00000001201265a0 t gen_lowpart_for_combine
00000001200f1980 T gen_lowpart_if_possible
0000000120182360 T gen_lshrsi3
00000001201833f0 T gen_m88k_rcs_id
00000001201877a0 T gen_movdf
00000001201876d0 T gen_movdi
000000012009cbd0 T gen_move_insn
0000000120187530 T gen_movhi
0000000120187600 T gen_movqi
0000000120187870 T gen_movsf
0000000120187370 T gen_movsi
0000000120187940 T gen_movstrsi
00000001201893a0 T gen_muldf3
00000001201894c0 T gen_mulsf3
0000000120189330 T gen_mulsi3
0000000120189f70 T gen_negdf2
0000000120189fe0 T gen_negsf2
00000001201827c0 T gen_negsi2
000000012018a4c0 T gen_nop
0000000120189aa0 T gen_one_cmpldi2
0000000120189a30 T gen_one_cmplsi2
000000012018a520 T gen_prologue
00000001200828f0 T gen_push_operand
00000001200b3e10 T gen_realpart
00000001200b1290 T gen_reg_rtx
0000000120151de0 T gen_reload
0000000120187440 T gen_reload_insi
000000012018a4e0 T gen_return
0000000120189b70 T gen_rotlsi3
0000000120189cf0 T gen_rotrsi3
00000001200b1100 T gen_rtvec
00000001200b1210 T gen_rtvec_v
00000001200b0e00 T gen_rtx
00000001201269a0 t gen_rtx_combine
00000001201854a0 T gen_seq
00000001200b64a0 T gen_sequence
0000000120185920 T gen_sge
00000001201859e0 T gen_sgeu
0000000120185620 T gen_sgt
00000001201856e0 T gen_sgtu
0000000120185aa0 T gen_sle
0000000120185b60 T gen_sleu
00000001201857a0 T gen_slt
0000000120185860 T gen_sltu
0000000120185560 T gen_sne
0000000120183430 T gen_split_1
000000012017eed0 T gen_split_125
000000012017e110 T gen_split_13
000000012017e390 T gen_split_14
000000012017e5a0 T gen_split_15
0000000120184140 T gen_split_16
00000001201842e0 T gen_split_17
0000000120184450 T gen_split_18
000000012017e7f0 T gen_split_19
0000000120183610 T gen_split_2
000000012017ea70 T gen_split_20
000000012017ec80 T gen_split_21
00000001201845e0 T gen_split_22
0000000120184780 T gen_split_23
00000001201848f0 T gen_split_24
00000001201837f0 T gen_split_3
0000000120184a80 T gen_split_31
0000000120184bb0 T gen_split_33
0000000120184d00 T gen_split_35
0000000120184e30 T gen_split_37
00000001201839d0 T gen_split_4
0000000120183bb0 T gen_split_5
0000000120183d90 T gen_split_6
0000000120183f70 T gen_split_7
0000000120185c20 T gen_split_75
0000000120185d70 T gen_split_80
00000001200a1470 T gen_sub2_insn
00000001201890b0 T gen_subdf3
0000000120189240 T gen_subdi3
00000001201891d0 T gen_subsf3
0000000120189040 T gen_subsi3
0000000120189b10 T gen_tbnd
0000000120189570 T gen_tcnd_divide_by_zero
0000000120184f80 T gen_test
0000000120189530 T gen_trap_divide_by_zero
0000000120188b20 T gen_truncdfsf2
0000000120026a00 t gen_type
0000000120180e90 T gen_udivsi3
0000000120126f10 t gen_unary
00000001201899c0 T gen_xordi3
0000000120181920 T gen_xorsi3
00000001201881f0 T gen_zero_extendhisi2
0000000120188320 T gen_zero_extendqihi2
0000000120188450 T gen_zero_extendqisi2
00000001201049d0 t general_induction_var
0000000120171140 T general_operand
0000000120200428 S gesf2_libfunc
000000012018ee20 T get_attr_cpu
000000012018d8b0 T get_attr_fpu
000000012016be50 T get_attr_length
000000012018da20 T get_attr_type
0000000120048ce0 T get_best_mode
0000000120157380 t get_branch_condition
0000000120107100 T get_condition
0000000120107760 T get_condition_for_loop
000000012002c580 T get_directive_line
0000000120041c40 T get_file_function_name
0000000120062d80 T get_first_block_beg
00000001200b3df0 T get_first_label_num
0000000120062d30 T get_first_nonparm_insn
0000000120061cb0 T get_frame_size
000000012003d8a0 T get_identifier
00000001200746b0 T get_inner_reference
00000001200745e0 t get_inner_unaligned_p
00000001200b4830 T get_insns
00000001200afcb0 T get_integer_term
0000000120156dd0 t get_jump_flags
00000001200e39a0 T get_label_after
00000001200e3910 T get_label_before
00000001200b4850 T get_last_insn
00000001200b48b0 T get_last_insn_anywhere
00000001201299d0 t get_last_value
00000001201297d0 t get_last_value_validate
00000001200b4900 T get_max_uid
0000000120041960 T get_narrower
0000000120013760 T get_parm_info
0000000120048e70 T get_pending_sizes
00000001200842e0 t get_pointer_alignment
00000001200a9760 T get_pool_constant
00000001200a9830 T get_pool_mode
00000001200a9900 T get_pool_offset
00000001200a99d0 T get_pool_size
00000001200afd30 T get_related_value
00000001200384e0 T get_run_time
0000000120041e00 T get_set_constructor_bits
0000000120041fc0 T get_set_constructor_bytes
0000000120021790 t get_spelling
00000001200416b0 T get_unwidened
0000000120016e20 T getdecls
0000000120200580 S getf2_libfunc
0000000120198ed0 T getpwd
0000000120016e40 T gettags
0000000120200678 S gexf2_libfunc
0000000120135fa0 T global_alloc
0000000120200090 S global_alloc_time
00000001201fede0 s global_binding_level
00000001200164d0 T global_bindings_p
0000000120136f90 t global_conflicts
00000001202007e8 S global_const_equiv_map
00000001202007f0 S global_const_equiv_map_size
00000001201fef20 S global_reg_dump
0000000120200078 S global_reg_dump_file
0000000120213d0c B global_regs
0000000120130270 T globalize_reg
00000001201ff0e0 s goto_fixup_chain
0000000120011750 t grokdeclarator
0000000120017710 T grokfield
0000000120013550 t grokparms
0000000120016ee0 T groktypename
0000000120016f20 T groktypename_in_parm_context
000000012006c550 t group_case_nodes
0000000120200340 S gtdf2_libfunc
0000000120200670 S gthf2_libfunc
0000000120200500 S gtsf2_libfunc
0000000120200460 S gttf2_libfunc
0000000120200598 S gtxf2_libfunc
000000012000c110 T handle_pragma_token
00000001200a99f0 T handle_pragma_weak
0000000120008c80 T handle_sysv_pragma
00000001202007e0 S hard_frame_pointer_rtx
0000000120095f70 T hard_function_value
0000000120096090 T hard_libcall_value
00000001201ff7d0 s hard_reg_conflicts
00000001201ff7e0 s hard_reg_copy_preferences
00000001201ff7e8 s hard_reg_full_preferences
00000001201ff7d8 s hard_reg_preferences
000000012013c7e0 t hard_reg_set_here_p
0000000120152d20 t hard_reg_use_compare
00000001201ff3d8 s hard_regs_in_table
00000001201ff7c4 s hard_regs_live
00000001201ff938 s hard_regs_live
00000001201ff85c s hard_regs_live_known
00000001201ff948 s hard_regs_need_restore
00000001201ff940 s hard_regs_saved
00000001201ff418 s hash_arg_in_memory
00000001201ff41c s hash_arg_in_struct
0000000120201258 b hash_table
0000000120209db8 b hashtab
00000001200a1440 T have_add2_insn
00000001200a1580 T have_sub2_insn
00000001201ff244 s have_used_extensions
00000001201ffae8 s high_block_linenum
00000001201ffaec s high_function_linenum
00000001201ff120 s highest_outgoing_arg_in_use
00000001201ff6a8 s highest_regno_in_uid_map
00000001201ffff0 S id_clash_len
00000001201feff8 S id_string_size
000000012005f2a0 T identify_blocks
00000001201fecf8 s if_stmt_file
00000001201fed00 s if_stmt_line
00000001201219a0 t if_then_else_cond
00000001200fe1d0 t ignore_some_movables
00000001200a4ad0 T immed_double_const
00000001200a9420 T immed_real_const
00000001200a4d30 T immed_real_const_1
00000001201732d0 T immediate_operand
0000000120200148 S immediate_size_expand
00000001200169f0 T implicitly_declare
00000001201ff08c s in_arg_offset
00000001201ff168 s in_named_name
00000001201ff308 s in_nonparm_insns
00000001200165c0 T in_parm_level_p
00000001201ff148 s in_section
00000001200b6480 T in_sequence_p
00000001201fef68 S in_system_header
00000001200a86e0 T in_text_section
0000000120152660 t inc_for_reload
00000001201fef58 S incomplete_decl_finalize_hook
0000000120018f40 T incomplete_type_error
00000001201ff1b4 s indent.0
0000000120047830 T indent_to
0000000120044df0 T index_type_equal
0000000120173810 T indirect_operand
0000000120200999 S indirect_symref_ok
00000001200af270 T inequality_comparisons_p
00000001202002ec S inhibit_defer_pop
00000001201fefc0 S inhibit_warnings
00000001201ff348 s init.0
00000001201ff34c s init.3
00000001201ff350 s init.4
00000001201641d0 T init_alias_analysis
00000001201740b0 T init_all_optabs
00000001201549c0 T init_caller_save
00000001200a9560 T init_const_rtx_hash_table
000000012000e5d0 T init_decl_processing
00000001200b35a0 T init_emit
00000001200b3800 T init_emit_once
0000000120089c70 T init_expmed
0000000120082040 T init_expr
000000012006ff10 T init_expr_once
000000012016f630 T init_final
000000012002cb10 T init_function_format_info
000000012005f5e0 T init_function_start
000000012016f700 T init_insn_lengths
000000012002e8e0 T init_iterators
0000000120007110 T init_lex
00000001200a1640 t init_libfuncs
0000000120107800 T init_loop
000000012018a8b0 T init_mov_optab
0000000120084200 t init_noncopied_parts
000000012003b990 T init_obstacks
000000012009ecb0 T init_optabs
0000000120082a70 T init_pending_stack_adjust
0000000120172e30 T init_recog
0000000120172e10 T init_recog_no_volatile
0000000120114280 t init_reg_last_arrays
0000000120109a30 t init_reg_map
0000000120130b10 t init_reg_modes
000000012012d1e0 T init_reg_sets
00000001201307a0 t init_reg_sets_1
000000012012fec0 T init_regs
000000012010ff40 t init_regset_vector
0000000120147440 T init_reload
00000001200ac2b0 T init_rtl
0000000120156100 T init_save_areas
000000012006e240 T init_stmt
000000012006e270 T init_stmt_for_function
00000001200425f0 T init_tree_codes
00000001201ea0f8 d initial_call_used_regs
00000001201ea0b8 d initial_fixed_regs
000000012010d3a0 t initial_reg_note_copy
00000001201ff028 s initial_trampoline.1
00000001201ffea0 S initialization_message
00000001200dfa70 t initialize_for_inline
00000001201ff26c s initialized.2
00000001200213c0 T initializer_constant_valid_p
00000001201ffe90 S initializer_stack
0000000120200198 S inline_function_decl
0000000120200108 S inline_obstacks
00000001201fff20 S input_file_stack
000000012020000c S input_file_stack_tick
00000001201fffc0 S input_filename
00000001200e7f50 t insert
00000001200167b0 T insert_block
00000001200e7ab0 t insert_regs
0000000120155d20 t insert_save_restore
00000001202009b8 S insn_addresses
00000001201ff9f0 s insn_blockage
0000000120164cf0 t insn_cost
00000001201ff9e0 s insn_costs
00000001201ffac8 s insn_counter
00000001202009b4 S insn_current_address
000000012018ea90 T insn_current_length
00000001201109b0 t insn_dead_p
000000012018a8c0 T insn_default_length
000000012017c590 T insn_extract
00000001201bf238 R insn_gen_function
00000001201ffb28 s insn_lengths
00000001201ff9d0 s insn_luid
00000001201ff2d8 s insn_map
00000001201cec10 R insn_n_alternatives
00000001201bff7c R insn_n_dups
00000001201bfb10 R insn_n_operands
00000001201ea800 D insn_name
00000001201fecc8 G insn_name_ptr
00000001201ffb08 s insn_noperands
00000001201c03e8 R insn_operand_constraint
00000001201c5c58 R insn_operand_mode
00000001201c93a0 R insn_operand_predicate
00000001201c8890 R insn_operand_strict_low
00000001201be960 R insn_outfun
00000001201ff9d8 s insn_priority
0000000120209570 b insn_queue
00000001201ff9f8 s insn_ref_count
00000001201be088 R insn_template
00000001201ffa38 s insn_tick
00000001201ff9e8 s insn_units
000000012018eb20 T insn_variable_length_p
0000000120063780 t instantiate_decls_1
00000001200621a0 T instantiate_virtual_regs
000000012005c860 t instantiate_virtual_regs_1
0000000120197760 T int32_operand
0000000120197730 T int5_operand
00000001201ffcf8 S intDI_type_node
00000001201ffd08 S intHI_type_node
00000001201ffc78 S intQI_type_node
00000001201ffcd8 S intSI_type_node
00000001201ffdb0 S int_array_type_node
0000000120045270 T int_fits_type_p
00000001201ffe08 S int_ftype_cptr_cptr_sizet
00000001201ffd30 S int_ftype_int
00000001201ffca8 S int_ftype_ptr_ptr_int
00000001201ffde0 S int_ftype_string_string
00000001201ea238 d int_reg_class_contents
0000000120043a30 T int_size_in_bytes
0000000120042cf0 T integer_all_onesp
0000000120196960 T integer_ok_for_set
00000001201ffd58 S integer_one_node
0000000120042b90 T integer_onep
0000000120042ef0 T integer_pow2p
00000001201ffe80 S integer_type_node
00000001201ffd68 S integer_zero_node
0000000120042ac0 T integer_zerop
00000001200dd810 t integrate_decl_tree
00000001200dd710 t integrate_parm_decls
00000001201ffefc S integration_time
00000001200387c0 T interim_eh
0000000120200088 S interim_eh_hook
0000000120025d50 t internal_build_compound_expr
00000001200e87e0 t invalidate
00000001200f5710 t invalidate_for_call
00000001200f2dd0 t invalidate_from_clobbers
00000001200fb1e0 t invalidate_skipped_set
0000000120100fe0 T invariant_p
00000001200e4a60 T invert_exp
00000001200e6f60 T invert_jump
000000012004c250 T invert_truthvalue
0000000120200538 S ior_optab
0000000120044300 T is_attribute_p
0000000120006eb0 T is_class_name
000000012000b660 T is_reserved_word
00000001201ffea8 S iter_stack
000000012010d480 t iteration_info
000000012002ef90 T iterator_expand
000000012002ee60 T iterator_for_loop_end
000000012002ed40 T iterator_for_loop_start
00000001201feee8 s ixp_firstobj
0000000120201150 b ixp_obstack
00000001201fef28 S jump2_opt_dump
00000001201fffc8 S jump2_opt_dump_file
00000001200e3a30 t jump_back_p
00000001201ff318 s jump_chain
00000001201fef00 S jump_opt_dump
00000001201fffb0 S jump_opt_dump_file
00000001200e0140 T jump_optimize
0000000120200070 S jump_time
000000012007e7c0 T jumpif
000000012007e790 T jumpifnot
00000001201ffb38 s junk
00000001201fedec s keep_next_if_subblocks
00000001200164f0 T keep_next_level
00000001201fede8 s keep_next_level_flag
0000000120016510 T kept_level_p
00000001201222b0 t known_cond
00000001202034f8 b label.4
00000001201ff0f8 s label_counter.3
00000001201fedf0 s label_level_chain
00000001201ff2d0 s label_map
00000001201fec50 g label_num
000000012006e510 T label_rtx
00000001201ff628 s label_tick
00000001201ff14c s labelno.1
00000001201ff150 s labelno.2
0000000120200a30 S labelrefs
0000000120200a38 S labels
0000000120100f60 t labels_in_range_p
0000000120006de0 T lang_decode_option
00000001201fffa0 S lang_expand_expr
0000000120006e60 T lang_finish
0000000120006e70 T lang_identify
0000000120006e10 T lang_init
00000001201e7db0 D lang_options
00000001201fec00 G language_string
00000001201fff5c S larger_than_size
00000001201ffb78 s last_addr.2
00000001202006d0 S last_assemble_variable_decl
00000001201ff0c8 s last_block_end_note
00000001201ff5d4 s last_call_cuid
00000001201ff558 s last_call_suid
000000012006f4d0 T last_cleanup_this_contour
00000001201fefd0 s last_error_function
00000001201fefec s last_error_tick
00000001201ff0b8 s last_expr_type
00000001201ff0c0 s last_expr_value
00000001201ff208 s last_filename
00000001201ff288 s last_filename
00000001201ffaf0 s last_filename
00000001201ffa98 s last_function_call
00000001201fed88 s last_function_parm_tags
00000001201fed80 s last_function_parms
00000001201ffac0 s last_ignored_compare
00000001201ff1f0 s last_insn
00000001201ff430 s last_jump_equiv_class
00000001201ff214 s last_label_num
00000001201ff268 s last_line_entry_num.0
00000001201ff200 s last_linenum
00000001201ffae4 s last_linenum
00000001201ff540 s last_mem_set
00000001201ff048 s last_parm_insn
00000001201ffa90 s last_pending_memory_flush
00000001201ff198 s last_pool
00000001201ffaa8 s last_scheduled_insn
00000001201ff8ac s last_spill_reg
0000000120106ed0 t last_use_this_basic_block
00000001201ffbf0 S lastiddecl
00000001200144f0 t layout_array_type
00000001200478c0 T layout_decl
00000001200495d0 t layout_record
0000000120047db0 T layout_type
0000000120049bc0 t layout_union
00000001201ffe00 S ldouble_ftype_ldouble
00000001201ea470 d leaf.0
00000001202009c8 S leaf_function
000000012016fa00 T leaf_function_p
0000000120200480 S ledf2_libfunc
0000000120191870 T legitimize_address
0000000120197110 T legitimize_operand
0000000120200330 S lehf2_libfunc
00000001202005c0 S lesf2_libfunc
0000000120200560 S letf2_libfunc
00000001202003d8 S lexf2_libfunc
00000001200fe070 t libcall_benefit
0000000120110c60 t libcall_dead_p
00000001200fdec0 t libcall_other_reg
000000012010eec0 t life_analysis
00000001201ffa00 s line_note
00000001201ffb20 s line_note_exists
00000001201ffa08 s line_note_head
00000001201feff0 s line_position
0000000120200094 S lineno
00000001200435d0 T list_length
00000001200436d0 T listify
0000000120130d90 T local_alloc
00000001201fff8c S local_alloc_time
00000001201fef1c S local_reg_dump
00000001201ffeb8 S local_reg_dump_file
0000000120206f90 b local_reg_live_length
0000000120206e90 b local_reg_n_refs
00000001202001e0 S local_vars_size
000000012005e850 T locate_and_pad_parm
00000001200d9aa0 t location_attribute
00000001200d78e0 t location_or_const_value_attribute
00000001201ffca0 S long_double_type_node
00000001201ffc88 S long_ftype_long
00000001201ffd50 S long_integer_type_node
00000001201ffe40 S long_long_integer_type_node
00000001201ffd18 S long_long_unsigned_type_node
00000001201ffe88 S long_unsigned_type_node
00000001200444f0 T lookup_attribute
000000012001a760 t lookup_field
00000001200cdce0 t lookup_filename
0000000120006ea0 T lookup_interface
0000000120016b90 T lookup_label
000000012000e4c0 T lookup_name
000000012000e500 T lookup_name_current_level
000000012000e560 T lookup_name_current_level_global
0000000120063370 T lookup_static_chain
00000001201ff470 s loop_continue
00000001201ff6a4 s loop_cost
00000001201ff538 s loop_depth
00000001201ff6a0 s loop_depth
00000001201ff770 s loop_depth
00000001201fef08 S loop_dump
0000000120200050 S loop_dump_file
0000000120200820 S loop_dump_stream
00000001201ff4f0 s loop_final_value
00000001201ff468 s loop_has_call
00000001201ff46c s loop_has_volatile
00000001201ff4e8 s loop_increment
00000001201ff4e0 s loop_initial_value
00000001201ff460 s loop_invalid
00000001201ff4d8 s loop_iteration_var
000000012010c720 T loop_iterations
0000000120200848 S loop_iv_list
0000000120200808 S loop_n_iterations
0000000120200840 S loop_number_exit_count
0000000120200810 S loop_number_exit_labels
00000001201ff458 s loop_number_loop_ends
00000001201ff450 s loop_number_loop_starts
00000001200fc370 T loop_optimize
0000000120200818 S loop_outer_loop
0000000120101da0 t loop_reg_used_before_p
00000001202002c0 S loop_stack
0000000120206608 b loop_store_mems
00000001201ff498 s loop_store_mems_idx
00000001201ffed0 S loop_time
00000001201ff4a8 s loops_enclosed
0000000120055f40 T lrotate_double
0000000120055db0 T lshift_double
000000012008cab0 t lshift_value
00000001202006c0 S lshr_optab
00000001202005a8 S ltdf2_libfunc
0000000120200548 S lthf2_libfunc
0000000120200518 S ltsf2_libfunc
0000000120200470 S lttf2_libfunc
0000000120200430 S ltxf2_libfunc
000000012001f0a0 T lvalue_or_else
000000012001eff0 T lvalue_p
00000001200c0300 t m16m
0000000120197de0 T m88k_begin_epilogue
0000000120197cd0 T m88k_begin_prologue
0000000120195430 T m88k_builtin_saveregs
0000000120200a08 S m88k_case_index
0000000120200a00 S m88k_compare_op0
0000000120200a18 S m88k_compare_op1
00000001202009e8 S m88k_compare_reg
00000001202009e0 S m88k_cpu
0000000120198220 T m88k_debugger_offset
0000000120197e80 T m88k_end_epilogue
0000000120197cf0 T m88k_end_prologue
0000000120198160 T m88k_expand_epilogue
0000000120194880 T m88k_expand_prologue
00000001201ffb4c S m88k_fp_offset
00000001201987f0 T m88k_function_arg
00000001201ffb48 S m88k_function_number
00000001201ffb40 S m88k_gp_threshold
0000000120194400 T m88k_layout_frame
00000001201fecd0 G m88k_pound_sign
00000001201ffb44 S m88k_prologue_done
0000000120200a10 S m88k_short_data
00000001201ffb50 S m88k_stack_size
00000001202009f0 S m88k_version
00000001202009f8 S m88k_volatile_code
00000001201eb4a8 d m_options
0000000120036b90 T main
0000000120200028 S main_input_filename
0000000120197800 T mak_mask_p
000000012011f8b0 t make_compound_operation
00000001200a1df0 T make_decl_rtl
000000012011ed90 t make_extraction
0000000120122800 t make_field_assignment
00000001200a1880 T make_function_rtl
00000001200b4bf0 T make_insn_raw
00000001200bb910 t make_nan
000000012003d170 T make_node
000000012000b790 T make_pointer_declarator
000000012015c790 t make_return_insns
00000001200b46f0 T make_safe_from
0000000120049170 T make_signed_type
0000000120091e70 T make_tree
000000012003e220 T make_tree_vec
00000001200492c0 T make_unsigned_type
00000001200a89c0 T make_var_volatile
000000012001f3c0 T mark_addressable
0000000120139ec0 T mark_elimination
000000012014b680 T mark_home_live
00000001200e3f10 t mark_jump_label
000000012010ecc0 t mark_label_ref
0000000120134950 t mark_life
0000000120100be0 t mark_loop_jump
00000001200e7250 t mark_modified_reg
0000000120152c40 t mark_not_eliminable
0000000120156280 t mark_referenced_resources
0000000120139030 t mark_reg_clobber
0000000120139220 t mark_reg_conflicts
0000000120139370 t mark_reg_death
00000001201394c0 t mark_reg_live_nc
00000001200b3d50 T mark_reg_pointer
0000000120138df0 t mark_reg_store
0000000120152e70 t mark_reload_reg_in_use
000000012014b750 t mark_scratch_live
000000012006a560 T mark_seen_cases
0000000120110e70 t mark_set_1
0000000120110d50 t mark_set_regs
0000000120156860 t mark_set_resources
00000001200df8d0 T mark_stores
0000000120158370 t mark_target_live_regs
0000000120061e00 T mark_temp_addr_taken
0000000120111510 t mark_used_regs
000000012012a230 t mark_used_regs_combine
0000000120063640 T mark_varargs
000000012008c9c0 t mask_rtx
00000001201ff788 s max_allocno
00000001201ffb0c s max_block_depth
00000001201ff42c s max_elements_made
00000001201eb3f4 d max_from_align
00000001201ff320 s max_jump_chain
00000001200b3db0 T max_label_num
00000001201ff44c s max_loop_num
00000001201ff448 s max_luid
0000000120200930 S max_parallel
00000001201ff050 s max_parm_reg
00000001201ff2e8 s max_parm_reg
0000000120062d10 T max_parm_reg_num
00000001201ffab0 s max_priority
00000001201ff358 s max_qty
00000001201ff354 s max_reg
0000000120200830 S max_reg_before_loop
00000001200b3d90 T max_reg_num
00000001202008a4 S max_regno
0000000120200880 S max_scratch
0000000120200158 S max_stack_depth
00000001201ff408 s max_uid
00000001201ff978 s max_uid
00000001201ff5b8 s max_uid_cuid
00000001201ff4f8 s max_uid_for_flow
0000000120200868 S max_uid_for_loop
000000012020014c S maximum_field_alignment
00000001201fed24 s maxtoken
0000000120206c8c b may_move_cost
00000001201ff488 s may_not_optimize
00000001200aef80 T may_trap_p
0000000120016f60 T maybe_build_cleanup
0000000120006ef0 T maybe_building_objc_message_expr
0000000120106830 t maybe_eliminate_biv
00000001201069c0 t maybe_eliminate_biv_1
0000000120006ec0 T maybe_objc_check_decl
0000000120006ed0 T maybe_objc_comptypes
0000000120006ee0 T maybe_objc_method_name
00000001202000c0 S maybepermanent_firstobj
000000012020bdf0 B maybepermanent_obstack
0000000120190250 t mem100_unit_blockage
000000012018c440 T mem100_unit_blockage_range
0000000120190b80 t mem100_unit_conflict_cost
000000012018c1d0 T mem100_unit_ready_cost
000000012018fca0 t mem110_unit_blockage
000000012018be80 T mem110_unit_blockage_range
000000012018bc10 T mem110_unit_ready_cost
00000001201ff5d0 s mem_last_set
0000000120200568 S memcmp_libfunc
0000000120200520 S memcpy_libfunc
0000000120207540 b memlocs
0000000120093c80 T memory_address
00000001200956f0 T memory_address_noforce
00000001201716e0 T memory_address_p
0000000120173730 T memory_operand
0000000120131600 t memref_referenced_p
0000000120160a20 t memrefs_conflict_p
0000000120200420 S memset_libfunc
00000001200e77c0 t mention_regs
00000001200f5390 t merge_equiv_classes
000000012012cba0 t merge_outer_ops
00000001201ff23c S merror
0000000120200a88 b message.0
00000001201e740e d message.4
000000012002d590 T min_precision
00000001201fee04 s missing_braces_mentioned
00000001200cee50 t mod_fund_type_attribute
00000001200cf2c0 t mod_u_d_type_attribute
00000001201e9488 D mode_class
0000000120173e40 T mode_dependent_address_p
0000000120049050 T mode_for_size
00000001201eb3d0 d mode_from_align
0000000120173e50 T mode_independent_operand
00000001201e93a0 D mode_name
00000001201e94fc D mode_size
000000012020bf38 B mode_to_const_map
000000012020bfac B mode_to_load_map
000000012020c094 B mode_to_store_map
00000001201e9570 D mode_unit_size
00000001201e95e4 D mode_wider_mode
000000012014ac70 t modes_equiv_for_class_p
00000001200ad550 T modified_between_p
00000001200ad830 T modified_in_p
00000001201ff340 s modified_mem
00000001201ff338 s modified_regs
00000001202000e0 S momentary_firstobj
00000001202000a8 S momentary_function_firstobj
000000012020bb28 B momentary_obstack
0000000120200118 S momentary_stack
00000001201928e0 T mostly_false_jump
0000000120156f70 t mostly_true_jump
0000000120200618 S mov_optab
0000000120082310 T move_block_from_reg
0000000120082240 T move_block_to_reg
0000000120082c80 t move_by_pieces
0000000120071640 t move_by_pieces_1
0000000120071540 t move_by_pieces_ninsns
000000012006f470 T move_cleanups_up
0000000120206bc8 b move_cost
000000012012a4e0 t move_deaths
00000001200fef90 t move_movables
0000000120197240 T move_operand
00000001201ff490 s moved_once
000000012020c020 B movstr_optab
00000001202005e8 S movstrict_optab
00000001200bb870 t mtherr
00000001202039c8 b mul_cost
000000012004a0a0 T mul_double
0000000120203b24 b mul_highpart_cost
0000000120203ab0 b mul_widen_cost
00000001201ffbbc s n.3
00000001202008b0 S n_basic_blocks
0000000120200958 S n_earlyclobbers
00000001201ff428 s n_elements_made
00000001201ff848 s n_memlocs
0000000120200900 S n_non_fixed_regs
00000001201ff668 s n_occurrences
0000000120145880 T n_occurrences
00000001202009a4 S n_regs_saved
00000001201ff830 s n_regs_set
0000000120200954 S n_reloads
00000001201ff844 s n_replacements
00000001201ff8a0 s n_spills
00000001201ff478 s n_times_set
00000001201ff480 s n_times_used
00000001201fed38 s name.2
00000001201fedb0 s named_labels
00000001200a8700 T named_section
0000000120200388 S nedf2_libfunc
00000001201fefe8 s need_error_newline
0000000120055d70 T neg_double
00000001202005d0 S neg_optab
00000001201ff13c s negate_cost
0000000120093010 T negate_rtx
0000000120200690 S nehf2_libfunc
0000000120200680 S nesf2_libfunc
00000001202002b0 S nesting_depth
00000001202002a0 S nesting_stack
0000000120200350 S netf2_libfunc
00000001201ff8f8 s new_asm_operands_vec
00000001200f5100 t new_basic_block
00000001201feca8 g new_block
000000012016a0d0 t new_insn_dead_notes
000000012014ae20 t new_spill_reg
00000001201fed20 s newline_warning.1
00000001201ff5ec s newpat_used_regs
00000001202004c8 S nexf2_libfunc
00000001200b4ab0 T next_active_insn
00000001202009a8 S next_block_index
00000001201ff254 s next_block_number
00000001201fec88 g next_block_number
00000001201ff004 s next_decl_uid
00000001200b4920 T next_insn
00000001200b4b90 T next_label
00000001200e6ed0 T next_nondeleted_insn
00000001200b49d0 T next_nonnote_insn
00000001201ff260 s next_pubname_number
00000001201ff35c s next_qty
00000001201ff6b0 s next_qty
00000001200b4a30 T next_real_insn
00000001201fec38 g next_type_uid
00000001201fec8c g next_unused_dienum
00000001201fec08 g nextchar
00000001201ff020 s nlab.0
00000001201ffbb0 s nlab.0
0000000120134bb0 t no_conflict_p
00000001201ff7f8 s no_global_alloc_regs
00000001200afdb0 T no_labels_between_p
00000001201ff21c s no_line_numbers
00000001200563a0 T non_lvalue
00000001201734b0 T nonimmediate_operand
00000001201ea570 d nonleaf.1
00000001202001b0 S nonlocal_goto_handler_slot
0000000120200220 S nonlocal_goto_stack_level
0000000120062ae0 T nonlocal_label_rtx_list
0000000120200268 S nonlocal_labels
0000000120173540 T nonmemory_operand
0000000120123780 t nonzero_bits
00000001201ff638 s nonzero_bits_mode
00000001201ff648 s nonzero_sign_valid
00000001201078e0 t note_addr_stored
00000001201ff4b0 s note_insn
00000001201e9a70 D note_insn_name
00000001201ffa10 s note_list
00000001200f2a60 t note_mem_written
00000001200dfe50 t note_modified_parmregs
00000001200ae350 T note_stores
00000001201ffb80 s nregs
00000001200436a0 T nreverse
00000001201ffdc8 S null_pointer_node
0000000120197c50 T null_prologue
00000001201ffb30 s num_changes
000000012018d780 T num_delay_slots
00000001201ff8d0 s num_eliminable
0000000120209530 b num_filled_delays
0000000120209520 b num_insns_needing_delays
00000001201ff8e8 s num_labels
00000001201ff4a4 s num_mem_sets
00000001201ff4a0 s num_movables
00000001201ff8cc s num_not_at_initial_offset
00000001201ff330 s num_same_regs
00000001201ff510 s num_scratch
0000000120124310 t num_sign_bit_copies
0000000120173000 T num_validated_changes
00000001201ffb84 s nxregs
000000012003ca00 T oballoc
00000001201fef6c S obey_regdecls
0000000120042310 T obfree
00000001200423e0 T object_permanent_p
00000001202000d0 S obstack_stack
0000000120201200 b obstack_stack_obstack
0000000120197a60 T odd_relop
00000001201ff8e0 s offsets_at
00000001201ff8d8 s offsets_known_at
0000000120173b60 T offsettable_address_p
0000000120173a80 T offsettable_memref_p
0000000120173af0 T offsettable_nonstrict_memref_p
00000001201ff8f0 s old_asm_operands_vec
00000001201ffa28 s old_live_regs
0000000120200348 S one_cmpl_optab
0000000120206d50 b op_costs
000000012003b850 t open_dump_file
000000012004b950 T operand_equal_p
00000001200b1df0 T operand_subword
00000001200b41c0 T operand_subword_force
000000012013ce20 T operands_match_p
00000001201ec06c D optab_bit_and_expr
00000001201ec09c D optab_bit_ior_expr
00000001201ec544 D optab_bit_not_expr
00000001201ec0cc D optab_bit_xor_expr
00000001201ec41c D optab_eq_expr
00000001201ec2fc D optab_ge_expr
00000001201ec38c D optab_gt_expr
00000001201ec26c D optab_le_expr
00000001201ec0fc D optab_lshift_expr
00000001201ec1dc D optab_lt_expr
00000001201ebe9c D optab_minus_expr
00000001201ebf0c D optab_mult_expr
00000001201ec48c D optab_ne_expr
00000001201ec4fc D optab_negate_expr
00000001201ebe2c D optab_plus_expr
00000001201ec650 D optab_postdecrement_expr
00000001201ec6b8 D optab_postincrement_expr
00000001201ec580 D optab_predecrement_expr
00000001201ec5e8 D optab_preincrement_expr
00000001201ec02c D optab_rdiv_expr
00000001201ec14c D optab_rshift_expr
00000001201ebf8c D optab_trunc_div_expr
00000001201ebfdc D optab_trunc_mod_expr
00000001201ec19c D optab_truth_and_expr
00000001201ec568 D optab_truth_not_expr
00000001201ec1bc D optab_truth_or_expr
00000001201fec18 G optimize
000000012005c2c0 t optimize_bit_field
0000000120056ff0 t optimize_bit_field_compare
0000000120135250 t optimize_reg_copy_1
0000000120135790 t optimize_reg_copy_2
000000012015d5d0 t optimize_skip
000000012014d780 t order_regs_for_reload
00000001201ff2f0 s orig_asm_operands_vector
00000001201ff098 s out_arg_offset
00000001201eb388 d out_rcs_id
00000001202001b8 S outer_function_chain
00000001201ff1c0 s outfile
000000012017d430 t output_107
000000012017d460 t output_108
000000012017d1b0 t output_11
000000012017d490 t output_114
000000012017d4c0 t output_117
000000012017d230 t output_12
000000012017d4f0 t output_120
000000012017d520 t output_121
000000012017d550 t output_123
000000012017d580 t output_126
000000012017d5b0 t output_127
000000012017d5e0 t output_129
000000012017d610 t output_131
000000012017d640 t output_132
000000012017d670 t output_134
000000012017d6a0 t output_147
000000012017d6d0 t output_149
000000012017d700 t output_151
000000012017d730 t output_154
000000012017d760 t output_156
000000012017d790 t output_158
000000012017d7c0 t output_169
000000012017d7f0 t output_223
000000012017d820 t output_225
000000012017d960 t output_228
000000012017d990 t output_230
000000012017dad0 t output_233
000000012017db00 t output_235
000000012017dc40 t output_245
000000012017dc70 t output_247
000000012017dca0 t output_249
000000012017dcd0 t output_252
000000012017dd00 t output_254
000000012017dd70 t output_256
000000012017dde0 t output_257
000000012017de50 t output_258
000000012017dec0 t output_259
000000012017dfb0 t output_261
000000012017dfe0 t output_262
000000012017e010 t output_264
000000012017e040 t output_269
000000012017e080 t output_271
000000012017e0b0 t output_273
000000012017e0e0 t output_281
000000012017d2b0 t output_46
000000012017d380 t output_58
000000012017d3b0 t output_61
000000012017d3e0 t output_94
000000012016edc0 T output_addr_const
000000012016ed70 T output_address
00000001200a7340 t output_addressed_constants
0000000120196ed0 T output_and
00000001200cf650 t output_array_type_die
00000001201941b0 T output_ascii
000000012016e3b0 T output_asm_insn
000000012016ebc0 T output_asm_label
00000001200d6fa0 t output_block
0000000120198690 T output_block_profiler
00000001200d9460 t output_bound_representation
00000001201fef50 S output_bytecode
0000000120192610 T output_call
00000001200d3530 t output_compile_unit_die
00000001200a74b0 T output_constant
00000001200a5ff0 T output_constant_def
00000001200a6550 t output_constant_def_contents
00000001200a6ff0 T output_constant_pool
00000001200a79b0 t output_constructor
00000001200ca140 t output_decl
00000001200c9f60 t output_decls_for_scope
00000001200a94c0 T output_deferred_addressed_constants
0000000120164770 T output_dependence
00000001200d6db0 t output_die
00000001200d98c0 t output_enumeral_list
00000001200d0550 t output_enumeration_type_die
0000000120039010 T output_file_directive
0000000120192b90 T output_file_start
00000001200d0ad0 t output_formal_parameter_die
00000001201982d0 T output_function_block_profiler
0000000120195060 T output_function_profiler
00000001200d0f40 t output_global_subroutine_die
00000001200d1b20 t output_global_variable_die
0000000120026240 t output_init_element
00000001200df520 T output_inline_function
00000001200cfef0 t output_inlined_enumeration_type_die
00000001200d0110 t output_inlined_structure_type_die
00000001200d8fb0 t output_inlined_subroutine_die
00000001200d0330 t output_inlined_union_type_die
0000000120196f90 T output_ior
0000000120197be0 T output_label
00000001200d2050 t output_label_die
00000001200d8b40 t output_lexical_block_die
0000000120196c00 T output_load_const_dimode
0000000120196b00 T output_load_const_double
0000000120196a80 T output_load_const_float
0000000120196990 T output_load_const_int
00000001200d4cd0 t output_local_subroutine_die
00000001200d2540 t output_local_variable_die
00000001200c8e30 t output_mem_loc_descriptor
00000001200d2a60 t output_member_die
000000012016ecd0 t output_operand
000000012016f9b0 T output_operand_lossage
00000001200d6d60 t output_padded_null_die
0000000120023cd0 t output_pending_init_elements
00000001200d2fd0 t output_ptr_to_mbr_type_die
0000000120038f10 T output_quoted_string
00000001201ff86c s output_reloadnum
00000001200cfaa0 t output_set_type_die
000000012016e090 t output_source_line
00000001200d43b0 t output_string_type_die
00000001200d46e0 t output_structure_type_die
00000001200d58b0 t output_subroutine_type_die
00000001200c97e0 t output_type
00000001200d5e50 t output_typedef_die
00000001200d6370 t output_union_type_die
00000001200d6960 t output_unspecified_parameters_die
0000000120197020 T output_xor
000000012002cda0 T overflow_warning
00000001201febf8 g p.0
000000012005ec10 t pad_below
000000012005eb40 t pad_to_arg_alignment
00000001201ff040 s parm_birth_insn
00000001201ff058 s parm_reg_stack_loc
00000001201ff2e0 s parmdecl_map
0000000120017070 T parmlist_tags_warning
000000012020006c S parse_time
000000012001bc20 T parser_build_binary_op
0000000120197960 T partial_ccmode_register_operand
00000001201eb678 d patterns.3
0000000120197bc0 T pc_or_label_ref
0000000120200770 S pc_rtx
00000001201fef64 S pedantic
000000012001f1f0 t pedantic_lvalue_warning
0000000120200150 S pedantic_lvalues
0000000120056480 T pedantic_non_lvalue
0000000120031860 T pedwarn
0000000120021cf0 T pedwarn_init
0000000120031df0 T pedwarn_with_decl
0000000120032230 T pedwarn_with_file_and_line
00000001202156c8 B peep_operand
0000000120156270 T peephole
00000001201ffb10 s pending_blocks
00000001201ff110 s pending_chain
00000001201ff988 s pending_dead_regs
00000001201ffdd8 S pending_invalid_xref
00000001201ffdb8 S pending_invalid_xref_file
00000001201ffc60 S pending_invalid_xref_line
00000001201ffa78 s pending_lists_length
00000001201ffa58 s pending_read_insns
00000001201ffa60 s pending_read_mems
00000001201ff298 s pending_sibling_stack
00000001201ff2a0 s pending_siblings
00000001201ff2a4 s pending_siblings_allocated
00000001201ff018 s pending_sizes
00000001202002e0 S pending_stack_adjust
00000001201ff2b4 s pending_types
00000001201ff2b0 s pending_types_allocated
00000001201ff2a8 s pending_types_list
00000001201ffa68 s pending_write_insns
00000001201ffa70 s pending_write_mems
0000000120016e60 T pending_xref_error
000000012003cbe0 T perm_calloc
0000000120043860 T perm_tree_cons
000000012003caf0 T permalloc
000000012003c480 T permanent_allocation
000000012020bd98 B permanent_obstack
00000001200386e0 T pfatal_with_name
0000000120198a50 T pic_address_needs_scratch
0000000120200768 S pic_offset_table_rtx
0000000120039510 t pipe_closed
00000001201ff0f0 s placeholder_list.0
00000001200c0440 t plain_type_1
00000001200952f0 T plus_constant_for_output_wide
0000000120093810 T plus_constant_wide
000000012001e270 t pointer_diff
000000012001deb0 t pointer_int_sum
00000001201ff1a0 s pool_offset
0000000120017b10 T pop_c_function_context
0000000120038df0 T pop_float_handler
0000000120061c90 T pop_function_context
00000001200596f0 T pop_function_context_from
0000000120023580 T pop_init_level
000000012002f420 T pop_iterator_stack
000000012000d3d0 T pop_label_level
00000001200424e0 T pop_momentary
0000000120042570 T pop_momentary_nofree
0000000120042200 T pop_obstacks
0000000120062100 T pop_temp_slots
00000001200b63b0 T pop_topmost_sequence
000000012000cfb0 T poplevel
000000012000b9c0 T position_after_white_space
000000012014a6a0 t possible_group_p
0000000120134a40 t post_mark_life
0000000120161fb0 t potential_hazard
0000000120207ed0 b potential_reload_regs
0000000120109670 t precondition_loop_p
000000012007e2d0 t preexpand_calls
00000001201ff690 s prefclass
000000012019dce0 T preferred_typecode
00000001201fece8 s prefix_attributes
0000000120089940 T prepare_call_address
0000000120164c60 t prepare_unit
00000001201001f0 t prescan_loop
000000012003c6b0 T preserve_data
000000012003c790 T preserve_initializer
0000000120042420 T preserve_momentary
0000000120194ca0 t preserve_registers
0000000120061f10 T preserve_rtl_expr_result
000000012006f0c0 T preserve_subexpressions_p
000000012005a270 T preserve_temp_slots
00000001200b4b20 T prev_active_insn
00000001201fec94 g prev_file_entry_num.1
00000001201ff3a0 s prev_insn
00000001200b4bc0 T prev_label
00000001201fecd8 g prev_lineno.1
00000001200b4a00 T prev_nonnote_insn
00000001200b4a70 T prev_real_insn
00000001200b4970 T previous_insn
00000001201ff600 s previous_num_undos
00000001201ff280 s primary_filename
00000001201e7428 d print_char_table
00000001201fec28 G print_error_function
00000001200162f0 T print_lang_decl
0000000120016310 T print_lang_identifier
0000000120006e90 T print_lang_statistics
0000000120016300 T print_lang_type
00000001200458e0 T print_node
0000000120045560 T print_node_brief
000000012003cde0 T print_obstack_name
0000000120045470 T print_obstack_statistics
0000000120195a90 T print_operand
0000000120196430 T print_operand_address
00000001200ad020 T print_rtl
00000001200ac610 t print_rtx
0000000120038150 t print_switch_values
0000000120038570 T print_time
0000000120162160 t priority
00000001200240c0 T process_init_element
0000000120105c10 t product_cheap_p
00000001201fffec S profile_block_flag
00000001201fef60 S profile_flag
00000001202009b0 S profile_label_no
00000001201ffec0 S progname
00000001201ff0a0 s prologue
00000001201ffb98 s prologue_marked
0000000120095b10 T promote_mode
000000012010ff70 t propagate_block
0000000120070290 T protect_from_queue
00000001201377f0 t prune_preferences
00000001202006f0 S ptr_mode
00000001201ffcd0 S ptr_type_node
00000001201ffbd0 s ptrconsts
00000001201ffc58 S ptrdiff_type_node
00000001200434e0 T purpose_member
0000000120082740 T push_block
0000000120017a20 T push_c_function_context
0000000120038d60 T push_float_handler
0000000120061c70 T push_function_context
00000001200593c0 T push_function_context_to
0000000120022dd0 T push_init_level
000000012002ec40 T push_iterator_stack
0000000120016830 T push_label_level
000000012003d050 T push_momentary
000000012003c210 T push_obstacks
000000012003c360 T push_obstacks_nochange
00000001201736d0 T push_operand
0000000120016f70 T push_parm_decl
000000012013a430 t push_reload
0000000120145fe0 t push_secondary_reload
00000001200620e0 T push_temp_slots
00000001200b6220 T push_to_sequence
00000001200b62f0 T push_topmost_sequence
00000001200697b0 T pushcase
0000000120069ba0 T pushcase_range
000000012000d580 T pushdecl
00000001200169a0 T pushdecl_top_level
00000001200165f0 T pushlevel
00000001200168c0 T pushtag
0000000120048eb0 T put_pending_sizes
000000012005a830 t put_reg_into_stack
000000012005a5a0 T put_var_into_stack
00000001201ffba0 s pwd.0
00000001201ff990 s q_ptr
00000001201ff994 s q_size
00000001201ff718 s qty_alternate_class
00000001201ff6f0 s qty_birth
00000001201ff728 s qty_changes_size
00000001201331b0 t qty_compare
0000000120135d80 t qty_compare_1
00000001201ff388 s qty_comparison_code
00000001201ff390 s qty_comparison_const
00000001201ff398 s qty_comparison_qty
00000001201ff378 s qty_const
00000001201ff380 s qty_const_insn
00000001201ff6f8 s qty_death
00000001201ff360 s qty_first_reg
00000001201ff730 s qty_first_reg
00000001201ff368 s qty_last_reg
00000001201ff6e8 s qty_min_class
00000001201ff370 s qty_mode
00000001201ff708 s qty_mode
00000001201ff710 s qty_n_calls_crossed
00000001201ff6e0 s qty_n_refs
00000001201ff6c0 s qty_phys_copy_sugg
00000001201ff6d0 s qty_phys_num_copy_sugg
00000001201ff6d8 s qty_phys_num_sugg
00000001201ff6b8 s qty_phys_reg
00000001201ff6c8 s qty_phys_sugg
00000001201ff720 s qty_scratch_rtx
00000001201ff700 s qty_size
0000000120133350 t qty_sugg_compare
0000000120135b10 t qty_sugg_compare_1
0000000120082bb0 t queued_subexp_p
00000001201fef70 S quiet_flag
0000000120058ff0 t range_test
00000001201690b0 t rank_for_schedule
0000000120205f6e b rbit
00000001201eb0d8 d rcs_id.0
00000001201ff234 s re
0000000120164430 T read_dependence
00000001200ab100 T read_rtx
00000001200aaf00 T read_skip_spaces
000000012000bd20 t readescape
00000001200a8640 T readonly_data_section
000000012001f260 T readonly_warning
0000000120043160 T real_onep
00000001201978b0 T real_or_0_operand
0000000120197080 T real_power_of_2_operand
00000001200432e0 T real_twop
0000000120042870 T real_value_from_int_cst
0000000120056130 T real_value_truncate
0000000120043080 T real_zerop
0000000120043460 T really_constant_p
00000001200328e0 T really_sorry
00000001200229e0 T really_start_incremental_init
00000001201ff230 s rebit
000000012017a390 T recog
00000001201743e0 T recog_1
0000000120174bf0 T recog_2
0000000120175520 T recog_3
0000000120175ca0 T recog_4
0000000120176f90 T recog_5
00000001201792d0 T recog_6
0000000120215768 B recog_dup_loc
00000001202009d8 S recog_dup_num
00000001201260e0 t recog_for_combine
0000000120172e50 T recog_memoized
0000000120215718 B recog_operand
0000000120215778 B recog_operand_loc
0000000120006f00 T recognize_objc_keyword
000000012012f5f0 t record_address_regs
0000000120103860 t record_biv
0000000120138d10 t record_conflicts
00000001200aa180 t record_constant
00000001200a5640 t record_constant_1
00000001200aa490 t record_constant_rtx
00000001201295b0 t record_dead_and_set_regs
000000012012cf60 t record_dead_and_set_regs_1
00000001201ff670 s record_dead_insn
00000001200fdd00 T record_excess_regs
000000012002b190 T record_function_format
0000000120103a90 t record_giv
0000000120107a90 t record_initial
00000001200f1b10 t record_jump_cond
000000012013a2d0 t record_one_conflict
000000012012e7c0 t record_reg_classes
00000001201290e0 t record_value_for_reg
00000001201ff410 s recorded_label_ref
000000012000dfc0 t redeclaration_error_message
00000001200e4ec0 T redirect_exp
00000001200e7000 T redirect_jump
00000001200e5150 t redirect_tablejump
0000000120157570 t redundant_insn
0000000120143e80 T refers_to_mem_for_reload_p
00000001200e9f90 t refers_to_mem_p
00000001200e99e0 t refers_to_p
0000000120143900 T refers_to_regno_for_reload_p
00000001200adaa0 T refers_to_regno_p
00000001201ea138 D reg_alloc_order
00000001201ff790 s reg_allocno
0000000120130460 T reg_alternate_class
00000001202008b8 S reg_basic_block
000000012012ab60 t reg_bitfield_target_p
0000000120200870 S reg_biv_class
00000001202008d0 S reg_changes_size
0000000120213bb4 B reg_class_contents
00000001201ea6e8 d reg_class_names
00000001201ea7c8 d reg_class_names.0
00000001201ea068 d reg_class_names.1
0000000120213c2c B reg_class_size
00000001202137e8 B reg_class_subclasses
0000000120130720 T reg_class_subset_p
0000000120213af0 B reg_class_subunion
0000000120213c48 B reg_class_superclasses
00000001202138ac B reg_class_superunion
000000012012fde0 T reg_classes_intersect_p
000000012010d990 t reg_dead_after_loop
0000000120129fa0 t reg_dead_at_p
000000012012d120 t reg_dead_at_p_1
00000001201ff67c s reg_dead_endregno
00000001201ff680 s reg_dead_flag
00000001201ff678 s reg_dead_regno
00000001201ea720 d reg_eliminate
0000000120200988 S reg_equiv_address
0000000120200990 S reg_equiv_constant
00000001201ff898 s reg_equiv_init
0000000120200970 S reg_equiv_mem
0000000120200968 S reg_equiv_memory_loc
0000000120173e80 T reg_fits_class_p
00000001201ff880 s reg_has_output_reload
00000001200fdf70 t reg_in_basic_block_p
00000001201ff3d0 s reg_in_table
0000000120133f10 t reg_is_born
00000001201ff888 s reg_is_output_reload
0000000120135f50 t reg_is_set
0000000120200828 S reg_iv_info
0000000120200838 S reg_iv_type
00000001201ffa48 s reg_known_equiv_p
00000001201ffa40 s reg_known_value
00000001201ffa50 s reg_known_value_size
00000001201ff5c0 s reg_last_death
00000001201ff878 s reg_last_reload_reg
00000001201ff5c8 s reg_last_set
00000001201ff620 s reg_last_set_invalid
00000001201ff610 s reg_last_set_label
00000001201ff650 s reg_last_set_mode
00000001201ff658 s reg_last_set_nonzero_bits
00000001201ff660 s reg_last_set_sign_bit_copies
00000001201ff618 s reg_last_set_table_tick
00000001201ff608 s reg_last_set_value
00000001201ff9b8 s reg_last_sets
00000001201ff9b0 s reg_last_uses
0000000120200888 S reg_live_length
00000001201ff2c8 s reg_map
00000001201ff890 s reg_max_ref_width
00000001201ff7b0 s reg_may_share
0000000120133d40 t reg_meets_class_p
00000001200ad0f0 T reg_mentioned_p
0000000120200898 S reg_n_calls_crossed
0000000120200890 S reg_n_deaths
00000001202008c0 S reg_n_refs
0000000120200918 S reg_n_sets
00000001201ea270 D reg_names
00000001201ff3b8 s reg_next_eqv
00000001201ff738 s reg_next_in_qty
00000001201ff518 s reg_next_use
00000001201ff630 s reg_nonzero_bits
00000001201e9ae0 D reg_note_name
00000001201ff748 s reg_offset
00000001201974e0 T reg_or_0_operand
0000000120197820 T reg_or_bbx_mask_operand
00000001201ff570 s reg_order
0000000120143cd0 T reg_overlap_mentioned_for_reload_p
00000001200ade60 T reg_overlap_mentioned_p
00000001201ff9c0 s reg_pending_sets
00000001201ff9c8 s reg_pending_sets_all
0000000120130430 T reg_preferred_class
00000001201ff3c0 s reg_prev_eqv
00000001201ff3b0 s reg_qty
00000001201ff740 s reg_qty
0000000120213970 B reg_raw_mode
00000001200aff00 T reg_referenced_between_p
00000001200ad320 T reg_referenced_p
00000001202076d0 b reg_reloaded_contents
00000001202077d0 b reg_reloaded_insn
0000000120200940 S reg_renumber
00000001202091b0 b reg_restore_code
00000001201fec48 G reg_rtx_no
0000000120208eb0 b reg_save_code
00000001201304c0 T reg_scan
000000012012f920 t reg_scan_mark_refs
00000001200afff0 T reg_set_between_p
00000001201ff1d0 s reg_set_flag
00000001200b0600 T reg_set_last
00000001200b0d20 t reg_set_last_1
00000001201ff1e0 s reg_set_last_first_regno
00000001201ff1e4 s reg_set_last_last_regno
00000001201ff1d4 s reg_set_last_unknown
00000001201ff1d8 s reg_set_last_value
00000001200b0140 T reg_set_p
00000001200b0cc0 t reg_set_p_1
00000001201ff1c8 s reg_set_reg
00000001201ff640 s reg_sign_bit_copies
00000001201ff3c8 s reg_tick
00000001200afdf0 T reg_used_between_p
00000001201ff568 s reg_where_born
00000001201ff560 s reg_where_dead
000000012012db20 T regclass
00000001201304a0 T regclass_init
00000001201731f0 T register_operand
0000000120112800 T regno_clobbered_at_setjmp
0000000120145180 T regno_clobbered_p
00000001202008f0 S regno_first_uid
00000001202008f8 S regno_last_note_uid
0000000120200908 S regno_last_uid
0000000120200738 S regno_pointer_flag
00000001202006f8 S regno_pointer_flag_length
0000000120200760 S regno_reg_rtx
00000001202088b0 b regno_save_mem
00000001202085b0 b regno_save_mode
0000000120112780 T regno_uninitialized
000000012016ac40 t regno_use_in
00000001201ff580 s regs_change_size
00000001202156d8 B regs_ever_live
0000000120207f50 b regs_explicitly_used
00000001201ff3e0 s regs_invalidated_by_call
00000001201ff578 s regs_live
00000001201ff750 s regs_live
00000001201ff758 s regs_live_at
00000001202008e0 S regs_live_at_setjmp
00000001202008a8 S regs_may_share
00000001201ff828 s regs_set
00000001201ff7f0 s regs_someone_prefers
00000001201ff800 s regs_used_so_far
00000001202008a0 S regset_bytes
00000001202008e8 S regset_size
00000001200e8e90 t rehash_using_reg
000000012000b8f0 T reinit_parse_for_function
000000012015ba10 t relax_delay_slots
0000000120147750 T reload
000000012014db60 t reload_as_needed
00000001202009d0 S reload_completed
0000000120214818 B reload_earlyclobbers
0000000120200960 S reload_first_uid
0000000120200980 S reload_firstobj
0000000120214200 B reload_in
0000000120215580 B reload_in_optab
00000001201ff870 S reload_in_progress
0000000120214e08 B reload_in_reg
0000000120214868 B reload_inc
00000001202153a0 B reload_inheritance_insn
0000000120214fe8 B reload_inherited
00000001202143e0 B reload_inmode
0000000120208290 b reload_mode
000000012020095c S reload_n_operands
00000001202147dc B reload_nocombine
0000000120208380 b reload_nregs
00000001202155f8 B reload_obstack
00000001202144d0 B reload_opnum
00000001202146b0 B reload_optional
0000000120215650 B reload_order
0000000120213e40 B reload_out
0000000120215024 B reload_out_optab
0000000120214020 B reload_outmode
00000001202151c0 B reload_override_in
0000000120214b38 B reload_reg_class
0000000120152d80 t reload_reg_class_lower
00000001201537f0 t reload_reg_free_before_p
00000001201531c0 t reload_reg_free_p
0000000120153c50 t reload_reg_reaches_end_p
0000000120214c28 B reload_reg_rtx
00000001201ff900 s reload_reg_used
00000001201ff928 s reload_reg_used_at_all
00000001201ff930 s reload_reg_used_for_inherit
0000000120208510 b reload_reg_used_in_input
0000000120208470 b reload_reg_used_in_input_addr
00000001201ff918 s reload_reg_used_in_insn
00000001201ff908 s reload_reg_used_in_op_addr
00000001201ff910 s reload_reg_used_in_op_addr_reload
00000001201ff920 s reload_reg_used_in_other_addr
0000000120208560 b reload_reg_used_in_output
00000001202084c0 b reload_reg_used_in_output_addr
0000000120214a48 B reload_secondary_in_icode
00000001202146ec B reload_secondary_in_reload
0000000120214958 B reload_secondary_out_icode
0000000120213d50 B reload_secondary_out_reload
0000000120214110 B reload_secondary_p
00000001202150d0 B reload_spill_index
00000001202145c0 B reload_when_needed
00000001201ea6a0 d reload_when_needed_name
000000012014e650 t reloads_conflict
00000001201979e0 T relop
0000000120197ac0 T relop_no_unsigned
000000012010cb90 t remap_split_bivs
000000012006f3d0 T remember_end_note
000000012000b820 T remember_protocol_qualifiers
000000012012be00 T remove_death
00000001200f5250 t remove_from_table
00000001200e8db0 t remove_invalid_refs
00000001200b0b00 T remove_note
000000012005f400 T reorder_blocks
00000001200b4cd0 T reorder_insns
00000001200b4d70 T reorder_insns_with_line_notes
00000001201ff97c s reorg_pass_number
00000001201581f0 t reorg_redirect_jump
00000001200af410 T replace_regs
00000001201ff840 s replace_reloads
00000001200b0b70 T replace_rtx
0000000120207090 b replacements
00000001200389c0 T report_error_function
00000001200617b0 T reposition_prologue_and_epilogue_notes
0000000120024f80 T require_complete_type
00000001201fee8c s require_constant_elements
00000001201fee88 s require_constant_value
0000000120134d50 t requires_inout
00000001200b27e0 T reset_used_flags
0000000120032ef0 T rest_of_compilation
0000000120032a40 T rest_of_decl_compilation
00000001200390c0 T rest_of_type_compilation
00000001200df230 t restore_constants
00000001200b4580 T restore_emit_status
0000000120082170 T restore_expr_status
0000000120200250 S restore_machine_status
0000000120155ac0 t restore_referenced_regs
00000001200b31a0 T restore_reg_data
00000001200b32b0 t restore_reg_data_1
000000012006e3a0 T restore_stmt_status
00000001200495c0 T restore_storage_status
000000012003c060 T restore_tree_status
00000001200a9670 T restore_varasm_status
000000012018abe0 T result_ready_cost
00000001200425d0 T resume_momentary
0000000120042190 T resume_temporary_allocation
0000000120139db0 T retry_global_alloc
00000001202001a0 S return_label
00000001200b4280 T reverse_comparison
00000001200e3c20 T reverse_condition
00000001201ffb74 s reversep.1
0000000120128fd0 t reversible_comparison_p
000000012020b920 B ridpointers
00000001201fec5c g rlast
00000001201ff22e s rmbit
00000001201ff22c s rmsk
00000001201fec58 G rndprc
00000001200cecf0 t root_type
0000000120200308 S rotl_optab
0000000120200600 S rotr_optab
0000000120095c80 T round_push
000000012005f1b0 t round_trampoline_addr
00000001200490d0 T round_up
0000000120056050 T rrotate_double
0000000120055ea0 T rshift_double
00000001201feef8 S rtl_dump
00000001201feefc S rtl_dump_and_exit
00000001201fffe0 S rtl_dump_file
0000000120200190 S rtl_expr_chain
00000001200422d0 T rtl_in_current_obstack
00000001200422f0 T rtl_in_saveable_obstack
00000001202000e8 S rtl_obstack
00000001200aa6a0 T rtvec_alloc
00000001200af9c0 T rtx_addr_can_trap_p
00000001200afad0 T rtx_addr_varies_p
00000001200ac4c0 T rtx_alloc
00000001201e99f8 D rtx_class
00000001200e7360 T rtx_cost
00000001200fe8c0 t rtx_equal_for_loop_p
00000001201604d0 t rtx_equal_for_memref_p
00000001200e6340 T rtx_equal_for_thread_p
00000001202006ec S rtx_equal_function_value_matters
00000001200ae090 T rtx_equal_p
00000001201e9658 D rtx_format
00000001200ac5a0 T rtx_free
0000000120213340 B rtx_length
00000001201e9000 D rtx_name
00000001200e5350 T rtx_renumbered_equal_p
00000001200960d0 T rtx_to_tree_code
00000001200af710 T rtx_unstable_p
00000001200af860 T rtx_varies_p
00000001201ff228 s rw
00000001201458d0 T safe_from_earlyclobber
0000000120074f60 t safe_from_p
00000001200e93d0 t safe_hash
00000001201ff328 s same_regs
00000001201fff58 S save_argc
00000001201fff50 S save_argv
0000000120155370 T save_call_clobbered_regs
00000001200db2e0 t save_constants
00000001200b44e0 T save_emit_status
0000000120043d00 T save_expr
0000000120200260 S save_expr_regs
00000001200820a0 T save_expr_status
00000001201feef0 s save_exprs
00000001200da5d0 T save_for_inline_copying
00000001200db060 T save_for_inline_nocopy
0000000120200278 S save_machine_status
0000000120083fb0 t save_noncopied_parts
0000000120209d78 b save_regs
000000012006e2e0 T save_stmt_status
00000001200495b0 T save_storage_status
000000012003bdd0 T save_tree_status
00000001200a9620 T save_varasm_status
00000001200421d0 T saveable_allocation
00000001202000f8 S saveable_obstack
0000000120043900 T saveable_tree_cons
000000012003ccf0 T savealloc
00000001201ff100 s saveregs_value
00000001201ff1b0 s sawclose
00000001201ffb60 s sb_high
00000001201ffb68 s sb_low
00000001201ffb58 s sb_name
00000001201ffad8 s sbb_head
00000001201ffae0 s sbb_label_num
00000001201fecc0 g sbb_tail
00000001201e7768 d scan_char_table
00000001200fc970 t scan_loop
000000012014d5a0 t scan_paradoxical_subregs
00000001201fef24 S sched2_dump
00000001201fff80 S sched2_dump_file
00000001201fff78 S sched2_time
00000001201689d0 t sched_analyze
0000000120165080 t sched_analyze_1
0000000120162450 t sched_analyze_2
000000012016a620 t sched_analyze_insn
00000001201ffaa0 s sched_before_next_call
00000001201fef18 S sched_dump
00000001201fff30 S sched_dump_file
0000000120168d80 t sched_note_set
00000001201ff9a8 s sched_reg_live_length
00000001201ff9a0 s sched_reg_n_calls_crossed
00000001201ff998 s sched_reg_n_deaths
00000001201fffa8 S sched_time
0000000120165a80 t schedule_block
0000000120169250 t schedule_insn
00000001201631a0 T schedule_insns
0000000120169560 t schedule_select
000000012016a480 t schedule_unit
0000000120200938 S scratch_block
00000001201ff760 s scratch_index
0000000120200948 S scratch_list
0000000120200950 S scratch_list_length
0000000120173270 T scratch_operand
00000001200a8380 T sdata_section
00000001201fec80 G sdb_begin_function_line
00000001202064f8 b sdb_dims
00000001201ff24c s sdb_n_dims
00000001201fec84 g sdb_type_size
00000001200c4ef0 T sdbout_begin_block
00000001200c5510 T sdbout_begin_function
00000001200c6170 t sdbout_block
00000001200c52e0 T sdbout_end_block
00000001200c5a10 T sdbout_end_epilogue
00000001200c5770 T sdbout_end_function
00000001200c6070 T sdbout_init
00000001200c5c90 T sdbout_label
00000001200c6150 T sdbout_mark_begin_function
00000001200c2ea0 t sdbout_one_type
00000001200c66d0 t sdbout_parms
00000001200c2e50 t sdbout_queue_anonymous_type
00000001200c7cb0 t sdbout_reg_parms
00000001200c0a30 T sdbout_symbol
00000001200c25d0 T sdbout_toplevel_data
00000001200c6250 t sdbout_type
00000001200c6080 T sdbout_types
00000001202006a0 S sdiv_optab
00000001201ff130 s sdiv_pow2_cheap
0000000120200610 S sdivmod_optab
00000001201ffbb4 s section
000000012019ced0 t seg_defsym
000000012019d0e0 t seg_refsym
0000000120019cb0 T self_promoting_args_p
0000000120019d90 t self_promoting_type_p
00000001201ff220 s sequence_element_free_list
0000000120205f28 b sequence_result
00000001201ff1f8 S sequence_rtl_expr
0000000120200728 S sequence_stack
00000001201ffb70 s sequencep.0
00000001201ff010 S set_alignment
0000000120016810 T set_block
00000001200e0010 t set_block_abstract_flags
00000001200dfec0 t set_block_origin_self
00000001200df9e0 T set_decl_abstract_flags
00000001200dffa0 t set_decl_origin_self
0000000120038d10 T set_float_handler
0000000120042790 T set_identifier_size
0000000120025950 T set_init_index
0000000120025b30 T set_init_label
000000012014b7f0 t set_label_offsets
00000001200b4870 T set_last_insn
00000001200b4490 T set_new_first_and_last_insn
00000001200b44b0 T set_new_first_and_last_label_num
00000001200e9ba0 t set_nonvarying_address_components
000000012012bf70 t set_nonzero_bits_and_sign_copies
0000000120139550 t set_preference
0000000120156150 t set_reg_live
0000000120037fe0 T set_target_switch
000000012000bba0 T set_yydebug
0000000120213170 B setcc_gen_code
0000000120063180 T setjmp_args_warning
0000000120063220 T setjmp_protect
00000001200632e0 T setjmp_protect_args
00000001200e6eb0 T sets_cc0_p
00000001201143f0 t setup_incoming_promotions
0000000120154f30 T setup_save_areas
0000000120016d60 T shadow_label
0000000120016ed0 T shadow_tag
0000000120010760 T shadow_tag_warned
00000001201fedb8 s shadowed_labels
0000000120203848 b shift_cost
00000001202038c8 b shiftadd_cost
0000000120203948 b shiftsub_cost
00000001201ffd38 S short_integer_type_node
00000001201ffd70 S short_unsigned_type_node
00000001201fffd8 S shorten_branch_time
000000012016c150 T shorten_branches
000000012002b730 T shorten_compare
00000001200aedf0 T side_effects_p
00000001200a0bc0 T sign_expand_binop
00000001201ffdf0 S signed_char_type_node
00000001200e6b20 T signed_condition
000000012020ada0 b signed_mode_to_code_map
00000001200251f0 T signed_or_unsigned_type
00000001200250e0 T signed_type
00000001201ffcc0 S signed_wchar_type_node
00000001200bd3a0 T significand_size
0000000120040f40 T simple_cst_equal
0000000120044bb0 T simple_cst_list_equal
00000001200e6c70 T simplejump_p
0000000120123360 t simplify_and_const_int
00000001200eaff0 T simplify_binary_operation
0000000120126f90 t simplify_comparison
0000000120104be0 t simplify_giv_expr
000000012011b950 t simplify_if_then_else
000000012011d980 t simplify_logical
00000001200ecbf0 t simplify_plus_minus
00000001200ed5c0 T simplify_relational_operation
0000000120119230 t simplify_rtx
000000012011cb90 t simplify_set
0000000120124b80 t simplify_shift_const
00000001200a96c0 T simplify_subtraction
00000001200ee0b0 T simplify_ternary_operation
00000001200ea450 T simplify_unary_operation
00000001202004e0 S sin_optab
00000001200b0230 T single_set
00000001201fec40 g size.1
00000001201fec44 g size.2
00000001201fec14 g size.3
00000001200562a0 T size_binop
00000001202006e0 S size_directive_output
0000000120043950 T size_in_bytes
000000012004b850 T size_int
0000000120200138 S size_one_node
00000001202031e0 b size_table.0
0000000120200130 S size_zero_node
0000000120200140 S sizetype
00000001200fe130 t skip_consec_insns
000000012000bbc0 t skip_white_space
00000001201ff43c s skipped_writes_memory
0000000120200410 S smax_optab
0000000120200558 S smin_optab
00000001202004b0 S smod_optab
00000001201ff134 s smod_pow2_cheap
00000001202004a8 S smul_highpart_optab
0000000120200660 S smul_optab
0000000120200540 S smul_widen_optab
0000000120032770 T sorry
00000001201fef4c S sorrycount
00000001201fec7c g source_label_number
00000001201e9d60 D spaces
00000001201fee08 s spelling
00000001201fee10 s spelling_base
00000001201fee18 s spelling_size
000000012014ada0 t spill_failure
000000012014d130 t spill_hard_reg
00000001201ff8c8 s spill_indirect_levels
0000000120207dd0 b spill_reg_order
00000001202079d0 b spill_reg_rtx
0000000120207bd0 b spill_reg_store
0000000120207e50 b spill_regs
0000000120207f90 b spill_stack_slot
0000000120208190 b spill_stack_slot_width
000000012017ab80 T split_1
000000012016f4e0 T split_double
0000000120169db0 t split_hard_reg_notes
000000012017bb60 T split_insns
0000000120056580 t split_tree
00000001201ff4c8 s splittable_regs
00000001201ff4d0 s splittable_regs_updates
0000000120205fd0 b sqrndbit
0000000120200550 S sqrt_optab
00000001200e31d0 T squeeze_notes
00000001200957d0 T stabilize
000000012003f560 T stabilize_reference
000000012003fa50 T stabilize_reference_1
00000001202002f0 S stack_arg_under_construction
00000001202002b8 S stack_block_stack
00000001202001f4 S stack_depth
0000000120200748 S stack_pointer_rtx
00000001201fef34 S stack_reg_dump
00000001201fff00 S stack_reg_dump_file
00000001201ffedc S stack_reg_time
0000000120200238 S stack_slot_list
00000001201ff118 s stack_usage_map
00000001201e8968 D standard_tree_code_length
00000001201e8b60 D standard_tree_code_name
00000001201e8578 D standard_tree_code_type
0000000120010a80 T start_decl
00000001200177b0 T start_enum
0000000120014be0 T start_function
0000000120042770 T start_identifier_warnings
0000000120022750 T start_init
0000000120209508 b start_of_epilogue_needs
00000001200b60d0 T start_sequence
00000001200b6170 T start_sequence_for_rtl_expr
00000001200174a0 T start_struct
00000001201fed30 s state.0
0000000120200710 S static_chain_incoming_rtx
0000000120200778 S static_chain_rtx
00000001201ffe28 S static_ctors
00000001201ffc68 S static_dtors
00000001201ff860 s static_reload_reg_p
0000000120043bf0 T staticp
000000012015feb0 t steal_delay_list_from_fallthrough
000000012015f680 t steal_delay_list_from_target
00000001201fecf0 s stmt_count
00000001201ff088 s stmt_expr_depth
000000012020bee0 B stmt_obstack
000000012008a440 T store_bit_field
0000000120082f80 t store_constructor
00000001200733f0 T store_expr
0000000120074000 t store_field
000000012008ab00 t store_fixed_bit_field
0000000120025700 T store_init_value
00000001200891e0 t store_one_arg
00000001200152a0 T store_parm_decls
000000012008afe0 t store_split_bit_field
0000000120101e80 t strength_reduce
000000012013c930 T strict_memory_address_p
0000000120084b90 t string_constant
00000001201ffe78 S string_ftype_ptr_ptr
00000001200d8790 t string_length_attribute
00000001201ffc28 S string_type_node
00000001201cf0c0 r strings_107.2
00000001201cf110 r strings_108.3
00000001201cf138 r strings_114.4
00000001201cf158 r strings_117.5
00000001201cf178 r strings_120.6
00000001201cf188 r strings_121.7
00000001201cf1c8 r strings_126.8
00000001201cf1d8 r strings_127.9
00000001201cf218 r strings_131.10
00000001201cf228 r strings_132.11
00000001201cf268 r strings_147.12
00000001201cf280 r strings_149.13
00000001201cf298 r strings_151.14
00000001201cf2b0 r strings_154.15
00000001201cf2d0 r strings_156.16
00000001201cf2f0 r strings_158.17
00000001201cf310 r strings_169.18
00000001201cf320 r strings_228.19
00000001201cf340 r strings_233.20
00000001201cf358 r strings_245.21
00000001201cf368 r strings_247.22
00000001201cf378 r strings_249.23
00000001201cf388 r strings_252.24
00000001201cf398 r strings_261.25
00000001201cf3a8 r strings_262.26
00000001201cf3b8 r strings_264.27
00000001201cf3c8 r strings_281.28
00000001201cf080 r strings_58.0
00000001201cf0a0 r strings_61.1
0000000120058b80 t strip_compound_expr
0000000120038e50 T strip_off_ending
00000001202006a8 S strlen_optab
00000001202007a8 S struct_value_incoming_rtx
0000000120200790 S struct_value_rtx
0000000120113120 t stupid_find_reg
00000001201128c0 T stupid_life_analysis
0000000120113470 t stupid_mark_refs
0000000120113aa0 t stupid_reg_compare
0000000120200478 S sub_optab
00000001201ff238 s subflg
000000012020ba00 B sublevel_ixpansions
00000001200b4110 T subreg_lowpart_p
00000001200b3fc0 T subreg_realpart_p
00000001200d7a80 t subscript_data_attribute
00000001201188c0 t subst
00000001200de850 t subst_constants
0000000120142000 t subst_indexed_address
00000001201ff5d8 s subst_insn
00000001201ff5e8 s subst_low_cuid
00000001201ff5e0 s subst_prev_insn
0000000120141ec0 t subst_reg_equivs
00000001201ff868 s subst_reg_equivs_changed
0000000120143600 T subst_reloads
000000012003e4d0 T substitute_in_expr
000000012003e800 T substitute_in_type
00000001200425a0 T suspend_momentary
00000001200e69c0 T swap_condition
000000012019b560 T sym_lookup
0000000120197460 T symbolic_address_p
0000000120198ae0 T symbolic_operand
00000001201fff18 S symout_time
000000012008d240 t synth_mult
00000001201ff008 s table
0000000120206510 b table
00000001201e8fe0 d table.0
0000000120067350 t tail_recursion_args
0000000120200200 S tail_recursion_label
0000000120200228 S tail_recursion_reentry
00000001202006e8 S target_flags
00000001201ff960 s target_hash_table
0000000120056170 T target_isinf
00000001200561d0 T target_isnan
0000000120056260 T target_negative
00000001201e8558 D target_options
00000001201e8388 D target_switches
00000001202002e8 S target_temp_slot_level
00000001200a8300 T tdesc_section
0000000120200128 S temp_decl_firstobj
00000001202011a8 b temp_decl_obstack
00000001202066a8 b temp_obstack
0000000120200174 S temp_slot_level
0000000120200180 S temp_slots
00000001200438b0 T temp_tree_cons
0000000120042110 T temporary_allocation
0000000120200120 S temporary_firstobj
000000012020be48 B temporary_obstack
00000001200e3e20 t tension_vector_labels
00000001200a84f0 T text_section
00000001201e79e8 d tfaff
00000001201ff604 s this_basic_block
00000001201ff078 s this_function_bytecode
00000001201ff080 s this_function_calldesc
00000001201ff070 s this_function_callinfo
00000001201ff068 s this_function_decl
00000001201ff3a8 s this_insn
00000001201ff768 s this_insn
00000001201ff850 s this_insn
00000001201ff858 s this_insn_is_asm
00000001201ff764 s this_insn_number
00000001201ffb00 s this_is_asm_operands
00000001200e58c0 T thread_jumps
00000001200613a0 T thread_prologue_and_epilogue_insns
00000001201eb3a5 d tm_rcs_id
00000001200be4f0 t toe113
00000001200be8d0 t toe24
00000001200b93d0 t toe53
00000001200be680 t toe64
00000001201ffbf8 S token_buffer
00000001202000b0 S toplev_inline_obstacks
00000001201ff5a0 s total_attempts
00000001201ff5a8 s total_extras
00000001201ff5a4 s total_merges
00000001201ff5ac s total_successes
0000000120200a20 S trampoline
000000012005ef80 T trampoline_address
00000001201ff038 s trampoline_list
0000000120145820 T transfer_replacements
0000000120200098 S tree_code_length
0000000120200100 S tree_code_name
00000001202000d8 S tree_code_type
000000012003e370 T tree_cons
0000000120040ed0 T tree_int_cst_equal
0000000120044ac0 T tree_int_cst_lt
0000000120044b70 T tree_int_cst_sgn
0000000120043670 T tree_last
000000012020bd58 B tree_node_counts
00000001201e8f50 D tree_node_kind_names
000000012020bea0 B tree_node_sizes
0000000120164460 T true_dependence
00000001200e7190 T true_regnum
0000000120200570 S truncdfsf2_libfunc
0000000120200450 S trunctfdf2_libfunc
0000000120200628 S trunctfsf2_libfunc
0000000120200640 S truncxfdf2_libfunc
0000000120200390 S truncxfsf2_libfunc
000000012002c1a0 T truthvalue_conversion
0000000120114730 t try_combine
00000001200de6e0 T try_constants
000000012015d8b0 t try_merge_delay_insns
00000001200b2940 T try_split
0000000120200300 S tst_optab
000000012004bce0 t twoval_comparison_p
00000001201fed34 s type.1
00000001200c9400 t type_attribute
000000012002b270 T type_for_mode
000000012002d3e0 T type_for_size
0000000120044950 T type_hash_add
0000000120040880 T type_hash_canon
0000000120044780 T type_hash_list
00000001200447b0 T type_hash_lookup
000000012020bb80 B type_hash_table
00000001200cede0 t type_is_fundamental
0000000120044a00 T type_list_equal
0000000120019ab0 t type_lists_compatible_p
0000000120045220 T type_precision
00000001201ebdf8 D typecode_mode
0000000120200398 S ucmp_optab
0000000120200508 S udiv_optab
0000000120200620 S udivmod_optab
00000001201ff500 s uid_block_number
00000001201ff400 s uid_cuid
00000001201ff5b0 s uid_cuid
0000000120200850 S uid_loop_num
0000000120200860 S uid_luid
00000001201ff550 s uid_suid
00000001201ff970 s uid_to_ruid
00000001201ff508 s uid_volatile
0000000120200588 S umax_optab
0000000120200590 S umin_optab
00000001202005b8 S umod_optab
0000000120200578 S umul_highpart_optab
00000001202003c0 S umul_widen_optab
000000012001f100 t unary_complex_lvalue
00000001201fed18 s undeclared_variable_notice
0000000120117840 t undo_all
0000000120206700 b undobuf
00000001201ff950 s unfilled_firstobj
00000001202094b0 b unfilled_slots_obstack
0000000120062fe0 T uninitialized_vars_warning
0000000120209770 b unit_last_insn
00000001202097dc b unit_n_insns
00000001202097b8 b unit_tick
00000001201ff49c s unknown_address_altered
00000001201ff248 s unnamed_struct_number
000000012006f630 T unroll_block_trees
0000000120107ce0 T unroll_loop
00000001200b4660 T unshare_all_rtl
00000001201ffce0 S unsigned_char_type_node
00000001200e6a90 T unsigned_condition
000000012002cea0 T unsigned_conversion_warning
00000001201ffd00 S unsigned_intDI_type_node
00000001201ffe48 S unsigned_intHI_type_node
00000001201ffe68 S unsigned_intQI_type_node
00000001201ffcf0 S unsigned_intSI_type_node
000000012020ae18 b unsigned_mode_to_code_map
0000000120024fd0 T unsigned_type
00000001201ffd20 S unsigned_type_node
00000001201ffc70 S unsigned_wchar_type_node
00000001201ffa88 s unused_expr_list
00000001201ffa80 s unused_insn_list
0000000120158050 t update_block
00000001201317d0 t update_equiv_regs
0000000120167ad0 t update_flow_info
00000001201043c0 t update_giv_derive
0000000120159d50 t update_live_status
0000000120133de0 t update_qty_class
0000000120106f50 t update_reg_last_use
000000012012ce30 t update_table_tick
0000000120061cd0 T update_temp_slot_address
00000001201ff0d8 s use_cost_table
0000000120129d70 t use_crosses_set_p
00000001201fef40 S use_gnu_debug_info_extensions
00000001200824b0 T use_reg
0000000120082550 T use_regs
00000001200fc0a0 t use_related_value
0000000120062b70 T use_variable
0000000120062c40 T use_variable_after
000000012010eb40 t uses_reg_or_mem
0000000120039230 t v_message_with_decl
0000000120025ed0 t valid_compound_expr_initializer
0000000120103530 t valid_initial_value_p
00000001200442c0 T valid_machine_attribute
0000000120172eb0 T validate_change
00000001201351a0 t validate_equiv_mem_from_store
0000000120173020 T validate_replace_rtx
0000000120170180 t validate_replace_rtx_1
0000000120095730 T validize_mem
00000001201fed40 s value.3
00000001200434b0 T value_member
00000001202006e4 S var_labelno
00000001201ff090 s var_offset
00000001201fffd0 S varconst_time
00000001201ffb90 s variable_args_p
0000000120048ef0 T variable_size
00000001201fec30 G version_string
0000000120200740 S virtual_incoming_args_rtx
0000000120200758 S virtual_outgoing_args_rtx
00000001202007b0 S virtual_stack_dynamic_rtx
0000000120200720 S virtual_stack_vars_rtx
00000001201ff060 s virtuals_instantiated
00000001201ffd40 S void_ftype_ptr_int_int
00000001201ffc50 S void_ftype_ptr_ptr_int
00000001201ffd90 S void_type_node
00000001200aead0 T volatile_insn_p
00000001202009cc S volatile_ok
00000001200aec60 T volatile_refs_p
000000012016e310 t walk_alter_subreg
000000012005bec0 t walk_fixup_memory_subreg
00000001201fedc4 s warn_about_return_type
0000000120200044 S warn_aggregate_return
00000001201ffe24 S warn_bad_function_cast
0000000120200080 S warn_cast_align
00000001201ffd60 S warn_cast_qual
00000001201fed64 S warn_char_subscripts
00000001201ffd10 S warn_conversion
0000000120021280 t warn_for_assignment
00000001201ffe10 S warn_format
00000001201fffe8 S warn_id_clash
00000001200652c0 T warn_if_unused_value
00000001201ffc10 S warn_implicit
00000001201ffed4 S warn_inline
00000001201fff74 S warn_larger_than
00000001201ffc90 S warn_missing_braces
00000001201ffdec S warn_missing_declarations
00000001201ffde8 S warn_missing_prototypes
00000001201fed60 S warn_nested_externs
00000001201ffdfc S warn_parentheses
00000001201ffe30 S warn_pointer_arith
00000001201fed5c S warn_redundant_decls
0000000120200020 S warn_return_type
00000001201fff40 S warn_shadow
00000001201ffc84 S warn_strict_prototypes
00000001201fff70 S warn_switch
00000001201ffda8 S warn_traditional
00000001201fff64 S warn_uninitialized
00000001201ffee4 S warn_unused
00000001201ffc80 S warn_write_strings
0000000120031500 T warning
00000001200310d0 T warning_for_asm
0000000120025f70 t warning_init
00000001201fefd8 s warning_message.0
0000000120030e20 T warning_with_decl
0000000120030ae0 T warning_with_file_and_line
00000001201fef48 S warningcount
00000001201fefc8 S warnings_are_errors
00000001201ffc20 S wchar_array_type_node
00000001201ffd28 S wchar_type_node
00000001201ff158 s weak_decls
00000001200a9be0 T weak_finish
00000001202009d4 S which_alternative
00000001201341f0 t wipe_dead_reg
00000001202007a0 S word_mode
00000001201e6a58 d wordlist
00000001200c8b80 t write_modifier_bytes
00000001201fef38 S write_symbols
0000000120205f80 b wstring
0000000120038bd0 T xmalloc
00000001202004d8 S xor_optab
0000000120038c30 T xrealloc
00000001200171f0 T xref_tag
00000001201ffbe8 S yychar
00000001201a35c0 r yycheck
00000001201ffbdc S yydebug
00000001201a18ac r yydefact
00000001201a1dd2 r yydefgoto
000000012000ba50 T yyerror
0000000120008e00 T yylex
00000001201ffbe0 S yylval
00000001201ffbd8 S yynerrs
00000001201a1ef2 r yypact
0000000120001ad0 T yyparse
00000001201a2418 r yypgoto
000000012019fc46 r yyprhs
000000012000b900 T yyprint
00000001201a12d0 r yyr1
00000001201a15be r yyr2
000000012019ff34 r yyrhs
00000001201a08b8 r yyrline
00000001201a2538 r yytable
00000001201a0ba8 r yytname
000000012019fb08 r yytranslate
00000001201ffbb8 s zero.2
00000001201ff140 s zero_cost