aboutsummaryrefslogtreecommitdiff
path: root/order-files/cc1obj.order
blob: 730010f4851e2dbdcbe5217c540ab57256befeb4 (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
start
__start
__dyld_init_check
dyld_stub_binding_helper
___darwin_gcc3_preregister_frame_info
__call_mod_init_funcs
__dyld_func_lookup
_main
_toplev_main
_hex_init
_general_init
_xmalloc_set_program_name
_diagnostic_initialize
__obstack_begin
_xmalloc
_parse_options_and_default_flags
_init_reg_sets
_add_params
_xrealloc
_pfe_init
_read_integral_parameter
_override_O_option
_extract_override_options
_objc_init_options
_c_common_init_options
_cpp_create_reader
_init_library
_init_trigraph_map
_xcalloc
_set_lang
_deps_init
_init_line_maps
__cpp_init_tokenrun
__cpp_get_buff
_new_buff
_pfe_s_malloc
_pfe_malloc
_gcc_obstack_init
_pfe_obstack_chuck_alloc
__cpp_init_includes
_splay_tree_new
_splay_tree_new_with_allocator
_splay_tree_xmalloc_allocate
_set_index_lang
_set_target_switch
_optimization_options
_override_option
_objc_decode_option
_c_decode_option
_cpp_handle_option
_parse_option
_independent_decode_option
_new_pending_directive
_xstrdup
_append_include_chain
__cpp_simplify_pathname
_hmap_load_header_map
_dump_switch_p
_decode_f_option
_decode_g_option
_set_Wunused
_set_Wformat
_decode_W_option
_output_set_maximum_length
_set_real_maximum_length
_output_is_line_wrapping
_add_env_options
_objc_post_options
_c_common_post_options
_cpp_post_options
_init_dependency_output
_do_compile
_process_options
_rs6000_override_options
_rs6000_parse_abi_options
_rs6000_add_gc_roots
_ggc_add_rtx_root
_ggc_add_root
_htab_create
_higher_prime_number
_machopic_add_gc_roots
_ggc_add_tree_root
_new_alias_set
_floor_log2_wide
_init_timevar
_timevar_start
_lang_independent_init
_init_ggc
_exact_log2_wide
_pfe_s_calloc
_pfe_calloc
_init_stringpool
_ht_create
_init_obstacks
_ggc_add_deletable_htab
_init_emit_once
_mode_for_size
_gen_rtx
_rtx_alloc
_ggc_alloc
_alloc_page
_pfe_free
_set_page_table_entry
_gen_raw_REG
_gen_rtx_fmt_i0
_gen_rtx_fmt_w
_ereal_atof
_asctoe53
_asctoeg
_ecleaz
_enormlz
_eshup6
_toe53
_eiisnan
_eshift
_eshup1
_e53toe
_eshdn1
_ecleazs
_emovo
_emovz
_eaddm
_eshup8
_emdnorm
_gen_rtx_CONST_INT
_gen_const_vector_0
_rtvec_alloc
_gen_rtx_fmt_E0
_gen_rtx_REG
_init_regs
_init_reg_sets_1
_reg_class_subset_p
_init_reg_modes
_choose_hard_reg_mode
_init_alias_once
_init_stmt
_init_loop
_address_cost
_memory_address_p
_rs6000_legitimate_address
_init_reload
_gen_rtx_fmt_ee
_gen_rtx_MEM
_gen_rtx_fmt_e0
_gen_rtx_fmt_s
_pfe_savestring
_plus_constant_wide
_find_constant_term_loc
_bitmap_initialize
_init_function_once
_varray_init
_init_stor_layout_once
_init_varasm_once
_init_EXPR_INSN_LIST_cache
_init_dummy_function_start
_prepare_function_start
_ggc_alloc_cleared
_init_stmt_for_function
_init_eh_for_function
_init_emit
_clear_emit_caches
_init_virtual_regs
_init_expr
_init_varasm_status
_init_temp_slots
_init_pending_stack_adjust
_rs6000_init_machine_status
_init_expmed
_start_sequence
_rtx_cost
_emit_insn
_make_insn_raw
_add_insn
_init_recog
_recog
_recog_13
_gpc_reg_operand
_register_operand
_recog_4
_reg_or_cint_operand
_recog_5
_nonimmediate_operand
_general_operand
_input_operand
_memory_operand
_toc_relative_expr_p
_constant_pool_expr_1
_reg_or_short_operand
_short_cint_operand
_htab_find_slot_with_hash
_const_int_htab_eq
_init_expr_once
_recog_6
_recog_10
_recog_9
_altivec_register_operand
_zero_constant
_cc_reg_operand
_end_sequence
_init_caller_save
_strict_memory_address_p
_recog_memoized_1
_extract_insn
_insn_extract
_constrain_operands
_reg_fits_class_p
_boolean_or_operator
_boolean_operator
_recog_1
_reg_or_mem_operand
_recog_7
_make_node
_build_decl
_builtin_function
_get_identifier
_ht_lookup
_calc_hash
_alloc_node
_tree_size
_make_decl_rtl
_decode_reg_name
_darwin_encode_section_info
_ggc_alloc_string
_update_stubs
_pushdecl
_lookup_name_current_level
_decl_attributes
_default_insert_attributes
_insert_default_attributes
_c_common_insert_default_attributes
_builtin_function_2
_builtin_function_disabled_p
_set_decl_assembler_name
_c_common_nodes_and_builtins
_is_attribute_p
_list_length
_handle_format_attribute
_decode_format_attr
_decode_format_type
_chainon
_lookup_attribute
_tree_cons
_build_type_attribute_variant
_attribute_list_equal
_attribute_list_contained
_copy_node
_set_type_quals
_attribute_hash_list
_type_hash_canon
_type_hash_lookup
_layout_type
_htab_find_with_hash
_type_hash_add
_build_qualified_type
_get_qualified_type
_c_init_decl_processing
_make_unsigned_type
_default_set_default_type_attributes
_fixup_unsigned_type
_build_int_2_wide
_tree_int_cst_sgn
_smallest_mode_for_size
_size_int_wide
_size_int_type_wide
_force_fit_type
_htab_find_slot
_size_htab_hash
_size_htab_eq
_finalize_type_size
_get_mode_alignment
_round_type_align
_round_up
_size_binop
_int_const_binop
_integer_onep
_build_function_type
_type_hash_list
_type_hash_eq
_type_list_equal
__obstack_newchunk
_start_fname_decls
_set_dump_tree_p
_c_objc_common_init
_c_common_init
_init_c_lex
_get_fileinfo
_splay_tree_lookup
_splay_tree_splay
_splay_tree_insert
_cpp_get_callbacks
_cpp_read_main_file
__cpp_init_hashtable
__cpp_init_directives
_cpp_lookup
__cpp_init_internal_pragmas
_cpp_register_pragma
_lookup_pragma_entry
_insert_pragma_entry
__cpp_aligned_alloc
_init_standard_includes
_update_path
_remove_component_p
_concat
_translate_name
_get_key_value
_merge_include_chains
_remove_dup_dirs
_remove_dup_dir
__cpp_read_file
_open_file
_find_or_create_entry
_splay_tree_foreach
_splay_tree_foreach_helper
_inode_finder
_stack_include_file
_read_include_file
_cpp_push_buffer
__cpp_do_file_change
_add_line_map
_cb_file_change
_update_header_times
_extract_interface_info
_init_pragma
_add_c_tree_codes
_ggc_add_tree_varray_root
_objc_init
_add_objc_tree_codes
_init_objc
_hash_init
_synth_module_prologue
_xref_tag
_lookup_tag
_pushtag
_build_pointer_type
_objc_declare_class
_is_class_name
_lookup_interface
_lookup_name
_generate_forward_declaration_to_string_table
_build_nt
_define_decl
_start_decl
_grokdeclarator
_signed_type
_signed_or_unsigned_type
_build_array_type
_layout_decl
_c_apply_type_quals_to_decl
_maybe_apply_pragma_weak
_finish_decl
_maybe_apply_renaming_pragma
_complete_array_type
_objc_check_decl
_rest_of_decl_compilation
_timevar_push
_timevar_pop
_get_pending_sizes
_build_tree_list
_objc_act_parse_init
_lang_dependent_init
_init_asm_output
_init_eh
_init_optabs
_new_optab
_init_all_optabs
_init_integral_libfuncs
_init_libfuncs
_init_floating_libfuncs
_init_one_libfunc
_init_traps
_push_srcloc
_dwarf2out_do_frame
_dbxout_init
_getdecls
_getpwd
_output_quoted_string
_assemble_name
_maybe_get_identifier
_text_section
_dbxout_typedefs
_dbxout_symbol
_compile_file
_init_final
_init_branch_prob
_yyparse
_dbxout_start_source_file
_cpp_finish_options
_init_builtins
__cpp_define_builtin
_run_directive
_start_directive
_do_define
_lex_macro_node
__cpp_lex_token
__cpp_lex_direct
_parse_identifier
__cpp_create_definition
_skip_whitespace
_parse_string
_unescaped_terminator_p
_alloc_expansion_token
_lex_expansion_token
_handle_newline
_pfe_is_cmd_ln_processing
_end_directive
_skip_rest_of_line
__cpp_pop_buffer
_parse_number
_pfe_set_cmd_ln_processing
_cpp_define
_warn_of_redefinition
__cpp_equiv_tokens
__cpp_free_definition
_pfe_reset_cmd_ln_processing
_free_chain
__cpp_push_next_buffer
_yyparse_1
_yylex
__yylex
_c_lex
_cpp_get_token
_get_effective_char
_skip_line_comment
__cpp_handle_directive
_directive_diagnostics
_do_import
_do_include_common
_parse_include
_check_eol
__cpp_execute_include
_find_include_file
_hmap_lookup_path
_splay_tree_splay_helper
_find_framework_file
__cpp_never_reread
_skip_block_comment
_adjust_column
_do_ifndef
_push_conditional
_do_if
__cpp_parse_expr
_lex
_parse_defined
_do_else
_do_endif
__cpp_pop_file_buffer
_purge_cache
_pop_srcloc
_dbxout_end_source_file
_cb_line_change
_yylexname
_altivec_treat_as_keyword
_pending_xref_error
_split_specs_attrs
_make_pointer_declarator
_build1
_first_rtl_op
_build_type_copy
_ggc_collect
_start_struct
_grokfield
_finish_struct
_in_parm_level_p
_start_record_layout
_place_field
_integer_zerop
_default_ms_bitfield_layout_p
_normalize_rli
_normalize_offset
_compare_tree_int
_finish_record_layout
_finalize_record_size
_convert
_convert_to_integer
_fold
_fold_convert
_mul_double
_encode
_decode
_rli_size_so_far
_bit_from_pos
_rli_size_unit_so_far
_byte_from_pos
_compute_record_mode
_host_integerp
_bit_position
_int_bit_position
_tree_low_cst
_simple_cst_equal
_rest_of_type_compilation
_get_object_reference
_pushlevel
_make_binding_level
_clear_parm_order
_declare_parm_level
_push_parm_decl
_simple_type_promotes_to
_c_promoting_integer_type_p
_warn_about_unused_variables
_poplevel
_grokparms
_enter_macro_context
_push_token_context
_next_context
_padding_token
__cpp_temp_token
__cpp_pop_context
_warn_if_shadowing
_get_parm_info
_gettags
_nreverse
_storedecls
_parmlist_tags_warning
_build_decl_attribute_variant
_gen_aux_info_record
_c_build_qualified_type
_parse_params
_save_parameter
_do_include
_search_from
_lbasename
___udivmoddi4
_parse_number
_do_elif
___udivdi3
_skip_escaped_newlines
_unsigned_type
__cpp_extend_buff
_build_index_type
_build
_non_lvalue
_add_double
_mode_for_size_tree
_shadow_tag
_shadow_tag_warned
_lookup_tag_reverse
_lex_number
_build_compound_expr
_internal_build_compound_expr
_build_array_declarator
_set_array_declarator_type
_constant_expression_warning
_operand_equal_p
_tree_int_cst_equal
_const_binop
_neg_double
_trigraph_p
_build_enumerator
_default_conversion
_build_binary_op
_common_type
_tree_int_cst_lt
_type_for_size
_finish_enum
_min_precision
_tree_floor_log2
_int_fits_type_p
_start_enum
_do_undef
_do_ifdef
_function_attribute_inlinable_p
_c_cannot_inline_tree_fn
_put_pending_sizes
_walk_tree
_inline_forbidden_p
_statement_code_p
_lhd_tree_inlining_walk_subtrees
_get_callee_fndecl
_setjmp_call_p
_special_function_p
_inlinable_function_p
_c_expand_body
_defer_fn
_debug_nothing_tree
_finish_function
_start_function
_announce_function
_store_parm_decls
_decl_function_context
_storetags
_init_function_start
_objc_printable_name
_objc_demangle
_emit_line_note
_set_file_and_line_for_stmt
_emit_note
_aggregate_value_p
_hard_function_value
_begin_stmt_tree
_current_stmt_tree
_c_begin_compound_stmt
_build_stmt
_add_stmt
_stmts_are_full_exprs_p
_clear_last_expr
_add_scope_stmt
_current_scope_stmt_stack
_c_begin_if_stmt
_build_external_ref
_lookup_objc_ivar
_assemble_external
_build_indirect_ref
_is_public
_build_component_ref
_lookup_field
_truthvalue_conversion
_convert_to_pointer
_truth_value_p
_twoval_comparison_p
_optimize_bit_field_compare
_get_inner_reference
_c_expand_start_cond
_parser_build_binary_op
_split_tree
_unsigned_conversion_warning
_overflow_warning
_build_array_ref
_pointer_int_sum
_size_in_bytes
_extract_muldiv
_c_expand_return
_convert_for_assignment
_objc_comptypes
_build_return_stmt
_c_finish_then
_c_expand_end_cond
_shorten_compare
_get_narrower
_invert_tree_comparison
_fold_range_test
_make_range
_fold_truthop
_merge_type_attributes
_merge_attributes
_swap_tree_comparison
_convert_and_check
_build_modify_expr
_c_expand_expr_stmt
_verify_sequence_points
_verify_tree
_warning_candidate_p
_new_tlist
_merge_tlist
_add_tlist
_warn_for_collisions
_warn_for_collisions_1
_require_complete_type
_lvalue_or_else
_lvalue_p
_get_unwidened
_negate_expr
_build_function_call
_decl_target_overloaded_intrinsic_p
_convert_arguments
_default_function_array_conversion
_check_function_format
_build_unary_op
_unary_complex_lvalue
_mark_addressable
_byte_position
_staticp
_kept_level_p
_lshift_double
_place_union_field
_get_inner_array_type
__cpp_release_buff
_funlike_invocation_p
_collect_args
_replace_args
_expand_arg
_push_ptoken_context
_clear_limbo_values
_finish_fname_decls
_finish_stmt_tree
_free_after_parsing
_free_stmt_status
_free_after_compilation
_free_eh_status
_free_expr_status
_free_emit_status
_free_varasm_status
_rs6000_free_machine_status
_tree_inlinable_function_p
_c_disregard_inline_limits
_merge_ranges
_range_binop
_build_range_check
_invert_truthvalue
_put_var_into_stack
_integer_all_onesp
_distribute_bit_expr
_integer_pow2p
_build_conditional_expr
_operand_equal_for_comparison_p
_decl_constant_value_for_broken_optimization
_decl_constant_value
_warn_about_long_double
_duplicate_decls
_comptypes
_merge_decl_attributes
_groktypename
_c_sizeof
_default_comp_type_attributes
_function_types_compatible_p
_self_promoting_args_p
_type_lists_compatible_p
_start_init
_push_string
_finish_init
_store_init_value
_digest_init
_add_decl_stmt
_build_c_cast
_is_id
_lex_string
_build_string
_combine_strings
_choose_string_type
_global_bindings_p
_htab_expand
_type_hash_hash
_find_empty_slot_for_expand
_get_static_reference
_start_protocol
_build_protocol_template
_lookup_protocol
_make_tree_vec
_lookup_and_install_protocols
_add_protocol
_check_protocol_recursively
_build_keyword_decl
_adjust_type_for_id_default
_is_objc_type_qualifier
_build_method_decl
_build_keyword_selector
_add_instance_method
_lookup_method
_hash_lookup
_hash_func
_hash_enter
_finish_protocol
_start_class
_add_class
_add_class_method
_finish_class
_continue_class
_build_ivar_chain
_objc_copy_list
_add_category
_decode_field_reference
_get_best_mode
_comp_proto_with_proto
_get_arg_type_list
_groktypename_in_parm_context
_hash_add_attr
_add_instance_variable
_type_for_mode
_rshift_double
_constant_boolean_node
_omit_one_operand
_unextend
_make_bit_field_ref
_all_ones_mask_p
_do_float_handler
_set_float_handler
_parse_float
_target_isinf
_eisinf
_eisnan
restFP
_build_real
_convert_to_real
_real_onep
_ereal_cmp
_ecmp
_emovi
_exact_real_inverse
_ediv
_eisneg
_edivm
_m16m
_ecmpm
_esubm
_real_value_truncate
_eclear
_etoe53
_real_twop
saveFP
_lex_charconst
_cpp_interpret_charconst
_do_pragma
_darwin_pragma_options
_push_field_alignment
_pop_field_alignment
_ht_expand
_redeclaration_error_message
_build_range_type
_release_pages
_ggc_mark_roots
_ggc_mark_rtx_ptr
_ggc_set_mark
_ggc_mark_rtx_children
_mark_optab
_mark_ehl_map
_ggc_mark_hash_table
_zap_lists
_ggc_mark_tree_ptr
_mark_const_str_htab
_htab_traverse
_mark_const_hash_entry
_maybe_mark_struct_function
_ggc_mark_rtvec_children
_mark_ident_hash
_ht_forall
_mark_ident
_varray_grow
_ggc_mark_trees
_lang_mark_tree
_c_mark_lang_decl
_ggc_htab_delete
_type_hash_marked_p
_ggc_marked_p
_type_hash_mark
_htab_clear_slot
_sweep_pages
_c_expand_start_else
_c_finish_else
_stabilize_reference
_stabilize_reference_1
_c_begin_while_stmt
_c_finish_while_stmt_cond
_c_size_in_bytes
_pedantic_non_lvalue
_pop_label_level
_build_message_expr
_finish_message_expr
_save_expr
_contains_placeholder_p
_lookup_instance_method_static
_build_selector_reference
_build_objc_method_call
_build_selector_reference_decl
_set_mem_attributes
_get_alias_set
_maybe_set_unchanging
_can_address_p
_handled_component_p
_get_mem_attrs
_mem_attrs_htab_hash
_update_non_lazy_ptrs
_pushdecl_top_level
_comp_target_types
_get_class_reference
_build_class_reference_decl
_receiver_is_class_object
_lookup_class_method_static
_initializer_constant_valid_p
_lhd_return_tree
_assemble_variable
_app_disable
_set_mem_align
_mem_attrs_htab_eq
_output_addressed_constants
_output_constant_def
_const_hash
_record_constant
_record_constant_1
_set_mem_alias_set
_output_constant_def_contents
_cstring_section
_data_section
_try_section_alias
_int_size_in_bytes
_output_constant
_assemble_string
_decode_addr_const
_objc_constant_string_object_section
_objc_section_init
_objc_cat_cls_meth_section
_objc_cat_inst_meth_section
_objc_string_object_section
_cfstring_constant_object_section
_objc_selector_refs_section
_objc_selector_fixup_section
_objc_cls_refs_section
_objc_class_section
_objc_meta_class_section
_objc_cls_meth_section
_objc_inst_meth_section
_objc_protocol_section
_objc_class_names_section
_objc_meth_var_types_section
_objc_meth_var_names_section
_objc_category_section
_objc_class_vars_section
_objc_instance_vars_section
_objc_module_info_section
_objc_symbols_section
_output_constructor
_int_byte_position
_expand_expr
_get_subtarget
_protect_from_queue
_mark_temp_addr_taken
_assemble_integer
_rs6000_assemble_integer
_find_weak_imports
_default_assemble_integer
_integer_asm_op
_assemble_integer_with_op
_output_addr_const
_name_needs_quotes
_immed_double_const
_resolve_unique_section
_variable_section
_darwin_set_section_for_var_p
_const_data_section
_in_text_section
_machopic_define_name
_machopic_define_ident
_machopic_ident_defined_p
_machopic_classify_ident
__cpp_backup_tokens
_build_objc_string_object
_add_class_reference
_setup_string_decl
_build_constructor
_build_super_template
_build_private_template
_build_class_template
_is_ivar
_check_duplicates
_locate_and_pad_parm
_function_arg_padding
_function_arg_boundary
_function_arg_mod_boundary
_pad_to_arg_alignment
_assign_parms
_function_arg_partial_nregs
_function_arg_skip
_no_reg_parm_stack_space
_function_arg_advance
_promote_mode
_gen_reg_rtx
_mark_user_reg
_validize_mem
_emit_move_insn
_emit_move_insn_1
_gen_movsi
_rs6000_emit_move
_gen_sequence
_pfe_s_realloc
_pfe_realloc
_reg_mentioned_p
_get_last_insn
_mark_reg_pointer
_function_arg_pass_by_reference
_function_arg
_emit_insns
_expand_function_start
_expand_pending_sizes
_force_next_line_note
_expand_stmt
_prep_stmt
_genrtl_compound_stmt
_genrtl_scope_stmt
_expand_start_bindings_and_block
_push_temp_slots
_genrtl_decl_stmt
_anon_aggr_type_p
_emit_local_var
_expand_decl
_expand_decl_init
_expand_assignment
_store_expr
_queued_subexp_p
_preserve_subexpressions_p
_expand_call
_flags_from_decl_or_type
_init_cumulative_args
_tree_last
_rearrange_arg_list
_initialize_argument_information
_finalize_must_preallocate
_any_pending_cleanups
_function_ok_for_sibcall
_unsafe_for_reeval
_c_unsafe_for_reeval
_assign_temp
_precompute_arguments
_calls_function
_calls_function_1
_value_member
_compute_argument_block_size
_compute_argument_addresses
_rtx_for_function_call
_precompute_register_parameters
_rtx_equal_p
_preserve_temp_slots
_pop_temp_slots
_combine_temp_slots
_emit_queue
_copy_rtx
_replace_equiv_address
_update_temp_slot_address
_change_address_1
_memory_address
_force_reg
_easy_fp_constant
_gen_rtx_fmt_e
_rs6000_machopic_legitimize_pic_address
_machopic_legitimize_pic_address
_machopic_indirect_data_reference
_machopic_data_defined_p
_machopic_function_base_name
_gen_rtx_fmt_E
_set_unique_reg_note
_find_reg_note
_find_temp_slot_from_address
_copy_to_mode_reg
_save_fixed_argument_area
_prepare_call_address
_lookup_static_chain
_load_register_parameters
_use_reg
_trunc_int_for_mode
_num_insns_constant
_num_insns_constant_wide
_emit_call_1
_gen_call_value
_machopic_indirect_call_target
_machopic_name_defined_p
_machopic_stub_list_entry
_gen_rtx_fmt_0
_gen_rtvec
_gen_rtvec_v
_emit_call_insn
_make_call_insn_raw
_get_insns
_expand_start_target_temps
_do_pending_stack_adjust
_sbitmap_alloc
_sbitmap_zero
_gen_lowpart_SUBREG
_subreg_lowpart_offset
_gen_rtx_SUBREG
_gen_rtx_fmt_ei
_convert_modes
_gen_lowpart
_gen_lowpart_common
_simplify_gen_subreg
_simplify_subreg
_gen_sibcall_value
_gen_rtx_fmt_
_emit_barrier_after
_add_insn_after
_expand_end_target_temps
_expand_end_bindings
_do_jump
_can_compare_p
_do_compare_and_jump
_copy_to_reg
_gen_rtx_fmt_uuuu
_do_compare_rtx_and_jump
_reverse_condition
_swap_commutative_operands_p
_commutative_operand_precedence
_force_not_mem
_emit_cmp_and_jump_insns
_unsigned_condition
_prepare_cmp_insn
_emit_cmp_and_jump_insn_1
_prepare_operand
_gen_cmpsi
_gen_bne
_rs6000_emit_cbranch
_rs6000_generate_compare
_validate_condition_mode
_gen_rtx_fmt_u00
_gen_rtx_fmt_eee
_emit_jump_insn
_make_jump_insn_raw
_genrtl_if_stmt
_genrtl_expr_stmt_value
_expand_expr_stmt_value
_warn_if_unused_value
_gen_call
_free_temp_slots
_expand_end_cond
_emit_label
_gen_sibcall
_genrtl_return_stmt
_expand_return
_expand_value_return
_expand_null_return_1
_clear_pending_stack_adjust
_expand_goto_internal
_expand_fixup
_emit_jump
_gen_jump
_emit_barrier
_objc_expand_function_end
_encode_method_prototype
_encode_type_qualifiers
_encode_type
_encode_pointer
_forwarding_offset
_apply_args_register_offset
_apply_args_size
_encode_aggregate
_expand_function_end
_finish_expr_for_function
_in_sequence_p
_emit_line_note_force
_expand_eh_return
_clobber_return_register
_diddle_return_value
_do_clobber_return_reg
_emit_insn_after
_use_return_register
_do_use_return_reg
_expand_fixups
_fixup_gotos
_rest_of_compilation
_reorder_blocks
_reorder_blocks_0
_reorder_blocks_1
_blocks_nreverse
_reorder_fix_fragments
_pfe_varray_free
_init_flow
_open_dump_file
_convert_from_eh_region_ranges
_collect_eh_region_array
_resolve_fixup_regions
_convert_from_eh_region_ranges_1
_remove_fixup_regions
_remove_unreachable_regions
_get_max_uid
_remove_unnecessary_notes
_remove_insn
_alloc_INSN_LIST
_gen_rtx_fmt_ue
_free_INSN_LIST_node
_init_function_for_compilation
_purge_hard_subreg_sets
_optimize_sibling_and_tail_recursive_calls
_find_exception_handler_labels
_rebuild_jump_labels
_init_label_info
_mark_all_labels
_mark_jump_label
_cse_basic_block
_new_basic_block
_any_uncondjump_p
_pc_set
_cse_process_notes
_cse_insn
_canon_reg
_apply_change_group
_fold_rtx
_canon_hash
_get_cse_reg_info
_lookup
_approx_reg_cost
_for_each_rtx
_approx_reg_cost_1
_bitmap_set_bit
_bitmap_element_allocate
_bitmap_element_link
_bitmap_clear
_preferrable
_validate_change
_insert_regs
_make_new_qty
_rehash_using_reg
_insert
_invalidate_from_clobbers
_invalidate
_delete_reg_equiv
_lookup_for_remove
_make_regs_eqv
_check_for_label_ref
_lookup_as_function
_safe_hash
_exp_equiv_p
_equiv_constant
_simplify_binary_operation
_avoid_constant_pool_reference
_notreg_cost
_insn_invalid_p
_asm_noperands
_cancel_changes
_mention_regs
_remove_invalid_refs
_refers_to_regno_p
_remove_from_table
_gen_lowpart_if_possible
_find_best_addr
_recog_33
_mov_to_vrsave_operation
_load_multiple_operation
_store_multiple_operation
_recog_25
_current_file_function_operand
_call_operand
_immediate_operand
_scratch_operand
_invalidate_memory
_invalidate_for_call
_recog_3
_invalidate_skipped_block
_note_stores
_invalidate_skipped_set
_cse_main
_cse_end_of_basic_block
_next_real_insn
_prev_nonnote_insn
_ggc_pop_context
_end_alias_analysis
_ggc_del_root
_max_reg_num
_find_basic_blocks
_clear_edges
_free_edge
_count_basic_blocks
_inside_basic_block_p
_control_flow_insn_p
_can_throw_internal
_find_basic_blocks_1
_create_basic_block_structure
_compute_bb_for_insn
_make_edges
_cached_make_edge
_computed_jump_p
_computed_jump_p_1
_returnjump_p
_returnjump_p_1
_make_label_edge
_next_nonnote_insn
_make_eh_edge
_reachable_handlers
_free_INSN_LIST_list
_tidy_fallthru_edges
_tidy_fallthru_edge
_cleanup_cfg
_delete_unreachable_blocks
_find_unreachable_blocks
_try_optimize_cfg
_update_forwarder_flag
_forwarder_block_p
_active_insn_p
_hook_void_bool_false
_try_simplify_condjump
_any_condjump_p
_try_forward_edges
_onlyjump_p
_free_EXPR_LIST_list
_free_bb_for_insn
_delete_trivially_dead_insns
_count_reg_usage
_side_effects_p
_canonicalize_condition
_set_of
_set_of_1
_delete_null_pointer_checks
_delete_null_pointer_checks_1
_sbitmap_vector_zero
_invalidate_nonnull_info
_single_set_2
_compute_available
_sbitmap_vector_ones
_sbitmap_ones
_sbitmap_union_of_diff
_sbitmap_intersection_of_preds
_sbitmap_copy
_clear_aux_for_edges
_clear_aux_for_blocks
_renumber_insns
_close_dump_file
_purge_addressof
_hash_table_init
_hash_table_init_n
_compute_insns_for_mem
_insns_for_mem_walk
_hash_lookup
_insns_for_mem_hash
_compute_hash_table
_record_last_reg_set_info
_mark_call
_record_last_mem_set_info
_record_last_set_info
_hash_scan_insn
_hash_scan_set
_find_reg_equal_equiv_note
_oprs_available_p
_oprs_unchanged_p
_insert_set_in_table
_hash_set
_gcse_alloc
_hash_scan_call
_hash_scan_clobber
_expr_equiv_p
_one_cprop_pass
_alloc_cprop_mem
_sbitmap_vector_alloc
_compute_cprop_data
_compute_local_properties
_compute_transp
_cprop
_reset_opr_set_tables
_clear_modify_mem_tables
_free_list
_cprop_insn
_note_uses
_find_used_regs
_mark_oprs_set
_oprs_not_set_p
_bitmap_bit_p
_find_avail_set
_lookup_set
_mark_set
_mark_clobber
_free_cprop_mem
_free_set_hash_table
_gcse_main
_free_gcse_mem
_free_modify_mem_tables
_alloc_gcse_mem
_gmalloc
_one_classic_gcse_pass
_alloc_expr_hash_table
_alloc_rd_mem
_compute_expr_hash_table
_want_to_gcse_p
_set_noop_p
_oprs_anticipatable_p
_insert_expr_in_table
_hash_expr
_hash_expr_1
_load_killed_in_block_p
_find_comparison_args
_comparison_dominates_p
_simplify_relational_operation
_simplify_ternary_operation
_record_jump_equiv
_reversed_comparison_code_parts
_record_jump_cond
_merge_equiv_classes
_check_function_return_warnings
_mark_constant_function
_mark_dfs_back_edges
_init_alias_analysis
_record_set
_find_base_value
_rtx_varies_p
_nonlocal_mentioned_p
_flow_loops_find
_calculate_dominance_info
_init_dom_info
_calc_dfs_tree
_calc_dfs_tree_nonrec
_calc_idoms
_link_roots
_idoms_to_doms
_free_dom_info
_flow_loops_tree_build
_flow_loops_level_compute
_estimate_probability
_predict_edge_def
_predict_edge
_predict_insn
_get_condition
_predict_insn_def
_combine_predictions_for_insn
_dump_prediction
_estimate_bb_frequencies
_alloc_aux_for_blocks
_alloc_aux_for_block
_alloc_aux_for_edges
_alloc_aux_for_edge
_estimate_loops_at_level
_propagate_freq
_free_aux_for_blocks
_free_aux_for_edges
_flow_loops_free
_life_analysis
_allocate_reg_life_data
_allocate_reg_info
_allocate_bb_life_data
_mark_regs_live_at_end
_mark_reg
_update_life_info
_clear_log_links
_calculate_global_regs_live
_bitmap_operation
_bitmap_copy
_propagate_block
_init_propagate_block_info
_propagate_one_insn
_insn_dead_p
_mark_set_regs
_mark_used_regs
_mark_used_reg
_volatile_refs_p
_mark_set_1
_invalidate_mems_from_set
_bitmap_clear_bit
_invalidate_mems_from_autoinc
_free_propagate_block_info
_bitmap_equal_p
_sched_analyze
_add_dependence_list_and_free
_add_dependence
_sched_analyze_insn
_sched_analyze_1
_sched_analyze_2
_read_dependence
_add_insn_mem_dependence
_alloc_EXPR_LIST
_add_dependence_list
_flush_pending_lists
_compute_jump_reg_dependencies
_get_condition
_compute_block_backward_dependences
_add_branch_dependences
_sets_likely_spilled
_sets_likely_spilled_1
_free_deps
_schedule_region
_get_block_head_tail
_compute_forward_dependences
_group_leader
_set_priorities
_priority
_insn_cost
_result_ready_cost
_contributes_to_priority
_rs6000_adjust_cost
_get_attr_type
_extract_constrain_insn_cached
_extract_insn_cached
_regclass
_secondary_reload_class
_scan_one_insn
_record_operand_costs
_record_reg_classes
_find_regno_note
_copy_cost
_local_alloc
_update_equiv_regs
_reg_preferred_class
_equiv_init_movable_p
_equiv_init_varies_p
_no_equiv
_block_alloc
_requires_inout
_get_hard_reg_initial_reg
_combine_regs
_reg_is_born
_alloc_qty
_reg_alternate_class
_wipe_dead_reg
_mark_life
_reg_is_set
_multiple_sets
_qty_sugg_compare_1
_find_free_reg
_post_mark_life
_qty_compare_1
_reg_set_to_hard_reg_set
_qty_sugg_compare
_qty_compare
_global_alloc
_global_conflicts
_record_conflicts
_mark_reg_clobber
_mark_reg_death
_mark_reg_store
_set_preference
_record_one_conflict
_expand_preferences
_allocno_compare
_prune_preferences
_find_reg
_build_insn_chain
_new_insn_chain
_reg_dies
_reg_becomes_live
_reload
_clear_secondary_mem
_init_save_areas
_mark_home_live
_scan_paradoxical_subregs
_function_invariant_p
_init_elim_table
_max_label_num
_get_first_label_num
_alter_reg
_mark_not_eliminable
_maybe_fix_stack_asms
_finish_spills
_rs6000_stack_info
_first_reg_to_save
_first_fp_reg_to_save
_first_altivec_reg_to_save
_rs6000_ra_ever_killed
_push_topmost_sequence
_pop_topmost_sequence
_reg_overlap_mentioned_p
_get_frame_size
_get_func_frame_size
_set_initial_elim_offsets
_set_initial_label_offsets
_calculate_needs_all_insns
_set_label_offsets
_eliminate_regs_in_insn
_elimination_effects
_eliminate_regs
_check_eliminable_occurrences
_find_reloads
_update_eliminable_offsets
_combine_reloads
_operands_match_p
_emit_reload_insns
_emit_insns_before
_emit_insns_after
_reload_reg_reaches_end_p
_reload_as_needed
_subst_reloads
_forget_old_reloads_1
_push_reload
_reload_inner_reg_of_subreg
_find_reusable_reload
_earlyclobber_operand_p
_choose_reload_regs
_choose_reload_regs_init
_compute_use_by_pseudos
_allocate_reload_reg
_reload_reg_free_p
_set_reload_reg
_true_regnum
_mark_reload_reg_in_use
_do_input_reload
_do_output_reload
_set_offsets_for_label
_verify_initial_elim_offsets
_cleanup_subreg_operands
_add_auto_inc_notes
_auto_inc_p
_replace_pseudos_in_call_usage
_obstack_free
_fixup_abnormal_edges
_unshare_all_rtl_again
_reset_used_flags
_reset_used_decls
_unshare_all_rtl
_copy_rtx_if_shared
_unshare_all_decls
_unshare_all_rtl_1
_reload_cse_regs
_reload_cse_regs_1
_cselib_init
_clear_table
_htab_empty
_prologue_epilogue_contains
_contains
_cselib_process_insn
_reload_cse_simplify
_reload_cse_simplify_set
_reload_cse_noop_set_p
_rtx_equal_for_cselib_p
_cselib_lookup
_reload_cse_simplify_operands
_cselib_record_sets
_new_cselib_val
_new_elt_loc_list
_new_elt_list
_cselib_invalidate_rtx
_cselib_invalidate_regno
_push_operand
_cselib_record_set
_hash_rtx
_wrap_constant
_cselib_subst_to_values
_shallow_copy_rtx
_cselib_lookup_mem
_add_mem_for_addr
_replace_equiv_address_nv
_unchain_one_elt_list
_unchain_one_elt_loc_list
_entry_and_rtx_equal_p
_cselib_invalidate_mem
_cselib_invalidate_mem_1
_cselib_mem_conflict_p
_cselib_finish
_htab_delete
_reload_combine
_reload_combine_note_use
_reload_combine_note_store
_get_value_hash
_if_convert
_find_if_header
_find_if_block
_process_if_block
_find_cond_trap
_block_has_only_trap
_find_if_case_1
_find_if_case_2
_split_all_insns
_split_insn
_try_split
_split_insns
_const_int_operand
_non_add_cint_operand
_split_11
_split_7
_equality_operator
_vector_comparison_operator
_schedule_insns
_scope_to_insns_initialize
_delete_insn
_sched_init
_rs6000_issue_rate
_init_dependency_caches
_rtx_equal_for_memref_p
_memrefs_conflict_p
_canon_rtx
_addr_side_effect_eval
_write_dependence_p
_output_dependence
_mems_in_disjoint_alias_sets_p
_alias_sets_conflict_p
_nonoverlapping_memrefs_p
_get_addr
_base_alias_check
_find_base_term
_true_dependence
_lsu_unit_blockage
_actual_hazard
_schedule_block
_schedule_more_p
_iu2_unit_blockage
_can_schedule_ready_p
_move_insn
_move_insn1
_reemit_notes
_schedule_insn
_new_ready
_rs6000_adjust_priority
_queue_to_ready
_rank_for_schedule
_function_units_used
_rgn_rank
_find_insn_list
_no_real_insns_p
_save_line_notes
_rm_line_notes
_rm_other_notes
_clear_units
_init_ready_list
_ready_add
_verify_local_live_at_start
_reposition_prologue_and_epilogue_notes
_reorder_insns
_reorder_insns_nobb
_set_block_for_insn
_rm_redundant_line_notes
_scope_to_insns_finalize
_set_block_levels
_change_scope
_emit_note_before
_add_insn_before
_sched_finish
_free_dependency_caches
_add_noreturn_fake_exit_edges
_try_crossjump_bb
_try_crossjump_to_edge
_outgoing_edges_match
_remove_fake_edges
_remove_fake_successors
_compute_alignments
_purge_line_number_notes
_cleanup_barriers
_split_all_insns_noflow
_convert_to_eh_region_ranges
_shorten_branches
_insn_default_length
_insn_variable_length_p
_dwarf2out_begin_prologue
_final_start_function
_number_blocks
_get_block_vector
_all_blocks
_rs6000_output_function_prologue
_final
_final_scan_insn
_debug_nothing_int
_peephole
_scc_comparison_operator
_constrain_operands_cached
_get_insn_template
_output_asm_insn
_output_operand
_print_operand
_notice_source_line
_dbxout_source_line
_dbxout_source_file
_dbxout_begin_block
_simplify_subtraction
_decode_rtx_const
_walk_alter_subreg
_output_address
_print_operand_address
_no_asm_to_stream
_profile_after_prologue
_output_406
_machopic_validate_stub_or_non_lazy_ptr
_output_405
_output_541
_output_cbranch
_get_attr_length
_output_asm_label
_dbxout_end_block
_final_end_function
_rs6000_output_function_epilogue
_output_compiler_stub
_debug_nothing_void
_assemble_end_function
_output_after_function_constants
_output_function_exception_table
_free_basic_block_vars
_regset_release_memory
_bitmap_release_memory
_dbxout_function_decl
_dbxout_begin_function
_dbxout_prepare_symbol
_dbxout_type
_dbxout_type_index
_dbxout_queue_symbol
_dbxout_type_name
_dbxout_finish_symbol
_dbxout_flush_symbol_queue
_print_wide_int
_dbxout_type_fields
_print_int_cst_octal
_print_octal
_finish_method_def
_optimize_inline_calls
_lhd_tree_inlining_add_pending_fn_decls
_expand_calls_inline
_htab_find
_hash_pointer
_expand_call_inline
_lhd_tree_inlining_tree_chain_matters_p
_eq_pointer
_init_recog_no_volatile
_gen_label_rtx
_gen_rtx_fmt_iuu00iss
_genrtl_for_stmt
_emit_nop
_expand_start_loop_continue_elsewhere
_expand_start_loop
_genrtl_do_pushlevel
_expand_cond
_expand_exit_loop_top_cond
_expand_exit_loop_if_false
_gen_blt
_expand_start_cond
_gen_beq
_expand_binop
_reg_or_arith_cint_operand
_gen_addsi3
_add_operand
_expand_increment
_expand_end_loop
_emit_label_before
_emit_jump_insn_before
_emit_barrier_before
_maybe_remove_eh_handler
_flow_delete_block_noexpunge
_delete_insn_chain
_can_delete_label_p
_in_expr_list_p
_remove_node_from_expr_list
_can_delete_note_p
_remove_edge
_flow_delete_block
_expunge_block
_expunge_block_nocompact
_redirect_edge_and_branch
_try_redirect_by_replacing_jump
_can_fallthru
_next_active_insn
_simplejump_p
_never_reached_warning
_ehl_hash
_block_label
_redirect_jump
_redirect_exp
_redirect_exp_1
_num_validated_changes
_branch_comparison_operator
_redirect_edge_succ_nodup
_redirect_edge_succ
_merge_blocks
_tail_recursion_label_p
_sequence_uses_addressof
_uses_addressof
_replace_call_placeholder
_call_ends_block_p
_skip_copy_to_return_value
_identify_call_return_value
_skip_stack_adjustment
_skip_pic_restore
_reg_set_between_p
_purge_reg_equiv_notes
_remove_note
_purge_mem_unchanging_flag
_purge_addressof_1
_hash_table_free
_alloc_reg_set_mem
_compute_sets
_record_set_info
_record_one_set
_alloc_set_hash_table
_compute_set_hash_table
_compute_kill_rd
_compute_rd
_sbitmap_union_of_preds
_alloc_avail_expr_mem
_compute_ae_gen
_compute_ae_kill
_expr_killed_p
_classic_gcse
_lookup_expr
_free_avail_expr_mem
_free_rd_mem
_free_expr_hash_table
_one_code_hoisting_pass
_cse_around_loop
_cse_set_around_loop
_addr_affects_sp_p
_find_and_verify_loops
_compute_luids
_for_each_eh_label
_mark_loop_jump
_loop_optimize
_reg_scan
_reg_scan_mark_refs
_find_single_use_in_loop
_loop_regs_scan
_count_one_set
_reg_used_between_p
_find_reg_fusage
_find_regno_fusage
_scan_loop
_count_insns_in_loop
_next_insn_in_loop
_reg_in_basic_block_p
_loop_invariant_p
_consec_sets_invariant_p
_loop_movables_add
_skip_consec_insns
_modified_between_p
_reg_set_p
_no_labels_between_p
_may_trap_p
_rtx_addr_can_trap_p
_loop_reg_used_before_p
_ignore_some_movables
_force_movables
_combine_movables
_load_mems
_reg_scan_update
_strength_reduce
_loop_bivs_find
_for_each_insn_in_loop
_check_insn_for_bivs
_basic_induction_var
_record_biv
_loop_bivs_init_find
_record_initial
_get_condition_for_loop
_valid_initial_value_p
_loop_bivs_check
_loop_givs_find
_check_insn_for_givs
_find_mem_givs
_update_giv_derive
_general_induction_var
_simplify_giv_expr
_loop_iterations
_biv_total_increment
_fold_rtx_mult_add
_loop_find_equiv_value
_find_common_reg_term
_loop_givs_check
_check_dbra_loop
_count_nonfixed_reads
_loop_biv_eliminable_p
_maybe_eliminate_biv
_maybe_eliminate_biv_1
_check_ext_dependent_givs
_combine_givs
_loop_givs_dead_check
_loop_givs_reduce
_loop_givs_rescan
_replace_regs
_loop_ivs_free
_loop_movables_free
_ggc_push_context
_regclass_init
_thread_jump
_reversed_comparison_code
_compress
_flow_depth_first_order_compute
_flow_loop_nodes_find
_sbitmap_first_set_bit
_sbitmap_last_set_bit
_flow_loop_scan
_flow_loop_level_compute
_flow_loop_exit_edges_find
_find_auto_inc
_delete_dead_jumptables
_uninitialized_vars_warning
_regno_uninitialized
_initialize_uninitialized_subregs
_combine_instructions
_init_reg_last_arrays
_setup_incoming_promotions
_promoted_input_arg
_record_value_for_reg
_update_table_tick
_get_last_value_validate
_nonzero_bits
_num_sign_bit_copies
_set_nonzero_bits_and_sign_copies
_expand_field_assignment
_get_last_value
_record_dead_and_set_regs
_record_dead_and_set_regs_1
_replace_rtx
_recog_15
_recog_21
_recog_16
_recog_17
_recog_19
_recog_31
_recog_28
_recog_26
_stmw_operation
_mtcrf_operation
_lmw_operation
_vrsave_operation
_recog_for_combine
_check_asm_operands
_do_SUBST_INT
_try_combine
_undo_all
_cant_combine_insn_p
_can_combine_p
_combinable_i3pat
_do_SUBST
_reg_referenced_p
_dead_or_set_p
_dead_or_set_regno_p
_subst
_combine_simplify_rtx
_simplify_set
_find_single_use
_find_single_use_1
_simplify_comparison
_swap_condition
_make_compound_operation
_make_field_assignment
_mark_used_regs_combine
_use_crosses_set_p
_volatile_insn_p
_force_to_mode
_recog_22
_recog_23
_any_operand
_check_promoted_subreg
_if_then_else_cond
_simplify_if_then_else
_combine_reversed_comparison_code
_recog_30
_contains_muldiv
_apply_distributive_law
_have_insn_for
_move_deaths
_restore_line_notes
_free_pending_lists
_finish_deps_global
_init_deps_global
_init_deps
_unlink_line_notes
_unlink_other_notes
_leaf_function_p
_allocate_initial_values
_record_address_regs
_assign_stack_local
_assign_stack_local_1
_find_reloads_address
_regno_clobbered_p
_copy_reloads
_condjump_p
_thread_prologue_and_epilogue_insns
_gen_prologue
_rs6000_emit_prologue
_try_leaf_pic_optimization
_name_encodes_objc_method_p
_rs6000_frame_related
_simplify_rtx
_rs6000_maybe_dead
_rs6000_emit_allocate_stack
_gen_movsi_update
_record_insns
_insert_insn_on_edge
_direct_return
_gen_epilogue
_rs6000_emit_epilogue
_commit_edge_insertions
_commit_one_edge_insertion
_find_sub_basic_blocks
_find_bb_boundaries
_purge_dead_edges
_compute_outgoing_frequencies
___divdi3
___udivmoddi4
_gen_sibcall_epilogue
_emit_insn_before
_insns_match_p
_copyprop_hardreg_forward
_init_value_data
_copyprop_hardreg_forward_1
_preprocess_constraints
_kill_clobbered_value
_kill_autoinc_value
_replace_oldest_value_reg
_find_oldest_value_reg
_kill_set_value
_kill_value
_kill_value_regno
_set_value_regno
_copy_value
_replace_oldest_value_mem
_replace_oldest_value_addr
_recog_20
_delete_noop_moves
_noop_move_p
_find_insn_reg_weight
_init_regions
_find_single_block_region
_count_or_remove_death_notes
_free_EXPR_LIST_node
_assemble_start_function
_output_408
_purge_all_dead_edges
_notice_stack_pointer_modification
_notice_stack_pointer_modification_1
_distribute_notes
_reg_bitfield_target_p
_distribute_links
_undo_commit
_remove_death
_emit_note_after
_reload_cse_delete_noop_set
_references_value_p
_reload_cse_move2add
_move2add_note_store
_sext_for_mode
_start_method_def
_synth_self_and_ucmd_args
_handle_unused_attribute
_expr_last
_continue_method_def
_really_start_method
_lookup_method_in_protocol_list
_find_label_refs
_alloc_block
_merge_blocks_nomove
_skip_use_of_return_value
_skip_unreturned_value
_skip_jump_insn
_doing_eh
_emit_initial_value_sets
_instantiate_virtual_regs
_instantiate_decls
_instantiate_decl
_instantiate_decls_1
_instantiate_virtual_regs_1
_instantiate_new_reg
_output_407
_dbxout_parms
_dbxout_block
_dbxout_syms
_dbxout_reg_parms
_dbxout_symbol_location
_dbxout_function_end
_init_insn_lengths
_clear_const_double_mem
_expected_value_to_br_prob
_prev_real_insn
_insn_live_p
_set_live_p
_regmove_optimize
_discover_flags_reg
_gen_add3_insn
_mark_flags_life_zones
_find_matches
_validate_replace_rtx
_validate_replace_rtx_1
_mirror_conflicts
_nothrow_function_p
_output_constant_pool
_mark_constant_pool
_htab_elements
_function_section
_unsave_expr
_expand_start_else
_machopic_non_lazy_ptr_list_entry
_start_cleanup_deferral
_end_cleanup_deferral
_expand_loop_continue_here
_genrtl_expr_stmt
_delete_related_insns
_canon_list_insert
_mems_conflict_for_gcse_p
_try_replace_reg
_validate_replace_src
_validate_replace_src_1
_simplify_replace_rtx
_try_pre_increment_1
_try_pre_increment
_find_use_as_address
_split_2
_cc_reg_not_cr0_operand
_split_3
_split_4
_split_6
_non_short_cint_operand
_add_to_mem_set_list
_comp_method_with_proto
_force_operand
_unsave_expr_now
_unsave_expr_now_r
_unsave_expr_1
_duplicate_loop_exit_test
_copy_loop_headers
_invert_jump
_invert_exp
_invert_exp_1
_invert_br_probabilities
_update_br_prob_note
_label_is_jump_target_p
_get_bitmap_width
_indirect_jump_in_function_p
_prescan_loop
_note_addr_stored
_set_sched_group_p
_remove_dependence