1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
| /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* Intrinsic Function Source Fragment *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
// VisualStudio defines setjmp as _setjmp
#if defined(_MSC_VER) && defined(setjmp) && \
!defined(setjmp_undefined_for_msvc)
# pragma push_macro("setjmp")
# undef setjmp
# define setjmp_undefined_for_msvc
#endif
// Enum values for Intrinsics.h
#ifdef GET_INTRINSIC_ENUM_VALUES
addressofreturnaddress, // llvm.addressofreturnaddress
adjust_trampoline, // llvm.adjust.trampoline
annotation, // llvm.annotation
assume, // llvm.assume
bitreverse, // llvm.bitreverse
bswap, // llvm.bswap
canonicalize, // llvm.canonicalize
ceil, // llvm.ceil
clear_cache, // llvm.clear_cache
codeview_annotation, // llvm.codeview.annotation
convert_from_fp16, // llvm.convert.from.fp16
convert_to_fp16, // llvm.convert.to.fp16
copysign, // llvm.copysign
coro_alloc, // llvm.coro.alloc
coro_alloca_alloc, // llvm.coro.alloca.alloc
coro_alloca_free, // llvm.coro.alloca.free
coro_alloca_get, // llvm.coro.alloca.get
coro_begin, // llvm.coro.begin
coro_destroy, // llvm.coro.destroy
coro_done, // llvm.coro.done
coro_end, // llvm.coro.end
coro_frame, // llvm.coro.frame
coro_free, // llvm.coro.free
coro_id, // llvm.coro.id
coro_id_retcon, // llvm.coro.id.retcon
coro_id_retcon_once, // llvm.coro.id.retcon.once
coro_noop, // llvm.coro.noop
coro_param, // llvm.coro.param
coro_prepare_retcon, // llvm.coro.prepare.retcon
coro_promise, // llvm.coro.promise
coro_resume, // llvm.coro.resume
coro_save, // llvm.coro.save
coro_size, // llvm.coro.size
coro_subfn_addr, // llvm.coro.subfn.addr
coro_suspend, // llvm.coro.suspend
coro_suspend_retcon, // llvm.coro.suspend.retcon
cos, // llvm.cos
ctlz, // llvm.ctlz
ctpop, // llvm.ctpop
cttz, // llvm.cttz
dbg_addr, // llvm.dbg.addr
dbg_declare, // llvm.dbg.declare
dbg_label, // llvm.dbg.label
dbg_value, // llvm.dbg.value
debugtrap, // llvm.debugtrap
donothing, // llvm.donothing
eh_dwarf_cfa, // llvm.eh.dwarf.cfa
eh_exceptioncode, // llvm.eh.exceptioncode
eh_exceptionpointer, // llvm.eh.exceptionpointer
eh_recoverfp, // llvm.eh.recoverfp
eh_return_i32, // llvm.eh.return.i32
eh_return_i64, // llvm.eh.return.i64
eh_sjlj_callsite, // llvm.eh.sjlj.callsite
eh_sjlj_functioncontext, // llvm.eh.sjlj.functioncontext
eh_sjlj_longjmp, // llvm.eh.sjlj.longjmp
eh_sjlj_lsda, // llvm.eh.sjlj.lsda
eh_sjlj_setjmp, // llvm.eh.sjlj.setjmp
eh_sjlj_setup_dispatch, // llvm.eh.sjlj.setup.dispatch
eh_typeid_for, // llvm.eh.typeid.for
eh_unwind_init, // llvm.eh.unwind.init
exp, // llvm.exp
exp2, // llvm.exp2
expect, // llvm.expect
experimental_constrained_ceil, // llvm.experimental.constrained.ceil
experimental_constrained_cos, // llvm.experimental.constrained.cos
experimental_constrained_exp, // llvm.experimental.constrained.exp
experimental_constrained_exp2, // llvm.experimental.constrained.exp2
experimental_constrained_fadd, // llvm.experimental.constrained.fadd
experimental_constrained_fdiv, // llvm.experimental.constrained.fdiv
experimental_constrained_floor, // llvm.experimental.constrained.floor
experimental_constrained_fma, // llvm.experimental.constrained.fma
experimental_constrained_fmul, // llvm.experimental.constrained.fmul
experimental_constrained_fpext, // llvm.experimental.constrained.fpext
experimental_constrained_fptosi, // llvm.experimental.constrained.fptosi
experimental_constrained_fptoui, // llvm.experimental.constrained.fptoui
experimental_constrained_fptrunc, // llvm.experimental.constrained.fptrunc
experimental_constrained_frem, // llvm.experimental.constrained.frem
experimental_constrained_fsub, // llvm.experimental.constrained.fsub
experimental_constrained_llrint, // llvm.experimental.constrained.llrint
experimental_constrained_llround, // llvm.experimental.constrained.llround
experimental_constrained_log, // llvm.experimental.constrained.log
experimental_constrained_log10, // llvm.experimental.constrained.log10
experimental_constrained_log2, // llvm.experimental.constrained.log2
experimental_constrained_lrint, // llvm.experimental.constrained.lrint
experimental_constrained_lround, // llvm.experimental.constrained.lround
experimental_constrained_maxnum, // llvm.experimental.constrained.maxnum
experimental_constrained_minnum, // llvm.experimental.constrained.minnum
experimental_constrained_nearbyint, // llvm.experimental.constrained.nearbyint
experimental_constrained_pow, // llvm.experimental.constrained.pow
experimental_constrained_powi, // llvm.experimental.constrained.powi
experimental_constrained_rint, // llvm.experimental.constrained.rint
experimental_constrained_round, // llvm.experimental.constrained.round
experimental_constrained_sin, // llvm.experimental.constrained.sin
experimental_constrained_sqrt, // llvm.experimental.constrained.sqrt
experimental_constrained_trunc, // llvm.experimental.constrained.trunc
experimental_deoptimize, // llvm.experimental.deoptimize
experimental_gc_relocate, // llvm.experimental.gc.relocate
experimental_gc_result, // llvm.experimental.gc.result
experimental_gc_statepoint, // llvm.experimental.gc.statepoint
experimental_guard, // llvm.experimental.guard
experimental_patchpoint_i64, // llvm.experimental.patchpoint.i64
experimental_patchpoint_void, // llvm.experimental.patchpoint.void
experimental_stackmap, // llvm.experimental.stackmap
experimental_vector_reduce_add, // llvm.experimental.vector.reduce.add
experimental_vector_reduce_and, // llvm.experimental.vector.reduce.and
experimental_vector_reduce_fmax, // llvm.experimental.vector.reduce.fmax
experimental_vector_reduce_fmin, // llvm.experimental.vector.reduce.fmin
experimental_vector_reduce_mul, // llvm.experimental.vector.reduce.mul
experimental_vector_reduce_or, // llvm.experimental.vector.reduce.or
experimental_vector_reduce_smax, // llvm.experimental.vector.reduce.smax
experimental_vector_reduce_smin, // llvm.experimental.vector.reduce.smin
experimental_vector_reduce_umax, // llvm.experimental.vector.reduce.umax
experimental_vector_reduce_umin, // llvm.experimental.vector.reduce.umin
experimental_vector_reduce_v2_fadd, // llvm.experimental.vector.reduce.v2.fadd
experimental_vector_reduce_v2_fmul, // llvm.experimental.vector.reduce.v2.fmul
experimental_vector_reduce_xor, // llvm.experimental.vector.reduce.xor
experimental_widenable_condition, // llvm.experimental.widenable.condition
fabs, // llvm.fabs
floor, // llvm.floor
flt_rounds, // llvm.flt.rounds
fma, // llvm.fma
fmuladd, // llvm.fmuladd
frameaddress, // llvm.frameaddress
fshl, // llvm.fshl
fshr, // llvm.fshr
gcread, // llvm.gcread
gcroot, // llvm.gcroot
gcwrite, // llvm.gcwrite
get_dynamic_area_offset, // llvm.get.dynamic.area.offset
hwasan_check_memaccess, // llvm.hwasan.check.memaccess
hwasan_check_memaccess_shortgranules, // llvm.hwasan.check.memaccess.shortgranules
icall_branch_funnel, // llvm.icall.branch.funnel
init_trampoline, // llvm.init.trampoline
instrprof_increment, // llvm.instrprof.increment
instrprof_increment_step, // llvm.instrprof.increment.step
instrprof_value_profile, // llvm.instrprof.value.profile
invariant_end, // llvm.invariant.end
invariant_start, // llvm.invariant.start
is_constant, // llvm.is.constant
launder_invariant_group, // llvm.launder.invariant.group
lifetime_end, // llvm.lifetime.end
lifetime_start, // llvm.lifetime.start
llrint, // llvm.llrint
llround, // llvm.llround
load_relative, // llvm.load.relative
localaddress, // llvm.localaddress
localescape, // llvm.localescape
localrecover, // llvm.localrecover
log, // llvm.log
log10, // llvm.log10
log2, // llvm.log2
longjmp, // llvm.longjmp
loop_decrement, // llvm.loop.decrement
loop_decrement_reg, // llvm.loop.decrement.reg
lrint, // llvm.lrint
lround, // llvm.lround
masked_compressstore, // llvm.masked.compressstore
masked_expandload, // llvm.masked.expandload
masked_gather, // llvm.masked.gather
masked_load, // llvm.masked.load
masked_scatter, // llvm.masked.scatter
masked_store, // llvm.masked.store
maximum, // llvm.maximum
maxnum, // llvm.maxnum
memcpy, // llvm.memcpy
memcpy_element_unordered_atomic, // llvm.memcpy.element.unordered.atomic
memmove, // llvm.memmove
memmove_element_unordered_atomic, // llvm.memmove.element.unordered.atomic
memset, // llvm.memset
memset_element_unordered_atomic, // llvm.memset.element.unordered.atomic
minimum, // llvm.minimum
minnum, // llvm.minnum
nearbyint, // llvm.nearbyint
objc_arc_annotation_bottomup_bbend, // llvm.objc.arc.annotation.bottomup.bbend
objc_arc_annotation_bottomup_bbstart, // llvm.objc.arc.annotation.bottomup.bbstart
objc_arc_annotation_topdown_bbend, // llvm.objc.arc.annotation.topdown.bbend
objc_arc_annotation_topdown_bbstart, // llvm.objc.arc.annotation.topdown.bbstart
objc_autorelease, // llvm.objc.autorelease
objc_autoreleasePoolPop, // llvm.objc.autoreleasePoolPop
objc_autoreleasePoolPush, // llvm.objc.autoreleasePoolPush
objc_autoreleaseReturnValue, // llvm.objc.autoreleaseReturnValue
objc_clang_arc_use, // llvm.objc.clang.arc.use
objc_copyWeak, // llvm.objc.copyWeak
objc_destroyWeak, // llvm.objc.destroyWeak
objc_initWeak, // llvm.objc.initWeak
objc_loadWeak, // llvm.objc.loadWeak
objc_loadWeakRetained, // llvm.objc.loadWeakRetained
objc_moveWeak, // llvm.objc.moveWeak
objc_release, // llvm.objc.release
objc_retain, // llvm.objc.retain
objc_retain_autorelease, // llvm.objc.retain.autorelease
objc_retainAutorelease, // llvm.objc.retainAutorelease
objc_retainAutoreleaseReturnValue, // llvm.objc.retainAutoreleaseReturnValue
objc_retainAutoreleasedReturnValue, // llvm.objc.retainAutoreleasedReturnValue
objc_retainBlock, // llvm.objc.retainBlock
objc_retainedObject, // llvm.objc.retainedObject
objc_storeStrong, // llvm.objc.storeStrong
objc_storeWeak, // llvm.objc.storeWeak
objc_sync_enter, // llvm.objc.sync.enter
objc_sync_exit, // llvm.objc.sync.exit
objc_unretainedObject, // llvm.objc.unretainedObject
objc_unretainedPointer, // llvm.objc.unretainedPointer
objc_unsafeClaimAutoreleasedReturnValue, // llvm.objc.unsafeClaimAutoreleasedReturnValue
objectsize, // llvm.objectsize
pcmarker, // llvm.pcmarker
pow, // llvm.pow
powi, // llvm.powi
prefetch, // llvm.prefetch
preserve_array_access_index, // llvm.preserve.array.access.index
preserve_struct_access_index, // llvm.preserve.struct.access.index
preserve_union_access_index, // llvm.preserve.union.access.index
ptr_annotation, // llvm.ptr.annotation
ptrmask, // llvm.ptrmask
read_register, // llvm.read_register
readcyclecounter, // llvm.readcyclecounter
returnaddress, // llvm.returnaddress
rint, // llvm.rint
round, // llvm.round
sadd_sat, // llvm.sadd.sat
sadd_with_overflow, // llvm.sadd.with.overflow
set_loop_iterations, // llvm.set.loop.iterations
setjmp, // llvm.setjmp
sideeffect, // llvm.sideeffect
siglongjmp, // llvm.siglongjmp
sigsetjmp, // llvm.sigsetjmp
sin, // llvm.sin
smul_fix, // llvm.smul.fix
smul_fix_sat, // llvm.smul.fix.sat
smul_with_overflow, // llvm.smul.with.overflow
sponentry, // llvm.sponentry
sqrt, // llvm.sqrt
ssa_copy, // llvm.ssa.copy
ssub_sat, // llvm.ssub.sat
ssub_with_overflow, // llvm.ssub.with.overflow
stackguard, // llvm.stackguard
stackprotector, // llvm.stackprotector
stackrestore, // llvm.stackrestore
stacksave, // llvm.stacksave
strip_invariant_group, // llvm.strip.invariant.group
test_set_loop_iterations, // llvm.test.set.loop.iterations
thread_pointer, // llvm.thread.pointer
trap, // llvm.trap
trunc, // llvm.trunc
type_checked_load, // llvm.type.checked.load
type_test, // llvm.type.test
uadd_sat, // llvm.uadd.sat
uadd_with_overflow, // llvm.uadd.with.overflow
umul_fix, // llvm.umul.fix
umul_fix_sat, // llvm.umul.fix.sat
umul_with_overflow, // llvm.umul.with.overflow
usub_sat, // llvm.usub.sat
usub_with_overflow, // llvm.usub.with.overflow
vacopy, // llvm.va_copy
vaend, // llvm.va_end
vastart, // llvm.va_start
var_annotation, // llvm.var.annotation
write_register, // llvm.write_register
xray_customevent, // llvm.xray.customevent
xray_typedevent, // llvm.xray.typedevent
aarch64_addg, // llvm.aarch64.addg
aarch64_clrex, // llvm.aarch64.clrex
aarch64_cls, // llvm.aarch64.cls
aarch64_cls64, // llvm.aarch64.cls64
aarch64_crc32b, // llvm.aarch64.crc32b
aarch64_crc32cb, // llvm.aarch64.crc32cb
aarch64_crc32ch, // llvm.aarch64.crc32ch
aarch64_crc32cw, // llvm.aarch64.crc32cw
aarch64_crc32cx, // llvm.aarch64.crc32cx
aarch64_crc32h, // llvm.aarch64.crc32h
aarch64_crc32w, // llvm.aarch64.crc32w
aarch64_crc32x, // llvm.aarch64.crc32x
aarch64_crypto_aesd, // llvm.aarch64.crypto.aesd
aarch64_crypto_aese, // llvm.aarch64.crypto.aese
aarch64_crypto_aesimc, // llvm.aarch64.crypto.aesimc
aarch64_crypto_aesmc, // llvm.aarch64.crypto.aesmc
aarch64_crypto_sha1c, // llvm.aarch64.crypto.sha1c
aarch64_crypto_sha1h, // llvm.aarch64.crypto.sha1h
aarch64_crypto_sha1m, // llvm.aarch64.crypto.sha1m
aarch64_crypto_sha1p, // llvm.aarch64.crypto.sha1p
aarch64_crypto_sha1su0, // llvm.aarch64.crypto.sha1su0
aarch64_crypto_sha1su1, // llvm.aarch64.crypto.sha1su1
aarch64_crypto_sha256h, // llvm.aarch64.crypto.sha256h
aarch64_crypto_sha256h2, // llvm.aarch64.crypto.sha256h2
aarch64_crypto_sha256su0, // llvm.aarch64.crypto.sha256su0
aarch64_crypto_sha256su1, // llvm.aarch64.crypto.sha256su1
aarch64_dmb, // llvm.aarch64.dmb
aarch64_dsb, // llvm.aarch64.dsb
aarch64_fjcvtzs, // llvm.aarch64.fjcvtzs
aarch64_get_fpcr, // llvm.aarch64.get.fpcr
aarch64_gmi, // llvm.aarch64.gmi
aarch64_hint, // llvm.aarch64.hint
aarch64_irg, // llvm.aarch64.irg
aarch64_irg_sp, // llvm.aarch64.irg.sp
aarch64_isb, // llvm.aarch64.isb
aarch64_ldaxp, // llvm.aarch64.ldaxp
aarch64_ldaxr, // llvm.aarch64.ldaxr
aarch64_ldg, // llvm.aarch64.ldg
aarch64_ldxp, // llvm.aarch64.ldxp
aarch64_ldxr, // llvm.aarch64.ldxr
aarch64_neon_abs, // llvm.aarch64.neon.abs
aarch64_neon_addhn, // llvm.aarch64.neon.addhn
aarch64_neon_addp, // llvm.aarch64.neon.addp
aarch64_neon_cls, // llvm.aarch64.neon.cls
aarch64_neon_fabd, // llvm.aarch64.neon.fabd
aarch64_neon_facge, // llvm.aarch64.neon.facge
aarch64_neon_facgt, // llvm.aarch64.neon.facgt
aarch64_neon_faddp, // llvm.aarch64.neon.faddp
aarch64_neon_faddv, // llvm.aarch64.neon.faddv
aarch64_neon_fcvtas, // llvm.aarch64.neon.fcvtas
aarch64_neon_fcvtau, // llvm.aarch64.neon.fcvtau
aarch64_neon_fcvtms, // llvm.aarch64.neon.fcvtms
aarch64_neon_fcvtmu, // llvm.aarch64.neon.fcvtmu
aarch64_neon_fcvtns, // llvm.aarch64.neon.fcvtns
aarch64_neon_fcvtnu, // llvm.aarch64.neon.fcvtnu
aarch64_neon_fcvtps, // llvm.aarch64.neon.fcvtps
aarch64_neon_fcvtpu, // llvm.aarch64.neon.fcvtpu
aarch64_neon_fcvtxn, // llvm.aarch64.neon.fcvtxn
aarch64_neon_fcvtzs, // llvm.aarch64.neon.fcvtzs
aarch64_neon_fcvtzu, // llvm.aarch64.neon.fcvtzu
aarch64_neon_fmax, // llvm.aarch64.neon.fmax
aarch64_neon_fmaxnm, // llvm.aarch64.neon.fmaxnm
aarch64_neon_fmaxnmp, // llvm.aarch64.neon.fmaxnmp
aarch64_neon_fmaxnmv, // llvm.aarch64.neon.fmaxnmv
aarch64_neon_fmaxp, // llvm.aarch64.neon.fmaxp
aarch64_neon_fmaxv, // llvm.aarch64.neon.fmaxv
aarch64_neon_fmin, // llvm.aarch64.neon.fmin
aarch64_neon_fminnm, // llvm.aarch64.neon.fminnm
aarch64_neon_fminnmp, // llvm.aarch64.neon.fminnmp
aarch64_neon_fminnmv, // llvm.aarch64.neon.fminnmv
aarch64_neon_fminp, // llvm.aarch64.neon.fminp
aarch64_neon_fminv, // llvm.aarch64.neon.fminv
aarch64_neon_fmlal, // llvm.aarch64.neon.fmlal
aarch64_neon_fmlal2, // llvm.aarch64.neon.fmlal2
aarch64_neon_fmlsl, // llvm.aarch64.neon.fmlsl
aarch64_neon_fmlsl2, // llvm.aarch64.neon.fmlsl2
aarch64_neon_fmulx, // llvm.aarch64.neon.fmulx
aarch64_neon_frecpe, // llvm.aarch64.neon.frecpe
aarch64_neon_frecps, // llvm.aarch64.neon.frecps
aarch64_neon_frecpx, // llvm.aarch64.neon.frecpx
aarch64_neon_frintn, // llvm.aarch64.neon.frintn
aarch64_neon_frsqrte, // llvm.aarch64.neon.frsqrte
aarch64_neon_frsqrts, // llvm.aarch64.neon.frsqrts
aarch64_neon_ld1x2, // llvm.aarch64.neon.ld1x2
aarch64_neon_ld1x3, // llvm.aarch64.neon.ld1x3
aarch64_neon_ld1x4, // llvm.aarch64.neon.ld1x4
aarch64_neon_ld2, // llvm.aarch64.neon.ld2
aarch64_neon_ld2lane, // llvm.aarch64.neon.ld2lane
aarch64_neon_ld2r, // llvm.aarch64.neon.ld2r
aarch64_neon_ld3, // llvm.aarch64.neon.ld3
aarch64_neon_ld3lane, // llvm.aarch64.neon.ld3lane
aarch64_neon_ld3r, // llvm.aarch64.neon.ld3r
aarch64_neon_ld4, // llvm.aarch64.neon.ld4
aarch64_neon_ld4lane, // llvm.aarch64.neon.ld4lane
aarch64_neon_ld4r, // llvm.aarch64.neon.ld4r
aarch64_neon_pmul, // llvm.aarch64.neon.pmul
aarch64_neon_pmull, // llvm.aarch64.neon.pmull
aarch64_neon_pmull64, // llvm.aarch64.neon.pmull64
aarch64_neon_raddhn, // llvm.aarch64.neon.raddhn
aarch64_neon_rbit, // llvm.aarch64.neon.rbit
aarch64_neon_rshrn, // llvm.aarch64.neon.rshrn
aarch64_neon_rsubhn, // llvm.aarch64.neon.rsubhn
aarch64_neon_sabd, // llvm.aarch64.neon.sabd
aarch64_neon_saddlp, // llvm.aarch64.neon.saddlp
aarch64_neon_saddlv, // llvm.aarch64.neon.saddlv
aarch64_neon_saddv, // llvm.aarch64.neon.saddv
aarch64_neon_scalar_sqxtn, // llvm.aarch64.neon.scalar.sqxtn
aarch64_neon_scalar_sqxtun, // llvm.aarch64.neon.scalar.sqxtun
aarch64_neon_scalar_uqxtn, // llvm.aarch64.neon.scalar.uqxtn
aarch64_neon_sdot, // llvm.aarch64.neon.sdot
aarch64_neon_shadd, // llvm.aarch64.neon.shadd
aarch64_neon_shll, // llvm.aarch64.neon.shll
aarch64_neon_shsub, // llvm.aarch64.neon.shsub
aarch64_neon_smax, // llvm.aarch64.neon.smax
aarch64_neon_smaxp, // llvm.aarch64.neon.smaxp
aarch64_neon_smaxv, // llvm.aarch64.neon.smaxv
aarch64_neon_smin, // llvm.aarch64.neon.smin
aarch64_neon_sminp, // llvm.aarch64.neon.sminp
aarch64_neon_sminv, // llvm.aarch64.neon.sminv
aarch64_neon_smull, // llvm.aarch64.neon.smull
aarch64_neon_sqabs, // llvm.aarch64.neon.sqabs
aarch64_neon_sqadd, // llvm.aarch64.neon.sqadd
aarch64_neon_sqdmulh, // llvm.aarch64.neon.sqdmulh
aarch64_neon_sqdmull, // llvm.aarch64.neon.sqdmull
aarch64_neon_sqdmulls_scalar, // llvm.aarch64.neon.sqdmulls.scalar
aarch64_neon_sqneg, // llvm.aarch64.neon.sqneg
aarch64_neon_sqrdmulh, // llvm.aarch64.neon.sqrdmulh
aarch64_neon_sqrshl, // llvm.aarch64.neon.sqrshl
aarch64_neon_sqrshrn, // llvm.aarch64.neon.sqrshrn
aarch64_neon_sqrshrun, // llvm.aarch64.neon.sqrshrun
aarch64_neon_sqshl, // llvm.aarch64.neon.sqshl
aarch64_neon_sqshlu, // llvm.aarch64.neon.sqshlu
aarch64_neon_sqshrn, // llvm.aarch64.neon.sqshrn
aarch64_neon_sqshrun, // llvm.aarch64.neon.sqshrun
aarch64_neon_sqsub, // llvm.aarch64.neon.sqsub
aarch64_neon_sqxtn, // llvm.aarch64.neon.sqxtn
aarch64_neon_sqxtun, // llvm.aarch64.neon.sqxtun
aarch64_neon_srhadd, // llvm.aarch64.neon.srhadd
aarch64_neon_srshl, // llvm.aarch64.neon.srshl
aarch64_neon_sshl, // llvm.aarch64.neon.sshl
aarch64_neon_sshll, // llvm.aarch64.neon.sshll
aarch64_neon_st1x2, // llvm.aarch64.neon.st1x2
aarch64_neon_st1x3, // llvm.aarch64.neon.st1x3
aarch64_neon_st1x4, // llvm.aarch64.neon.st1x4
aarch64_neon_st2, // llvm.aarch64.neon.st2
aarch64_neon_st2lane, // llvm.aarch64.neon.st2lane
aarch64_neon_st3, // llvm.aarch64.neon.st3
aarch64_neon_st3lane, // llvm.aarch64.neon.st3lane
aarch64_neon_st4, // llvm.aarch64.neon.st4
aarch64_neon_st4lane, // llvm.aarch64.neon.st4lane
aarch64_neon_subhn, // llvm.aarch64.neon.subhn
aarch64_neon_suqadd, // llvm.aarch64.neon.suqadd
aarch64_neon_tbl1, // llvm.aarch64.neon.tbl1
aarch64_neon_tbl2, // llvm.aarch64.neon.tbl2
aarch64_neon_tbl3, // llvm.aarch64.neon.tbl3
aarch64_neon_tbl4, // llvm.aarch64.neon.tbl4
aarch64_neon_tbx1, // llvm.aarch64.neon.tbx1
aarch64_neon_tbx2, // llvm.aarch64.neon.tbx2
aarch64_neon_tbx3, // llvm.aarch64.neon.tbx3
aarch64_neon_tbx4, // llvm.aarch64.neon.tbx4
aarch64_neon_uabd, // llvm.aarch64.neon.uabd
aarch64_neon_uaddlp, // llvm.aarch64.neon.uaddlp
aarch64_neon_uaddlv, // llvm.aarch64.neon.uaddlv
aarch64_neon_uaddv, // llvm.aarch64.neon.uaddv
aarch64_neon_udot, // llvm.aarch64.neon.udot
aarch64_neon_uhadd, // llvm.aarch64.neon.uhadd
aarch64_neon_uhsub, // llvm.aarch64.neon.uhsub
aarch64_neon_umax, // llvm.aarch64.neon.umax
aarch64_neon_umaxp, // llvm.aarch64.neon.umaxp
aarch64_neon_umaxv, // llvm.aarch64.neon.umaxv
aarch64_neon_umin, // llvm.aarch64.neon.umin
aarch64_neon_uminp, // llvm.aarch64.neon.uminp
aarch64_neon_uminv, // llvm.aarch64.neon.uminv
aarch64_neon_umull, // llvm.aarch64.neon.umull
aarch64_neon_uqadd, // llvm.aarch64.neon.uqadd
aarch64_neon_uqrshl, // llvm.aarch64.neon.uqrshl
aarch64_neon_uqrshrn, // llvm.aarch64.neon.uqrshrn
aarch64_neon_uqshl, // llvm.aarch64.neon.uqshl
aarch64_neon_uqshrn, // llvm.aarch64.neon.uqshrn
aarch64_neon_uqsub, // llvm.aarch64.neon.uqsub
aarch64_neon_uqxtn, // llvm.aarch64.neon.uqxtn
aarch64_neon_urecpe, // llvm.aarch64.neon.urecpe
aarch64_neon_urhadd, // llvm.aarch64.neon.urhadd
aarch64_neon_urshl, // llvm.aarch64.neon.urshl
aarch64_neon_ursqrte, // llvm.aarch64.neon.ursqrte
aarch64_neon_ushl, // llvm.aarch64.neon.ushl
aarch64_neon_ushll, // llvm.aarch64.neon.ushll
aarch64_neon_usqadd, // llvm.aarch64.neon.usqadd
aarch64_neon_vcopy_lane, // llvm.aarch64.neon.vcopy.lane
aarch64_neon_vcvtfp2fxs, // llvm.aarch64.neon.vcvtfp2fxs
aarch64_neon_vcvtfp2fxu, // llvm.aarch64.neon.vcvtfp2fxu
aarch64_neon_vcvtfp2hf, // llvm.aarch64.neon.vcvtfp2hf
aarch64_neon_vcvtfxs2fp, // llvm.aarch64.neon.vcvtfxs2fp
aarch64_neon_vcvtfxu2fp, // llvm.aarch64.neon.vcvtfxu2fp
aarch64_neon_vcvthf2fp, // llvm.aarch64.neon.vcvthf2fp
aarch64_neon_vsli, // llvm.aarch64.neon.vsli
aarch64_neon_vsri, // llvm.aarch64.neon.vsri
aarch64_sdiv, // llvm.aarch64.sdiv
aarch64_settag, // llvm.aarch64.settag
aarch64_settag_zero, // llvm.aarch64.settag.zero
aarch64_sisd_fabd, // llvm.aarch64.sisd.fabd
aarch64_sisd_fcvtxn, // llvm.aarch64.sisd.fcvtxn
aarch64_space, // llvm.aarch64.space
aarch64_stg, // llvm.aarch64.stg
aarch64_stgp, // llvm.aarch64.stgp
aarch64_stlxp, // llvm.aarch64.stlxp
aarch64_stlxr, // llvm.aarch64.stlxr
aarch64_stxp, // llvm.aarch64.stxp
aarch64_stxr, // llvm.aarch64.stxr
aarch64_subp, // llvm.aarch64.subp
aarch64_sve_abs, // llvm.aarch64.sve.abs
aarch64_sve_cnt, // llvm.aarch64.sve.cnt
aarch64_sve_fcvtzs_i32f16, // llvm.aarch64.sve.fcvtzs.i32f16
aarch64_sve_neg, // llvm.aarch64.sve.neg
aarch64_sve_punpkhi, // llvm.aarch64.sve.punpkhi
aarch64_sve_punpklo, // llvm.aarch64.sve.punpklo
aarch64_sve_sdot, // llvm.aarch64.sve.sdot
aarch64_sve_sdot_lane, // llvm.aarch64.sve.sdot.lane
aarch64_sve_sunpkhi, // llvm.aarch64.sve.sunpkhi
aarch64_sve_sunpklo, // llvm.aarch64.sve.sunpklo
aarch64_sve_udot, // llvm.aarch64.sve.udot
aarch64_sve_udot_lane, // llvm.aarch64.sve.udot.lane
aarch64_sve_uunpkhi, // llvm.aarch64.sve.uunpkhi
aarch64_sve_uunpklo, // llvm.aarch64.sve.uunpklo
aarch64_tagp, // llvm.aarch64.tagp
aarch64_tcancel, // llvm.aarch64.tcancel
aarch64_tcommit, // llvm.aarch64.tcommit
aarch64_tstart, // llvm.aarch64.tstart
aarch64_ttest, // llvm.aarch64.ttest
aarch64_udiv, // llvm.aarch64.udiv
amdgcn_alignbit, // llvm.amdgcn.alignbit
amdgcn_alignbyte, // llvm.amdgcn.alignbyte
amdgcn_atomic_dec, // llvm.amdgcn.atomic.dec
amdgcn_atomic_inc, // llvm.amdgcn.atomic.inc
amdgcn_buffer_atomic_add, // llvm.amdgcn.buffer.atomic.add
amdgcn_buffer_atomic_and, // llvm.amdgcn.buffer.atomic.and
amdgcn_buffer_atomic_cmpswap, // llvm.amdgcn.buffer.atomic.cmpswap
amdgcn_buffer_atomic_fadd, // llvm.amdgcn.buffer.atomic.fadd
amdgcn_buffer_atomic_or, // llvm.amdgcn.buffer.atomic.or
amdgcn_buffer_atomic_smax, // llvm.amdgcn.buffer.atomic.smax
amdgcn_buffer_atomic_smin, // llvm.amdgcn.buffer.atomic.smin
amdgcn_buffer_atomic_sub, // llvm.amdgcn.buffer.atomic.sub
amdgcn_buffer_atomic_swap, // llvm.amdgcn.buffer.atomic.swap
amdgcn_buffer_atomic_umax, // llvm.amdgcn.buffer.atomic.umax
amdgcn_buffer_atomic_umin, // llvm.amdgcn.buffer.atomic.umin
amdgcn_buffer_atomic_xor, // llvm.amdgcn.buffer.atomic.xor
amdgcn_buffer_load, // llvm.amdgcn.buffer.load
amdgcn_buffer_load_format, // llvm.amdgcn.buffer.load.format
amdgcn_buffer_store, // llvm.amdgcn.buffer.store
amdgcn_buffer_store_format, // llvm.amdgcn.buffer.store.format
amdgcn_buffer_wbinvl1, // llvm.amdgcn.buffer.wbinvl1
amdgcn_buffer_wbinvl1_sc, // llvm.amdgcn.buffer.wbinvl1.sc
amdgcn_buffer_wbinvl1_vol, // llvm.amdgcn.buffer.wbinvl1.vol
amdgcn_class, // llvm.amdgcn.class
amdgcn_cos, // llvm.amdgcn.cos
amdgcn_cubeid, // llvm.amdgcn.cubeid
amdgcn_cubema, // llvm.amdgcn.cubema
amdgcn_cubesc, // llvm.amdgcn.cubesc
amdgcn_cubetc, // llvm.amdgcn.cubetc
amdgcn_cvt_pk_i16, // llvm.amdgcn.cvt.pk.i16
amdgcn_cvt_pk_u16, // llvm.amdgcn.cvt.pk.u16
amdgcn_cvt_pk_u8_f32, // llvm.amdgcn.cvt.pk.u8.f32
amdgcn_cvt_pknorm_i16, // llvm.amdgcn.cvt.pknorm.i16
amdgcn_cvt_pknorm_u16, // llvm.amdgcn.cvt.pknorm.u16
amdgcn_cvt_pkrtz, // llvm.amdgcn.cvt.pkrtz
amdgcn_dispatch_id, // llvm.amdgcn.dispatch.id
amdgcn_dispatch_ptr, // llvm.amdgcn.dispatch.ptr
amdgcn_div_fixup, // llvm.amdgcn.div.fixup
amdgcn_div_fmas, // llvm.amdgcn.div.fmas
amdgcn_div_scale, // llvm.amdgcn.div.scale
amdgcn_ds_append, // llvm.amdgcn.ds.append
amdgcn_ds_bpermute, // llvm.amdgcn.ds.bpermute
amdgcn_ds_consume, // llvm.amdgcn.ds.consume
amdgcn_ds_fadd, // llvm.amdgcn.ds.fadd
amdgcn_ds_fmax, // llvm.amdgcn.ds.fmax
amdgcn_ds_fmin, // llvm.amdgcn.ds.fmin
amdgcn_ds_gws_barrier, // llvm.amdgcn.ds.gws.barrier
amdgcn_ds_gws_init, // llvm.amdgcn.ds.gws.init
amdgcn_ds_gws_sema_br, // llvm.amdgcn.ds.gws.sema.br
amdgcn_ds_gws_sema_p, // llvm.amdgcn.ds.gws.sema.p
amdgcn_ds_gws_sema_release_all, // llvm.amdgcn.ds.gws.sema.release.all
amdgcn_ds_gws_sema_v, // llvm.amdgcn.ds.gws.sema.v
amdgcn_ds_ordered_add, // llvm.amdgcn.ds.ordered.add
amdgcn_ds_ordered_swap, // llvm.amdgcn.ds.ordered.swap
amdgcn_ds_permute, // llvm.amdgcn.ds.permute
amdgcn_ds_swizzle, // llvm.amdgcn.ds.swizzle
amdgcn_else, // llvm.amdgcn.else
amdgcn_end_cf, // llvm.amdgcn.end.cf
amdgcn_exp, // llvm.amdgcn.exp
amdgcn_exp_compr, // llvm.amdgcn.exp.compr
amdgcn_fcmp, // llvm.amdgcn.fcmp
amdgcn_fdiv_fast, // llvm.amdgcn.fdiv.fast
amdgcn_fdot2, // llvm.amdgcn.fdot2
amdgcn_fmad_ftz, // llvm.amdgcn.fmad.ftz
amdgcn_fmed3, // llvm.amdgcn.fmed3
amdgcn_fmul_legacy, // llvm.amdgcn.fmul.legacy
amdgcn_fract, // llvm.amdgcn.fract
amdgcn_frexp_exp, // llvm.amdgcn.frexp.exp
amdgcn_frexp_mant, // llvm.amdgcn.frexp.mant
amdgcn_global_atomic_fadd, // llvm.amdgcn.global.atomic.fadd
amdgcn_groupstaticsize, // llvm.amdgcn.groupstaticsize
amdgcn_icmp, // llvm.amdgcn.icmp
amdgcn_if, // llvm.amdgcn.if
amdgcn_if_break, // llvm.amdgcn.if.break
amdgcn_image_atomic_add_1d, // llvm.amdgcn.image.atomic.add.1d
amdgcn_image_atomic_add_1darray, // llvm.amdgcn.image.atomic.add.1darray
amdgcn_image_atomic_add_2d, // llvm.amdgcn.image.atomic.add.2d
amdgcn_image_atomic_add_2darray, // llvm.amdgcn.image.atomic.add.2darray
amdgcn_image_atomic_add_2darraymsaa, // llvm.amdgcn.image.atomic.add.2darraymsaa
amdgcn_image_atomic_add_2dmsaa, // llvm.amdgcn.image.atomic.add.2dmsaa
amdgcn_image_atomic_add_3d, // llvm.amdgcn.image.atomic.add.3d
amdgcn_image_atomic_add_cube, // llvm.amdgcn.image.atomic.add.cube
amdgcn_image_atomic_and_1d, // llvm.amdgcn.image.atomic.and.1d
amdgcn_image_atomic_and_1darray, // llvm.amdgcn.image.atomic.and.1darray
amdgcn_image_atomic_and_2d, // llvm.amdgcn.image.atomic.and.2d
amdgcn_image_atomic_and_2darray, // llvm.amdgcn.image.atomic.and.2darray
amdgcn_image_atomic_and_2darraymsaa, // llvm.amdgcn.image.atomic.and.2darraymsaa
amdgcn_image_atomic_and_2dmsaa, // llvm.amdgcn.image.atomic.and.2dmsaa
amdgcn_image_atomic_and_3d, // llvm.amdgcn.image.atomic.and.3d
amdgcn_image_atomic_and_cube, // llvm.amdgcn.image.atomic.and.cube
amdgcn_image_atomic_cmpswap_1d, // llvm.amdgcn.image.atomic.cmpswap.1d
amdgcn_image_atomic_cmpswap_1darray, // llvm.amdgcn.image.atomic.cmpswap.1darray
amdgcn_image_atomic_cmpswap_2d, // llvm.amdgcn.image.atomic.cmpswap.2d
amdgcn_image_atomic_cmpswap_2darray, // llvm.amdgcn.image.atomic.cmpswap.2darray
amdgcn_image_atomic_cmpswap_2darraymsaa, // llvm.amdgcn.image.atomic.cmpswap.2darraymsaa
amdgcn_image_atomic_cmpswap_2dmsaa, // llvm.amdgcn.image.atomic.cmpswap.2dmsaa
amdgcn_image_atomic_cmpswap_3d, // llvm.amdgcn.image.atomic.cmpswap.3d
amdgcn_image_atomic_cmpswap_cube, // llvm.amdgcn.image.atomic.cmpswap.cube
amdgcn_image_atomic_dec_1d, // llvm.amdgcn.image.atomic.dec.1d
amdgcn_image_atomic_dec_1darray, // llvm.amdgcn.image.atomic.dec.1darray
amdgcn_image_atomic_dec_2d, // llvm.amdgcn.image.atomic.dec.2d
amdgcn_image_atomic_dec_2darray, // llvm.amdgcn.image.atomic.dec.2darray
amdgcn_image_atomic_dec_2darraymsaa, // llvm.amdgcn.image.atomic.dec.2darraymsaa
amdgcn_image_atomic_dec_2dmsaa, // llvm.amdgcn.image.atomic.dec.2dmsaa
amdgcn_image_atomic_dec_3d, // llvm.amdgcn.image.atomic.dec.3d
amdgcn_image_atomic_dec_cube, // llvm.amdgcn.image.atomic.dec.cube
amdgcn_image_atomic_inc_1d, // llvm.amdgcn.image.atomic.inc.1d
amdgcn_image_atomic_inc_1darray, // llvm.amdgcn.image.atomic.inc.1darray
amdgcn_image_atomic_inc_2d, // llvm.amdgcn.image.atomic.inc.2d
amdgcn_image_atomic_inc_2darray, // llvm.amdgcn.image.atomic.inc.2darray
amdgcn_image_atomic_inc_2darraymsaa, // llvm.amdgcn.image.atomic.inc.2darraymsaa
amdgcn_image_atomic_inc_2dmsaa, // llvm.amdgcn.image.atomic.inc.2dmsaa
amdgcn_image_atomic_inc_3d, // llvm.amdgcn.image.atomic.inc.3d
amdgcn_image_atomic_inc_cube, // llvm.amdgcn.image.atomic.inc.cube
amdgcn_image_atomic_or_1d, // llvm.amdgcn.image.atomic.or.1d
amdgcn_image_atomic_or_1darray, // llvm.amdgcn.image.atomic.or.1darray
amdgcn_image_atomic_or_2d, // llvm.amdgcn.image.atomic.or.2d
amdgcn_image_atomic_or_2darray, // llvm.amdgcn.image.atomic.or.2darray
amdgcn_image_atomic_or_2darraymsaa, // llvm.amdgcn.image.atomic.or.2darraymsaa
amdgcn_image_atomic_or_2dmsaa, // llvm.amdgcn.image.atomic.or.2dmsaa
amdgcn_image_atomic_or_3d, // llvm.amdgcn.image.atomic.or.3d
amdgcn_image_atomic_or_cube, // llvm.amdgcn.image.atomic.or.cube
amdgcn_image_atomic_smax_1d, // llvm.amdgcn.image.atomic.smax.1d
amdgcn_image_atomic_smax_1darray, // llvm.amdgcn.image.atomic.smax.1darray
amdgcn_image_atomic_smax_2d, // llvm.amdgcn.image.atomic.smax.2d
amdgcn_image_atomic_smax_2darray, // llvm.amdgcn.image.atomic.smax.2darray
amdgcn_image_atomic_smax_2darraymsaa, // llvm.amdgcn.image.atomic.smax.2darraymsaa
amdgcn_image_atomic_smax_2dmsaa, // llvm.amdgcn.image.atomic.smax.2dmsaa
amdgcn_image_atomic_smax_3d, // llvm.amdgcn.image.atomic.smax.3d
amdgcn_image_atomic_smax_cube, // llvm.amdgcn.image.atomic.smax.cube
amdgcn_image_atomic_smin_1d, // llvm.amdgcn.image.atomic.smin.1d
amdgcn_image_atomic_smin_1darray, // llvm.amdgcn.image.atomic.smin.1darray
amdgcn_image_atomic_smin_2d, // llvm.amdgcn.image.atomic.smin.2d
amdgcn_image_atomic_smin_2darray, // llvm.amdgcn.image.atomic.smin.2darray
amdgcn_image_atomic_smin_2darraymsaa, // llvm.amdgcn.image.atomic.smin.2darraymsaa
amdgcn_image_atomic_smin_2dmsaa, // llvm.amdgcn.image.atomic.smin.2dmsaa
amdgcn_image_atomic_smin_3d, // llvm.amdgcn.image.atomic.smin.3d
amdgcn_image_atomic_smin_cube, // llvm.amdgcn.image.atomic.smin.cube
amdgcn_image_atomic_sub_1d, // llvm.amdgcn.image.atomic.sub.1d
amdgcn_image_atomic_sub_1darray, // llvm.amdgcn.image.atomic.sub.1darray
amdgcn_image_atomic_sub_2d, // llvm.amdgcn.image.atomic.sub.2d
amdgcn_image_atomic_sub_2darray, // llvm.amdgcn.image.atomic.sub.2darray
amdgcn_image_atomic_sub_2darraymsaa, // llvm.amdgcn.image.atomic.sub.2darraymsaa
amdgcn_image_atomic_sub_2dmsaa, // llvm.amdgcn.image.atomic.sub.2dmsaa
amdgcn_image_atomic_sub_3d, // llvm.amdgcn.image.atomic.sub.3d
amdgcn_image_atomic_sub_cube, // llvm.amdgcn.image.atomic.sub.cube
amdgcn_image_atomic_swap_1d, // llvm.amdgcn.image.atomic.swap.1d
amdgcn_image_atomic_swap_1darray, // llvm.amdgcn.image.atomic.swap.1darray
amdgcn_image_atomic_swap_2d, // llvm.amdgcn.image.atomic.swap.2d
amdgcn_image_atomic_swap_2darray, // llvm.amdgcn.image.atomic.swap.2darray
amdgcn_image_atomic_swap_2darraymsaa, // llvm.amdgcn.image.atomic.swap.2darraymsaa
amdgcn_image_atomic_swap_2dmsaa, // llvm.amdgcn.image.atomic.swap.2dmsaa
amdgcn_image_atomic_swap_3d, // llvm.amdgcn.image.atomic.swap.3d
amdgcn_image_atomic_swap_cube, // llvm.amdgcn.image.atomic.swap.cube
amdgcn_image_atomic_umax_1d, // llvm.amdgcn.image.atomic.umax.1d
amdgcn_image_atomic_umax_1darray, // llvm.amdgcn.image.atomic.umax.1darray
amdgcn_image_atomic_umax_2d, // llvm.amdgcn.image.atomic.umax.2d
amdgcn_image_atomic_umax_2darray, // llvm.amdgcn.image.atomic.umax.2darray
amdgcn_image_atomic_umax_2darraymsaa, // llvm.amdgcn.image.atomic.umax.2darraymsaa
amdgcn_image_atomic_umax_2dmsaa, // llvm.amdgcn.image.atomic.umax.2dmsaa
amdgcn_image_atomic_umax_3d, // llvm.amdgcn.image.atomic.umax.3d
amdgcn_image_atomic_umax_cube, // llvm.amdgcn.image.atomic.umax.cube
amdgcn_image_atomic_umin_1d, // llvm.amdgcn.image.atomic.umin.1d
amdgcn_image_atomic_umin_1darray, // llvm.amdgcn.image.atomic.umin.1darray
amdgcn_image_atomic_umin_2d, // llvm.amdgcn.image.atomic.umin.2d
amdgcn_image_atomic_umin_2darray, // llvm.amdgcn.image.atomic.umin.2darray
amdgcn_image_atomic_umin_2darraymsaa, // llvm.amdgcn.image.atomic.umin.2darraymsaa
amdgcn_image_atomic_umin_2dmsaa, // llvm.amdgcn.image.atomic.umin.2dmsaa
amdgcn_image_atomic_umin_3d, // llvm.amdgcn.image.atomic.umin.3d
amdgcn_image_atomic_umin_cube, // llvm.amdgcn.image.atomic.umin.cube
amdgcn_image_atomic_xor_1d, // llvm.amdgcn.image.atomic.xor.1d
amdgcn_image_atomic_xor_1darray, // llvm.amdgcn.image.atomic.xor.1darray
amdgcn_image_atomic_xor_2d, // llvm.amdgcn.image.atomic.xor.2d
amdgcn_image_atomic_xor_2darray, // llvm.amdgcn.image.atomic.xor.2darray
amdgcn_image_atomic_xor_2darraymsaa, // llvm.amdgcn.image.atomic.xor.2darraymsaa
amdgcn_image_atomic_xor_2dmsaa, // llvm.amdgcn.image.atomic.xor.2dmsaa
amdgcn_image_atomic_xor_3d, // llvm.amdgcn.image.atomic.xor.3d
amdgcn_image_atomic_xor_cube, // llvm.amdgcn.image.atomic.xor.cube
amdgcn_image_gather4_2d, // llvm.amdgcn.image.gather4.2d
amdgcn_image_gather4_2darray, // llvm.amdgcn.image.gather4.2darray
amdgcn_image_gather4_b_2d, // llvm.amdgcn.image.gather4.b.2d
amdgcn_image_gather4_b_2darray, // llvm.amdgcn.image.gather4.b.2darray
amdgcn_image_gather4_b_cl_2d, // llvm.amdgcn.image.gather4.b.cl.2d
amdgcn_image_gather4_b_cl_2darray, // llvm.amdgcn.image.gather4.b.cl.2darray
amdgcn_image_gather4_b_cl_cube, // llvm.amdgcn.image.gather4.b.cl.cube
amdgcn_image_gather4_b_cl_o_2d, // llvm.amdgcn.image.gather4.b.cl.o.2d
amdgcn_image_gather4_b_cl_o_2darray, // llvm.amdgcn.image.gather4.b.cl.o.2darray
amdgcn_image_gather4_b_cl_o_cube, // llvm.amdgcn.image.gather4.b.cl.o.cube
amdgcn_image_gather4_b_cube, // llvm.amdgcn.image.gather4.b.cube
amdgcn_image_gather4_b_o_2d, // llvm.amdgcn.image.gather4.b.o.2d
amdgcn_image_gather4_b_o_2darray, // llvm.amdgcn.image.gather4.b.o.2darray
amdgcn_image_gather4_b_o_cube, // llvm.amdgcn.image.gather4.b.o.cube
amdgcn_image_gather4_c_2d, // llvm.amdgcn.image.gather4.c.2d
amdgcn_image_gather4_c_2darray, // llvm.amdgcn.image.gather4.c.2darray
amdgcn_image_gather4_c_b_2d, // llvm.amdgcn.image.gather4.c.b.2d
amdgcn_image_gather4_c_b_2darray, // llvm.amdgcn.image.gather4.c.b.2darray
amdgcn_image_gather4_c_b_cl_2d, // llvm.amdgcn.image.gather4.c.b.cl.2d
amdgcn_image_gather4_c_b_cl_2darray, // llvm.amdgcn.image.gather4.c.b.cl.2darray
amdgcn_image_gather4_c_b_cl_cube, // llvm.amdgcn.image.gather4.c.b.cl.cube
amdgcn_image_gather4_c_b_cl_o_2d, // llvm.amdgcn.image.gather4.c.b.cl.o.2d
amdgcn_image_gather4_c_b_cl_o_2darray, // llvm.amdgcn.image.gather4.c.b.cl.o.2darray
amdgcn_image_gather4_c_b_cl_o_cube, // llvm.amdgcn.image.gather4.c.b.cl.o.cube
amdgcn_image_gather4_c_b_cube, // llvm.amdgcn.image.gather4.c.b.cube
amdgcn_image_gather4_c_b_o_2d, // llvm.amdgcn.image.gather4.c.b.o.2d
amdgcn_image_gather4_c_b_o_2darray, // llvm.amdgcn.image.gather4.c.b.o.2darray
amdgcn_image_gather4_c_b_o_cube, // llvm.amdgcn.image.gather4.c.b.o.cube
amdgcn_image_gather4_c_cl_2d, // llvm.amdgcn.image.gather4.c.cl.2d
amdgcn_image_gather4_c_cl_2darray, // llvm.amdgcn.image.gather4.c.cl.2darray
amdgcn_image_gather4_c_cl_cube, // llvm.amdgcn.image.gather4.c.cl.cube
amdgcn_image_gather4_c_cl_o_2d, // llvm.amdgcn.image.gather4.c.cl.o.2d
amdgcn_image_gather4_c_cl_o_2darray, // llvm.amdgcn.image.gather4.c.cl.o.2darray
amdgcn_image_gather4_c_cl_o_cube, // llvm.amdgcn.image.gather4.c.cl.o.cube
amdgcn_image_gather4_c_cube, // llvm.amdgcn.image.gather4.c.cube
amdgcn_image_gather4_c_l_2d, // llvm.amdgcn.image.gather4.c.l.2d
amdgcn_image_gather4_c_l_2darray, // llvm.amdgcn.image.gather4.c.l.2darray
amdgcn_image_gather4_c_l_cube, // llvm.amdgcn.image.gather4.c.l.cube
amdgcn_image_gather4_c_l_o_2d, // llvm.amdgcn.image.gather4.c.l.o.2d
amdgcn_image_gather4_c_l_o_2darray, // llvm.amdgcn.image.gather4.c.l.o.2darray
amdgcn_image_gather4_c_l_o_cube, // llvm.amdgcn.image.gather4.c.l.o.cube
amdgcn_image_gather4_c_lz_2d, // llvm.amdgcn.image.gather4.c.lz.2d
amdgcn_image_gather4_c_lz_2darray, // llvm.amdgcn.image.gather4.c.lz.2darray
amdgcn_image_gather4_c_lz_cube, // llvm.amdgcn.image.gather4.c.lz.cube
amdgcn_image_gather4_c_lz_o_2d, // llvm.amdgcn.image.gather4.c.lz.o.2d
amdgcn_image_gather4_c_lz_o_2darray, // llvm.amdgcn.image.gather4.c.lz.o.2darray
amdgcn_image_gather4_c_lz_o_cube, // llvm.amdgcn.image.gather4.c.lz.o.cube
amdgcn_image_gather4_c_o_2d, // llvm.amdgcn.image.gather4.c.o.2d
amdgcn_image_gather4_c_o_2darray, // llvm.amdgcn.image.gather4.c.o.2darray
amdgcn_image_gather4_c_o_cube, // llvm.amdgcn.image.gather4.c.o.cube
amdgcn_image_gather4_cl_2d, // llvm.amdgcn.image.gather4.cl.2d
amdgcn_image_gather4_cl_2darray, // llvm.amdgcn.image.gather4.cl.2darray
amdgcn_image_gather4_cl_cube, // llvm.amdgcn.image.gather4.cl.cube
amdgcn_image_gather4_cl_o_2d, // llvm.amdgcn.image.gather4.cl.o.2d
amdgcn_image_gather4_cl_o_2darray, // llvm.amdgcn.image.gather4.cl.o.2darray
amdgcn_image_gather4_cl_o_cube, // llvm.amdgcn.image.gather4.cl.o.cube
amdgcn_image_gather4_cube, // llvm.amdgcn.image.gather4.cube
amdgcn_image_gather4_l_2d, // llvm.amdgcn.image.gather4.l.2d
amdgcn_image_gather4_l_2darray, // llvm.amdgcn.image.gather4.l.2darray
amdgcn_image_gather4_l_cube, // llvm.amdgcn.image.gather4.l.cube
amdgcn_image_gather4_l_o_2d, // llvm.amdgcn.image.gather4.l.o.2d
amdgcn_image_gather4_l_o_2darray, // llvm.amdgcn.image.gather4.l.o.2darray
amdgcn_image_gather4_l_o_cube, // llvm.amdgcn.image.gather4.l.o.cube
amdgcn_image_gather4_lz_2d, // llvm.amdgcn.image.gather4.lz.2d
amdgcn_image_gather4_lz_2darray, // llvm.amdgcn.image.gather4.lz.2darray
amdgcn_image_gather4_lz_cube, // llvm.amdgcn.image.gather4.lz.cube
amdgcn_image_gather4_lz_o_2d, // llvm.amdgcn.image.gather4.lz.o.2d
amdgcn_image_gather4_lz_o_2darray, // llvm.amdgcn.image.gather4.lz.o.2darray
amdgcn_image_gather4_lz_o_cube, // llvm.amdgcn.image.gather4.lz.o.cube
amdgcn_image_gather4_o_2d, // llvm.amdgcn.image.gather4.o.2d
amdgcn_image_gather4_o_2darray, // llvm.amdgcn.image.gather4.o.2darray
amdgcn_image_gather4_o_cube, // llvm.amdgcn.image.gather4.o.cube
amdgcn_image_getlod_1d, // llvm.amdgcn.image.getlod.1d
amdgcn_image_getlod_1darray, // llvm.amdgcn.image.getlod.1darray
amdgcn_image_getlod_2d, // llvm.amdgcn.image.getlod.2d
amdgcn_image_getlod_2darray, // llvm.amdgcn.image.getlod.2darray
amdgcn_image_getlod_3d, // llvm.amdgcn.image.getlod.3d
amdgcn_image_getlod_cube, // llvm.amdgcn.image.getlod.cube
amdgcn_image_getresinfo_1d, // llvm.amdgcn.image.getresinfo.1d
amdgcn_image_getresinfo_1darray, // llvm.amdgcn.image.getresinfo.1darray
amdgcn_image_getresinfo_2d, // llvm.amdgcn.image.getresinfo.2d
amdgcn_image_getresinfo_2darray, // llvm.amdgcn.image.getresinfo.2darray
amdgcn_image_getresinfo_2darraymsaa, // llvm.amdgcn.image.getresinfo.2darraymsaa
amdgcn_image_getresinfo_2dmsaa, // llvm.amdgcn.image.getresinfo.2dmsaa
amdgcn_image_getresinfo_3d, // llvm.amdgcn.image.getresinfo.3d
amdgcn_image_getresinfo_cube, // llvm.amdgcn.image.getresinfo.cube
amdgcn_image_load_1d, // llvm.amdgcn.image.load.1d
amdgcn_image_load_1darray, // llvm.amdgcn.image.load.1darray
amdgcn_image_load_2d, // llvm.amdgcn.image.load.2d
amdgcn_image_load_2darray, // llvm.amdgcn.image.load.2darray
amdgcn_image_load_2darraymsaa, // llvm.amdgcn.image.load.2darraymsaa
amdgcn_image_load_2dmsaa, // llvm.amdgcn.image.load.2dmsaa
amdgcn_image_load_3d, // llvm.amdgcn.image.load.3d
amdgcn_image_load_cube, // llvm.amdgcn.image.load.cube
amdgcn_image_load_mip_1d, // llvm.amdgcn.image.load.mip.1d
amdgcn_image_load_mip_1darray, // llvm.amdgcn.image.load.mip.1darray
amdgcn_image_load_mip_2d, // llvm.amdgcn.image.load.mip.2d
amdgcn_image_load_mip_2darray, // llvm.amdgcn.image.load.mip.2darray
amdgcn_image_load_mip_3d, // llvm.amdgcn.image.load.mip.3d
amdgcn_image_load_mip_cube, // llvm.amdgcn.image.load.mip.cube
amdgcn_image_sample_1d, // llvm.amdgcn.image.sample.1d
amdgcn_image_sample_1darray, // llvm.amdgcn.image.sample.1darray
amdgcn_image_sample_2d, // llvm.amdgcn.image.sample.2d
amdgcn_image_sample_2darray, // llvm.amdgcn.image.sample.2darray
amdgcn_image_sample_3d, // llvm.amdgcn.image.sample.3d
amdgcn_image_sample_b_1d, // llvm.amdgcn.image.sample.b.1d
amdgcn_image_sample_b_1darray, // llvm.amdgcn.image.sample.b.1darray
amdgcn_image_sample_b_2d, // llvm.amdgcn.image.sample.b.2d
amdgcn_image_sample_b_2darray, // llvm.amdgcn.image.sample.b.2darray
amdgcn_image_sample_b_3d, // llvm.amdgcn.image.sample.b.3d
amdgcn_image_sample_b_cl_1d, // llvm.amdgcn.image.sample.b.cl.1d
amdgcn_image_sample_b_cl_1darray, // llvm.amdgcn.image.sample.b.cl.1darray
amdgcn_image_sample_b_cl_2d, // llvm.amdgcn.image.sample.b.cl.2d
amdgcn_image_sample_b_cl_2darray, // llvm.amdgcn.image.sample.b.cl.2darray
amdgcn_image_sample_b_cl_3d, // llvm.amdgcn.image.sample.b.cl.3d
amdgcn_image_sample_b_cl_cube, // llvm.amdgcn.image.sample.b.cl.cube
amdgcn_image_sample_b_cl_o_1d, // llvm.amdgcn.image.sample.b.cl.o.1d
amdgcn_image_sample_b_cl_o_1darray, // llvm.amdgcn.image.sample.b.cl.o.1darray
amdgcn_image_sample_b_cl_o_2d, // llvm.amdgcn.image.sample.b.cl.o.2d
amdgcn_image_sample_b_cl_o_2darray, // llvm.amdgcn.image.sample.b.cl.o.2darray
amdgcn_image_sample_b_cl_o_3d, // llvm.amdgcn.image.sample.b.cl.o.3d
amdgcn_image_sample_b_cl_o_cube, // llvm.amdgcn.image.sample.b.cl.o.cube
amdgcn_image_sample_b_cube, // llvm.amdgcn.image.sample.b.cube
amdgcn_image_sample_b_o_1d, // llvm.amdgcn.image.sample.b.o.1d
amdgcn_image_sample_b_o_1darray, // llvm.amdgcn.image.sample.b.o.1darray
amdgcn_image_sample_b_o_2d, // llvm.amdgcn.image.sample.b.o.2d
amdgcn_image_sample_b_o_2darray, // llvm.amdgcn.image.sample.b.o.2darray
amdgcn_image_sample_b_o_3d, // llvm.amdgcn.image.sample.b.o.3d
amdgcn_image_sample_b_o_cube, // llvm.amdgcn.image.sample.b.o.cube
amdgcn_image_sample_c_1d, // llvm.amdgcn.image.sample.c.1d
amdgcn_image_sample_c_1darray, // llvm.amdgcn.image.sample.c.1darray
amdgcn_image_sample_c_2d, // llvm.amdgcn.image.sample.c.2d
amdgcn_image_sample_c_2darray, // llvm.amdgcn.image.sample.c.2darray
amdgcn_image_sample_c_3d, // llvm.amdgcn.image.sample.c.3d
amdgcn_image_sample_c_b_1d, // llvm.amdgcn.image.sample.c.b.1d
amdgcn_image_sample_c_b_1darray, // llvm.amdgcn.image.sample.c.b.1darray
amdgcn_image_sample_c_b_2d, // llvm.amdgcn.image.sample.c.b.2d
amdgcn_image_sample_c_b_2darray, // llvm.amdgcn.image.sample.c.b.2darray
amdgcn_image_sample_c_b_3d, // llvm.amdgcn.image.sample.c.b.3d
amdgcn_image_sample_c_b_cl_1d, // llvm.amdgcn.image.sample.c.b.cl.1d
amdgcn_image_sample_c_b_cl_1darray, // llvm.amdgcn.image.sample.c.b.cl.1darray
amdgcn_image_sample_c_b_cl_2d, // llvm.amdgcn.image.sample.c.b.cl.2d
amdgcn_image_sample_c_b_cl_2darray, // llvm.amdgcn.image.sample.c.b.cl.2darray
amdgcn_image_sample_c_b_cl_3d, // llvm.amdgcn.image.sample.c.b.cl.3d
amdgcn_image_sample_c_b_cl_cube, // llvm.amdgcn.image.sample.c.b.cl.cube
amdgcn_image_sample_c_b_cl_o_1d, // llvm.amdgcn.image.sample.c.b.cl.o.1d
amdgcn_image_sample_c_b_cl_o_1darray, // llvm.amdgcn.image.sample.c.b.cl.o.1darray
amdgcn_image_sample_c_b_cl_o_2d, // llvm.amdgcn.image.sample.c.b.cl.o.2d
amdgcn_image_sample_c_b_cl_o_2darray, // llvm.amdgcn.image.sample.c.b.cl.o.2darray
amdgcn_image_sample_c_b_cl_o_3d, // llvm.amdgcn.image.sample.c.b.cl.o.3d
amdgcn_image_sample_c_b_cl_o_cube, // llvm.amdgcn.image.sample.c.b.cl.o.cube
amdgcn_image_sample_c_b_cube, // llvm.amdgcn.image.sample.c.b.cube
amdgcn_image_sample_c_b_o_1d, // llvm.amdgcn.image.sample.c.b.o.1d
amdgcn_image_sample_c_b_o_1darray, // llvm.amdgcn.image.sample.c.b.o.1darray
amdgcn_image_sample_c_b_o_2d, // llvm.amdgcn.image.sample.c.b.o.2d
amdgcn_image_sample_c_b_o_2darray, // llvm.amdgcn.image.sample.c.b.o.2darray
amdgcn_image_sample_c_b_o_3d, // llvm.amdgcn.image.sample.c.b.o.3d
amdgcn_image_sample_c_b_o_cube, // llvm.amdgcn.image.sample.c.b.o.cube
amdgcn_image_sample_c_cd_1d, // llvm.amdgcn.image.sample.c.cd.1d
amdgcn_image_sample_c_cd_1darray, // llvm.amdgcn.image.sample.c.cd.1darray
amdgcn_image_sample_c_cd_2d, // llvm.amdgcn.image.sample.c.cd.2d
amdgcn_image_sample_c_cd_2darray, // llvm.amdgcn.image.sample.c.cd.2darray
amdgcn_image_sample_c_cd_3d, // llvm.amdgcn.image.sample.c.cd.3d
amdgcn_image_sample_c_cd_cl_1d, // llvm.amdgcn.image.sample.c.cd.cl.1d
amdgcn_image_sample_c_cd_cl_1darray, // llvm.amdgcn.image.sample.c.cd.cl.1darray
amdgcn_image_sample_c_cd_cl_2d, // llvm.amdgcn.image.sample.c.cd.cl.2d
amdgcn_image_sample_c_cd_cl_2darray, // llvm.amdgcn.image.sample.c.cd.cl.2darray
amdgcn_image_sample_c_cd_cl_3d, // llvm.amdgcn.image.sample.c.cd.cl.3d
amdgcn_image_sample_c_cd_cl_cube, // llvm.amdgcn.image.sample.c.cd.cl.cube
amdgcn_image_sample_c_cd_cl_o_1d, // llvm.amdgcn.image.sample.c.cd.cl.o.1d
amdgcn_image_sample_c_cd_cl_o_1darray, // llvm.amdgcn.image.sample.c.cd.cl.o.1darray
amdgcn_image_sample_c_cd_cl_o_2d, // llvm.amdgcn.image.sample.c.cd.cl.o.2d
amdgcn_image_sample_c_cd_cl_o_2darray, // llvm.amdgcn.image.sample.c.cd.cl.o.2darray
amdgcn_image_sample_c_cd_cl_o_3d, // llvm.amdgcn.image.sample.c.cd.cl.o.3d
amdgcn_image_sample_c_cd_cl_o_cube, // llvm.amdgcn.image.sample.c.cd.cl.o.cube
amdgcn_image_sample_c_cd_cube, // llvm.amdgcn.image.sample.c.cd.cube
amdgcn_image_sample_c_cd_o_1d, // llvm.amdgcn.image.sample.c.cd.o.1d
amdgcn_image_sample_c_cd_o_1darray, // llvm.amdgcn.image.sample.c.cd.o.1darray
amdgcn_image_sample_c_cd_o_2d, // llvm.amdgcn.image.sample.c.cd.o.2d
amdgcn_image_sample_c_cd_o_2darray, // llvm.amdgcn.image.sample.c.cd.o.2darray
amdgcn_image_sample_c_cd_o_3d, // llvm.amdgcn.image.sample.c.cd.o.3d
amdgcn_image_sample_c_cd_o_cube, // llvm.amdgcn.image.sample.c.cd.o.cube
amdgcn_image_sample_c_cl_1d, // llvm.amdgcn.image.sample.c.cl.1d
amdgcn_image_sample_c_cl_1darray, // llvm.amdgcn.image.sample.c.cl.1darray
amdgcn_image_sample_c_cl_2d, // llvm.amdgcn.image.sample.c.cl.2d
amdgcn_image_sample_c_cl_2darray, // llvm.amdgcn.image.sample.c.cl.2darray
amdgcn_image_sample_c_cl_3d, // llvm.amdgcn.image.sample.c.cl.3d
amdgcn_image_sample_c_cl_cube, // llvm.amdgcn.image.sample.c.cl.cube
amdgcn_image_sample_c_cl_o_1d, // llvm.amdgcn.image.sample.c.cl.o.1d
amdgcn_image_sample_c_cl_o_1darray, // llvm.amdgcn.image.sample.c.cl.o.1darray
amdgcn_image_sample_c_cl_o_2d, // llvm.amdgcn.image.sample.c.cl.o.2d
amdgcn_image_sample_c_cl_o_2darray, // llvm.amdgcn.image.sample.c.cl.o.2darray
amdgcn_image_sample_c_cl_o_3d, // llvm.amdgcn.image.sample.c.cl.o.3d
amdgcn_image_sample_c_cl_o_cube, // llvm.amdgcn.image.sample.c.cl.o.cube
amdgcn_image_sample_c_cube, // llvm.amdgcn.image.sample.c.cube
amdgcn_image_sample_c_d_1d, // llvm.amdgcn.image.sample.c.d.1d
amdgcn_image_sample_c_d_1darray, // llvm.amdgcn.image.sample.c.d.1darray
amdgcn_image_sample_c_d_2d, // llvm.amdgcn.image.sample.c.d.2d
amdgcn_image_sample_c_d_2darray, // llvm.amdgcn.image.sample.c.d.2darray
amdgcn_image_sample_c_d_3d, // llvm.amdgcn.image.sample.c.d.3d
amdgcn_image_sample_c_d_cl_1d, // llvm.amdgcn.image.sample.c.d.cl.1d
amdgcn_image_sample_c_d_cl_1darray, // llvm.amdgcn.image.sample.c.d.cl.1darray
amdgcn_image_sample_c_d_cl_2d, // llvm.amdgcn.image.sample.c.d.cl.2d
amdgcn_image_sample_c_d_cl_2darray, // llvm.amdgcn.image.sample.c.d.cl.2darray
amdgcn_image_sample_c_d_cl_3d, // llvm.amdgcn.image.sample.c.d.cl.3d
amdgcn_image_sample_c_d_cl_cube, // llvm.amdgcn.image.sample.c.d.cl.cube
amdgcn_image_sample_c_d_cl_o_1d, // llvm.amdgcn.image.sample.c.d.cl.o.1d
amdgcn_image_sample_c_d_cl_o_1darray, // llvm.amdgcn.image.sample.c.d.cl.o.1darray
amdgcn_image_sample_c_d_cl_o_2d, // llvm.amdgcn.image.sample.c.d.cl.o.2d
amdgcn_image_sample_c_d_cl_o_2darray, // llvm.amdgcn.image.sample.c.d.cl.o.2darray
amdgcn_image_sample_c_d_cl_o_3d, // llvm.amdgcn.image.sample.c.d.cl.o.3d
amdgcn_image_sample_c_d_cl_o_cube, // llvm.amdgcn.image.sample.c.d.cl.o.cube
amdgcn_image_sample_c_d_cube, // llvm.amdgcn.image.sample.c.d.cube
amdgcn_image_sample_c_d_o_1d, // llvm.amdgcn.image.sample.c.d.o.1d
amdgcn_image_sample_c_d_o_1darray, // llvm.amdgcn.image.sample.c.d.o.1darray
amdgcn_image_sample_c_d_o_2d, // llvm.amdgcn.image.sample.c.d.o.2d
amdgcn_image_sample_c_d_o_2darray, // llvm.amdgcn.image.sample.c.d.o.2darray
amdgcn_image_sample_c_d_o_3d, // llvm.amdgcn.image.sample.c.d.o.3d
amdgcn_image_sample_c_d_o_cube, // llvm.amdgcn.image.sample.c.d.o.cube
amdgcn_image_sample_c_l_1d, // llvm.amdgcn.image.sample.c.l.1d
amdgcn_image_sample_c_l_1darray, // llvm.amdgcn.image.sample.c.l.1darray
amdgcn_image_sample_c_l_2d, // llvm.amdgcn.image.sample.c.l.2d
amdgcn_image_sample_c_l_2darray, // llvm.amdgcn.image.sample.c.l.2darray
amdgcn_image_sample_c_l_3d, // llvm.amdgcn.image.sample.c.l.3d
amdgcn_image_sample_c_l_cube, // llvm.amdgcn.image.sample.c.l.cube
amdgcn_image_sample_c_l_o_1d, // llvm.amdgcn.image.sample.c.l.o.1d
amdgcn_image_sample_c_l_o_1darray, // llvm.amdgcn.image.sample.c.l.o.1darray
amdgcn_image_sample_c_l_o_2d, // llvm.amdgcn.image.sample.c.l.o.2d
amdgcn_image_sample_c_l_o_2darray, // llvm.amdgcn.image.sample.c.l.o.2darray
amdgcn_image_sample_c_l_o_3d, // llvm.amdgcn.image.sample.c.l.o.3d
amdgcn_image_sample_c_l_o_cube, // llvm.amdgcn.image.sample.c.l.o.cube
amdgcn_image_sample_c_lz_1d, // llvm.amdgcn.image.sample.c.lz.1d
amdgcn_image_sample_c_lz_1darray, // llvm.amdgcn.image.sample.c.lz.1darray
amdgcn_image_sample_c_lz_2d, // llvm.amdgcn.image.sample.c.lz.2d
amdgcn_image_sample_c_lz_2darray, // llvm.amdgcn.image.sample.c.lz.2darray
amdgcn_image_sample_c_lz_3d, // llvm.amdgcn.image.sample.c.lz.3d
amdgcn_image_sample_c_lz_cube, // llvm.amdgcn.image.sample.c.lz.cube
amdgcn_image_sample_c_lz_o_1d, // llvm.amdgcn.image.sample.c.lz.o.1d
amdgcn_image_sample_c_lz_o_1darray, // llvm.amdgcn.image.sample.c.lz.o.1darray
amdgcn_image_sample_c_lz_o_2d, // llvm.amdgcn.image.sample.c.lz.o.2d
amdgcn_image_sample_c_lz_o_2darray, // llvm.amdgcn.image.sample.c.lz.o.2darray
amdgcn_image_sample_c_lz_o_3d, // llvm.amdgcn.image.sample.c.lz.o.3d
amdgcn_image_sample_c_lz_o_cube, // llvm.amdgcn.image.sample.c.lz.o.cube
amdgcn_image_sample_c_o_1d, // llvm.amdgcn.image.sample.c.o.1d
amdgcn_image_sample_c_o_1darray, // llvm.amdgcn.image.sample.c.o.1darray
amdgcn_image_sample_c_o_2d, // llvm.amdgcn.image.sample.c.o.2d
amdgcn_image_sample_c_o_2darray, // llvm.amdgcn.image.sample.c.o.2darray
amdgcn_image_sample_c_o_3d, // llvm.amdgcn.image.sample.c.o.3d
amdgcn_image_sample_c_o_cube, // llvm.amdgcn.image.sample.c.o.cube
amdgcn_image_sample_cd_1d, // llvm.amdgcn.image.sample.cd.1d
amdgcn_image_sample_cd_1darray, // llvm.amdgcn.image.sample.cd.1darray
amdgcn_image_sample_cd_2d, // llvm.amdgcn.image.sample.cd.2d
amdgcn_image_sample_cd_2darray, // llvm.amdgcn.image.sample.cd.2darray
amdgcn_image_sample_cd_3d, // llvm.amdgcn.image.sample.cd.3d
amdgcn_image_sample_cd_cl_1d, // llvm.amdgcn.image.sample.cd.cl.1d
amdgcn_image_sample_cd_cl_1darray, // llvm.amdgcn.image.sample.cd.cl.1darray
amdgcn_image_sample_cd_cl_2d, // llvm.amdgcn.image.sample.cd.cl.2d
amdgcn_image_sample_cd_cl_2darray, // llvm.amdgcn.image.sample.cd.cl.2darray
amdgcn_image_sample_cd_cl_3d, // llvm.amdgcn.image.sample.cd.cl.3d
amdgcn_image_sample_cd_cl_cube, // llvm.amdgcn.image.sample.cd.cl.cube
amdgcn_image_sample_cd_cl_o_1d, // llvm.amdgcn.image.sample.cd.cl.o.1d
amdgcn_image_sample_cd_cl_o_1darray, // llvm.amdgcn.image.sample.cd.cl.o.1darray
amdgcn_image_sample_cd_cl_o_2d, // llvm.amdgcn.image.sample.cd.cl.o.2d
amdgcn_image_sample_cd_cl_o_2darray, // llvm.amdgcn.image.sample.cd.cl.o.2darray
amdgcn_image_sample_cd_cl_o_3d, // llvm.amdgcn.image.sample.cd.cl.o.3d
amdgcn_image_sample_cd_cl_o_cube, // llvm.amdgcn.image.sample.cd.cl.o.cube
amdgcn_image_sample_cd_cube, // llvm.amdgcn.image.sample.cd.cube
amdgcn_image_sample_cd_o_1d, // llvm.amdgcn.image.sample.cd.o.1d
amdgcn_image_sample_cd_o_1darray, // llvm.amdgcn.image.sample.cd.o.1darray
amdgcn_image_sample_cd_o_2d, // llvm.amdgcn.image.sample.cd.o.2d
amdgcn_image_sample_cd_o_2darray, // llvm.amdgcn.image.sample.cd.o.2darray
amdgcn_image_sample_cd_o_3d, // llvm.amdgcn.image.sample.cd.o.3d
amdgcn_image_sample_cd_o_cube, // llvm.amdgcn.image.sample.cd.o.cube
amdgcn_image_sample_cl_1d, // llvm.amdgcn.image.sample.cl.1d
amdgcn_image_sample_cl_1darray, // llvm.amdgcn.image.sample.cl.1darray
amdgcn_image_sample_cl_2d, // llvm.amdgcn.image.sample.cl.2d
amdgcn_image_sample_cl_2darray, // llvm.amdgcn.image.sample.cl.2darray
amdgcn_image_sample_cl_3d, // llvm.amdgcn.image.sample.cl.3d
amdgcn_image_sample_cl_cube, // llvm.amdgcn.image.sample.cl.cube
amdgcn_image_sample_cl_o_1d, // llvm.amdgcn.image.sample.cl.o.1d
amdgcn_image_sample_cl_o_1darray, // llvm.amdgcn.image.sample.cl.o.1darray
amdgcn_image_sample_cl_o_2d, // llvm.amdgcn.image.sample.cl.o.2d
amdgcn_image_sample_cl_o_2darray, // llvm.amdgcn.image.sample.cl.o.2darray
amdgcn_image_sample_cl_o_3d, // llvm.amdgcn.image.sample.cl.o.3d
amdgcn_image_sample_cl_o_cube, // llvm.amdgcn.image.sample.cl.o.cube
amdgcn_image_sample_cube, // llvm.amdgcn.image.sample.cube
amdgcn_image_sample_d_1d, // llvm.amdgcn.image.sample.d.1d
amdgcn_image_sample_d_1darray, // llvm.amdgcn.image.sample.d.1darray
amdgcn_image_sample_d_2d, // llvm.amdgcn.image.sample.d.2d
amdgcn_image_sample_d_2darray, // llvm.amdgcn.image.sample.d.2darray
amdgcn_image_sample_d_3d, // llvm.amdgcn.image.sample.d.3d
amdgcn_image_sample_d_cl_1d, // llvm.amdgcn.image.sample.d.cl.1d
amdgcn_image_sample_d_cl_1darray, // llvm.amdgcn.image.sample.d.cl.1darray
amdgcn_image_sample_d_cl_2d, // llvm.amdgcn.image.sample.d.cl.2d
amdgcn_image_sample_d_cl_2darray, // llvm.amdgcn.image.sample.d.cl.2darray
amdgcn_image_sample_d_cl_3d, // llvm.amdgcn.image.sample.d.cl.3d
amdgcn_image_sample_d_cl_cube, // llvm.amdgcn.image.sample.d.cl.cube
amdgcn_image_sample_d_cl_o_1d, // llvm.amdgcn.image.sample.d.cl.o.1d
amdgcn_image_sample_d_cl_o_1darray, // llvm.amdgcn.image.sample.d.cl.o.1darray
amdgcn_image_sample_d_cl_o_2d, // llvm.amdgcn.image.sample.d.cl.o.2d
amdgcn_image_sample_d_cl_o_2darray, // llvm.amdgcn.image.sample.d.cl.o.2darray
amdgcn_image_sample_d_cl_o_3d, // llvm.amdgcn.image.sample.d.cl.o.3d
amdgcn_image_sample_d_cl_o_cube, // llvm.amdgcn.image.sample.d.cl.o.cube
amdgcn_image_sample_d_cube, // llvm.amdgcn.image.sample.d.cube
amdgcn_image_sample_d_o_1d, // llvm.amdgcn.image.sample.d.o.1d
amdgcn_image_sample_d_o_1darray, // llvm.amdgcn.image.sample.d.o.1darray
amdgcn_image_sample_d_o_2d, // llvm.amdgcn.image.sample.d.o.2d
amdgcn_image_sample_d_o_2darray, // llvm.amdgcn.image.sample.d.o.2darray
amdgcn_image_sample_d_o_3d, // llvm.amdgcn.image.sample.d.o.3d
amdgcn_image_sample_d_o_cube, // llvm.amdgcn.image.sample.d.o.cube
amdgcn_image_sample_l_1d, // llvm.amdgcn.image.sample.l.1d
amdgcn_image_sample_l_1darray, // llvm.amdgcn.image.sample.l.1darray
amdgcn_image_sample_l_2d, // llvm.amdgcn.image.sample.l.2d
amdgcn_image_sample_l_2darray, // llvm.amdgcn.image.sample.l.2darray
amdgcn_image_sample_l_3d, // llvm.amdgcn.image.sample.l.3d
amdgcn_image_sample_l_cube, // llvm.amdgcn.image.sample.l.cube
amdgcn_image_sample_l_o_1d, // llvm.amdgcn.image.sample.l.o.1d
amdgcn_image_sample_l_o_1darray, // llvm.amdgcn.image.sample.l.o.1darray
amdgcn_image_sample_l_o_2d, // llvm.amdgcn.image.sample.l.o.2d
amdgcn_image_sample_l_o_2darray, // llvm.amdgcn.image.sample.l.o.2darray
amdgcn_image_sample_l_o_3d, // llvm.amdgcn.image.sample.l.o.3d
amdgcn_image_sample_l_o_cube, // llvm.amdgcn.image.sample.l.o.cube
amdgcn_image_sample_lz_1d, // llvm.amdgcn.image.sample.lz.1d
amdgcn_image_sample_lz_1darray, // llvm.amdgcn.image.sample.lz.1darray
amdgcn_image_sample_lz_2d, // llvm.amdgcn.image.sample.lz.2d
amdgcn_image_sample_lz_2darray, // llvm.amdgcn.image.sample.lz.2darray
amdgcn_image_sample_lz_3d, // llvm.amdgcn.image.sample.lz.3d
amdgcn_image_sample_lz_cube, // llvm.amdgcn.image.sample.lz.cube
amdgcn_image_sample_lz_o_1d, // llvm.amdgcn.image.sample.lz.o.1d
amdgcn_image_sample_lz_o_1darray, // llvm.amdgcn.image.sample.lz.o.1darray
amdgcn_image_sample_lz_o_2d, // llvm.amdgcn.image.sample.lz.o.2d
amdgcn_image_sample_lz_o_2darray, // llvm.amdgcn.image.sample.lz.o.2darray
amdgcn_image_sample_lz_o_3d, // llvm.amdgcn.image.sample.lz.o.3d
amdgcn_image_sample_lz_o_cube, // llvm.amdgcn.image.sample.lz.o.cube
amdgcn_image_sample_o_1d, // llvm.amdgcn.image.sample.o.1d
amdgcn_image_sample_o_1darray, // llvm.amdgcn.image.sample.o.1darray
amdgcn_image_sample_o_2d, // llvm.amdgcn.image.sample.o.2d
amdgcn_image_sample_o_2darray, // llvm.amdgcn.image.sample.o.2darray
amdgcn_image_sample_o_3d, // llvm.amdgcn.image.sample.o.3d
amdgcn_image_sample_o_cube, // llvm.amdgcn.image.sample.o.cube
amdgcn_image_store_1d, // llvm.amdgcn.image.store.1d
amdgcn_image_store_1darray, // llvm.amdgcn.image.store.1darray
amdgcn_image_store_2d, // llvm.amdgcn.image.store.2d
amdgcn_image_store_2darray, // llvm.amdgcn.image.store.2darray
amdgcn_image_store_2darraymsaa, // llvm.amdgcn.image.store.2darraymsaa
amdgcn_image_store_2dmsaa, // llvm.amdgcn.image.store.2dmsaa
amdgcn_image_store_3d, // llvm.amdgcn.image.store.3d
amdgcn_image_store_cube, // llvm.amdgcn.image.store.cube
amdgcn_image_store_mip_1d, // llvm.amdgcn.image.store.mip.1d
amdgcn_image_store_mip_1darray, // llvm.amdgcn.image.store.mip.1darray
amdgcn_image_store_mip_2d, // llvm.amdgcn.image.store.mip.2d
amdgcn_image_store_mip_2darray, // llvm.amdgcn.image.store.mip.2darray
amdgcn_image_store_mip_3d, // llvm.amdgcn.image.store.mip.3d
amdgcn_image_store_mip_cube, // llvm.amdgcn.image.store.mip.cube
amdgcn_implicit_buffer_ptr, // llvm.amdgcn.implicit.buffer.ptr
amdgcn_implicitarg_ptr, // llvm.amdgcn.implicitarg.ptr
amdgcn_init_exec, // llvm.amdgcn.init.exec
amdgcn_init_exec_from_input, // llvm.amdgcn.init.exec.from.input
amdgcn_interp_mov, // llvm.amdgcn.interp.mov
amdgcn_interp_p1, // llvm.amdgcn.interp.p1
amdgcn_interp_p1_f16, // llvm.amdgcn.interp.p1.f16
amdgcn_interp_p2, // llvm.amdgcn.interp.p2
amdgcn_interp_p2_f16, // llvm.amdgcn.interp.p2.f16
amdgcn_is_private, // llvm.amdgcn.is.private
amdgcn_is_shared, // llvm.amdgcn.is.shared
amdgcn_kernarg_segment_ptr, // llvm.amdgcn.kernarg.segment.ptr
amdgcn_kill, // llvm.amdgcn.kill
amdgcn_ldexp, // llvm.amdgcn.ldexp
amdgcn_lerp, // llvm.amdgcn.lerp
amdgcn_log_clamp, // llvm.amdgcn.log.clamp
amdgcn_loop, // llvm.amdgcn.loop
amdgcn_mbcnt_hi, // llvm.amdgcn.mbcnt.hi
amdgcn_mbcnt_lo, // llvm.amdgcn.mbcnt.lo
amdgcn_mfma_f32_16x16x16f16, // llvm.amdgcn.mfma.f32.16x16x16f16
amdgcn_mfma_f32_16x16x1f32, // llvm.amdgcn.mfma.f32.16x16x1f32
amdgcn_mfma_f32_16x16x2bf16, // llvm.amdgcn.mfma.f32.16x16x2bf16
amdgcn_mfma_f32_16x16x4f16, // llvm.amdgcn.mfma.f32.16x16x4f16
amdgcn_mfma_f32_16x16x4f32, // llvm.amdgcn.mfma.f32.16x16x4f32
amdgcn_mfma_f32_16x16x8bf16, // llvm.amdgcn.mfma.f32.16x16x8bf16
amdgcn_mfma_f32_32x32x1f32, // llvm.amdgcn.mfma.f32.32x32x1f32
amdgcn_mfma_f32_32x32x2bf16, // llvm.amdgcn.mfma.f32.32x32x2bf16
amdgcn_mfma_f32_32x32x2f32, // llvm.amdgcn.mfma.f32.32x32x2f32
amdgcn_mfma_f32_32x32x4bf16, // llvm.amdgcn.mfma.f32.32x32x4bf16
amdgcn_mfma_f32_32x32x4f16, // llvm.amdgcn.mfma.f32.32x32x4f16
amdgcn_mfma_f32_32x32x8f16, // llvm.amdgcn.mfma.f32.32x32x8f16
amdgcn_mfma_f32_4x4x1f32, // llvm.amdgcn.mfma.f32.4x4x1f32
amdgcn_mfma_f32_4x4x2bf16, // llvm.amdgcn.mfma.f32.4x4x2bf16
amdgcn_mfma_f32_4x4x4f16, // llvm.amdgcn.mfma.f32.4x4x4f16
amdgcn_mfma_i32_16x16x16i8, // llvm.amdgcn.mfma.i32.16x16x16i8
amdgcn_mfma_i32_16x16x4i8, // llvm.amdgcn.mfma.i32.16x16x4i8
amdgcn_mfma_i32_32x32x4i8, // llvm.amdgcn.mfma.i32.32x32x4i8
amdgcn_mfma_i32_32x32x8i8, // llvm.amdgcn.mfma.i32.32x32x8i8
amdgcn_mfma_i32_4x4x4i8, // llvm.amdgcn.mfma.i32.4x4x4i8
amdgcn_mov_dpp, // llvm.amdgcn.mov.dpp
amdgcn_mov_dpp8, // llvm.amdgcn.mov.dpp8
amdgcn_mqsad_pk_u16_u8, // llvm.amdgcn.mqsad.pk.u16.u8
amdgcn_mqsad_u32_u8, // llvm.amdgcn.mqsad.u32.u8
amdgcn_msad_u8, // llvm.amdgcn.msad.u8
amdgcn_mul_i24, // llvm.amdgcn.mul.i24
amdgcn_mul_u24, // llvm.amdgcn.mul.u24
amdgcn_permlane16, // llvm.amdgcn.permlane16
amdgcn_permlanex16, // llvm.amdgcn.permlanex16
amdgcn_ps_live, // llvm.amdgcn.ps.live
amdgcn_qsad_pk_u16_u8, // llvm.amdgcn.qsad.pk.u16.u8
amdgcn_queue_ptr, // llvm.amdgcn.queue.ptr
amdgcn_raw_buffer_atomic_add, // llvm.amdgcn.raw.buffer.atomic.add
amdgcn_raw_buffer_atomic_and, // llvm.amdgcn.raw.buffer.atomic.and
amdgcn_raw_buffer_atomic_cmpswap, // llvm.amdgcn.raw.buffer.atomic.cmpswap
amdgcn_raw_buffer_atomic_dec, // llvm.amdgcn.raw.buffer.atomic.dec
amdgcn_raw_buffer_atomic_inc, // llvm.amdgcn.raw.buffer.atomic.inc
amdgcn_raw_buffer_atomic_or, // llvm.amdgcn.raw.buffer.atomic.or
amdgcn_raw_buffer_atomic_smax, // llvm.amdgcn.raw.buffer.atomic.smax
amdgcn_raw_buffer_atomic_smin, // llvm.amdgcn.raw.buffer.atomic.smin
amdgcn_raw_buffer_atomic_sub, // llvm.amdgcn.raw.buffer.atomic.sub
amdgcn_raw_buffer_atomic_swap, // llvm.amdgcn.raw.buffer.atomic.swap
amdgcn_raw_buffer_atomic_umax, // llvm.amdgcn.raw.buffer.atomic.umax
amdgcn_raw_buffer_atomic_umin, // llvm.amdgcn.raw.buffer.atomic.umin
amdgcn_raw_buffer_atomic_xor, // llvm.amdgcn.raw.buffer.atomic.xor
amdgcn_raw_buffer_load, // llvm.amdgcn.raw.buffer.load
amdgcn_raw_buffer_load_format, // llvm.amdgcn.raw.buffer.load.format
amdgcn_raw_buffer_store, // llvm.amdgcn.raw.buffer.store
amdgcn_raw_buffer_store_format, // llvm.amdgcn.raw.buffer.store.format
amdgcn_raw_tbuffer_load, // llvm.amdgcn.raw.tbuffer.load
amdgcn_raw_tbuffer_store, // llvm.amdgcn.raw.tbuffer.store
amdgcn_rcp, // llvm.amdgcn.rcp
amdgcn_rcp_legacy, // llvm.amdgcn.rcp.legacy
amdgcn_readfirstlane, // llvm.amdgcn.readfirstlane
amdgcn_readlane, // llvm.amdgcn.readlane
amdgcn_rsq, // llvm.amdgcn.rsq
amdgcn_rsq_clamp, // llvm.amdgcn.rsq.clamp
amdgcn_rsq_legacy, // llvm.amdgcn.rsq.legacy
amdgcn_s_barrier, // llvm.amdgcn.s.barrier
amdgcn_s_buffer_load, // llvm.amdgcn.s.buffer.load
amdgcn_s_dcache_inv, // llvm.amdgcn.s.dcache.inv
amdgcn_s_dcache_inv_vol, // llvm.amdgcn.s.dcache.inv.vol
amdgcn_s_dcache_wb, // llvm.amdgcn.s.dcache.wb
amdgcn_s_dcache_wb_vol, // llvm.amdgcn.s.dcache.wb.vol
amdgcn_s_decperflevel, // llvm.amdgcn.s.decperflevel
amdgcn_s_get_waveid_in_workgroup, // llvm.amdgcn.s.get.waveid.in.workgroup
amdgcn_s_getpc, // llvm.amdgcn.s.getpc
amdgcn_s_getreg, // llvm.amdgcn.s.getreg
amdgcn_s_incperflevel, // llvm.amdgcn.s.incperflevel
amdgcn_s_memrealtime, // llvm.amdgcn.s.memrealtime
amdgcn_s_memtime, // llvm.amdgcn.s.memtime
amdgcn_s_sendmsg, // llvm.amdgcn.s.sendmsg
amdgcn_s_sendmsghalt, // llvm.amdgcn.s.sendmsghalt
amdgcn_s_sleep, // llvm.amdgcn.s.sleep
amdgcn_s_waitcnt, // llvm.amdgcn.s.waitcnt
amdgcn_sad_hi_u8, // llvm.amdgcn.sad.hi.u8
amdgcn_sad_u16, // llvm.amdgcn.sad.u16
amdgcn_sad_u8, // llvm.amdgcn.sad.u8
amdgcn_sbfe, // llvm.amdgcn.sbfe
amdgcn_sdot2, // llvm.amdgcn.sdot2
amdgcn_sdot4, // llvm.amdgcn.sdot4
amdgcn_sdot8, // llvm.amdgcn.sdot8
amdgcn_set_inactive, // llvm.amdgcn.set.inactive
amdgcn_sffbh, // llvm.amdgcn.sffbh
amdgcn_sin, // llvm.amdgcn.sin
amdgcn_softwqm, // llvm.amdgcn.softwqm
amdgcn_struct_buffer_atomic_add, // llvm.amdgcn.struct.buffer.atomic.add
amdgcn_struct_buffer_atomic_and, // llvm.amdgcn.struct.buffer.atomic.and
amdgcn_struct_buffer_atomic_cmpswap, // llvm.amdgcn.struct.buffer.atomic.cmpswap
amdgcn_struct_buffer_atomic_dec, // llvm.amdgcn.struct.buffer.atomic.dec
amdgcn_struct_buffer_atomic_inc, // llvm.amdgcn.struct.buffer.atomic.inc
amdgcn_struct_buffer_atomic_or, // llvm.amdgcn.struct.buffer.atomic.or
amdgcn_struct_buffer_atomic_smax, // llvm.amdgcn.struct.buffer.atomic.smax
amdgcn_struct_buffer_atomic_smin, // llvm.amdgcn.struct.buffer.atomic.smin
amdgcn_struct_buffer_atomic_sub, // llvm.amdgcn.struct.buffer.atomic.sub
amdgcn_struct_buffer_atomic_swap, // llvm.amdgcn.struct.buffer.atomic.swap
amdgcn_struct_buffer_atomic_umax, // llvm.amdgcn.struct.buffer.atomic.umax
amdgcn_struct_buffer_atomic_umin, // llvm.amdgcn.struct.buffer.atomic.umin
amdgcn_struct_buffer_atomic_xor, // llvm.amdgcn.struct.buffer.atomic.xor
amdgcn_struct_buffer_load, // llvm.amdgcn.struct.buffer.load
amdgcn_struct_buffer_load_format, // llvm.amdgcn.struct.buffer.load.format
amdgcn_struct_buffer_store, // llvm.amdgcn.struct.buffer.store
amdgcn_struct_buffer_store_format, // llvm.amdgcn.struct.buffer.store.format
amdgcn_struct_tbuffer_load, // llvm.amdgcn.struct.tbuffer.load
amdgcn_struct_tbuffer_store, // llvm.amdgcn.struct.tbuffer.store
amdgcn_tbuffer_load, // llvm.amdgcn.tbuffer.load
amdgcn_tbuffer_store, // llvm.amdgcn.tbuffer.store
amdgcn_trig_preop, // llvm.amdgcn.trig.preop
amdgcn_ubfe, // llvm.amdgcn.ubfe
amdgcn_udot2, // llvm.amdgcn.udot2
amdgcn_udot4, // llvm.amdgcn.udot4
amdgcn_udot8, // llvm.amdgcn.udot8
amdgcn_unreachable, // llvm.amdgcn.unreachable
amdgcn_update_dpp, // llvm.amdgcn.update.dpp
amdgcn_wave_barrier, // llvm.amdgcn.wave.barrier
amdgcn_wavefrontsize, // llvm.amdgcn.wavefrontsize
amdgcn_workgroup_id_x, // llvm.amdgcn.workgroup.id.x
amdgcn_workgroup_id_y, // llvm.amdgcn.workgroup.id.y
amdgcn_workgroup_id_z, // llvm.amdgcn.workgroup.id.z
amdgcn_workitem_id_x, // llvm.amdgcn.workitem.id.x
amdgcn_workitem_id_y, // llvm.amdgcn.workitem.id.y
amdgcn_workitem_id_z, // llvm.amdgcn.workitem.id.z
amdgcn_wqm, // llvm.amdgcn.wqm
amdgcn_wqm_vote, // llvm.amdgcn.wqm.vote
amdgcn_writelane, // llvm.amdgcn.writelane
amdgcn_wwm, // llvm.amdgcn.wwm
arm_cdp, // llvm.arm.cdp
arm_cdp2, // llvm.arm.cdp2
arm_clrex, // llvm.arm.clrex
arm_cls, // llvm.arm.cls
arm_cls64, // llvm.arm.cls64
arm_cmse_tt, // llvm.arm.cmse.tt
arm_cmse_tta, // llvm.arm.cmse.tta
arm_cmse_ttat, // llvm.arm.cmse.ttat
arm_cmse_ttt, // llvm.arm.cmse.ttt
arm_crc32b, // llvm.arm.crc32b
arm_crc32cb, // llvm.arm.crc32cb
arm_crc32ch, // llvm.arm.crc32ch
arm_crc32cw, // llvm.arm.crc32cw
arm_crc32h, // llvm.arm.crc32h
arm_crc32w, // llvm.arm.crc32w
arm_dbg, // llvm.arm.dbg
arm_dmb, // llvm.arm.dmb
arm_dsb, // llvm.arm.dsb
arm_get_fpscr, // llvm.arm.get.fpscr
arm_gnu_eabi_mcount, // llvm.arm.gnu.eabi.mcount
arm_hint, // llvm.arm.hint
arm_isb, // llvm.arm.isb
arm_ldaex, // llvm.arm.ldaex
arm_ldaexd, // llvm.arm.ldaexd
arm_ldc, // llvm.arm.ldc
arm_ldc2, // llvm.arm.ldc2
arm_ldc2l, // llvm.arm.ldc2l
arm_ldcl, // llvm.arm.ldcl
arm_ldrex, // llvm.arm.ldrex
arm_ldrexd, // llvm.arm.ldrexd
arm_mcr, // llvm.arm.mcr
arm_mcr2, // llvm.arm.mcr2
arm_mcrr, // llvm.arm.mcrr
arm_mcrr2, // llvm.arm.mcrr2
arm_mrc, // llvm.arm.mrc
arm_mrc2, // llvm.arm.mrc2
arm_mrrc, // llvm.arm.mrrc
arm_mrrc2, // llvm.arm.mrrc2
arm_mve_add_predicated, // llvm.arm.mve.add.predicated
arm_mve_maxv_s, // llvm.arm.mve.maxv.s
arm_mve_maxv_u, // llvm.arm.mve.maxv.u
arm_mve_minv_s, // llvm.arm.mve.minv.s
arm_mve_minv_u, // llvm.arm.mve.minv.u
arm_mve_pred_i2v, // llvm.arm.mve.pred.i2v
arm_mve_pred_v2i, // llvm.arm.mve.pred.v2i
arm_mve_sub_predicated, // llvm.arm.mve.sub.predicated
arm_mve_urshrl, // llvm.arm.mve.urshrl
arm_mve_vadc, // llvm.arm.mve.vadc
arm_mve_vadc_predicated, // llvm.arm.mve.vadc.predicated
arm_mve_vcvt_narrow, // llvm.arm.mve.vcvt.narrow
arm_mve_vcvt_narrow_predicated, // llvm.arm.mve.vcvt.narrow.predicated
arm_mve_vld2q, // llvm.arm.mve.vld2q
arm_mve_vld4q, // llvm.arm.mve.vld4q
arm_mve_vldr_gather_base_wb, // llvm.arm.mve.vldr.gather.base.wb
arm_mve_vldr_gather_base_wb_predicated, // llvm.arm.mve.vldr.gather.base.wb.predicated
arm_mve_vst2q, // llvm.arm.mve.vst2q
arm_mve_vst4q, // llvm.arm.mve.vst4q
arm_neon_aesd, // llvm.arm.neon.aesd
arm_neon_aese, // llvm.arm.neon.aese
arm_neon_aesimc, // llvm.arm.neon.aesimc
arm_neon_aesmc, // llvm.arm.neon.aesmc
arm_neon_sdot, // llvm.arm.neon.sdot
arm_neon_sha1c, // llvm.arm.neon.sha1c
arm_neon_sha1h, // llvm.arm.neon.sha1h
arm_neon_sha1m, // llvm.arm.neon.sha1m
arm_neon_sha1p, // llvm.arm.neon.sha1p
arm_neon_sha1su0, // llvm.arm.neon.sha1su0
arm_neon_sha1su1, // llvm.arm.neon.sha1su1
arm_neon_sha256h, // llvm.arm.neon.sha256h
arm_neon_sha256h2, // llvm.arm.neon.sha256h2
arm_neon_sha256su0, // llvm.arm.neon.sha256su0
arm_neon_sha256su1, // llvm.arm.neon.sha256su1
arm_neon_udot, // llvm.arm.neon.udot
arm_neon_vabds, // llvm.arm.neon.vabds
arm_neon_vabdu, // llvm.arm.neon.vabdu
arm_neon_vabs, // llvm.arm.neon.vabs
arm_neon_vacge, // llvm.arm.neon.vacge
arm_neon_vacgt, // llvm.arm.neon.vacgt
arm_neon_vbsl, // llvm.arm.neon.vbsl
arm_neon_vcls, // llvm.arm.neon.vcls
arm_neon_vcvtas, // llvm.arm.neon.vcvtas
arm_neon_vcvtau, // llvm.arm.neon.vcvtau
arm_neon_vcvtfp2fxs, // llvm.arm.neon.vcvtfp2fxs
arm_neon_vcvtfp2fxu, // llvm.arm.neon.vcvtfp2fxu
arm_neon_vcvtfp2hf, // llvm.arm.neon.vcvtfp2hf
arm_neon_vcvtfxs2fp, // llvm.arm.neon.vcvtfxs2fp
arm_neon_vcvtfxu2fp, // llvm.arm.neon.vcvtfxu2fp
arm_neon_vcvthf2fp, // llvm.arm.neon.vcvthf2fp
arm_neon_vcvtms, // llvm.arm.neon.vcvtms
arm_neon_vcvtmu, // llvm.arm.neon.vcvtmu
arm_neon_vcvtns, // llvm.arm.neon.vcvtns
arm_neon_vcvtnu, // llvm.arm.neon.vcvtnu
arm_neon_vcvtps, // llvm.arm.neon.vcvtps
arm_neon_vcvtpu, // llvm.arm.neon.vcvtpu
arm_neon_vhadds, // llvm.arm.neon.vhadds
arm_neon_vhaddu, // llvm.arm.neon.vhaddu
arm_neon_vhsubs, // llvm.arm.neon.vhsubs
arm_neon_vhsubu, // llvm.arm.neon.vhsubu
arm_neon_vld1, // llvm.arm.neon.vld1
arm_neon_vld1x2, // llvm.arm.neon.vld1x2
arm_neon_vld1x3, // llvm.arm.neon.vld1x3
arm_neon_vld1x4, // llvm.arm.neon.vld1x4
arm_neon_vld2, // llvm.arm.neon.vld2
arm_neon_vld2dup, // llvm.arm.neon.vld2dup
arm_neon_vld2lane, // llvm.arm.neon.vld2lane
arm_neon_vld3, // llvm.arm.neon.vld3
arm_neon_vld3dup, // llvm.arm.neon.vld3dup
arm_neon_vld3lane, // llvm.arm.neon.vld3lane
arm_neon_vld4, // llvm.arm.neon.vld4
arm_neon_vld4dup, // llvm.arm.neon.vld4dup
arm_neon_vld4lane, // llvm.arm.neon.vld4lane
arm_neon_vmaxnm, // llvm.arm.neon.vmaxnm
arm_neon_vmaxs, // llvm.arm.neon.vmaxs
arm_neon_vmaxu, // llvm.arm.neon.vmaxu
arm_neon_vminnm, // llvm.arm.neon.vminnm
arm_neon_vmins, // llvm.arm.neon.vmins
arm_neon_vminu, // llvm.arm.neon.vminu
arm_neon_vmullp, // llvm.arm.neon.vmullp
arm_neon_vmulls, // llvm.arm.neon.vmulls
arm_neon_vmullu, // llvm.arm.neon.vmullu
arm_neon_vmulp, // llvm.arm.neon.vmulp
arm_neon_vpadals, // llvm.arm.neon.vpadals
arm_neon_vpadalu, // llvm.arm.neon.vpadalu
arm_neon_vpadd, // llvm.arm.neon.vpadd
arm_neon_vpaddls, // llvm.arm.neon.vpaddls
arm_neon_vpaddlu, // llvm.arm.neon.vpaddlu
arm_neon_vpmaxs, // llvm.arm.neon.vpmaxs
arm_neon_vpmaxu, // llvm.arm.neon.vpmaxu
arm_neon_vpmins, // llvm.arm.neon.vpmins
arm_neon_vpminu, // llvm.arm.neon.vpminu
arm_neon_vqabs, // llvm.arm.neon.vqabs
arm_neon_vqadds, // llvm.arm.neon.vqadds
arm_neon_vqaddu, // llvm.arm.neon.vqaddu
arm_neon_vqdmulh, // llvm.arm.neon.vqdmulh
arm_neon_vqdmull, // llvm.arm.neon.vqdmull
arm_neon_vqmovns, // llvm.arm.neon.vqmovns
arm_neon_vqmovnsu, // llvm.arm.neon.vqmovnsu
arm_neon_vqmovnu, // llvm.arm.neon.vqmovnu
arm_neon_vqneg, // llvm.arm.neon.vqneg
arm_neon_vqrdmulh, // llvm.arm.neon.vqrdmulh
arm_neon_vqrshiftns, // llvm.arm.neon.vqrshiftns
arm_neon_vqrshiftnsu, // llvm.arm.neon.vqrshiftnsu
arm_neon_vqrshiftnu, // llvm.arm.neon.vqrshiftnu
arm_neon_vqrshifts, // llvm.arm.neon.vqrshifts
arm_neon_vqrshiftu, // llvm.arm.neon.vqrshiftu
arm_neon_vqshiftns, // llvm.arm.neon.vqshiftns
arm_neon_vqshiftnsu, // llvm.arm.neon.vqshiftnsu
arm_neon_vqshiftnu, // llvm.arm.neon.vqshiftnu
arm_neon_vqshifts, // llvm.arm.neon.vqshifts
arm_neon_vqshiftsu, // llvm.arm.neon.vqshiftsu
arm_neon_vqshiftu, // llvm.arm.neon.vqshiftu
arm_neon_vqsubs, // llvm.arm.neon.vqsubs
arm_neon_vqsubu, // llvm.arm.neon.vqsubu
arm_neon_vraddhn, // llvm.arm.neon.vraddhn
arm_neon_vrecpe, // llvm.arm.neon.vrecpe
arm_neon_vrecps, // llvm.arm.neon.vrecps
arm_neon_vrhadds, // llvm.arm.neon.vrhadds
arm_neon_vrhaddu, // llvm.arm.neon.vrhaddu
arm_neon_vrinta, // llvm.arm.neon.vrinta
arm_neon_vrintm, // llvm.arm.neon.vrintm
arm_neon_vrintn, // llvm.arm.neon.vrintn
arm_neon_vrintp, // llvm.arm.neon.vrintp
arm_neon_vrintx, // llvm.arm.neon.vrintx
arm_neon_vrintz, // llvm.arm.neon.vrintz
arm_neon_vrshiftn, // llvm.arm.neon.vrshiftn
arm_neon_vrshifts, // llvm.arm.neon.vrshifts
arm_neon_vrshiftu, // llvm.arm.neon.vrshiftu
arm_neon_vrsqrte, // llvm.arm.neon.vrsqrte
arm_neon_vrsqrts, // llvm.arm.neon.vrsqrts
arm_neon_vrsubhn, // llvm.arm.neon.vrsubhn
arm_neon_vshiftins, // llvm.arm.neon.vshiftins
arm_neon_vshifts, // llvm.arm.neon.vshifts
arm_neon_vshiftu, // llvm.arm.neon.vshiftu
arm_neon_vst1, // llvm.arm.neon.vst1
arm_neon_vst1x2, // llvm.arm.neon.vst1x2
arm_neon_vst1x3, // llvm.arm.neon.vst1x3
arm_neon_vst1x4, // llvm.arm.neon.vst1x4
arm_neon_vst2, // llvm.arm.neon.vst2
arm_neon_vst2lane, // llvm.arm.neon.vst2lane
arm_neon_vst3, // llvm.arm.neon.vst3
arm_neon_vst3lane, // llvm.arm.neon.vst3lane
arm_neon_vst4, // llvm.arm.neon.vst4
arm_neon_vst4lane, // llvm.arm.neon.vst4lane
arm_neon_vtbl1, // llvm.arm.neon.vtbl1
arm_neon_vtbl2, // llvm.arm.neon.vtbl2
arm_neon_vtbl3, // llvm.arm.neon.vtbl3
arm_neon_vtbl4, // llvm.arm.neon.vtbl4
arm_neon_vtbx1, // llvm.arm.neon.vtbx1
arm_neon_vtbx2, // llvm.arm.neon.vtbx2
arm_neon_vtbx3, // llvm.arm.neon.vtbx3
arm_neon_vtbx4, // llvm.arm.neon.vtbx4
arm_qadd, // llvm.arm.qadd
arm_qadd16, // llvm.arm.qadd16
arm_qadd8, // llvm.arm.qadd8
arm_qasx, // llvm.arm.qasx
arm_qsax, // llvm.arm.qsax
arm_qsub, // llvm.arm.qsub
arm_qsub16, // llvm.arm.qsub16
arm_qsub8, // llvm.arm.qsub8
arm_sadd16, // llvm.arm.sadd16
arm_sadd8, // llvm.arm.sadd8
arm_sasx, // llvm.arm.sasx
arm_sel, // llvm.arm.sel
arm_set_fpscr, // llvm.arm.set.fpscr
arm_shadd16, // llvm.arm.shadd16
arm_shadd8, // llvm.arm.shadd8
arm_shasx, // llvm.arm.shasx
arm_shsax, // llvm.arm.shsax
arm_shsub16, // llvm.arm.shsub16
arm_shsub8, // llvm.arm.shsub8
arm_smlabb, // llvm.arm.smlabb
arm_smlabt, // llvm.arm.smlabt
arm_smlad, // llvm.arm.smlad
arm_smladx, // llvm.arm.smladx
arm_smlald, // llvm.arm.smlald
arm_smlaldx, // llvm.arm.smlaldx
arm_smlatb, // llvm.arm.smlatb
arm_smlatt, // llvm.arm.smlatt
arm_smlawb, // llvm.arm.smlawb
arm_smlawt, // llvm.arm.smlawt
arm_smlsd, // llvm.arm.smlsd
arm_smlsdx, // llvm.arm.smlsdx
arm_smlsld, // llvm.arm.smlsld
arm_smlsldx, // llvm.arm.smlsldx
arm_smuad, // llvm.arm.smuad
arm_smuadx, // llvm.arm.smuadx
arm_smulbb, // llvm.arm.smulbb
arm_smulbt, // llvm.arm.smulbt
arm_smultb, // llvm.arm.smultb
arm_smultt, // llvm.arm.smultt
arm_smulwb, // llvm.arm.smulwb
arm_smulwt, // llvm.arm.smulwt
arm_smusd, // llvm.arm.smusd
arm_smusdx, // llvm.arm.smusdx
arm_space, // llvm.arm.space
arm_ssat, // llvm.arm.ssat
arm_ssat16, // llvm.arm.ssat16
arm_ssax, // llvm.arm.ssax
arm_ssub16, // llvm.arm.ssub16
arm_ssub8, // llvm.arm.ssub8
arm_stc, // llvm.arm.stc
arm_stc2, // llvm.arm.stc2
arm_stc2l, // llvm.arm.stc2l
arm_stcl, // llvm.arm.stcl
arm_stlex, // llvm.arm.stlex
arm_stlexd, // llvm.arm.stlexd
arm_strex, // llvm.arm.strex
arm_strexd, // llvm.arm.strexd
arm_sxtab16, // llvm.arm.sxtab16
arm_sxtb16, // llvm.arm.sxtb16
arm_uadd16, // llvm.arm.uadd16
arm_uadd8, // llvm.arm.uadd8
arm_uasx, // llvm.arm.uasx
arm_uhadd16, // llvm.arm.uhadd16
arm_uhadd8, // llvm.arm.uhadd8
arm_uhasx, // llvm.arm.uhasx
arm_uhsax, // llvm.arm.uhsax
arm_uhsub16, // llvm.arm.uhsub16
arm_uhsub8, // llvm.arm.uhsub8
arm_undefined, // llvm.arm.undefined
arm_uqadd16, // llvm.arm.uqadd16
arm_uqadd8, // llvm.arm.uqadd8
arm_uqasx, // llvm.arm.uqasx
arm_uqsax, // llvm.arm.uqsax
arm_uqsub16, // llvm.arm.uqsub16
arm_uqsub8, // llvm.arm.uqsub8
arm_usad8, // llvm.arm.usad8
arm_usada8, // llvm.arm.usada8
arm_usat, // llvm.arm.usat
arm_usat16, // llvm.arm.usat16
arm_usax, // llvm.arm.usax
arm_usub16, // llvm.arm.usub16
arm_usub8, // llvm.arm.usub8
arm_uxtab16, // llvm.arm.uxtab16
arm_uxtb16, // llvm.arm.uxtb16
arm_vctp16, // llvm.arm.vctp16
arm_vctp32, // llvm.arm.vctp32
arm_vctp64, // llvm.arm.vctp64
arm_vctp8, // llvm.arm.vctp8
arm_vcvtr, // llvm.arm.vcvtr
arm_vcvtru, // llvm.arm.vcvtru
bpf_load_byte, // llvm.bpf.load.byte
bpf_load_half, // llvm.bpf.load.half
bpf_load_word, // llvm.bpf.load.word
bpf_preserve_field_info, // llvm.bpf.preserve.field.info
bpf_pseudo, // llvm.bpf.pseudo
hexagon_A2_abs, // llvm.hexagon.A2.abs
hexagon_A2_absp, // llvm.hexagon.A2.absp
hexagon_A2_abssat, // llvm.hexagon.A2.abssat
hexagon_A2_add, // llvm.hexagon.A2.add
hexagon_A2_addh_h16_hh, // llvm.hexagon.A2.addh.h16.hh
hexagon_A2_addh_h16_hl, // llvm.hexagon.A2.addh.h16.hl
hexagon_A2_addh_h16_lh, // llvm.hexagon.A2.addh.h16.lh
hexagon_A2_addh_h16_ll, // llvm.hexagon.A2.addh.h16.ll
hexagon_A2_addh_h16_sat_hh, // llvm.hexagon.A2.addh.h16.sat.hh
hexagon_A2_addh_h16_sat_hl, // llvm.hexagon.A2.addh.h16.sat.hl
hexagon_A2_addh_h16_sat_lh, // llvm.hexagon.A2.addh.h16.sat.lh
hexagon_A2_addh_h16_sat_ll, // llvm.hexagon.A2.addh.h16.sat.ll
hexagon_A2_addh_l16_hl, // llvm.hexagon.A2.addh.l16.hl
hexagon_A2_addh_l16_ll, // llvm.hexagon.A2.addh.l16.ll
hexagon_A2_addh_l16_sat_hl, // llvm.hexagon.A2.addh.l16.sat.hl
hexagon_A2_addh_l16_sat_ll, // llvm.hexagon.A2.addh.l16.sat.ll
hexagon_A2_addi, // llvm.hexagon.A2.addi
hexagon_A2_addp, // llvm.hexagon.A2.addp
hexagon_A2_addpsat, // llvm.hexagon.A2.addpsat
hexagon_A2_addsat, // llvm.hexagon.A2.addsat
hexagon_A2_addsp, // llvm.hexagon.A2.addsp
hexagon_A2_and, // llvm.hexagon.A2.and
hexagon_A2_andir, // llvm.hexagon.A2.andir
hexagon_A2_andp, // llvm.hexagon.A2.andp
hexagon_A2_aslh, // llvm.hexagon.A2.aslh
hexagon_A2_asrh, // llvm.hexagon.A2.asrh
hexagon_A2_combine_hh, // llvm.hexagon.A2.combine.hh
hexagon_A2_combine_hl, // llvm.hexagon.A2.combine.hl
hexagon_A2_combine_lh, // llvm.hexagon.A2.combine.lh
hexagon_A2_combine_ll, // llvm.hexagon.A2.combine.ll
hexagon_A2_combineii, // llvm.hexagon.A2.combineii
hexagon_A2_combinew, // llvm.hexagon.A2.combinew
hexagon_A2_max, // llvm.hexagon.A2.max
hexagon_A2_maxp, // llvm.hexagon.A2.maxp
hexagon_A2_maxu, // llvm.hexagon.A2.maxu
hexagon_A2_maxup, // llvm.hexagon.A2.maxup
hexagon_A2_min, // llvm.hexagon.A2.min
hexagon_A2_minp, // llvm.hexagon.A2.minp
hexagon_A2_minu, // llvm.hexagon.A2.minu
hexagon_A2_minup, // llvm.hexagon.A2.minup
hexagon_A2_neg, // llvm.hexagon.A2.neg
hexagon_A2_negp, // llvm.hexagon.A2.negp
hexagon_A2_negsat, // llvm.hexagon.A2.negsat
hexagon_A2_not, // llvm.hexagon.A2.not
hexagon_A2_notp, // llvm.hexagon.A2.notp
hexagon_A2_or, // llvm.hexagon.A2.or
hexagon_A2_orir, // llvm.hexagon.A2.orir
hexagon_A2_orp, // llvm.hexagon.A2.orp
hexagon_A2_pxorf, // llvm.hexagon.A2.pxorf
hexagon_A2_roundsat, // llvm.hexagon.A2.roundsat
hexagon_A2_sat, // llvm.hexagon.A2.sat
hexagon_A2_satb, // llvm.hexagon.A2.satb
hexagon_A2_sath, // llvm.hexagon.A2.sath
hexagon_A2_satub, // llvm.hexagon.A2.satub
hexagon_A2_satuh, // llvm.hexagon.A2.satuh
hexagon_A2_sub, // llvm.hexagon.A2.sub
hexagon_A2_subh_h16_hh, // llvm.hexagon.A2.subh.h16.hh
hexagon_A2_subh_h16_hl, // llvm.hexagon.A2.subh.h16.hl
hexagon_A2_subh_h16_lh, // llvm.hexagon.A2.subh.h16.lh
hexagon_A2_subh_h16_ll, // llvm.hexagon.A2.subh.h16.ll
hexagon_A2_subh_h16_sat_hh, // llvm.hexagon.A2.subh.h16.sat.hh
hexagon_A2_subh_h16_sat_hl, // llvm.hexagon.A2.subh.h16.sat.hl
hexagon_A2_subh_h16_sat_lh, // llvm.hexagon.A2.subh.h16.sat.lh
hexagon_A2_subh_h16_sat_ll, // llvm.hexagon.A2.subh.h16.sat.ll
hexagon_A2_subh_l16_hl, // llvm.hexagon.A2.subh.l16.hl
hexagon_A2_subh_l16_ll, // llvm.hexagon.A2.subh.l16.ll
hexagon_A2_subh_l16_sat_hl, // llvm.hexagon.A2.subh.l16.sat.hl
hexagon_A2_subh_l16_sat_ll, // llvm.hexagon.A2.subh.l16.sat.ll
hexagon_A2_subp, // llvm.hexagon.A2.subp
hexagon_A2_subri, // llvm.hexagon.A2.subri
hexagon_A2_subsat, // llvm.hexagon.A2.subsat
hexagon_A2_svaddh, // llvm.hexagon.A2.svaddh
hexagon_A2_svaddhs, // llvm.hexagon.A2.svaddhs
hexagon_A2_svadduhs, // llvm.hexagon.A2.svadduhs
hexagon_A2_svavgh, // llvm.hexagon.A2.svavgh
hexagon_A2_svavghs, // llvm.hexagon.A2.svavghs
hexagon_A2_svnavgh, // llvm.hexagon.A2.svnavgh
hexagon_A2_svsubh, // llvm.hexagon.A2.svsubh
hexagon_A2_svsubhs, // llvm.hexagon.A2.svsubhs
hexagon_A2_svsubuhs, // llvm.hexagon.A2.svsubuhs
hexagon_A2_swiz, // llvm.hexagon.A2.swiz
hexagon_A2_sxtb, // llvm.hexagon.A2.sxtb
hexagon_A2_sxth, // llvm.hexagon.A2.sxth
hexagon_A2_sxtw, // llvm.hexagon.A2.sxtw
hexagon_A2_tfr, // llvm.hexagon.A2.tfr
hexagon_A2_tfrcrr, // llvm.hexagon.A2.tfrcrr
hexagon_A2_tfrih, // llvm.hexagon.A2.tfrih
hexagon_A2_tfril, // llvm.hexagon.A2.tfril
hexagon_A2_tfrp, // llvm.hexagon.A2.tfrp
hexagon_A2_tfrpi, // llvm.hexagon.A2.tfrpi
hexagon_A2_tfrrcr, // llvm.hexagon.A2.tfrrcr
hexagon_A2_tfrsi, // llvm.hexagon.A2.tfrsi
hexagon_A2_vabsh, // llvm.hexagon.A2.vabsh
hexagon_A2_vabshsat, // llvm.hexagon.A2.vabshsat
hexagon_A2_vabsw, // llvm.hexagon.A2.vabsw
hexagon_A2_vabswsat, // llvm.hexagon.A2.vabswsat
hexagon_A2_vaddb_map, // llvm.hexagon.A2.vaddb.map
hexagon_A2_vaddh, // llvm.hexagon.A2.vaddh
hexagon_A2_vaddhs, // llvm.hexagon.A2.vaddhs
hexagon_A2_vaddub, // llvm.hexagon.A2.vaddub
hexagon_A2_vaddubs, // llvm.hexagon.A2.vaddubs
hexagon_A2_vadduhs, // llvm.hexagon.A2.vadduhs
hexagon_A2_vaddw, // llvm.hexagon.A2.vaddw
hexagon_A2_vaddws, // llvm.hexagon.A2.vaddws
hexagon_A2_vavgh, // llvm.hexagon.A2.vavgh
hexagon_A2_vavghcr, // llvm.hexagon.A2.vavghcr
hexagon_A2_vavghr, // llvm.hexagon.A2.vavghr
hexagon_A2_vavgub, // llvm.hexagon.A2.vavgub
hexagon_A2_vavgubr, // llvm.hexagon.A2.vavgubr
hexagon_A2_vavguh, // llvm.hexagon.A2.vavguh
hexagon_A2_vavguhr, // llvm.hexagon.A2.vavguhr
hexagon_A2_vavguw, // llvm.hexagon.A2.vavguw
hexagon_A2_vavguwr, // llvm.hexagon.A2.vavguwr
hexagon_A2_vavgw, // llvm.hexagon.A2.vavgw
hexagon_A2_vavgwcr, // llvm.hexagon.A2.vavgwcr
hexagon_A2_vavgwr, // llvm.hexagon.A2.vavgwr
hexagon_A2_vcmpbeq, // llvm.hexagon.A2.vcmpbeq
hexagon_A2_vcmpbgtu, // llvm.hexagon.A2.vcmpbgtu
hexagon_A2_vcmpheq, // llvm.hexagon.A2.vcmpheq
hexagon_A2_vcmphgt, // llvm.hexagon.A2.vcmphgt
hexagon_A2_vcmphgtu, // llvm.hexagon.A2.vcmphgtu
hexagon_A2_vcmpweq, // llvm.hexagon.A2.vcmpweq
hexagon_A2_vcmpwgt, // llvm.hexagon.A2.vcmpwgt
hexagon_A2_vcmpwgtu, // llvm.hexagon.A2.vcmpwgtu
hexagon_A2_vconj, // llvm.hexagon.A2.vconj
hexagon_A2_vmaxb, // llvm.hexagon.A2.vmaxb
hexagon_A2_vmaxh, // llvm.hexagon.A2.vmaxh
hexagon_A2_vmaxub, // llvm.hexagon.A2.vmaxub
hexagon_A2_vmaxuh, // llvm.hexagon.A2.vmaxuh
hexagon_A2_vmaxuw, // llvm.hexagon.A2.vmaxuw
hexagon_A2_vmaxw, // llvm.hexagon.A2.vmaxw
hexagon_A2_vminb, // llvm.hexagon.A2.vminb
hexagon_A2_vminh, // llvm.hexagon.A2.vminh
hexagon_A2_vminub, // llvm.hexagon.A2.vminub
hexagon_A2_vminuh, // llvm.hexagon.A2.vminuh
hexagon_A2_vminuw, // llvm.hexagon.A2.vminuw
hexagon_A2_vminw, // llvm.hexagon.A2.vminw
hexagon_A2_vnavgh, // llvm.hexagon.A2.vnavgh
hexagon_A2_vnavghcr, // llvm.hexagon.A2.vnavghcr
hexagon_A2_vnavghr, // llvm.hexagon.A2.vnavghr
hexagon_A2_vnavgw, // llvm.hexagon.A2.vnavgw
hexagon_A2_vnavgwcr, // llvm.hexagon.A2.vnavgwcr
hexagon_A2_vnavgwr, // llvm.hexagon.A2.vnavgwr
hexagon_A2_vraddub, // llvm.hexagon.A2.vraddub
hexagon_A2_vraddub_acc, // llvm.hexagon.A2.vraddub.acc
hexagon_A2_vrsadub, // llvm.hexagon.A2.vrsadub
hexagon_A2_vrsadub_acc, // llvm.hexagon.A2.vrsadub.acc
hexagon_A2_vsubb_map, // llvm.hexagon.A2.vsubb.map
hexagon_A2_vsubh, // llvm.hexagon.A2.vsubh
hexagon_A2_vsubhs, // llvm.hexagon.A2.vsubhs
hexagon_A2_vsubub, // llvm.hexagon.A2.vsubub
hexagon_A2_vsububs, // llvm.hexagon.A2.vsububs
hexagon_A2_vsubuhs, // llvm.hexagon.A2.vsubuhs
hexagon_A2_vsubw, // llvm.hexagon.A2.vsubw
hexagon_A2_vsubws, // llvm.hexagon.A2.vsubws
hexagon_A2_xor, // llvm.hexagon.A2.xor
hexagon_A2_xorp, // llvm.hexagon.A2.xorp
hexagon_A2_zxtb, // llvm.hexagon.A2.zxtb
hexagon_A2_zxth, // llvm.hexagon.A2.zxth
hexagon_A4_addp_c, // llvm.hexagon.A4.addp.c
hexagon_A4_andn, // llvm.hexagon.A4.andn
hexagon_A4_andnp, // llvm.hexagon.A4.andnp
hexagon_A4_bitsplit, // llvm.hexagon.A4.bitsplit
hexagon_A4_bitspliti, // llvm.hexagon.A4.bitspliti
hexagon_A4_boundscheck, // llvm.hexagon.A4.boundscheck
hexagon_A4_cmpbeq, // llvm.hexagon.A4.cmpbeq
hexagon_A4_cmpbeqi, // llvm.hexagon.A4.cmpbeqi
hexagon_A4_cmpbgt, // llvm.hexagon.A4.cmpbgt
hexagon_A4_cmpbgti, // llvm.hexagon.A4.cmpbgti
hexagon_A4_cmpbgtu, // llvm.hexagon.A4.cmpbgtu
hexagon_A4_cmpbgtui, // llvm.hexagon.A4.cmpbgtui
hexagon_A4_cmpheq, // llvm.hexagon.A4.cmpheq
hexagon_A4_cmpheqi, // llvm.hexagon.A4.cmpheqi
hexagon_A4_cmphgt, // llvm.hexagon.A4.cmphgt
hexagon_A4_cmphgti, // llvm.hexagon.A4.cmphgti
hexagon_A4_cmphgtu, // llvm.hexagon.A4.cmphgtu
hexagon_A4_cmphgtui, // llvm.hexagon.A4.cmphgtui
hexagon_A4_combineii, // llvm.hexagon.A4.combineii
hexagon_A4_combineir, // llvm.hexagon.A4.combineir
hexagon_A4_combineri, // llvm.hexagon.A4.combineri
hexagon_A4_cround_ri, // llvm.hexagon.A4.cround.ri
hexagon_A4_cround_rr, // llvm.hexagon.A4.cround.rr
hexagon_A4_modwrapu, // llvm.hexagon.A4.modwrapu
hexagon_A4_orn, // llvm.hexagon.A4.orn
hexagon_A4_ornp, // llvm.hexagon.A4.ornp
hexagon_A4_rcmpeq, // llvm.hexagon.A4.rcmpeq
hexagon_A4_rcmpeqi, // llvm.hexagon.A4.rcmpeqi
hexagon_A4_rcmpneq, // llvm.hexagon.A4.rcmpneq
hexagon_A4_rcmpneqi, // llvm.hexagon.A4.rcmpneqi
hexagon_A4_round_ri, // llvm.hexagon.A4.round.ri
hexagon_A4_round_ri_sat, // llvm.hexagon.A4.round.ri.sat
hexagon_A4_round_rr, // llvm.hexagon.A4.round.rr
hexagon_A4_round_rr_sat, // llvm.hexagon.A4.round.rr.sat
hexagon_A4_subp_c, // llvm.hexagon.A4.subp.c
hexagon_A4_tfrcpp, // llvm.hexagon.A4.tfrcpp
hexagon_A4_tfrpcp, // llvm.hexagon.A4.tfrpcp
hexagon_A4_tlbmatch, // llvm.hexagon.A4.tlbmatch
hexagon_A4_vcmpbeq_any, // llvm.hexagon.A4.vcmpbeq.any
hexagon_A4_vcmpbeqi, // llvm.hexagon.A4.vcmpbeqi
hexagon_A4_vcmpbgt, // llvm.hexagon.A4.vcmpbgt
hexagon_A4_vcmpbgti, // llvm.hexagon.A4.vcmpbgti
hexagon_A4_vcmpbgtui, // llvm.hexagon.A4.vcmpbgtui
hexagon_A4_vcmpheqi, // llvm.hexagon.A4.vcmpheqi
hexagon_A4_vcmphgti, // llvm.hexagon.A4.vcmphgti
hexagon_A4_vcmphgtui, // llvm.hexagon.A4.vcmphgtui
hexagon_A4_vcmpweqi, // llvm.hexagon.A4.vcmpweqi
hexagon_A4_vcmpwgti, // llvm.hexagon.A4.vcmpwgti
hexagon_A4_vcmpwgtui, // llvm.hexagon.A4.vcmpwgtui
hexagon_A4_vrmaxh, // llvm.hexagon.A4.vrmaxh
hexagon_A4_vrmaxuh, // llvm.hexagon.A4.vrmaxuh
hexagon_A4_vrmaxuw, // llvm.hexagon.A4.vrmaxuw
hexagon_A4_vrmaxw, // llvm.hexagon.A4.vrmaxw
hexagon_A4_vrminh, // llvm.hexagon.A4.vrminh
hexagon_A4_vrminuh, // llvm.hexagon.A4.vrminuh
hexagon_A4_vrminuw, // llvm.hexagon.A4.vrminuw
hexagon_A4_vrminw, // llvm.hexagon.A4.vrminw
hexagon_A5_ACS, // llvm.hexagon.A5.ACS
hexagon_A5_vaddhubs, // llvm.hexagon.A5.vaddhubs
hexagon_A6_vcmpbeq_notany, // llvm.hexagon.A6.vcmpbeq.notany
hexagon_A6_vminub_RdP, // llvm.hexagon.A6.vminub.RdP
hexagon_C2_all8, // llvm.hexagon.C2.all8
hexagon_C2_and, // llvm.hexagon.C2.and
hexagon_C2_andn, // llvm.hexagon.C2.andn
hexagon_C2_any8, // llvm.hexagon.C2.any8
hexagon_C2_bitsclr, // llvm.hexagon.C2.bitsclr
hexagon_C2_bitsclri, // llvm.hexagon.C2.bitsclri
hexagon_C2_bitsset, // llvm.hexagon.C2.bitsset
hexagon_C2_cmpeq, // llvm.hexagon.C2.cmpeq
hexagon_C2_cmpeqi, // llvm.hexagon.C2.cmpeqi
hexagon_C2_cmpeqp, // llvm.hexagon.C2.cmpeqp
hexagon_C2_cmpgei, // llvm.hexagon.C2.cmpgei
hexagon_C2_cmpgeui, // llvm.hexagon.C2.cmpgeui
hexagon_C2_cmpgt, // llvm.hexagon.C2.cmpgt
hexagon_C2_cmpgti, // llvm.hexagon.C2.cmpgti
hexagon_C2_cmpgtp, // llvm.hexagon.C2.cmpgtp
hexagon_C2_cmpgtu, // llvm.hexagon.C2.cmpgtu
hexagon_C2_cmpgtui, // llvm.hexagon.C2.cmpgtui
hexagon_C2_cmpgtup, // llvm.hexagon.C2.cmpgtup
hexagon_C2_cmplt, // llvm.hexagon.C2.cmplt
hexagon_C2_cmpltu, // llvm.hexagon.C2.cmpltu
hexagon_C2_mask, // llvm.hexagon.C2.mask
hexagon_C2_mux, // llvm.hexagon.C2.mux
hexagon_C2_muxii, // llvm.hexagon.C2.muxii
hexagon_C2_muxir, // llvm.hexagon.C2.muxir
hexagon_C2_muxri, // llvm.hexagon.C2.muxri
hexagon_C2_not, // llvm.hexagon.C2.not
hexagon_C2_or, // llvm.hexagon.C2.or
hexagon_C2_orn, // llvm.hexagon.C2.orn
hexagon_C2_pxfer_map, // llvm.hexagon.C2.pxfer.map
hexagon_C2_tfrpr, // llvm.hexagon.C2.tfrpr
hexagon_C2_tfrrp, // llvm.hexagon.C2.tfrrp
hexagon_C2_vitpack, // llvm.hexagon.C2.vitpack
hexagon_C2_vmux, // llvm.hexagon.C2.vmux
hexagon_C2_xor, // llvm.hexagon.C2.xor
hexagon_C4_and_and, // llvm.hexagon.C4.and.and
hexagon_C4_and_andn, // llvm.hexagon.C4.and.andn
hexagon_C4_and_or, // llvm.hexagon.C4.and.or
hexagon_C4_and_orn, // llvm.hexagon.C4.and.orn
hexagon_C4_cmplte, // llvm.hexagon.C4.cmplte
hexagon_C4_cmpltei, // llvm.hexagon.C4.cmpltei
hexagon_C4_cmplteu, // llvm.hexagon.C4.cmplteu
hexagon_C4_cmplteui, // llvm.hexagon.C4.cmplteui
hexagon_C4_cmpneq, // llvm.hexagon.C4.cmpneq
hexagon_C4_cmpneqi, // llvm.hexagon.C4.cmpneqi
hexagon_C4_fastcorner9, // llvm.hexagon.C4.fastcorner9
hexagon_C4_fastcorner9_not, // llvm.hexagon.C4.fastcorner9.not
hexagon_C4_nbitsclr, // llvm.hexagon.C4.nbitsclr
hexagon_C4_nbitsclri, // llvm.hexagon.C4.nbitsclri
hexagon_C4_nbitsset, // llvm.hexagon.C4.nbitsset
hexagon_C4_or_and, // llvm.hexagon.C4.or.and
hexagon_C4_or_andn, // llvm.hexagon.C4.or.andn
hexagon_C4_or_or, // llvm.hexagon.C4.or.or
hexagon_C4_or_orn, // llvm.hexagon.C4.or.orn
hexagon_F2_conv_d2df, // llvm.hexagon.F2.conv.d2df
hexagon_F2_conv_d2sf, // llvm.hexagon.F2.conv.d2sf
hexagon_F2_conv_df2d, // llvm.hexagon.F2.conv.df2d
hexagon_F2_conv_df2d_chop, // llvm.hexagon.F2.conv.df2d.chop
hexagon_F2_conv_df2sf, // llvm.hexagon.F2.conv.df2sf
hexagon_F2_conv_df2ud, // llvm.hexagon.F2.conv.df2ud
hexagon_F2_conv_df2ud_chop, // llvm.hexagon.F2.conv.df2ud.chop
hexagon_F2_conv_df2uw, // llvm.hexagon.F2.conv.df2uw
hexagon_F2_conv_df2uw_chop, // llvm.hexagon.F2.conv.df2uw.chop
hexagon_F2_conv_df2w, // llvm.hexagon.F2.conv.df2w
hexagon_F2_conv_df2w_chop, // llvm.hexagon.F2.conv.df2w.chop
hexagon_F2_conv_sf2d, // llvm.hexagon.F2.conv.sf2d
hexagon_F2_conv_sf2d_chop, // llvm.hexagon.F2.conv.sf2d.chop
hexagon_F2_conv_sf2df, // llvm.hexagon.F2.conv.sf2df
hexagon_F2_conv_sf2ud, // llvm.hexagon.F2.conv.sf2ud
hexagon_F2_conv_sf2ud_chop, // llvm.hexagon.F2.conv.sf2ud.chop
hexagon_F2_conv_sf2uw, // llvm.hexagon.F2.conv.sf2uw
hexagon_F2_conv_sf2uw_chop, // llvm.hexagon.F2.conv.sf2uw.chop
hexagon_F2_conv_sf2w, // llvm.hexagon.F2.conv.sf2w
hexagon_F2_conv_sf2w_chop, // llvm.hexagon.F2.conv.sf2w.chop
hexagon_F2_conv_ud2df, // llvm.hexagon.F2.conv.ud2df
hexagon_F2_conv_ud2sf, // llvm.hexagon.F2.conv.ud2sf
hexagon_F2_conv_uw2df, // llvm.hexagon.F2.conv.uw2df
hexagon_F2_conv_uw2sf, // llvm.hexagon.F2.conv.uw2sf
hexagon_F2_conv_w2df, // llvm.hexagon.F2.conv.w2df
hexagon_F2_conv_w2sf, // llvm.hexagon.F2.conv.w2sf
hexagon_F2_dfadd, // llvm.hexagon.F2.dfadd
hexagon_F2_dfclass, // llvm.hexagon.F2.dfclass
hexagon_F2_dfcmpeq, // llvm.hexagon.F2.dfcmpeq
hexagon_F2_dfcmpge, // llvm.hexagon.F2.dfcmpge
hexagon_F2_dfcmpgt, // llvm.hexagon.F2.dfcmpgt
hexagon_F2_dfcmpuo, // llvm.hexagon.F2.dfcmpuo
hexagon_F2_dfimm_n, // llvm.hexagon.F2.dfimm.n
hexagon_F2_dfimm_p, // llvm.hexagon.F2.dfimm.p
hexagon_F2_dfsub, // llvm.hexagon.F2.dfsub
hexagon_F2_sfadd, // llvm.hexagon.F2.sfadd
hexagon_F2_sfclass, // llvm.hexagon.F2.sfclass
hexagon_F2_sfcmpeq, // llvm.hexagon.F2.sfcmpeq
hexagon_F2_sfcmpge, // llvm.hexagon.F2.sfcmpge
hexagon_F2_sfcmpgt, // llvm.hexagon.F2.sfcmpgt
hexagon_F2_sfcmpuo, // llvm.hexagon.F2.sfcmpuo
hexagon_F2_sffixupd, // llvm.hexagon.F2.sffixupd
hexagon_F2_sffixupn, // llvm.hexagon.F2.sffixupn
hexagon_F2_sffixupr, // llvm.hexagon.F2.sffixupr
hexagon_F2_sffma, // llvm.hexagon.F2.sffma
hexagon_F2_sffma_lib, // llvm.hexagon.F2.sffma.lib
hexagon_F2_sffma_sc, // llvm.hexagon.F2.sffma.sc
hexagon_F2_sffms, // llvm.hexagon.F2.sffms
hexagon_F2_sffms_lib, // llvm.hexagon.F2.sffms.lib
hexagon_F2_sfimm_n, // llvm.hexagon.F2.sfimm.n
hexagon_F2_sfimm_p, // llvm.hexagon.F2.sfimm.p
hexagon_F2_sfinvsqrta, // llvm.hexagon.F2.sfinvsqrta
hexagon_F2_sfmax, // llvm.hexagon.F2.sfmax
hexagon_F2_sfmin, // llvm.hexagon.F2.sfmin
hexagon_F2_sfmpy, // llvm.hexagon.F2.sfmpy
hexagon_F2_sfrecipa, // llvm.hexagon.F2.sfrecipa
hexagon_F2_sfsub, // llvm.hexagon.F2.sfsub
hexagon_L2_loadrb_pbr, // llvm.hexagon.L2.loadrb.pbr
hexagon_L2_loadrb_pci, // llvm.hexagon.L2.loadrb.pci
hexagon_L2_loadrb_pcr, // llvm.hexagon.L2.loadrb.pcr
hexagon_L2_loadrd_pbr, // llvm.hexagon.L2.loadrd.pbr
hexagon_L2_loadrd_pci, // llvm.hexagon.L2.loadrd.pci
hexagon_L2_loadrd_pcr, // llvm.hexagon.L2.loadrd.pcr
hexagon_L2_loadrh_pbr, // llvm.hexagon.L2.loadrh.pbr
hexagon_L2_loadrh_pci, // llvm.hexagon.L2.loadrh.pci
hexagon_L2_loadrh_pcr, // llvm.hexagon.L2.loadrh.pcr
hexagon_L2_loadri_pbr, // llvm.hexagon.L2.loadri.pbr
hexagon_L2_loadri_pci, // llvm.hexagon.L2.loadri.pci
hexagon_L2_loadri_pcr, // llvm.hexagon.L2.loadri.pcr
hexagon_L2_loadrub_pbr, // llvm.hexagon.L2.loadrub.pbr
hexagon_L2_loadrub_pci, // llvm.hexagon.L2.loadrub.pci
hexagon_L2_loadrub_pcr, // llvm.hexagon.L2.loadrub.pcr
hexagon_L2_loadruh_pbr, // llvm.hexagon.L2.loadruh.pbr
hexagon_L2_loadruh_pci, // llvm.hexagon.L2.loadruh.pci
hexagon_L2_loadruh_pcr, // llvm.hexagon.L2.loadruh.pcr
hexagon_L2_loadw_locked, // llvm.hexagon.L2.loadw.locked
hexagon_L4_loadd_locked, // llvm.hexagon.L4.loadd.locked
hexagon_M2_acci, // llvm.hexagon.M2.acci
hexagon_M2_accii, // llvm.hexagon.M2.accii
hexagon_M2_cmaci_s0, // llvm.hexagon.M2.cmaci.s0
hexagon_M2_cmacr_s0, // llvm.hexagon.M2.cmacr.s0
hexagon_M2_cmacs_s0, // llvm.hexagon.M2.cmacs.s0
hexagon_M2_cmacs_s1, // llvm.hexagon.M2.cmacs.s1
hexagon_M2_cmacsc_s0, // llvm.hexagon.M2.cmacsc.s0
hexagon_M2_cmacsc_s1, // llvm.hexagon.M2.cmacsc.s1
hexagon_M2_cmpyi_s0, // llvm.hexagon.M2.cmpyi.s0
hexagon_M2_cmpyr_s0, // llvm.hexagon.M2.cmpyr.s0
hexagon_M2_cmpyrs_s0, // llvm.hexagon.M2.cmpyrs.s0
hexagon_M2_cmpyrs_s1, // llvm.hexagon.M2.cmpyrs.s1
hexagon_M2_cmpyrsc_s0, // llvm.hexagon.M2.cmpyrsc.s0
hexagon_M2_cmpyrsc_s1, // llvm.hexagon.M2.cmpyrsc.s1
hexagon_M2_cmpys_s0, // llvm.hexagon.M2.cmpys.s0
hexagon_M2_cmpys_s1, // llvm.hexagon.M2.cmpys.s1
hexagon_M2_cmpysc_s0, // llvm.hexagon.M2.cmpysc.s0
hexagon_M2_cmpysc_s1, // llvm.hexagon.M2.cmpysc.s1
hexagon_M2_cnacs_s0, // llvm.hexagon.M2.cnacs.s0
hexagon_M2_cnacs_s1, // llvm.hexagon.M2.cnacs.s1
hexagon_M2_cnacsc_s0, // llvm.hexagon.M2.cnacsc.s0
hexagon_M2_cnacsc_s1, // llvm.hexagon.M2.cnacsc.s1
hexagon_M2_dpmpyss_acc_s0, // llvm.hexagon.M2.dpmpyss.acc.s0
hexagon_M2_dpmpyss_nac_s0, // llvm.hexagon.M2.dpmpyss.nac.s0
hexagon_M2_dpmpyss_rnd_s0, // llvm.hexagon.M2.dpmpyss.rnd.s0
hexagon_M2_dpmpyss_s0, // llvm.hexagon.M2.dpmpyss.s0
hexagon_M2_dpmpyuu_acc_s0, // llvm.hexagon.M2.dpmpyuu.acc.s0
hexagon_M2_dpmpyuu_nac_s0, // llvm.hexagon.M2.dpmpyuu.nac.s0
hexagon_M2_dpmpyuu_s0, // llvm.hexagon.M2.dpmpyuu.s0
hexagon_M2_hmmpyh_rs1, // llvm.hexagon.M2.hmmpyh.rs1
hexagon_M2_hmmpyh_s1, // llvm.hexagon.M2.hmmpyh.s1
hexagon_M2_hmmpyl_rs1, // llvm.hexagon.M2.hmmpyl.rs1
hexagon_M2_hmmpyl_s1, // llvm.hexagon.M2.hmmpyl.s1
hexagon_M2_maci, // llvm.hexagon.M2.maci
hexagon_M2_macsin, // llvm.hexagon.M2.macsin
hexagon_M2_macsip, // llvm.hexagon.M2.macsip
hexagon_M2_mmachs_rs0, // llvm.hexagon.M2.mmachs.rs0
hexagon_M2_mmachs_rs1, // llvm.hexagon.M2.mmachs.rs1
hexagon_M2_mmachs_s0, // llvm.hexagon.M2.mmachs.s0
hexagon_M2_mmachs_s1, // llvm.hexagon.M2.mmachs.s1
hexagon_M2_mmacls_rs0, // llvm.hexagon.M2.mmacls.rs0
hexagon_M2_mmacls_rs1, // llvm.hexagon.M2.mmacls.rs1
hexagon_M2_mmacls_s0, // llvm.hexagon.M2.mmacls.s0
hexagon_M2_mmacls_s1, // llvm.hexagon.M2.mmacls.s1
hexagon_M2_mmacuhs_rs0, // llvm.hexagon.M2.mmacuhs.rs0
hexagon_M2_mmacuhs_rs1, // llvm.hexagon.M2.mmacuhs.rs1
hexagon_M2_mmacuhs_s0, // llvm.hexagon.M2.mmacuhs.s0
hexagon_M2_mmacuhs_s1, // llvm.hexagon.M2.mmacuhs.s1
hexagon_M2_mmaculs_rs0, // llvm.hexagon.M2.mmaculs.rs0
hexagon_M2_mmaculs_rs1, // llvm.hexagon.M2.mmaculs.rs1
hexagon_M2_mmaculs_s0, // llvm.hexagon.M2.mmaculs.s0
hexagon_M2_mmaculs_s1, // llvm.hexagon.M2.mmaculs.s1
hexagon_M2_mmpyh_rs0, // llvm.hexagon.M2.mmpyh.rs0
hexagon_M2_mmpyh_rs1, // llvm.hexagon.M2.mmpyh.rs1
hexagon_M2_mmpyh_s0, // llvm.hexagon.M2.mmpyh.s0
hexagon_M2_mmpyh_s1, // llvm.hexagon.M2.mmpyh.s1
hexagon_M2_mmpyl_rs0, // llvm.hexagon.M2.mmpyl.rs0
hexagon_M2_mmpyl_rs1, // llvm.hexagon.M2.mmpyl.rs1
hexagon_M2_mmpyl_s0, // llvm.hexagon.M2.mmpyl.s0
hexagon_M2_mmpyl_s1, // llvm.hexagon.M2.mmpyl.s1
hexagon_M2_mmpyuh_rs0, // llvm.hexagon.M2.mmpyuh.rs0
hexagon_M2_mmpyuh_rs1, // llvm.hexagon.M2.mmpyuh.rs1
hexagon_M2_mmpyuh_s0, // llvm.hexagon.M2.mmpyuh.s0
hexagon_M2_mmpyuh_s1, // llvm.hexagon.M2.mmpyuh.s1
hexagon_M2_mmpyul_rs0, // llvm.hexagon.M2.mmpyul.rs0
hexagon_M2_mmpyul_rs1, // llvm.hexagon.M2.mmpyul.rs1
hexagon_M2_mmpyul_s0, // llvm.hexagon.M2.mmpyul.s0
hexagon_M2_mmpyul_s1, // llvm.hexagon.M2.mmpyul.s1
hexagon_M2_mnaci, // llvm.hexagon.M2.mnaci
hexagon_M2_mpy_acc_hh_s0, // llvm.hexagon.M2.mpy.acc.hh.s0
hexagon_M2_mpy_acc_hh_s1, // llvm.hexagon.M2.mpy.acc.hh.s1
hexagon_M2_mpy_acc_hl_s0, // llvm.hexagon.M2.mpy.acc.hl.s0
hexagon_M2_mpy_acc_hl_s1, // llvm.hexagon.M2.mpy.acc.hl.s1
hexagon_M2_mpy_acc_lh_s0, // llvm.hexagon.M2.mpy.acc.lh.s0
hexagon_M2_mpy_acc_lh_s1, // llvm.hexagon.M2.mpy.acc.lh.s1
hexagon_M2_mpy_acc_ll_s0, // llvm.hexagon.M2.mpy.acc.ll.s0
hexagon_M2_mpy_acc_ll_s1, // llvm.hexagon.M2.mpy.acc.ll.s1
hexagon_M2_mpy_acc_sat_hh_s0, // llvm.hexagon.M2.mpy.acc.sat.hh.s0
hexagon_M2_mpy_acc_sat_hh_s1, // llvm.hexagon.M2.mpy.acc.sat.hh.s1
hexagon_M2_mpy_acc_sat_hl_s0, // llvm.hexagon.M2.mpy.acc.sat.hl.s0
hexagon_M2_mpy_acc_sat_hl_s1, // llvm.hexagon.M2.mpy.acc.sat.hl.s1
hexagon_M2_mpy_acc_sat_lh_s0, // llvm.hexagon.M2.mpy.acc.sat.lh.s0
hexagon_M2_mpy_acc_sat_lh_s1, // llvm.hexagon.M2.mpy.acc.sat.lh.s1
hexagon_M2_mpy_acc_sat_ll_s0, // llvm.hexagon.M2.mpy.acc.sat.ll.s0
hexagon_M2_mpy_acc_sat_ll_s1, // llvm.hexagon.M2.mpy.acc.sat.ll.s1
hexagon_M2_mpy_hh_s0, // llvm.hexagon.M2.mpy.hh.s0
hexagon_M2_mpy_hh_s1, // llvm.hexagon.M2.mpy.hh.s1
hexagon_M2_mpy_hl_s0, // llvm.hexagon.M2.mpy.hl.s0
hexagon_M2_mpy_hl_s1, // llvm.hexagon.M2.mpy.hl.s1
hexagon_M2_mpy_lh_s0, // llvm.hexagon.M2.mpy.lh.s0
hexagon_M2_mpy_lh_s1, // llvm.hexagon.M2.mpy.lh.s1
hexagon_M2_mpy_ll_s0, // llvm.hexagon.M2.mpy.ll.s0
hexagon_M2_mpy_ll_s1, // llvm.hexagon.M2.mpy.ll.s1
hexagon_M2_mpy_nac_hh_s0, // llvm.hexagon.M2.mpy.nac.hh.s0
hexagon_M2_mpy_nac_hh_s1, // llvm.hexagon.M2.mpy.nac.hh.s1
hexagon_M2_mpy_nac_hl_s0, // llvm.hexagon.M2.mpy.nac.hl.s0
hexagon_M2_mpy_nac_hl_s1, // llvm.hexagon.M2.mpy.nac.hl.s1
hexagon_M2_mpy_nac_lh_s0, // llvm.hexagon.M2.mpy.nac.lh.s0
hexagon_M2_mpy_nac_lh_s1, // llvm.hexagon.M2.mpy.nac.lh.s1
hexagon_M2_mpy_nac_ll_s0, // llvm.hexagon.M2.mpy.nac.ll.s0
hexagon_M2_mpy_nac_ll_s1, // llvm.hexagon.M2.mpy.nac.ll.s1
hexagon_M2_mpy_nac_sat_hh_s0, // llvm.hexagon.M2.mpy.nac.sat.hh.s0
hexagon_M2_mpy_nac_sat_hh_s1, // llvm.hexagon.M2.mpy.nac.sat.hh.s1
hexagon_M2_mpy_nac_sat_hl_s0, // llvm.hexagon.M2.mpy.nac.sat.hl.s0
hexagon_M2_mpy_nac_sat_hl_s1, // llvm.hexagon.M2.mpy.nac.sat.hl.s1
hexagon_M2_mpy_nac_sat_lh_s0, // llvm.hexagon.M2.mpy.nac.sat.lh.s0
hexagon_M2_mpy_nac_sat_lh_s1, // llvm.hexagon.M2.mpy.nac.sat.lh.s1
hexagon_M2_mpy_nac_sat_ll_s0, // llvm.hexagon.M2.mpy.nac.sat.ll.s0
hexagon_M2_mpy_nac_sat_ll_s1, // llvm.hexagon.M2.mpy.nac.sat.ll.s1
hexagon_M2_mpy_rnd_hh_s0, // llvm.hexagon.M2.mpy.rnd.hh.s0
hexagon_M2_mpy_rnd_hh_s1, // llvm.hexagon.M2.mpy.rnd.hh.s1
hexagon_M2_mpy_rnd_hl_s0, // llvm.hexagon.M2.mpy.rnd.hl.s0
hexagon_M2_mpy_rnd_hl_s1, // llvm.hexagon.M2.mpy.rnd.hl.s1
hexagon_M2_mpy_rnd_lh_s0, // llvm.hexagon.M2.mpy.rnd.lh.s0
hexagon_M2_mpy_rnd_lh_s1, // llvm.hexagon.M2.mpy.rnd.lh.s1
hexagon_M2_mpy_rnd_ll_s0, // llvm.hexagon.M2.mpy.rnd.ll.s0
hexagon_M2_mpy_rnd_ll_s1, // llvm.hexagon.M2.mpy.rnd.ll.s1
hexagon_M2_mpy_sat_hh_s0, // llvm.hexagon.M2.mpy.sat.hh.s0
hexagon_M2_mpy_sat_hh_s1, // llvm.hexagon.M2.mpy.sat.hh.s1
hexagon_M2_mpy_sat_hl_s0, // llvm.hexagon.M2.mpy.sat.hl.s0
hexagon_M2_mpy_sat_hl_s1, // llvm.hexagon.M2.mpy.sat.hl.s1
hexagon_M2_mpy_sat_lh_s0, // llvm.hexagon.M2.mpy.sat.lh.s0
hexagon_M2_mpy_sat_lh_s1, // llvm.hexagon.M2.mpy.sat.lh.s1
hexagon_M2_mpy_sat_ll_s0, // llvm.hexagon.M2.mpy.sat.ll.s0
hexagon_M2_mpy_sat_ll_s1, // llvm.hexagon.M2.mpy.sat.ll.s1
hexagon_M2_mpy_sat_rnd_hh_s0, // llvm.hexagon.M2.mpy.sat.rnd.hh.s0
hexagon_M2_mpy_sat_rnd_hh_s1, // llvm.hexagon.M2.mpy.sat.rnd.hh.s1
hexagon_M2_mpy_sat_rnd_hl_s0, // llvm.hexagon.M2.mpy.sat.rnd.hl.s0
hexagon_M2_mpy_sat_rnd_hl_s1, // llvm.hexagon.M2.mpy.sat.rnd.hl.s1
hexagon_M2_mpy_sat_rnd_lh_s0, // llvm.hexagon.M2.mpy.sat.rnd.lh.s0
hexagon_M2_mpy_sat_rnd_lh_s1, // llvm.hexagon.M2.mpy.sat.rnd.lh.s1
hexagon_M2_mpy_sat_rnd_ll_s0, // llvm.hexagon.M2.mpy.sat.rnd.ll.s0
hexagon_M2_mpy_sat_rnd_ll_s1, // llvm.hexagon.M2.mpy.sat.rnd.ll.s1
hexagon_M2_mpy_up, // llvm.hexagon.M2.mpy.up
hexagon_M2_mpy_up_s1, // llvm.hexagon.M2.mpy.up.s1
hexagon_M2_mpy_up_s1_sat, // llvm.hexagon.M2.mpy.up.s1.sat
hexagon_M2_mpyd_acc_hh_s0, // llvm.hexagon.M2.mpyd.acc.hh.s0
hexagon_M2_mpyd_acc_hh_s1, // llvm.hexagon.M2.mpyd.acc.hh.s1
hexagon_M2_mpyd_acc_hl_s0, // llvm.hexagon.M2.mpyd.acc.hl.s0
hexagon_M2_mpyd_acc_hl_s1, // llvm.hexagon.M2.mpyd.acc.hl.s1
hexagon_M2_mpyd_acc_lh_s0, // llvm.hexagon.M2.mpyd.acc.lh.s0
hexagon_M2_mpyd_acc_lh_s1, // llvm.hexagon.M2.mpyd.acc.lh.s1
hexagon_M2_mpyd_acc_ll_s0, // llvm.hexagon.M2.mpyd.acc.ll.s0
hexagon_M2_mpyd_acc_ll_s1, // llvm.hexagon.M2.mpyd.acc.ll.s1
hexagon_M2_mpyd_hh_s0, // llvm.hexagon.M2.mpyd.hh.s0
hexagon_M2_mpyd_hh_s1, // llvm.hexagon.M2.mpyd.hh.s1
hexagon_M2_mpyd_hl_s0, // llvm.hexagon.M2.mpyd.hl.s0
hexagon_M2_mpyd_hl_s1, // llvm.hexagon.M2.mpyd.hl.s1
hexagon_M2_mpyd_lh_s0, // llvm.hexagon.M2.mpyd.lh.s0
hexagon_M2_mpyd_lh_s1, // llvm.hexagon.M2.mpyd.lh.s1
hexagon_M2_mpyd_ll_s0, // llvm.hexagon.M2.mpyd.ll.s0
hexagon_M2_mpyd_ll_s1, // llvm.hexagon.M2.mpyd.ll.s1
hexagon_M2_mpyd_nac_hh_s0, // llvm.hexagon.M2.mpyd.nac.hh.s0
hexagon_M2_mpyd_nac_hh_s1, // llvm.hexagon.M2.mpyd.nac.hh.s1
hexagon_M2_mpyd_nac_hl_s0, // llvm.hexagon.M2.mpyd.nac.hl.s0
hexagon_M2_mpyd_nac_hl_s1, // llvm.hexagon.M2.mpyd.nac.hl.s1
hexagon_M2_mpyd_nac_lh_s0, // llvm.hexagon.M2.mpyd.nac.lh.s0
hexagon_M2_mpyd_nac_lh_s1, // llvm.hexagon.M2.mpyd.nac.lh.s1
hexagon_M2_mpyd_nac_ll_s0, // llvm.hexagon.M2.mpyd.nac.ll.s0
hexagon_M2_mpyd_nac_ll_s1, // llvm.hexagon.M2.mpyd.nac.ll.s1
hexagon_M2_mpyd_rnd_hh_s0, // llvm.hexagon.M2.mpyd.rnd.hh.s0
hexagon_M2_mpyd_rnd_hh_s1, // llvm.hexagon.M2.mpyd.rnd.hh.s1
hexagon_M2_mpyd_rnd_hl_s0, // llvm.hexagon.M2.mpyd.rnd.hl.s0
hexagon_M2_mpyd_rnd_hl_s1, // llvm.hexagon.M2.mpyd.rnd.hl.s1
hexagon_M2_mpyd_rnd_lh_s0, // llvm.hexagon.M2.mpyd.rnd.lh.s0
hexagon_M2_mpyd_rnd_lh_s1, // llvm.hexagon.M2.mpyd.rnd.lh.s1
hexagon_M2_mpyd_rnd_ll_s0, // llvm.hexagon.M2.mpyd.rnd.ll.s0
hexagon_M2_mpyd_rnd_ll_s1, // llvm.hexagon.M2.mpyd.rnd.ll.s1
hexagon_M2_mpyi, // llvm.hexagon.M2.mpyi
hexagon_M2_mpysin, // llvm.hexagon.M2.mpysin
hexagon_M2_mpysip, // llvm.hexagon.M2.mpysip
hexagon_M2_mpysmi, // llvm.hexagon.M2.mpysmi
hexagon_M2_mpysu_up, // llvm.hexagon.M2.mpysu.up
hexagon_M2_mpyu_acc_hh_s0, // llvm.hexagon.M2.mpyu.acc.hh.s0
hexagon_M2_mpyu_acc_hh_s1, // llvm.hexagon.M2.mpyu.acc.hh.s1
hexagon_M2_mpyu_acc_hl_s0, // llvm.hexagon.M2.mpyu.acc.hl.s0
hexagon_M2_mpyu_acc_hl_s1, // llvm.hexagon.M2.mpyu.acc.hl.s1
hexagon_M2_mpyu_acc_lh_s0, // llvm.hexagon.M2.mpyu.acc.lh.s0
hexagon_M2_mpyu_acc_lh_s1, // llvm.hexagon.M2.mpyu.acc.lh.s1
hexagon_M2_mpyu_acc_ll_s0, // llvm.hexagon.M2.mpyu.acc.ll.s0
hexagon_M2_mpyu_acc_ll_s1, // llvm.hexagon.M2.mpyu.acc.ll.s1
hexagon_M2_mpyu_hh_s0, // llvm.hexagon.M2.mpyu.hh.s0
hexagon_M2_mpyu_hh_s1, // llvm.hexagon.M2.mpyu.hh.s1
hexagon_M2_mpyu_hl_s0, // llvm.hexagon.M2.mpyu.hl.s0
hexagon_M2_mpyu_hl_s1, // llvm.hexagon.M2.mpyu.hl.s1
hexagon_M2_mpyu_lh_s0, // llvm.hexagon.M2.mpyu.lh.s0
hexagon_M2_mpyu_lh_s1, // llvm.hexagon.M2.mpyu.lh.s1
hexagon_M2_mpyu_ll_s0, // llvm.hexagon.M2.mpyu.ll.s0
hexagon_M2_mpyu_ll_s1, // llvm.hexagon.M2.mpyu.ll.s1
hexagon_M2_mpyu_nac_hh_s0, // llvm.hexagon.M2.mpyu.nac.hh.s0
hexagon_M2_mpyu_nac_hh_s1, // llvm.hexagon.M2.mpyu.nac.hh.s1
hexagon_M2_mpyu_nac_hl_s0, // llvm.hexagon.M2.mpyu.nac.hl.s0
hexagon_M2_mpyu_nac_hl_s1, // llvm.hexagon.M2.mpyu.nac.hl.s1
hexagon_M2_mpyu_nac_lh_s0, // llvm.hexagon.M2.mpyu.nac.lh.s0
hexagon_M2_mpyu_nac_lh_s1, // llvm.hexagon.M2.mpyu.nac.lh.s1
hexagon_M2_mpyu_nac_ll_s0, // llvm.hexagon.M2.mpyu.nac.ll.s0
hexagon_M2_mpyu_nac_ll_s1, // llvm.hexagon.M2.mpyu.nac.ll.s1
hexagon_M2_mpyu_up, // llvm.hexagon.M2.mpyu.up
hexagon_M2_mpyud_acc_hh_s0, // llvm.hexagon.M2.mpyud.acc.hh.s0
hexagon_M2_mpyud_acc_hh_s1, // llvm.hexagon.M2.mpyud.acc.hh.s1
hexagon_M2_mpyud_acc_hl_s0, // llvm.hexagon.M2.mpyud.acc.hl.s0
hexagon_M2_mpyud_acc_hl_s1, // llvm.hexagon.M2.mpyud.acc.hl.s1
hexagon_M2_mpyud_acc_lh_s0, // llvm.hexagon.M2.mpyud.acc.lh.s0
hexagon_M2_mpyud_acc_lh_s1, // llvm.hexagon.M2.mpyud.acc.lh.s1
hexagon_M2_mpyud_acc_ll_s0, // llvm.hexagon.M2.mpyud.acc.ll.s0
hexagon_M2_mpyud_acc_ll_s1, // llvm.hexagon.M2.mpyud.acc.ll.s1
hexagon_M2_mpyud_hh_s0, // llvm.hexagon.M2.mpyud.hh.s0
hexagon_M2_mpyud_hh_s1, // llvm.hexagon.M2.mpyud.hh.s1
hexagon_M2_mpyud_hl_s0, // llvm.hexagon.M2.mpyud.hl.s0
hexagon_M2_mpyud_hl_s1, // llvm.hexagon.M2.mpyud.hl.s1
hexagon_M2_mpyud_lh_s0, // llvm.hexagon.M2.mpyud.lh.s0
hexagon_M2_mpyud_lh_s1, // llvm.hexagon.M2.mpyud.lh.s1
hexagon_M2_mpyud_ll_s0, // llvm.hexagon.M2.mpyud.ll.s0
hexagon_M2_mpyud_ll_s1, // llvm.hexagon.M2.mpyud.ll.s1
hexagon_M2_mpyud_nac_hh_s0, // llvm.hexagon.M2.mpyud.nac.hh.s0
hexagon_M2_mpyud_nac_hh_s1, // llvm.hexagon.M2.mpyud.nac.hh.s1
hexagon_M2_mpyud_nac_hl_s0, // llvm.hexagon.M2.mpyud.nac.hl.s0
hexagon_M2_mpyud_nac_hl_s1, // llvm.hexagon.M2.mpyud.nac.hl.s1
hexagon_M2_mpyud_nac_lh_s0, // llvm.hexagon.M2.mpyud.nac.lh.s0
hexagon_M2_mpyud_nac_lh_s1, // llvm.hexagon.M2.mpyud.nac.lh.s1
hexagon_M2_mpyud_nac_ll_s0, // llvm.hexagon.M2.mpyud.nac.ll.s0
hexagon_M2_mpyud_nac_ll_s1, // llvm.hexagon.M2.mpyud.nac.ll.s1
hexagon_M2_mpyui, // llvm.hexagon.M2.mpyui
hexagon_M2_nacci, // llvm.hexagon.M2.nacci
hexagon_M2_naccii, // llvm.hexagon.M2.naccii
hexagon_M2_subacc, // llvm.hexagon.M2.subacc
hexagon_M2_vabsdiffh, // llvm.hexagon.M2.vabsdiffh
hexagon_M2_vabsdiffw, // llvm.hexagon.M2.vabsdiffw
hexagon_M2_vcmac_s0_sat_i, // llvm.hexagon.M2.vcmac.s0.sat.i
hexagon_M2_vcmac_s0_sat_r, // llvm.hexagon.M2.vcmac.s0.sat.r
hexagon_M2_vcmpy_s0_sat_i, // llvm.hexagon.M2.vcmpy.s0.sat.i
hexagon_M2_vcmpy_s0_sat_r, // llvm.hexagon.M2.vcmpy.s0.sat.r
hexagon_M2_vcmpy_s1_sat_i, // llvm.hexagon.M2.vcmpy.s1.sat.i
hexagon_M2_vcmpy_s1_sat_r, // llvm.hexagon.M2.vcmpy.s1.sat.r
hexagon_M2_vdmacs_s0, // llvm.hexagon.M2.vdmacs.s0
hexagon_M2_vdmacs_s1, // llvm.hexagon.M2.vdmacs.s1
hexagon_M2_vdmpyrs_s0, // llvm.hexagon.M2.vdmpyrs.s0
hexagon_M2_vdmpyrs_s1, // llvm.hexagon.M2.vdmpyrs.s1
hexagon_M2_vdmpys_s0, // llvm.hexagon.M2.vdmpys.s0
hexagon_M2_vdmpys_s1, // llvm.hexagon.M2.vdmpys.s1
hexagon_M2_vmac2, // llvm.hexagon.M2.vmac2
hexagon_M2_vmac2es, // llvm.hexagon.M2.vmac2es
hexagon_M2_vmac2es_s0, // llvm.hexagon.M2.vmac2es.s0
hexagon_M2_vmac2es_s1, // llvm.hexagon.M2.vmac2es.s1
hexagon_M2_vmac2s_s0, // llvm.hexagon.M2.vmac2s.s0
hexagon_M2_vmac2s_s1, // llvm.hexagon.M2.vmac2s.s1
hexagon_M2_vmac2su_s0, // llvm.hexagon.M2.vmac2su.s0
hexagon_M2_vmac2su_s1, // llvm.hexagon.M2.vmac2su.s1
hexagon_M2_vmpy2es_s0, // llvm.hexagon.M2.vmpy2es.s0
hexagon_M2_vmpy2es_s1, // llvm.hexagon.M2.vmpy2es.s1
hexagon_M2_vmpy2s_s0, // llvm.hexagon.M2.vmpy2s.s0
hexagon_M2_vmpy2s_s0pack, // llvm.hexagon.M2.vmpy2s.s0pack
hexagon_M2_vmpy2s_s1, // llvm.hexagon.M2.vmpy2s.s1
hexagon_M2_vmpy2s_s1pack, // llvm.hexagon.M2.vmpy2s.s1pack
hexagon_M2_vmpy2su_s0, // llvm.hexagon.M2.vmpy2su.s0
hexagon_M2_vmpy2su_s1, // llvm.hexagon.M2.vmpy2su.s1
hexagon_M2_vraddh, // llvm.hexagon.M2.vraddh
hexagon_M2_vradduh, // llvm.hexagon.M2.vradduh
hexagon_M2_vrcmaci_s0, // llvm.hexagon.M2.vrcmaci.s0
hexagon_M2_vrcmaci_s0c, // llvm.hexagon.M2.vrcmaci.s0c
hexagon_M2_vrcmacr_s0, // llvm.hexagon.M2.vrcmacr.s0
hexagon_M2_vrcmacr_s0c, // llvm.hexagon.M2.vrcmacr.s0c
hexagon_M2_vrcmpyi_s0, // llvm.hexagon.M2.vrcmpyi.s0
hexagon_M2_vrcmpyi_s0c, // llvm.hexagon.M2.vrcmpyi.s0c
hexagon_M2_vrcmpyr_s0, // llvm.hexagon.M2.vrcmpyr.s0
hexagon_M2_vrcmpyr_s0c, // llvm.hexagon.M2.vrcmpyr.s0c
hexagon_M2_vrcmpys_acc_s1, // llvm.hexagon.M2.vrcmpys.acc.s1
hexagon_M2_vrcmpys_s1, // llvm.hexagon.M2.vrcmpys.s1
hexagon_M2_vrcmpys_s1rp, // llvm.hexagon.M2.vrcmpys.s1rp
hexagon_M2_vrmac_s0, // llvm.hexagon.M2.vrmac.s0
hexagon_M2_vrmpy_s0, // llvm.hexagon.M2.vrmpy.s0
hexagon_M2_xor_xacc, // llvm.hexagon.M2.xor.xacc
hexagon_M4_and_and, // llvm.hexagon.M4.and.and
hexagon_M4_and_andn, // llvm.hexagon.M4.and.andn
hexagon_M4_and_or, // llvm.hexagon.M4.and.or
hexagon_M4_and_xor, // llvm.hexagon.M4.and.xor
hexagon_M4_cmpyi_wh, // llvm.hexagon.M4.cmpyi.wh
hexagon_M4_cmpyi_whc, // llvm.hexagon.M4.cmpyi.whc
hexagon_M4_cmpyr_wh, // llvm.hexagon.M4.cmpyr.wh
hexagon_M4_cmpyr_whc, // llvm.hexagon.M4.cmpyr.whc
hexagon_M4_mac_up_s1_sat, // llvm.hexagon.M4.mac.up.s1.sat
hexagon_M4_mpyri_addi, // llvm.hexagon.M4.mpyri.addi
hexagon_M4_mpyri_addr, // llvm.hexagon.M4.mpyri.addr
hexagon_M4_mpyri_addr_u2, // llvm.hexagon.M4.mpyri.addr.u2
hexagon_M4_mpyrr_addi, // llvm.hexagon.M4.mpyrr.addi
hexagon_M4_mpyrr_addr, // llvm.hexagon.M4.mpyrr.addr
hexagon_M4_nac_up_s1_sat, // llvm.hexagon.M4.nac.up.s1.sat
hexagon_M4_or_and, // llvm.hexagon.M4.or.and
hexagon_M4_or_andn, // llvm.hexagon.M4.or.andn
hexagon_M4_or_or, // llvm.hexagon.M4.or.or
hexagon_M4_or_xor, // llvm.hexagon.M4.or.xor
hexagon_M4_pmpyw, // llvm.hexagon.M4.pmpyw
hexagon_M4_pmpyw_acc, // llvm.hexagon.M4.pmpyw.acc
hexagon_M4_vpmpyh, // llvm.hexagon.M4.vpmpyh
hexagon_M4_vpmpyh_acc, // llvm.hexagon.M4.vpmpyh.acc
hexagon_M4_vrmpyeh_acc_s0, // llvm.hexagon.M4.vrmpyeh.acc.s0
hexagon_M4_vrmpyeh_acc_s1, // llvm.hexagon.M4.vrmpyeh.acc.s1
hexagon_M4_vrmpyeh_s0, // llvm.hexagon.M4.vrmpyeh.s0
hexagon_M4_vrmpyeh_s1, // llvm.hexagon.M4.vrmpyeh.s1
hexagon_M4_vrmpyoh_acc_s0, // llvm.hexagon.M4.vrmpyoh.acc.s0
hexagon_M4_vrmpyoh_acc_s1, // llvm.hexagon.M4.vrmpyoh.acc.s1
hexagon_M4_vrmpyoh_s0, // llvm.hexagon.M4.vrmpyoh.s0
hexagon_M4_vrmpyoh_s1, // llvm.hexagon.M4.vrmpyoh.s1
hexagon_M4_xor_and, // llvm.hexagon.M4.xor.and
hexagon_M4_xor_andn, // llvm.hexagon.M4.xor.andn
hexagon_M4_xor_or, // llvm.hexagon.M4.xor.or
hexagon_M4_xor_xacc, // llvm.hexagon.M4.xor.xacc
hexagon_M5_vdmacbsu, // llvm.hexagon.M5.vdmacbsu
hexagon_M5_vdmpybsu, // llvm.hexagon.M5.vdmpybsu
hexagon_M5_vmacbsu, // llvm.hexagon.M5.vmacbsu
hexagon_M5_vmacbuu, // llvm.hexagon.M5.vmacbuu
hexagon_M5_vmpybsu, // llvm.hexagon.M5.vmpybsu
hexagon_M5_vmpybuu, // llvm.hexagon.M5.vmpybuu
hexagon_M5_vrmacbsu, // llvm.hexagon.M5.vrmacbsu
hexagon_M5_vrmacbuu, // llvm.hexagon.M5.vrmacbuu
hexagon_M5_vrmpybsu, // llvm.hexagon.M5.vrmpybsu
hexagon_M5_vrmpybuu, // llvm.hexagon.M5.vrmpybuu
hexagon_M6_vabsdiffb, // llvm.hexagon.M6.vabsdiffb
hexagon_M6_vabsdiffub, // llvm.hexagon.M6.vabsdiffub
hexagon_S2_addasl_rrri, // llvm.hexagon.S2.addasl.rrri
hexagon_S2_asl_i_p, // llvm.hexagon.S2.asl.i.p
hexagon_S2_asl_i_p_acc, // llvm.hexagon.S2.asl.i.p.acc
hexagon_S2_asl_i_p_and, // llvm.hexagon.S2.asl.i.p.and
hexagon_S2_asl_i_p_nac, // llvm.hexagon.S2.asl.i.p.nac
hexagon_S2_asl_i_p_or, // llvm.hexagon.S2.asl.i.p.or
hexagon_S2_asl_i_p_xacc, // llvm.hexagon.S2.asl.i.p.xacc
hexagon_S2_asl_i_r, // llvm.hexagon.S2.asl.i.r
hexagon_S2_asl_i_r_acc, // llvm.hexagon.S2.asl.i.r.acc
hexagon_S2_asl_i_r_and, // llvm.hexagon.S2.asl.i.r.and
hexagon_S2_asl_i_r_nac, // llvm.hexagon.S2.asl.i.r.nac
hexagon_S2_asl_i_r_or, // llvm.hexagon.S2.asl.i.r.or
hexagon_S2_asl_i_r_sat, // llvm.hexagon.S2.asl.i.r.sat
hexagon_S2_asl_i_r_xacc, // llvm.hexagon.S2.asl.i.r.xacc
hexagon_S2_asl_i_vh, // llvm.hexagon.S2.asl.i.vh
hexagon_S2_asl_i_vw, // llvm.hexagon.S2.asl.i.vw
hexagon_S2_asl_r_p, // llvm.hexagon.S2.asl.r.p
hexagon_S2_asl_r_p_acc, // llvm.hexagon.S2.asl.r.p.acc
hexagon_S2_asl_r_p_and, // llvm.hexagon.S2.asl.r.p.and
hexagon_S2_asl_r_p_nac, // llvm.hexagon.S2.asl.r.p.nac
hexagon_S2_asl_r_p_or, // llvm.hexagon.S2.asl.r.p.or
hexagon_S2_asl_r_p_xor, // llvm.hexagon.S2.asl.r.p.xor
hexagon_S2_asl_r_r, // llvm.hexagon.S2.asl.r.r
hexagon_S2_asl_r_r_acc, // llvm.hexagon.S2.asl.r.r.acc
hexagon_S2_asl_r_r_and, // llvm.hexagon.S2.asl.r.r.and
hexagon_S2_asl_r_r_nac, // llvm.hexagon.S2.asl.r.r.nac
hexagon_S2_asl_r_r_or, // llvm.hexagon.S2.asl.r.r.or
hexagon_S2_asl_r_r_sat, // llvm.hexagon.S2.asl.r.r.sat
hexagon_S2_asl_r_vh, // llvm.hexagon.S2.asl.r.vh
hexagon_S2_asl_r_vw, // llvm.hexagon.S2.asl.r.vw
hexagon_S2_asr_i_p, // llvm.hexagon.S2.asr.i.p
hexagon_S2_asr_i_p_acc, // llvm.hexagon.S2.asr.i.p.acc
hexagon_S2_asr_i_p_and, // llvm.hexagon.S2.asr.i.p.and
hexagon_S2_asr_i_p_nac, // llvm.hexagon.S2.asr.i.p.nac
hexagon_S2_asr_i_p_or, // llvm.hexagon.S2.asr.i.p.or
hexagon_S2_asr_i_p_rnd, // llvm.hexagon.S2.asr.i.p.rnd
hexagon_S2_asr_i_p_rnd_goodsyntax, // llvm.hexagon.S2.asr.i.p.rnd.goodsyntax
hexagon_S2_asr_i_r, // llvm.hexagon.S2.asr.i.r
hexagon_S2_asr_i_r_acc, // llvm.hexagon.S2.asr.i.r.acc
hexagon_S2_asr_i_r_and, // llvm.hexagon.S2.asr.i.r.and
hexagon_S2_asr_i_r_nac, // llvm.hexagon.S2.asr.i.r.nac
hexagon_S2_asr_i_r_or, // llvm.hexagon.S2.asr.i.r.or
hexagon_S2_asr_i_r_rnd, // llvm.hexagon.S2.asr.i.r.rnd
hexagon_S2_asr_i_r_rnd_goodsyntax, // llvm.hexagon.S2.asr.i.r.rnd.goodsyntax
hexagon_S2_asr_i_svw_trun, // llvm.hexagon.S2.asr.i.svw.trun
hexagon_S2_asr_i_vh, // llvm.hexagon.S2.asr.i.vh
hexagon_S2_asr_i_vw, // llvm.hexagon.S2.asr.i.vw
hexagon_S2_asr_r_p, // llvm.hexagon.S2.asr.r.p
hexagon_S2_asr_r_p_acc, // llvm.hexagon.S2.asr.r.p.acc
hexagon_S2_asr_r_p_and, // llvm.hexagon.S2.asr.r.p.and
hexagon_S2_asr_r_p_nac, // llvm.hexagon.S2.asr.r.p.nac
hexagon_S2_asr_r_p_or, // llvm.hexagon.S2.asr.r.p.or
hexagon_S2_asr_r_p_xor, // llvm.hexagon.S2.asr.r.p.xor
hexagon_S2_asr_r_r, // llvm.hexagon.S2.asr.r.r
hexagon_S2_asr_r_r_acc, // llvm.hexagon.S2.asr.r.r.acc
hexagon_S2_asr_r_r_and, // llvm.hexagon.S2.asr.r.r.and
hexagon_S2_asr_r_r_nac, // llvm.hexagon.S2.asr.r.r.nac
hexagon_S2_asr_r_r_or, // llvm.hexagon.S2.asr.r.r.or
hexagon_S2_asr_r_r_sat, // llvm.hexagon.S2.asr.r.r.sat
hexagon_S2_asr_r_svw_trun, // llvm.hexagon.S2.asr.r.svw.trun
hexagon_S2_asr_r_vh, // llvm.hexagon.S2.asr.r.vh
hexagon_S2_asr_r_vw, // llvm.hexagon.S2.asr.r.vw
hexagon_S2_brev, // llvm.hexagon.S2.brev
hexagon_S2_brevp, // llvm.hexagon.S2.brevp
hexagon_S2_cl0, // llvm.hexagon.S2.cl0
hexagon_S2_cl0p, // llvm.hexagon.S2.cl0p
hexagon_S2_cl1, // llvm.hexagon.S2.cl1
hexagon_S2_cl1p, // llvm.hexagon.S2.cl1p
hexagon_S2_clb, // llvm.hexagon.S2.clb
hexagon_S2_clbnorm, // llvm.hexagon.S2.clbnorm
hexagon_S2_clbp, // llvm.hexagon.S2.clbp
hexagon_S2_clrbit_i, // llvm.hexagon.S2.clrbit.i
hexagon_S2_clrbit_r, // llvm.hexagon.S2.clrbit.r
hexagon_S2_ct0, // llvm.hexagon.S2.ct0
hexagon_S2_ct0p, // llvm.hexagon.S2.ct0p
hexagon_S2_ct1, // llvm.hexagon.S2.ct1
hexagon_S2_ct1p, // llvm.hexagon.S2.ct1p
hexagon_S2_deinterleave, // llvm.hexagon.S2.deinterleave
hexagon_S2_extractu, // llvm.hexagon.S2.extractu
hexagon_S2_extractu_rp, // llvm.hexagon.S2.extractu.rp
hexagon_S2_extractup, // llvm.hexagon.S2.extractup
hexagon_S2_extractup_rp, // llvm.hexagon.S2.extractup.rp
hexagon_S2_insert, // llvm.hexagon.S2.insert
hexagon_S2_insert_rp, // llvm.hexagon.S2.insert.rp
hexagon_S2_insertp, // llvm.hexagon.S2.insertp
hexagon_S2_insertp_rp, // llvm.hexagon.S2.insertp.rp
hexagon_S2_interleave, // llvm.hexagon.S2.interleave
hexagon_S2_lfsp, // llvm.hexagon.S2.lfsp
hexagon_S2_lsl_r_p, // llvm.hexagon.S2.lsl.r.p
hexagon_S2_lsl_r_p_acc, // llvm.hexagon.S2.lsl.r.p.acc
hexagon_S2_lsl_r_p_and, // llvm.hexagon.S2.lsl.r.p.and
hexagon_S2_lsl_r_p_nac, // llvm.hexagon.S2.lsl.r.p.nac
hexagon_S2_lsl_r_p_or, // llvm.hexagon.S2.lsl.r.p.or
hexagon_S2_lsl_r_p_xor, // llvm.hexagon.S2.lsl.r.p.xor
hexagon_S2_lsl_r_r, // llvm.hexagon.S2.lsl.r.r
hexagon_S2_lsl_r_r_acc, // llvm.hexagon.S2.lsl.r.r.acc
hexagon_S2_lsl_r_r_and, // llvm.hexagon.S2.lsl.r.r.and
hexagon_S2_lsl_r_r_nac, // llvm.hexagon.S2.lsl.r.r.nac
hexagon_S2_lsl_r_r_or, // llvm.hexagon.S2.lsl.r.r.or
hexagon_S2_lsl_r_vh, // llvm.hexagon.S2.lsl.r.vh
hexagon_S2_lsl_r_vw, // llvm.hexagon.S2.lsl.r.vw
hexagon_S2_lsr_i_p, // llvm.hexagon.S2.lsr.i.p
hexagon_S2_lsr_i_p_acc, // llvm.hexagon.S2.lsr.i.p.acc
hexagon_S2_lsr_i_p_and, // llvm.hexagon.S2.lsr.i.p.and
hexagon_S2_lsr_i_p_nac, // llvm.hexagon.S2.lsr.i.p.nac
hexagon_S2_lsr_i_p_or, // llvm.hexagon.S2.lsr.i.p.or
hexagon_S2_lsr_i_p_xacc, // llvm.hexagon.S2.lsr.i.p.xacc
hexagon_S2_lsr_i_r, // llvm.hexagon.S2.lsr.i.r
hexagon_S2_lsr_i_r_acc, // llvm.hexagon.S2.lsr.i.r.acc
hexagon_S2_lsr_i_r_and, // llvm.hexagon.S2.lsr.i.r.and
hexagon_S2_lsr_i_r_nac, // llvm.hexagon.S2.lsr.i.r.nac
hexagon_S2_lsr_i_r_or, // llvm.hexagon.S2.lsr.i.r.or
hexagon_S2_lsr_i_r_xacc, // llvm.hexagon.S2.lsr.i.r.xacc
hexagon_S2_lsr_i_vh, // llvm.hexagon.S2.lsr.i.vh
hexagon_S2_lsr_i_vw, // llvm.hexagon.S2.lsr.i.vw
hexagon_S2_lsr_r_p, // llvm.hexagon.S2.lsr.r.p
hexagon_S2_lsr_r_p_acc, // llvm.hexagon.S2.lsr.r.p.acc
hexagon_S2_lsr_r_p_and, // llvm.hexagon.S2.lsr.r.p.and
hexagon_S2_lsr_r_p_nac, // llvm.hexagon.S2.lsr.r.p.nac
hexagon_S2_lsr_r_p_or, // llvm.hexagon.S2.lsr.r.p.or
hexagon_S2_lsr_r_p_xor, // llvm.hexagon.S2.lsr.r.p.xor
hexagon_S2_lsr_r_r, // llvm.hexagon.S2.lsr.r.r
hexagon_S2_lsr_r_r_acc, // llvm.hexagon.S2.lsr.r.r.acc
hexagon_S2_lsr_r_r_and, // llvm.hexagon.S2.lsr.r.r.and
hexagon_S2_lsr_r_r_nac, // llvm.hexagon.S2.lsr.r.r.nac
hexagon_S2_lsr_r_r_or, // llvm.hexagon.S2.lsr.r.r.or
hexagon_S2_lsr_r_vh, // llvm.hexagon.S2.lsr.r.vh
hexagon_S2_lsr_r_vw, // llvm.hexagon.S2.lsr.r.vw
hexagon_S2_mask, // llvm.hexagon.S2.mask
hexagon_S2_packhl, // llvm.hexagon.S2.packhl
hexagon_S2_parityp, // llvm.hexagon.S2.parityp
hexagon_S2_setbit_i, // llvm.hexagon.S2.setbit.i
hexagon_S2_setbit_r, // llvm.hexagon.S2.setbit.r
hexagon_S2_shuffeb, // llvm.hexagon.S2.shuffeb
hexagon_S2_shuffeh, // llvm.hexagon.S2.shuffeh
hexagon_S2_shuffob, // llvm.hexagon.S2.shuffob
hexagon_S2_shuffoh, // llvm.hexagon.S2.shuffoh
hexagon_S2_storerb_pbr, // llvm.hexagon.S2.storerb.pbr
hexagon_S2_storerb_pci, // llvm.hexagon.S2.storerb.pci
hexagon_S2_storerb_pcr, // llvm.hexagon.S2.storerb.pcr
hexagon_S2_storerd_pbr, // llvm.hexagon.S2.storerd.pbr
hexagon_S2_storerd_pci, // llvm.hexagon.S2.storerd.pci
hexagon_S2_storerd_pcr, // llvm.hexagon.S2.storerd.pcr
hexagon_S2_storerf_pbr, // llvm.hexagon.S2.storerf.pbr
hexagon_S2_storerf_pci, // llvm.hexagon.S2.storerf.pci
hexagon_S2_storerf_pcr, // llvm.hexagon.S2.storerf.pcr
hexagon_S2_storerh_pbr, // llvm.hexagon.S2.storerh.pbr
hexagon_S2_storerh_pci, // llvm.hexagon.S2.storerh.pci
hexagon_S2_storerh_pcr, // llvm.hexagon.S2.storerh.pcr
hexagon_S2_storeri_pbr, // llvm.hexagon.S2.storeri.pbr
hexagon_S2_storeri_pci, // llvm.hexagon.S2.storeri.pci
hexagon_S2_storeri_pcr, // llvm.hexagon.S2.storeri.pcr
hexagon_S2_storew_locked, // llvm.hexagon.S2.storew.locked
hexagon_S2_svsathb, // llvm.hexagon.S2.svsathb
hexagon_S2_svsathub, // llvm.hexagon.S2.svsathub
hexagon_S2_tableidxb_goodsyntax, // llvm.hexagon.S2.tableidxb.goodsyntax
hexagon_S2_tableidxd_goodsyntax, // llvm.hexagon.S2.tableidxd.goodsyntax
hexagon_S2_tableidxh_goodsyntax, // llvm.hexagon.S2.tableidxh.goodsyntax
hexagon_S2_tableidxw_goodsyntax, // llvm.hexagon.S2.tableidxw.goodsyntax
hexagon_S2_togglebit_i, // llvm.hexagon.S2.togglebit.i
hexagon_S2_togglebit_r, // llvm.hexagon.S2.togglebit.r
hexagon_S2_tstbit_i, // llvm.hexagon.S2.tstbit.i
hexagon_S2_tstbit_r, // llvm.hexagon.S2.tstbit.r
hexagon_S2_valignib, // llvm.hexagon.S2.valignib
hexagon_S2_valignrb, // llvm.hexagon.S2.valignrb
hexagon_S2_vcnegh, // llvm.hexagon.S2.vcnegh
hexagon_S2_vcrotate, // llvm.hexagon.S2.vcrotate
hexagon_S2_vrcnegh, // llvm.hexagon.S2.vrcnegh
hexagon_S2_vrndpackwh, // llvm.hexagon.S2.vrndpackwh
hexagon_S2_vrndpackwhs, // llvm.hexagon.S2.vrndpackwhs
hexagon_S2_vsathb, // llvm.hexagon.S2.vsathb
hexagon_S2_vsathb_nopack, // llvm.hexagon.S2.vsathb.nopack
hexagon_S2_vsathub, // llvm.hexagon.S2.vsathub
hexagon_S2_vsathub_nopack, // llvm.hexagon.S2.vsathub.nopack
hexagon_S2_vsatwh, // llvm.hexagon.S2.vsatwh
hexagon_S2_vsatwh_nopack, // llvm.hexagon.S2.vsatwh.nopack
hexagon_S2_vsatwuh, // llvm.hexagon.S2.vsatwuh
hexagon_S2_vsatwuh_nopack, // llvm.hexagon.S2.vsatwuh.nopack
hexagon_S2_vsplatrb, // llvm.hexagon.S2.vsplatrb
hexagon_S2_vsplatrh, // llvm.hexagon.S2.vsplatrh
hexagon_S2_vspliceib, // llvm.hexagon.S2.vspliceib
hexagon_S2_vsplicerb, // llvm.hexagon.S2.vsplicerb
hexagon_S2_vsxtbh, // llvm.hexagon.S2.vsxtbh
hexagon_S2_vsxthw, // llvm.hexagon.S2.vsxthw
hexagon_S2_vtrunehb, // llvm.hexagon.S2.vtrunehb
hexagon_S2_vtrunewh, // llvm.hexagon.S2.vtrunewh
hexagon_S2_vtrunohb, // llvm.hexagon.S2.vtrunohb
hexagon_S2_vtrunowh, // llvm.hexagon.S2.vtrunowh
hexagon_S2_vzxtbh, // llvm.hexagon.S2.vzxtbh
hexagon_S2_vzxthw, // llvm.hexagon.S2.vzxthw
hexagon_S4_addaddi, // llvm.hexagon.S4.addaddi
hexagon_S4_addi_asl_ri, // llvm.hexagon.S4.addi.asl.ri
hexagon_S4_addi_lsr_ri, // llvm.hexagon.S4.addi.lsr.ri
hexagon_S4_andi_asl_ri, // llvm.hexagon.S4.andi.asl.ri
hexagon_S4_andi_lsr_ri, // llvm.hexagon.S4.andi.lsr.ri
hexagon_S4_clbaddi, // llvm.hexagon.S4.clbaddi
hexagon_S4_clbpaddi, // llvm.hexagon.S4.clbpaddi
hexagon_S4_clbpnorm, // llvm.hexagon.S4.clbpnorm
hexagon_S4_extract, // llvm.hexagon.S4.extract
hexagon_S4_extract_rp, // llvm.hexagon.S4.extract.rp
hexagon_S4_extractp, // llvm.hexagon.S4.extractp
hexagon_S4_extractp_rp, // llvm.hexagon.S4.extractp.rp
hexagon_S4_lsli, // llvm.hexagon.S4.lsli
hexagon_S4_ntstbit_i, // llvm.hexagon.S4.ntstbit.i
hexagon_S4_ntstbit_r, // llvm.hexagon.S4.ntstbit.r
hexagon_S4_or_andi, // llvm.hexagon.S4.or.andi
hexagon_S4_or_andix, // llvm.hexagon.S4.or.andix
hexagon_S4_or_ori, // llvm.hexagon.S4.or.ori
hexagon_S4_ori_asl_ri, // llvm.hexagon.S4.ori.asl.ri
hexagon_S4_ori_lsr_ri, // llvm.hexagon.S4.ori.lsr.ri
hexagon_S4_parity, // llvm.hexagon.S4.parity
hexagon_S4_stored_locked, // llvm.hexagon.S4.stored.locked
hexagon_S4_subaddi, // llvm.hexagon.S4.subaddi
hexagon_S4_subi_asl_ri, // llvm.hexagon.S4.subi.asl.ri
hexagon_S4_subi_lsr_ri, // llvm.hexagon.S4.subi.lsr.ri
hexagon_S4_vrcrotate, // llvm.hexagon.S4.vrcrotate
hexagon_S4_vrcrotate_acc, // llvm.hexagon.S4.vrcrotate.acc
hexagon_S4_vxaddsubh, // llvm.hexagon.S4.vxaddsubh
hexagon_S4_vxaddsubhr, // llvm.hexagon.S4.vxaddsubhr
hexagon_S4_vxaddsubw, // llvm.hexagon.S4.vxaddsubw
hexagon_S4_vxsubaddh, // llvm.hexagon.S4.vxsubaddh
hexagon_S4_vxsubaddhr, // llvm.hexagon.S4.vxsubaddhr
hexagon_S4_vxsubaddw, // llvm.hexagon.S4.vxsubaddw
hexagon_S5_asrhub_rnd_sat_goodsyntax, // llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax
hexagon_S5_asrhub_sat, // llvm.hexagon.S5.asrhub.sat
hexagon_S5_popcountp, // llvm.hexagon.S5.popcountp
hexagon_S5_vasrhrnd_goodsyntax, // llvm.hexagon.S5.vasrhrnd.goodsyntax
hexagon_S6_rol_i_p, // llvm.hexagon.S6.rol.i.p
hexagon_S6_rol_i_p_acc, // llvm.hexagon.S6.rol.i.p.acc
hexagon_S6_rol_i_p_and, // llvm.hexagon.S6.rol.i.p.and
hexagon_S6_rol_i_p_nac, // llvm.hexagon.S6.rol.i.p.nac
hexagon_S6_rol_i_p_or, // llvm.hexagon.S6.rol.i.p.or
hexagon_S6_rol_i_p_xacc, // llvm.hexagon.S6.rol.i.p.xacc
hexagon_S6_rol_i_r, // llvm.hexagon.S6.rol.i.r
hexagon_S6_rol_i_r_acc, // llvm.hexagon.S6.rol.i.r.acc
hexagon_S6_rol_i_r_and, // llvm.hexagon.S6.rol.i.r.and
hexagon_S6_rol_i_r_nac, // llvm.hexagon.S6.rol.i.r.nac
hexagon_S6_rol_i_r_or, // llvm.hexagon.S6.rol.i.r.or
hexagon_S6_rol_i_r_xacc, // llvm.hexagon.S6.rol.i.r.xacc
hexagon_S6_vsplatrbp, // llvm.hexagon.S6.vsplatrbp
hexagon_S6_vtrunehb_ppp, // llvm.hexagon.S6.vtrunehb.ppp
hexagon_S6_vtrunohb_ppp, // llvm.hexagon.S6.vtrunohb.ppp
hexagon_V6_extractw, // llvm.hexagon.V6.extractw
hexagon_V6_extractw_128B, // llvm.hexagon.V6.extractw.128B
hexagon_V6_hi, // llvm.hexagon.V6.hi
hexagon_V6_hi_128B, // llvm.hexagon.V6.hi.128B
hexagon_V6_ld0, // llvm.hexagon.V6.ld0
hexagon_V6_ld0_128B, // llvm.hexagon.V6.ld0.128B
hexagon_V6_ldcnp0, // llvm.hexagon.V6.ldcnp0
hexagon_V6_ldcnp0_128B, // llvm.hexagon.V6.ldcnp0.128B
hexagon_V6_ldcnpnt0, // llvm.hexagon.V6.ldcnpnt0
hexagon_V6_ldcnpnt0_128B, // llvm.hexagon.V6.ldcnpnt0.128B
hexagon_V6_ldcp0, // llvm.hexagon.V6.ldcp0
hexagon_V6_ldcp0_128B, // llvm.hexagon.V6.ldcp0.128B
hexagon_V6_ldcpnt0, // llvm.hexagon.V6.ldcpnt0
hexagon_V6_ldcpnt0_128B, // llvm.hexagon.V6.ldcpnt0.128B
hexagon_V6_ldnp0, // llvm.hexagon.V6.ldnp0
hexagon_V6_ldnp0_128B, // llvm.hexagon.V6.ldnp0.128B
hexagon_V6_ldnpnt0, // llvm.hexagon.V6.ldnpnt0
hexagon_V6_ldnpnt0_128B, // llvm.hexagon.V6.ldnpnt0.128B
hexagon_V6_ldnt0, // llvm.hexagon.V6.ldnt0
hexagon_V6_ldnt0_128B, // llvm.hexagon.V6.ldnt0.128B
hexagon_V6_ldntnt0, // llvm.hexagon.V6.ldntnt0
hexagon_V6_ldp0, // llvm.hexagon.V6.ldp0
hexagon_V6_ldp0_128B, // llvm.hexagon.V6.ldp0.128B
hexagon_V6_ldpnt0, // llvm.hexagon.V6.ldpnt0
hexagon_V6_ldpnt0_128B, // llvm.hexagon.V6.ldpnt0.128B
hexagon_V6_ldtnp0, // llvm.hexagon.V6.ldtnp0
hexagon_V6_ldtnp0_128B, // llvm.hexagon.V6.ldtnp0.128B
hexagon_V6_ldtnpnt0, // llvm.hexagon.V6.ldtnpnt0
hexagon_V6_ldtnpnt0_128B, // llvm.hexagon.V6.ldtnpnt0.128B
hexagon_V6_ldtp0, // llvm.hexagon.V6.ldtp0
hexagon_V6_ldtp0_128B, // llvm.hexagon.V6.ldtp0.128B
hexagon_V6_ldtpnt0, // llvm.hexagon.V6.ldtpnt0
hexagon_V6_ldtpnt0_128B, // llvm.hexagon.V6.ldtpnt0.128B
hexagon_V6_ldu0, // llvm.hexagon.V6.ldu0
hexagon_V6_ldu0_128B, // llvm.hexagon.V6.ldu0.128B
hexagon_V6_lo, // llvm.hexagon.V6.lo
hexagon_V6_lo_128B, // llvm.hexagon.V6.lo.128B
hexagon_V6_lvsplatb, // llvm.hexagon.V6.lvsplatb
hexagon_V6_lvsplatb_128B, // llvm.hexagon.V6.lvsplatb.128B
hexagon_V6_lvsplath, // llvm.hexagon.V6.lvsplath
hexagon_V6_lvsplath_128B, // llvm.hexagon.V6.lvsplath.128B
hexagon_V6_lvsplatw, // llvm.hexagon.V6.lvsplatw
hexagon_V6_lvsplatw_128B, // llvm.hexagon.V6.lvsplatw.128B
hexagon_V6_pred_and, // llvm.hexagon.V6.pred.and
hexagon_V6_pred_and_128B, // llvm.hexagon.V6.pred.and.128B
hexagon_V6_pred_and_n, // llvm.hexagon.V6.pred.and.n
hexagon_V6_pred_and_n_128B, // llvm.hexagon.V6.pred.and.n.128B
hexagon_V6_pred_not, // llvm.hexagon.V6.pred.not
hexagon_V6_pred_not_128B, // llvm.hexagon.V6.pred.not.128B
hexagon_V6_pred_or, // llvm.hexagon.V6.pred.or
hexagon_V6_pred_or_128B, // llvm.hexagon.V6.pred.or.128B
hexagon_V6_pred_or_n, // llvm.hexagon.V6.pred.or.n
hexagon_V6_pred_or_n_128B, // llvm.hexagon.V6.pred.or.n.128B
hexagon_V6_pred_scalar2, // llvm.hexagon.V6.pred.scalar2
hexagon_V6_pred_scalar2_128B, // llvm.hexagon.V6.pred.scalar2.128B
hexagon_V6_pred_scalar2v2, // llvm.hexagon.V6.pred.scalar2v2
hexagon_V6_pred_scalar2v2_128B, // llvm.hexagon.V6.pred.scalar2v2.128B
hexagon_V6_pred_xor, // llvm.hexagon.V6.pred.xor
hexagon_V6_pred_xor_128B, // llvm.hexagon.V6.pred.xor.128B
hexagon_V6_shuffeqh, // llvm.hexagon.V6.shuffeqh
hexagon_V6_shuffeqh_128B, // llvm.hexagon.V6.shuffeqh.128B
hexagon_V6_shuffeqw, // llvm.hexagon.V6.shuffeqw
hexagon_V6_shuffeqw_128B, // llvm.hexagon.V6.shuffeqw.128B
hexagon_V6_vS32b_nqpred_ai, // llvm.hexagon.V6.vS32b.nqpred.ai
hexagon_V6_vS32b_nqpred_ai_128B, // llvm.hexagon.V6.vS32b.nqpred.ai.128B
hexagon_V6_vS32b_nt_nqpred_ai, // llvm.hexagon.V6.vS32b.nt.nqpred.ai
hexagon_V6_vS32b_nt_nqpred_ai_128B, // llvm.hexagon.V6.vS32b.nt.nqpred.ai.128B
hexagon_V6_vS32b_nt_qpred_ai, // llvm.hexagon.V6.vS32b.nt.qpred.ai
hexagon_V6_vS32b_nt_qpred_ai_128B, // llvm.hexagon.V6.vS32b.nt.qpred.ai.128B
hexagon_V6_vS32b_qpred_ai, // llvm.hexagon.V6.vS32b.qpred.ai
hexagon_V6_vS32b_qpred_ai_128B, // llvm.hexagon.V6.vS32b.qpred.ai.128B
hexagon_V6_vabsb, // llvm.hexagon.V6.vabsb
hexagon_V6_vabsb_128B, // llvm.hexagon.V6.vabsb.128B
hexagon_V6_vabsb_sat, // llvm.hexagon.V6.vabsb.sat
hexagon_V6_vabsb_sat_128B, // llvm.hexagon.V6.vabsb.sat.128B
hexagon_V6_vabsdiffh, // llvm.hexagon.V6.vabsdiffh
hexagon_V6_vabsdiffh_128B, // llvm.hexagon.V6.vabsdiffh.128B
hexagon_V6_vabsdiffub, // llvm.hexagon.V6.vabsdiffub
hexagon_V6_vabsdiffub_128B, // llvm.hexagon.V6.vabsdiffub.128B
hexagon_V6_vabsdiffuh, // llvm.hexagon.V6.vabsdiffuh
hexagon_V6_vabsdiffuh_128B, // llvm.hexagon.V6.vabsdiffuh.128B
hexagon_V6_vabsdiffw, // llvm.hexagon.V6.vabsdiffw
hexagon_V6_vabsdiffw_128B, // llvm.hexagon.V6.vabsdiffw.128B
hexagon_V6_vabsh, // llvm.hexagon.V6.vabsh
hexagon_V6_vabsh_128B, // llvm.hexagon.V6.vabsh.128B
hexagon_V6_vabsh_sat, // llvm.hexagon.V6.vabsh.sat
hexagon_V6_vabsh_sat_128B, // llvm.hexagon.V6.vabsh.sat.128B
hexagon_V6_vabsw, // llvm.hexagon.V6.vabsw
hexagon_V6_vabsw_128B, // llvm.hexagon.V6.vabsw.128B
hexagon_V6_vabsw_sat, // llvm.hexagon.V6.vabsw.sat
hexagon_V6_vabsw_sat_128B, // llvm.hexagon.V6.vabsw.sat.128B
hexagon_V6_vaddb, // llvm.hexagon.V6.vaddb
hexagon_V6_vaddb_128B, // llvm.hexagon.V6.vaddb.128B
hexagon_V6_vaddb_dv, // llvm.hexagon.V6.vaddb.dv
hexagon_V6_vaddb_dv_128B, // llvm.hexagon.V6.vaddb.dv.128B
hexagon_V6_vaddbnq, // llvm.hexagon.V6.vaddbnq
hexagon_V6_vaddbnq_128B, // llvm.hexagon.V6.vaddbnq.128B
hexagon_V6_vaddbq, // llvm.hexagon.V6.vaddbq
hexagon_V6_vaddbq_128B, // llvm.hexagon.V6.vaddbq.128B
hexagon_V6_vaddbsat, // llvm.hexagon.V6.vaddbsat
hexagon_V6_vaddbsat_128B, // llvm.hexagon.V6.vaddbsat.128B
hexagon_V6_vaddbsat_dv, // llvm.hexagon.V6.vaddbsat.dv
hexagon_V6_vaddbsat_dv_128B, // llvm.hexagon.V6.vaddbsat.dv.128B
hexagon_V6_vaddcarry, // llvm.hexagon.V6.vaddcarry
hexagon_V6_vaddcarry_128B, // llvm.hexagon.V6.vaddcarry.128B
hexagon_V6_vaddcarrysat, // llvm.hexagon.V6.vaddcarrysat
hexagon_V6_vaddcarrysat_128B, // llvm.hexagon.V6.vaddcarrysat.128B
hexagon_V6_vaddclbh, // llvm.hexagon.V6.vaddclbh
hexagon_V6_vaddclbh_128B, // llvm.hexagon.V6.vaddclbh.128B
hexagon_V6_vaddclbw, // llvm.hexagon.V6.vaddclbw
hexagon_V6_vaddclbw_128B, // llvm.hexagon.V6.vaddclbw.128B
hexagon_V6_vaddh, // llvm.hexagon.V6.vaddh
hexagon_V6_vaddh_128B, // llvm.hexagon.V6.vaddh.128B
hexagon_V6_vaddh_dv, // llvm.hexagon.V6.vaddh.dv
hexagon_V6_vaddh_dv_128B, // llvm.hexagon.V6.vaddh.dv.128B
hexagon_V6_vaddhnq, // llvm.hexagon.V6.vaddhnq
hexagon_V6_vaddhnq_128B, // llvm.hexagon.V6.vaddhnq.128B
hexagon_V6_vaddhq, // llvm.hexagon.V6.vaddhq
hexagon_V6_vaddhq_128B, // llvm.hexagon.V6.vaddhq.128B
hexagon_V6_vaddhsat, // llvm.hexagon.V6.vaddhsat
hexagon_V6_vaddhsat_128B, // llvm.hexagon.V6.vaddhsat.128B
hexagon_V6_vaddhsat_dv, // llvm.hexagon.V6.vaddhsat.dv
hexagon_V6_vaddhsat_dv_128B, // llvm.hexagon.V6.vaddhsat.dv.128B
hexagon_V6_vaddhw, // llvm.hexagon.V6.vaddhw
hexagon_V6_vaddhw_128B, // llvm.hexagon.V6.vaddhw.128B
hexagon_V6_vaddhw_acc, // llvm.hexagon.V6.vaddhw.acc
hexagon_V6_vaddhw_acc_128B, // llvm.hexagon.V6.vaddhw.acc.128B
hexagon_V6_vaddubh, // llvm.hexagon.V6.vaddubh
hexagon_V6_vaddubh_128B, // llvm.hexagon.V6.vaddubh.128B
hexagon_V6_vaddubh_acc, // llvm.hexagon.V6.vaddubh.acc
hexagon_V6_vaddubh_acc_128B, // llvm.hexagon.V6.vaddubh.acc.128B
hexagon_V6_vaddubsat, // llvm.hexagon.V6.vaddubsat
hexagon_V6_vaddubsat_128B, // llvm.hexagon.V6.vaddubsat.128B
hexagon_V6_vaddubsat_dv, // llvm.hexagon.V6.vaddubsat.dv
hexagon_V6_vaddubsat_dv_128B, // llvm.hexagon.V6.vaddubsat.dv.128B
hexagon_V6_vaddububb_sat, // llvm.hexagon.V6.vaddububb.sat
hexagon_V6_vaddububb_sat_128B, // llvm.hexagon.V6.vaddububb.sat.128B
hexagon_V6_vadduhsat, // llvm.hexagon.V6.vadduhsat
hexagon_V6_vadduhsat_128B, // llvm.hexagon.V6.vadduhsat.128B
hexagon_V6_vadduhsat_dv, // llvm.hexagon.V6.vadduhsat.dv
hexagon_V6_vadduhsat_dv_128B, // llvm.hexagon.V6.vadduhsat.dv.128B
hexagon_V6_vadduhw, // llvm.hexagon.V6.vadduhw
hexagon_V6_vadduhw_128B, // llvm.hexagon.V6.vadduhw.128B
hexagon_V6_vadduhw_acc, // llvm.hexagon.V6.vadduhw.acc
hexagon_V6_vadduhw_acc_128B, // llvm.hexagon.V6.vadduhw.acc.128B
hexagon_V6_vadduwsat, // llvm.hexagon.V6.vadduwsat
hexagon_V6_vadduwsat_128B, // llvm.hexagon.V6.vadduwsat.128B
hexagon_V6_vadduwsat_dv, // llvm.hexagon.V6.vadduwsat.dv
hexagon_V6_vadduwsat_dv_128B, // llvm.hexagon.V6.vadduwsat.dv.128B
hexagon_V6_vaddw, // llvm.hexagon.V6.vaddw
hexagon_V6_vaddw_128B, // llvm.hexagon.V6.vaddw.128B
hexagon_V6_vaddw_dv, // llvm.hexagon.V6.vaddw.dv
hexagon_V6_vaddw_dv_128B, // llvm.hexagon.V6.vaddw.dv.128B
hexagon_V6_vaddwnq, // llvm.hexagon.V6.vaddwnq
hexagon_V6_vaddwnq_128B, // llvm.hexagon.V6.vaddwnq.128B
hexagon_V6_vaddwq, // llvm.hexagon.V6.vaddwq
hexagon_V6_vaddwq_128B, // llvm.hexagon.V6.vaddwq.128B
hexagon_V6_vaddwsat, // llvm.hexagon.V6.vaddwsat
hexagon_V6_vaddwsat_128B, // llvm.hexagon.V6.vaddwsat.128B
hexagon_V6_vaddwsat_dv, // llvm.hexagon.V6.vaddwsat.dv
hexagon_V6_vaddwsat_dv_128B, // llvm.hexagon.V6.vaddwsat.dv.128B
hexagon_V6_valignb, // llvm.hexagon.V6.valignb
hexagon_V6_valignb_128B, // llvm.hexagon.V6.valignb.128B
hexagon_V6_valignbi, // llvm.hexagon.V6.valignbi
hexagon_V6_valignbi_128B, // llvm.hexagon.V6.valignbi.128B
hexagon_V6_vand, // llvm.hexagon.V6.vand
hexagon_V6_vand_128B, // llvm.hexagon.V6.vand.128B
hexagon_V6_vandnqrt, // llvm.hexagon.V6.vandnqrt
hexagon_V6_vandnqrt_128B, // llvm.hexagon.V6.vandnqrt.128B
hexagon_V6_vandnqrt_acc, // llvm.hexagon.V6.vandnqrt.acc
hexagon_V6_vandnqrt_acc_128B, // llvm.hexagon.V6.vandnqrt.acc.128B
hexagon_V6_vandqrt, // llvm.hexagon.V6.vandqrt
hexagon_V6_vandqrt_128B, // llvm.hexagon.V6.vandqrt.128B
hexagon_V6_vandqrt_acc, // llvm.hexagon.V6.vandqrt.acc
hexagon_V6_vandqrt_acc_128B, // llvm.hexagon.V6.vandqrt.acc.128B
hexagon_V6_vandvnqv, // llvm.hexagon.V6.vandvnqv
hexagon_V6_vandvnqv_128B, // llvm.hexagon.V6.vandvnqv.128B
hexagon_V6_vandvqv, // llvm.hexagon.V6.vandvqv
hexagon_V6_vandvqv_128B, // llvm.hexagon.V6.vandvqv.128B
hexagon_V6_vandvrt, // llvm.hexagon.V6.vandvrt
hexagon_V6_vandvrt_128B, // llvm.hexagon.V6.vandvrt.128B
hexagon_V6_vandvrt_acc, // llvm.hexagon.V6.vandvrt.acc
hexagon_V6_vandvrt_acc_128B, // llvm.hexagon.V6.vandvrt.acc.128B
hexagon_V6_vaslh, // llvm.hexagon.V6.vaslh
hexagon_V6_vaslh_128B, // llvm.hexagon.V6.vaslh.128B
hexagon_V6_vaslh_acc, // llvm.hexagon.V6.vaslh.acc
hexagon_V6_vaslh_acc_128B, // llvm.hexagon.V6.vaslh.acc.128B
hexagon_V6_vaslhv, // llvm.hexagon.V6.vaslhv
hexagon_V6_vaslhv_128B, // llvm.hexagon.V6.vaslhv.128B
hexagon_V6_vaslw, // llvm.hexagon.V6.vaslw
hexagon_V6_vaslw_128B, // llvm.hexagon.V6.vaslw.128B
hexagon_V6_vaslw_acc, // llvm.hexagon.V6.vaslw.acc
hexagon_V6_vaslw_acc_128B, // llvm.hexagon.V6.vaslw.acc.128B
hexagon_V6_vaslwv, // llvm.hexagon.V6.vaslwv
hexagon_V6_vaslwv_128B, // llvm.hexagon.V6.vaslwv.128B
hexagon_V6_vasr_into, // llvm.hexagon.V6.vasr.into
hexagon_V6_vasr_into_128B, // llvm.hexagon.V6.vasr.into.128B
hexagon_V6_vasrh, // llvm.hexagon.V6.vasrh
hexagon_V6_vasrh_128B, // llvm.hexagon.V6.vasrh.128B
hexagon_V6_vasrh_acc, // llvm.hexagon.V6.vasrh.acc
hexagon_V6_vasrh_acc_128B, // llvm.hexagon.V6.vasrh.acc.128B
hexagon_V6_vasrhbrndsat, // llvm.hexagon.V6.vasrhbrndsat
hexagon_V6_vasrhbrndsat_128B, // llvm.hexagon.V6.vasrhbrndsat.128B
hexagon_V6_vasrhbsat, // llvm.hexagon.V6.vasrhbsat
hexagon_V6_vasrhbsat_128B, // llvm.hexagon.V6.vasrhbsat.128B
hexagon_V6_vasrhubrndsat, // llvm.hexagon.V6.vasrhubrndsat
hexagon_V6_vasrhubrndsat_128B, // llvm.hexagon.V6.vasrhubrndsat.128B
hexagon_V6_vasrhubsat, // llvm.hexagon.V6.vasrhubsat
hexagon_V6_vasrhubsat_128B, // llvm.hexagon.V6.vasrhubsat.128B
hexagon_V6_vasrhv, // llvm.hexagon.V6.vasrhv
hexagon_V6_vasrhv_128B, // llvm.hexagon.V6.vasrhv.128B
hexagon_V6_vasruhubrndsat, // llvm.hexagon.V6.vasruhubrndsat
hexagon_V6_vasruhubrndsat_128B, // llvm.hexagon.V6.vasruhubrndsat.128B
hexagon_V6_vasruhubsat, // llvm.hexagon.V6.vasruhubsat
hexagon_V6_vasruhubsat_128B, // llvm.hexagon.V6.vasruhubsat.128B
hexagon_V6_vasruwuhrndsat, // llvm.hexagon.V6.vasruwuhrndsat
hexagon_V6_vasruwuhrndsat_128B, // llvm.hexagon.V6.vasruwuhrndsat.128B
hexagon_V6_vasruwuhsat, // llvm.hexagon.V6.vasruwuhsat
hexagon_V6_vasruwuhsat_128B, // llvm.hexagon.V6.vasruwuhsat.128B
hexagon_V6_vasrw, // llvm.hexagon.V6.vasrw
hexagon_V6_vasrw_128B, // llvm.hexagon.V6.vasrw.128B
hexagon_V6_vasrw_acc, // llvm.hexagon.V6.vasrw.acc
hexagon_V6_vasrw_acc_128B, // llvm.hexagon.V6.vasrw.acc.128B
hexagon_V6_vasrwh, // llvm.hexagon.V6.vasrwh
hexagon_V6_vasrwh_128B, // llvm.hexagon.V6.vasrwh.128B
hexagon_V6_vasrwhrndsat, // llvm.hexagon.V6.vasrwhrndsat
hexagon_V6_vasrwhrndsat_128B, // llvm.hexagon.V6.vasrwhrndsat.128B
hexagon_V6_vasrwhsat, // llvm.hexagon.V6.vasrwhsat
hexagon_V6_vasrwhsat_128B, // llvm.hexagon.V6.vasrwhsat.128B
hexagon_V6_vasrwuhrndsat, // llvm.hexagon.V6.vasrwuhrndsat
hexagon_V6_vasrwuhrndsat_128B, // llvm.hexagon.V6.vasrwuhrndsat.128B
hexagon_V6_vasrwuhsat, // llvm.hexagon.V6.vasrwuhsat
hexagon_V6_vasrwuhsat_128B, // llvm.hexagon.V6.vasrwuhsat.128B
hexagon_V6_vasrwv, // llvm.hexagon.V6.vasrwv
hexagon_V6_vasrwv_128B, // llvm.hexagon.V6.vasrwv.128B
hexagon_V6_vassign, // llvm.hexagon.V6.vassign
hexagon_V6_vassign_128B, // llvm.hexagon.V6.vassign.128B
hexagon_V6_vassignp, // llvm.hexagon.V6.vassignp
hexagon_V6_vassignp_128B, // llvm.hexagon.V6.vassignp.128B
hexagon_V6_vavgb, // llvm.hexagon.V6.vavgb
hexagon_V6_vavgb_128B, // llvm.hexagon.V6.vavgb.128B
hexagon_V6_vavgbrnd, // llvm.hexagon.V6.vavgbrnd
hexagon_V6_vavgbrnd_128B, // llvm.hexagon.V6.vavgbrnd.128B
hexagon_V6_vavgh, // llvm.hexagon.V6.vavgh
hexagon_V6_vavgh_128B, // llvm.hexagon.V6.vavgh.128B
hexagon_V6_vavghrnd, // llvm.hexagon.V6.vavghrnd
hexagon_V6_vavghrnd_128B, // llvm.hexagon.V6.vavghrnd.128B
hexagon_V6_vavgub, // llvm.hexagon.V6.vavgub
hexagon_V6_vavgub_128B, // llvm.hexagon.V6.vavgub.128B
hexagon_V6_vavgubrnd, // llvm.hexagon.V6.vavgubrnd
hexagon_V6_vavgubrnd_128B, // llvm.hexagon.V6.vavgubrnd.128B
hexagon_V6_vavguh, // llvm.hexagon.V6.vavguh
hexagon_V6_vavguh_128B, // llvm.hexagon.V6.vavguh.128B
hexagon_V6_vavguhrnd, // llvm.hexagon.V6.vavguhrnd
hexagon_V6_vavguhrnd_128B, // llvm.hexagon.V6.vavguhrnd.128B
hexagon_V6_vavguw, // llvm.hexagon.V6.vavguw
hexagon_V6_vavguw_128B, // llvm.hexagon.V6.vavguw.128B
hexagon_V6_vavguwrnd, // llvm.hexagon.V6.vavguwrnd
hexagon_V6_vavguwrnd_128B, // llvm.hexagon.V6.vavguwrnd.128B
hexagon_V6_vavgw, // llvm.hexagon.V6.vavgw
hexagon_V6_vavgw_128B, // llvm.hexagon.V6.vavgw.128B
hexagon_V6_vavgwrnd, // llvm.hexagon.V6.vavgwrnd
hexagon_V6_vavgwrnd_128B, // llvm.hexagon.V6.vavgwrnd.128B
hexagon_V6_vcl0h, // llvm.hexagon.V6.vcl0h
hexagon_V6_vcl0h_128B, // llvm.hexagon.V6.vcl0h.128B
hexagon_V6_vcl0w, // llvm.hexagon.V6.vcl0w
hexagon_V6_vcl0w_128B, // llvm.hexagon.V6.vcl0w.128B
hexagon_V6_vcombine, // llvm.hexagon.V6.vcombine
hexagon_V6_vcombine_128B, // llvm.hexagon.V6.vcombine.128B
hexagon_V6_vd0, // llvm.hexagon.V6.vd0
hexagon_V6_vd0_128B, // llvm.hexagon.V6.vd0.128B
hexagon_V6_vdd0, // llvm.hexagon.V6.vdd0
hexagon_V6_vdd0_128B, // llvm.hexagon.V6.vdd0.128B
hexagon_V6_vdealb, // llvm.hexagon.V6.vdealb
hexagon_V6_vdealb_128B, // llvm.hexagon.V6.vdealb.128B
hexagon_V6_vdealb4w, // llvm.hexagon.V6.vdealb4w
hexagon_V6_vdealb4w_128B, // llvm.hexagon.V6.vdealb4w.128B
hexagon_V6_vdealh, // llvm.hexagon.V6.vdealh
hexagon_V6_vdealh_128B, // llvm.hexagon.V6.vdealh.128B
hexagon_V6_vdealvdd, // llvm.hexagon.V6.vdealvdd
hexagon_V6_vdealvdd_128B, // llvm.hexagon.V6.vdealvdd.128B
hexagon_V6_vdelta, // llvm.hexagon.V6.vdelta
hexagon_V6_vdelta_128B, // llvm.hexagon.V6.vdelta.128B
hexagon_V6_vdmpybus, // llvm.hexagon.V6.vdmpybus
hexagon_V6_vdmpybus_128B, // llvm.hexagon.V6.vdmpybus.128B
hexagon_V6_vdmpybus_acc, // llvm.hexagon.V6.vdmpybus.acc
hexagon_V6_vdmpybus_acc_128B, // llvm.hexagon.V6.vdmpybus.acc.128B
hexagon_V6_vdmpybus_dv, // llvm.hexagon.V6.vdmpybus.dv
hexagon_V6_vdmpybus_dv_128B, // llvm.hexagon.V6.vdmpybus.dv.128B
hexagon_V6_vdmpybus_dv_acc, // llvm.hexagon.V6.vdmpybus.dv.acc
hexagon_V6_vdmpybus_dv_acc_128B, // llvm.hexagon.V6.vdmpybus.dv.acc.128B
hexagon_V6_vdmpyhb, // llvm.hexagon.V6.vdmpyhb
hexagon_V6_vdmpyhb_128B, // llvm.hexagon.V6.vdmpyhb.128B
hexagon_V6_vdmpyhb_acc, // llvm.hexagon.V6.vdmpyhb.acc
hexagon_V6_vdmpyhb_acc_128B, // llvm.hexagon.V6.vdmpyhb.acc.128B
hexagon_V6_vdmpyhb_dv, // llvm.hexagon.V6.vdmpyhb.dv
hexagon_V6_vdmpyhb_dv_128B, // llvm.hexagon.V6.vdmpyhb.dv.128B
hexagon_V6_vdmpyhb_dv_acc, // llvm.hexagon.V6.vdmpyhb.dv.acc
hexagon_V6_vdmpyhb_dv_acc_128B, // llvm.hexagon.V6.vdmpyhb.dv.acc.128B
hexagon_V6_vdmpyhisat, // llvm.hexagon.V6.vdmpyhisat
hexagon_V6_vdmpyhisat_128B, // llvm.hexagon.V6.vdmpyhisat.128B
hexagon_V6_vdmpyhisat_acc, // llvm.hexagon.V6.vdmpyhisat.acc
hexagon_V6_vdmpyhisat_acc_128B, // llvm.hexagon.V6.vdmpyhisat.acc.128B
hexagon_V6_vdmpyhsat, // llvm.hexagon.V6.vdmpyhsat
hexagon_V6_vdmpyhsat_128B, // llvm.hexagon.V6.vdmpyhsat.128B
hexagon_V6_vdmpyhsat_acc, // llvm.hexagon.V6.vdmpyhsat.acc
hexagon_V6_vdmpyhsat_acc_128B, // llvm.hexagon.V6.vdmpyhsat.acc.128B
hexagon_V6_vdmpyhsuisat, // llvm.hexagon.V6.vdmpyhsuisat
hexagon_V6_vdmpyhsuisat_128B, // llvm.hexagon.V6.vdmpyhsuisat.128B
hexagon_V6_vdmpyhsuisat_acc, // llvm.hexagon.V6.vdmpyhsuisat.acc
hexagon_V6_vdmpyhsuisat_acc_128B, // llvm.hexagon.V6.vdmpyhsuisat.acc.128B
hexagon_V6_vdmpyhsusat, // llvm.hexagon.V6.vdmpyhsusat
hexagon_V6_vdmpyhsusat_128B, // llvm.hexagon.V6.vdmpyhsusat.128B
hexagon_V6_vdmpyhsusat_acc, // llvm.hexagon.V6.vdmpyhsusat.acc
hexagon_V6_vdmpyhsusat_acc_128B, // llvm.hexagon.V6.vdmpyhsusat.acc.128B
hexagon_V6_vdmpyhvsat, // llvm.hexagon.V6.vdmpyhvsat
hexagon_V6_vdmpyhvsat_128B, // llvm.hexagon.V6.vdmpyhvsat.128B
hexagon_V6_vdmpyhvsat_acc, // llvm.hexagon.V6.vdmpyhvsat.acc
hexagon_V6_vdmpyhvsat_acc_128B, // llvm.hexagon.V6.vdmpyhvsat.acc.128B
hexagon_V6_vdsaduh, // llvm.hexagon.V6.vdsaduh
hexagon_V6_vdsaduh_128B, // llvm.hexagon.V6.vdsaduh.128B
hexagon_V6_vdsaduh_acc, // llvm.hexagon.V6.vdsaduh.acc
hexagon_V6_vdsaduh_acc_128B, // llvm.hexagon.V6.vdsaduh.acc.128B
hexagon_V6_veqb, // llvm.hexagon.V6.veqb
hexagon_V6_veqb_128B, // llvm.hexagon.V6.veqb.128B
hexagon_V6_veqb_and, // llvm.hexagon.V6.veqb.and
hexagon_V6_veqb_and_128B, // llvm.hexagon.V6.veqb.and.128B
hexagon_V6_veqb_or, // llvm.hexagon.V6.veqb.or
hexagon_V6_veqb_or_128B, // llvm.hexagon.V6.veqb.or.128B
hexagon_V6_veqb_xor, // llvm.hexagon.V6.veqb.xor
hexagon_V6_veqb_xor_128B, // llvm.hexagon.V6.veqb.xor.128B
hexagon_V6_veqh, // llvm.hexagon.V6.veqh
hexagon_V6_veqh_128B, // llvm.hexagon.V6.veqh.128B
hexagon_V6_veqh_and, // llvm.hexagon.V6.veqh.and
hexagon_V6_veqh_and_128B, // llvm.hexagon.V6.veqh.and.128B
hexagon_V6_veqh_or, // llvm.hexagon.V6.veqh.or
hexagon_V6_veqh_or_128B, // llvm.hexagon.V6.veqh.or.128B
hexagon_V6_veqh_xor, // llvm.hexagon.V6.veqh.xor
hexagon_V6_veqh_xor_128B, // llvm.hexagon.V6.veqh.xor.128B
hexagon_V6_veqw, // llvm.hexagon.V6.veqw
hexagon_V6_veqw_128B, // llvm.hexagon.V6.veqw.128B
hexagon_V6_veqw_and, // llvm.hexagon.V6.veqw.and
hexagon_V6_veqw_and_128B, // llvm.hexagon.V6.veqw.and.128B
hexagon_V6_veqw_or, // llvm.hexagon.V6.veqw.or
hexagon_V6_veqw_or_128B, // llvm.hexagon.V6.veqw.or.128B
hexagon_V6_veqw_xor, // llvm.hexagon.V6.veqw.xor
hexagon_V6_veqw_xor_128B, // llvm.hexagon.V6.veqw.xor.128B
hexagon_V6_vgathermh, // llvm.hexagon.V6.vgathermh
hexagon_V6_vgathermh_128B, // llvm.hexagon.V6.vgathermh.128B
hexagon_V6_vgathermhq, // llvm.hexagon.V6.vgathermhq
hexagon_V6_vgathermhq_128B, // llvm.hexagon.V6.vgathermhq.128B
hexagon_V6_vgathermhw, // llvm.hexagon.V6.vgathermhw
hexagon_V6_vgathermhw_128B, // llvm.hexagon.V6.vgathermhw.128B
hexagon_V6_vgathermhwq, // llvm.hexagon.V6.vgathermhwq
hexagon_V6_vgathermhwq_128B, // llvm.hexagon.V6.vgathermhwq.128B
hexagon_V6_vgathermw, // llvm.hexagon.V6.vgathermw
hexagon_V6_vgathermw_128B, // llvm.hexagon.V6.vgathermw.128B
hexagon_V6_vgathermwq, // llvm.hexagon.V6.vgathermwq
hexagon_V6_vgathermwq_128B, // llvm.hexagon.V6.vgathermwq.128B
hexagon_V6_vgtb, // llvm.hexagon.V6.vgtb
hexagon_V6_vgtb_128B, // llvm.hexagon.V6.vgtb.128B
hexagon_V6_vgtb_and, // llvm.hexagon.V6.vgtb.and
hexagon_V6_vgtb_and_128B, // llvm.hexagon.V6.vgtb.and.128B
hexagon_V6_vgtb_or, // llvm.hexagon.V6.vgtb.or
hexagon_V6_vgtb_or_128B, // llvm.hexagon.V6.vgtb.or.128B
hexagon_V6_vgtb_xor, // llvm.hexagon.V6.vgtb.xor
hexagon_V6_vgtb_xor_128B, // llvm.hexagon.V6.vgtb.xor.128B
hexagon_V6_vgth, // llvm.hexagon.V6.vgth
hexagon_V6_vgth_128B, // llvm.hexagon.V6.vgth.128B
hexagon_V6_vgth_and, // llvm.hexagon.V6.vgth.and
hexagon_V6_vgth_and_128B, // llvm.hexagon.V6.vgth.and.128B
hexagon_V6_vgth_or, // llvm.hexagon.V6.vgth.or
hexagon_V6_vgth_or_128B, // llvm.hexagon.V6.vgth.or.128B
hexagon_V6_vgth_xor, // llvm.hexagon.V6.vgth.xor
hexagon_V6_vgth_xor_128B, // llvm.hexagon.V6.vgth.xor.128B
hexagon_V6_vgtub, // llvm.hexagon.V6.vgtub
hexagon_V6_vgtub_128B, // llvm.hexagon.V6.vgtub.128B
hexagon_V6_vgtub_and, // llvm.hexagon.V6.vgtub.and
hexagon_V6_vgtub_and_128B, // llvm.hexagon.V6.vgtub.and.128B
hexagon_V6_vgtub_or, // llvm.hexagon.V6.vgtub.or
hexagon_V6_vgtub_or_128B, // llvm.hexagon.V6.vgtub.or.128B
hexagon_V6_vgtub_xor, // llvm.hexagon.V6.vgtub.xor
hexagon_V6_vgtub_xor_128B, // llvm.hexagon.V6.vgtub.xor.128B
hexagon_V6_vgtuh, // llvm.hexagon.V6.vgtuh
hexagon_V6_vgtuh_128B, // llvm.hexagon.V6.vgtuh.128B
hexagon_V6_vgtuh_and, // llvm.hexagon.V6.vgtuh.and
hexagon_V6_vgtuh_and_128B, // llvm.hexagon.V6.vgtuh.and.128B
hexagon_V6_vgtuh_or, // llvm.hexagon.V6.vgtuh.or
hexagon_V6_vgtuh_or_128B, // llvm.hexagon.V6.vgtuh.or.128B
hexagon_V6_vgtuh_xor, // llvm.hexagon.V6.vgtuh.xor
hexagon_V6_vgtuh_xor_128B, // llvm.hexagon.V6.vgtuh.xor.128B
hexagon_V6_vgtuw, // llvm.hexagon.V6.vgtuw
hexagon_V6_vgtuw_128B, // llvm.hexagon.V6.vgtuw.128B
hexagon_V6_vgtuw_and, // llvm.hexagon.V6.vgtuw.and
hexagon_V6_vgtuw_and_128B, // llvm.hexagon.V6.vgtuw.and.128B
hexagon_V6_vgtuw_or, // llvm.hexagon.V6.vgtuw.or
hexagon_V6_vgtuw_or_128B, // llvm.hexagon.V6.vgtuw.or.128B
hexagon_V6_vgtuw_xor, // llvm.hexagon.V6.vgtuw.xor
hexagon_V6_vgtuw_xor_128B, // llvm.hexagon.V6.vgtuw.xor.128B
hexagon_V6_vgtw, // llvm.hexagon.V6.vgtw
hexagon_V6_vgtw_128B, // llvm.hexagon.V6.vgtw.128B
hexagon_V6_vgtw_and, // llvm.hexagon.V6.vgtw.and
hexagon_V6_vgtw_and_128B, // llvm.hexagon.V6.vgtw.and.128B
hexagon_V6_vgtw_or, // llvm.hexagon.V6.vgtw.or
hexagon_V6_vgtw_or_128B, // llvm.hexagon.V6.vgtw.or.128B
hexagon_V6_vgtw_xor, // llvm.hexagon.V6.vgtw.xor
hexagon_V6_vgtw_xor_128B, // llvm.hexagon.V6.vgtw.xor.128B
hexagon_V6_vinsertwr, // llvm.hexagon.V6.vinsertwr
hexagon_V6_vinsertwr_128B, // llvm.hexagon.V6.vinsertwr.128B
hexagon_V6_vlalignb, // llvm.hexagon.V6.vlalignb
hexagon_V6_vlalignb_128B, // llvm.hexagon.V6.vlalignb.128B
hexagon_V6_vlalignbi, // llvm.hexagon.V6.vlalignbi
hexagon_V6_vlalignbi_128B, // llvm.hexagon.V6.vlalignbi.128B
hexagon_V6_vlsrb, // llvm.hexagon.V6.vlsrb
hexagon_V6_vlsrb_128B, // llvm.hexagon.V6.vlsrb.128B
hexagon_V6_vlsrh, // llvm.hexagon.V6.vlsrh
hexagon_V6_vlsrh_128B, // llvm.hexagon.V6.vlsrh.128B
hexagon_V6_vlsrhv, // llvm.hexagon.V6.vlsrhv
hexagon_V6_vlsrhv_128B, // llvm.hexagon.V6.vlsrhv.128B
hexagon_V6_vlsrw, // llvm.hexagon.V6.vlsrw
hexagon_V6_vlsrw_128B, // llvm.hexagon.V6.vlsrw.128B
hexagon_V6_vlsrwv, // llvm.hexagon.V6.vlsrwv
hexagon_V6_vlsrwv_128B, // llvm.hexagon.V6.vlsrwv.128B
hexagon_V6_vlut4, // llvm.hexagon.V6.vlut4
hexagon_V6_vlut4_128B, // llvm.hexagon.V6.vlut4.128B
hexagon_V6_vlutvvb, // llvm.hexagon.V6.vlutvvb
hexagon_V6_vlutvvb_128B, // llvm.hexagon.V6.vlutvvb.128B
hexagon_V6_vlutvvb_nm, // llvm.hexagon.V6.vlutvvb.nm
hexagon_V6_vlutvvb_nm_128B, // llvm.hexagon.V6.vlutvvb.nm.128B
hexagon_V6_vlutvvb_oracc, // llvm.hexagon.V6.vlutvvb.oracc
hexagon_V6_vlutvvb_oracc_128B, // llvm.hexagon.V6.vlutvvb.oracc.128B
hexagon_V6_vlutvvb_oracci, // llvm.hexagon.V6.vlutvvb.oracci
hexagon_V6_vlutvvb_oracci_128B, // llvm.hexagon.V6.vlutvvb.oracci.128B
hexagon_V6_vlutvvbi, // llvm.hexagon.V6.vlutvvbi
hexagon_V6_vlutvvbi_128B, // llvm.hexagon.V6.vlutvvbi.128B
hexagon_V6_vlutvwh, // llvm.hexagon.V6.vlutvwh
hexagon_V6_vlutvwh_128B, // llvm.hexagon.V6.vlutvwh.128B
hexagon_V6_vlutvwh_nm, // llvm.hexagon.V6.vlutvwh.nm
hexagon_V6_vlutvwh_nm_128B, // llvm.hexagon.V6.vlutvwh.nm.128B
hexagon_V6_vlutvwh_oracc, // llvm.hexagon.V6.vlutvwh.oracc
hexagon_V6_vlutvwh_oracc_128B, // llvm.hexagon.V6.vlutvwh.oracc.128B
hexagon_V6_vlutvwh_oracci, // llvm.hexagon.V6.vlutvwh.oracci
hexagon_V6_vlutvwh_oracci_128B, // llvm.hexagon.V6.vlutvwh.oracci.128B
hexagon_V6_vlutvwhi, // llvm.hexagon.V6.vlutvwhi
hexagon_V6_vlutvwhi_128B, // llvm.hexagon.V6.vlutvwhi.128B
hexagon_V6_vmaskedstorenq, // llvm.hexagon.V6.vmaskedstorenq
hexagon_V6_vmaskedstorenq_128B, // llvm.hexagon.V6.vmaskedstorenq.128B
hexagon_V6_vmaskedstorentnq, // llvm.hexagon.V6.vmaskedstorentnq
hexagon_V6_vmaskedstorentnq_128B, // llvm.hexagon.V6.vmaskedstorentnq.128B
hexagon_V6_vmaskedstorentq, // llvm.hexagon.V6.vmaskedstorentq
hexagon_V6_vmaskedstorentq_128B, // llvm.hexagon.V6.vmaskedstorentq.128B
hexagon_V6_vmaskedstoreq, // llvm.hexagon.V6.vmaskedstoreq
hexagon_V6_vmaskedstoreq_128B, // llvm.hexagon.V6.vmaskedstoreq.128B
hexagon_V6_vmaxb, // llvm.hexagon.V6.vmaxb
hexagon_V6_vmaxb_128B, // llvm.hexagon.V6.vmaxb.128B
hexagon_V6_vmaxh, // llvm.hexagon.V6.vmaxh
hexagon_V6_vmaxh_128B, // llvm.hexagon.V6.vmaxh.128B
hexagon_V6_vmaxub, // llvm.hexagon.V6.vmaxub
hexagon_V6_vmaxub_128B, // llvm.hexagon.V6.vmaxub.128B
hexagon_V6_vmaxuh, // llvm.hexagon.V6.vmaxuh
hexagon_V6_vmaxuh_128B, // llvm.hexagon.V6.vmaxuh.128B
hexagon_V6_vmaxw, // llvm.hexagon.V6.vmaxw
hexagon_V6_vmaxw_128B, // llvm.hexagon.V6.vmaxw.128B
hexagon_V6_vminb, // llvm.hexagon.V6.vminb
hexagon_V6_vminb_128B, // llvm.hexagon.V6.vminb.128B
hexagon_V6_vminh, // llvm.hexagon.V6.vminh
hexagon_V6_vminh_128B, // llvm.hexagon.V6.vminh.128B
hexagon_V6_vminub, // llvm.hexagon.V6.vminub
hexagon_V6_vminub_128B, // llvm.hexagon.V6.vminub.128B
hexagon_V6_vminuh, // llvm.hexagon.V6.vminuh
hexagon_V6_vminuh_128B, // llvm.hexagon.V6.vminuh.128B
hexagon_V6_vminw, // llvm.hexagon.V6.vminw
hexagon_V6_vminw_128B, // llvm.hexagon.V6.vminw.128B
hexagon_V6_vmpabus, // llvm.hexagon.V6.vmpabus
hexagon_V6_vmpabus_128B, // llvm.hexagon.V6.vmpabus.128B
hexagon_V6_vmpabus_acc, // llvm.hexagon.V6.vmpabus.acc
hexagon_V6_vmpabus_acc_128B, // llvm.hexagon.V6.vmpabus.acc.128B
hexagon_V6_vmpabusv, // llvm.hexagon.V6.vmpabusv
hexagon_V6_vmpabusv_128B, // llvm.hexagon.V6.vmpabusv.128B
hexagon_V6_vmpabuu, // llvm.hexagon.V6.vmpabuu
hexagon_V6_vmpabuu_128B, // llvm.hexagon.V6.vmpabuu.128B
hexagon_V6_vmpabuu_acc, // llvm.hexagon.V6.vmpabuu.acc
hexagon_V6_vmpabuu_acc_128B, // llvm.hexagon.V6.vmpabuu.acc.128B
hexagon_V6_vmpabuuv, // llvm.hexagon.V6.vmpabuuv
hexagon_V6_vmpabuuv_128B, // llvm.hexagon.V6.vmpabuuv.128B
hexagon_V6_vmpahb, // llvm.hexagon.V6.vmpahb
hexagon_V6_vmpahb_128B, // llvm.hexagon.V6.vmpahb.128B
hexagon_V6_vmpahb_acc, // llvm.hexagon.V6.vmpahb.acc
hexagon_V6_vmpahb_acc_128B, // llvm.hexagon.V6.vmpahb.acc.128B
hexagon_V6_vmpahhsat, // llvm.hexagon.V6.vmpahhsat
hexagon_V6_vmpahhsat_128B, // llvm.hexagon.V6.vmpahhsat.128B
hexagon_V6_vmpauhb, // llvm.hexagon.V6.vmpauhb
hexagon_V6_vmpauhb_128B, // llvm.hexagon.V6.vmpauhb.128B
hexagon_V6_vmpauhb_acc, // llvm.hexagon.V6.vmpauhb.acc
hexagon_V6_vmpauhb_acc_128B, // llvm.hexagon.V6.vmpauhb.acc.128B
hexagon_V6_vmpauhuhsat, // llvm.hexagon.V6.vmpauhuhsat
hexagon_V6_vmpauhuhsat_128B, // llvm.hexagon.V6.vmpauhuhsat.128B
hexagon_V6_vmpsuhuhsat, // llvm.hexagon.V6.vmpsuhuhsat
hexagon_V6_vmpsuhuhsat_128B, // llvm.hexagon.V6.vmpsuhuhsat.128B
hexagon_V6_vmpybus, // llvm.hexagon.V6.vmpybus
hexagon_V6_vmpybus_128B, // llvm.hexagon.V6.vmpybus.128B
hexagon_V6_vmpybus_acc, // llvm.hexagon.V6.vmpybus.acc
hexagon_V6_vmpybus_acc_128B, // llvm.hexagon.V6.vmpybus.acc.128B
hexagon_V6_vmpybusv, // llvm.hexagon.V6.vmpybusv
hexagon_V6_vmpybusv_128B, // llvm.hexagon.V6.vmpybusv.128B
hexagon_V6_vmpybusv_acc, // llvm.hexagon.V6.vmpybusv.acc
hexagon_V6_vmpybusv_acc_128B, // llvm.hexagon.V6.vmpybusv.acc.128B
hexagon_V6_vmpybv, // llvm.hexagon.V6.vmpybv
hexagon_V6_vmpybv_128B, // llvm.hexagon.V6.vmpybv.128B
hexagon_V6_vmpybv_acc, // llvm.hexagon.V6.vmpybv.acc
hexagon_V6_vmpybv_acc_128B, // llvm.hexagon.V6.vmpybv.acc.128B
hexagon_V6_vmpyewuh, // llvm.hexagon.V6.vmpyewuh
hexagon_V6_vmpyewuh_128B, // llvm.hexagon.V6.vmpyewuh.128B
hexagon_V6_vmpyewuh_64, // llvm.hexagon.V6.vmpyewuh.64
hexagon_V6_vmpyewuh_64_128B, // llvm.hexagon.V6.vmpyewuh.64.128B
hexagon_V6_vmpyh, // llvm.hexagon.V6.vmpyh
hexagon_V6_vmpyh_128B, // llvm.hexagon.V6.vmpyh.128B
hexagon_V6_vmpyh_acc, // llvm.hexagon.V6.vmpyh.acc
hexagon_V6_vmpyh_acc_128B, // llvm.hexagon.V6.vmpyh.acc.128B
hexagon_V6_vmpyhsat_acc, // llvm.hexagon.V6.vmpyhsat.acc
hexagon_V6_vmpyhsat_acc_128B, // llvm.hexagon.V6.vmpyhsat.acc.128B
hexagon_V6_vmpyhsrs, // llvm.hexagon.V6.vmpyhsrs
hexagon_V6_vmpyhsrs_128B, // llvm.hexagon.V6.vmpyhsrs.128B
hexagon_V6_vmpyhss, // llvm.hexagon.V6.vmpyhss
hexagon_V6_vmpyhss_128B, // llvm.hexagon.V6.vmpyhss.128B
hexagon_V6_vmpyhus, // llvm.hexagon.V6.vmpyhus
hexagon_V6_vmpyhus_128B, // llvm.hexagon.V6.vmpyhus.128B
hexagon_V6_vmpyhus_acc, // llvm.hexagon.V6.vmpyhus.acc
hexagon_V6_vmpyhus_acc_128B, // llvm.hexagon.V6.vmpyhus.acc.128B
hexagon_V6_vmpyhv, // llvm.hexagon.V6.vmpyhv
hexagon_V6_vmpyhv_128B, // llvm.hexagon.V6.vmpyhv.128B
hexagon_V6_vmpyhv_acc, // llvm.hexagon.V6.vmpyhv.acc
hexagon_V6_vmpyhv_acc_128B, // llvm.hexagon.V6.vmpyhv.acc.128B
hexagon_V6_vmpyhvsrs, // llvm.hexagon.V6.vmpyhvsrs
hexagon_V6_vmpyhvsrs_128B, // llvm.hexagon.V6.vmpyhvsrs.128B
hexagon_V6_vmpyieoh, // llvm.hexagon.V6.vmpyieoh
hexagon_V6_vmpyieoh_128B, // llvm.hexagon.V6.vmpyieoh.128B
hexagon_V6_vmpyiewh_acc, // llvm.hexagon.V6.vmpyiewh.acc
hexagon_V6_vmpyiewh_acc_128B, // llvm.hexagon.V6.vmpyiewh.acc.128B
hexagon_V6_vmpyiewuh, // llvm.hexagon.V6.vmpyiewuh
hexagon_V6_vmpyiewuh_128B, // llvm.hexagon.V6.vmpyiewuh.128B
hexagon_V6_vmpyiewuh_acc, // llvm.hexagon.V6.vmpyiewuh.acc
hexagon_V6_vmpyiewuh_acc_128B, // llvm.hexagon.V6.vmpyiewuh.acc.128B
hexagon_V6_vmpyih, // llvm.hexagon.V6.vmpyih
hexagon_V6_vmpyih_128B, // llvm.hexagon.V6.vmpyih.128B
hexagon_V6_vmpyih_acc, // llvm.hexagon.V6.vmpyih.acc
hexagon_V6_vmpyih_acc_128B, // llvm.hexagon.V6.vmpyih.acc.128B
hexagon_V6_vmpyihb, // llvm.hexagon.V6.vmpyihb
hexagon_V6_vmpyihb_128B, // llvm.hexagon.V6.vmpyihb.128B
hexagon_V6_vmpyihb_acc, // llvm.hexagon.V6.vmpyihb.acc
hexagon_V6_vmpyihb_acc_128B, // llvm.hexagon.V6.vmpyihb.acc.128B
hexagon_V6_vmpyiowh, // llvm.hexagon.V6.vmpyiowh
hexagon_V6_vmpyiowh_128B, // llvm.hexagon.V6.vmpyiowh.128B
hexagon_V6_vmpyiwb, // llvm.hexagon.V6.vmpyiwb
hexagon_V6_vmpyiwb_128B, // llvm.hexagon.V6.vmpyiwb.128B
hexagon_V6_vmpyiwb_acc, // llvm.hexagon.V6.vmpyiwb.acc
hexagon_V6_vmpyiwb_acc_128B, // llvm.hexagon.V6.vmpyiwb.acc.128B
hexagon_V6_vmpyiwh, // llvm.hexagon.V6.vmpyiwh
hexagon_V6_vmpyiwh_128B, // llvm.hexagon.V6.vmpyiwh.128B
hexagon_V6_vmpyiwh_acc, // llvm.hexagon.V6.vmpyiwh.acc
hexagon_V6_vmpyiwh_acc_128B, // llvm.hexagon.V6.vmpyiwh.acc.128B
hexagon_V6_vmpyiwub, // llvm.hexagon.V6.vmpyiwub
hexagon_V6_vmpyiwub_128B, // llvm.hexagon.V6.vmpyiwub.128B
hexagon_V6_vmpyiwub_acc, // llvm.hexagon.V6.vmpyiwub.acc
hexagon_V6_vmpyiwub_acc_128B, // llvm.hexagon.V6.vmpyiwub.acc.128B
hexagon_V6_vmpyowh, // llvm.hexagon.V6.vmpyowh
hexagon_V6_vmpyowh_128B, // llvm.hexagon.V6.vmpyowh.128B
hexagon_V6_vmpyowh_64_acc, // llvm.hexagon.V6.vmpyowh.64.acc
hexagon_V6_vmpyowh_64_acc_128B, // llvm.hexagon.V6.vmpyowh.64.acc.128B
hexagon_V6_vmpyowh_rnd, // llvm.hexagon.V6.vmpyowh.rnd
hexagon_V6_vmpyowh_rnd_128B, // llvm.hexagon.V6.vmpyowh.rnd.128B
hexagon_V6_vmpyowh_rnd_sacc, // llvm.hexagon.V6.vmpyowh.rnd.sacc
hexagon_V6_vmpyowh_rnd_sacc_128B, // llvm.hexagon.V6.vmpyowh.rnd.sacc.128B
hexagon_V6_vmpyowh_sacc, // llvm.hexagon.V6.vmpyowh.sacc
hexagon_V6_vmpyowh_sacc_128B, // llvm.hexagon.V6.vmpyowh.sacc.128B
hexagon_V6_vmpyub, // llvm.hexagon.V6.vmpyub
hexagon_V6_vmpyub_128B, // llvm.hexagon.V6.vmpyub.128B
hexagon_V6_vmpyub_acc, // llvm.hexagon.V6.vmpyub.acc
hexagon_V6_vmpyub_acc_128B, // llvm.hexagon.V6.vmpyub.acc.128B
hexagon_V6_vmpyubv, // llvm.hexagon.V6.vmpyubv
hexagon_V6_vmpyubv_128B, // llvm.hexagon.V6.vmpyubv.128B
hexagon_V6_vmpyubv_acc, // llvm.hexagon.V6.vmpyubv.acc
hexagon_V6_vmpyubv_acc_128B, // llvm.hexagon.V6.vmpyubv.acc.128B
hexagon_V6_vmpyuh, // llvm.hexagon.V6.vmpyuh
hexagon_V6_vmpyuh_128B, // llvm.hexagon.V6.vmpyuh.128B
hexagon_V6_vmpyuh_acc, // llvm.hexagon.V6.vmpyuh.acc
hexagon_V6_vmpyuh_acc_128B, // llvm.hexagon.V6.vmpyuh.acc.128B
hexagon_V6_vmpyuhe, // llvm.hexagon.V6.vmpyuhe
hexagon_V6_vmpyuhe_128B, // llvm.hexagon.V6.vmpyuhe.128B
hexagon_V6_vmpyuhe_acc, // llvm.hexagon.V6.vmpyuhe.acc
hexagon_V6_vmpyuhe_acc_128B, // llvm.hexagon.V6.vmpyuhe.acc.128B
hexagon_V6_vmpyuhv, // llvm.hexagon.V6.vmpyuhv
hexagon_V6_vmpyuhv_128B, // llvm.hexagon.V6.vmpyuhv.128B
hexagon_V6_vmpyuhv_acc, // llvm.hexagon.V6.vmpyuhv.acc
hexagon_V6_vmpyuhv_acc_128B, // llvm.hexagon.V6.vmpyuhv.acc.128B
hexagon_V6_vmux, // llvm.hexagon.V6.vmux
hexagon_V6_vmux_128B, // llvm.hexagon.V6.vmux.128B
hexagon_V6_vnavgb, // llvm.hexagon.V6.vnavgb
hexagon_V6_vnavgb_128B, // llvm.hexagon.V6.vnavgb.128B
hexagon_V6_vnavgh, // llvm.hexagon.V6.vnavgh
hexagon_V6_vnavgh_128B, // llvm.hexagon.V6.vnavgh.128B
hexagon_V6_vnavgub, // llvm.hexagon.V6.vnavgub
hexagon_V6_vnavgub_128B, // llvm.hexagon.V6.vnavgub.128B
hexagon_V6_vnavgw, // llvm.hexagon.V6.vnavgw
hexagon_V6_vnavgw_128B, // llvm.hexagon.V6.vnavgw.128B
hexagon_V6_vnormamth, // llvm.hexagon.V6.vnormamth
hexagon_V6_vnormamth_128B, // llvm.hexagon.V6.vnormamth.128B
hexagon_V6_vnormamtw, // llvm.hexagon.V6.vnormamtw
hexagon_V6_vnormamtw_128B, // llvm.hexagon.V6.vnormamtw.128B
hexagon_V6_vnot, // llvm.hexagon.V6.vnot
hexagon_V6_vnot_128B, // llvm.hexagon.V6.vnot.128B
hexagon_V6_vor, // llvm.hexagon.V6.vor
hexagon_V6_vor_128B, // llvm.hexagon.V6.vor.128B
hexagon_V6_vpackeb, // llvm.hexagon.V6.vpackeb
hexagon_V6_vpackeb_128B, // llvm.hexagon.V6.vpackeb.128B
hexagon_V6_vpackeh, // llvm.hexagon.V6.vpackeh
hexagon_V6_vpackeh_128B, // llvm.hexagon.V6.vpackeh.128B
hexagon_V6_vpackhb_sat, // llvm.hexagon.V6.vpackhb.sat
hexagon_V6_vpackhb_sat_128B, // llvm.hexagon.V6.vpackhb.sat.128B
hexagon_V6_vpackhub_sat, // llvm.hexagon.V6.vpackhub.sat
hexagon_V6_vpackhub_sat_128B, // llvm.hexagon.V6.vpackhub.sat.128B
hexagon_V6_vpackob, // llvm.hexagon.V6.vpackob
hexagon_V6_vpackob_128B, // llvm.hexagon.V6.vpackob.128B
hexagon_V6_vpackoh, // llvm.hexagon.V6.vpackoh
hexagon_V6_vpackoh_128B, // llvm.hexagon.V6.vpackoh.128B
hexagon_V6_vpackwh_sat, // llvm.hexagon.V6.vpackwh.sat
hexagon_V6_vpackwh_sat_128B, // llvm.hexagon.V6.vpackwh.sat.128B
hexagon_V6_vpackwuh_sat, // llvm.hexagon.V6.vpackwuh.sat
hexagon_V6_vpackwuh_sat_128B, // llvm.hexagon.V6.vpackwuh.sat.128B
hexagon_V6_vpopcounth, // llvm.hexagon.V6.vpopcounth
hexagon_V6_vpopcounth_128B, // llvm.hexagon.V6.vpopcounth.128B
hexagon_V6_vprefixqb, // llvm.hexagon.V6.vprefixqb
hexagon_V6_vprefixqb_128B, // llvm.hexagon.V6.vprefixqb.128B
hexagon_V6_vprefixqh, // llvm.hexagon.V6.vprefixqh
hexagon_V6_vprefixqh_128B, // llvm.hexagon.V6.vprefixqh.128B
hexagon_V6_vprefixqw, // llvm.hexagon.V6.vprefixqw
hexagon_V6_vprefixqw_128B, // llvm.hexagon.V6.vprefixqw.128B
hexagon_V6_vrdelta, // llvm.hexagon.V6.vrdelta
hexagon_V6_vrdelta_128B, // llvm.hexagon.V6.vrdelta.128B
hexagon_V6_vrmpybub_rtt, // llvm.hexagon.V6.vrmpybub.rtt
hexagon_V6_vrmpybub_rtt_128B, // llvm.hexagon.V6.vrmpybub.rtt.128B
hexagon_V6_vrmpybub_rtt_acc, // llvm.hexagon.V6.vrmpybub.rtt.acc
hexagon_V6_vrmpybub_rtt_acc_128B, // llvm.hexagon.V6.vrmpybub.rtt.acc.128B
hexagon_V6_vrmpybus, // llvm.hexagon.V6.vrmpybus
hexagon_V6_vrmpybus_128B, // llvm.hexagon.V6.vrmpybus.128B
hexagon_V6_vrmpybus_acc, // llvm.hexagon.V6.vrmpybus.acc
hexagon_V6_vrmpybus_acc_128B, // llvm.hexagon.V6.vrmpybus.acc.128B
hexagon_V6_vrmpybusi, // llvm.hexagon.V6.vrmpybusi
hexagon_V6_vrmpybusi_128B, // llvm.hexagon.V6.vrmpybusi.128B
hexagon_V6_vrmpybusi_acc, // llvm.hexagon.V6.vrmpybusi.acc
hexagon_V6_vrmpybusi_acc_128B, // llvm.hexagon.V6.vrmpybusi.acc.128B
hexagon_V6_vrmpybusv, // llvm.hexagon.V6.vrmpybusv
hexagon_V6_vrmpybusv_128B, // llvm.hexagon.V6.vrmpybusv.128B
hexagon_V6_vrmpybusv_acc, // llvm.hexagon.V6.vrmpybusv.acc
hexagon_V6_vrmpybusv_acc_128B, // llvm.hexagon.V6.vrmpybusv.acc.128B
hexagon_V6_vrmpybv, // llvm.hexagon.V6.vrmpybv
hexagon_V6_vrmpybv_128B, // llvm.hexagon.V6.vrmpybv.128B
hexagon_V6_vrmpybv_acc, // llvm.hexagon.V6.vrmpybv.acc
hexagon_V6_vrmpybv_acc_128B, // llvm.hexagon.V6.vrmpybv.acc.128B
hexagon_V6_vrmpyub, // llvm.hexagon.V6.vrmpyub
hexagon_V6_vrmpyub_128B, // llvm.hexagon.V6.vrmpyub.128B
hexagon_V6_vrmpyub_acc, // llvm.hexagon.V6.vrmpyub.acc
hexagon_V6_vrmpyub_acc_128B, // llvm.hexagon.V6.vrmpyub.acc.128B
hexagon_V6_vrmpyub_rtt, // llvm.hexagon.V6.vrmpyub.rtt
hexagon_V6_vrmpyub_rtt_128B, // llvm.hexagon.V6.vrmpyub.rtt.128B
hexagon_V6_vrmpyub_rtt_acc, // llvm.hexagon.V6.vrmpyub.rtt.acc
hexagon_V6_vrmpyub_rtt_acc_128B, // llvm.hexagon.V6.vrmpyub.rtt.acc.128B
hexagon_V6_vrmpyubi, // llvm.hexagon.V6.vrmpyubi
hexagon_V6_vrmpyubi_128B, // llvm.hexagon.V6.vrmpyubi.128B
hexagon_V6_vrmpyubi_acc, // llvm.hexagon.V6.vrmpyubi.acc
hexagon_V6_vrmpyubi_acc_128B, // llvm.hexagon.V6.vrmpyubi.acc.128B
hexagon_V6_vrmpyubv, // llvm.hexagon.V6.vrmpyubv
hexagon_V6_vrmpyubv_128B, // llvm.hexagon.V6.vrmpyubv.128B
hexagon_V6_vrmpyubv_acc, // llvm.hexagon.V6.vrmpyubv.acc
hexagon_V6_vrmpyubv_acc_128B, // llvm.hexagon.V6.vrmpyubv.acc.128B
hexagon_V6_vror, // llvm.hexagon.V6.vror
hexagon_V6_vror_128B, // llvm.hexagon.V6.vror.128B
hexagon_V6_vrotr, // llvm.hexagon.V6.vrotr
hexagon_V6_vrotr_128B, // llvm.hexagon.V6.vrotr.128B
hexagon_V6_vroundhb, // llvm.hexagon.V6.vroundhb
hexagon_V6_vroundhb_128B, // llvm.hexagon.V6.vroundhb.128B
hexagon_V6_vroundhub, // llvm.hexagon.V6.vroundhub
hexagon_V6_vroundhub_128B, // llvm.hexagon.V6.vroundhub.128B
hexagon_V6_vrounduhub, // llvm.hexagon.V6.vrounduhub
hexagon_V6_vrounduhub_128B, // llvm.hexagon.V6.vrounduhub.128B
hexagon_V6_vrounduwuh, // llvm.hexagon.V6.vrounduwuh
hexagon_V6_vrounduwuh_128B, // llvm.hexagon.V6.vrounduwuh.128B
hexagon_V6_vroundwh, // llvm.hexagon.V6.vroundwh
hexagon_V6_vroundwh_128B, // llvm.hexagon.V6.vroundwh.128B
hexagon_V6_vroundwuh, // llvm.hexagon.V6.vroundwuh
hexagon_V6_vroundwuh_128B, // llvm.hexagon.V6.vroundwuh.128B
hexagon_V6_vrsadubi, // llvm.hexagon.V6.vrsadubi
hexagon_V6_vrsadubi_128B, // llvm.hexagon.V6.vrsadubi.128B
hexagon_V6_vrsadubi_acc, // llvm.hexagon.V6.vrsadubi.acc
hexagon_V6_vrsadubi_acc_128B, // llvm.hexagon.V6.vrsadubi.acc.128B
hexagon_V6_vsatdw, // llvm.hexagon.V6.vsatdw
hexagon_V6_vsatdw_128B, // llvm.hexagon.V6.vsatdw.128B
hexagon_V6_vsathub, // llvm.hexagon.V6.vsathub
hexagon_V6_vsathub_128B, // llvm.hexagon.V6.vsathub.128B
hexagon_V6_vsatuwuh, // llvm.hexagon.V6.vsatuwuh
hexagon_V6_vsatuwuh_128B, // llvm.hexagon.V6.vsatuwuh.128B
hexagon_V6_vsatwh, // llvm.hexagon.V6.vsatwh
hexagon_V6_vsatwh_128B, // llvm.hexagon.V6.vsatwh.128B
hexagon_V6_vsb, // llvm.hexagon.V6.vsb
hexagon_V6_vsb_128B, // llvm.hexagon.V6.vsb.128B
hexagon_V6_vscattermh, // llvm.hexagon.V6.vscattermh
hexagon_V6_vscattermh_128B, // llvm.hexagon.V6.vscattermh.128B
hexagon_V6_vscattermh_add, // llvm.hexagon.V6.vscattermh.add
hexagon_V6_vscattermh_add_128B, // llvm.hexagon.V6.vscattermh.add.128B
hexagon_V6_vscattermhq, // llvm.hexagon.V6.vscattermhq
hexagon_V6_vscattermhq_128B, // llvm.hexagon.V6.vscattermhq.128B
hexagon_V6_vscattermhw, // llvm.hexagon.V6.vscattermhw
hexagon_V6_vscattermhw_128B, // llvm.hexagon.V6.vscattermhw.128B
hexagon_V6_vscattermhw_add, // llvm.hexagon.V6.vscattermhw.add
hexagon_V6_vscattermhw_add_128B, // llvm.hexagon.V6.vscattermhw.add.128B
hexagon_V6_vscattermhwq, // llvm.hexagon.V6.vscattermhwq
hexagon_V6_vscattermhwq_128B, // llvm.hexagon.V6.vscattermhwq.128B
hexagon_V6_vscattermw, // llvm.hexagon.V6.vscattermw
hexagon_V6_vscattermw_128B, // llvm.hexagon.V6.vscattermw.128B
hexagon_V6_vscattermw_add, // llvm.hexagon.V6.vscattermw.add
hexagon_V6_vscattermw_add_128B, // llvm.hexagon.V6.vscattermw.add.128B
hexagon_V6_vscattermwq, // llvm.hexagon.V6.vscattermwq
hexagon_V6_vscattermwq_128B, // llvm.hexagon.V6.vscattermwq.128B
hexagon_V6_vsh, // llvm.hexagon.V6.vsh
hexagon_V6_vsh_128B, // llvm.hexagon.V6.vsh.128B
hexagon_V6_vshufeh, // llvm.hexagon.V6.vshufeh
hexagon_V6_vshufeh_128B, // llvm.hexagon.V6.vshufeh.128B
hexagon_V6_vshuffb, // llvm.hexagon.V6.vshuffb
hexagon_V6_vshuffb_128B, // llvm.hexagon.V6.vshuffb.128B
hexagon_V6_vshuffeb, // llvm.hexagon.V6.vshuffeb
hexagon_V6_vshuffeb_128B, // llvm.hexagon.V6.vshuffeb.128B
hexagon_V6_vshuffh, // llvm.hexagon.V6.vshuffh
hexagon_V6_vshuffh_128B, // llvm.hexagon.V6.vshuffh.128B
hexagon_V6_vshuffob, // llvm.hexagon.V6.vshuffob
hexagon_V6_vshuffob_128B, // llvm.hexagon.V6.vshuffob.128B
hexagon_V6_vshuffvdd, // llvm.hexagon.V6.vshuffvdd
hexagon_V6_vshuffvdd_128B, // llvm.hexagon.V6.vshuffvdd.128B
hexagon_V6_vshufoeb, // llvm.hexagon.V6.vshufoeb
hexagon_V6_vshufoeb_128B, // llvm.hexagon.V6.vshufoeb.128B
hexagon_V6_vshufoeh, // llvm.hexagon.V6.vshufoeh
hexagon_V6_vshufoeh_128B, // llvm.hexagon.V6.vshufoeh.128B
hexagon_V6_vshufoh, // llvm.hexagon.V6.vshufoh
hexagon_V6_vshufoh_128B, // llvm.hexagon.V6.vshufoh.128B
hexagon_V6_vsubb, // llvm.hexagon.V6.vsubb
hexagon_V6_vsubb_128B, // llvm.hexagon.V6.vsubb.128B
hexagon_V6_vsubb_dv, // llvm.hexagon.V6.vsubb.dv
hexagon_V6_vsubb_dv_128B, // llvm.hexagon.V6.vsubb.dv.128B
hexagon_V6_vsubbnq, // llvm.hexagon.V6.vsubbnq
hexagon_V6_vsubbnq_128B, // llvm.hexagon.V6.vsubbnq.128B
hexagon_V6_vsubbq, // llvm.hexagon.V6.vsubbq
hexagon_V6_vsubbq_128B, // llvm.hexagon.V6.vsubbq.128B
hexagon_V6_vsubbsat, // llvm.hexagon.V6.vsubbsat
hexagon_V6_vsubbsat_128B, // llvm.hexagon.V6.vsubbsat.128B
hexagon_V6_vsubbsat_dv, // llvm.hexagon.V6.vsubbsat.dv
hexagon_V6_vsubbsat_dv_128B, // llvm.hexagon.V6.vsubbsat.dv.128B
hexagon_V6_vsubcarry, // llvm.hexagon.V6.vsubcarry
hexagon_V6_vsubcarry_128B, // llvm.hexagon.V6.vsubcarry.128B
hexagon_V6_vsubh, // llvm.hexagon.V6.vsubh
hexagon_V6_vsubh_128B, // llvm.hexagon.V6.vsubh.128B
hexagon_V6_vsubh_dv, // llvm.hexagon.V6.vsubh.dv
hexagon_V6_vsubh_dv_128B, // llvm.hexagon.V6.vsubh.dv.128B
hexagon_V6_vsubhnq, // llvm.hexagon.V6.vsubhnq
hexagon_V6_vsubhnq_128B, // llvm.hexagon.V6.vsubhnq.128B
hexagon_V6_vsubhq, // llvm.hexagon.V6.vsubhq
hexagon_V6_vsubhq_128B, // llvm.hexagon.V6.vsubhq.128B
hexagon_V6_vsubhsat, // llvm.hexagon.V6.vsubhsat
hexagon_V6_vsubhsat_128B, // llvm.hexagon.V6.vsubhsat.128B
hexagon_V6_vsubhsat_dv, // llvm.hexagon.V6.vsubhsat.dv
hexagon_V6_vsubhsat_dv_128B, // llvm.hexagon.V6.vsubhsat.dv.128B
hexagon_V6_vsubhw, // llvm.hexagon.V6.vsubhw
hexagon_V6_vsubhw_128B, // llvm.hexagon.V6.vsubhw.128B
hexagon_V6_vsububh, // llvm.hexagon.V6.vsububh
hexagon_V6_vsububh_128B, // llvm.hexagon.V6.vsububh.128B
hexagon_V6_vsububsat, // llvm.hexagon.V6.vsububsat
hexagon_V6_vsububsat_128B, // llvm.hexagon.V6.vsububsat.128B
hexagon_V6_vsububsat_dv, // llvm.hexagon.V6.vsububsat.dv
hexagon_V6_vsububsat_dv_128B, // llvm.hexagon.V6.vsububsat.dv.128B
hexagon_V6_vsubububb_sat, // llvm.hexagon.V6.vsubububb.sat
hexagon_V6_vsubububb_sat_128B, // llvm.hexagon.V6.vsubububb.sat.128B
hexagon_V6_vsubuhsat, // llvm.hexagon.V6.vsubuhsat
hexagon_V6_vsubuhsat_128B, // llvm.hexagon.V6.vsubuhsat.128B
hexagon_V6_vsubuhsat_dv, // llvm.hexagon.V6.vsubuhsat.dv
hexagon_V6_vsubuhsat_dv_128B, // llvm.hexagon.V6.vsubuhsat.dv.128B
hexagon_V6_vsubuhw, // llvm.hexagon.V6.vsubuhw
hexagon_V6_vsubuhw_128B, // llvm.hexagon.V6.vsubuhw.128B
hexagon_V6_vsubuwsat, // llvm.hexagon.V6.vsubuwsat
hexagon_V6_vsubuwsat_128B, // llvm.hexagon.V6.vsubuwsat.128B
hexagon_V6_vsubuwsat_dv, // llvm.hexagon.V6.vsubuwsat.dv
hexagon_V6_vsubuwsat_dv_128B, // llvm.hexagon.V6.vsubuwsat.dv.128B
hexagon_V6_vsubw, // llvm.hexagon.V6.vsubw
hexagon_V6_vsubw_128B, // llvm.hexagon.V6.vsubw.128B
hexagon_V6_vsubw_dv, // llvm.hexagon.V6.vsubw.dv
hexagon_V6_vsubw_dv_128B, // llvm.hexagon.V6.vsubw.dv.128B
hexagon_V6_vsubwnq, // llvm.hexagon.V6.vsubwnq
hexagon_V6_vsubwnq_128B, // llvm.hexagon.V6.vsubwnq.128B
hexagon_V6_vsubwq, // llvm.hexagon.V6.vsubwq
hexagon_V6_vsubwq_128B, // llvm.hexagon.V6.vsubwq.128B
hexagon_V6_vsubwsat, // llvm.hexagon.V6.vsubwsat
hexagon_V6_vsubwsat_128B, // llvm.hexagon.V6.vsubwsat.128B
hexagon_V6_vsubwsat_dv, // llvm.hexagon.V6.vsubwsat.dv
hexagon_V6_vsubwsat_dv_128B, // llvm.hexagon.V6.vsubwsat.dv.128B
hexagon_V6_vswap, // llvm.hexagon.V6.vswap
hexagon_V6_vswap_128B, // llvm.hexagon.V6.vswap.128B
hexagon_V6_vtmpyb, // llvm.hexagon.V6.vtmpyb
hexagon_V6_vtmpyb_128B, // llvm.hexagon.V6.vtmpyb.128B
hexagon_V6_vtmpyb_acc, // llvm.hexagon.V6.vtmpyb.acc
hexagon_V6_vtmpyb_acc_128B, // llvm.hexagon.V6.vtmpyb.acc.128B
hexagon_V6_vtmpybus, // llvm.hexagon.V6.vtmpybus
hexagon_V6_vtmpybus_128B, // llvm.hexagon.V6.vtmpybus.128B
hexagon_V6_vtmpybus_acc, // llvm.hexagon.V6.vtmpybus.acc
hexagon_V6_vtmpybus_acc_128B, // llvm.hexagon.V6.vtmpybus.acc.128B
hexagon_V6_vtmpyhb, // llvm.hexagon.V6.vtmpyhb
hexagon_V6_vtmpyhb_128B, // llvm.hexagon.V6.vtmpyhb.128B
hexagon_V6_vtmpyhb_acc, // llvm.hexagon.V6.vtmpyhb.acc
hexagon_V6_vtmpyhb_acc_128B, // llvm.hexagon.V6.vtmpyhb.acc.128B
hexagon_V6_vtran2x2_map, // llvm.hexagon.V6.vtran2x2.map
hexagon_V6_vtran2x2_map_128B, // llvm.hexagon.V6.vtran2x2.map.128B
hexagon_V6_vunpackb, // llvm.hexagon.V6.vunpackb
hexagon_V6_vunpackb_128B, // llvm.hexagon.V6.vunpackb.128B
hexagon_V6_vunpackh, // llvm.hexagon.V6.vunpackh
hexagon_V6_vunpackh_128B, // llvm.hexagon.V6.vunpackh.128B
hexagon_V6_vunpackob, // llvm.hexagon.V6.vunpackob
hexagon_V6_vunpackob_128B, // llvm.hexagon.V6.vunpackob.128B
hexagon_V6_vunpackoh, // llvm.hexagon.V6.vunpackoh
hexagon_V6_vunpackoh_128B, // llvm.hexagon.V6.vunpackoh.128B
hexagon_V6_vunpackub, // llvm.hexagon.V6.vunpackub
hexagon_V6_vunpackub_128B, // llvm.hexagon.V6.vunpackub.128B
hexagon_V6_vunpackuh, // llvm.hexagon.V6.vunpackuh
hexagon_V6_vunpackuh_128B, // llvm.hexagon.V6.vunpackuh.128B
hexagon_V6_vxor, // llvm.hexagon.V6.vxor
hexagon_V6_vxor_128B, // llvm.hexagon.V6.vxor.128B
hexagon_V6_vzb, // llvm.hexagon.V6.vzb
hexagon_V6_vzb_128B, // llvm.hexagon.V6.vzb.128B
hexagon_V6_vzh, // llvm.hexagon.V6.vzh
hexagon_V6_vzh_128B, // llvm.hexagon.V6.vzh.128B
hexagon_Y2_dccleana, // llvm.hexagon.Y2.dccleana
hexagon_Y2_dccleaninva, // llvm.hexagon.Y2.dccleaninva
hexagon_Y2_dcinva, // llvm.hexagon.Y2.dcinva
hexagon_Y2_dczeroa, // llvm.hexagon.Y2.dczeroa
hexagon_Y4_l2fetch, // llvm.hexagon.Y4.l2fetch
hexagon_Y5_l2fetch, // llvm.hexagon.Y5.l2fetch
hexagon_circ_ldb, // llvm.hexagon.circ.ldb
hexagon_circ_ldd, // llvm.hexagon.circ.ldd
hexagon_circ_ldh, // llvm.hexagon.circ.ldh
hexagon_circ_ldub, // llvm.hexagon.circ.ldub
hexagon_circ_lduh, // llvm.hexagon.circ.lduh
hexagon_circ_ldw, // llvm.hexagon.circ.ldw
hexagon_circ_stb, // llvm.hexagon.circ.stb
hexagon_circ_std, // llvm.hexagon.circ.std
hexagon_circ_sth, // llvm.hexagon.circ.sth
hexagon_circ_sthhi, // llvm.hexagon.circ.sthhi
hexagon_circ_stw, // llvm.hexagon.circ.stw
hexagon_prefetch, // llvm.hexagon.prefetch
hexagon_vmemcpy, // llvm.hexagon.vmemcpy
hexagon_vmemset, // llvm.hexagon.vmemset
mips_absq_s_ph, // llvm.mips.absq.s.ph
mips_absq_s_qb, // llvm.mips.absq.s.qb
mips_absq_s_w, // llvm.mips.absq.s.w
mips_add_a_b, // llvm.mips.add.a.b
mips_add_a_d, // llvm.mips.add.a.d
mips_add_a_h, // llvm.mips.add.a.h
mips_add_a_w, // llvm.mips.add.a.w
mips_addq_ph, // llvm.mips.addq.ph
mips_addq_s_ph, // llvm.mips.addq.s.ph
mips_addq_s_w, // llvm.mips.addq.s.w
mips_addqh_ph, // llvm.mips.addqh.ph
mips_addqh_r_ph, // llvm.mips.addqh.r.ph
mips_addqh_r_w, // llvm.mips.addqh.r.w
mips_addqh_w, // llvm.mips.addqh.w
mips_adds_a_b, // llvm.mips.adds.a.b
mips_adds_a_d, // llvm.mips.adds.a.d
mips_adds_a_h, // llvm.mips.adds.a.h
mips_adds_a_w, // llvm.mips.adds.a.w
mips_adds_s_b, // llvm.mips.adds.s.b
mips_adds_s_d, // llvm.mips.adds.s.d
mips_adds_s_h, // llvm.mips.adds.s.h
mips_adds_s_w, // llvm.mips.adds.s.w
mips_adds_u_b, // llvm.mips.adds.u.b
mips_adds_u_d, // llvm.mips.adds.u.d
mips_adds_u_h, // llvm.mips.adds.u.h
mips_adds_u_w, // llvm.mips.adds.u.w
mips_addsc, // llvm.mips.addsc
mips_addu_ph, // llvm.mips.addu.ph
mips_addu_qb, // llvm.mips.addu.qb
mips_addu_s_ph, // llvm.mips.addu.s.ph
mips_addu_s_qb, // llvm.mips.addu.s.qb
mips_adduh_qb, // llvm.mips.adduh.qb
mips_adduh_r_qb, // llvm.mips.adduh.r.qb
mips_addv_b, // llvm.mips.addv.b
mips_addv_d, // llvm.mips.addv.d
mips_addv_h, // llvm.mips.addv.h
mips_addv_w, // llvm.mips.addv.w
mips_addvi_b, // llvm.mips.addvi.b
mips_addvi_d, // llvm.mips.addvi.d
mips_addvi_h, // llvm.mips.addvi.h
mips_addvi_w, // llvm.mips.addvi.w
mips_addwc, // llvm.mips.addwc
mips_and_v, // llvm.mips.and.v
mips_andi_b, // llvm.mips.andi.b
mips_append, // llvm.mips.append
mips_asub_s_b, // llvm.mips.asub.s.b
mips_asub_s_d, // llvm.mips.asub.s.d
mips_asub_s_h, // llvm.mips.asub.s.h
mips_asub_s_w, // llvm.mips.asub.s.w
mips_asub_u_b, // llvm.mips.asub.u.b
mips_asub_u_d, // llvm.mips.asub.u.d
mips_asub_u_h, // llvm.mips.asub.u.h
mips_asub_u_w, // llvm.mips.asub.u.w
mips_ave_s_b, // llvm.mips.ave.s.b
mips_ave_s_d, // llvm.mips.ave.s.d
mips_ave_s_h, // llvm.mips.ave.s.h
mips_ave_s_w, // llvm.mips.ave.s.w
mips_ave_u_b, // llvm.mips.ave.u.b
mips_ave_u_d, // llvm.mips.ave.u.d
mips_ave_u_h, // llvm.mips.ave.u.h
mips_ave_u_w, // llvm.mips.ave.u.w
mips_aver_s_b, // llvm.mips.aver.s.b
mips_aver_s_d, // llvm.mips.aver.s.d
mips_aver_s_h, // llvm.mips.aver.s.h
mips_aver_s_w, // llvm.mips.aver.s.w
mips_aver_u_b, // llvm.mips.aver.u.b
mips_aver_u_d, // llvm.mips.aver.u.d
mips_aver_u_h, // llvm.mips.aver.u.h
mips_aver_u_w, // llvm.mips.aver.u.w
mips_balign, // llvm.mips.balign
mips_bclr_b, // llvm.mips.bclr.b
mips_bclr_d, // llvm.mips.bclr.d
mips_bclr_h, // llvm.mips.bclr.h
mips_bclr_w, // llvm.mips.bclr.w
mips_bclri_b, // llvm.mips.bclri.b
mips_bclri_d, // llvm.mips.bclri.d
mips_bclri_h, // llvm.mips.bclri.h
mips_bclri_w, // llvm.mips.bclri.w
mips_binsl_b, // llvm.mips.binsl.b
mips_binsl_d, // llvm.mips.binsl.d
mips_binsl_h, // llvm.mips.binsl.h
mips_binsl_w, // llvm.mips.binsl.w
mips_binsli_b, // llvm.mips.binsli.b
mips_binsli_d, // llvm.mips.binsli.d
mips_binsli_h, // llvm.mips.binsli.h
mips_binsli_w, // llvm.mips.binsli.w
mips_binsr_b, // llvm.mips.binsr.b
mips_binsr_d, // llvm.mips.binsr.d
mips_binsr_h, // llvm.mips.binsr.h
mips_binsr_w, // llvm.mips.binsr.w
mips_binsri_b, // llvm.mips.binsri.b
mips_binsri_d, // llvm.mips.binsri.d
mips_binsri_h, // llvm.mips.binsri.h
mips_binsri_w, // llvm.mips.binsri.w
mips_bitrev, // llvm.mips.bitrev
mips_bmnz_v, // llvm.mips.bmnz.v
mips_bmnzi_b, // llvm.mips.bmnzi.b
mips_bmz_v, // llvm.mips.bmz.v
mips_bmzi_b, // llvm.mips.bmzi.b
mips_bneg_b, // llvm.mips.bneg.b
mips_bneg_d, // llvm.mips.bneg.d
mips_bneg_h, // llvm.mips.bneg.h
mips_bneg_w, // llvm.mips.bneg.w
mips_bnegi_b, // llvm.mips.bnegi.b
mips_bnegi_d, // llvm.mips.bnegi.d
mips_bnegi_h, // llvm.mips.bnegi.h
mips_bnegi_w, // llvm.mips.bnegi.w
mips_bnz_b, // llvm.mips.bnz.b
mips_bnz_d, // llvm.mips.bnz.d
mips_bnz_h, // llvm.mips.bnz.h
mips_bnz_v, // llvm.mips.bnz.v
mips_bnz_w, // llvm.mips.bnz.w
mips_bposge32, // llvm.mips.bposge32
mips_bsel_v, // llvm.mips.bsel.v
mips_bseli_b, // llvm.mips.bseli.b
mips_bset_b, // llvm.mips.bset.b
mips_bset_d, // llvm.mips.bset.d
mips_bset_h, // llvm.mips.bset.h
mips_bset_w, // llvm.mips.bset.w
mips_bseti_b, // llvm.mips.bseti.b
mips_bseti_d, // llvm.mips.bseti.d
mips_bseti_h, // llvm.mips.bseti.h
mips_bseti_w, // llvm.mips.bseti.w
mips_bz_b, // llvm.mips.bz.b
mips_bz_d, // llvm.mips.bz.d
mips_bz_h, // llvm.mips.bz.h
mips_bz_v, // llvm.mips.bz.v
mips_bz_w, // llvm.mips.bz.w
mips_ceq_b, // llvm.mips.ceq.b
mips_ceq_d, // llvm.mips.ceq.d
mips_ceq_h, // llvm.mips.ceq.h
mips_ceq_w, // llvm.mips.ceq.w
mips_ceqi_b, // llvm.mips.ceqi.b
mips_ceqi_d, // llvm.mips.ceqi.d
mips_ceqi_h, // llvm.mips.ceqi.h
mips_ceqi_w, // llvm.mips.ceqi.w
mips_cfcmsa, // llvm.mips.cfcmsa
mips_cle_s_b, // llvm.mips.cle.s.b
mips_cle_s_d, // llvm.mips.cle.s.d
mips_cle_s_h, // llvm.mips.cle.s.h
mips_cle_s_w, // llvm.mips.cle.s.w
mips_cle_u_b, // llvm.mips.cle.u.b
mips_cle_u_d, // llvm.mips.cle.u.d
mips_cle_u_h, // llvm.mips.cle.u.h
mips_cle_u_w, // llvm.mips.cle.u.w
mips_clei_s_b, // llvm.mips.clei.s.b
mips_clei_s_d, // llvm.mips.clei.s.d
mips_clei_s_h, // llvm.mips.clei.s.h
mips_clei_s_w, // llvm.mips.clei.s.w
mips_clei_u_b, // llvm.mips.clei.u.b
mips_clei_u_d, // llvm.mips.clei.u.d
mips_clei_u_h, // llvm.mips.clei.u.h
mips_clei_u_w, // llvm.mips.clei.u.w
mips_clt_s_b, // llvm.mips.clt.s.b
mips_clt_s_d, // llvm.mips.clt.s.d
mips_clt_s_h, // llvm.mips.clt.s.h
mips_clt_s_w, // llvm.mips.clt.s.w
mips_clt_u_b, // llvm.mips.clt.u.b
mips_clt_u_d, // llvm.mips.clt.u.d
mips_clt_u_h, // llvm.mips.clt.u.h
mips_clt_u_w, // llvm.mips.clt.u.w
mips_clti_s_b, // llvm.mips.clti.s.b
mips_clti_s_d, // llvm.mips.clti.s.d
mips_clti_s_h, // llvm.mips.clti.s.h
mips_clti_s_w, // llvm.mips.clti.s.w
mips_clti_u_b, // llvm.mips.clti.u.b
mips_clti_u_d, // llvm.mips.clti.u.d
mips_clti_u_h, // llvm.mips.clti.u.h
mips_clti_u_w, // llvm.mips.clti.u.w
mips_cmp_eq_ph, // llvm.mips.cmp.eq.ph
mips_cmp_le_ph, // llvm.mips.cmp.le.ph
mips_cmp_lt_ph, // llvm.mips.cmp.lt.ph
mips_cmpgdu_eq_qb, // llvm.mips.cmpgdu.eq.qb
mips_cmpgdu_le_qb, // llvm.mips.cmpgdu.le.qb
mips_cmpgdu_lt_qb, // llvm.mips.cmpgdu.lt.qb
mips_cmpgu_eq_qb, // llvm.mips.cmpgu.eq.qb
mips_cmpgu_le_qb, // llvm.mips.cmpgu.le.qb
mips_cmpgu_lt_qb, // llvm.mips.cmpgu.lt.qb
mips_cmpu_eq_qb, // llvm.mips.cmpu.eq.qb
mips_cmpu_le_qb, // llvm.mips.cmpu.le.qb
mips_cmpu_lt_qb, // llvm.mips.cmpu.lt.qb
mips_copy_s_b, // llvm.mips.copy.s.b
mips_copy_s_d, // llvm.mips.copy.s.d
mips_copy_s_h, // llvm.mips.copy.s.h
mips_copy_s_w, // llvm.mips.copy.s.w
mips_copy_u_b, // llvm.mips.copy.u.b
mips_copy_u_d, // llvm.mips.copy.u.d
mips_copy_u_h, // llvm.mips.copy.u.h
mips_copy_u_w, // llvm.mips.copy.u.w
mips_ctcmsa, // llvm.mips.ctcmsa
mips_div_s_b, // llvm.mips.div.s.b
mips_div_s_d, // llvm.mips.div.s.d
mips_div_s_h, // llvm.mips.div.s.h
mips_div_s_w, // llvm.mips.div.s.w
mips_div_u_b, // llvm.mips.div.u.b
mips_div_u_d, // llvm.mips.div.u.d
mips_div_u_h, // llvm.mips.div.u.h
mips_div_u_w, // llvm.mips.div.u.w
mips_dlsa, // llvm.mips.dlsa
mips_dotp_s_d, // llvm.mips.dotp.s.d
mips_dotp_s_h, // llvm.mips.dotp.s.h
mips_dotp_s_w, // llvm.mips.dotp.s.w
mips_dotp_u_d, // llvm.mips.dotp.u.d
mips_dotp_u_h, // llvm.mips.dotp.u.h
mips_dotp_u_w, // llvm.mips.dotp.u.w
mips_dpa_w_ph, // llvm.mips.dpa.w.ph
mips_dpadd_s_d, // llvm.mips.dpadd.s.d
mips_dpadd_s_h, // llvm.mips.dpadd.s.h
mips_dpadd_s_w, // llvm.mips.dpadd.s.w
mips_dpadd_u_d, // llvm.mips.dpadd.u.d
mips_dpadd_u_h, // llvm.mips.dpadd.u.h
mips_dpadd_u_w, // llvm.mips.dpadd.u.w
mips_dpaq_s_w_ph, // llvm.mips.dpaq.s.w.ph
mips_dpaq_sa_l_w, // llvm.mips.dpaq.sa.l.w
mips_dpaqx_s_w_ph, // llvm.mips.dpaqx.s.w.ph
mips_dpaqx_sa_w_ph, // llvm.mips.dpaqx.sa.w.ph
mips_dpau_h_qbl, // llvm.mips.dpau.h.qbl
mips_dpau_h_qbr, // llvm.mips.dpau.h.qbr
mips_dpax_w_ph, // llvm.mips.dpax.w.ph
mips_dps_w_ph, // llvm.mips.dps.w.ph
mips_dpsq_s_w_ph, // llvm.mips.dpsq.s.w.ph
mips_dpsq_sa_l_w, // llvm.mips.dpsq.sa.l.w
mips_dpsqx_s_w_ph, // llvm.mips.dpsqx.s.w.ph
mips_dpsqx_sa_w_ph, // llvm.mips.dpsqx.sa.w.ph
mips_dpsu_h_qbl, // llvm.mips.dpsu.h.qbl
mips_dpsu_h_qbr, // llvm.mips.dpsu.h.qbr
mips_dpsub_s_d, // llvm.mips.dpsub.s.d
mips_dpsub_s_h, // llvm.mips.dpsub.s.h
mips_dpsub_s_w, // llvm.mips.dpsub.s.w
mips_dpsub_u_d, // llvm.mips.dpsub.u.d
mips_dpsub_u_h, // llvm.mips.dpsub.u.h
mips_dpsub_u_w, // llvm.mips.dpsub.u.w
mips_dpsx_w_ph, // llvm.mips.dpsx.w.ph
mips_extp, // llvm.mips.extp
mips_extpdp, // llvm.mips.extpdp
mips_extr_r_w, // llvm.mips.extr.r.w
mips_extr_rs_w, // llvm.mips.extr.rs.w
mips_extr_s_h, // llvm.mips.extr.s.h
mips_extr_w, // llvm.mips.extr.w
mips_fadd_d, // llvm.mips.fadd.d
mips_fadd_w, // llvm.mips.fadd.w
mips_fcaf_d, // llvm.mips.fcaf.d
mips_fcaf_w, // llvm.mips.fcaf.w
mips_fceq_d, // llvm.mips.fceq.d
mips_fceq_w, // llvm.mips.fceq.w
mips_fclass_d, // llvm.mips.fclass.d
mips_fclass_w, // llvm.mips.fclass.w
mips_fcle_d, // llvm.mips.fcle.d
mips_fcle_w, // llvm.mips.fcle.w
mips_fclt_d, // llvm.mips.fclt.d
mips_fclt_w, // llvm.mips.fclt.w
mips_fcne_d, // llvm.mips.fcne.d
mips_fcne_w, // llvm.mips.fcne.w
mips_fcor_d, // llvm.mips.fcor.d
mips_fcor_w, // llvm.mips.fcor.w
mips_fcueq_d, // llvm.mips.fcueq.d
mips_fcueq_w, // llvm.mips.fcueq.w
mips_fcule_d, // llvm.mips.fcule.d
mips_fcule_w, // llvm.mips.fcule.w
mips_fcult_d, // llvm.mips.fcult.d
mips_fcult_w, // llvm.mips.fcult.w
mips_fcun_d, // llvm.mips.fcun.d
mips_fcun_w, // llvm.mips.fcun.w
mips_fcune_d, // llvm.mips.fcune.d
mips_fcune_w, // llvm.mips.fcune.w
mips_fdiv_d, // llvm.mips.fdiv.d
mips_fdiv_w, // llvm.mips.fdiv.w
mips_fexdo_h, // llvm.mips.fexdo.h
mips_fexdo_w, // llvm.mips.fexdo.w
mips_fexp2_d, // llvm.mips.fexp2.d
mips_fexp2_w, // llvm.mips.fexp2.w
mips_fexupl_d, // llvm.mips.fexupl.d
mips_fexupl_w, // llvm.mips.fexupl.w
mips_fexupr_d, // llvm.mips.fexupr.d
mips_fexupr_w, // llvm.mips.fexupr.w
mips_ffint_s_d, // llvm.mips.ffint.s.d
mips_ffint_s_w, // llvm.mips.ffint.s.w
mips_ffint_u_d, // llvm.mips.ffint.u.d
mips_ffint_u_w, // llvm.mips.ffint.u.w
mips_ffql_d, // llvm.mips.ffql.d
mips_ffql_w, // llvm.mips.ffql.w
mips_ffqr_d, // llvm.mips.ffqr.d
mips_ffqr_w, // llvm.mips.ffqr.w
mips_fill_b, // llvm.mips.fill.b
mips_fill_d, // llvm.mips.fill.d
mips_fill_h, // llvm.mips.fill.h
mips_fill_w, // llvm.mips.fill.w
mips_flog2_d, // llvm.mips.flog2.d
mips_flog2_w, // llvm.mips.flog2.w
mips_fmadd_d, // llvm.mips.fmadd.d
mips_fmadd_w, // llvm.mips.fmadd.w
mips_fmax_a_d, // llvm.mips.fmax.a.d
mips_fmax_a_w, // llvm.mips.fmax.a.w
mips_fmax_d, // llvm.mips.fmax.d
mips_fmax_w, // llvm.mips.fmax.w
mips_fmin_a_d, // llvm.mips.fmin.a.d
mips_fmin_a_w, // llvm.mips.fmin.a.w
mips_fmin_d, // llvm.mips.fmin.d
mips_fmin_w, // llvm.mips.fmin.w
mips_fmsub_d, // llvm.mips.fmsub.d
mips_fmsub_w, // llvm.mips.fmsub.w
mips_fmul_d, // llvm.mips.fmul.d
mips_fmul_w, // llvm.mips.fmul.w
mips_frcp_d, // llvm.mips.frcp.d
mips_frcp_w, // llvm.mips.frcp.w
mips_frint_d, // llvm.mips.frint.d
mips_frint_w, // llvm.mips.frint.w
mips_frsqrt_d, // llvm.mips.frsqrt.d
mips_frsqrt_w, // llvm.mips.frsqrt.w
mips_fsaf_d, // llvm.mips.fsaf.d
mips_fsaf_w, // llvm.mips.fsaf.w
mips_fseq_d, // llvm.mips.fseq.d
mips_fseq_w, // llvm.mips.fseq.w
mips_fsle_d, // llvm.mips.fsle.d
mips_fsle_w, // llvm.mips.fsle.w
mips_fslt_d, // llvm.mips.fslt.d
mips_fslt_w, // llvm.mips.fslt.w
mips_fsne_d, // llvm.mips.fsne.d
mips_fsne_w, // llvm.mips.fsne.w
mips_fsor_d, // llvm.mips.fsor.d
mips_fsor_w, // llvm.mips.fsor.w
mips_fsqrt_d, // llvm.mips.fsqrt.d
mips_fsqrt_w, // llvm.mips.fsqrt.w
mips_fsub_d, // llvm.mips.fsub.d
mips_fsub_w, // llvm.mips.fsub.w
mips_fsueq_d, // llvm.mips.fsueq.d
mips_fsueq_w, // llvm.mips.fsueq.w
mips_fsule_d, // llvm.mips.fsule.d
mips_fsule_w, // llvm.mips.fsule.w
mips_fsult_d, // llvm.mips.fsult.d
mips_fsult_w, // llvm.mips.fsult.w
mips_fsun_d, // llvm.mips.fsun.d
mips_fsun_w, // llvm.mips.fsun.w
mips_fsune_d, // llvm.mips.fsune.d
mips_fsune_w, // llvm.mips.fsune.w
mips_ftint_s_d, // llvm.mips.ftint.s.d
mips_ftint_s_w, // llvm.mips.ftint.s.w
mips_ftint_u_d, // llvm.mips.ftint.u.d
mips_ftint_u_w, // llvm.mips.ftint.u.w
mips_ftq_h, // llvm.mips.ftq.h
mips_ftq_w, // llvm.mips.ftq.w
mips_ftrunc_s_d, // llvm.mips.ftrunc.s.d
mips_ftrunc_s_w, // llvm.mips.ftrunc.s.w
mips_ftrunc_u_d, // llvm.mips.ftrunc.u.d
mips_ftrunc_u_w, // llvm.mips.ftrunc.u.w
mips_hadd_s_d, // llvm.mips.hadd.s.d
mips_hadd_s_h, // llvm.mips.hadd.s.h
mips_hadd_s_w, // llvm.mips.hadd.s.w
mips_hadd_u_d, // llvm.mips.hadd.u.d
mips_hadd_u_h, // llvm.mips.hadd.u.h
mips_hadd_u_w, // llvm.mips.hadd.u.w
mips_hsub_s_d, // llvm.mips.hsub.s.d
mips_hsub_s_h, // llvm.mips.hsub.s.h
mips_hsub_s_w, // llvm.mips.hsub.s.w
mips_hsub_u_d, // llvm.mips.hsub.u.d
mips_hsub_u_h, // llvm.mips.hsub.u.h
mips_hsub_u_w, // llvm.mips.hsub.u.w
mips_ilvev_b, // llvm.mips.ilvev.b
mips_ilvev_d, // llvm.mips.ilvev.d
mips_ilvev_h, // llvm.mips.ilvev.h
mips_ilvev_w, // llvm.mips.ilvev.w
mips_ilvl_b, // llvm.mips.ilvl.b
mips_ilvl_d, // llvm.mips.ilvl.d
mips_ilvl_h, // llvm.mips.ilvl.h
mips_ilvl_w, // llvm.mips.ilvl.w
mips_ilvod_b, // llvm.mips.ilvod.b
mips_ilvod_d, // llvm.mips.ilvod.d
mips_ilvod_h, // llvm.mips.ilvod.h
mips_ilvod_w, // llvm.mips.ilvod.w
mips_ilvr_b, // llvm.mips.ilvr.b
mips_ilvr_d, // llvm.mips.ilvr.d
mips_ilvr_h, // llvm.mips.ilvr.h
mips_ilvr_w, // llvm.mips.ilvr.w
mips_insert_b, // llvm.mips.insert.b
mips_insert_d, // llvm.mips.insert.d
mips_insert_h, // llvm.mips.insert.h
mips_insert_w, // llvm.mips.insert.w
mips_insv, // llvm.mips.insv
mips_insve_b, // llvm.mips.insve.b
mips_insve_d, // llvm.mips.insve.d
mips_insve_h, // llvm.mips.insve.h
mips_insve_w, // llvm.mips.insve.w
mips_lbux, // llvm.mips.lbux
mips_ld_b, // llvm.mips.ld.b
mips_ld_d, // llvm.mips.ld.d
mips_ld_h, // llvm.mips.ld.h
mips_ld_w, // llvm.mips.ld.w
mips_ldi_b, // llvm.mips.ldi.b
mips_ldi_d, // llvm.mips.ldi.d
mips_ldi_h, // llvm.mips.ldi.h
mips_ldi_w, // llvm.mips.ldi.w
mips_lhx, // llvm.mips.lhx
mips_lsa, // llvm.mips.lsa
mips_lwx, // llvm.mips.lwx
mips_madd, // llvm.mips.madd
mips_madd_q_h, // llvm.mips.madd.q.h
mips_madd_q_w, // llvm.mips.madd.q.w
mips_maddr_q_h, // llvm.mips.maddr.q.h
mips_maddr_q_w, // llvm.mips.maddr.q.w
mips_maddu, // llvm.mips.maddu
mips_maddv_b, // llvm.mips.maddv.b
mips_maddv_d, // llvm.mips.maddv.d
mips_maddv_h, // llvm.mips.maddv.h
mips_maddv_w, // llvm.mips.maddv.w
mips_maq_s_w_phl, // llvm.mips.maq.s.w.phl
mips_maq_s_w_phr, // llvm.mips.maq.s.w.phr
mips_maq_sa_w_phl, // llvm.mips.maq.sa.w.phl
mips_maq_sa_w_phr, // llvm.mips.maq.sa.w.phr
mips_max_a_b, // llvm.mips.max.a.b
mips_max_a_d, // llvm.mips.max.a.d
mips_max_a_h, // llvm.mips.max.a.h
mips_max_a_w, // llvm.mips.max.a.w
mips_max_s_b, // llvm.mips.max.s.b
mips_max_s_d, // llvm.mips.max.s.d
mips_max_s_h, // llvm.mips.max.s.h
mips_max_s_w, // llvm.mips.max.s.w
mips_max_u_b, // llvm.mips.max.u.b
mips_max_u_d, // llvm.mips.max.u.d
mips_max_u_h, // llvm.mips.max.u.h
mips_max_u_w, // llvm.mips.max.u.w
mips_maxi_s_b, // llvm.mips.maxi.s.b
mips_maxi_s_d, // llvm.mips.maxi.s.d
mips_maxi_s_h, // llvm.mips.maxi.s.h
mips_maxi_s_w, // llvm.mips.maxi.s.w
mips_maxi_u_b, // llvm.mips.maxi.u.b
mips_maxi_u_d, // llvm.mips.maxi.u.d
mips_maxi_u_h, // llvm.mips.maxi.u.h
mips_maxi_u_w, // llvm.mips.maxi.u.w
mips_min_a_b, // llvm.mips.min.a.b
mips_min_a_d, // llvm.mips.min.a.d
mips_min_a_h, // llvm.mips.min.a.h
mips_min_a_w, // llvm.mips.min.a.w
mips_min_s_b, // llvm.mips.min.s.b
mips_min_s_d, // llvm.mips.min.s.d
mips_min_s_h, // llvm.mips.min.s.h
mips_min_s_w, // llvm.mips.min.s.w
mips_min_u_b, // llvm.mips.min.u.b
mips_min_u_d, // llvm.mips.min.u.d
mips_min_u_h, // llvm.mips.min.u.h
mips_min_u_w, // llvm.mips.min.u.w
mips_mini_s_b, // llvm.mips.mini.s.b
mips_mini_s_d, // llvm.mips.mini.s.d
mips_mini_s_h, // llvm.mips.mini.s.h
mips_mini_s_w, // llvm.mips.mini.s.w
mips_mini_u_b, // llvm.mips.mini.u.b
mips_mini_u_d, // llvm.mips.mini.u.d
mips_mini_u_h, // llvm.mips.mini.u.h
mips_mini_u_w, // llvm.mips.mini.u.w
mips_mod_s_b, // llvm.mips.mod.s.b
mips_mod_s_d, // llvm.mips.mod.s.d
mips_mod_s_h, // llvm.mips.mod.s.h
mips_mod_s_w, // llvm.mips.mod.s.w
mips_mod_u_b, // llvm.mips.mod.u.b
mips_mod_u_d, // llvm.mips.mod.u.d
mips_mod_u_h, // llvm.mips.mod.u.h
mips_mod_u_w, // llvm.mips.mod.u.w
mips_modsub, // llvm.mips.modsub
mips_move_v, // llvm.mips.move.v
mips_msub, // llvm.mips.msub
mips_msub_q_h, // llvm.mips.msub.q.h
mips_msub_q_w, // llvm.mips.msub.q.w
mips_msubr_q_h, // llvm.mips.msubr.q.h
mips_msubr_q_w, // llvm.mips.msubr.q.w
mips_msubu, // llvm.mips.msubu
mips_msubv_b, // llvm.mips.msubv.b
mips_msubv_d, // llvm.mips.msubv.d
mips_msubv_h, // llvm.mips.msubv.h
mips_msubv_w, // llvm.mips.msubv.w
mips_mthlip, // llvm.mips.mthlip
mips_mul_ph, // llvm.mips.mul.ph
mips_mul_q_h, // llvm.mips.mul.q.h
mips_mul_q_w, // llvm.mips.mul.q.w
mips_mul_s_ph, // llvm.mips.mul.s.ph
mips_muleq_s_w_phl, // llvm.mips.muleq.s.w.phl
mips_muleq_s_w_phr, // llvm.mips.muleq.s.w.phr
mips_muleu_s_ph_qbl, // llvm.mips.muleu.s.ph.qbl
mips_muleu_s_ph_qbr, // llvm.mips.muleu.s.ph.qbr
mips_mulq_rs_ph, // llvm.mips.mulq.rs.ph
mips_mulq_rs_w, // llvm.mips.mulq.rs.w
mips_mulq_s_ph, // llvm.mips.mulq.s.ph
mips_mulq_s_w, // llvm.mips.mulq.s.w
mips_mulr_q_h, // llvm.mips.mulr.q.h
mips_mulr_q_w, // llvm.mips.mulr.q.w
mips_mulsa_w_ph, // llvm.mips.mulsa.w.ph
mips_mulsaq_s_w_ph, // llvm.mips.mulsaq.s.w.ph
mips_mult, // llvm.mips.mult
mips_multu, // llvm.mips.multu
mips_mulv_b, // llvm.mips.mulv.b
mips_mulv_d, // llvm.mips.mulv.d
mips_mulv_h, // llvm.mips.mulv.h
mips_mulv_w, // llvm.mips.mulv.w
mips_nloc_b, // llvm.mips.nloc.b
mips_nloc_d, // llvm.mips.nloc.d
mips_nloc_h, // llvm.mips.nloc.h
mips_nloc_w, // llvm.mips.nloc.w
mips_nlzc_b, // llvm.mips.nlzc.b
mips_nlzc_d, // llvm.mips.nlzc.d
mips_nlzc_h, // llvm.mips.nlzc.h
mips_nlzc_w, // llvm.mips.nlzc.w
mips_nor_v, // llvm.mips.nor.v
mips_nori_b, // llvm.mips.nori.b
mips_or_v, // llvm.mips.or.v
mips_ori_b, // llvm.mips.ori.b
mips_packrl_ph, // llvm.mips.packrl.ph
mips_pckev_b, // llvm.mips.pckev.b
mips_pckev_d, // llvm.mips.pckev.d
mips_pckev_h, // llvm.mips.pckev.h
mips_pckev_w, // llvm.mips.pckev.w
mips_pckod_b, // llvm.mips.pckod.b
mips_pckod_d, // llvm.mips.pckod.d
mips_pckod_h, // llvm.mips.pckod.h
mips_pckod_w, // llvm.mips.pckod.w
mips_pcnt_b, // llvm.mips.pcnt.b
mips_pcnt_d, // llvm.mips.pcnt.d
mips_pcnt_h, // llvm.mips.pcnt.h
mips_pcnt_w, // llvm.mips.pcnt.w
mips_pick_ph, // llvm.mips.pick.ph
mips_pick_qb, // llvm.mips.pick.qb
mips_preceq_w_phl, // llvm.mips.preceq.w.phl
mips_preceq_w_phr, // llvm.mips.preceq.w.phr
mips_precequ_ph_qbl, // llvm.mips.precequ.ph.qbl
mips_precequ_ph_qbla, // llvm.mips.precequ.ph.qbla
mips_precequ_ph_qbr, // llvm.mips.precequ.ph.qbr
mips_precequ_ph_qbra, // llvm.mips.precequ.ph.qbra
mips_preceu_ph_qbl, // llvm.mips.preceu.ph.qbl
mips_preceu_ph_qbla, // llvm.mips.preceu.ph.qbla
mips_preceu_ph_qbr, // llvm.mips.preceu.ph.qbr
mips_preceu_ph_qbra, // llvm.mips.preceu.ph.qbra
mips_precr_qb_ph, // llvm.mips.precr.qb.ph
mips_precr_sra_ph_w, // llvm.mips.precr.sra.ph.w
mips_precr_sra_r_ph_w, // llvm.mips.precr.sra.r.ph.w
mips_precrq_ph_w, // llvm.mips.precrq.ph.w
mips_precrq_qb_ph, // llvm.mips.precrq.qb.ph
mips_precrq_rs_ph_w, // llvm.mips.precrq.rs.ph.w
mips_precrqu_s_qb_ph, // llvm.mips.precrqu.s.qb.ph
mips_prepend, // llvm.mips.prepend
mips_raddu_w_qb, // llvm.mips.raddu.w.qb
mips_rddsp, // llvm.mips.rddsp
mips_repl_ph, // llvm.mips.repl.ph
mips_repl_qb, // llvm.mips.repl.qb
mips_sat_s_b, // llvm.mips.sat.s.b
mips_sat_s_d, // llvm.mips.sat.s.d
mips_sat_s_h, // llvm.mips.sat.s.h
mips_sat_s_w, // llvm.mips.sat.s.w
mips_sat_u_b, // llvm.mips.sat.u.b
mips_sat_u_d, // llvm.mips.sat.u.d
mips_sat_u_h, // llvm.mips.sat.u.h
mips_sat_u_w, // llvm.mips.sat.u.w
mips_shf_b, // llvm.mips.shf.b
mips_shf_h, // llvm.mips.shf.h
mips_shf_w, // llvm.mips.shf.w
mips_shilo, // llvm.mips.shilo
mips_shll_ph, // llvm.mips.shll.ph
mips_shll_qb, // llvm.mips.shll.qb
mips_shll_s_ph, // llvm.mips.shll.s.ph
mips_shll_s_w, // llvm.mips.shll.s.w
mips_shra_ph, // llvm.mips.shra.ph
mips_shra_qb, // llvm.mips.shra.qb
mips_shra_r_ph, // llvm.mips.shra.r.ph
mips_shra_r_qb, // llvm.mips.shra.r.qb
mips_shra_r_w, // llvm.mips.shra.r.w
mips_shrl_ph, // llvm.mips.shrl.ph
mips_shrl_qb, // llvm.mips.shrl.qb
mips_sld_b, // llvm.mips.sld.b
mips_sld_d, // llvm.mips.sld.d
mips_sld_h, // llvm.mips.sld.h
mips_sld_w, // llvm.mips.sld.w
mips_sldi_b, // llvm.mips.sldi.b
mips_sldi_d, // llvm.mips.sldi.d
mips_sldi_h, // llvm.mips.sldi.h
mips_sldi_w, // llvm.mips.sldi.w
mips_sll_b, // llvm.mips.sll.b
mips_sll_d, // llvm.mips.sll.d
mips_sll_h, // llvm.mips.sll.h
mips_sll_w, // llvm.mips.sll.w
mips_slli_b, // llvm.mips.slli.b
mips_slli_d, // llvm.mips.slli.d
mips_slli_h, // llvm.mips.slli.h
mips_slli_w, // llvm.mips.slli.w
mips_splat_b, // llvm.mips.splat.b
mips_splat_d, // llvm.mips.splat.d
mips_splat_h, // llvm.mips.splat.h
mips_splat_w, // llvm.mips.splat.w
mips_splati_b, // llvm.mips.splati.b
mips_splati_d, // llvm.mips.splati.d
mips_splati_h, // llvm.mips.splati.h
mips_splati_w, // llvm.mips.splati.w
mips_sra_b, // llvm.mips.sra.b
mips_sra_d, // llvm.mips.sra.d
mips_sra_h, // llvm.mips.sra.h
mips_sra_w, // llvm.mips.sra.w
mips_srai_b, // llvm.mips.srai.b
mips_srai_d, // llvm.mips.srai.d
mips_srai_h, // llvm.mips.srai.h
mips_srai_w, // llvm.mips.srai.w
mips_srar_b, // llvm.mips.srar.b
mips_srar_d, // llvm.mips.srar.d
mips_srar_h, // llvm.mips.srar.h
mips_srar_w, // llvm.mips.srar.w
mips_srari_b, // llvm.mips.srari.b
mips_srari_d, // llvm.mips.srari.d
mips_srari_h, // llvm.mips.srari.h
mips_srari_w, // llvm.mips.srari.w
mips_srl_b, // llvm.mips.srl.b
mips_srl_d, // llvm.mips.srl.d
mips_srl_h, // llvm.mips.srl.h
mips_srl_w, // llvm.mips.srl.w
mips_srli_b, // llvm.mips.srli.b
mips_srli_d, // llvm.mips.srli.d
mips_srli_h, // llvm.mips.srli.h
mips_srli_w, // llvm.mips.srli.w
mips_srlr_b, // llvm.mips.srlr.b
mips_srlr_d, // llvm.mips.srlr.d
mips_srlr_h, // llvm.mips.srlr.h
mips_srlr_w, // llvm.mips.srlr.w
mips_srlri_b, // llvm.mips.srlri.b
mips_srlri_d, // llvm.mips.srlri.d
mips_srlri_h, // llvm.mips.srlri.h
mips_srlri_w, // llvm.mips.srlri.w
mips_st_b, // llvm.mips.st.b
mips_st_d, // llvm.mips.st.d
mips_st_h, // llvm.mips.st.h
mips_st_w, // llvm.mips.st.w
mips_subq_ph, // llvm.mips.subq.ph
mips_subq_s_ph, // llvm.mips.subq.s.ph
mips_subq_s_w, // llvm.mips.subq.s.w
mips_subqh_ph, // llvm.mips.subqh.ph
mips_subqh_r_ph, // llvm.mips.subqh.r.ph
mips_subqh_r_w, // llvm.mips.subqh.r.w
mips_subqh_w, // llvm.mips.subqh.w
mips_subs_s_b, // llvm.mips.subs.s.b
mips_subs_s_d, // llvm.mips.subs.s.d
mips_subs_s_h, // llvm.mips.subs.s.h
mips_subs_s_w, // llvm.mips.subs.s.w
mips_subs_u_b, // llvm.mips.subs.u.b
mips_subs_u_d, // llvm.mips.subs.u.d
mips_subs_u_h, // llvm.mips.subs.u.h
mips_subs_u_w, // llvm.mips.subs.u.w
mips_subsus_u_b, // llvm.mips.subsus.u.b
mips_subsus_u_d, // llvm.mips.subsus.u.d
mips_subsus_u_h, // llvm.mips.subsus.u.h
mips_subsus_u_w, // llvm.mips.subsus.u.w
mips_subsuu_s_b, // llvm.mips.subsuu.s.b
mips_subsuu_s_d, // llvm.mips.subsuu.s.d
mips_subsuu_s_h, // llvm.mips.subsuu.s.h
mips_subsuu_s_w, // llvm.mips.subsuu.s.w
mips_subu_ph, // llvm.mips.subu.ph
mips_subu_qb, // llvm.mips.subu.qb
mips_subu_s_ph, // llvm.mips.subu.s.ph
mips_subu_s_qb, // llvm.mips.subu.s.qb
mips_subuh_qb, // llvm.mips.subuh.qb
mips_subuh_r_qb, // llvm.mips.subuh.r.qb
mips_subv_b, // llvm.mips.subv.b
mips_subv_d, // llvm.mips.subv.d
mips_subv_h, // llvm.mips.subv.h
mips_subv_w, // llvm.mips.subv.w
mips_subvi_b, // llvm.mips.subvi.b
mips_subvi_d, // llvm.mips.subvi.d
mips_subvi_h, // llvm.mips.subvi.h
mips_subvi_w, // llvm.mips.subvi.w
mips_vshf_b, // llvm.mips.vshf.b
mips_vshf_d, // llvm.mips.vshf.d
mips_vshf_h, // llvm.mips.vshf.h
mips_vshf_w, // llvm.mips.vshf.w
mips_wrdsp, // llvm.mips.wrdsp
mips_xor_v, // llvm.mips.xor.v
mips_xori_b, // llvm.mips.xori.b
nvvm_add_rm_d, // llvm.nvvm.add.rm.d
nvvm_add_rm_f, // llvm.nvvm.add.rm.f
nvvm_add_rm_ftz_f, // llvm.nvvm.add.rm.ftz.f
nvvm_add_rn_d, // llvm.nvvm.add.rn.d
nvvm_add_rn_f, // llvm.nvvm.add.rn.f
nvvm_add_rn_ftz_f, // llvm.nvvm.add.rn.ftz.f
nvvm_add_rp_d, // llvm.nvvm.add.rp.d
nvvm_add_rp_f, // llvm.nvvm.add.rp.f
nvvm_add_rp_ftz_f, // llvm.nvvm.add.rp.ftz.f
nvvm_add_rz_d, // llvm.nvvm.add.rz.d
nvvm_add_rz_f, // llvm.nvvm.add.rz.f
nvvm_add_rz_ftz_f, // llvm.nvvm.add.rz.ftz.f
nvvm_atomic_add_gen_f_cta, // llvm.nvvm.atomic.add.gen.f.cta
nvvm_atomic_add_gen_f_sys, // llvm.nvvm.atomic.add.gen.f.sys
nvvm_atomic_add_gen_i_cta, // llvm.nvvm.atomic.add.gen.i.cta
nvvm_atomic_add_gen_i_sys, // llvm.nvvm.atomic.add.gen.i.sys
nvvm_atomic_and_gen_i_cta, // llvm.nvvm.atomic.and.gen.i.cta
nvvm_atomic_and_gen_i_sys, // llvm.nvvm.atomic.and.gen.i.sys
nvvm_atomic_cas_gen_i_cta, // llvm.nvvm.atomic.cas.gen.i.cta
nvvm_atomic_cas_gen_i_sys, // llvm.nvvm.atomic.cas.gen.i.sys
nvvm_atomic_dec_gen_i_cta, // llvm.nvvm.atomic.dec.gen.i.cta
nvvm_atomic_dec_gen_i_sys, // llvm.nvvm.atomic.dec.gen.i.sys
nvvm_atomic_exch_gen_i_cta, // llvm.nvvm.atomic.exch.gen.i.cta
nvvm_atomic_exch_gen_i_sys, // llvm.nvvm.atomic.exch.gen.i.sys
nvvm_atomic_inc_gen_i_cta, // llvm.nvvm.atomic.inc.gen.i.cta
nvvm_atomic_inc_gen_i_sys, // llvm.nvvm.atomic.inc.gen.i.sys
nvvm_atomic_load_dec_32, // llvm.nvvm.atomic.load.dec.32
nvvm_atomic_load_inc_32, // llvm.nvvm.atomic.load.inc.32
nvvm_atomic_max_gen_i_cta, // llvm.nvvm.atomic.max.gen.i.cta
nvvm_atomic_max_gen_i_sys, // llvm.nvvm.atomic.max.gen.i.sys
nvvm_atomic_min_gen_i_cta, // llvm.nvvm.atomic.min.gen.i.cta
nvvm_atomic_min_gen_i_sys, // llvm.nvvm.atomic.min.gen.i.sys
nvvm_atomic_or_gen_i_cta, // llvm.nvvm.atomic.or.gen.i.cta
nvvm_atomic_or_gen_i_sys, // llvm.nvvm.atomic.or.gen.i.sys
nvvm_atomic_xor_gen_i_cta, // llvm.nvvm.atomic.xor.gen.i.cta
nvvm_atomic_xor_gen_i_sys, // llvm.nvvm.atomic.xor.gen.i.sys
nvvm_bar_sync, // llvm.nvvm.bar.sync
nvvm_bar_warp_sync, // llvm.nvvm.bar.warp.sync
nvvm_barrier, // llvm.nvvm.barrier
nvvm_barrier_n, // llvm.nvvm.barrier.n
nvvm_barrier_sync, // llvm.nvvm.barrier.sync
nvvm_barrier_sync_cnt, // llvm.nvvm.barrier.sync.cnt
nvvm_barrier0, // llvm.nvvm.barrier0
nvvm_barrier0_and, // llvm.nvvm.barrier0.and
nvvm_barrier0_or, // llvm.nvvm.barrier0.or
nvvm_barrier0_popc, // llvm.nvvm.barrier0.popc
nvvm_bitcast_d2ll, // llvm.nvvm.bitcast.d2ll
nvvm_bitcast_f2i, // llvm.nvvm.bitcast.f2i
nvvm_bitcast_i2f, // llvm.nvvm.bitcast.i2f
nvvm_bitcast_ll2d, // llvm.nvvm.bitcast.ll2d
nvvm_ceil_d, // llvm.nvvm.ceil.d
nvvm_ceil_f, // llvm.nvvm.ceil.f
nvvm_ceil_ftz_f, // llvm.nvvm.ceil.ftz.f
nvvm_compiler_error, // llvm.nvvm.compiler.error
nvvm_compiler_warn, // llvm.nvvm.compiler.warn
nvvm_cos_approx_f, // llvm.nvvm.cos.approx.f
nvvm_cos_approx_ftz_f, // llvm.nvvm.cos.approx.ftz.f
nvvm_d2f_rm, // llvm.nvvm.d2f.rm
nvvm_d2f_rm_ftz, // llvm.nvvm.d2f.rm.ftz
nvvm_d2f_rn, // llvm.nvvm.d2f.rn
nvvm_d2f_rn_ftz, // llvm.nvvm.d2f.rn.ftz
nvvm_d2f_rp, // llvm.nvvm.d2f.rp
nvvm_d2f_rp_ftz, // llvm.nvvm.d2f.rp.ftz
nvvm_d2f_rz, // llvm.nvvm.d2f.rz
nvvm_d2f_rz_ftz, // llvm.nvvm.d2f.rz.ftz
nvvm_d2i_hi, // llvm.nvvm.d2i.hi
nvvm_d2i_lo, // llvm.nvvm.d2i.lo
nvvm_d2i_rm, // llvm.nvvm.d2i.rm
nvvm_d2i_rn, // llvm.nvvm.d2i.rn
nvvm_d2i_rp, // llvm.nvvm.d2i.rp
nvvm_d2i_rz, // llvm.nvvm.d2i.rz
nvvm_d2ll_rm, // llvm.nvvm.d2ll.rm
nvvm_d2ll_rn, // llvm.nvvm.d2ll.rn
nvvm_d2ll_rp, // llvm.nvvm.d2ll.rp
nvvm_d2ll_rz, // llvm.nvvm.d2ll.rz
nvvm_d2ui_rm, // llvm.nvvm.d2ui.rm
nvvm_d2ui_rn, // llvm.nvvm.d2ui.rn
nvvm_d2ui_rp, // llvm.nvvm.d2ui.rp
nvvm_d2ui_rz, // llvm.nvvm.d2ui.rz
nvvm_d2ull_rm, // llvm.nvvm.d2ull.rm
nvvm_d2ull_rn, // llvm.nvvm.d2ull.rn
nvvm_d2ull_rp, // llvm.nvvm.d2ull.rp
nvvm_d2ull_rz, // llvm.nvvm.d2ull.rz
nvvm_div_approx_f, // llvm.nvvm.div.approx.f
nvvm_div_approx_ftz_f, // llvm.nvvm.div.approx.ftz.f
nvvm_div_rm_d, // llvm.nvvm.div.rm.d
nvvm_div_rm_f, // llvm.nvvm.div.rm.f
nvvm_div_rm_ftz_f, // llvm.nvvm.div.rm.ftz.f
nvvm_div_rn_d, // llvm.nvvm.div.rn.d
nvvm_div_rn_f, // llvm.nvvm.div.rn.f
nvvm_div_rn_ftz_f, // llvm.nvvm.div.rn.ftz.f
nvvm_div_rp_d, // llvm.nvvm.div.rp.d
nvvm_div_rp_f, // llvm.nvvm.div.rp.f
nvvm_div_rp_ftz_f, // llvm.nvvm.div.rp.ftz.f
nvvm_div_rz_d, // llvm.nvvm.div.rz.d
nvvm_div_rz_f, // llvm.nvvm.div.rz.f
nvvm_div_rz_ftz_f, // llvm.nvvm.div.rz.ftz.f
nvvm_ex2_approx_d, // llvm.nvvm.ex2.approx.d
nvvm_ex2_approx_f, // llvm.nvvm.ex2.approx.f
nvvm_ex2_approx_ftz_f, // llvm.nvvm.ex2.approx.ftz.f
nvvm_f2h_rn, // llvm.nvvm.f2h.rn
nvvm_f2h_rn_ftz, // llvm.nvvm.f2h.rn.ftz
nvvm_f2i_rm, // llvm.nvvm.f2i.rm
nvvm_f2i_rm_ftz, // llvm.nvvm.f2i.rm.ftz
nvvm_f2i_rn, // llvm.nvvm.f2i.rn
nvvm_f2i_rn_ftz, // llvm.nvvm.f2i.rn.ftz
nvvm_f2i_rp, // llvm.nvvm.f2i.rp
nvvm_f2i_rp_ftz, // llvm.nvvm.f2i.rp.ftz
nvvm_f2i_rz, // llvm.nvvm.f2i.rz
nvvm_f2i_rz_ftz, // llvm.nvvm.f2i.rz.ftz
nvvm_f2ll_rm, // llvm.nvvm.f2ll.rm
nvvm_f2ll_rm_ftz, // llvm.nvvm.f2ll.rm.ftz
nvvm_f2ll_rn, // llvm.nvvm.f2ll.rn
nvvm_f2ll_rn_ftz, // llvm.nvvm.f2ll.rn.ftz
nvvm_f2ll_rp, // llvm.nvvm.f2ll.rp
nvvm_f2ll_rp_ftz, // llvm.nvvm.f2ll.rp.ftz
nvvm_f2ll_rz, // llvm.nvvm.f2ll.rz
nvvm_f2ll_rz_ftz, // llvm.nvvm.f2ll.rz.ftz
nvvm_f2ui_rm, // llvm.nvvm.f2ui.rm
nvvm_f2ui_rm_ftz, // llvm.nvvm.f2ui.rm.ftz
nvvm_f2ui_rn, // llvm.nvvm.f2ui.rn
nvvm_f2ui_rn_ftz, // llvm.nvvm.f2ui.rn.ftz
nvvm_f2ui_rp, // llvm.nvvm.f2ui.rp
nvvm_f2ui_rp_ftz, // llvm.nvvm.f2ui.rp.ftz
nvvm_f2ui_rz, // llvm.nvvm.f2ui.rz
nvvm_f2ui_rz_ftz, // llvm.nvvm.f2ui.rz.ftz
nvvm_f2ull_rm, // llvm.nvvm.f2ull.rm
nvvm_f2ull_rm_ftz, // llvm.nvvm.f2ull.rm.ftz
nvvm_f2ull_rn, // llvm.nvvm.f2ull.rn
nvvm_f2ull_rn_ftz, // llvm.nvvm.f2ull.rn.ftz
nvvm_f2ull_rp, // llvm.nvvm.f2ull.rp
nvvm_f2ull_rp_ftz, // llvm.nvvm.f2ull.rp.ftz
nvvm_f2ull_rz, // llvm.nvvm.f2ull.rz
nvvm_f2ull_rz_ftz, // llvm.nvvm.f2ull.rz.ftz
nvvm_fabs_d, // llvm.nvvm.fabs.d
nvvm_fabs_f, // llvm.nvvm.fabs.f
nvvm_fabs_ftz_f, // llvm.nvvm.fabs.ftz.f
nvvm_floor_d, // llvm.nvvm.floor.d
nvvm_floor_f, // llvm.nvvm.floor.f
nvvm_floor_ftz_f, // llvm.nvvm.floor.ftz.f
nvvm_fma_rm_d, // llvm.nvvm.fma.rm.d
nvvm_fma_rm_f, // llvm.nvvm.fma.rm.f
nvvm_fma_rm_ftz_f, // llvm.nvvm.fma.rm.ftz.f
nvvm_fma_rn_d, // llvm.nvvm.fma.rn.d
nvvm_fma_rn_f, // llvm.nvvm.fma.rn.f
nvvm_fma_rn_ftz_f, // llvm.nvvm.fma.rn.ftz.f
nvvm_fma_rp_d, // llvm.nvvm.fma.rp.d
nvvm_fma_rp_f, // llvm.nvvm.fma.rp.f
nvvm_fma_rp_ftz_f, // llvm.nvvm.fma.rp.ftz.f
nvvm_fma_rz_d, // llvm.nvvm.fma.rz.d
nvvm_fma_rz_f, // llvm.nvvm.fma.rz.f
nvvm_fma_rz_ftz_f, // llvm.nvvm.fma.rz.ftz.f
nvvm_fmax_d, // llvm.nvvm.fmax.d
nvvm_fmax_f, // llvm.nvvm.fmax.f
nvvm_fmax_ftz_f, // llvm.nvvm.fmax.ftz.f
nvvm_fmin_d, // llvm.nvvm.fmin.d
nvvm_fmin_f, // llvm.nvvm.fmin.f
nvvm_fmin_ftz_f, // llvm.nvvm.fmin.ftz.f
nvvm_fns, // llvm.nvvm.fns
nvvm_i2d_rm, // llvm.nvvm.i2d.rm
nvvm_i2d_rn, // llvm.nvvm.i2d.rn
nvvm_i2d_rp, // llvm.nvvm.i2d.rp
nvvm_i2d_rz, // llvm.nvvm.i2d.rz
nvvm_i2f_rm, // llvm.nvvm.i2f.rm
nvvm_i2f_rn, // llvm.nvvm.i2f.rn
nvvm_i2f_rp, // llvm.nvvm.i2f.rp
nvvm_i2f_rz, // llvm.nvvm.i2f.rz
nvvm_isspacep_const, // llvm.nvvm.isspacep.const
nvvm_isspacep_global, // llvm.nvvm.isspacep.global
nvvm_isspacep_local, // llvm.nvvm.isspacep.local
nvvm_isspacep_shared, // llvm.nvvm.isspacep.shared
nvvm_istypep_sampler, // llvm.nvvm.istypep.sampler
nvvm_istypep_surface, // llvm.nvvm.istypep.surface
nvvm_istypep_texture, // llvm.nvvm.istypep.texture
nvvm_ldg_global_f, // llvm.nvvm.ldg.global.f
nvvm_ldg_global_i, // llvm.nvvm.ldg.global.i
nvvm_ldg_global_p, // llvm.nvvm.ldg.global.p
nvvm_ldu_global_f, // llvm.nvvm.ldu.global.f
nvvm_ldu_global_i, // llvm.nvvm.ldu.global.i
nvvm_ldu_global_p, // llvm.nvvm.ldu.global.p
nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d
nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f
nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f
nvvm_ll2d_rm, // llvm.nvvm.ll2d.rm
nvvm_ll2d_rn, // llvm.nvvm.ll2d.rn
nvvm_ll2d_rp, // llvm.nvvm.ll2d.rp
nvvm_ll2d_rz, // llvm.nvvm.ll2d.rz
nvvm_ll2f_rm, // llvm.nvvm.ll2f.rm
nvvm_ll2f_rn, // llvm.nvvm.ll2f.rn
nvvm_ll2f_rp, // llvm.nvvm.ll2f.rp
nvvm_ll2f_rz, // llvm.nvvm.ll2f.rz
nvvm_lohi_i2d, // llvm.nvvm.lohi.i2d
nvvm_match_all_sync_i32p, // llvm.nvvm.match.all.sync.i32p
nvvm_match_all_sync_i64p, // llvm.nvvm.match.all.sync.i64p
nvvm_match_any_sync_i32, // llvm.nvvm.match.any.sync.i32
nvvm_match_any_sync_i64, // llvm.nvvm.match.any.sync.i64
nvvm_membar_cta, // llvm.nvvm.membar.cta
nvvm_membar_gl, // llvm.nvvm.membar.gl
nvvm_membar_sys, // llvm.nvvm.membar.sys
nvvm_mma_m8n8k4_col_col_f16_f16, // llvm.nvvm.mma.m8n8k4.col.col.f16.f16
nvvm_mma_m8n8k4_col_col_f32_f16, // llvm.nvvm.mma.m8n8k4.col.col.f32.f16
nvvm_mma_m8n8k4_col_col_f32_f32, // llvm.nvvm.mma.m8n8k4.col.col.f32.f32
nvvm_mma_m8n8k4_col_row_f16_f16, // llvm.nvvm.mma.m8n8k4.col.row.f16.f16
nvvm_mma_m8n8k4_col_row_f32_f16, // llvm.nvvm.mma.m8n8k4.col.row.f32.f16
nvvm_mma_m8n8k4_col_row_f32_f32, // llvm.nvvm.mma.m8n8k4.col.row.f32.f32
nvvm_mma_m8n8k4_row_col_f16_f16, // llvm.nvvm.mma.m8n8k4.row.col.f16.f16
nvvm_mma_m8n8k4_row_col_f32_f16, // llvm.nvvm.mma.m8n8k4.row.col.f32.f16
nvvm_mma_m8n8k4_row_col_f32_f32, // llvm.nvvm.mma.m8n8k4.row.col.f32.f32
nvvm_mma_m8n8k4_row_row_f16_f16, // llvm.nvvm.mma.m8n8k4.row.row.f16.f16
nvvm_mma_m8n8k4_row_row_f32_f16, // llvm.nvvm.mma.m8n8k4.row.row.f32.f16
nvvm_mma_m8n8k4_row_row_f32_f32, // llvm.nvvm.mma.m8n8k4.row.row.f32.f32
nvvm_move_double, // llvm.nvvm.move.double
nvvm_move_float, // llvm.nvvm.move.float
nvvm_move_i16, // llvm.nvvm.move.i16
nvvm_move_i32, // llvm.nvvm.move.i32
nvvm_move_i64, // llvm.nvvm.move.i64
nvvm_move_ptr, // llvm.nvvm.move.ptr
nvvm_mul_rm_d, // llvm.nvvm.mul.rm.d
nvvm_mul_rm_f, // llvm.nvvm.mul.rm.f
nvvm_mul_rm_ftz_f, // llvm.nvvm.mul.rm.ftz.f
nvvm_mul_rn_d, // llvm.nvvm.mul.rn.d
nvvm_mul_rn_f, // llvm.nvvm.mul.rn.f
nvvm_mul_rn_ftz_f, // llvm.nvvm.mul.rn.ftz.f
nvvm_mul_rp_d, // llvm.nvvm.mul.rp.d
nvvm_mul_rp_f, // llvm.nvvm.mul.rp.f
nvvm_mul_rp_ftz_f, // llvm.nvvm.mul.rp.ftz.f
nvvm_mul_rz_d, // llvm.nvvm.mul.rz.d
nvvm_mul_rz_f, // llvm.nvvm.mul.rz.f
nvvm_mul_rz_ftz_f, // llvm.nvvm.mul.rz.ftz.f
nvvm_mul24_i, // llvm.nvvm.mul24.i
nvvm_mul24_ui, // llvm.nvvm.mul24.ui
nvvm_mulhi_i, // llvm.nvvm.mulhi.i
nvvm_mulhi_ll, // llvm.nvvm.mulhi.ll
nvvm_mulhi_ui, // llvm.nvvm.mulhi.ui
nvvm_mulhi_ull, // llvm.nvvm.mulhi.ull
nvvm_prmt, // llvm.nvvm.prmt
nvvm_ptr_constant_to_gen, // llvm.nvvm.ptr.constant.to.gen
nvvm_ptr_gen_to_constant, // llvm.nvvm.ptr.gen.to.constant
nvvm_ptr_gen_to_global, // llvm.nvvm.ptr.gen.to.global
nvvm_ptr_gen_to_local, // llvm.nvvm.ptr.gen.to.local
nvvm_ptr_gen_to_param, // llvm.nvvm.ptr.gen.to.param
nvvm_ptr_gen_to_shared, // llvm.nvvm.ptr.gen.to.shared
nvvm_ptr_global_to_gen, // llvm.nvvm.ptr.global.to.gen
nvvm_ptr_local_to_gen, // llvm.nvvm.ptr.local.to.gen
nvvm_ptr_shared_to_gen, // llvm.nvvm.ptr.shared.to.gen
nvvm_rcp_approx_ftz_d, // llvm.nvvm.rcp.approx.ftz.d
nvvm_rcp_rm_d, // llvm.nvvm.rcp.rm.d
nvvm_rcp_rm_f, // llvm.nvvm.rcp.rm.f
nvvm_rcp_rm_ftz_f, // llvm.nvvm.rcp.rm.ftz.f
nvvm_rcp_rn_d, // llvm.nvvm.rcp.rn.d
nvvm_rcp_rn_f, // llvm.nvvm.rcp.rn.f
nvvm_rcp_rn_ftz_f, // llvm.nvvm.rcp.rn.ftz.f
nvvm_rcp_rp_d, // llvm.nvvm.rcp.rp.d
nvvm_rcp_rp_f, // llvm.nvvm.rcp.rp.f
nvvm_rcp_rp_ftz_f, // llvm.nvvm.rcp.rp.ftz.f
nvvm_rcp_rz_d, // llvm.nvvm.rcp.rz.d
nvvm_rcp_rz_f, // llvm.nvvm.rcp.rz.f
nvvm_rcp_rz_ftz_f, // llvm.nvvm.rcp.rz.ftz.f
nvvm_read_ptx_sreg_clock, // llvm.nvvm.read.ptx.sreg.clock
nvvm_read_ptx_sreg_clock64, // llvm.nvvm.read.ptx.sreg.clock64
nvvm_read_ptx_sreg_ctaid_w, // llvm.nvvm.read.ptx.sreg.ctaid.w
nvvm_read_ptx_sreg_ctaid_x, // llvm.nvvm.read.ptx.sreg.ctaid.x
nvvm_read_ptx_sreg_ctaid_y, // llvm.nvvm.read.ptx.sreg.ctaid.y
nvvm_read_ptx_sreg_ctaid_z, // llvm.nvvm.read.ptx.sreg.ctaid.z
nvvm_read_ptx_sreg_envreg0, // llvm.nvvm.read.ptx.sreg.envreg0
nvvm_read_ptx_sreg_envreg1, // llvm.nvvm.read.ptx.sreg.envreg1
nvvm_read_ptx_sreg_envreg10, // llvm.nvvm.read.ptx.sreg.envreg10
nvvm_read_ptx_sreg_envreg11, // llvm.nvvm.read.ptx.sreg.envreg11
nvvm_read_ptx_sreg_envreg12, // llvm.nvvm.read.ptx.sreg.envreg12
nvvm_read_ptx_sreg_envreg13, // llvm.nvvm.read.ptx.sreg.envreg13
nvvm_read_ptx_sreg_envreg14, // llvm.nvvm.read.ptx.sreg.envreg14
nvvm_read_ptx_sreg_envreg15, // llvm.nvvm.read.ptx.sreg.envreg15
nvvm_read_ptx_sreg_envreg16, // llvm.nvvm.read.ptx.sreg.envreg16
nvvm_read_ptx_sreg_envreg17, // llvm.nvvm.read.ptx.sreg.envreg17
nvvm_read_ptx_sreg_envreg18, // llvm.nvvm.read.ptx.sreg.envreg18
nvvm_read_ptx_sreg_envreg19, // llvm.nvvm.read.ptx.sreg.envreg19
nvvm_read_ptx_sreg_envreg2, // llvm.nvvm.read.ptx.sreg.envreg2
nvvm_read_ptx_sreg_envreg20, // llvm.nvvm.read.ptx.sreg.envreg20
nvvm_read_ptx_sreg_envreg21, // llvm.nvvm.read.ptx.sreg.envreg21
nvvm_read_ptx_sreg_envreg22, // llvm.nvvm.read.ptx.sreg.envreg22
nvvm_read_ptx_sreg_envreg23, // llvm.nvvm.read.ptx.sreg.envreg23
nvvm_read_ptx_sreg_envreg24, // llvm.nvvm.read.ptx.sreg.envreg24
nvvm_read_ptx_sreg_envreg25, // llvm.nvvm.read.ptx.sreg.envreg25
nvvm_read_ptx_sreg_envreg26, // llvm.nvvm.read.ptx.sreg.envreg26
nvvm_read_ptx_sreg_envreg27, // llvm.nvvm.read.ptx.sreg.envreg27
nvvm_read_ptx_sreg_envreg28, // llvm.nvvm.read.ptx.sreg.envreg28
nvvm_read_ptx_sreg_envreg29, // llvm.nvvm.read.ptx.sreg.envreg29
nvvm_read_ptx_sreg_envreg3, // llvm.nvvm.read.ptx.sreg.envreg3
nvvm_read_ptx_sreg_envreg30, // llvm.nvvm.read.ptx.sreg.envreg30
nvvm_read_ptx_sreg_envreg31, // llvm.nvvm.read.ptx.sreg.envreg31
nvvm_read_ptx_sreg_envreg4, // llvm.nvvm.read.ptx.sreg.envreg4
nvvm_read_ptx_sreg_envreg5, // llvm.nvvm.read.ptx.sreg.envreg5
nvvm_read_ptx_sreg_envreg6, // llvm.nvvm.read.ptx.sreg.envreg6
nvvm_read_ptx_sreg_envreg7, // llvm.nvvm.read.ptx.sreg.envreg7
nvvm_read_ptx_sreg_envreg8, // llvm.nvvm.read.ptx.sreg.envreg8
nvvm_read_ptx_sreg_envreg9, // llvm.nvvm.read.ptx.sreg.envreg9
nvvm_read_ptx_sreg_gridid, // llvm.nvvm.read.ptx.sreg.gridid
nvvm_read_ptx_sreg_laneid, // llvm.nvvm.read.ptx.sreg.laneid
nvvm_read_ptx_sreg_lanemask_eq, // llvm.nvvm.read.ptx.sreg.lanemask.eq
nvvm_read_ptx_sreg_lanemask_ge, // llvm.nvvm.read.ptx.sreg.lanemask.ge
nvvm_read_ptx_sreg_lanemask_gt, // llvm.nvvm.read.ptx.sreg.lanemask.gt
nvvm_read_ptx_sreg_lanemask_le, // llvm.nvvm.read.ptx.sreg.lanemask.le
nvvm_read_ptx_sreg_lanemask_lt, // llvm.nvvm.read.ptx.sreg.lanemask.lt
nvvm_read_ptx_sreg_nctaid_w, // llvm.nvvm.read.ptx.sreg.nctaid.w
nvvm_read_ptx_sreg_nctaid_x, // llvm.nvvm.read.ptx.sreg.nctaid.x
nvvm_read_ptx_sreg_nctaid_y, // llvm.nvvm.read.ptx.sreg.nctaid.y
nvvm_read_ptx_sreg_nctaid_z, // llvm.nvvm.read.ptx.sreg.nctaid.z
nvvm_read_ptx_sreg_nsmid, // llvm.nvvm.read.ptx.sreg.nsmid
nvvm_read_ptx_sreg_ntid_w, // llvm.nvvm.read.ptx.sreg.ntid.w
nvvm_read_ptx_sreg_ntid_x, // llvm.nvvm.read.ptx.sreg.ntid.x
nvvm_read_ptx_sreg_ntid_y, // llvm.nvvm.read.ptx.sreg.ntid.y
nvvm_read_ptx_sreg_ntid_z, // llvm.nvvm.read.ptx.sreg.ntid.z
nvvm_read_ptx_sreg_nwarpid, // llvm.nvvm.read.ptx.sreg.nwarpid
nvvm_read_ptx_sreg_pm0, // llvm.nvvm.read.ptx.sreg.pm0
nvvm_read_ptx_sreg_pm1, // llvm.nvvm.read.ptx.sreg.pm1
nvvm_read_ptx_sreg_pm2, // llvm.nvvm.read.ptx.sreg.pm2
nvvm_read_ptx_sreg_pm3, // llvm.nvvm.read.ptx.sreg.pm3
nvvm_read_ptx_sreg_smid, // llvm.nvvm.read.ptx.sreg.smid
nvvm_read_ptx_sreg_tid_w, // llvm.nvvm.read.ptx.sreg.tid.w
nvvm_read_ptx_sreg_tid_x, // llvm.nvvm.read.ptx.sreg.tid.x
nvvm_read_ptx_sreg_tid_y, // llvm.nvvm.read.ptx.sreg.tid.y
nvvm_read_ptx_sreg_tid_z, // llvm.nvvm.read.ptx.sreg.tid.z
nvvm_read_ptx_sreg_warpid, // llvm.nvvm.read.ptx.sreg.warpid
nvvm_read_ptx_sreg_warpsize, // llvm.nvvm.read.ptx.sreg.warpsize
nvvm_reflect, // llvm.nvvm.reflect
nvvm_rotate_b32, // llvm.nvvm.rotate.b32
nvvm_rotate_b64, // llvm.nvvm.rotate.b64
nvvm_rotate_right_b64, // llvm.nvvm.rotate.right.b64
nvvm_round_d, // llvm.nvvm.round.d
nvvm_round_f, // llvm.nvvm.round.f
nvvm_round_ftz_f, // llvm.nvvm.round.ftz.f
nvvm_rsqrt_approx_d, // llvm.nvvm.rsqrt.approx.d
nvvm_rsqrt_approx_f, // llvm.nvvm.rsqrt.approx.f
nvvm_rsqrt_approx_ftz_f, // llvm.nvvm.rsqrt.approx.ftz.f
nvvm_sad_i, // llvm.nvvm.sad.i
nvvm_sad_ui, // llvm.nvvm.sad.ui
nvvm_saturate_d, // llvm.nvvm.saturate.d
nvvm_saturate_f, // llvm.nvvm.saturate.f
nvvm_saturate_ftz_f, // llvm.nvvm.saturate.ftz.f
nvvm_shfl_bfly_f32, // llvm.nvvm.shfl.bfly.f32
nvvm_shfl_bfly_f32p, // llvm.nvvm.shfl.bfly.f32p
nvvm_shfl_bfly_i32, // llvm.nvvm.shfl.bfly.i32
nvvm_shfl_bfly_i32p, // llvm.nvvm.shfl.bfly.i32p
nvvm_shfl_down_f32, // llvm.nvvm.shfl.down.f32
nvvm_shfl_down_f32p, // llvm.nvvm.shfl.down.f32p
nvvm_shfl_down_i32, // llvm.nvvm.shfl.down.i32
nvvm_shfl_down_i32p, // llvm.nvvm.shfl.down.i32p
nvvm_shfl_idx_f32, // llvm.nvvm.shfl.idx.f32
nvvm_shfl_idx_f32p, // llvm.nvvm.shfl.idx.f32p
nvvm_shfl_idx_i32, // llvm.nvvm.shfl.idx.i32
nvvm_shfl_idx_i32p, // llvm.nvvm.shfl.idx.i32p
nvvm_shfl_sync_bfly_f32, // llvm.nvvm.shfl.sync.bfly.f32
nvvm_shfl_sync_bfly_f32p, // llvm.nvvm.shfl.sync.bfly.f32p
nvvm_shfl_sync_bfly_i32, // llvm.nvvm.shfl.sync.bfly.i32
nvvm_shfl_sync_bfly_i32p, // llvm.nvvm.shfl.sync.bfly.i32p
nvvm_shfl_sync_down_f32, // llvm.nvvm.shfl.sync.down.f32
nvvm_shfl_sync_down_f32p, // llvm.nvvm.shfl.sync.down.f32p
nvvm_shfl_sync_down_i32, // llvm.nvvm.shfl.sync.down.i32
nvvm_shfl_sync_down_i32p, // llvm.nvvm.shfl.sync.down.i32p
nvvm_shfl_sync_idx_f32, // llvm.nvvm.shfl.sync.idx.f32
nvvm_shfl_sync_idx_f32p, // llvm.nvvm.shfl.sync.idx.f32p
nvvm_shfl_sync_idx_i32, // llvm.nvvm.shfl.sync.idx.i32
nvvm_shfl_sync_idx_i32p, // llvm.nvvm.shfl.sync.idx.i32p
nvvm_shfl_sync_up_f32, // llvm.nvvm.shfl.sync.up.f32
nvvm_shfl_sync_up_f32p, // llvm.nvvm.shfl.sync.up.f32p
nvvm_shfl_sync_up_i32, // llvm.nvvm.shfl.sync.up.i32
nvvm_shfl_sync_up_i32p, // llvm.nvvm.shfl.sync.up.i32p
nvvm_shfl_up_f32, // llvm.nvvm.shfl.up.f32
nvvm_shfl_up_f32p, // llvm.nvvm.shfl.up.f32p
nvvm_shfl_up_i32, // llvm.nvvm.shfl.up.i32
nvvm_shfl_up_i32p, // llvm.nvvm.shfl.up.i32p
nvvm_sin_approx_f, // llvm.nvvm.sin.approx.f
nvvm_sin_approx_ftz_f, // llvm.nvvm.sin.approx.ftz.f
nvvm_sqrt_approx_f, // llvm.nvvm.sqrt.approx.f
nvvm_sqrt_approx_ftz_f, // llvm.nvvm.sqrt.approx.ftz.f
nvvm_sqrt_f, // llvm.nvvm.sqrt.f
nvvm_sqrt_rm_d, // llvm.nvvm.sqrt.rm.d
nvvm_sqrt_rm_f, // llvm.nvvm.sqrt.rm.f
nvvm_sqrt_rm_ftz_f, // llvm.nvvm.sqrt.rm.ftz.f
nvvm_sqrt_rn_d, // llvm.nvvm.sqrt.rn.d
nvvm_sqrt_rn_f, // llvm.nvvm.sqrt.rn.f
nvvm_sqrt_rn_ftz_f, // llvm.nvvm.sqrt.rn.ftz.f
nvvm_sqrt_rp_d, // llvm.nvvm.sqrt.rp.d
nvvm_sqrt_rp_f, // llvm.nvvm.sqrt.rp.f
nvvm_sqrt_rp_ftz_f, // llvm.nvvm.sqrt.rp.ftz.f
nvvm_sqrt_rz_d, // llvm.nvvm.sqrt.rz.d
nvvm_sqrt_rz_f, // llvm.nvvm.sqrt.rz.f
nvvm_sqrt_rz_ftz_f, // llvm.nvvm.sqrt.rz.ftz.f
nvvm_suld_1d_array_i16_clamp, // llvm.nvvm.suld.1d.array.i16.clamp
nvvm_suld_1d_array_i16_trap, // llvm.nvvm.suld.1d.array.i16.trap
nvvm_suld_1d_array_i16_zero, // llvm.nvvm.suld.1d.array.i16.zero
nvvm_suld_1d_array_i32_clamp, // llvm.nvvm.suld.1d.array.i32.clamp
nvvm_suld_1d_array_i32_trap, // llvm.nvvm.suld.1d.array.i32.trap
nvvm_suld_1d_array_i32_zero, // llvm.nvvm.suld.1d.array.i32.zero
nvvm_suld_1d_array_i64_clamp, // llvm.nvvm.suld.1d.array.i64.clamp
nvvm_suld_1d_array_i64_trap, // llvm.nvvm.suld.1d.array.i64.trap
nvvm_suld_1d_array_i64_zero, // llvm.nvvm.suld.1d.array.i64.zero
nvvm_suld_1d_array_i8_clamp, // llvm.nvvm.suld.1d.array.i8.clamp
nvvm_suld_1d_array_i8_trap, // llvm.nvvm.suld.1d.array.i8.trap
nvvm_suld_1d_array_i8_zero, // llvm.nvvm.suld.1d.array.i8.zero
nvvm_suld_1d_array_v2i16_clamp, // llvm.nvvm.suld.1d.array.v2i16.clamp
nvvm_suld_1d_array_v2i16_trap, // llvm.nvvm.suld.1d.array.v2i16.trap
nvvm_suld_1d_array_v2i16_zero, // llvm.nvvm.suld.1d.array.v2i16.zero
nvvm_suld_1d_array_v2i32_clamp, // llvm.nvvm.suld.1d.array.v2i32.clamp
nvvm_suld_1d_array_v2i32_trap, // llvm.nvvm.suld.1d.array.v2i32.trap
nvvm_suld_1d_array_v2i32_zero, // llvm.nvvm.suld.1d.array.v2i32.zero
nvvm_suld_1d_array_v2i64_clamp, // llvm.nvvm.suld.1d.array.v2i64.clamp
nvvm_suld_1d_array_v2i64_trap, // llvm.nvvm.suld.1d.array.v2i64.trap
nvvm_suld_1d_array_v2i64_zero, // llvm.nvvm.suld.1d.array.v2i64.zero
nvvm_suld_1d_array_v2i8_clamp, // llvm.nvvm.suld.1d.array.v2i8.clamp
nvvm_suld_1d_array_v2i8_trap, // llvm.nvvm.suld.1d.array.v2i8.trap
nvvm_suld_1d_array_v2i8_zero, // llvm.nvvm.suld.1d.array.v2i8.zero
nvvm_suld_1d_array_v4i16_clamp, // llvm.nvvm.suld.1d.array.v4i16.clamp
nvvm_suld_1d_array_v4i16_trap, // llvm.nvvm.suld.1d.array.v4i16.trap
nvvm_suld_1d_array_v4i16_zero, // llvm.nvvm.suld.1d.array.v4i16.zero
nvvm_suld_1d_array_v4i32_clamp, // llvm.nvvm.suld.1d.array.v4i32.clamp
nvvm_suld_1d_array_v4i32_trap, // llvm.nvvm.suld.1d.array.v4i32.trap
nvvm_suld_1d_array_v4i32_zero, // llvm.nvvm.suld.1d.array.v4i32.zero
nvvm_suld_1d_array_v4i8_clamp, // llvm.nvvm.suld.1d.array.v4i8.clamp
nvvm_suld_1d_array_v4i8_trap, // llvm.nvvm.suld.1d.array.v4i8.trap
nvvm_suld_1d_array_v4i8_zero, // llvm.nvvm.suld.1d.array.v4i8.zero
nvvm_suld_1d_i16_clamp, // llvm.nvvm.suld.1d.i16.clamp
nvvm_suld_1d_i16_trap, // llvm.nvvm.suld.1d.i16.trap
nvvm_suld_1d_i16_zero, // llvm.nvvm.suld.1d.i16.zero
nvvm_suld_1d_i32_clamp, // llvm.nvvm.suld.1d.i32.clamp
nvvm_suld_1d_i32_trap, // llvm.nvvm.suld.1d.i32.trap
nvvm_suld_1d_i32_zero, // llvm.nvvm.suld.1d.i32.zero
nvvm_suld_1d_i64_clamp, // llvm.nvvm.suld.1d.i64.clamp
nvvm_suld_1d_i64_trap, // llvm.nvvm.suld.1d.i64.trap
nvvm_suld_1d_i64_zero, // llvm.nvvm.suld.1d.i64.zero
nvvm_suld_1d_i8_clamp, // llvm.nvvm.suld.1d.i8.clamp
nvvm_suld_1d_i8_trap, // llvm.nvvm.suld.1d.i8.trap
nvvm_suld_1d_i8_zero, // llvm.nvvm.suld.1d.i8.zero
nvvm_suld_1d_v2i16_clamp, // llvm.nvvm.suld.1d.v2i16.clamp
nvvm_suld_1d_v2i16_trap, // llvm.nvvm.suld.1d.v2i16.trap
nvvm_suld_1d_v2i16_zero, // llvm.nvvm.suld.1d.v2i16.zero
nvvm_suld_1d_v2i32_clamp, // llvm.nvvm.suld.1d.v2i32.clamp
nvvm_suld_1d_v2i32_trap, // llvm.nvvm.suld.1d.v2i32.trap
nvvm_suld_1d_v2i32_zero, // llvm.nvvm.suld.1d.v2i32.zero
nvvm_suld_1d_v2i64_clamp, // llvm.nvvm.suld.1d.v2i64.clamp
nvvm_suld_1d_v2i64_trap, // llvm.nvvm.suld.1d.v2i64.trap
nvvm_suld_1d_v2i64_zero, // llvm.nvvm.suld.1d.v2i64.zero
nvvm_suld_1d_v2i8_clamp, // llvm.nvvm.suld.1d.v2i8.clamp
nvvm_suld_1d_v2i8_trap, // llvm.nvvm.suld.1d.v2i8.trap
nvvm_suld_1d_v2i8_zero, // llvm.nvvm.suld.1d.v2i8.zero
nvvm_suld_1d_v4i16_clamp, // llvm.nvvm.suld.1d.v4i16.clamp
nvvm_suld_1d_v4i16_trap, // llvm.nvvm.suld.1d.v4i16.trap
nvvm_suld_1d_v4i16_zero, // llvm.nvvm.suld.1d.v4i16.zero
nvvm_suld_1d_v4i32_clamp, // llvm.nvvm.suld.1d.v4i32.clamp
nvvm_suld_1d_v4i32_trap, // llvm.nvvm.suld.1d.v4i32.trap
nvvm_suld_1d_v4i32_zero, // llvm.nvvm.suld.1d.v4i32.zero
nvvm_suld_1d_v4i8_clamp, // llvm.nvvm.suld.1d.v4i8.clamp
nvvm_suld_1d_v4i8_trap, // llvm.nvvm.suld.1d.v4i8.trap
nvvm_suld_1d_v4i8_zero, // llvm.nvvm.suld.1d.v4i8.zero
nvvm_suld_2d_array_i16_clamp, // llvm.nvvm.suld.2d.array.i16.clamp
nvvm_suld_2d_array_i16_trap, // llvm.nvvm.suld.2d.array.i16.trap
nvvm_suld_2d_array_i16_zero, // llvm.nvvm.suld.2d.array.i16.zero
nvvm_suld_2d_array_i32_clamp, // llvm.nvvm.suld.2d.array.i32.clamp
nvvm_suld_2d_array_i32_trap, // llvm.nvvm.suld.2d.array.i32.trap
nvvm_suld_2d_array_i32_zero, // llvm.nvvm.suld.2d.array.i32.zero
nvvm_suld_2d_array_i64_clamp, // llvm.nvvm.suld.2d.array.i64.clamp
nvvm_suld_2d_array_i64_trap, // llvm.nvvm.suld.2d.array.i64.trap
nvvm_suld_2d_array_i64_zero, // llvm.nvvm.suld.2d.array.i64.zero
nvvm_suld_2d_array_i8_clamp, // llvm.nvvm.suld.2d.array.i8.clamp
nvvm_suld_2d_array_i8_trap, // llvm.nvvm.suld.2d.array.i8.trap
nvvm_suld_2d_array_i8_zero, // llvm.nvvm.suld.2d.array.i8.zero
nvvm_suld_2d_array_v2i16_clamp, // llvm.nvvm.suld.2d.array.v2i16.clamp
nvvm_suld_2d_array_v2i16_trap, // llvm.nvvm.suld.2d.array.v2i16.trap
nvvm_suld_2d_array_v2i16_zero, // llvm.nvvm.suld.2d.array.v2i16.zero
nvvm_suld_2d_array_v2i32_clamp, // llvm.nvvm.suld.2d.array.v2i32.clamp
nvvm_suld_2d_array_v2i32_trap, // llvm.nvvm.suld.2d.array.v2i32.trap
nvvm_suld_2d_array_v2i32_zero, // llvm.nvvm.suld.2d.array.v2i32.zero
nvvm_suld_2d_array_v2i64_clamp, // llvm.nvvm.suld.2d.array.v2i64.clamp
nvvm_suld_2d_array_v2i64_trap, // llvm.nvvm.suld.2d.array.v2i64.trap
nvvm_suld_2d_array_v2i64_zero, // llvm.nvvm.suld.2d.array.v2i64.zero
nvvm_suld_2d_array_v2i8_clamp, // llvm.nvvm.suld.2d.array.v2i8.clamp
nvvm_suld_2d_array_v2i8_trap, // llvm.nvvm.suld.2d.array.v2i8.trap
nvvm_suld_2d_array_v2i8_zero, // llvm.nvvm.suld.2d.array.v2i8.zero
nvvm_suld_2d_array_v4i16_clamp, // llvm.nvvm.suld.2d.array.v4i16.clamp
nvvm_suld_2d_array_v4i16_trap, // llvm.nvvm.suld.2d.array.v4i16.trap
nvvm_suld_2d_array_v4i16_zero, // llvm.nvvm.suld.2d.array.v4i16.zero
nvvm_suld_2d_array_v4i32_clamp, // llvm.nvvm.suld.2d.array.v4i32.clamp
nvvm_suld_2d_array_v4i32_trap, // llvm.nvvm.suld.2d.array.v4i32.trap
nvvm_suld_2d_array_v4i32_zero, // llvm.nvvm.suld.2d.array.v4i32.zero
nvvm_suld_2d_array_v4i8_clamp, // llvm.nvvm.suld.2d.array.v4i8.clamp
nvvm_suld_2d_array_v4i8_trap, // llvm.nvvm.suld.2d.array.v4i8.trap
nvvm_suld_2d_array_v4i8_zero, // llvm.nvvm.suld.2d.array.v4i8.zero
nvvm_suld_2d_i16_clamp, // llvm.nvvm.suld.2d.i16.clamp
nvvm_suld_2d_i16_trap, // llvm.nvvm.suld.2d.i16.trap
nvvm_suld_2d_i16_zero, // llvm.nvvm.suld.2d.i16.zero
nvvm_suld_2d_i32_clamp, // llvm.nvvm.suld.2d.i32.clamp
nvvm_suld_2d_i32_trap, // llvm.nvvm.suld.2d.i32.trap
nvvm_suld_2d_i32_zero, // llvm.nvvm.suld.2d.i32.zero
nvvm_suld_2d_i64_clamp, // llvm.nvvm.suld.2d.i64.clamp
nvvm_suld_2d_i64_trap, // llvm.nvvm.suld.2d.i64.trap
nvvm_suld_2d_i64_zero, // llvm.nvvm.suld.2d.i64.zero
nvvm_suld_2d_i8_clamp, // llvm.nvvm.suld.2d.i8.clamp
nvvm_suld_2d_i8_trap, // llvm.nvvm.suld.2d.i8.trap
nvvm_suld_2d_i8_zero, // llvm.nvvm.suld.2d.i8.zero
nvvm_suld_2d_v2i16_clamp, // llvm.nvvm.suld.2d.v2i16.clamp
nvvm_suld_2d_v2i16_trap, // llvm.nvvm.suld.2d.v2i16.trap
nvvm_suld_2d_v2i16_zero, // llvm.nvvm.suld.2d.v2i16.zero
nvvm_suld_2d_v2i32_clamp, // llvm.nvvm.suld.2d.v2i32.clamp
nvvm_suld_2d_v2i32_trap, // llvm.nvvm.suld.2d.v2i32.trap
nvvm_suld_2d_v2i32_zero, // llvm.nvvm.suld.2d.v2i32.zero
nvvm_suld_2d_v2i64_clamp, // llvm.nvvm.suld.2d.v2i64.clamp
nvvm_suld_2d_v2i64_trap, // llvm.nvvm.suld.2d.v2i64.trap
nvvm_suld_2d_v2i64_zero, // llvm.nvvm.suld.2d.v2i64.zero
nvvm_suld_2d_v2i8_clamp, // llvm.nvvm.suld.2d.v2i8.clamp
nvvm_suld_2d_v2i8_trap, // llvm.nvvm.suld.2d.v2i8.trap
nvvm_suld_2d_v2i8_zero, // llvm.nvvm.suld.2d.v2i8.zero
nvvm_suld_2d_v4i16_clamp, // llvm.nvvm.suld.2d.v4i16.clamp
nvvm_suld_2d_v4i16_trap, // llvm.nvvm.suld.2d.v4i16.trap
nvvm_suld_2d_v4i16_zero, // llvm.nvvm.suld.2d.v4i16.zero
nvvm_suld_2d_v4i32_clamp, // llvm.nvvm.suld.2d.v4i32.clamp
nvvm_suld_2d_v4i32_trap, // llvm.nvvm.suld.2d.v4i32.trap
nvvm_suld_2d_v4i32_zero, // llvm.nvvm.suld.2d.v4i32.zero
nvvm_suld_2d_v4i8_clamp, // llvm.nvvm.suld.2d.v4i8.clamp
nvvm_suld_2d_v4i8_trap, // llvm.nvvm.suld.2d.v4i8.trap
nvvm_suld_2d_v4i8_zero, // llvm.nvvm.suld.2d.v4i8.zero
nvvm_suld_3d_i16_clamp, // llvm.nvvm.suld.3d.i16.clamp
nvvm_suld_3d_i16_trap, // llvm.nvvm.suld.3d.i16.trap
nvvm_suld_3d_i16_zero, // llvm.nvvm.suld.3d.i16.zero
nvvm_suld_3d_i32_clamp, // llvm.nvvm.suld.3d.i32.clamp
nvvm_suld_3d_i32_trap, // llvm.nvvm.suld.3d.i32.trap
nvvm_suld_3d_i32_zero, // llvm.nvvm.suld.3d.i32.zero
nvvm_suld_3d_i64_clamp, // llvm.nvvm.suld.3d.i64.clamp
nvvm_suld_3d_i64_trap, // llvm.nvvm.suld.3d.i64.trap
nvvm_suld_3d_i64_zero, // llvm.nvvm.suld.3d.i64.zero
nvvm_suld_3d_i8_clamp, // llvm.nvvm.suld.3d.i8.clamp
nvvm_suld_3d_i8_trap, // llvm.nvvm.suld.3d.i8.trap
nvvm_suld_3d_i8_zero, // llvm.nvvm.suld.3d.i8.zero
nvvm_suld_3d_v2i16_clamp, // llvm.nvvm.suld.3d.v2i16.clamp
nvvm_suld_3d_v2i16_trap, // llvm.nvvm.suld.3d.v2i16.trap
nvvm_suld_3d_v2i16_zero, // llvm.nvvm.suld.3d.v2i16.zero
nvvm_suld_3d_v2i32_clamp, // llvm.nvvm.suld.3d.v2i32.clamp
nvvm_suld_3d_v2i32_trap, // llvm.nvvm.suld.3d.v2i32.trap
nvvm_suld_3d_v2i32_zero, // llvm.nvvm.suld.3d.v2i32.zero
nvvm_suld_3d_v2i64_clamp, // llvm.nvvm.suld.3d.v2i64.clamp
nvvm_suld_3d_v2i64_trap, // llvm.nvvm.suld.3d.v2i64.trap
nvvm_suld_3d_v2i64_zero, // llvm.nvvm.suld.3d.v2i64.zero
nvvm_suld_3d_v2i8_clamp, // llvm.nvvm.suld.3d.v2i8.clamp
nvvm_suld_3d_v2i8_trap, // llvm.nvvm.suld.3d.v2i8.trap
nvvm_suld_3d_v2i8_zero, // llvm.nvvm.suld.3d.v2i8.zero
nvvm_suld_3d_v4i16_clamp, // llvm.nvvm.suld.3d.v4i16.clamp
nvvm_suld_3d_v4i16_trap, // llvm.nvvm.suld.3d.v4i16.trap
nvvm_suld_3d_v4i16_zero, // llvm.nvvm.suld.3d.v4i16.zero
nvvm_suld_3d_v4i32_clamp, // llvm.nvvm.suld.3d.v4i32.clamp
nvvm_suld_3d_v4i32_trap, // llvm.nvvm.suld.3d.v4i32.trap
nvvm_suld_3d_v4i32_zero, // llvm.nvvm.suld.3d.v4i32.zero
nvvm_suld_3d_v4i8_clamp, // llvm.nvvm.suld.3d.v4i8.clamp
nvvm_suld_3d_v4i8_trap, // llvm.nvvm.suld.3d.v4i8.trap
nvvm_suld_3d_v4i8_zero, // llvm.nvvm.suld.3d.v4i8.zero
nvvm_suq_array_size, // llvm.nvvm.suq.array.size
nvvm_suq_channel_data_type, // llvm.nvvm.suq.channel.data.type
nvvm_suq_channel_order, // llvm.nvvm.suq.channel.order
nvvm_suq_depth, // llvm.nvvm.suq.depth
nvvm_suq_height, // llvm.nvvm.suq.height
nvvm_suq_width, // llvm.nvvm.suq.width
nvvm_sust_b_1d_array_i16_clamp, // llvm.nvvm.sust.b.1d.array.i16.clamp
nvvm_sust_b_1d_array_i16_trap, // llvm.nvvm.sust.b.1d.array.i16.trap
nvvm_sust_b_1d_array_i16_zero, // llvm.nvvm.sust.b.1d.array.i16.zero
nvvm_sust_b_1d_array_i32_clamp, // llvm.nvvm.sust.b.1d.array.i32.clamp
nvvm_sust_b_1d_array_i32_trap, // llvm.nvvm.sust.b.1d.array.i32.trap
nvvm_sust_b_1d_array_i32_zero, // llvm.nvvm.sust.b.1d.array.i32.zero
nvvm_sust_b_1d_array_i64_clamp, // llvm.nvvm.sust.b.1d.array.i64.clamp
nvvm_sust_b_1d_array_i64_trap, // llvm.nvvm.sust.b.1d.array.i64.trap
nvvm_sust_b_1d_array_i64_zero, // llvm.nvvm.sust.b.1d.array.i64.zero
nvvm_sust_b_1d_array_i8_clamp, // llvm.nvvm.sust.b.1d.array.i8.clamp
nvvm_sust_b_1d_array_i8_trap, // llvm.nvvm.sust.b.1d.array.i8.trap
nvvm_sust_b_1d_array_i8_zero, // llvm.nvvm.sust.b.1d.array.i8.zero
nvvm_sust_b_1d_array_v2i16_clamp, // llvm.nvvm.sust.b.1d.array.v2i16.clamp
nvvm_sust_b_1d_array_v2i16_trap, // llvm.nvvm.sust.b.1d.array.v2i16.trap
nvvm_sust_b_1d_array_v2i16_zero, // llvm.nvvm.sust.b.1d.array.v2i16.zero
nvvm_sust_b_1d_array_v2i32_clamp, // llvm.nvvm.sust.b.1d.array.v2i32.clamp
nvvm_sust_b_1d_array_v2i32_trap, // llvm.nvvm.sust.b.1d.array.v2i32.trap
nvvm_sust_b_1d_array_v2i32_zero, // llvm.nvvm.sust.b.1d.array.v2i32.zero
nvvm_sust_b_1d_array_v2i64_clamp, // llvm.nvvm.sust.b.1d.array.v2i64.clamp
nvvm_sust_b_1d_array_v2i64_trap, // llvm.nvvm.sust.b.1d.array.v2i64.trap
nvvm_sust_b_1d_array_v2i64_zero, // llvm.nvvm.sust.b.1d.array.v2i64.zero
nvvm_sust_b_1d_array_v2i8_clamp, // llvm.nvvm.sust.b.1d.array.v2i8.clamp
nvvm_sust_b_1d_array_v2i8_trap, // llvm.nvvm.sust.b.1d.array.v2i8.trap
nvvm_sust_b_1d_array_v2i8_zero, // llvm.nvvm.sust.b.1d.array.v2i8.zero
nvvm_sust_b_1d_array_v4i16_clamp, // llvm.nvvm.sust.b.1d.array.v4i16.clamp
nvvm_sust_b_1d_array_v4i16_trap, // llvm.nvvm.sust.b.1d.array.v4i16.trap
nvvm_sust_b_1d_array_v4i16_zero, // llvm.nvvm.sust.b.1d.array.v4i16.zero
nvvm_sust_b_1d_array_v4i32_clamp, // llvm.nvvm.sust.b.1d.array.v4i32.clamp
nvvm_sust_b_1d_array_v4i32_trap, // llvm.nvvm.sust.b.1d.array.v4i32.trap
nvvm_sust_b_1d_array_v4i32_zero, // llvm.nvvm.sust.b.1d.array.v4i32.zero
nvvm_sust_b_1d_array_v4i8_clamp, // llvm.nvvm.sust.b.1d.array.v4i8.clamp
nvvm_sust_b_1d_array_v4i8_trap, // llvm.nvvm.sust.b.1d.array.v4i8.trap
nvvm_sust_b_1d_array_v4i8_zero, // llvm.nvvm.sust.b.1d.array.v4i8.zero
nvvm_sust_b_1d_i16_clamp, // llvm.nvvm.sust.b.1d.i16.clamp
nvvm_sust_b_1d_i16_trap, // llvm.nvvm.sust.b.1d.i16.trap
nvvm_sust_b_1d_i16_zero, // llvm.nvvm.sust.b.1d.i16.zero
nvvm_sust_b_1d_i32_clamp, // llvm.nvvm.sust.b.1d.i32.clamp
nvvm_sust_b_1d_i32_trap, // llvm.nvvm.sust.b.1d.i32.trap
nvvm_sust_b_1d_i32_zero, // llvm.nvvm.sust.b.1d.i32.zero
nvvm_sust_b_1d_i64_clamp, // llvm.nvvm.sust.b.1d.i64.clamp
nvvm_sust_b_1d_i64_trap, // llvm.nvvm.sust.b.1d.i64.trap
nvvm_sust_b_1d_i64_zero, // llvm.nvvm.sust.b.1d.i64.zero
nvvm_sust_b_1d_i8_clamp, // llvm.nvvm.sust.b.1d.i8.clamp
nvvm_sust_b_1d_i8_trap, // llvm.nvvm.sust.b.1d.i8.trap
nvvm_sust_b_1d_i8_zero, // llvm.nvvm.sust.b.1d.i8.zero
nvvm_sust_b_1d_v2i16_clamp, // llvm.nvvm.sust.b.1d.v2i16.clamp
nvvm_sust_b_1d_v2i16_trap, // llvm.nvvm.sust.b.1d.v2i16.trap
nvvm_sust_b_1d_v2i16_zero, // llvm.nvvm.sust.b.1d.v2i16.zero
nvvm_sust_b_1d_v2i32_clamp, // llvm.nvvm.sust.b.1d.v2i32.clamp
nvvm_sust_b_1d_v2i32_trap, // llvm.nvvm.sust.b.1d.v2i32.trap
nvvm_sust_b_1d_v2i32_zero, // llvm.nvvm.sust.b.1d.v2i32.zero
nvvm_sust_b_1d_v2i64_clamp, // llvm.nvvm.sust.b.1d.v2i64.clamp
nvvm_sust_b_1d_v2i64_trap, // llvm.nvvm.sust.b.1d.v2i64.trap
nvvm_sust_b_1d_v2i64_zero, // llvm.nvvm.sust.b.1d.v2i64.zero
nvvm_sust_b_1d_v2i8_clamp, // llvm.nvvm.sust.b.1d.v2i8.clamp
nvvm_sust_b_1d_v2i8_trap, // llvm.nvvm.sust.b.1d.v2i8.trap
nvvm_sust_b_1d_v2i8_zero, // llvm.nvvm.sust.b.1d.v2i8.zero
nvvm_sust_b_1d_v4i16_clamp, // llvm.nvvm.sust.b.1d.v4i16.clamp
nvvm_sust_b_1d_v4i16_trap, // llvm.nvvm.sust.b.1d.v4i16.trap
nvvm_sust_b_1d_v4i16_zero, // llvm.nvvm.sust.b.1d.v4i16.zero
nvvm_sust_b_1d_v4i32_clamp, // llvm.nvvm.sust.b.1d.v4i32.clamp
nvvm_sust_b_1d_v4i32_trap, // llvm.nvvm.sust.b.1d.v4i32.trap
nvvm_sust_b_1d_v4i32_zero, // llvm.nvvm.sust.b.1d.v4i32.zero
nvvm_sust_b_1d_v4i8_clamp, // llvm.nvvm.sust.b.1d.v4i8.clamp
nvvm_sust_b_1d_v4i8_trap, // llvm.nvvm.sust.b.1d.v4i8.trap
nvvm_sust_b_1d_v4i8_zero, // llvm.nvvm.sust.b.1d.v4i8.zero
nvvm_sust_b_2d_array_i16_clamp, // llvm.nvvm.sust.b.2d.array.i16.clamp
nvvm_sust_b_2d_array_i16_trap, // llvm.nvvm.sust.b.2d.array.i16.trap
nvvm_sust_b_2d_array_i16_zero, // llvm.nvvm.sust.b.2d.array.i16.zero
nvvm_sust_b_2d_array_i32_clamp, // llvm.nvvm.sust.b.2d.array.i32.clamp
nvvm_sust_b_2d_array_i32_trap, // llvm.nvvm.sust.b.2d.array.i32.trap
nvvm_sust_b_2d_array_i32_zero, // llvm.nvvm.sust.b.2d.array.i32.zero
nvvm_sust_b_2d_array_i64_clamp, // llvm.nvvm.sust.b.2d.array.i64.clamp
nvvm_sust_b_2d_array_i64_trap, // llvm.nvvm.sust.b.2d.array.i64.trap
nvvm_sust_b_2d_array_i64_zero, // llvm.nvvm.sust.b.2d.array.i64.zero
nvvm_sust_b_2d_array_i8_clamp, // llvm.nvvm.sust.b.2d.array.i8.clamp
nvvm_sust_b_2d_array_i8_trap, // llvm.nvvm.sust.b.2d.array.i8.trap
nvvm_sust_b_2d_array_i8_zero, // llvm.nvvm.sust.b.2d.array.i8.zero
nvvm_sust_b_2d_array_v2i16_clamp, // llvm.nvvm.sust.b.2d.array.v2i16.clamp
nvvm_sust_b_2d_array_v2i16_trap, // llvm.nvvm.sust.b.2d.array.v2i16.trap
nvvm_sust_b_2d_array_v2i16_zero, // llvm.nvvm.sust.b.2d.array.v2i16.zero
nvvm_sust_b_2d_array_v2i32_clamp, // llvm.nvvm.sust.b.2d.array.v2i32.clamp
nvvm_sust_b_2d_array_v2i32_trap, // llvm.nvvm.sust.b.2d.array.v2i32.trap
nvvm_sust_b_2d_array_v2i32_zero, // llvm.nvvm.sust.b.2d.array.v2i32.zero
nvvm_sust_b_2d_array_v2i64_clamp, // llvm.nvvm.sust.b.2d.array.v2i64.clamp
nvvm_sust_b_2d_array_v2i64_trap, // llvm.nvvm.sust.b.2d.array.v2i64.trap
nvvm_sust_b_2d_array_v2i64_zero, // llvm.nvvm.sust.b.2d.array.v2i64.zero
nvvm_sust_b_2d_array_v2i8_clamp, // llvm.nvvm.sust.b.2d.array.v2i8.clamp
nvvm_sust_b_2d_array_v2i8_trap, // llvm.nvvm.sust.b.2d.array.v2i8.trap
nvvm_sust_b_2d_array_v2i8_zero, // llvm.nvvm.sust.b.2d.array.v2i8.zero
nvvm_sust_b_2d_array_v4i16_clamp, // llvm.nvvm.sust.b.2d.array.v4i16.clamp
nvvm_sust_b_2d_array_v4i16_trap, // llvm.nvvm.sust.b.2d.array.v4i16.trap
nvvm_sust_b_2d_array_v4i16_zero, // llvm.nvvm.sust.b.2d.array.v4i16.zero
nvvm_sust_b_2d_array_v4i32_clamp, // llvm.nvvm.sust.b.2d.array.v4i32.clamp
nvvm_sust_b_2d_array_v4i32_trap, // llvm.nvvm.sust.b.2d.array.v4i32.trap
nvvm_sust_b_2d_array_v4i32_zero, // llvm.nvvm.sust.b.2d.array.v4i32.zero
nvvm_sust_b_2d_array_v4i8_clamp, // llvm.nvvm.sust.b.2d.array.v4i8.clamp
nvvm_sust_b_2d_array_v4i8_trap, // llvm.nvvm.sust.b.2d.array.v4i8.trap
nvvm_sust_b_2d_array_v4i8_zero, // llvm.nvvm.sust.b.2d.array.v4i8.zero
nvvm_sust_b_2d_i16_clamp, // llvm.nvvm.sust.b.2d.i16.clamp
nvvm_sust_b_2d_i16_trap, // llvm.nvvm.sust.b.2d.i16.trap
nvvm_sust_b_2d_i16_zero, // llvm.nvvm.sust.b.2d.i16.zero
nvvm_sust_b_2d_i32_clamp, // llvm.nvvm.sust.b.2d.i32.clamp
nvvm_sust_b_2d_i32_trap, // llvm.nvvm.sust.b.2d.i32.trap
nvvm_sust_b_2d_i32_zero, // llvm.nvvm.sust.b.2d.i32.zero
nvvm_sust_b_2d_i64_clamp, // llvm.nvvm.sust.b.2d.i64.clamp
nvvm_sust_b_2d_i64_trap, // llvm.nvvm.sust.b.2d.i64.trap
nvvm_sust_b_2d_i64_zero, // llvm.nvvm.sust.b.2d.i64.zero
nvvm_sust_b_2d_i8_clamp, // llvm.nvvm.sust.b.2d.i8.clamp
nvvm_sust_b_2d_i8_trap, // llvm.nvvm.sust.b.2d.i8.trap
nvvm_sust_b_2d_i8_zero, // llvm.nvvm.sust.b.2d.i8.zero
nvvm_sust_b_2d_v2i16_clamp, // llvm.nvvm.sust.b.2d.v2i16.clamp
nvvm_sust_b_2d_v2i16_trap, // llvm.nvvm.sust.b.2d.v2i16.trap
nvvm_sust_b_2d_v2i16_zero, // llvm.nvvm.sust.b.2d.v2i16.zero
nvvm_sust_b_2d_v2i32_clamp, // llvm.nvvm.sust.b.2d.v2i32.clamp
nvvm_sust_b_2d_v2i32_trap, // llvm.nvvm.sust.b.2d.v2i32.trap
nvvm_sust_b_2d_v2i32_zero, // llvm.nvvm.sust.b.2d.v2i32.zero
nvvm_sust_b_2d_v2i64_clamp, // llvm.nvvm.sust.b.2d.v2i64.clamp
nvvm_sust_b_2d_v2i64_trap, // llvm.nvvm.sust.b.2d.v2i64.trap
nvvm_sust_b_2d_v2i64_zero, // llvm.nvvm.sust.b.2d.v2i64.zero
nvvm_sust_b_2d_v2i8_clamp, // llvm.nvvm.sust.b.2d.v2i8.clamp
nvvm_sust_b_2d_v2i8_trap, // llvm.nvvm.sust.b.2d.v2i8.trap
nvvm_sust_b_2d_v2i8_zero, // llvm.nvvm.sust.b.2d.v2i8.zero
nvvm_sust_b_2d_v4i16_clamp, // llvm.nvvm.sust.b.2d.v4i16.clamp
nvvm_sust_b_2d_v4i16_trap, // llvm.nvvm.sust.b.2d.v4i16.trap
nvvm_sust_b_2d_v4i16_zero, // llvm.nvvm.sust.b.2d.v4i16.zero
nvvm_sust_b_2d_v4i32_clamp, // llvm.nvvm.sust.b.2d.v4i32.clamp
nvvm_sust_b_2d_v4i32_trap, // llvm.nvvm.sust.b.2d.v4i32.trap
nvvm_sust_b_2d_v4i32_zero, // llvm.nvvm.sust.b.2d.v4i32.zero
nvvm_sust_b_2d_v4i8_clamp, // llvm.nvvm.sust.b.2d.v4i8.clamp
nvvm_sust_b_2d_v4i8_trap, // llvm.nvvm.sust.b.2d.v4i8.trap
nvvm_sust_b_2d_v4i8_zero, // llvm.nvvm.sust.b.2d.v4i8.zero
nvvm_sust_b_3d_i16_clamp, // llvm.nvvm.sust.b.3d.i16.clamp
nvvm_sust_b_3d_i16_trap, // llvm.nvvm.sust.b.3d.i16.trap
nvvm_sust_b_3d_i16_zero, // llvm.nvvm.sust.b.3d.i16.zero
nvvm_sust_b_3d_i32_clamp, // llvm.nvvm.sust.b.3d.i32.clamp
nvvm_sust_b_3d_i32_trap, // llvm.nvvm.sust.b.3d.i32.trap
nvvm_sust_b_3d_i32_zero, // llvm.nvvm.sust.b.3d.i32.zero
nvvm_sust_b_3d_i64_clamp, // llvm.nvvm.sust.b.3d.i64.clamp
nvvm_sust_b_3d_i64_trap, // llvm.nvvm.sust.b.3d.i64.trap
nvvm_sust_b_3d_i64_zero, // llvm.nvvm.sust.b.3d.i64.zero
nvvm_sust_b_3d_i8_clamp, // llvm.nvvm.sust.b.3d.i8.clamp
nvvm_sust_b_3d_i8_trap, // llvm.nvvm.sust.b.3d.i8.trap
nvvm_sust_b_3d_i8_zero, // llvm.nvvm.sust.b.3d.i8.zero
nvvm_sust_b_3d_v2i16_clamp, // llvm.nvvm.sust.b.3d.v2i16.clamp
nvvm_sust_b_3d_v2i16_trap, // llvm.nvvm.sust.b.3d.v2i16.trap
nvvm_sust_b_3d_v2i16_zero, // llvm.nvvm.sust.b.3d.v2i16.zero
nvvm_sust_b_3d_v2i32_clamp, // llvm.nvvm.sust.b.3d.v2i32.clamp
nvvm_sust_b_3d_v2i32_trap, // llvm.nvvm.sust.b.3d.v2i32.trap
nvvm_sust_b_3d_v2i32_zero, // llvm.nvvm.sust.b.3d.v2i32.zero
nvvm_sust_b_3d_v2i64_clamp, // llvm.nvvm.sust.b.3d.v2i64.clamp
nvvm_sust_b_3d_v2i64_trap, // llvm.nvvm.sust.b.3d.v2i64.trap
nvvm_sust_b_3d_v2i64_zero, // llvm.nvvm.sust.b.3d.v2i64.zero
nvvm_sust_b_3d_v2i8_clamp, // llvm.nvvm.sust.b.3d.v2i8.clamp
nvvm_sust_b_3d_v2i8_trap, // llvm.nvvm.sust.b.3d.v2i8.trap
nvvm_sust_b_3d_v2i8_zero, // llvm.nvvm.sust.b.3d.v2i8.zero
nvvm_sust_b_3d_v4i16_clamp, // llvm.nvvm.sust.b.3d.v4i16.clamp
nvvm_sust_b_3d_v4i16_trap, // llvm.nvvm.sust.b.3d.v4i16.trap
nvvm_sust_b_3d_v4i16_zero, // llvm.nvvm.sust.b.3d.v4i16.zero
nvvm_sust_b_3d_v4i32_clamp, // llvm.nvvm.sust.b.3d.v4i32.clamp
nvvm_sust_b_3d_v4i32_trap, // llvm.nvvm.sust.b.3d.v4i32.trap
nvvm_sust_b_3d_v4i32_zero, // llvm.nvvm.sust.b.3d.v4i32.zero
nvvm_sust_b_3d_v4i8_clamp, // llvm.nvvm.sust.b.3d.v4i8.clamp
nvvm_sust_b_3d_v4i8_trap, // llvm.nvvm.sust.b.3d.v4i8.trap
nvvm_sust_b_3d_v4i8_zero, // llvm.nvvm.sust.b.3d.v4i8.zero
nvvm_sust_p_1d_array_i16_trap, // llvm.nvvm.sust.p.1d.array.i16.trap
nvvm_sust_p_1d_array_i32_trap, // llvm.nvvm.sust.p.1d.array.i32.trap
nvvm_sust_p_1d_array_i8_trap, // llvm.nvvm.sust.p.1d.array.i8.trap
nvvm_sust_p_1d_array_v2i16_trap, // llvm.nvvm.sust.p.1d.array.v2i16.trap
nvvm_sust_p_1d_array_v2i32_trap, // llvm.nvvm.sust.p.1d.array.v2i32.trap
nvvm_sust_p_1d_array_v2i8_trap, // llvm.nvvm.sust.p.1d.array.v2i8.trap
nvvm_sust_p_1d_array_v4i16_trap, // llvm.nvvm.sust.p.1d.array.v4i16.trap
nvvm_sust_p_1d_array_v4i32_trap, // llvm.nvvm.sust.p.1d.array.v4i32.trap
nvvm_sust_p_1d_array_v4i8_trap, // llvm.nvvm.sust.p.1d.array.v4i8.trap
nvvm_sust_p_1d_i16_trap, // llvm.nvvm.sust.p.1d.i16.trap
nvvm_sust_p_1d_i32_trap, // llvm.nvvm.sust.p.1d.i32.trap
nvvm_sust_p_1d_i8_trap, // llvm.nvvm.sust.p.1d.i8.trap
nvvm_sust_p_1d_v2i16_trap, // llvm.nvvm.sust.p.1d.v2i16.trap
nvvm_sust_p_1d_v2i32_trap, // llvm.nvvm.sust.p.1d.v2i32.trap
nvvm_sust_p_1d_v2i8_trap, // llvm.nvvm.sust.p.1d.v2i8.trap
nvvm_sust_p_1d_v4i16_trap, // llvm.nvvm.sust.p.1d.v4i16.trap
nvvm_sust_p_1d_v4i32_trap, // llvm.nvvm.sust.p.1d.v4i32.trap
nvvm_sust_p_1d_v4i8_trap, // llvm.nvvm.sust.p.1d.v4i8.trap
nvvm_sust_p_2d_array_i16_trap, // llvm.nvvm.sust.p.2d.array.i16.trap
nvvm_sust_p_2d_array_i32_trap, // llvm.nvvm.sust.p.2d.array.i32.trap
nvvm_sust_p_2d_array_i8_trap, // llvm.nvvm.sust.p.2d.array.i8.trap
nvvm_sust_p_2d_array_v2i16_trap, // llvm.nvvm.sust.p.2d.array.v2i16.trap
nvvm_sust_p_2d_array_v2i32_trap, // llvm.nvvm.sust.p.2d.array.v2i32.trap
nvvm_sust_p_2d_array_v2i8_trap, // llvm.nvvm.sust.p.2d.array.v2i8.trap
nvvm_sust_p_2d_array_v4i16_trap, // llvm.nvvm.sust.p.2d.array.v4i16.trap
nvvm_sust_p_2d_array_v4i32_trap, // llvm.nvvm.sust.p.2d.array.v4i32.trap
nvvm_sust_p_2d_array_v4i8_trap, // llvm.nvvm.sust.p.2d.array.v4i8.trap
nvvm_sust_p_2d_i16_trap, // llvm.nvvm.sust.p.2d.i16.trap
nvvm_sust_p_2d_i32_trap, // llvm.nvvm.sust.p.2d.i32.trap
nvvm_sust_p_2d_i8_trap, // llvm.nvvm.sust.p.2d.i8.trap
nvvm_sust_p_2d_v2i16_trap, // llvm.nvvm.sust.p.2d.v2i16.trap
nvvm_sust_p_2d_v2i32_trap, // llvm.nvvm.sust.p.2d.v2i32.trap
nvvm_sust_p_2d_v2i8_trap, // llvm.nvvm.sust.p.2d.v2i8.trap
nvvm_sust_p_2d_v4i16_trap, // llvm.nvvm.sust.p.2d.v4i16.trap
nvvm_sust_p_2d_v4i32_trap, // llvm.nvvm.sust.p.2d.v4i32.trap
nvvm_sust_p_2d_v4i8_trap, // llvm.nvvm.sust.p.2d.v4i8.trap
nvvm_sust_p_3d_i16_trap, // llvm.nvvm.sust.p.3d.i16.trap
nvvm_sust_p_3d_i32_trap, // llvm.nvvm.sust.p.3d.i32.trap
nvvm_sust_p_3d_i8_trap, // llvm.nvvm.sust.p.3d.i8.trap
nvvm_sust_p_3d_v2i16_trap, // llvm.nvvm.sust.p.3d.v2i16.trap
nvvm_sust_p_3d_v2i32_trap, // llvm.nvvm.sust.p.3d.v2i32.trap
nvvm_sust_p_3d_v2i8_trap, // llvm.nvvm.sust.p.3d.v2i8.trap
nvvm_sust_p_3d_v4i16_trap, // llvm.nvvm.sust.p.3d.v4i16.trap
nvvm_sust_p_3d_v4i32_trap, // llvm.nvvm.sust.p.3d.v4i32.trap
nvvm_sust_p_3d_v4i8_trap, // llvm.nvvm.sust.p.3d.v4i8.trap
nvvm_swap_lo_hi_b64, // llvm.nvvm.swap.lo.hi.b64
nvvm_tex_1d_array_grad_v4f32_f32, // llvm.nvvm.tex.1d.array.grad.v4f32.f32
nvvm_tex_1d_array_grad_v4s32_f32, // llvm.nvvm.tex.1d.array.grad.v4s32.f32
nvvm_tex_1d_array_grad_v4u32_f32, // llvm.nvvm.tex.1d.array.grad.v4u32.f32
nvvm_tex_1d_array_level_v4f32_f32, // llvm.nvvm.tex.1d.array.level.v4f32.f32
nvvm_tex_1d_array_level_v4s32_f32, // llvm.nvvm.tex.1d.array.level.v4s32.f32
nvvm_tex_1d_array_level_v4u32_f32, // llvm.nvvm.tex.1d.array.level.v4u32.f32
nvvm_tex_1d_array_v4f32_f32, // llvm.nvvm.tex.1d.array.v4f32.f32
nvvm_tex_1d_array_v4f32_s32, // llvm.nvvm.tex.1d.array.v4f32.s32
nvvm_tex_1d_array_v4s32_f32, // llvm.nvvm.tex.1d.array.v4s32.f32
nvvm_tex_1d_array_v4s32_s32, // llvm.nvvm.tex.1d.array.v4s32.s32
nvvm_tex_1d_array_v4u32_f32, // llvm.nvvm.tex.1d.array.v4u32.f32
nvvm_tex_1d_array_v4u32_s32, // llvm.nvvm.tex.1d.array.v4u32.s32
nvvm_tex_1d_grad_v4f32_f32, // llvm.nvvm.tex.1d.grad.v4f32.f32
nvvm_tex_1d_grad_v4s32_f32, // llvm.nvvm.tex.1d.grad.v4s32.f32
nvvm_tex_1d_grad_v4u32_f32, // llvm.nvvm.tex.1d.grad.v4u32.f32
nvvm_tex_1d_level_v4f32_f32, // llvm.nvvm.tex.1d.level.v4f32.f32
nvvm_tex_1d_level_v4s32_f32, // llvm.nvvm.tex.1d.level.v4s32.f32
nvvm_tex_1d_level_v4u32_f32, // llvm.nvvm.tex.1d.level.v4u32.f32
nvvm_tex_1d_v4f32_f32, // llvm.nvvm.tex.1d.v4f32.f32
nvvm_tex_1d_v4f32_s32, // llvm.nvvm.tex.1d.v4f32.s32
nvvm_tex_1d_v4s32_f32, // llvm.nvvm.tex.1d.v4s32.f32
nvvm_tex_1d_v4s32_s32, // llvm.nvvm.tex.1d.v4s32.s32
nvvm_tex_1d_v4u32_f32, // llvm.nvvm.tex.1d.v4u32.f32
nvvm_tex_1d_v4u32_s32, // llvm.nvvm.tex.1d.v4u32.s32
nvvm_tex_2d_array_grad_v4f32_f32, // llvm.nvvm.tex.2d.array.grad.v4f32.f32
nvvm_tex_2d_array_grad_v4s32_f32, // llvm.nvvm.tex.2d.array.grad.v4s32.f32
nvvm_tex_2d_array_grad_v4u32_f32, // llvm.nvvm.tex.2d.array.grad.v4u32.f32
nvvm_tex_2d_array_level_v4f32_f32, // llvm.nvvm.tex.2d.array.level.v4f32.f32
nvvm_tex_2d_array_level_v4s32_f32, // llvm.nvvm.tex.2d.array.level.v4s32.f32
nvvm_tex_2d_array_level_v4u32_f32, // llvm.nvvm.tex.2d.array.level.v4u32.f32
nvvm_tex_2d_array_v4f32_f32, // llvm.nvvm.tex.2d.array.v4f32.f32
nvvm_tex_2d_array_v4f32_s32, // llvm.nvvm.tex.2d.array.v4f32.s32
nvvm_tex_2d_array_v4s32_f32, // llvm.nvvm.tex.2d.array.v4s32.f32
nvvm_tex_2d_array_v4s32_s32, // llvm.nvvm.tex.2d.array.v4s32.s32
nvvm_tex_2d_array_v4u32_f32, // llvm.nvvm.tex.2d.array.v4u32.f32
nvvm_tex_2d_array_v4u32_s32, // llvm.nvvm.tex.2d.array.v4u32.s32
nvvm_tex_2d_grad_v4f32_f32, // llvm.nvvm.tex.2d.grad.v4f32.f32
nvvm_tex_2d_grad_v4s32_f32, // llvm.nvvm.tex.2d.grad.v4s32.f32
nvvm_tex_2d_grad_v4u32_f32, // llvm.nvvm.tex.2d.grad.v4u32.f32
nvvm_tex_2d_level_v4f32_f32, // llvm.nvvm.tex.2d.level.v4f32.f32
nvvm_tex_2d_level_v4s32_f32, // llvm.nvvm.tex.2d.level.v4s32.f32
nvvm_tex_2d_level_v4u32_f32, // llvm.nvvm.tex.2d.level.v4u32.f32
nvvm_tex_2d_v4f32_f32, // llvm.nvvm.tex.2d.v4f32.f32
nvvm_tex_2d_v4f32_s32, // llvm.nvvm.tex.2d.v4f32.s32
nvvm_tex_2d_v4s32_f32, // llvm.nvvm.tex.2d.v4s32.f32
nvvm_tex_2d_v4s32_s32, // llvm.nvvm.tex.2d.v4s32.s32
nvvm_tex_2d_v4u32_f32, // llvm.nvvm.tex.2d.v4u32.f32
nvvm_tex_2d_v4u32_s32, // llvm.nvvm.tex.2d.v4u32.s32
nvvm_tex_3d_grad_v4f32_f32, // llvm.nvvm.tex.3d.grad.v4f32.f32
nvvm_tex_3d_grad_v4s32_f32, // llvm.nvvm.tex.3d.grad.v4s32.f32
nvvm_tex_3d_grad_v4u32_f32, // llvm.nvvm.tex.3d.grad.v4u32.f32
nvvm_tex_3d_level_v4f32_f32, // llvm.nvvm.tex.3d.level.v4f32.f32
nvvm_tex_3d_level_v4s32_f32, // llvm.nvvm.tex.3d.level.v4s32.f32
nvvm_tex_3d_level_v4u32_f32, // llvm.nvvm.tex.3d.level.v4u32.f32
nvvm_tex_3d_v4f32_f32, // llvm.nvvm.tex.3d.v4f32.f32
nvvm_tex_3d_v4f32_s32, // llvm.nvvm.tex.3d.v4f32.s32
nvvm_tex_3d_v4s32_f32, // llvm.nvvm.tex.3d.v4s32.f32
nvvm_tex_3d_v4s32_s32, // llvm.nvvm.tex.3d.v4s32.s32
nvvm_tex_3d_v4u32_f32, // llvm.nvvm.tex.3d.v4u32.f32
nvvm_tex_3d_v4u32_s32, // llvm.nvvm.tex.3d.v4u32.s32
nvvm_tex_cube_array_level_v4f32_f32, // llvm.nvvm.tex.cube.array.level.v4f32.f32
nvvm_tex_cube_array_level_v4s32_f32, // llvm.nvvm.tex.cube.array.level.v4s32.f32
nvvm_tex_cube_array_level_v4u32_f32, // llvm.nvvm.tex.cube.array.level.v4u32.f32
nvvm_tex_cube_array_v4f32_f32, // llvm.nvvm.tex.cube.array.v4f32.f32
nvvm_tex_cube_array_v4s32_f32, // llvm.nvvm.tex.cube.array.v4s32.f32
nvvm_tex_cube_array_v4u32_f32, // llvm.nvvm.tex.cube.array.v4u32.f32
nvvm_tex_cube_level_v4f32_f32, // llvm.nvvm.tex.cube.level.v4f32.f32
nvvm_tex_cube_level_v4s32_f32, // llvm.nvvm.tex.cube.level.v4s32.f32
nvvm_tex_cube_level_v4u32_f32, // llvm.nvvm.tex.cube.level.v4u32.f32
nvvm_tex_cube_v4f32_f32, // llvm.nvvm.tex.cube.v4f32.f32
nvvm_tex_cube_v4s32_f32, // llvm.nvvm.tex.cube.v4s32.f32
nvvm_tex_cube_v4u32_f32, // llvm.nvvm.tex.cube.v4u32.f32
nvvm_tex_unified_1d_array_grad_v4f32_f32, // llvm.nvvm.tex.unified.1d.array.grad.v4f32.f32
nvvm_tex_unified_1d_array_grad_v4s32_f32, // llvm.nvvm.tex.unified.1d.array.grad.v4s32.f32
nvvm_tex_unified_1d_array_grad_v4u32_f32, // llvm.nvvm.tex.unified.1d.array.grad.v4u32.f32
nvvm_tex_unified_1d_array_level_v4f32_f32, // llvm.nvvm.tex.unified.1d.array.level.v4f32.f32
nvvm_tex_unified_1d_array_level_v4s32_f32, // llvm.nvvm.tex.unified.1d.array.level.v4s32.f32
nvvm_tex_unified_1d_array_level_v4u32_f32, // llvm.nvvm.tex.unified.1d.array.level.v4u32.f32
nvvm_tex_unified_1d_array_v4f32_f32, // llvm.nvvm.tex.unified.1d.array.v4f32.f32
nvvm_tex_unified_1d_array_v4f32_s32, // llvm.nvvm.tex.unified.1d.array.v4f32.s32
nvvm_tex_unified_1d_array_v4s32_f32, // llvm.nvvm.tex.unified.1d.array.v4s32.f32
nvvm_tex_unified_1d_array_v4s32_s32, // llvm.nvvm.tex.unified.1d.array.v4s32.s32
nvvm_tex_unified_1d_array_v4u32_f32, // llvm.nvvm.tex.unified.1d.array.v4u32.f32
nvvm_tex_unified_1d_array_v4u32_s32, // llvm.nvvm.tex.unified.1d.array.v4u32.s32
nvvm_tex_unified_1d_grad_v4f32_f32, // llvm.nvvm.tex.unified.1d.grad.v4f32.f32
nvvm_tex_unified_1d_grad_v4s32_f32, // llvm.nvvm.tex.unified.1d.grad.v4s32.f32
nvvm_tex_unified_1d_grad_v4u32_f32, // llvm.nvvm.tex.unified.1d.grad.v4u32.f32
nvvm_tex_unified_1d_level_v4f32_f32, // llvm.nvvm.tex.unified.1d.level.v4f32.f32
nvvm_tex_unified_1d_level_v4s32_f32, // llvm.nvvm.tex.unified.1d.level.v4s32.f32
nvvm_tex_unified_1d_level_v4u32_f32, // llvm.nvvm.tex.unified.1d.level.v4u32.f32
nvvm_tex_unified_1d_v4f32_f32, // llvm.nvvm.tex.unified.1d.v4f32.f32
nvvm_tex_unified_1d_v4f32_s32, // llvm.nvvm.tex.unified.1d.v4f32.s32
nvvm_tex_unified_1d_v4s32_f32, // llvm.nvvm.tex.unified.1d.v4s32.f32
nvvm_tex_unified_1d_v4s32_s32, // llvm.nvvm.tex.unified.1d.v4s32.s32
nvvm_tex_unified_1d_v4u32_f32, // llvm.nvvm.tex.unified.1d.v4u32.f32
nvvm_tex_unified_1d_v4u32_s32, // llvm.nvvm.tex.unified.1d.v4u32.s32
nvvm_tex_unified_2d_array_grad_v4f32_f32, // llvm.nvvm.tex.unified.2d.array.grad.v4f32.f32
nvvm_tex_unified_2d_array_grad_v4s32_f32, // llvm.nvvm.tex.unified.2d.array.grad.v4s32.f32
nvvm_tex_unified_2d_array_grad_v4u32_f32, // llvm.nvvm.tex.unified.2d.array.grad.v4u32.f32
nvvm_tex_unified_2d_array_level_v4f32_f32, // llvm.nvvm.tex.unified.2d.array.level.v4f32.f32
nvvm_tex_unified_2d_array_level_v4s32_f32, // llvm.nvvm.tex.unified.2d.array.level.v4s32.f32
nvvm_tex_unified_2d_array_level_v4u32_f32, // llvm.nvvm.tex.unified.2d.array.level.v4u32.f32
nvvm_tex_unified_2d_array_v4f32_f32, // llvm.nvvm.tex.unified.2d.array.v4f32.f32
nvvm_tex_unified_2d_array_v4f32_s32, // llvm.nvvm.tex.unified.2d.array.v4f32.s32
nvvm_tex_unified_2d_array_v4s32_f32, // llvm.nvvm.tex.unified.2d.array.v4s32.f32
nvvm_tex_unified_2d_array_v4s32_s32, // llvm.nvvm.tex.unified.2d.array.v4s32.s32
nvvm_tex_unified_2d_array_v4u32_f32, // llvm.nvvm.tex.unified.2d.array.v4u32.f32
nvvm_tex_unified_2d_array_v4u32_s32, // llvm.nvvm.tex.unified.2d.array.v4u32.s32
nvvm_tex_unified_2d_grad_v4f32_f32, // llvm.nvvm.tex.unified.2d.grad.v4f32.f32
nvvm_tex_unified_2d_grad_v4s32_f32, // llvm.nvvm.tex.unified.2d.grad.v4s32.f32
nvvm_tex_unified_2d_grad_v4u32_f32, // llvm.nvvm.tex.unified.2d.grad.v4u32.f32
nvvm_tex_unified_2d_level_v4f32_f32, // llvm.nvvm.tex.unified.2d.level.v4f32.f32
nvvm_tex_unified_2d_level_v4s32_f32, // llvm.nvvm.tex.unified.2d.level.v4s32.f32
nvvm_tex_unified_2d_level_v4u32_f32, // llvm.nvvm.tex.unified.2d.level.v4u32.f32
nvvm_tex_unified_2d_v4f32_f32, // llvm.nvvm.tex.unified.2d.v4f32.f32
nvvm_tex_unified_2d_v4f32_s32, // llvm.nvvm.tex.unified.2d.v4f32.s32
nvvm_tex_unified_2d_v4s32_f32, // llvm.nvvm.tex.unified.2d.v4s32.f32
nvvm_tex_unified_2d_v4s32_s32, // llvm.nvvm.tex.unified.2d.v4s32.s32
nvvm_tex_unified_2d_v4u32_f32, // llvm.nvvm.tex.unified.2d.v4u32.f32
nvvm_tex_unified_2d_v4u32_s32, // llvm.nvvm.tex.unified.2d.v4u32.s32
nvvm_tex_unified_3d_grad_v4f32_f32, // llvm.nvvm.tex.unified.3d.grad.v4f32.f32
nvvm_tex_unified_3d_grad_v4s32_f32, // llvm.nvvm.tex.unified.3d.grad.v4s32.f32
nvvm_tex_unified_3d_grad_v4u32_f32, // llvm.nvvm.tex.unified.3d.grad.v4u32.f32
nvvm_tex_unified_3d_level_v4f32_f32, // llvm.nvvm.tex.unified.3d.level.v4f32.f32
nvvm_tex_unified_3d_level_v4s32_f32, // llvm.nvvm.tex.unified.3d.level.v4s32.f32
nvvm_tex_unified_3d_level_v4u32_f32, // llvm.nvvm.tex.unified.3d.level.v4u32.f32
nvvm_tex_unified_3d_v4f32_f32, // llvm.nvvm.tex.unified.3d.v4f32.f32
nvvm_tex_unified_3d_v4f32_s32, // llvm.nvvm.tex.unified.3d.v4f32.s32
nvvm_tex_unified_3d_v4s32_f32, // llvm.nvvm.tex.unified.3d.v4s32.f32
nvvm_tex_unified_3d_v4s32_s32, // llvm.nvvm.tex.unified.3d.v4s32.s32
nvvm_tex_unified_3d_v4u32_f32, // llvm.nvvm.tex.unified.3d.v4u32.f32
nvvm_tex_unified_3d_v4u32_s32, // llvm.nvvm.tex.unified.3d.v4u32.s32
nvvm_tex_unified_cube_array_level_v4f32_f32, // llvm.nvvm.tex.unified.cube.array.level.v4f32.f32
nvvm_tex_unified_cube_array_level_v4s32_f32, // llvm.nvvm.tex.unified.cube.array.level.v4s32.f32
nvvm_tex_unified_cube_array_level_v4u32_f32, // llvm.nvvm.tex.unified.cube.array.level.v4u32.f32
nvvm_tex_unified_cube_array_v4f32_f32, // llvm.nvvm.tex.unified.cube.array.v4f32.f32
nvvm_tex_unified_cube_array_v4s32_f32, // llvm.nvvm.tex.unified.cube.array.v4s32.f32
nvvm_tex_unified_cube_array_v4u32_f32, // llvm.nvvm.tex.unified.cube.array.v4u32.f32
nvvm_tex_unified_cube_level_v4f32_f32, // llvm.nvvm.tex.unified.cube.level.v4f32.f32
nvvm_tex_unified_cube_level_v4s32_f32, // llvm.nvvm.tex.unified.cube.level.v4s32.f32
nvvm_tex_unified_cube_level_v4u32_f32, // llvm.nvvm.tex.unified.cube.level.v4u32.f32
nvvm_tex_unified_cube_v4f32_f32, // llvm.nvvm.tex.unified.cube.v4f32.f32
nvvm_tex_unified_cube_v4s32_f32, // llvm.nvvm.tex.unified.cube.v4s32.f32
nvvm_tex_unified_cube_v4u32_f32, // llvm.nvvm.tex.unified.cube.v4u32.f32
nvvm_texsurf_handle, // llvm.nvvm.texsurf.handle
nvvm_texsurf_handle_internal, // llvm.nvvm.texsurf.handle.internal
nvvm_tld4_a_2d_v4f32_f32, // llvm.nvvm.tld4.a.2d.v4f32.f32
nvvm_tld4_a_2d_v4s32_f32, // llvm.nvvm.tld4.a.2d.v4s32.f32
nvvm_tld4_a_2d_v4u32_f32, // llvm.nvvm.tld4.a.2d.v4u32.f32
nvvm_tld4_b_2d_v4f32_f32, // llvm.nvvm.tld4.b.2d.v4f32.f32
nvvm_tld4_b_2d_v4s32_f32, // llvm.nvvm.tld4.b.2d.v4s32.f32
nvvm_tld4_b_2d_v4u32_f32, // llvm.nvvm.tld4.b.2d.v4u32.f32
nvvm_tld4_g_2d_v4f32_f32, // llvm.nvvm.tld4.g.2d.v4f32.f32
nvvm_tld4_g_2d_v4s32_f32, // llvm.nvvm.tld4.g.2d.v4s32.f32
nvvm_tld4_g_2d_v4u32_f32, // llvm.nvvm.tld4.g.2d.v4u32.f32
nvvm_tld4_r_2d_v4f32_f32, // llvm.nvvm.tld4.r.2d.v4f32.f32
nvvm_tld4_r_2d_v4s32_f32, // llvm.nvvm.tld4.r.2d.v4s32.f32
nvvm_tld4_r_2d_v4u32_f32, // llvm.nvvm.tld4.r.2d.v4u32.f32
nvvm_tld4_unified_a_2d_v4f32_f32, // llvm.nvvm.tld4.unified.a.2d.v4f32.f32
nvvm_tld4_unified_a_2d_v4s32_f32, // llvm.nvvm.tld4.unified.a.2d.v4s32.f32
nvvm_tld4_unified_a_2d_v4u32_f32, // llvm.nvvm.tld4.unified.a.2d.v4u32.f32
nvvm_tld4_unified_b_2d_v4f32_f32, // llvm.nvvm.tld4.unified.b.2d.v4f32.f32
nvvm_tld4_unified_b_2d_v4s32_f32, // llvm.nvvm.tld4.unified.b.2d.v4s32.f32
nvvm_tld4_unified_b_2d_v4u32_f32, // llvm.nvvm.tld4.unified.b.2d.v4u32.f32
nvvm_tld4_unified_g_2d_v4f32_f32, // llvm.nvvm.tld4.unified.g.2d.v4f32.f32
nvvm_tld4_unified_g_2d_v4s32_f32, // llvm.nvvm.tld4.unified.g.2d.v4s32.f32
nvvm_tld4_unified_g_2d_v4u32_f32, // llvm.nvvm.tld4.unified.g.2d.v4u32.f32
nvvm_tld4_unified_r_2d_v4f32_f32, // llvm.nvvm.tld4.unified.r.2d.v4f32.f32
nvvm_tld4_unified_r_2d_v4s32_f32, // llvm.nvvm.tld4.unified.r.2d.v4s32.f32
nvvm_tld4_unified_r_2d_v4u32_f32, // llvm.nvvm.tld4.unified.r.2d.v4u32.f32
nvvm_trunc_d, // llvm.nvvm.trunc.d
nvvm_trunc_f, // llvm.nvvm.trunc.f
nvvm_trunc_ftz_f, // llvm.nvvm.trunc.ftz.f
nvvm_txq_array_size, // llvm.nvvm.txq.array.size
nvvm_txq_channel_data_type, // llvm.nvvm.txq.channel.data.type
nvvm_txq_channel_order, // llvm.nvvm.txq.channel.order
nvvm_txq_depth, // llvm.nvvm.txq.depth
nvvm_txq_height, // llvm.nvvm.txq.height
nvvm_txq_num_mipmap_levels, // llvm.nvvm.txq.num.mipmap.levels
nvvm_txq_num_samples, // llvm.nvvm.txq.num.samples
nvvm_txq_width, // llvm.nvvm.txq.width
nvvm_ui2d_rm, // llvm.nvvm.ui2d.rm
nvvm_ui2d_rn, // llvm.nvvm.ui2d.rn
nvvm_ui2d_rp, // llvm.nvvm.ui2d.rp
nvvm_ui2d_rz, // llvm.nvvm.ui2d.rz
nvvm_ui2f_rm, // llvm.nvvm.ui2f.rm
nvvm_ui2f_rn, // llvm.nvvm.ui2f.rn
nvvm_ui2f_rp, // llvm.nvvm.ui2f.rp
nvvm_ui2f_rz, // llvm.nvvm.ui2f.rz
nvvm_ull2d_rm, // llvm.nvvm.ull2d.rm
nvvm_ull2d_rn, // llvm.nvvm.ull2d.rn
nvvm_ull2d_rp, // llvm.nvvm.ull2d.rp
nvvm_ull2d_rz, // llvm.nvvm.ull2d.rz
nvvm_ull2f_rm, // llvm.nvvm.ull2f.rm
nvvm_ull2f_rn, // llvm.nvvm.ull2f.rn
nvvm_ull2f_rp, // llvm.nvvm.ull2f.rp
nvvm_ull2f_rz, // llvm.nvvm.ull2f.rz
nvvm_vote_all, // llvm.nvvm.vote.all
nvvm_vote_all_sync, // llvm.nvvm.vote.all.sync
nvvm_vote_any, // llvm.nvvm.vote.any
nvvm_vote_any_sync, // llvm.nvvm.vote.any.sync
nvvm_vote_ballot, // llvm.nvvm.vote.ballot
nvvm_vote_ballot_sync, // llvm.nvvm.vote.ballot.sync
nvvm_vote_uni, // llvm.nvvm.vote.uni
nvvm_vote_uni_sync, // llvm.nvvm.vote.uni.sync
nvvm_wmma_m16n16k16_load_a_f16_col, // llvm.nvvm.wmma.m16n16k16.load.a.col.f16
nvvm_wmma_m16n16k16_load_a_s8_col, // llvm.nvvm.wmma.m16n16k16.load.a.col.s8
nvvm_wmma_m16n16k16_load_a_f16_col_stride, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.f16
nvvm_wmma_m16n16k16_load_a_s8_col_stride, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.s8
nvvm_wmma_m16n16k16_load_a_u8_col_stride, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.u8
nvvm_wmma_m16n16k16_load_a_u8_col, // llvm.nvvm.wmma.m16n16k16.load.a.col.u8
nvvm_wmma_m16n16k16_load_a_f16_row, // llvm.nvvm.wmma.m16n16k16.load.a.row.f16
nvvm_wmma_m16n16k16_load_a_s8_row, // llvm.nvvm.wmma.m16n16k16.load.a.row.s8
nvvm_wmma_m16n16k16_load_a_f16_row_stride, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.f16
nvvm_wmma_m16n16k16_load_a_s8_row_stride, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.s8
nvvm_wmma_m16n16k16_load_a_u8_row_stride, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.u8
nvvm_wmma_m16n16k16_load_a_u8_row, // llvm.nvvm.wmma.m16n16k16.load.a.row.u8
nvvm_wmma_m16n16k16_load_b_f16_col, // llvm.nvvm.wmma.m16n16k16.load.b.col.f16
nvvm_wmma_m16n16k16_load_b_s8_col, // llvm.nvvm.wmma.m16n16k16.load.b.col.s8
nvvm_wmma_m16n16k16_load_b_f16_col_stride, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.f16
nvvm_wmma_m16n16k16_load_b_s8_col_stride, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.s8
nvvm_wmma_m16n16k16_load_b_u8_col_stride, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.u8
nvvm_wmma_m16n16k16_load_b_u8_col, // llvm.nvvm.wmma.m16n16k16.load.b.col.u8
nvvm_wmma_m16n16k16_load_b_f16_row, // llvm.nvvm.wmma.m16n16k16.load.b.row.f16
nvvm_wmma_m16n16k16_load_b_s8_row, // llvm.nvvm.wmma.m16n16k16.load.b.row.s8
nvvm_wmma_m16n16k16_load_b_f16_row_stride, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.f16
nvvm_wmma_m16n16k16_load_b_s8_row_stride, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.s8
nvvm_wmma_m16n16k16_load_b_u8_row_stride, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.u8
nvvm_wmma_m16n16k16_load_b_u8_row, // llvm.nvvm.wmma.m16n16k16.load.b.row.u8
nvvm_wmma_m16n16k16_load_c_f16_col, // llvm.nvvm.wmma.m16n16k16.load.c.col.f16
nvvm_wmma_m16n16k16_load_c_f32_col, // llvm.nvvm.wmma.m16n16k16.load.c.col.f32
nvvm_wmma_m16n16k16_load_c_s32_col, // llvm.nvvm.wmma.m16n16k16.load.c.col.s32
nvvm_wmma_m16n16k16_load_c_f16_col_stride, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f16
nvvm_wmma_m16n16k16_load_c_f32_col_stride, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f32
nvvm_wmma_m16n16k16_load_c_s32_col_stride, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.s32
nvvm_wmma_m16n16k16_load_c_f16_row, // llvm.nvvm.wmma.m16n16k16.load.c.row.f16
nvvm_wmma_m16n16k16_load_c_f32_row, // llvm.nvvm.wmma.m16n16k16.load.c.row.f32
nvvm_wmma_m16n16k16_load_c_s32_row, // llvm.nvvm.wmma.m16n16k16.load.c.row.s32
nvvm_wmma_m16n16k16_load_c_f16_row_stride, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f16
nvvm_wmma_m16n16k16_load_c_f32_row_stride, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f32
nvvm_wmma_m16n16k16_load_c_s32_row_stride, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.s32
nvvm_wmma_m16n16k16_mma_col_col_f16_f16, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16
nvvm_wmma_m16n16k16_mma_col_col_f16_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16.satfinite
nvvm_wmma_m16n16k16_mma_col_col_f16_f32, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32
nvvm_wmma_m16n16k16_mma_col_col_f16_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32.satfinite
nvvm_wmma_m16n16k16_mma_col_col_f32_f16, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16
nvvm_wmma_m16n16k16_mma_col_col_f32_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16.satfinite
nvvm_wmma_m16n16k16_mma_col_col_f32_f32, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32
nvvm_wmma_m16n16k16_mma_col_col_f32_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32.satfinite
nvvm_wmma_m16n16k16_mma_col_col_s8, // llvm.nvvm.wmma.m16n16k16.mma.col.col.s8
nvvm_wmma_m16n16k16_mma_col_col_s8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.s8.satfinite
nvvm_wmma_m16n16k16_mma_col_col_u8, // llvm.nvvm.wmma.m16n16k16.mma.col.col.u8
nvvm_wmma_m16n16k16_mma_col_col_u8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.col.u8.satfinite
nvvm_wmma_m16n16k16_mma_col_row_f16_f16, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16
nvvm_wmma_m16n16k16_mma_col_row_f16_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16.satfinite
nvvm_wmma_m16n16k16_mma_col_row_f16_f32, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32
nvvm_wmma_m16n16k16_mma_col_row_f16_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32.satfinite
nvvm_wmma_m16n16k16_mma_col_row_f32_f16, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16
nvvm_wmma_m16n16k16_mma_col_row_f32_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16.satfinite
nvvm_wmma_m16n16k16_mma_col_row_f32_f32, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32
nvvm_wmma_m16n16k16_mma_col_row_f32_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32.satfinite
nvvm_wmma_m16n16k16_mma_col_row_s8, // llvm.nvvm.wmma.m16n16k16.mma.col.row.s8
nvvm_wmma_m16n16k16_mma_col_row_s8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.s8.satfinite
nvvm_wmma_m16n16k16_mma_col_row_u8, // llvm.nvvm.wmma.m16n16k16.mma.col.row.u8
nvvm_wmma_m16n16k16_mma_col_row_u8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.col.row.u8.satfinite
nvvm_wmma_m16n16k16_mma_row_col_f16_f16, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16
nvvm_wmma_m16n16k16_mma_row_col_f16_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16.satfinite
nvvm_wmma_m16n16k16_mma_row_col_f16_f32, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32
nvvm_wmma_m16n16k16_mma_row_col_f16_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32.satfinite
nvvm_wmma_m16n16k16_mma_row_col_f32_f16, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16
nvvm_wmma_m16n16k16_mma_row_col_f32_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16.satfinite
nvvm_wmma_m16n16k16_mma_row_col_f32_f32, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32
nvvm_wmma_m16n16k16_mma_row_col_f32_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32.satfinite
nvvm_wmma_m16n16k16_mma_row_col_s8, // llvm.nvvm.wmma.m16n16k16.mma.row.col.s8
nvvm_wmma_m16n16k16_mma_row_col_s8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.s8.satfinite
nvvm_wmma_m16n16k16_mma_row_col_u8, // llvm.nvvm.wmma.m16n16k16.mma.row.col.u8
nvvm_wmma_m16n16k16_mma_row_col_u8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.col.u8.satfinite
nvvm_wmma_m16n16k16_mma_row_row_f16_f16, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16
nvvm_wmma_m16n16k16_mma_row_row_f16_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16.satfinite
nvvm_wmma_m16n16k16_mma_row_row_f16_f32, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32
nvvm_wmma_m16n16k16_mma_row_row_f16_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32.satfinite
nvvm_wmma_m16n16k16_mma_row_row_f32_f16, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16
nvvm_wmma_m16n16k16_mma_row_row_f32_f16_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16.satfinite
nvvm_wmma_m16n16k16_mma_row_row_f32_f32, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32
nvvm_wmma_m16n16k16_mma_row_row_f32_f32_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32.satfinite
nvvm_wmma_m16n16k16_mma_row_row_s8, // llvm.nvvm.wmma.m16n16k16.mma.row.row.s8
nvvm_wmma_m16n16k16_mma_row_row_s8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.s8.satfinite
nvvm_wmma_m16n16k16_mma_row_row_u8, // llvm.nvvm.wmma.m16n16k16.mma.row.row.u8
nvvm_wmma_m16n16k16_mma_row_row_u8_satfinite, // llvm.nvvm.wmma.m16n16k16.mma.row.row.u8.satfinite
nvvm_wmma_m16n16k16_store_d_f16_col, // llvm.nvvm.wmma.m16n16k16.store.d.col.f16
nvvm_wmma_m16n16k16_store_d_f32_col, // llvm.nvvm.wmma.m16n16k16.store.d.col.f32
nvvm_wmma_m16n16k16_store_d_s32_col, // llvm.nvvm.wmma.m16n16k16.store.d.col.s32
nvvm_wmma_m16n16k16_store_d_f16_col_stride, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f16
nvvm_wmma_m16n16k16_store_d_f32_col_stride, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f32
nvvm_wmma_m16n16k16_store_d_s32_col_stride, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.s32
nvvm_wmma_m16n16k16_store_d_f16_row, // llvm.nvvm.wmma.m16n16k16.store.d.row.f16
nvvm_wmma_m16n16k16_store_d_f32_row, // llvm.nvvm.wmma.m16n16k16.store.d.row.f32
nvvm_wmma_m16n16k16_store_d_s32_row, // llvm.nvvm.wmma.m16n16k16.store.d.row.s32
nvvm_wmma_m16n16k16_store_d_f16_row_stride, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f16
nvvm_wmma_m16n16k16_store_d_f32_row_stride, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f32
nvvm_wmma_m16n16k16_store_d_s32_row_stride, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.s32
nvvm_wmma_m32n8k16_load_a_f16_col, // llvm.nvvm.wmma.m32n8k16.load.a.col.f16
nvvm_wmma_m32n8k16_load_a_s8_col, // llvm.nvvm.wmma.m32n8k16.load.a.col.s8
nvvm_wmma_m32n8k16_load_a_f16_col_stride, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.f16
nvvm_wmma_m32n8k16_load_a_s8_col_stride, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.s8
nvvm_wmma_m32n8k16_load_a_u8_col_stride, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.u8
nvvm_wmma_m32n8k16_load_a_u8_col, // llvm.nvvm.wmma.m32n8k16.load.a.col.u8
nvvm_wmma_m32n8k16_load_a_f16_row, // llvm.nvvm.wmma.m32n8k16.load.a.row.f16
nvvm_wmma_m32n8k16_load_a_s8_row, // llvm.nvvm.wmma.m32n8k16.load.a.row.s8
nvvm_wmma_m32n8k16_load_a_f16_row_stride, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.f16
nvvm_wmma_m32n8k16_load_a_s8_row_stride, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.s8
nvvm_wmma_m32n8k16_load_a_u8_row_stride, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.u8
nvvm_wmma_m32n8k16_load_a_u8_row, // llvm.nvvm.wmma.m32n8k16.load.a.row.u8
nvvm_wmma_m32n8k16_load_b_f16_col, // llvm.nvvm.wmma.m32n8k16.load.b.col.f16
nvvm_wmma_m32n8k16_load_b_s8_col, // llvm.nvvm.wmma.m32n8k16.load.b.col.s8
nvvm_wmma_m32n8k16_load_b_f16_col_stride, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.f16
nvvm_wmma_m32n8k16_load_b_s8_col_stride, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.s8
nvvm_wmma_m32n8k16_load_b_u8_col_stride, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.u8
nvvm_wmma_m32n8k16_load_b_u8_col, // llvm.nvvm.wmma.m32n8k16.load.b.col.u8
nvvm_wmma_m32n8k16_load_b_f16_row, // llvm.nvvm.wmma.m32n8k16.load.b.row.f16
nvvm_wmma_m32n8k16_load_b_s8_row, // llvm.nvvm.wmma.m32n8k16.load.b.row.s8
nvvm_wmma_m32n8k16_load_b_f16_row_stride, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.f16
nvvm_wmma_m32n8k16_load_b_s8_row_stride, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.s8
nvvm_wmma_m32n8k16_load_b_u8_row_stride, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.u8
nvvm_wmma_m32n8k16_load_b_u8_row, // llvm.nvvm.wmma.m32n8k16.load.b.row.u8
nvvm_wmma_m32n8k16_load_c_f16_col, // llvm.nvvm.wmma.m32n8k16.load.c.col.f16
nvvm_wmma_m32n8k16_load_c_f32_col, // llvm.nvvm.wmma.m32n8k16.load.c.col.f32
nvvm_wmma_m32n8k16_load_c_s32_col, // llvm.nvvm.wmma.m32n8k16.load.c.col.s32
nvvm_wmma_m32n8k16_load_c_f16_col_stride, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f16
nvvm_wmma_m32n8k16_load_c_f32_col_stride, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f32
nvvm_wmma_m32n8k16_load_c_s32_col_stride, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.s32
nvvm_wmma_m32n8k16_load_c_f16_row, // llvm.nvvm.wmma.m32n8k16.load.c.row.f16
nvvm_wmma_m32n8k16_load_c_f32_row, // llvm.nvvm.wmma.m32n8k16.load.c.row.f32
nvvm_wmma_m32n8k16_load_c_s32_row, // llvm.nvvm.wmma.m32n8k16.load.c.row.s32
nvvm_wmma_m32n8k16_load_c_f16_row_stride, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f16
nvvm_wmma_m32n8k16_load_c_f32_row_stride, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f32
nvvm_wmma_m32n8k16_load_c_s32_row_stride, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.s32
nvvm_wmma_m32n8k16_mma_col_col_f16_f16, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16
nvvm_wmma_m32n8k16_mma_col_col_f16_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16.satfinite
nvvm_wmma_m32n8k16_mma_col_col_f16_f32, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32
nvvm_wmma_m32n8k16_mma_col_col_f16_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32.satfinite
nvvm_wmma_m32n8k16_mma_col_col_f32_f16, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16
nvvm_wmma_m32n8k16_mma_col_col_f32_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16.satfinite
nvvm_wmma_m32n8k16_mma_col_col_f32_f32, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32
nvvm_wmma_m32n8k16_mma_col_col_f32_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32.satfinite
nvvm_wmma_m32n8k16_mma_col_col_s8, // llvm.nvvm.wmma.m32n8k16.mma.col.col.s8
nvvm_wmma_m32n8k16_mma_col_col_s8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.s8.satfinite
nvvm_wmma_m32n8k16_mma_col_col_u8, // llvm.nvvm.wmma.m32n8k16.mma.col.col.u8
nvvm_wmma_m32n8k16_mma_col_col_u8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.col.u8.satfinite
nvvm_wmma_m32n8k16_mma_col_row_f16_f16, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16
nvvm_wmma_m32n8k16_mma_col_row_f16_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16.satfinite
nvvm_wmma_m32n8k16_mma_col_row_f16_f32, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32
nvvm_wmma_m32n8k16_mma_col_row_f16_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32.satfinite
nvvm_wmma_m32n8k16_mma_col_row_f32_f16, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16
nvvm_wmma_m32n8k16_mma_col_row_f32_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16.satfinite
nvvm_wmma_m32n8k16_mma_col_row_f32_f32, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32
nvvm_wmma_m32n8k16_mma_col_row_f32_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32.satfinite
nvvm_wmma_m32n8k16_mma_col_row_s8, // llvm.nvvm.wmma.m32n8k16.mma.col.row.s8
nvvm_wmma_m32n8k16_mma_col_row_s8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.s8.satfinite
nvvm_wmma_m32n8k16_mma_col_row_u8, // llvm.nvvm.wmma.m32n8k16.mma.col.row.u8
nvvm_wmma_m32n8k16_mma_col_row_u8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.col.row.u8.satfinite
nvvm_wmma_m32n8k16_mma_row_col_f16_f16, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16
nvvm_wmma_m32n8k16_mma_row_col_f16_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16.satfinite
nvvm_wmma_m32n8k16_mma_row_col_f16_f32, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32
nvvm_wmma_m32n8k16_mma_row_col_f16_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32.satfinite
nvvm_wmma_m32n8k16_mma_row_col_f32_f16, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16
nvvm_wmma_m32n8k16_mma_row_col_f32_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16.satfinite
nvvm_wmma_m32n8k16_mma_row_col_f32_f32, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32
nvvm_wmma_m32n8k16_mma_row_col_f32_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32.satfinite
nvvm_wmma_m32n8k16_mma_row_col_s8, // llvm.nvvm.wmma.m32n8k16.mma.row.col.s8
nvvm_wmma_m32n8k16_mma_row_col_s8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.s8.satfinite
nvvm_wmma_m32n8k16_mma_row_col_u8, // llvm.nvvm.wmma.m32n8k16.mma.row.col.u8
nvvm_wmma_m32n8k16_mma_row_col_u8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.col.u8.satfinite
nvvm_wmma_m32n8k16_mma_row_row_f16_f16, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16
nvvm_wmma_m32n8k16_mma_row_row_f16_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16.satfinite
nvvm_wmma_m32n8k16_mma_row_row_f16_f32, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32
nvvm_wmma_m32n8k16_mma_row_row_f16_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32.satfinite
nvvm_wmma_m32n8k16_mma_row_row_f32_f16, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16
nvvm_wmma_m32n8k16_mma_row_row_f32_f16_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16.satfinite
nvvm_wmma_m32n8k16_mma_row_row_f32_f32, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32
nvvm_wmma_m32n8k16_mma_row_row_f32_f32_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32.satfinite
nvvm_wmma_m32n8k16_mma_row_row_s8, // llvm.nvvm.wmma.m32n8k16.mma.row.row.s8
nvvm_wmma_m32n8k16_mma_row_row_s8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.s8.satfinite
nvvm_wmma_m32n8k16_mma_row_row_u8, // llvm.nvvm.wmma.m32n8k16.mma.row.row.u8
nvvm_wmma_m32n8k16_mma_row_row_u8_satfinite, // llvm.nvvm.wmma.m32n8k16.mma.row.row.u8.satfinite
nvvm_wmma_m32n8k16_store_d_f16_col, // llvm.nvvm.wmma.m32n8k16.store.d.col.f16
nvvm_wmma_m32n8k16_store_d_f32_col, // llvm.nvvm.wmma.m32n8k16.store.d.col.f32
nvvm_wmma_m32n8k16_store_d_s32_col, // llvm.nvvm.wmma.m32n8k16.store.d.col.s32
nvvm_wmma_m32n8k16_store_d_f16_col_stride, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f16
nvvm_wmma_m32n8k16_store_d_f32_col_stride, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f32
nvvm_wmma_m32n8k16_store_d_s32_col_stride, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.s32
nvvm_wmma_m32n8k16_store_d_f16_row, // llvm.nvvm.wmma.m32n8k16.store.d.row.f16
nvvm_wmma_m32n8k16_store_d_f32_row, // llvm.nvvm.wmma.m32n8k16.store.d.row.f32
nvvm_wmma_m32n8k16_store_d_s32_row, // llvm.nvvm.wmma.m32n8k16.store.d.row.s32
nvvm_wmma_m32n8k16_store_d_f16_row_stride, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f16
nvvm_wmma_m32n8k16_store_d_f32_row_stride, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f32
nvvm_wmma_m32n8k16_store_d_s32_row_stride, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.s32
nvvm_wmma_m8n32k16_load_a_f16_col, // llvm.nvvm.wmma.m8n32k16.load.a.col.f16
nvvm_wmma_m8n32k16_load_a_s8_col, // llvm.nvvm.wmma.m8n32k16.load.a.col.s8
nvvm_wmma_m8n32k16_load_a_f16_col_stride, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.f16
nvvm_wmma_m8n32k16_load_a_s8_col_stride, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.s8
nvvm_wmma_m8n32k16_load_a_u8_col_stride, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.u8
nvvm_wmma_m8n32k16_load_a_u8_col, // llvm.nvvm.wmma.m8n32k16.load.a.col.u8
nvvm_wmma_m8n32k16_load_a_f16_row, // llvm.nvvm.wmma.m8n32k16.load.a.row.f16
nvvm_wmma_m8n32k16_load_a_s8_row, // llvm.nvvm.wmma.m8n32k16.load.a.row.s8
nvvm_wmma_m8n32k16_load_a_f16_row_stride, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.f16
nvvm_wmma_m8n32k16_load_a_s8_row_stride, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.s8
nvvm_wmma_m8n32k16_load_a_u8_row_stride, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.u8
nvvm_wmma_m8n32k16_load_a_u8_row, // llvm.nvvm.wmma.m8n32k16.load.a.row.u8
nvvm_wmma_m8n32k16_load_b_f16_col, // llvm.nvvm.wmma.m8n32k16.load.b.col.f16
nvvm_wmma_m8n32k16_load_b_s8_col, // llvm.nvvm.wmma.m8n32k16.load.b.col.s8
nvvm_wmma_m8n32k16_load_b_f16_col_stride, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.f16
nvvm_wmma_m8n32k16_load_b_s8_col_stride, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.s8
nvvm_wmma_m8n32k16_load_b_u8_col_stride, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.u8
nvvm_wmma_m8n32k16_load_b_u8_col, // llvm.nvvm.wmma.m8n32k16.load.b.col.u8
nvvm_wmma_m8n32k16_load_b_f16_row, // llvm.nvvm.wmma.m8n32k16.load.b.row.f16
nvvm_wmma_m8n32k16_load_b_s8_row, // llvm.nvvm.wmma.m8n32k16.load.b.row.s8
nvvm_wmma_m8n32k16_load_b_f16_row_stride, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.f16
nvvm_wmma_m8n32k16_load_b_s8_row_stride, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.s8
nvvm_wmma_m8n32k16_load_b_u8_row_stride, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.u8
nvvm_wmma_m8n32k16_load_b_u8_row, // llvm.nvvm.wmma.m8n32k16.load.b.row.u8
nvvm_wmma_m8n32k16_load_c_f16_col, // llvm.nvvm.wmma.m8n32k16.load.c.col.f16
nvvm_wmma_m8n32k16_load_c_f32_col, // llvm.nvvm.wmma.m8n32k16.load.c.col.f32
nvvm_wmma_m8n32k16_load_c_s32_col, // llvm.nvvm.wmma.m8n32k16.load.c.col.s32
nvvm_wmma_m8n32k16_load_c_f16_col_stride, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f16
nvvm_wmma_m8n32k16_load_c_f32_col_stride, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f32
nvvm_wmma_m8n32k16_load_c_s32_col_stride, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.s32
nvvm_wmma_m8n32k16_load_c_f16_row, // llvm.nvvm.wmma.m8n32k16.load.c.row.f16
nvvm_wmma_m8n32k16_load_c_f32_row, // llvm.nvvm.wmma.m8n32k16.load.c.row.f32
nvvm_wmma_m8n32k16_load_c_s32_row, // llvm.nvvm.wmma.m8n32k16.load.c.row.s32
nvvm_wmma_m8n32k16_load_c_f16_row_stride, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f16
nvvm_wmma_m8n32k16_load_c_f32_row_stride, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f32
nvvm_wmma_m8n32k16_load_c_s32_row_stride, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.s32
nvvm_wmma_m8n32k16_mma_col_col_f16_f16, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16
nvvm_wmma_m8n32k16_mma_col_col_f16_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16.satfinite
nvvm_wmma_m8n32k16_mma_col_col_f16_f32, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32
nvvm_wmma_m8n32k16_mma_col_col_f16_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32.satfinite
nvvm_wmma_m8n32k16_mma_col_col_f32_f16, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16
nvvm_wmma_m8n32k16_mma_col_col_f32_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16.satfinite
nvvm_wmma_m8n32k16_mma_col_col_f32_f32, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32
nvvm_wmma_m8n32k16_mma_col_col_f32_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32.satfinite
nvvm_wmma_m8n32k16_mma_col_col_s8, // llvm.nvvm.wmma.m8n32k16.mma.col.col.s8
nvvm_wmma_m8n32k16_mma_col_col_s8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.s8.satfinite
nvvm_wmma_m8n32k16_mma_col_col_u8, // llvm.nvvm.wmma.m8n32k16.mma.col.col.u8
nvvm_wmma_m8n32k16_mma_col_col_u8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.col.u8.satfinite
nvvm_wmma_m8n32k16_mma_col_row_f16_f16, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16
nvvm_wmma_m8n32k16_mma_col_row_f16_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16.satfinite
nvvm_wmma_m8n32k16_mma_col_row_f16_f32, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32
nvvm_wmma_m8n32k16_mma_col_row_f16_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32.satfinite
nvvm_wmma_m8n32k16_mma_col_row_f32_f16, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16
nvvm_wmma_m8n32k16_mma_col_row_f32_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16.satfinite
nvvm_wmma_m8n32k16_mma_col_row_f32_f32, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32
nvvm_wmma_m8n32k16_mma_col_row_f32_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32.satfinite
nvvm_wmma_m8n32k16_mma_col_row_s8, // llvm.nvvm.wmma.m8n32k16.mma.col.row.s8
nvvm_wmma_m8n32k16_mma_col_row_s8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.s8.satfinite
nvvm_wmma_m8n32k16_mma_col_row_u8, // llvm.nvvm.wmma.m8n32k16.mma.col.row.u8
nvvm_wmma_m8n32k16_mma_col_row_u8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.col.row.u8.satfinite
nvvm_wmma_m8n32k16_mma_row_col_f16_f16, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16
nvvm_wmma_m8n32k16_mma_row_col_f16_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16.satfinite
nvvm_wmma_m8n32k16_mma_row_col_f16_f32, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32
nvvm_wmma_m8n32k16_mma_row_col_f16_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32.satfinite
nvvm_wmma_m8n32k16_mma_row_col_f32_f16, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16
nvvm_wmma_m8n32k16_mma_row_col_f32_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16.satfinite
nvvm_wmma_m8n32k16_mma_row_col_f32_f32, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32
nvvm_wmma_m8n32k16_mma_row_col_f32_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32.satfinite
nvvm_wmma_m8n32k16_mma_row_col_s8, // llvm.nvvm.wmma.m8n32k16.mma.row.col.s8
nvvm_wmma_m8n32k16_mma_row_col_s8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.s8.satfinite
nvvm_wmma_m8n32k16_mma_row_col_u8, // llvm.nvvm.wmma.m8n32k16.mma.row.col.u8
nvvm_wmma_m8n32k16_mma_row_col_u8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.col.u8.satfinite
nvvm_wmma_m8n32k16_mma_row_row_f16_f16, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16
nvvm_wmma_m8n32k16_mma_row_row_f16_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16.satfinite
nvvm_wmma_m8n32k16_mma_row_row_f16_f32, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32
nvvm_wmma_m8n32k16_mma_row_row_f16_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32.satfinite
nvvm_wmma_m8n32k16_mma_row_row_f32_f16, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16
nvvm_wmma_m8n32k16_mma_row_row_f32_f16_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16.satfinite
nvvm_wmma_m8n32k16_mma_row_row_f32_f32, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32
nvvm_wmma_m8n32k16_mma_row_row_f32_f32_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32.satfinite
nvvm_wmma_m8n32k16_mma_row_row_s8, // llvm.nvvm.wmma.m8n32k16.mma.row.row.s8
nvvm_wmma_m8n32k16_mma_row_row_s8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.s8.satfinite
nvvm_wmma_m8n32k16_mma_row_row_u8, // llvm.nvvm.wmma.m8n32k16.mma.row.row.u8
nvvm_wmma_m8n32k16_mma_row_row_u8_satfinite, // llvm.nvvm.wmma.m8n32k16.mma.row.row.u8.satfinite
nvvm_wmma_m8n32k16_store_d_f16_col, // llvm.nvvm.wmma.m8n32k16.store.d.col.f16
nvvm_wmma_m8n32k16_store_d_f32_col, // llvm.nvvm.wmma.m8n32k16.store.d.col.f32
nvvm_wmma_m8n32k16_store_d_s32_col, // llvm.nvvm.wmma.m8n32k16.store.d.col.s32
nvvm_wmma_m8n32k16_store_d_f16_col_stride, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f16
nvvm_wmma_m8n32k16_store_d_f32_col_stride, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f32
nvvm_wmma_m8n32k16_store_d_s32_col_stride, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.s32
nvvm_wmma_m8n32k16_store_d_f16_row, // llvm.nvvm.wmma.m8n32k16.store.d.row.f16
nvvm_wmma_m8n32k16_store_d_f32_row, // llvm.nvvm.wmma.m8n32k16.store.d.row.f32
nvvm_wmma_m8n32k16_store_d_s32_row, // llvm.nvvm.wmma.m8n32k16.store.d.row.s32
nvvm_wmma_m8n32k16_store_d_f16_row_stride, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f16
nvvm_wmma_m8n32k16_store_d_f32_row_stride, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f32
nvvm_wmma_m8n32k16_store_d_s32_row_stride, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.s32
nvvm_wmma_m8n8k128_load_a_b1_row, // llvm.nvvm.wmma.m8n8k128.load.a.row.b1
nvvm_wmma_m8n8k128_load_a_b1_row_stride, // llvm.nvvm.wmma.m8n8k128.load.a.row.stride.b1
nvvm_wmma_m8n8k128_load_b_b1_col, // llvm.nvvm.wmma.m8n8k128.load.b.col.b1
nvvm_wmma_m8n8k128_load_b_b1_col_stride, // llvm.nvvm.wmma.m8n8k128.load.b.col.stride.b1
nvvm_wmma_m8n8k128_load_c_s32_col, // llvm.nvvm.wmma.m8n8k128.load.c.col.s32
nvvm_wmma_m8n8k128_load_c_s32_col_stride, // llvm.nvvm.wmma.m8n8k128.load.c.col.stride.s32
nvvm_wmma_m8n8k128_load_c_s32_row, // llvm.nvvm.wmma.m8n8k128.load.c.row.s32
nvvm_wmma_m8n8k128_load_c_s32_row_stride, // llvm.nvvm.wmma.m8n8k128.load.c.row.stride.s32
nvvm_wmma_m8n8k128_mma_row_col_b1, // llvm.nvvm.wmma.m8n8k128.mma.row.col.b1
nvvm_wmma_m8n8k128_store_d_s32_col, // llvm.nvvm.wmma.m8n8k128.store.d.col.s32
nvvm_wmma_m8n8k128_store_d_s32_col_stride, // llvm.nvvm.wmma.m8n8k128.store.d.col.stride.s32
nvvm_wmma_m8n8k128_store_d_s32_row, // llvm.nvvm.wmma.m8n8k128.store.d.row.s32
nvvm_wmma_m8n8k128_store_d_s32_row_stride, // llvm.nvvm.wmma.m8n8k128.store.d.row.stride.s32
nvvm_wmma_m8n8k32_load_a_s4_row, // llvm.nvvm.wmma.m8n8k32.load.a.row.s4
nvvm_wmma_m8n8k32_load_a_s4_row_stride, // llvm.nvvm.wmma.m8n8k32.load.a.row.stride.s4
nvvm_wmma_m8n8k32_load_a_u4_row_stride, // llvm.nvvm.wmma.m8n8k32.load.a.row.stride.u4
nvvm_wmma_m8n8k32_load_a_u4_row, // llvm.nvvm.wmma.m8n8k32.load.a.row.u4
nvvm_wmma_m8n8k32_load_b_s4_col, // llvm.nvvm.wmma.m8n8k32.load.b.col.s4
nvvm_wmma_m8n8k32_load_b_s4_col_stride, // llvm.nvvm.wmma.m8n8k32.load.b.col.stride.s4
nvvm_wmma_m8n8k32_load_b_u4_col_stride, // llvm.nvvm.wmma.m8n8k32.load.b.col.stride.u4
nvvm_wmma_m8n8k32_load_b_u4_col, // llvm.nvvm.wmma.m8n8k32.load.b.col.u4
nvvm_wmma_m8n8k32_load_c_s32_col, // llvm.nvvm.wmma.m8n8k32.load.c.col.s32
nvvm_wmma_m8n8k32_load_c_s32_col_stride, // llvm.nvvm.wmma.m8n8k32.load.c.col.stride.s32
nvvm_wmma_m8n8k32_load_c_s32_row, // llvm.nvvm.wmma.m8n8k32.load.c.row.s32
nvvm_wmma_m8n8k32_load_c_s32_row_stride, // llvm.nvvm.wmma.m8n8k32.load.c.row.stride.s32
nvvm_wmma_m8n8k32_mma_row_col_s4, // llvm.nvvm.wmma.m8n8k32.mma.row.col.s4
nvvm_wmma_m8n8k32_mma_row_col_s4_satfinite, // llvm.nvvm.wmma.m8n8k32.mma.row.col.s4.satfinite
nvvm_wmma_m8n8k32_mma_row_col_u4, // llvm.nvvm.wmma.m8n8k32.mma.row.col.u4
nvvm_wmma_m8n8k32_mma_row_col_u4_satfinite, // llvm.nvvm.wmma.m8n8k32.mma.row.col.u4.satfinite
nvvm_wmma_m8n8k32_store_d_s32_col, // llvm.nvvm.wmma.m8n8k32.store.d.col.s32
nvvm_wmma_m8n8k32_store_d_s32_col_stride, // llvm.nvvm.wmma.m8n8k32.store.d.col.stride.s32
nvvm_wmma_m8n8k32_store_d_s32_row, // llvm.nvvm.wmma.m8n8k32.store.d.row.s32
nvvm_wmma_m8n8k32_store_d_s32_row_stride, // llvm.nvvm.wmma.m8n8k32.store.d.row.stride.s32
ppc_addf128_round_to_odd, // llvm.ppc.addf128.round.to.odd
ppc_altivec_crypto_vcipher, // llvm.ppc.altivec.crypto.vcipher
ppc_altivec_crypto_vcipherlast, // llvm.ppc.altivec.crypto.vcipherlast
ppc_altivec_crypto_vncipher, // llvm.ppc.altivec.crypto.vncipher
ppc_altivec_crypto_vncipherlast, // llvm.ppc.altivec.crypto.vncipherlast
ppc_altivec_crypto_vpermxor, // llvm.ppc.altivec.crypto.vpermxor
ppc_altivec_crypto_vpmsumb, // llvm.ppc.altivec.crypto.vpmsumb
ppc_altivec_crypto_vpmsumd, // llvm.ppc.altivec.crypto.vpmsumd
ppc_altivec_crypto_vpmsumh, // llvm.ppc.altivec.crypto.vpmsumh
ppc_altivec_crypto_vpmsumw, // llvm.ppc.altivec.crypto.vpmsumw
ppc_altivec_crypto_vsbox, // llvm.ppc.altivec.crypto.vsbox
ppc_altivec_crypto_vshasigmad, // llvm.ppc.altivec.crypto.vshasigmad
ppc_altivec_crypto_vshasigmaw, // llvm.ppc.altivec.crypto.vshasigmaw
ppc_altivec_dss, // llvm.ppc.altivec.dss
ppc_altivec_dssall, // llvm.ppc.altivec.dssall
ppc_altivec_dst, // llvm.ppc.altivec.dst
ppc_altivec_dstst, // llvm.ppc.altivec.dstst
ppc_altivec_dststt, // llvm.ppc.altivec.dststt
ppc_altivec_dstt, // llvm.ppc.altivec.dstt
ppc_altivec_lvebx, // llvm.ppc.altivec.lvebx
ppc_altivec_lvehx, // llvm.ppc.altivec.lvehx
ppc_altivec_lvewx, // llvm.ppc.altivec.lvewx
ppc_altivec_lvsl, // llvm.ppc.altivec.lvsl
ppc_altivec_lvsr, // llvm.ppc.altivec.lvsr
ppc_altivec_lvx, // llvm.ppc.altivec.lvx
ppc_altivec_lvxl, // llvm.ppc.altivec.lvxl
ppc_altivec_mfvscr, // llvm.ppc.altivec.mfvscr
ppc_altivec_mtvscr, // llvm.ppc.altivec.mtvscr
ppc_altivec_stvebx, // llvm.ppc.altivec.stvebx
ppc_altivec_stvehx, // llvm.ppc.altivec.stvehx
ppc_altivec_stvewx, // llvm.ppc.altivec.stvewx
ppc_altivec_stvx, // llvm.ppc.altivec.stvx
ppc_altivec_stvxl, // llvm.ppc.altivec.stvxl
ppc_altivec_vabsdub, // llvm.ppc.altivec.vabsdub
ppc_altivec_vabsduh, // llvm.ppc.altivec.vabsduh
ppc_altivec_vabsduw, // llvm.ppc.altivec.vabsduw
ppc_altivec_vaddcuq, // llvm.ppc.altivec.vaddcuq
ppc_altivec_vaddcuw, // llvm.ppc.altivec.vaddcuw
ppc_altivec_vaddecuq, // llvm.ppc.altivec.vaddecuq
ppc_altivec_vaddeuqm, // llvm.ppc.altivec.vaddeuqm
ppc_altivec_vaddsbs, // llvm.ppc.altivec.vaddsbs
ppc_altivec_vaddshs, // llvm.ppc.altivec.vaddshs
ppc_altivec_vaddsws, // llvm.ppc.altivec.vaddsws
ppc_altivec_vaddubs, // llvm.ppc.altivec.vaddubs
ppc_altivec_vadduhs, // llvm.ppc.altivec.vadduhs
ppc_altivec_vadduws, // llvm.ppc.altivec.vadduws
ppc_altivec_vavgsb, // llvm.ppc.altivec.vavgsb
ppc_altivec_vavgsh, // llvm.ppc.altivec.vavgsh
ppc_altivec_vavgsw, // llvm.ppc.altivec.vavgsw
ppc_altivec_vavgub, // llvm.ppc.altivec.vavgub
ppc_altivec_vavguh, // llvm.ppc.altivec.vavguh
ppc_altivec_vavguw, // llvm.ppc.altivec.vavguw
ppc_altivec_vbpermq, // llvm.ppc.altivec.vbpermq
ppc_altivec_vcfsx, // llvm.ppc.altivec.vcfsx
ppc_altivec_vcfux, // llvm.ppc.altivec.vcfux
ppc_altivec_vclzlsbb, // llvm.ppc.altivec.vclzlsbb
ppc_altivec_vcmpbfp, // llvm.ppc.altivec.vcmpbfp
ppc_altivec_vcmpbfp_p, // llvm.ppc.altivec.vcmpbfp.p
ppc_altivec_vcmpeqfp, // llvm.ppc.altivec.vcmpeqfp
ppc_altivec_vcmpeqfp_p, // llvm.ppc.altivec.vcmpeqfp.p
ppc_altivec_vcmpequb, // llvm.ppc.altivec.vcmpequb
ppc_altivec_vcmpequb_p, // llvm.ppc.altivec.vcmpequb.p
ppc_altivec_vcmpequd, // llvm.ppc.altivec.vcmpequd
ppc_altivec_vcmpequd_p, // llvm.ppc.altivec.vcmpequd.p
ppc_altivec_vcmpequh, // llvm.ppc.altivec.vcmpequh
ppc_altivec_vcmpequh_p, // llvm.ppc.altivec.vcmpequh.p
ppc_altivec_vcmpequw, // llvm.ppc.altivec.vcmpequw
ppc_altivec_vcmpequw_p, // llvm.ppc.altivec.vcmpequw.p
ppc_altivec_vcmpgefp, // llvm.ppc.altivec.vcmpgefp
ppc_altivec_vcmpgefp_p, // llvm.ppc.altivec.vcmpgefp.p
ppc_altivec_vcmpgtfp, // llvm.ppc.altivec.vcmpgtfp
ppc_altivec_vcmpgtfp_p, // llvm.ppc.altivec.vcmpgtfp.p
ppc_altivec_vcmpgtsb, // llvm.ppc.altivec.vcmpgtsb
ppc_altivec_vcmpgtsb_p, // llvm.ppc.altivec.vcmpgtsb.p
ppc_altivec_vcmpgtsd, // llvm.ppc.altivec.vcmpgtsd
ppc_altivec_vcmpgtsd_p, // llvm.ppc.altivec.vcmpgtsd.p
ppc_altivec_vcmpgtsh, // llvm.ppc.altivec.vcmpgtsh
ppc_altivec_vcmpgtsh_p, // llvm.ppc.altivec.vcmpgtsh.p
ppc_altivec_vcmpgtsw, // llvm.ppc.altivec.vcmpgtsw
ppc_altivec_vcmpgtsw_p, // llvm.ppc.altivec.vcmpgtsw.p
ppc_altivec_vcmpgtub, // llvm.ppc.altivec.vcmpgtub
ppc_altivec_vcmpgtub_p, // llvm.ppc.altivec.vcmpgtub.p
ppc_altivec_vcmpgtud, // llvm.ppc.altivec.vcmpgtud
ppc_altivec_vcmpgtud_p, // llvm.ppc.altivec.vcmpgtud.p
ppc_altivec_vcmpgtuh, // llvm.ppc.altivec.vcmpgtuh
ppc_altivec_vcmpgtuh_p, // llvm.ppc.altivec.vcmpgtuh.p
ppc_altivec_vcmpgtuw, // llvm.ppc.altivec.vcmpgtuw
ppc_altivec_vcmpgtuw_p, // llvm.ppc.altivec.vcmpgtuw.p
ppc_altivec_vcmpneb, // llvm.ppc.altivec.vcmpneb
ppc_altivec_vcmpneb_p, // llvm.ppc.altivec.vcmpneb.p
ppc_altivec_vcmpneh, // llvm.ppc.altivec.vcmpneh
ppc_altivec_vcmpneh_p, // llvm.ppc.altivec.vcmpneh.p
ppc_altivec_vcmpnew, // llvm.ppc.altivec.vcmpnew
ppc_altivec_vcmpnew_p, // llvm.ppc.altivec.vcmpnew.p
ppc_altivec_vcmpnezb, // llvm.ppc.altivec.vcmpnezb
ppc_altivec_vcmpnezb_p, // llvm.ppc.altivec.vcmpnezb.p
ppc_altivec_vcmpnezh, // llvm.ppc.altivec.vcmpnezh
ppc_altivec_vcmpnezh_p, // llvm.ppc.altivec.vcmpnezh.p
ppc_altivec_vcmpnezw, // llvm.ppc.altivec.vcmpnezw
ppc_altivec_vcmpnezw_p, // llvm.ppc.altivec.vcmpnezw.p
ppc_altivec_vctsxs, // llvm.ppc.altivec.vctsxs
ppc_altivec_vctuxs, // llvm.ppc.altivec.vctuxs
ppc_altivec_vctzlsbb, // llvm.ppc.altivec.vctzlsbb
ppc_altivec_vexptefp, // llvm.ppc.altivec.vexptefp
ppc_altivec_vgbbd, // llvm.ppc.altivec.vgbbd
ppc_altivec_vlogefp, // llvm.ppc.altivec.vlogefp
ppc_altivec_vmaddfp, // llvm.ppc.altivec.vmaddfp
ppc_altivec_vmaxfp, // llvm.ppc.altivec.vmaxfp
ppc_altivec_vmaxsb, // llvm.ppc.altivec.vmaxsb
ppc_altivec_vmaxsd, // llvm.ppc.altivec.vmaxsd
ppc_altivec_vmaxsh, // llvm.ppc.altivec.vmaxsh
ppc_altivec_vmaxsw, // llvm.ppc.altivec.vmaxsw
ppc_altivec_vmaxub, // llvm.ppc.altivec.vmaxub
ppc_altivec_vmaxud, // llvm.ppc.altivec.vmaxud
ppc_altivec_vmaxuh, // llvm.ppc.altivec.vmaxuh
ppc_altivec_vmaxuw, // llvm.ppc.altivec.vmaxuw
ppc_altivec_vmhaddshs, // llvm.ppc.altivec.vmhaddshs
ppc_altivec_vmhraddshs, // llvm.ppc.altivec.vmhraddshs
ppc_altivec_vminfp, // llvm.ppc.altivec.vminfp
ppc_altivec_vminsb, // llvm.ppc.altivec.vminsb
ppc_altivec_vminsd, // llvm.ppc.altivec.vminsd
ppc_altivec_vminsh, // llvm.ppc.altivec.vminsh
ppc_altivec_vminsw, // llvm.ppc.altivec.vminsw
ppc_altivec_vminub, // llvm.ppc.altivec.vminub
ppc_altivec_vminud, // llvm.ppc.altivec.vminud
ppc_altivec_vminuh, // llvm.ppc.altivec.vminuh
ppc_altivec_vminuw, // llvm.ppc.altivec.vminuw
ppc_altivec_vmladduhm, // llvm.ppc.altivec.vmladduhm
ppc_altivec_vmsummbm, // llvm.ppc.altivec.vmsummbm
ppc_altivec_vmsumshm, // llvm.ppc.altivec.vmsumshm
ppc_altivec_vmsumshs, // llvm.ppc.altivec.vmsumshs
ppc_altivec_vmsumubm, // llvm.ppc.altivec.vmsumubm
ppc_altivec_vmsumuhm, // llvm.ppc.altivec.vmsumuhm
ppc_altivec_vmsumuhs, // llvm.ppc.altivec.vmsumuhs
ppc_altivec_vmulesb, // llvm.ppc.altivec.vmulesb
ppc_altivec_vmulesh, // llvm.ppc.altivec.vmulesh
ppc_altivec_vmulesw, // llvm.ppc.altivec.vmulesw
ppc_altivec_vmuleub, // llvm.ppc.altivec.vmuleub
ppc_altivec_vmuleuh, // llvm.ppc.altivec.vmuleuh
ppc_altivec_vmuleuw, // llvm.ppc.altivec.vmuleuw
ppc_altivec_vmulosb, // llvm.ppc.altivec.vmulosb
ppc_altivec_vmulosh, // llvm.ppc.altivec.vmulosh
ppc_altivec_vmulosw, // llvm.ppc.altivec.vmulosw
ppc_altivec_vmuloub, // llvm.ppc.altivec.vmuloub
ppc_altivec_vmulouh, // llvm.ppc.altivec.vmulouh
ppc_altivec_vmulouw, // llvm.ppc.altivec.vmulouw
ppc_altivec_vnmsubfp, // llvm.ppc.altivec.vnmsubfp
ppc_altivec_vperm, // llvm.ppc.altivec.vperm
ppc_altivec_vpkpx, // llvm.ppc.altivec.vpkpx
ppc_altivec_vpksdss, // llvm.ppc.altivec.vpksdss
ppc_altivec_vpksdus, // llvm.ppc.altivec.vpksdus
ppc_altivec_vpkshss, // llvm.ppc.altivec.vpkshss
ppc_altivec_vpkshus, // llvm.ppc.altivec.vpkshus
ppc_altivec_vpkswss, // llvm.ppc.altivec.vpkswss
ppc_altivec_vpkswus, // llvm.ppc.altivec.vpkswus
ppc_altivec_vpkudus, // llvm.ppc.altivec.vpkudus
ppc_altivec_vpkuhus, // llvm.ppc.altivec.vpkuhus
ppc_altivec_vpkuwus, // llvm.ppc.altivec.vpkuwus
ppc_altivec_vprtybd, // llvm.ppc.altivec.vprtybd
ppc_altivec_vprtybq, // llvm.ppc.altivec.vprtybq
ppc_altivec_vprtybw, // llvm.ppc.altivec.vprtybw
ppc_altivec_vrefp, // llvm.ppc.altivec.vrefp
ppc_altivec_vrfim, // llvm.ppc.altivec.vrfim
ppc_altivec_vrfin, // llvm.ppc.altivec.vrfin
ppc_altivec_vrfip, // llvm.ppc.altivec.vrfip
ppc_altivec_vrfiz, // llvm.ppc.altivec.vrfiz
ppc_altivec_vrlb, // llvm.ppc.altivec.vrlb
ppc_altivec_vrld, // llvm.ppc.altivec.vrld
ppc_altivec_vrldmi, // llvm.ppc.altivec.vrldmi
ppc_altivec_vrldnm, // llvm.ppc.altivec.vrldnm
ppc_altivec_vrlh, // llvm.ppc.altivec.vrlh
ppc_altivec_vrlw, // llvm.ppc.altivec.vrlw
ppc_altivec_vrlwmi, // llvm.ppc.altivec.vrlwmi
ppc_altivec_vrlwnm, // llvm.ppc.altivec.vrlwnm
ppc_altivec_vrsqrtefp, // llvm.ppc.altivec.vrsqrtefp
ppc_altivec_vsel, // llvm.ppc.altivec.vsel
ppc_altivec_vsl, // llvm.ppc.altivec.vsl
ppc_altivec_vslb, // llvm.ppc.altivec.vslb
ppc_altivec_vslh, // llvm.ppc.altivec.vslh
ppc_altivec_vslo, // llvm.ppc.altivec.vslo
ppc_altivec_vslv, // llvm.ppc.altivec.vslv
ppc_altivec_vslw, // llvm.ppc.altivec.vslw
ppc_altivec_vsr, // llvm.ppc.altivec.vsr
ppc_altivec_vsrab, // llvm.ppc.altivec.vsrab
ppc_altivec_vsrah, // llvm.ppc.altivec.vsrah
ppc_altivec_vsraw, // llvm.ppc.altivec.vsraw
ppc_altivec_vsrb, // llvm.ppc.altivec.vsrb
ppc_altivec_vsrh, // llvm.ppc.altivec.vsrh
ppc_altivec_vsro, // llvm.ppc.altivec.vsro
ppc_altivec_vsrv, // llvm.ppc.altivec.vsrv
ppc_altivec_vsrw, // llvm.ppc.altivec.vsrw
ppc_altivec_vsubcuq, // llvm.ppc.altivec.vsubcuq
ppc_altivec_vsubcuw, // llvm.ppc.altivec.vsubcuw
ppc_altivec_vsubecuq, // llvm.ppc.altivec.vsubecuq
ppc_altivec_vsubeuqm, // llvm.ppc.altivec.vsubeuqm
ppc_altivec_vsubsbs, // llvm.ppc.altivec.vsubsbs
ppc_altivec_vsubshs, // llvm.ppc.altivec.vsubshs
ppc_altivec_vsubsws, // llvm.ppc.altivec.vsubsws
ppc_altivec_vsububs, // llvm.ppc.altivec.vsububs
ppc_altivec_vsubuhs, // llvm.ppc.altivec.vsubuhs
ppc_altivec_vsubuws, // llvm.ppc.altivec.vsubuws
ppc_altivec_vsum2sws, // llvm.ppc.altivec.vsum2sws
ppc_altivec_vsum4sbs, // llvm.ppc.altivec.vsum4sbs
ppc_altivec_vsum4shs, // llvm.ppc.altivec.vsum4shs
ppc_altivec_vsum4ubs, // llvm.ppc.altivec.vsum4ubs
ppc_altivec_vsumsws, // llvm.ppc.altivec.vsumsws
ppc_altivec_vupkhpx, // llvm.ppc.altivec.vupkhpx
ppc_altivec_vupkhsb, // llvm.ppc.altivec.vupkhsb
ppc_altivec_vupkhsh, // llvm.ppc.altivec.vupkhsh
ppc_altivec_vupkhsw, // llvm.ppc.altivec.vupkhsw
ppc_altivec_vupklpx, // llvm.ppc.altivec.vupklpx
ppc_altivec_vupklsb, // llvm.ppc.altivec.vupklsb
ppc_altivec_vupklsh, // llvm.ppc.altivec.vupklsh
ppc_altivec_vupklsw, // llvm.ppc.altivec.vupklsw
ppc_bpermd, // llvm.ppc.bpermd
ppc_cfence, // llvm.ppc.cfence
ppc_dcba, // llvm.ppc.dcba
ppc_dcbf, // llvm.ppc.dcbf
ppc_dcbi, // llvm.ppc.dcbi
ppc_dcbst, // llvm.ppc.dcbst
ppc_dcbt, // llvm.ppc.dcbt
ppc_dcbtst, // llvm.ppc.dcbtst
ppc_dcbz, // llvm.ppc.dcbz
ppc_dcbzl, // llvm.ppc.dcbzl
ppc_divde, // llvm.ppc.divde
ppc_divdeu, // llvm.ppc.divdeu
ppc_divf128_round_to_odd, // llvm.ppc.divf128.round.to.odd
ppc_divwe, // llvm.ppc.divwe
ppc_divweu, // llvm.ppc.divweu
ppc_fmaf128_round_to_odd, // llvm.ppc.fmaf128.round.to.odd
ppc_get_texasr, // llvm.ppc.get.texasr
ppc_get_texasru, // llvm.ppc.get.texasru
ppc_get_tfhar, // llvm.ppc.get.tfhar
ppc_get_tfiar, // llvm.ppc.get.tfiar
ppc_is_decremented_ctr_nonzero, // llvm.ppc.is.decremented.ctr.nonzero
ppc_lwsync, // llvm.ppc.lwsync
ppc_mtctr, // llvm.ppc.mtctr
ppc_mulf128_round_to_odd, // llvm.ppc.mulf128.round.to.odd
ppc_qpx_qvfabs, // llvm.ppc.qpx.qvfabs
ppc_qpx_qvfadd, // llvm.ppc.qpx.qvfadd
ppc_qpx_qvfadds, // llvm.ppc.qpx.qvfadds
ppc_qpx_qvfcfid, // llvm.ppc.qpx.qvfcfid
ppc_qpx_qvfcfids, // llvm.ppc.qpx.qvfcfids
ppc_qpx_qvfcfidu, // llvm.ppc.qpx.qvfcfidu
ppc_qpx_qvfcfidus, // llvm.ppc.qpx.qvfcfidus
ppc_qpx_qvfcmpeq, // llvm.ppc.qpx.qvfcmpeq
ppc_qpx_qvfcmpgt, // llvm.ppc.qpx.qvfcmpgt
ppc_qpx_qvfcmplt, // llvm.ppc.qpx.qvfcmplt
ppc_qpx_qvfcpsgn, // llvm.ppc.qpx.qvfcpsgn
ppc_qpx_qvfctid, // llvm.ppc.qpx.qvfctid
ppc_qpx_qvfctidu, // llvm.ppc.qpx.qvfctidu
ppc_qpx_qvfctiduz, // llvm.ppc.qpx.qvfctiduz
ppc_qpx_qvfctidz, // llvm.ppc.qpx.qvfctidz
ppc_qpx_qvfctiw, // llvm.ppc.qpx.qvfctiw
ppc_qpx_qvfctiwu, // llvm.ppc.qpx.qvfctiwu
ppc_qpx_qvfctiwuz, // llvm.ppc.qpx.qvfctiwuz
ppc_qpx_qvfctiwz, // llvm.ppc.qpx.qvfctiwz
ppc_qpx_qvflogical, // llvm.ppc.qpx.qvflogical
ppc_qpx_qvfmadd, // llvm.ppc.qpx.qvfmadd
ppc_qpx_qvfmadds, // llvm.ppc.qpx.qvfmadds
ppc_qpx_qvfmsub, // llvm.ppc.qpx.qvfmsub
ppc_qpx_qvfmsubs, // llvm.ppc.qpx.qvfmsubs
ppc_qpx_qvfmul, // llvm.ppc.qpx.qvfmul
ppc_qpx_qvfmuls, // llvm.ppc.qpx.qvfmuls
ppc_qpx_qvfnabs, // llvm.ppc.qpx.qvfnabs
ppc_qpx_qvfneg, // llvm.ppc.qpx.qvfneg
ppc_qpx_qvfnmadd, // llvm.ppc.qpx.qvfnmadd
ppc_qpx_qvfnmadds, // llvm.ppc.qpx.qvfnmadds
ppc_qpx_qvfnmsub, // llvm.ppc.qpx.qvfnmsub
ppc_qpx_qvfnmsubs, // llvm.ppc.qpx.qvfnmsubs
ppc_qpx_qvfperm, // llvm.ppc.qpx.qvfperm
ppc_qpx_qvfre, // llvm.ppc.qpx.qvfre
ppc_qpx_qvfres, // llvm.ppc.qpx.qvfres
ppc_qpx_qvfrim, // llvm.ppc.qpx.qvfrim
ppc_qpx_qvfrin, // llvm.ppc.qpx.qvfrin
ppc_qpx_qvfrip, // llvm.ppc.qpx.qvfrip
ppc_qpx_qvfriz, // llvm.ppc.qpx.qvfriz
ppc_qpx_qvfrsp, // llvm.ppc.qpx.qvfrsp
ppc_qpx_qvfrsqrte, // llvm.ppc.qpx.qvfrsqrte
ppc_qpx_qvfrsqrtes, // llvm.ppc.qpx.qvfrsqrtes
ppc_qpx_qvfsel, // llvm.ppc.qpx.qvfsel
ppc_qpx_qvfsub, // llvm.ppc.qpx.qvfsub
ppc_qpx_qvfsubs, // llvm.ppc.qpx.qvfsubs
ppc_qpx_qvftstnan, // llvm.ppc.qpx.qvftstnan
ppc_qpx_qvfxmadd, // llvm.ppc.qpx.qvfxmadd
ppc_qpx_qvfxmadds, // llvm.ppc.qpx.qvfxmadds
ppc_qpx_qvfxmul, // llvm.ppc.qpx.qvfxmul
ppc_qpx_qvfxmuls, // llvm.ppc.qpx.qvfxmuls
ppc_qpx_qvfxxcpnmadd, // llvm.ppc.qpx.qvfxxcpnmadd
ppc_qpx_qvfxxcpnmadds, // llvm.ppc.qpx.qvfxxcpnmadds
ppc_qpx_qvfxxmadd, // llvm.ppc.qpx.qvfxxmadd
ppc_qpx_qvfxxmadds, // llvm.ppc.qpx.qvfxxmadds
ppc_qpx_qvfxxnpmadd, // llvm.ppc.qpx.qvfxxnpmadd
ppc_qpx_qvfxxnpmadds, // llvm.ppc.qpx.qvfxxnpmadds
ppc_qpx_qvgpci, // llvm.ppc.qpx.qvgpci
ppc_qpx_qvlfcd, // llvm.ppc.qpx.qvlfcd
ppc_qpx_qvlfcda, // llvm.ppc.qpx.qvlfcda
ppc_qpx_qvlfcs, // llvm.ppc.qpx.qvlfcs
ppc_qpx_qvlfcsa, // llvm.ppc.qpx.qvlfcsa
ppc_qpx_qvlfd, // llvm.ppc.qpx.qvlfd
ppc_qpx_qvlfda, // llvm.ppc.qpx.qvlfda
ppc_qpx_qvlfiwa, // llvm.ppc.qpx.qvlfiwa
ppc_qpx_qvlfiwaa, // llvm.ppc.qpx.qvlfiwaa
ppc_qpx_qvlfiwz, // llvm.ppc.qpx.qvlfiwz
ppc_qpx_qvlfiwza, // llvm.ppc.qpx.qvlfiwza
ppc_qpx_qvlfs, // llvm.ppc.qpx.qvlfs
ppc_qpx_qvlfsa, // llvm.ppc.qpx.qvlfsa
ppc_qpx_qvlpcld, // llvm.ppc.qpx.qvlpcld
ppc_qpx_qvlpcls, // llvm.ppc.qpx.qvlpcls
ppc_qpx_qvlpcrd, // llvm.ppc.qpx.qvlpcrd
ppc_qpx_qvlpcrs, // llvm.ppc.qpx.qvlpcrs
ppc_qpx_qvstfcd, // llvm.ppc.qpx.qvstfcd
ppc_qpx_qvstfcda, // llvm.ppc.qpx.qvstfcda
ppc_qpx_qvstfcs, // llvm.ppc.qpx.qvstfcs
ppc_qpx_qvstfcsa, // llvm.ppc.qpx.qvstfcsa
ppc_qpx_qvstfd, // llvm.ppc.qpx.qvstfd
ppc_qpx_qvstfda, // llvm.ppc.qpx.qvstfda
ppc_qpx_qvstfiw, // llvm.ppc.qpx.qvstfiw
ppc_qpx_qvstfiwa, // llvm.ppc.qpx.qvstfiwa
ppc_qpx_qvstfs, // llvm.ppc.qpx.qvstfs
ppc_qpx_qvstfsa, // llvm.ppc.qpx.qvstfsa
ppc_scalar_extract_expq, // llvm.ppc.scalar.extract.expq
ppc_scalar_insert_exp_qp, // llvm.ppc.scalar.insert.exp.qp
ppc_set_texasr, // llvm.ppc.set.texasr
ppc_set_texasru, // llvm.ppc.set.texasru
ppc_set_tfhar, // llvm.ppc.set.tfhar
ppc_set_tfiar, // llvm.ppc.set.tfiar
ppc_setrnd, // llvm.ppc.setrnd
ppc_sqrtf128_round_to_odd, // llvm.ppc.sqrtf128.round.to.odd
ppc_subf128_round_to_odd, // llvm.ppc.subf128.round.to.odd
ppc_sync, // llvm.ppc.sync
ppc_tabort, // llvm.ppc.tabort
ppc_tabortdc, // llvm.ppc.tabortdc
ppc_tabortdci, // llvm.ppc.tabortdci
ppc_tabortwc, // llvm.ppc.tabortwc
ppc_tabortwci, // llvm.ppc.tabortwci
ppc_tbegin, // llvm.ppc.tbegin
ppc_tcheck, // llvm.ppc.tcheck
ppc_tend, // llvm.ppc.tend
ppc_tendall, // llvm.ppc.tendall
ppc_trechkpt, // llvm.ppc.trechkpt
ppc_treclaim, // llvm.ppc.treclaim
ppc_tresume, // llvm.ppc.tresume
ppc_truncf128_round_to_odd, // llvm.ppc.truncf128.round.to.odd
ppc_tsr, // llvm.ppc.tsr
ppc_tsuspend, // llvm.ppc.tsuspend
ppc_ttest, // llvm.ppc.ttest
ppc_vsx_lxvd2x, // llvm.ppc.vsx.lxvd2x
ppc_vsx_lxvd2x_be, // llvm.ppc.vsx.lxvd2x.be
ppc_vsx_lxvl, // llvm.ppc.vsx.lxvl
ppc_vsx_lxvll, // llvm.ppc.vsx.lxvll
ppc_vsx_lxvw4x, // llvm.ppc.vsx.lxvw4x
ppc_vsx_lxvw4x_be, // llvm.ppc.vsx.lxvw4x.be
ppc_vsx_stxvd2x, // llvm.ppc.vsx.stxvd2x
ppc_vsx_stxvd2x_be, // llvm.ppc.vsx.stxvd2x.be
ppc_vsx_stxvl, // llvm.ppc.vsx.stxvl
ppc_vsx_stxvll, // llvm.ppc.vsx.stxvll
ppc_vsx_stxvw4x, // llvm.ppc.vsx.stxvw4x
ppc_vsx_stxvw4x_be, // llvm.ppc.vsx.stxvw4x.be
ppc_vsx_xsmaxdp, // llvm.ppc.vsx.xsmaxdp
ppc_vsx_xsmindp, // llvm.ppc.vsx.xsmindp
ppc_vsx_xvcmpeqdp, // llvm.ppc.vsx.xvcmpeqdp
ppc_vsx_xvcmpeqdp_p, // llvm.ppc.vsx.xvcmpeqdp.p
ppc_vsx_xvcmpeqsp, // llvm.ppc.vsx.xvcmpeqsp
ppc_vsx_xvcmpeqsp_p, // llvm.ppc.vsx.xvcmpeqsp.p
ppc_vsx_xvcmpgedp, // llvm.ppc.vsx.xvcmpgedp
ppc_vsx_xvcmpgedp_p, // llvm.ppc.vsx.xvcmpgedp.p
ppc_vsx_xvcmpgesp, // llvm.ppc.vsx.xvcmpgesp
ppc_vsx_xvcmpgesp_p, // llvm.ppc.vsx.xvcmpgesp.p
ppc_vsx_xvcmpgtdp, // llvm.ppc.vsx.xvcmpgtdp
ppc_vsx_xvcmpgtdp_p, // llvm.ppc.vsx.xvcmpgtdp.p
ppc_vsx_xvcmpgtsp, // llvm.ppc.vsx.xvcmpgtsp
ppc_vsx_xvcmpgtsp_p, // llvm.ppc.vsx.xvcmpgtsp.p
ppc_vsx_xvcvdpsp, // llvm.ppc.vsx.xvcvdpsp
ppc_vsx_xvcvdpsxws, // llvm.ppc.vsx.xvcvdpsxws
ppc_vsx_xvcvdpuxws, // llvm.ppc.vsx.xvcvdpuxws
ppc_vsx_xvcvhpsp, // llvm.ppc.vsx.xvcvhpsp
ppc_vsx_xvcvspdp, // llvm.ppc.vsx.xvcvspdp
ppc_vsx_xvcvsphp, // llvm.ppc.vsx.xvcvsphp
ppc_vsx_xvcvsxdsp, // llvm.ppc.vsx.xvcvsxdsp
ppc_vsx_xvcvsxwdp, // llvm.ppc.vsx.xvcvsxwdp
ppc_vsx_xvcvuxdsp, // llvm.ppc.vsx.xvcvuxdsp
ppc_vsx_xvcvuxwdp, // llvm.ppc.vsx.xvcvuxwdp
ppc_vsx_xvdivdp, // llvm.ppc.vsx.xvdivdp
ppc_vsx_xvdivsp, // llvm.ppc.vsx.xvdivsp
ppc_vsx_xviexpdp, // llvm.ppc.vsx.xviexpdp
ppc_vsx_xviexpsp, // llvm.ppc.vsx.xviexpsp
ppc_vsx_xvmaxdp, // llvm.ppc.vsx.xvmaxdp
ppc_vsx_xvmaxsp, // llvm.ppc.vsx.xvmaxsp
ppc_vsx_xvmindp, // llvm.ppc.vsx.xvmindp
ppc_vsx_xvminsp, // llvm.ppc.vsx.xvminsp
ppc_vsx_xvrdpip, // llvm.ppc.vsx.xvrdpip
ppc_vsx_xvredp, // llvm.ppc.vsx.xvredp
ppc_vsx_xvresp, // llvm.ppc.vsx.xvresp
ppc_vsx_xvrspip, // llvm.ppc.vsx.xvrspip
ppc_vsx_xvrsqrtedp, // llvm.ppc.vsx.xvrsqrtedp
ppc_vsx_xvrsqrtesp, // llvm.ppc.vsx.xvrsqrtesp
ppc_vsx_xvtstdcdp, // llvm.ppc.vsx.xvtstdcdp
ppc_vsx_xvtstdcsp, // llvm.ppc.vsx.xvtstdcsp
ppc_vsx_xvxexpdp, // llvm.ppc.vsx.xvxexpdp
ppc_vsx_xvxexpsp, // llvm.ppc.vsx.xvxexpsp
ppc_vsx_xvxsigdp, // llvm.ppc.vsx.xvxsigdp
ppc_vsx_xvxsigsp, // llvm.ppc.vsx.xvxsigsp
ppc_vsx_xxextractuw, // llvm.ppc.vsx.xxextractuw
ppc_vsx_xxinsertw, // llvm.ppc.vsx.xxinsertw
ppc_vsx_xxleqv, // llvm.ppc.vsx.xxleqv
r600_cube, // llvm.r600.cube
r600_ddx, // llvm.r600.ddx
r600_ddy, // llvm.r600.ddy
r600_dot4, // llvm.r600.dot4
r600_group_barrier, // llvm.r600.group.barrier
r600_implicitarg_ptr, // llvm.r600.implicitarg.ptr
r600_kill, // llvm.r600.kill
r600_rat_store_typed, // llvm.r600.rat.store.typed
r600_read_global_size_x, // llvm.r600.read.global.size.x
r600_read_global_size_y, // llvm.r600.read.global.size.y
r600_read_global_size_z, // llvm.r600.read.global.size.z
r600_read_local_size_x, // llvm.r600.read.local.size.x
r600_read_local_size_y, // llvm.r600.read.local.size.y
r600_read_local_size_z, // llvm.r600.read.local.size.z
r600_read_ngroups_x, // llvm.r600.read.ngroups.x
r600_read_ngroups_y, // llvm.r600.read.ngroups.y
r600_read_ngroups_z, // llvm.r600.read.ngroups.z
r600_read_tgid_x, // llvm.r600.read.tgid.x
r600_read_tgid_y, // llvm.r600.read.tgid.y
r600_read_tgid_z, // llvm.r600.read.tgid.z
r600_read_tidig_x, // llvm.r600.read.tidig.x
r600_read_tidig_y, // llvm.r600.read.tidig.y
r600_read_tidig_z, // llvm.r600.read.tidig.z
r600_recipsqrt_clamped, // llvm.r600.recipsqrt.clamped
r600_recipsqrt_ieee, // llvm.r600.recipsqrt.ieee
r600_store_stream_output, // llvm.r600.store.stream.output
r600_store_swizzle, // llvm.r600.store.swizzle
r600_tex, // llvm.r600.tex
r600_texc, // llvm.r600.texc
r600_txb, // llvm.r600.txb
r600_txbc, // llvm.r600.txbc
r600_txf, // llvm.r600.txf
r600_txl, // llvm.r600.txl
r600_txlc, // llvm.r600.txlc
r600_txq, // llvm.r600.txq
riscv_masked_atomicrmw_add_i32, // llvm.riscv.masked.atomicrmw.add.i32
riscv_masked_atomicrmw_add_i64, // llvm.riscv.masked.atomicrmw.add.i64
riscv_masked_atomicrmw_max_i32, // llvm.riscv.masked.atomicrmw.max.i32
riscv_masked_atomicrmw_max_i64, // llvm.riscv.masked.atomicrmw.max.i64
riscv_masked_atomicrmw_min_i32, // llvm.riscv.masked.atomicrmw.min.i32
riscv_masked_atomicrmw_min_i64, // llvm.riscv.masked.atomicrmw.min.i64
riscv_masked_atomicrmw_nand_i32, // llvm.riscv.masked.atomicrmw.nand.i32
riscv_masked_atomicrmw_nand_i64, // llvm.riscv.masked.atomicrmw.nand.i64
riscv_masked_atomicrmw_sub_i32, // llvm.riscv.masked.atomicrmw.sub.i32
riscv_masked_atomicrmw_sub_i64, // llvm.riscv.masked.atomicrmw.sub.i64
riscv_masked_atomicrmw_umax_i32, // llvm.riscv.masked.atomicrmw.umax.i32
riscv_masked_atomicrmw_umax_i64, // llvm.riscv.masked.atomicrmw.umax.i64
riscv_masked_atomicrmw_umin_i32, // llvm.riscv.masked.atomicrmw.umin.i32
riscv_masked_atomicrmw_umin_i64, // llvm.riscv.masked.atomicrmw.umin.i64
riscv_masked_atomicrmw_xchg_i32, // llvm.riscv.masked.atomicrmw.xchg.i32
riscv_masked_atomicrmw_xchg_i64, // llvm.riscv.masked.atomicrmw.xchg.i64
riscv_masked_cmpxchg_i32, // llvm.riscv.masked.cmpxchg.i32
riscv_masked_cmpxchg_i64, // llvm.riscv.masked.cmpxchg.i64
s390_efpc, // llvm.s390.efpc
s390_etnd, // llvm.s390.etnd
s390_lcbb, // llvm.s390.lcbb
s390_ntstg, // llvm.s390.ntstg
s390_ppa_txassist, // llvm.s390.ppa.txassist
s390_sfpc, // llvm.s390.sfpc
s390_tabort, // llvm.s390.tabort
s390_tbegin, // llvm.s390.tbegin
s390_tbegin_nofloat, // llvm.s390.tbegin.nofloat
s390_tbeginc, // llvm.s390.tbeginc
s390_tdc, // llvm.s390.tdc
s390_tend, // llvm.s390.tend
s390_vaccb, // llvm.s390.vaccb
s390_vacccq, // llvm.s390.vacccq
s390_vaccf, // llvm.s390.vaccf
s390_vaccg, // llvm.s390.vaccg
s390_vacch, // llvm.s390.vacch
s390_vaccq, // llvm.s390.vaccq
s390_vacq, // llvm.s390.vacq
s390_vaq, // llvm.s390.vaq
s390_vavgb, // llvm.s390.vavgb
s390_vavgf, // llvm.s390.vavgf
s390_vavgg, // llvm.s390.vavgg
s390_vavgh, // llvm.s390.vavgh
s390_vavglb, // llvm.s390.vavglb
s390_vavglf, // llvm.s390.vavglf
s390_vavglg, // llvm.s390.vavglg
s390_vavglh, // llvm.s390.vavglh
s390_vbperm, // llvm.s390.vbperm
s390_vceqbs, // llvm.s390.vceqbs
s390_vceqfs, // llvm.s390.vceqfs
s390_vceqgs, // llvm.s390.vceqgs
s390_vceqhs, // llvm.s390.vceqhs
s390_vchbs, // llvm.s390.vchbs
s390_vchfs, // llvm.s390.vchfs
s390_vchgs, // llvm.s390.vchgs
s390_vchhs, // llvm.s390.vchhs
s390_vchlbs, // llvm.s390.vchlbs
s390_vchlfs, // llvm.s390.vchlfs
s390_vchlgs, // llvm.s390.vchlgs
s390_vchlhs, // llvm.s390.vchlhs
s390_vcksm, // llvm.s390.vcksm
s390_verimb, // llvm.s390.verimb
s390_verimf, // llvm.s390.verimf
s390_verimg, // llvm.s390.verimg
s390_verimh, // llvm.s390.verimh
s390_verllb, // llvm.s390.verllb
s390_verllf, // llvm.s390.verllf
s390_verllg, // llvm.s390.verllg
s390_verllh, // llvm.s390.verllh
s390_verllvb, // llvm.s390.verllvb
s390_verllvf, // llvm.s390.verllvf
s390_verllvg, // llvm.s390.verllvg
s390_verllvh, // llvm.s390.verllvh
s390_vfaeb, // llvm.s390.vfaeb
s390_vfaebs, // llvm.s390.vfaebs
s390_vfaef, // llvm.s390.vfaef
s390_vfaefs, // llvm.s390.vfaefs
s390_vfaeh, // llvm.s390.vfaeh
s390_vfaehs, // llvm.s390.vfaehs
s390_vfaezb, // llvm.s390.vfaezb
s390_vfaezbs, // llvm.s390.vfaezbs
s390_vfaezf, // llvm.s390.vfaezf
s390_vfaezfs, // llvm.s390.vfaezfs
s390_vfaezh, // llvm.s390.vfaezh
s390_vfaezhs, // llvm.s390.vfaezhs
s390_vfcedbs, // llvm.s390.vfcedbs
s390_vfcesbs, // llvm.s390.vfcesbs
s390_vfchdbs, // llvm.s390.vfchdbs
s390_vfchedbs, // llvm.s390.vfchedbs
s390_vfchesbs, // llvm.s390.vfchesbs
s390_vfchsbs, // llvm.s390.vfchsbs
s390_vfeeb, // llvm.s390.vfeeb
s390_vfeebs, // llvm.s390.vfeebs
s390_vfeef, // llvm.s390.vfeef
s390_vfeefs, // llvm.s390.vfeefs
s390_vfeeh, // llvm.s390.vfeeh
s390_vfeehs, // llvm.s390.vfeehs
s390_vfeezb, // llvm.s390.vfeezb
s390_vfeezbs, // llvm.s390.vfeezbs
s390_vfeezf, // llvm.s390.vfeezf
s390_vfeezfs, // llvm.s390.vfeezfs
s390_vfeezh, // llvm.s390.vfeezh
s390_vfeezhs, // llvm.s390.vfeezhs
s390_vfeneb, // llvm.s390.vfeneb
s390_vfenebs, // llvm.s390.vfenebs
s390_vfenef, // llvm.s390.vfenef
s390_vfenefs, // llvm.s390.vfenefs
s390_vfeneh, // llvm.s390.vfeneh
s390_vfenehs, // llvm.s390.vfenehs
s390_vfenezb, // llvm.s390.vfenezb
s390_vfenezbs, // llvm.s390.vfenezbs
s390_vfenezf, // llvm.s390.vfenezf
s390_vfenezfs, // llvm.s390.vfenezfs
s390_vfenezh, // llvm.s390.vfenezh
s390_vfenezhs, // llvm.s390.vfenezhs
s390_vfidb, // llvm.s390.vfidb
s390_vfisb, // llvm.s390.vfisb
s390_vfmaxdb, // llvm.s390.vfmaxdb
s390_vfmaxsb, // llvm.s390.vfmaxsb
s390_vfmindb, // llvm.s390.vfmindb
s390_vfminsb, // llvm.s390.vfminsb
s390_vftcidb, // llvm.s390.vftcidb
s390_vftcisb, // llvm.s390.vftcisb
s390_vgfmab, // llvm.s390.vgfmab
s390_vgfmaf, // llvm.s390.vgfmaf
s390_vgfmag, // llvm.s390.vgfmag
s390_vgfmah, // llvm.s390.vgfmah
s390_vgfmb, // llvm.s390.vgfmb
s390_vgfmf, // llvm.s390.vgfmf
s390_vgfmg, // llvm.s390.vgfmg
s390_vgfmh, // llvm.s390.vgfmh
s390_vistrb, // llvm.s390.vistrb
s390_vistrbs, // llvm.s390.vistrbs
s390_vistrf, // llvm.s390.vistrf
s390_vistrfs, // llvm.s390.vistrfs
s390_vistrh, // llvm.s390.vistrh
s390_vistrhs, // llvm.s390.vistrhs
s390_vlbb, // llvm.s390.vlbb
s390_vll, // llvm.s390.vll
s390_vlrl, // llvm.s390.vlrl
s390_vmaeb, // llvm.s390.vmaeb
s390_vmaef, // llvm.s390.vmaef
s390_vmaeh, // llvm.s390.vmaeh
s390_vmahb, // llvm.s390.vmahb
s390_vmahf, // llvm.s390.vmahf
s390_vmahh, // llvm.s390.vmahh
s390_vmaleb, // llvm.s390.vmaleb
s390_vmalef, // llvm.s390.vmalef
s390_vmaleh, // llvm.s390.vmaleh
s390_vmalhb, // llvm.s390.vmalhb
s390_vmalhf, // llvm.s390.vmalhf
s390_vmalhh, // llvm.s390.vmalhh
s390_vmalob, // llvm.s390.vmalob
s390_vmalof, // llvm.s390.vmalof
s390_vmaloh, // llvm.s390.vmaloh
s390_vmaob, // llvm.s390.vmaob
s390_vmaof, // llvm.s390.vmaof
s390_vmaoh, // llvm.s390.vmaoh
s390_vmeb, // llvm.s390.vmeb
s390_vmef, // llvm.s390.vmef
s390_vmeh, // llvm.s390.vmeh
s390_vmhb, // llvm.s390.vmhb
s390_vmhf, // llvm.s390.vmhf
s390_vmhh, // llvm.s390.vmhh
s390_vmleb, // llvm.s390.vmleb
s390_vmlef, // llvm.s390.vmlef
s390_vmleh, // llvm.s390.vmleh
s390_vmlhb, // llvm.s390.vmlhb
s390_vmlhf, // llvm.s390.vmlhf
s390_vmlhh, // llvm.s390.vmlhh
s390_vmlob, // llvm.s390.vmlob
s390_vmlof, // llvm.s390.vmlof
s390_vmloh, // llvm.s390.vmloh
s390_vmob, // llvm.s390.vmob
s390_vmof, // llvm.s390.vmof
s390_vmoh, // llvm.s390.vmoh
s390_vmslg, // llvm.s390.vmslg
s390_vpdi, // llvm.s390.vpdi
s390_vperm, // llvm.s390.vperm
s390_vpklsf, // llvm.s390.vpklsf
s390_vpklsfs, // llvm.s390.vpklsfs
s390_vpklsg, // llvm.s390.vpklsg
s390_vpklsgs, // llvm.s390.vpklsgs
s390_vpklsh, // llvm.s390.vpklsh
s390_vpklshs, // llvm.s390.vpklshs
s390_vpksf, // llvm.s390.vpksf
s390_vpksfs, // llvm.s390.vpksfs
s390_vpksg, // llvm.s390.vpksg
s390_vpksgs, // llvm.s390.vpksgs
s390_vpksh, // llvm.s390.vpksh
s390_vpkshs, // llvm.s390.vpkshs
s390_vsbcbiq, // llvm.s390.vsbcbiq
s390_vsbiq, // llvm.s390.vsbiq
s390_vscbib, // llvm.s390.vscbib
s390_vscbif, // llvm.s390.vscbif
s390_vscbig, // llvm.s390.vscbig
s390_vscbih, // llvm.s390.vscbih
s390_vscbiq, // llvm.s390.vscbiq
s390_vsl, // llvm.s390.vsl
s390_vslb, // llvm.s390.vslb
s390_vsld, // llvm.s390.vsld
s390_vsldb, // llvm.s390.vsldb
s390_vsq, // llvm.s390.vsq
s390_vsra, // llvm.s390.vsra
s390_vsrab, // llvm.s390.vsrab
s390_vsrd, // llvm.s390.vsrd
s390_vsrl, // llvm.s390.vsrl
s390_vsrlb, // llvm.s390.vsrlb
s390_vstl, // llvm.s390.vstl
s390_vstrcb, // llvm.s390.vstrcb
s390_vstrcbs, // llvm.s390.vstrcbs
s390_vstrcf, // llvm.s390.vstrcf
s390_vstrcfs, // llvm.s390.vstrcfs
s390_vstrch, // llvm.s390.vstrch
s390_vstrchs, // llvm.s390.vstrchs
s390_vstrczb, // llvm.s390.vstrczb
s390_vstrczbs, // llvm.s390.vstrczbs
s390_vstrczf, // llvm.s390.vstrczf
s390_vstrczfs, // llvm.s390.vstrczfs
s390_vstrczh, // llvm.s390.vstrczh
s390_vstrczhs, // llvm.s390.vstrczhs
s390_vstrl, // llvm.s390.vstrl
s390_vstrsb, // llvm.s390.vstrsb
s390_vstrsf, // llvm.s390.vstrsf
s390_vstrsh, // llvm.s390.vstrsh
s390_vstrszb, // llvm.s390.vstrszb
s390_vstrszf, // llvm.s390.vstrszf
s390_vstrszh, // llvm.s390.vstrszh
s390_vsumb, // llvm.s390.vsumb
s390_vsumgf, // llvm.s390.vsumgf
s390_vsumgh, // llvm.s390.vsumgh
s390_vsumh, // llvm.s390.vsumh
s390_vsumqf, // llvm.s390.vsumqf
s390_vsumqg, // llvm.s390.vsumqg
s390_vtm, // llvm.s390.vtm
s390_vuphb, // llvm.s390.vuphb
s390_vuphf, // llvm.s390.vuphf
s390_vuphh, // llvm.s390.vuphh
s390_vuplb, // llvm.s390.vuplb
s390_vuplf, // llvm.s390.vuplf
s390_vuplhb, // llvm.s390.vuplhb
s390_vuplhf, // llvm.s390.vuplhf
s390_vuplhh, // llvm.s390.vuplhh
s390_vuplhw, // llvm.s390.vuplhw
s390_vupllb, // llvm.s390.vupllb
s390_vupllf, // llvm.s390.vupllf
s390_vupllh, // llvm.s390.vupllh
wasm_alltrue, // llvm.wasm.alltrue
wasm_anytrue, // llvm.wasm.anytrue
wasm_atomic_notify, // llvm.wasm.atomic.notify
wasm_atomic_wait_i32, // llvm.wasm.atomic.wait.i32
wasm_atomic_wait_i64, // llvm.wasm.atomic.wait.i64
wasm_bitselect, // llvm.wasm.bitselect
wasm_data_drop, // llvm.wasm.data.drop
wasm_extract_exception, // llvm.wasm.extract.exception
wasm_get_ehselector, // llvm.wasm.get.ehselector
wasm_get_exception, // llvm.wasm.get.exception
wasm_landingpad_index, // llvm.wasm.landingpad.index
wasm_lsda, // llvm.wasm.lsda
wasm_memory_grow, // llvm.wasm.memory.grow
wasm_memory_init, // llvm.wasm.memory.init
wasm_memory_size, // llvm.wasm.memory.size
wasm_narrow_signed, // llvm.wasm.narrow.signed
wasm_narrow_unsigned, // llvm.wasm.narrow.unsigned
wasm_qfma, // llvm.wasm.qfma
wasm_qfms, // llvm.wasm.qfms
wasm_rethrow_in_catch, // llvm.wasm.rethrow.in.catch
wasm_sub_saturate_signed, // llvm.wasm.sub.saturate.signed
wasm_sub_saturate_unsigned, // llvm.wasm.sub.saturate.unsigned
wasm_swizzle, // llvm.wasm.swizzle
wasm_throw, // llvm.wasm.throw
wasm_tls_align, // llvm.wasm.tls.align
wasm_tls_base, // llvm.wasm.tls.base
wasm_tls_size, // llvm.wasm.tls.size
wasm_trunc_saturate_signed, // llvm.wasm.trunc.saturate.signed
wasm_trunc_saturate_unsigned, // llvm.wasm.trunc.saturate.unsigned
wasm_trunc_signed, // llvm.wasm.trunc.signed
wasm_trunc_unsigned, // llvm.wasm.trunc.unsigned
wasm_widen_high_signed, // llvm.wasm.widen.high.signed
wasm_widen_high_unsigned, // llvm.wasm.widen.high.unsigned
wasm_widen_low_signed, // llvm.wasm.widen.low.signed
wasm_widen_low_unsigned, // llvm.wasm.widen.low.unsigned
x86_3dnow_pavgusb, // llvm.x86.3dnow.pavgusb
x86_3dnow_pf2id, // llvm.x86.3dnow.pf2id
x86_3dnow_pfacc, // llvm.x86.3dnow.pfacc
x86_3dnow_pfadd, // llvm.x86.3dnow.pfadd
x86_3dnow_pfcmpeq, // llvm.x86.3dnow.pfcmpeq
x86_3dnow_pfcmpge, // llvm.x86.3dnow.pfcmpge
x86_3dnow_pfcmpgt, // llvm.x86.3dnow.pfcmpgt
x86_3dnow_pfmax, // llvm.x86.3dnow.pfmax
x86_3dnow_pfmin, // llvm.x86.3dnow.pfmin
x86_3dnow_pfmul, // llvm.x86.3dnow.pfmul
x86_3dnow_pfrcp, // llvm.x86.3dnow.pfrcp
x86_3dnow_pfrcpit1, // llvm.x86.3dnow.pfrcpit1
x86_3dnow_pfrcpit2, // llvm.x86.3dnow.pfrcpit2
x86_3dnow_pfrsqit1, // llvm.x86.3dnow.pfrsqit1
x86_3dnow_pfrsqrt, // llvm.x86.3dnow.pfrsqrt
x86_3dnow_pfsub, // llvm.x86.3dnow.pfsub
x86_3dnow_pfsubr, // llvm.x86.3dnow.pfsubr
x86_3dnow_pi2fd, // llvm.x86.3dnow.pi2fd
x86_3dnow_pmulhrw, // llvm.x86.3dnow.pmulhrw
x86_3dnowa_pf2iw, // llvm.x86.3dnowa.pf2iw
x86_3dnowa_pfnacc, // llvm.x86.3dnowa.pfnacc
x86_3dnowa_pfpnacc, // llvm.x86.3dnowa.pfpnacc
x86_3dnowa_pi2fw, // llvm.x86.3dnowa.pi2fw
x86_3dnowa_pswapd, // llvm.x86.3dnowa.pswapd
x86_addcarry_32, // llvm.x86.addcarry.32
x86_addcarry_64, // llvm.x86.addcarry.64
x86_aesni_aesdec, // llvm.x86.aesni.aesdec
x86_aesni_aesdec_256, // llvm.x86.aesni.aesdec.256
x86_aesni_aesdec_512, // llvm.x86.aesni.aesdec.512
x86_aesni_aesdeclast, // llvm.x86.aesni.aesdeclast
x86_aesni_aesdeclast_256, // llvm.x86.aesni.aesdeclast.256
x86_aesni_aesdeclast_512, // llvm.x86.aesni.aesdeclast.512
x86_aesni_aesenc, // llvm.x86.aesni.aesenc
x86_aesni_aesenc_256, // llvm.x86.aesni.aesenc.256
x86_aesni_aesenc_512, // llvm.x86.aesni.aesenc.512
x86_aesni_aesenclast, // llvm.x86.aesni.aesenclast
x86_aesni_aesenclast_256, // llvm.x86.aesni.aesenclast.256
x86_aesni_aesenclast_512, // llvm.x86.aesni.aesenclast.512
x86_aesni_aesimc, // llvm.x86.aesni.aesimc
x86_aesni_aeskeygenassist, // llvm.x86.aesni.aeskeygenassist
x86_avx_addsub_pd_256, // llvm.x86.avx.addsub.pd.256
x86_avx_addsub_ps_256, // llvm.x86.avx.addsub.ps.256
x86_avx_blendv_pd_256, // llvm.x86.avx.blendv.pd.256
x86_avx_blendv_ps_256, // llvm.x86.avx.blendv.ps.256
x86_avx_cmp_pd_256, // llvm.x86.avx.cmp.pd.256
x86_avx_cmp_ps_256, // llvm.x86.avx.cmp.ps.256
x86_avx_cvt_pd2_ps_256, // llvm.x86.avx.cvt.pd2.ps.256
x86_avx_cvt_pd2dq_256, // llvm.x86.avx.cvt.pd2dq.256
x86_avx_cvt_ps2dq_256, // llvm.x86.avx.cvt.ps2dq.256
x86_avx_cvtt_pd2dq_256, // llvm.x86.avx.cvtt.pd2dq.256
x86_avx_cvtt_ps2dq_256, // llvm.x86.avx.cvtt.ps2dq.256
x86_avx_dp_ps_256, // llvm.x86.avx.dp.ps.256
x86_avx_hadd_pd_256, // llvm.x86.avx.hadd.pd.256
x86_avx_hadd_ps_256, // llvm.x86.avx.hadd.ps.256
x86_avx_hsub_pd_256, // llvm.x86.avx.hsub.pd.256
x86_avx_hsub_ps_256, // llvm.x86.avx.hsub.ps.256
x86_avx_ldu_dq_256, // llvm.x86.avx.ldu.dq.256
x86_avx_maskload_pd, // llvm.x86.avx.maskload.pd
x86_avx_maskload_pd_256, // llvm.x86.avx.maskload.pd.256
x86_avx_maskload_ps, // llvm.x86.avx.maskload.ps
x86_avx_maskload_ps_256, // llvm.x86.avx.maskload.ps.256
x86_avx_maskstore_pd, // llvm.x86.avx.maskstore.pd
x86_avx_maskstore_pd_256, // llvm.x86.avx.maskstore.pd.256
x86_avx_maskstore_ps, // llvm.x86.avx.maskstore.ps
x86_avx_maskstore_ps_256, // llvm.x86.avx.maskstore.ps.256
x86_avx_max_pd_256, // llvm.x86.avx.max.pd.256
x86_avx_max_ps_256, // llvm.x86.avx.max.ps.256
x86_avx_min_pd_256, // llvm.x86.avx.min.pd.256
x86_avx_min_ps_256, // llvm.x86.avx.min.ps.256
x86_avx_movmsk_pd_256, // llvm.x86.avx.movmsk.pd.256
x86_avx_movmsk_ps_256, // llvm.x86.avx.movmsk.ps.256
x86_avx_ptestc_256, // llvm.x86.avx.ptestc.256
x86_avx_ptestnzc_256, // llvm.x86.avx.ptestnzc.256
x86_avx_ptestz_256, // llvm.x86.avx.ptestz.256
x86_avx_rcp_ps_256, // llvm.x86.avx.rcp.ps.256
x86_avx_round_pd_256, // llvm.x86.avx.round.pd.256
x86_avx_round_ps_256, // llvm.x86.avx.round.ps.256
x86_avx_rsqrt_ps_256, // llvm.x86.avx.rsqrt.ps.256
x86_avx_vpermilvar_pd, // llvm.x86.avx.vpermilvar.pd
x86_avx_vpermilvar_pd_256, // llvm.x86.avx.vpermilvar.pd.256
x86_avx_vpermilvar_ps, // llvm.x86.avx.vpermilvar.ps
x86_avx_vpermilvar_ps_256, // llvm.x86.avx.vpermilvar.ps.256
x86_avx_vtestc_pd, // llvm.x86.avx.vtestc.pd
x86_avx_vtestc_pd_256, // llvm.x86.avx.vtestc.pd.256
x86_avx_vtestc_ps, // llvm.x86.avx.vtestc.ps
x86_avx_vtestc_ps_256, // llvm.x86.avx.vtestc.ps.256
x86_avx_vtestnzc_pd, // llvm.x86.avx.vtestnzc.pd
x86_avx_vtestnzc_pd_256, // llvm.x86.avx.vtestnzc.pd.256
x86_avx_vtestnzc_ps, // llvm.x86.avx.vtestnzc.ps
x86_avx_vtestnzc_ps_256, // llvm.x86.avx.vtestnzc.ps.256
x86_avx_vtestz_pd, // llvm.x86.avx.vtestz.pd
x86_avx_vtestz_pd_256, // llvm.x86.avx.vtestz.pd.256
x86_avx_vtestz_ps, // llvm.x86.avx.vtestz.ps
x86_avx_vtestz_ps_256, // llvm.x86.avx.vtestz.ps.256
x86_avx_vzeroall, // llvm.x86.avx.vzeroall
x86_avx_vzeroupper, // llvm.x86.avx.vzeroupper
x86_avx2_gather_d_d, // llvm.x86.avx2.gather.d.d
x86_avx2_gather_d_d_256, // llvm.x86.avx2.gather.d.d.256
x86_avx2_gather_d_pd, // llvm.x86.avx2.gather.d.pd
x86_avx2_gather_d_pd_256, // llvm.x86.avx2.gather.d.pd.256
x86_avx2_gather_d_ps, // llvm.x86.avx2.gather.d.ps
x86_avx2_gather_d_ps_256, // llvm.x86.avx2.gather.d.ps.256
x86_avx2_gather_d_q, // llvm.x86.avx2.gather.d.q
x86_avx2_gather_d_q_256, // llvm.x86.avx2.gather.d.q.256
x86_avx2_gather_q_d, // llvm.x86.avx2.gather.q.d
x86_avx2_gather_q_d_256, // llvm.x86.avx2.gather.q.d.256
x86_avx2_gather_q_pd, // llvm.x86.avx2.gather.q.pd
x86_avx2_gather_q_pd_256, // llvm.x86.avx2.gather.q.pd.256
x86_avx2_gather_q_ps, // llvm.x86.avx2.gather.q.ps
x86_avx2_gather_q_ps_256, // llvm.x86.avx2.gather.q.ps.256
x86_avx2_gather_q_q, // llvm.x86.avx2.gather.q.q
x86_avx2_gather_q_q_256, // llvm.x86.avx2.gather.q.q.256
x86_avx2_maskload_d, // llvm.x86.avx2.maskload.d
x86_avx2_maskload_d_256, // llvm.x86.avx2.maskload.d.256
x86_avx2_maskload_q, // llvm.x86.avx2.maskload.q
x86_avx2_maskload_q_256, // llvm.x86.avx2.maskload.q.256
x86_avx2_maskstore_d, // llvm.x86.avx2.maskstore.d
x86_avx2_maskstore_d_256, // llvm.x86.avx2.maskstore.d.256
x86_avx2_maskstore_q, // llvm.x86.avx2.maskstore.q
x86_avx2_maskstore_q_256, // llvm.x86.avx2.maskstore.q.256
x86_avx2_mpsadbw, // llvm.x86.avx2.mpsadbw
x86_avx2_packssdw, // llvm.x86.avx2.packssdw
x86_avx2_packsswb, // llvm.x86.avx2.packsswb
x86_avx2_packusdw, // llvm.x86.avx2.packusdw
x86_avx2_packuswb, // llvm.x86.avx2.packuswb
x86_avx2_pavg_b, // llvm.x86.avx2.pavg.b
x86_avx2_pavg_w, // llvm.x86.avx2.pavg.w
x86_avx2_pblendvb, // llvm.x86.avx2.pblendvb
x86_avx2_permd, // llvm.x86.avx2.permd
x86_avx2_permps, // llvm.x86.avx2.permps
x86_avx2_phadd_d, // llvm.x86.avx2.phadd.d
x86_avx2_phadd_sw, // llvm.x86.avx2.phadd.sw
x86_avx2_phadd_w, // llvm.x86.avx2.phadd.w
x86_avx2_phsub_d, // llvm.x86.avx2.phsub.d
x86_avx2_phsub_sw, // llvm.x86.avx2.phsub.sw
x86_avx2_phsub_w, // llvm.x86.avx2.phsub.w
x86_avx2_pmadd_ub_sw, // llvm.x86.avx2.pmadd.ub.sw
x86_avx2_pmadd_wd, // llvm.x86.avx2.pmadd.wd
x86_avx2_pmovmskb, // llvm.x86.avx2.pmovmskb
x86_avx2_pmul_hr_sw, // llvm.x86.avx2.pmul.hr.sw
x86_avx2_pmulh_w, // llvm.x86.avx2.pmulh.w
x86_avx2_pmulhu_w, // llvm.x86.avx2.pmulhu.w
x86_avx2_psad_bw, // llvm.x86.avx2.psad.bw
x86_avx2_pshuf_b, // llvm.x86.avx2.pshuf.b
x86_avx2_psign_b, // llvm.x86.avx2.psign.b
x86_avx2_psign_d, // llvm.x86.avx2.psign.d
x86_avx2_psign_w, // llvm.x86.avx2.psign.w
x86_avx2_psll_d, // llvm.x86.avx2.psll.d
x86_avx2_psll_q, // llvm.x86.avx2.psll.q
x86_avx2_psll_w, // llvm.x86.avx2.psll.w
x86_avx2_pslli_d, // llvm.x86.avx2.pslli.d
x86_avx2_pslli_q, // llvm.x86.avx2.pslli.q
x86_avx2_pslli_w, // llvm.x86.avx2.pslli.w
x86_avx2_psllv_d, // llvm.x86.avx2.psllv.d
x86_avx2_psllv_d_256, // llvm.x86.avx2.psllv.d.256
x86_avx2_psllv_q, // llvm.x86.avx2.psllv.q
x86_avx2_psllv_q_256, // llvm.x86.avx2.psllv.q.256
x86_avx2_psra_d, // llvm.x86.avx2.psra.d
x86_avx2_psra_w, // llvm.x86.avx2.psra.w
x86_avx2_psrai_d, // llvm.x86.avx2.psrai.d
x86_avx2_psrai_w, // llvm.x86.avx2.psrai.w
x86_avx2_psrav_d, // llvm.x86.avx2.psrav.d
x86_avx2_psrav_d_256, // llvm.x86.avx2.psrav.d.256
x86_avx2_psrl_d, // llvm.x86.avx2.psrl.d
x86_avx2_psrl_q, // llvm.x86.avx2.psrl.q
x86_avx2_psrl_w, // llvm.x86.avx2.psrl.w
x86_avx2_psrli_d, // llvm.x86.avx2.psrli.d
x86_avx2_psrli_q, // llvm.x86.avx2.psrli.q
x86_avx2_psrli_w, // llvm.x86.avx2.psrli.w
x86_avx2_psrlv_d, // llvm.x86.avx2.psrlv.d
x86_avx2_psrlv_d_256, // llvm.x86.avx2.psrlv.d.256
x86_avx2_psrlv_q, // llvm.x86.avx2.psrlv.q
x86_avx2_psrlv_q_256, // llvm.x86.avx2.psrlv.q.256
x86_avx512_add_pd_512, // llvm.x86.avx512.add.pd.512
x86_avx512_add_ps_512, // llvm.x86.avx512.add.ps.512
x86_avx512_broadcastmb_128, // llvm.x86.avx512.broadcastmb.128
x86_avx512_broadcastmb_256, // llvm.x86.avx512.broadcastmb.256
x86_avx512_broadcastmb_512, // llvm.x86.avx512.broadcastmb.512
x86_avx512_broadcastmw_128, // llvm.x86.avx512.broadcastmw.128
x86_avx512_broadcastmw_256, // llvm.x86.avx512.broadcastmw.256
x86_avx512_broadcastmw_512, // llvm.x86.avx512.broadcastmw.512
x86_avx512_cmp_pd_128, // llvm.x86.avx512.cmp.pd.128
x86_avx512_cmp_pd_256, // llvm.x86.avx512.cmp.pd.256
x86_avx512_cmp_pd_512, // llvm.x86.avx512.cmp.pd.512
x86_avx512_cmp_ps_128, // llvm.x86.avx512.cmp.ps.128
x86_avx512_cmp_ps_256, // llvm.x86.avx512.cmp.ps.256
x86_avx512_cmp_ps_512, // llvm.x86.avx512.cmp.ps.512
x86_avx512_conflict_d_128, // llvm.x86.avx512.conflict.d.128
x86_avx512_conflict_d_256, // llvm.x86.avx512.conflict.d.256
x86_avx512_conflict_d_512, // llvm.x86.avx512.conflict.d.512
x86_avx512_conflict_q_128, // llvm.x86.avx512.conflict.q.128
x86_avx512_conflict_q_256, // llvm.x86.avx512.conflict.q.256
x86_avx512_conflict_q_512, // llvm.x86.avx512.conflict.q.512
x86_avx512_cvtsi2sd64, // llvm.x86.avx512.cvtsi2sd64
x86_avx512_cvtsi2ss32, // llvm.x86.avx512.cvtsi2ss32
x86_avx512_cvtsi2ss64, // llvm.x86.avx512.cvtsi2ss64
x86_avx512_cvttsd2si, // llvm.x86.avx512.cvttsd2si
x86_avx512_cvttsd2si64, // llvm.x86.avx512.cvttsd2si64
x86_avx512_cvttsd2usi, // llvm.x86.avx512.cvttsd2usi
x86_avx512_cvttsd2usi64, // llvm.x86.avx512.cvttsd2usi64
x86_avx512_cvttss2si, // llvm.x86.avx512.cvttss2si
x86_avx512_cvttss2si64, // llvm.x86.avx512.cvttss2si64
x86_avx512_cvttss2usi, // llvm.x86.avx512.cvttss2usi
x86_avx512_cvttss2usi64, // llvm.x86.avx512.cvttss2usi64
x86_avx512_cvtusi2ss, // llvm.x86.avx512.cvtusi2ss
x86_avx512_cvtusi642sd, // llvm.x86.avx512.cvtusi642sd
x86_avx512_cvtusi642ss, // llvm.x86.avx512.cvtusi642ss
x86_avx512_dbpsadbw_128, // llvm.x86.avx512.dbpsadbw.128
x86_avx512_dbpsadbw_256, // llvm.x86.avx512.dbpsadbw.256
x86_avx512_dbpsadbw_512, // llvm.x86.avx512.dbpsadbw.512
x86_avx512_div_pd_512, // llvm.x86.avx512.div.pd.512
x86_avx512_div_ps_512, // llvm.x86.avx512.div.ps.512
x86_avx512_exp2_pd, // llvm.x86.avx512.exp2.pd
x86_avx512_exp2_ps, // llvm.x86.avx512.exp2.ps
x86_avx512_fpclass_pd_128, // llvm.x86.avx512.fpclass.pd.128
x86_avx512_fpclass_pd_256, // llvm.x86.avx512.fpclass.pd.256
x86_avx512_fpclass_pd_512, // llvm.x86.avx512.fpclass.pd.512
x86_avx512_fpclass_ps_128, // llvm.x86.avx512.fpclass.ps.128
x86_avx512_fpclass_ps_256, // llvm.x86.avx512.fpclass.ps.256
x86_avx512_fpclass_ps_512, // llvm.x86.avx512.fpclass.ps.512
x86_avx512_gather_dpd_512, // llvm.x86.avx512.gather.dpd.512
x86_avx512_gather_dpi_512, // llvm.x86.avx512.gather.dpi.512
x86_avx512_gather_dpq_512, // llvm.x86.avx512.gather.dpq.512
x86_avx512_gather_dps_512, // llvm.x86.avx512.gather.dps.512
x86_avx512_gather_qpd_512, // llvm.x86.avx512.gather.qpd.512
x86_avx512_gather_qpi_512, // llvm.x86.avx512.gather.qpi.512
x86_avx512_gather_qpq_512, // llvm.x86.avx512.gather.qpq.512
x86_avx512_gather_qps_512, // llvm.x86.avx512.gather.qps.512
x86_avx512_gather3div2_df, // llvm.x86.avx512.gather3div2.df
x86_avx512_gather3div2_di, // llvm.x86.avx512.gather3div2.di
x86_avx512_gather3div4_df, // llvm.x86.avx512.gather3div4.df
x86_avx512_gather3div4_di, // llvm.x86.avx512.gather3div4.di
x86_avx512_gather3div4_sf, // llvm.x86.avx512.gather3div4.sf
x86_avx512_gather3div4_si, // llvm.x86.avx512.gather3div4.si
x86_avx512_gather3div8_sf, // llvm.x86.avx512.gather3div8.sf
x86_avx512_gather3div8_si, // llvm.x86.avx512.gather3div8.si
x86_avx512_gather3siv2_df, // llvm.x86.avx512.gather3siv2.df
x86_avx512_gather3siv2_di, // llvm.x86.avx512.gather3siv2.di
x86_avx512_gather3siv4_df, // llvm.x86.avx512.gather3siv4.df
x86_avx512_gather3siv4_di, // llvm.x86.avx512.gather3siv4.di
x86_avx512_gather3siv4_sf, // llvm.x86.avx512.gather3siv4.sf
x86_avx512_gather3siv4_si, // llvm.x86.avx512.gather3siv4.si
x86_avx512_gather3siv8_sf, // llvm.x86.avx512.gather3siv8.sf
x86_avx512_gather3siv8_si, // llvm.x86.avx512.gather3siv8.si
x86_avx512_gatherpf_dpd_512, // llvm.x86.avx512.gatherpf.dpd.512
x86_avx512_gatherpf_dps_512, // llvm.x86.avx512.gatherpf.dps.512
x86_avx512_gatherpf_qpd_512, // llvm.x86.avx512.gatherpf.qpd.512
x86_avx512_gatherpf_qps_512, // llvm.x86.avx512.gatherpf.qps.512
x86_avx512_kadd_b, // llvm.x86.avx512.kadd.b
x86_avx512_kadd_d, // llvm.x86.avx512.kadd.d
x86_avx512_kadd_q, // llvm.x86.avx512.kadd.q
x86_avx512_kadd_w, // llvm.x86.avx512.kadd.w
x86_avx512_ktestc_b, // llvm.x86.avx512.ktestc.b
x86_avx512_ktestc_d, // llvm.x86.avx512.ktestc.d
x86_avx512_ktestc_q, // llvm.x86.avx512.ktestc.q
x86_avx512_ktestc_w, // llvm.x86.avx512.ktestc.w
x86_avx512_ktestz_b, // llvm.x86.avx512.ktestz.b
x86_avx512_ktestz_d, // llvm.x86.avx512.ktestz.d
x86_avx512_ktestz_q, // llvm.x86.avx512.ktestz.q
x86_avx512_ktestz_w, // llvm.x86.avx512.ktestz.w
x86_avx512_mask_add_sd_round, // llvm.x86.avx512.mask.add.sd.round
x86_avx512_mask_add_ss_round, // llvm.x86.avx512.mask.add.ss.round
x86_avx512_mask_cmp_sd, // llvm.x86.avx512.mask.cmp.sd
x86_avx512_mask_cmp_ss, // llvm.x86.avx512.mask.cmp.ss
x86_avx512_mask_compress, // llvm.x86.avx512.mask.compress
x86_avx512_mask_cvtpd2dq_128, // llvm.x86.avx512.mask.cvtpd2dq.128
x86_avx512_mask_cvtpd2dq_512, // llvm.x86.avx512.mask.cvtpd2dq.512
x86_avx512_mask_cvtpd2ps, // llvm.x86.avx512.mask.cvtpd2ps
x86_avx512_mask_cvtpd2ps_512, // llvm.x86.avx512.mask.cvtpd2ps.512
x86_avx512_mask_cvtpd2qq_128, // llvm.x86.avx512.mask.cvtpd2qq.128
x86_avx512_mask_cvtpd2qq_256, // llvm.x86.avx512.mask.cvtpd2qq.256
x86_avx512_mask_cvtpd2qq_512, // llvm.x86.avx512.mask.cvtpd2qq.512
x86_avx512_mask_cvtpd2udq_128, // llvm.x86.avx512.mask.cvtpd2udq.128
x86_avx512_mask_cvtpd2udq_256, // llvm.x86.avx512.mask.cvtpd2udq.256
x86_avx512_mask_cvtpd2udq_512, // llvm.x86.avx512.mask.cvtpd2udq.512
x86_avx512_mask_cvtpd2uqq_128, // llvm.x86.avx512.mask.cvtpd2uqq.128
x86_avx512_mask_cvtpd2uqq_256, // llvm.x86.avx512.mask.cvtpd2uqq.256
x86_avx512_mask_cvtpd2uqq_512, // llvm.x86.avx512.mask.cvtpd2uqq.512
x86_avx512_mask_cvtps2dq_128, // llvm.x86.avx512.mask.cvtps2dq.128
x86_avx512_mask_cvtps2dq_256, // llvm.x86.avx512.mask.cvtps2dq.256
x86_avx512_mask_cvtps2dq_512, // llvm.x86.avx512.mask.cvtps2dq.512
x86_avx512_mask_cvtps2pd_512, // llvm.x86.avx512.mask.cvtps2pd.512
x86_avx512_mask_cvtps2qq_128, // llvm.x86.avx512.mask.cvtps2qq.128
x86_avx512_mask_cvtps2qq_256, // llvm.x86.avx512.mask.cvtps2qq.256
x86_avx512_mask_cvtps2qq_512, // llvm.x86.avx512.mask.cvtps2qq.512
x86_avx512_mask_cvtps2udq_128, // llvm.x86.avx512.mask.cvtps2udq.128
x86_avx512_mask_cvtps2udq_256, // llvm.x86.avx512.mask.cvtps2udq.256
x86_avx512_mask_cvtps2udq_512, // llvm.x86.avx512.mask.cvtps2udq.512
x86_avx512_mask_cvtps2uqq_128, // llvm.x86.avx512.mask.cvtps2uqq.128
x86_avx512_mask_cvtps2uqq_256, // llvm.x86.avx512.mask.cvtps2uqq.256
x86_avx512_mask_cvtps2uqq_512, // llvm.x86.avx512.mask.cvtps2uqq.512
x86_avx512_mask_cvtqq2ps_128, // llvm.x86.avx512.mask.cvtqq2ps.128
x86_avx512_mask_cvtsd2ss_round, // llvm.x86.avx512.mask.cvtsd2ss.round
x86_avx512_mask_cvtss2sd_round, // llvm.x86.avx512.mask.cvtss2sd.round
x86_avx512_mask_cvttpd2dq_128, // llvm.x86.avx512.mask.cvttpd2dq.128
x86_avx512_mask_cvttpd2dq_512, // llvm.x86.avx512.mask.cvttpd2dq.512
x86_avx512_mask_cvttpd2qq_128, // llvm.x86.avx512.mask.cvttpd2qq.128
x86_avx512_mask_cvttpd2qq_256, // llvm.x86.avx512.mask.cvttpd2qq.256
x86_avx512_mask_cvttpd2qq_512, // llvm.x86.avx512.mask.cvttpd2qq.512
x86_avx512_mask_cvttpd2udq_128, // llvm.x86.avx512.mask.cvttpd2udq.128
x86_avx512_mask_cvttpd2udq_256, // llvm.x86.avx512.mask.cvttpd2udq.256
x86_avx512_mask_cvttpd2udq_512, // llvm.x86.avx512.mask.cvttpd2udq.512
x86_avx512_mask_cvttpd2uqq_128, // llvm.x86.avx512.mask.cvttpd2uqq.128
x86_avx512_mask_cvttpd2uqq_256, // llvm.x86.avx512.mask.cvttpd2uqq.256
x86_avx512_mask_cvttpd2uqq_512, // llvm.x86.avx512.mask.cvttpd2uqq.512
x86_avx512_mask_cvttps2dq_512, // llvm.x86.avx512.mask.cvttps2dq.512
x86_avx512_mask_cvttps2qq_128, // llvm.x86.avx512.mask.cvttps2qq.128
x86_avx512_mask_cvttps2qq_256, // llvm.x86.avx512.mask.cvttps2qq.256
x86_avx512_mask_cvttps2qq_512, // llvm.x86.avx512.mask.cvttps2qq.512
x86_avx512_mask_cvttps2udq_128, // llvm.x86.avx512.mask.cvttps2udq.128
x86_avx512_mask_cvttps2udq_256, // llvm.x86.avx512.mask.cvttps2udq.256
x86_avx512_mask_cvttps2udq_512, // llvm.x86.avx512.mask.cvttps2udq.512
x86_avx512_mask_cvttps2uqq_128, // llvm.x86.avx512.mask.cvttps2uqq.128
x86_avx512_mask_cvttps2uqq_256, // llvm.x86.avx512.mask.cvttps2uqq.256
x86_avx512_mask_cvttps2uqq_512, // llvm.x86.avx512.mask.cvttps2uqq.512
x86_avx512_mask_cvtuqq2ps_128, // llvm.x86.avx512.mask.cvtuqq2ps.128
x86_avx512_mask_div_sd_round, // llvm.x86.avx512.mask.div.sd.round
x86_avx512_mask_div_ss_round, // llvm.x86.avx512.mask.div.ss.round
x86_avx512_mask_expand, // llvm.x86.avx512.mask.expand
x86_avx512_mask_fixupimm_pd_128, // llvm.x86.avx512.mask.fixupimm.pd.128
x86_avx512_mask_fixupimm_pd_256, // llvm.x86.avx512.mask.fixupimm.pd.256
x86_avx512_mask_fixupimm_pd_512, // llvm.x86.avx512.mask.fixupimm.pd.512
x86_avx512_mask_fixupimm_ps_128, // llvm.x86.avx512.mask.fixupimm.ps.128
x86_avx512_mask_fixupimm_ps_256, // llvm.x86.avx512.mask.fixupimm.ps.256
x86_avx512_mask_fixupimm_ps_512, // llvm.x86.avx512.mask.fixupimm.ps.512
x86_avx512_mask_fixupimm_sd, // llvm.x86.avx512.mask.fixupimm.sd
x86_avx512_mask_fixupimm_ss, // llvm.x86.avx512.mask.fixupimm.ss
x86_avx512_mask_fpclass_sd, // llvm.x86.avx512.mask.fpclass.sd
x86_avx512_mask_fpclass_ss, // llvm.x86.avx512.mask.fpclass.ss
x86_avx512_mask_gather_dpd_512, // llvm.x86.avx512.mask.gather.dpd.512
x86_avx512_mask_gather_dpi_512, // llvm.x86.avx512.mask.gather.dpi.512
x86_avx512_mask_gather_dpq_512, // llvm.x86.avx512.mask.gather.dpq.512
x86_avx512_mask_gather_dps_512, // llvm.x86.avx512.mask.gather.dps.512
x86_avx512_mask_gather_qpd_512, // llvm.x86.avx512.mask.gather.qpd.512
x86_avx512_mask_gather_qpi_512, // llvm.x86.avx512.mask.gather.qpi.512
x86_avx512_mask_gather_qpq_512, // llvm.x86.avx512.mask.gather.qpq.512
x86_avx512_mask_gather_qps_512, // llvm.x86.avx512.mask.gather.qps.512
x86_avx512_mask_gather3div2_df, // llvm.x86.avx512.mask.gather3div2.df
x86_avx512_mask_gather3div2_di, // llvm.x86.avx512.mask.gather3div2.di
x86_avx512_mask_gather3div4_df, // llvm.x86.avx512.mask.gather3div4.df
x86_avx512_mask_gather3div4_di, // llvm.x86.avx512.mask.gather3div4.di
x86_avx512_mask_gather3div4_sf, // llvm.x86.avx512.mask.gather3div4.sf
x86_avx512_mask_gather3div4_si, // llvm.x86.avx512.mask.gather3div4.si
x86_avx512_mask_gather3div8_sf, // llvm.x86.avx512.mask.gather3div8.sf
x86_avx512_mask_gather3div8_si, // llvm.x86.avx512.mask.gather3div8.si
x86_avx512_mask_gather3siv2_df, // llvm.x86.avx512.mask.gather3siv2.df
x86_avx512_mask_gather3siv2_di, // llvm.x86.avx512.mask.gather3siv2.di
x86_avx512_mask_gather3siv4_df, // llvm.x86.avx512.mask.gather3siv4.df
x86_avx512_mask_gather3siv4_di, // llvm.x86.avx512.mask.gather3siv4.di
x86_avx512_mask_gather3siv4_sf, // llvm.x86.avx512.mask.gather3siv4.sf
x86_avx512_mask_gather3siv4_si, // llvm.x86.avx512.mask.gather3siv4.si
x86_avx512_mask_gather3siv8_sf, // llvm.x86.avx512.mask.gather3siv8.sf
x86_avx512_mask_gather3siv8_si, // llvm.x86.avx512.mask.gather3siv8.si
x86_avx512_mask_getexp_pd_128, // llvm.x86.avx512.mask.getexp.pd.128
x86_avx512_mask_getexp_pd_256, // llvm.x86.avx512.mask.getexp.pd.256
x86_avx512_mask_getexp_pd_512, // llvm.x86.avx512.mask.getexp.pd.512
x86_avx512_mask_getexp_ps_128, // llvm.x86.avx512.mask.getexp.ps.128
x86_avx512_mask_getexp_ps_256, // llvm.x86.avx512.mask.getexp.ps.256
x86_avx512_mask_getexp_ps_512, // llvm.x86.avx512.mask.getexp.ps.512
x86_avx512_mask_getexp_sd, // llvm.x86.avx512.mask.getexp.sd
x86_avx512_mask_getexp_ss, // llvm.x86.avx512.mask.getexp.ss
x86_avx512_mask_getmant_pd_128, // llvm.x86.avx512.mask.getmant.pd.128
x86_avx512_mask_getmant_pd_256, // llvm.x86.avx512.mask.getmant.pd.256
x86_avx512_mask_getmant_pd_512, // llvm.x86.avx512.mask.getmant.pd.512
x86_avx512_mask_getmant_ps_128, // llvm.x86.avx512.mask.getmant.ps.128
x86_avx512_mask_getmant_ps_256, // llvm.x86.avx512.mask.getmant.ps.256
x86_avx512_mask_getmant_ps_512, // llvm.x86.avx512.mask.getmant.ps.512
x86_avx512_mask_getmant_sd, // llvm.x86.avx512.mask.getmant.sd
x86_avx512_mask_getmant_ss, // llvm.x86.avx512.mask.getmant.ss
x86_avx512_mask_max_sd_round, // llvm.x86.avx512.mask.max.sd.round
x86_avx512_mask_max_ss_round, // llvm.x86.avx512.mask.max.ss.round
x86_avx512_mask_min_sd_round, // llvm.x86.avx512.mask.min.sd.round
x86_avx512_mask_min_ss_round, // llvm.x86.avx512.mask.min.ss.round
x86_avx512_mask_mul_sd_round, // llvm.x86.avx512.mask.mul.sd.round
x86_avx512_mask_mul_ss_round, // llvm.x86.avx512.mask.mul.ss.round
x86_avx512_mask_pmov_db_128, // llvm.x86.avx512.mask.pmov.db.128
x86_avx512_mask_pmov_db_256, // llvm.x86.avx512.mask.pmov.db.256
x86_avx512_mask_pmov_db_512, // llvm.x86.avx512.mask.pmov.db.512
x86_avx512_mask_pmov_db_mem_128, // llvm.x86.avx512.mask.pmov.db.mem.128
x86_avx512_mask_pmov_db_mem_256, // llvm.x86.avx512.mask.pmov.db.mem.256
x86_avx512_mask_pmov_db_mem_512, // llvm.x86.avx512.mask.pmov.db.mem.512
x86_avx512_mask_pmov_dw_128, // llvm.x86.avx512.mask.pmov.dw.128
x86_avx512_mask_pmov_dw_256, // llvm.x86.avx512.mask.pmov.dw.256
x86_avx512_mask_pmov_dw_512, // llvm.x86.avx512.mask.pmov.dw.512
x86_avx512_mask_pmov_dw_mem_128, // llvm.x86.avx512.mask.pmov.dw.mem.128
x86_avx512_mask_pmov_dw_mem_256, // llvm.x86.avx512.mask.pmov.dw.mem.256
x86_avx512_mask_pmov_dw_mem_512, // llvm.x86.avx512.mask.pmov.dw.mem.512
x86_avx512_mask_pmov_qb_128, // llvm.x86.avx512.mask.pmov.qb.128
x86_avx512_mask_pmov_qb_256, // llvm.x86.avx512.mask.pmov.qb.256
x86_avx512_mask_pmov_qb_512, // llvm.x86.avx512.mask.pmov.qb.512
x86_avx512_mask_pmov_qb_mem_128, // llvm.x86.avx512.mask.pmov.qb.mem.128
x86_avx512_mask_pmov_qb_mem_256, // llvm.x86.avx512.mask.pmov.qb.mem.256
x86_avx512_mask_pmov_qb_mem_512, // llvm.x86.avx512.mask.pmov.qb.mem.512
x86_avx512_mask_pmov_qd_128, // llvm.x86.avx512.mask.pmov.qd.128
x86_avx512_mask_pmov_qd_mem_128, // llvm.x86.avx512.mask.pmov.qd.mem.128
x86_avx512_mask_pmov_qd_mem_256, // llvm.x86.avx512.mask.pmov.qd.mem.256
x86_avx512_mask_pmov_qd_mem_512, // llvm.x86.avx512.mask.pmov.qd.mem.512
x86_avx512_mask_pmov_qw_128, // llvm.x86.avx512.mask.pmov.qw.128
x86_avx512_mask_pmov_qw_256, // llvm.x86.avx512.mask.pmov.qw.256
x86_avx512_mask_pmov_qw_512, // llvm.x86.avx512.mask.pmov.qw.512
x86_avx512_mask_pmov_qw_mem_128, // llvm.x86.avx512.mask.pmov.qw.mem.128
x86_avx512_mask_pmov_qw_mem_256, // llvm.x86.avx512.mask.pmov.qw.mem.256
x86_avx512_mask_pmov_qw_mem_512, // llvm.x86.avx512.mask.pmov.qw.mem.512
x86_avx512_mask_pmov_wb_128, // llvm.x86.avx512.mask.pmov.wb.128
x86_avx512_mask_pmov_wb_mem_128, // llvm.x86.avx512.mask.pmov.wb.mem.128
x86_avx512_mask_pmov_wb_mem_256, // llvm.x86.avx512.mask.pmov.wb.mem.256
x86_avx512_mask_pmov_wb_mem_512, // llvm.x86.avx512.mask.pmov.wb.mem.512
x86_avx512_mask_pmovs_db_128, // llvm.x86.avx512.mask.pmovs.db.128
x86_avx512_mask_pmovs_db_256, // llvm.x86.avx512.mask.pmovs.db.256
x86_avx512_mask_pmovs_db_512, // llvm.x86.avx512.mask.pmovs.db.512
x86_avx512_mask_pmovs_db_mem_128, // llvm.x86.avx512.mask.pmovs.db.mem.128
x86_avx512_mask_pmovs_db_mem_256, // llvm.x86.avx512.mask.pmovs.db.mem.256
x86_avx512_mask_pmovs_db_mem_512, // llvm.x86.avx512.mask.pmovs.db.mem.512
x86_avx512_mask_pmovs_dw_128, // llvm.x86.avx512.mask.pmovs.dw.128
x86_avx512_mask_pmovs_dw_256, // llvm.x86.avx512.mask.pmovs.dw.256
x86_avx512_mask_pmovs_dw_512, // llvm.x86.avx512.mask.pmovs.dw.512
x86_avx512_mask_pmovs_dw_mem_128, // llvm.x86.avx512.mask.pmovs.dw.mem.128
x86_avx512_mask_pmovs_dw_mem_256, // llvm.x86.avx512.mask.pmovs.dw.mem.256
x86_avx512_mask_pmovs_dw_mem_512, // llvm.x86.avx512.mask.pmovs.dw.mem.512
x86_avx512_mask_pmovs_qb_128, // llvm.x86.avx512.mask.pmovs.qb.128
x86_avx512_mask_pmovs_qb_256, // llvm.x86.avx512.mask.pmovs.qb.256
x86_avx512_mask_pmovs_qb_512, // llvm.x86.avx512.mask.pmovs.qb.512
x86_avx512_mask_pmovs_qb_mem_128, // llvm.x86.avx512.mask.pmovs.qb.mem.128
x86_avx512_mask_pmovs_qb_mem_256, // llvm.x86.avx512.mask.pmovs.qb.mem.256
x86_avx512_mask_pmovs_qb_mem_512, // llvm.x86.avx512.mask.pmovs.qb.mem.512
x86_avx512_mask_pmovs_qd_128, // llvm.x86.avx512.mask.pmovs.qd.128
x86_avx512_mask_pmovs_qd_256, // llvm.x86.avx512.mask.pmovs.qd.256
x86_avx512_mask_pmovs_qd_512, // llvm.x86.avx512.mask.pmovs.qd.512
x86_avx512_mask_pmovs_qd_mem_128, // llvm.x86.avx512.mask.pmovs.qd.mem.128
x86_avx512_mask_pmovs_qd_mem_256, // llvm.x86.avx512.mask.pmovs.qd.mem.256
x86_avx512_mask_pmovs_qd_mem_512, // llvm.x86.avx512.mask.pmovs.qd.mem.512
x86_avx512_mask_pmovs_qw_128, // llvm.x86.avx512.mask.pmovs.qw.128
x86_avx512_mask_pmovs_qw_256, // llvm.x86.avx512.mask.pmovs.qw.256
x86_avx512_mask_pmovs_qw_512, // llvm.x86.avx512.mask.pmovs.qw.512
x86_avx512_mask_pmovs_qw_mem_128, // llvm.x86.avx512.mask.pmovs.qw.mem.128
x86_avx512_mask_pmovs_qw_mem_256, // llvm.x86.avx512.mask.pmovs.qw.mem.256
x86_avx512_mask_pmovs_qw_mem_512, // llvm.x86.avx512.mask.pmovs.qw.mem.512
x86_avx512_mask_pmovs_wb_128, // llvm.x86.avx512.mask.pmovs.wb.128
x86_avx512_mask_pmovs_wb_256, // llvm.x86.avx512.mask.pmovs.wb.256
x86_avx512_mask_pmovs_wb_512, // llvm.x86.avx512.mask.pmovs.wb.512
x86_avx512_mask_pmovs_wb_mem_128, // llvm.x86.avx512.mask.pmovs.wb.mem.128
x86_avx512_mask_pmovs_wb_mem_256, // llvm.x86.avx512.mask.pmovs.wb.mem.256
x86_avx512_mask_pmovs_wb_mem_512, // llvm.x86.avx512.mask.pmovs.wb.mem.512
x86_avx512_mask_pmovus_db_128, // llvm.x86.avx512.mask.pmovus.db.128
x86_avx512_mask_pmovus_db_256, // llvm.x86.avx512.mask.pmovus.db.256
x86_avx512_mask_pmovus_db_512, // llvm.x86.avx512.mask.pmovus.db.512
x86_avx512_mask_pmovus_db_mem_128, // llvm.x86.avx512.mask.pmovus.db.mem.128
x86_avx512_mask_pmovus_db_mem_256, // llvm.x86.avx512.mask.pmovus.db.mem.256
x86_avx512_mask_pmovus_db_mem_512, // llvm.x86.avx512.mask.pmovus.db.mem.512
x86_avx512_mask_pmovus_dw_128, // llvm.x86.avx512.mask.pmovus.dw.128
x86_avx512_mask_pmovus_dw_256, // llvm.x86.avx512.mask.pmovus.dw.256
x86_avx512_mask_pmovus_dw_512, // llvm.x86.avx512.mask.pmovus.dw.512
x86_avx512_mask_pmovus_dw_mem_128, // llvm.x86.avx512.mask.pmovus.dw.mem.128
x86_avx512_mask_pmovus_dw_mem_256, // llvm.x86.avx512.mask.pmovus.dw.mem.256
x86_avx512_mask_pmovus_dw_mem_512, // llvm.x86.avx512.mask.pmovus.dw.mem.512
x86_avx512_mask_pmovus_qb_128, // llvm.x86.avx512.mask.pmovus.qb.128
x86_avx512_mask_pmovus_qb_256, // llvm.x86.avx512.mask.pmovus.qb.256
x86_avx512_mask_pmovus_qb_512, // llvm.x86.avx512.mask.pmovus.qb.512
x86_avx512_mask_pmovus_qb_mem_128, // llvm.x86.avx512.mask.pmovus.qb.mem.128
x86_avx512_mask_pmovus_qb_mem_256, // llvm.x86.avx512.mask.pmovus.qb.mem.256
x86_avx512_mask_pmovus_qb_mem_512, // llvm.x86.avx512.mask.pmovus.qb.mem.512
x86_avx512_mask_pmovus_qd_128, // llvm.x86.avx512.mask.pmovus.qd.128
x86_avx512_mask_pmovus_qd_256, // llvm.x86.avx512.mask.pmovus.qd.256
x86_avx512_mask_pmovus_qd_512, // llvm.x86.avx512.mask.pmovus.qd.512
x86_avx512_mask_pmovus_qd_mem_128, // llvm.x86.avx512.mask.pmovus.qd.mem.128
x86_avx512_mask_pmovus_qd_mem_256, // llvm.x86.avx512.mask.pmovus.qd.mem.256
x86_avx512_mask_pmovus_qd_mem_512, // llvm.x86.avx512.mask.pmovus.qd.mem.512
x86_avx512_mask_pmovus_qw_128, // llvm.x86.avx512.mask.pmovus.qw.128
x86_avx512_mask_pmovus_qw_256, // llvm.x86.avx512.mask.pmovus.qw.256
x86_avx512_mask_pmovus_qw_512, // llvm.x86.avx512.mask.pmovus.qw.512
x86_avx512_mask_pmovus_qw_mem_128, // llvm.x86.avx512.mask.pmovus.qw.mem.128
x86_avx512_mask_pmovus_qw_mem_256, // llvm.x86.avx512.mask.pmovus.qw.mem.256
x86_avx512_mask_pmovus_qw_mem_512, // llvm.x86.avx512.mask.pmovus.qw.mem.512
x86_avx512_mask_pmovus_wb_128, // llvm.x86.avx512.mask.pmovus.wb.128
x86_avx512_mask_pmovus_wb_256, // llvm.x86.avx512.mask.pmovus.wb.256
x86_avx512_mask_pmovus_wb_512, // llvm.x86.avx512.mask.pmovus.wb.512
x86_avx512_mask_pmovus_wb_mem_128, // llvm.x86.avx512.mask.pmovus.wb.mem.128
x86_avx512_mask_pmovus_wb_mem_256, // llvm.x86.avx512.mask.pmovus.wb.mem.256
x86_avx512_mask_pmovus_wb_mem_512, // llvm.x86.avx512.mask.pmovus.wb.mem.512
x86_avx512_mask_range_pd_128, // llvm.x86.avx512.mask.range.pd.128
x86_avx512_mask_range_pd_256, // llvm.x86.avx512.mask.range.pd.256
x86_avx512_mask_range_pd_512, // llvm.x86.avx512.mask.range.pd.512
x86_avx512_mask_range_ps_128, // llvm.x86.avx512.mask.range.ps.128
x86_avx512_mask_range_ps_256, // llvm.x86.avx512.mask.range.ps.256
x86_avx512_mask_range_ps_512, // llvm.x86.avx512.mask.range.ps.512
x86_avx512_mask_range_sd, // llvm.x86.avx512.mask.range.sd
x86_avx512_mask_range_ss, // llvm.x86.avx512.mask.range.ss
x86_avx512_mask_reduce_pd_128, // llvm.x86.avx512.mask.reduce.pd.128
x86_avx512_mask_reduce_pd_256, // llvm.x86.avx512.mask.reduce.pd.256
x86_avx512_mask_reduce_pd_512, // llvm.x86.avx512.mask.reduce.pd.512
x86_avx512_mask_reduce_ps_128, // llvm.x86.avx512.mask.reduce.ps.128
x86_avx512_mask_reduce_ps_256, // llvm.x86.avx512.mask.reduce.ps.256
x86_avx512_mask_reduce_ps_512, // llvm.x86.avx512.mask.reduce.ps.512
x86_avx512_mask_reduce_sd, // llvm.x86.avx512.mask.reduce.sd
x86_avx512_mask_reduce_ss, // llvm.x86.avx512.mask.reduce.ss
x86_avx512_mask_rndscale_pd_128, // llvm.x86.avx512.mask.rndscale.pd.128
x86_avx512_mask_rndscale_pd_256, // llvm.x86.avx512.mask.rndscale.pd.256
x86_avx512_mask_rndscale_pd_512, // llvm.x86.avx512.mask.rndscale.pd.512
x86_avx512_mask_rndscale_ps_128, // llvm.x86.avx512.mask.rndscale.ps.128
x86_avx512_mask_rndscale_ps_256, // llvm.x86.avx512.mask.rndscale.ps.256
x86_avx512_mask_rndscale_ps_512, // llvm.x86.avx512.mask.rndscale.ps.512
x86_avx512_mask_rndscale_sd, // llvm.x86.avx512.mask.rndscale.sd
x86_avx512_mask_rndscale_ss, // llvm.x86.avx512.mask.rndscale.ss
x86_avx512_mask_scalef_pd_128, // llvm.x86.avx512.mask.scalef.pd.128
x86_avx512_mask_scalef_pd_256, // llvm.x86.avx512.mask.scalef.pd.256
x86_avx512_mask_scalef_pd_512, // llvm.x86.avx512.mask.scalef.pd.512
x86_avx512_mask_scalef_ps_128, // llvm.x86.avx512.mask.scalef.ps.128
x86_avx512_mask_scalef_ps_256, // llvm.x86.avx512.mask.scalef.ps.256
x86_avx512_mask_scalef_ps_512, // llvm.x86.avx512.mask.scalef.ps.512
x86_avx512_mask_scalef_sd, // llvm.x86.avx512.mask.scalef.sd
x86_avx512_mask_scalef_ss, // llvm.x86.avx512.mask.scalef.ss
x86_avx512_mask_scatter_dpd_512, // llvm.x86.avx512.mask.scatter.dpd.512
x86_avx512_mask_scatter_dpi_512, // llvm.x86.avx512.mask.scatter.dpi.512
x86_avx512_mask_scatter_dpq_512, // llvm.x86.avx512.mask.scatter.dpq.512
x86_avx512_mask_scatter_dps_512, // llvm.x86.avx512.mask.scatter.dps.512
x86_avx512_mask_scatter_qpd_512, // llvm.x86.avx512.mask.scatter.qpd.512
x86_avx512_mask_scatter_qpi_512, // llvm.x86.avx512.mask.scatter.qpi.512
x86_avx512_mask_scatter_qpq_512, // llvm.x86.avx512.mask.scatter.qpq.512
x86_avx512_mask_scatter_qps_512, // llvm.x86.avx512.mask.scatter.qps.512
x86_avx512_mask_scatterdiv2_df, // llvm.x86.avx512.mask.scatterdiv2.df
x86_avx512_mask_scatterdiv2_di, // llvm.x86.avx512.mask.scatterdiv2.di
x86_avx512_mask_scatterdiv4_df, // llvm.x86.avx512.mask.scatterdiv4.df
x86_avx512_mask_scatterdiv4_di, // llvm.x86.avx512.mask.scatterdiv4.di
x86_avx512_mask_scatterdiv4_sf, // llvm.x86.avx512.mask.scatterdiv4.sf
x86_avx512_mask_scatterdiv4_si, // llvm.x86.avx512.mask.scatterdiv4.si
x86_avx512_mask_scatterdiv8_sf, // llvm.x86.avx512.mask.scatterdiv8.sf
x86_avx512_mask_scatterdiv8_si, // llvm.x86.avx512.mask.scatterdiv8.si
x86_avx512_mask_scattersiv2_df, // llvm.x86.avx512.mask.scattersiv2.df
x86_avx512_mask_scattersiv2_di, // llvm.x86.avx512.mask.scattersiv2.di
x86_avx512_mask_scattersiv4_df, // llvm.x86.avx512.mask.scattersiv4.df
x86_avx512_mask_scattersiv4_di, // llvm.x86.avx512.mask.scattersiv4.di
x86_avx512_mask_scattersiv4_sf, // llvm.x86.avx512.mask.scattersiv4.sf
x86_avx512_mask_scattersiv4_si, // llvm.x86.avx512.mask.scattersiv4.si
x86_avx512_mask_scattersiv8_sf, // llvm.x86.avx512.mask.scattersiv8.sf
x86_avx512_mask_scattersiv8_si, // llvm.x86.avx512.mask.scattersiv8.si
x86_avx512_mask_sqrt_sd, // llvm.x86.avx512.mask.sqrt.sd
x86_avx512_mask_sqrt_ss, // llvm.x86.avx512.mask.sqrt.ss
x86_avx512_mask_sub_sd_round, // llvm.x86.avx512.mask.sub.sd.round
x86_avx512_mask_sub_ss_round, // llvm.x86.avx512.mask.sub.ss.round
x86_avx512_mask_vcvtph2ps_128, // llvm.x86.avx512.mask.vcvtph2ps.128
x86_avx512_mask_vcvtph2ps_256, // llvm.x86.avx512.mask.vcvtph2ps.256
x86_avx512_mask_vcvtph2ps_512, // llvm.x86.avx512.mask.vcvtph2ps.512
x86_avx512_mask_vcvtps2ph_128, // llvm.x86.avx512.mask.vcvtps2ph.128
x86_avx512_mask_vcvtps2ph_256, // llvm.x86.avx512.mask.vcvtps2ph.256
x86_avx512_mask_vcvtps2ph_512, // llvm.x86.avx512.mask.vcvtps2ph.512
x86_avx512_maskz_fixupimm_pd_128, // llvm.x86.avx512.maskz.fixupimm.pd.128
x86_avx512_maskz_fixupimm_pd_256, // llvm.x86.avx512.maskz.fixupimm.pd.256
x86_avx512_maskz_fixupimm_pd_512, // llvm.x86.avx512.maskz.fixupimm.pd.512
x86_avx512_maskz_fixupimm_ps_128, // llvm.x86.avx512.maskz.fixupimm.ps.128
x86_avx512_maskz_fixupimm_ps_256, // llvm.x86.avx512.maskz.fixupimm.ps.256
x86_avx512_maskz_fixupimm_ps_512, // llvm.x86.avx512.maskz.fixupimm.ps.512
x86_avx512_maskz_fixupimm_sd, // llvm.x86.avx512.maskz.fixupimm.sd
x86_avx512_maskz_fixupimm_ss, // llvm.x86.avx512.maskz.fixupimm.ss
x86_avx512_max_pd_512, // llvm.x86.avx512.max.pd.512
x86_avx512_max_ps_512, // llvm.x86.avx512.max.ps.512
x86_avx512_min_pd_512, // llvm.x86.avx512.min.pd.512
x86_avx512_min_ps_512, // llvm.x86.avx512.min.ps.512
x86_avx512_mul_pd_512, // llvm.x86.avx512.mul.pd.512
x86_avx512_mul_ps_512, // llvm.x86.avx512.mul.ps.512
x86_avx512_packssdw_512, // llvm.x86.avx512.packssdw.512
x86_avx512_packsswb_512, // llvm.x86.avx512.packsswb.512
x86_avx512_packusdw_512, // llvm.x86.avx512.packusdw.512
x86_avx512_packuswb_512, // llvm.x86.avx512.packuswb.512
x86_avx512_pavg_b_512, // llvm.x86.avx512.pavg.b.512
x86_avx512_pavg_w_512, // llvm.x86.avx512.pavg.w.512
x86_avx512_permvar_df_256, // llvm.x86.avx512.permvar.df.256
x86_avx512_permvar_df_512, // llvm.x86.avx512.permvar.df.512
x86_avx512_permvar_di_256, // llvm.x86.avx512.permvar.di.256
x86_avx512_permvar_di_512, // llvm.x86.avx512.permvar.di.512
x86_avx512_permvar_hi_128, // llvm.x86.avx512.permvar.hi.128
x86_avx512_permvar_hi_256, // llvm.x86.avx512.permvar.hi.256
x86_avx512_permvar_hi_512, // llvm.x86.avx512.permvar.hi.512
x86_avx512_permvar_qi_128, // llvm.x86.avx512.permvar.qi.128
x86_avx512_permvar_qi_256, // llvm.x86.avx512.permvar.qi.256
x86_avx512_permvar_qi_512, // llvm.x86.avx512.permvar.qi.512
x86_avx512_permvar_sf_512, // llvm.x86.avx512.permvar.sf.512
x86_avx512_permvar_si_512, // llvm.x86.avx512.permvar.si.512
x86_avx512_pmaddubs_w_512, // llvm.x86.avx512.pmaddubs.w.512
x86_avx512_pmaddw_d_512, // llvm.x86.avx512.pmaddw.d.512
x86_avx512_pmul_hr_sw_512, // llvm.x86.avx512.pmul.hr.sw.512
x86_avx512_pmulh_w_512, // llvm.x86.avx512.pmulh.w.512
x86_avx512_pmulhu_w_512, // llvm.x86.avx512.pmulhu.w.512
x86_avx512_pmultishift_qb_128, // llvm.x86.avx512.pmultishift.qb.128
x86_avx512_pmultishift_qb_256, // llvm.x86.avx512.pmultishift.qb.256
x86_avx512_pmultishift_qb_512, // llvm.x86.avx512.pmultishift.qb.512
x86_avx512_psad_bw_512, // llvm.x86.avx512.psad.bw.512
x86_avx512_pshuf_b_512, // llvm.x86.avx512.pshuf.b.512
x86_avx512_psll_d_512, // llvm.x86.avx512.psll.d.512
x86_avx512_psll_q_512, // llvm.x86.avx512.psll.q.512
x86_avx512_psll_w_512, // llvm.x86.avx512.psll.w.512
x86_avx512_pslli_d_512, // llvm.x86.avx512.pslli.d.512
x86_avx512_pslli_q_512, // llvm.x86.avx512.pslli.q.512
x86_avx512_pslli_w_512, // llvm.x86.avx512.pslli.w.512
x86_avx512_psllv_d_512, // llvm.x86.avx512.psllv.d.512
x86_avx512_psllv_q_512, // llvm.x86.avx512.psllv.q.512
x86_avx512_psllv_w_128, // llvm.x86.avx512.psllv.w.128
x86_avx512_psllv_w_256, // llvm.x86.avx512.psllv.w.256
x86_avx512_psllv_w_512, // llvm.x86.avx512.psllv.w.512
x86_avx512_psra_d_512, // llvm.x86.avx512.psra.d.512
x86_avx512_psra_q_128, // llvm.x86.avx512.psra.q.128
x86_avx512_psra_q_256, // llvm.x86.avx512.psra.q.256
x86_avx512_psra_q_512, // llvm.x86.avx512.psra.q.512
x86_avx512_psra_w_512, // llvm.x86.avx512.psra.w.512
x86_avx512_psrai_d_512, // llvm.x86.avx512.psrai.d.512
x86_avx512_psrai_q_128, // llvm.x86.avx512.psrai.q.128
x86_avx512_psrai_q_256, // llvm.x86.avx512.psrai.q.256
x86_avx512_psrai_q_512, // llvm.x86.avx512.psrai.q.512
x86_avx512_psrai_w_512, // llvm.x86.avx512.psrai.w.512
x86_avx512_psrav_d_512, // llvm.x86.avx512.psrav.d.512
x86_avx512_psrav_q_128, // llvm.x86.avx512.psrav.q.128
x86_avx512_psrav_q_256, // llvm.x86.avx512.psrav.q.256
x86_avx512_psrav_q_512, // llvm.x86.avx512.psrav.q.512
x86_avx512_psrav_w_128, // llvm.x86.avx512.psrav.w.128
x86_avx512_psrav_w_256, // llvm.x86.avx512.psrav.w.256
x86_avx512_psrav_w_512, // llvm.x86.avx512.psrav.w.512
x86_avx512_psrl_d_512, // llvm.x86.avx512.psrl.d.512
x86_avx512_psrl_q_512, // llvm.x86.avx512.psrl.q.512
x86_avx512_psrl_w_512, // llvm.x86.avx512.psrl.w.512
x86_avx512_psrli_d_512, // llvm.x86.avx512.psrli.d.512
x86_avx512_psrli_q_512, // llvm.x86.avx512.psrli.q.512
x86_avx512_psrli_w_512, // llvm.x86.avx512.psrli.w.512
x86_avx512_psrlv_d_512, // llvm.x86.avx512.psrlv.d.512
x86_avx512_psrlv_q_512, // llvm.x86.avx512.psrlv.q.512
x86_avx512_psrlv_w_128, // llvm.x86.avx512.psrlv.w.128
x86_avx512_psrlv_w_256, // llvm.x86.avx512.psrlv.w.256
x86_avx512_psrlv_w_512, // llvm.x86.avx512.psrlv.w.512
x86_avx512_pternlog_d_128, // llvm.x86.avx512.pternlog.d.128
x86_avx512_pternlog_d_256, // llvm.x86.avx512.pternlog.d.256
x86_avx512_pternlog_d_512, // llvm.x86.avx512.pternlog.d.512
x86_avx512_pternlog_q_128, // llvm.x86.avx512.pternlog.q.128
x86_avx512_pternlog_q_256, // llvm.x86.avx512.pternlog.q.256
x86_avx512_pternlog_q_512, // llvm.x86.avx512.pternlog.q.512
x86_avx512_rcp14_pd_128, // llvm.x86.avx512.rcp14.pd.128
x86_avx512_rcp14_pd_256, // llvm.x86.avx512.rcp14.pd.256
x86_avx512_rcp14_pd_512, // llvm.x86.avx512.rcp14.pd.512
x86_avx512_rcp14_ps_128, // llvm.x86.avx512.rcp14.ps.128
x86_avx512_rcp14_ps_256, // llvm.x86.avx512.rcp14.ps.256
x86_avx512_rcp14_ps_512, // llvm.x86.avx512.rcp14.ps.512
x86_avx512_rcp14_sd, // llvm.x86.avx512.rcp14.sd
x86_avx512_rcp14_ss, // llvm.x86.avx512.rcp14.ss
x86_avx512_rcp28_pd, // llvm.x86.avx512.rcp28.pd
x86_avx512_rcp28_ps, // llvm.x86.avx512.rcp28.ps
x86_avx512_rcp28_sd, // llvm.x86.avx512.rcp28.sd
x86_avx512_rcp28_ss, // llvm.x86.avx512.rcp28.ss
x86_avx512_rsqrt14_pd_128, // llvm.x86.avx512.rsqrt14.pd.128
x86_avx512_rsqrt14_pd_256, // llvm.x86.avx512.rsqrt14.pd.256
x86_avx512_rsqrt14_pd_512, // llvm.x86.avx512.rsqrt14.pd.512
x86_avx512_rsqrt14_ps_128, // llvm.x86.avx512.rsqrt14.ps.128
x86_avx512_rsqrt14_ps_256, // llvm.x86.avx512.rsqrt14.ps.256
x86_avx512_rsqrt14_ps_512, // llvm.x86.avx512.rsqrt14.ps.512
x86_avx512_rsqrt14_sd, // llvm.x86.avx512.rsqrt14.sd
x86_avx512_rsqrt14_ss, // llvm.x86.avx512.rsqrt14.ss
x86_avx512_rsqrt28_pd, // llvm.x86.avx512.rsqrt28.pd
x86_avx512_rsqrt28_ps, // llvm.x86.avx512.rsqrt28.ps
x86_avx512_rsqrt28_sd, // llvm.x86.avx512.rsqrt28.sd
x86_avx512_rsqrt28_ss, // llvm.x86.avx512.rsqrt28.ss
x86_avx512_scatter_dpd_512, // llvm.x86.avx512.scatter.dpd.512
x86_avx512_scatter_dpi_512, // llvm.x86.avx512.scatter.dpi.512
x86_avx512_scatter_dpq_512, // llvm.x86.avx512.scatter.dpq.512
x86_avx512_scatter_dps_512, // llvm.x86.avx512.scatter.dps.512
x86_avx512_scatter_qpd_512, // llvm.x86.avx512.scatter.qpd.512
x86_avx512_scatter_qpi_512, // llvm.x86.avx512.scatter.qpi.512
x86_avx512_scatter_qpq_512, // llvm.x86.avx512.scatter.qpq.512
x86_avx512_scatter_qps_512, // llvm.x86.avx512.scatter.qps.512
x86_avx512_scatterdiv2_df, // llvm.x86.avx512.scatterdiv2.df
x86_avx512_scatterdiv2_di, // llvm.x86.avx512.scatterdiv2.di
x86_avx512_scatterdiv4_df, // llvm.x86.avx512.scatterdiv4.df
x86_avx512_scatterdiv4_di, // llvm.x86.avx512.scatterdiv4.di
x86_avx512_scatterdiv4_sf, // llvm.x86.avx512.scatterdiv4.sf
x86_avx512_scatterdiv4_si, // llvm.x86.avx512.scatterdiv4.si
x86_avx512_scatterdiv8_sf, // llvm.x86.avx512.scatterdiv8.sf
x86_avx512_scatterdiv8_si, // llvm.x86.avx512.scatterdiv8.si
x86_avx512_scatterpf_dpd_512, // llvm.x86.avx512.scatterpf.dpd.512
x86_avx512_scatterpf_dps_512, // llvm.x86.avx512.scatterpf.dps.512
x86_avx512_scatterpf_qpd_512, // llvm.x86.avx512.scatterpf.qpd.512
x86_avx512_scatterpf_qps_512, // llvm.x86.avx512.scatterpf.qps.512
x86_avx512_scattersiv2_df, // llvm.x86.avx512.scattersiv2.df
x86_avx512_scattersiv2_di, // llvm.x86.avx512.scattersiv2.di
x86_avx512_scattersiv4_df, // llvm.x86.avx512.scattersiv4.df
x86_avx512_scattersiv4_di, // llvm.x86.avx512.scattersiv4.di
x86_avx512_scattersiv4_sf, // llvm.x86.avx512.scattersiv4.sf
x86_avx512_scattersiv4_si, // llvm.x86.avx512.scattersiv4.si
x86_avx512_scattersiv8_sf, // llvm.x86.avx512.scattersiv8.sf
x86_avx512_scattersiv8_si, // llvm.x86.avx512.scattersiv8.si
x86_avx512_sitofp_round, // llvm.x86.avx512.sitofp.round
x86_avx512_sqrt_pd_512, // llvm.x86.avx512.sqrt.pd.512
x86_avx512_sqrt_ps_512, // llvm.x86.avx512.sqrt.ps.512
x86_avx512_sub_pd_512, // llvm.x86.avx512.sub.pd.512
x86_avx512_sub_ps_512, // llvm.x86.avx512.sub.ps.512
x86_avx512_uitofp_round, // llvm.x86.avx512.uitofp.round
x86_avx512_vcomi_sd, // llvm.x86.avx512.vcomi.sd
x86_avx512_vcomi_ss, // llvm.x86.avx512.vcomi.ss
x86_avx512_vcvtsd2si32, // llvm.x86.avx512.vcvtsd2si32
x86_avx512_vcvtsd2si64, // llvm.x86.avx512.vcvtsd2si64
x86_avx512_vcvtsd2usi32, // llvm.x86.avx512.vcvtsd2usi32
x86_avx512_vcvtsd2usi64, // llvm.x86.avx512.vcvtsd2usi64
x86_avx512_vcvtss2si32, // llvm.x86.avx512.vcvtss2si32
x86_avx512_vcvtss2si64, // llvm.x86.avx512.vcvtss2si64
x86_avx512_vcvtss2usi32, // llvm.x86.avx512.vcvtss2usi32
x86_avx512_vcvtss2usi64, // llvm.x86.avx512.vcvtss2usi64
x86_avx512_vfmadd_f32, // llvm.x86.avx512.vfmadd.f32
x86_avx512_vfmadd_f64, // llvm.x86.avx512.vfmadd.f64
x86_avx512_vfmadd_pd_512, // llvm.x86.avx512.vfmadd.pd.512
x86_avx512_vfmadd_ps_512, // llvm.x86.avx512.vfmadd.ps.512
x86_avx512_vfmaddsub_pd_512, // llvm.x86.avx512.vfmaddsub.pd.512
x86_avx512_vfmaddsub_ps_512, // llvm.x86.avx512.vfmaddsub.ps.512
x86_avx512_vp2intersect_d_128, // llvm.x86.avx512.vp2intersect.d.128
x86_avx512_vp2intersect_d_256, // llvm.x86.avx512.vp2intersect.d.256
x86_avx512_vp2intersect_d_512, // llvm.x86.avx512.vp2intersect.d.512
x86_avx512_vp2intersect_q_128, // llvm.x86.avx512.vp2intersect.q.128
x86_avx512_vp2intersect_q_256, // llvm.x86.avx512.vp2intersect.q.256
x86_avx512_vp2intersect_q_512, // llvm.x86.avx512.vp2intersect.q.512
x86_avx512_vpdpbusd_128, // llvm.x86.avx512.vpdpbusd.128
x86_avx512_vpdpbusd_256, // llvm.x86.avx512.vpdpbusd.256
x86_avx512_vpdpbusd_512, // llvm.x86.avx512.vpdpbusd.512
x86_avx512_vpdpbusds_128, // llvm.x86.avx512.vpdpbusds.128
x86_avx512_vpdpbusds_256, // llvm.x86.avx512.vpdpbusds.256
x86_avx512_vpdpbusds_512, // llvm.x86.avx512.vpdpbusds.512
x86_avx512_vpdpwssd_128, // llvm.x86.avx512.vpdpwssd.128
x86_avx512_vpdpwssd_256, // llvm.x86.avx512.vpdpwssd.256
x86_avx512_vpdpwssd_512, // llvm.x86.avx512.vpdpwssd.512
x86_avx512_vpdpwssds_128, // llvm.x86.avx512.vpdpwssds.128
x86_avx512_vpdpwssds_256, // llvm.x86.avx512.vpdpwssds.256
x86_avx512_vpdpwssds_512, // llvm.x86.avx512.vpdpwssds.512
x86_avx512_vpermi2var_d_128, // llvm.x86.avx512.vpermi2var.d.128
x86_avx512_vpermi2var_d_256, // llvm.x86.avx512.vpermi2var.d.256
x86_avx512_vpermi2var_d_512, // llvm.x86.avx512.vpermi2var.d.512
x86_avx512_vpermi2var_hi_128, // llvm.x86.avx512.vpermi2var.hi.128
x86_avx512_vpermi2var_hi_256, // llvm.x86.avx512.vpermi2var.hi.256
x86_avx512_vpermi2var_hi_512, // llvm.x86.avx512.vpermi2var.hi.512
x86_avx512_vpermi2var_pd_128, // llvm.x86.avx512.vpermi2var.pd.128
x86_avx512_vpermi2var_pd_256, // llvm.x86.avx512.vpermi2var.pd.256
x86_avx512_vpermi2var_pd_512, // llvm.x86.avx512.vpermi2var.pd.512
x86_avx512_vpermi2var_ps_128, // llvm.x86.avx512.vpermi2var.ps.128
x86_avx512_vpermi2var_ps_256, // llvm.x86.avx512.vpermi2var.ps.256
x86_avx512_vpermi2var_ps_512, // llvm.x86.avx512.vpermi2var.ps.512
x86_avx512_vpermi2var_q_128, // llvm.x86.avx512.vpermi2var.q.128
x86_avx512_vpermi2var_q_256, // llvm.x86.avx512.vpermi2var.q.256
x86_avx512_vpermi2var_q_512, // llvm.x86.avx512.vpermi2var.q.512
x86_avx512_vpermi2var_qi_128, // llvm.x86.avx512.vpermi2var.qi.128
x86_avx512_vpermi2var_qi_256, // llvm.x86.avx512.vpermi2var.qi.256
x86_avx512_vpermi2var_qi_512, // llvm.x86.avx512.vpermi2var.qi.512
x86_avx512_vpermilvar_pd_512, // llvm.x86.avx512.vpermilvar.pd.512
x86_avx512_vpermilvar_ps_512, // llvm.x86.avx512.vpermilvar.ps.512
x86_avx512_vpmadd52h_uq_128, // llvm.x86.avx512.vpmadd52h.uq.128
x86_avx512_vpmadd52h_uq_256, // llvm.x86.avx512.vpmadd52h.uq.256
x86_avx512_vpmadd52h_uq_512, // llvm.x86.avx512.vpmadd52h.uq.512
x86_avx512_vpmadd52l_uq_128, // llvm.x86.avx512.vpmadd52l.uq.128
x86_avx512_vpmadd52l_uq_256, // llvm.x86.avx512.vpmadd52l.uq.256
x86_avx512_vpmadd52l_uq_512, // llvm.x86.avx512.vpmadd52l.uq.512
x86_avx512_vpshufbitqmb_128, // llvm.x86.avx512.vpshufbitqmb.128
x86_avx512_vpshufbitqmb_256, // llvm.x86.avx512.vpshufbitqmb.256
x86_avx512_vpshufbitqmb_512, // llvm.x86.avx512.vpshufbitqmb.512
x86_avx512bf16_cvtne2ps2bf16_128, // llvm.x86.avx512bf16.cvtne2ps2bf16.128
x86_avx512bf16_cvtne2ps2bf16_256, // llvm.x86.avx512bf16.cvtne2ps2bf16.256
x86_avx512bf16_cvtne2ps2bf16_512, // llvm.x86.avx512bf16.cvtne2ps2bf16.512
x86_avx512bf16_cvtneps2bf16_256, // llvm.x86.avx512bf16.cvtneps2bf16.256
x86_avx512bf16_cvtneps2bf16_512, // llvm.x86.avx512bf16.cvtneps2bf16.512
x86_avx512bf16_dpbf16ps_128, // llvm.x86.avx512bf16.dpbf16ps.128
x86_avx512bf16_dpbf16ps_256, // llvm.x86.avx512bf16.dpbf16ps.256
x86_avx512bf16_dpbf16ps_512, // llvm.x86.avx512bf16.dpbf16ps.512
x86_avx512bf16_mask_cvtneps2bf16_128, // llvm.x86.avx512bf16.mask.cvtneps2bf16.128
x86_bmi_bextr_32, // llvm.x86.bmi.bextr.32
x86_bmi_bextr_64, // llvm.x86.bmi.bextr.64
x86_bmi_bzhi_32, // llvm.x86.bmi.bzhi.32
x86_bmi_bzhi_64, // llvm.x86.bmi.bzhi.64
x86_bmi_pdep_32, // llvm.x86.bmi.pdep.32
x86_bmi_pdep_64, // llvm.x86.bmi.pdep.64
x86_bmi_pext_32, // llvm.x86.bmi.pext.32
x86_bmi_pext_64, // llvm.x86.bmi.pext.64
x86_cldemote, // llvm.x86.cldemote
x86_clflushopt, // llvm.x86.clflushopt
x86_clrssbsy, // llvm.x86.clrssbsy
x86_clwb, // llvm.x86.clwb
x86_clzero, // llvm.x86.clzero
x86_directstore32, // llvm.x86.directstore32
x86_directstore64, // llvm.x86.directstore64
x86_enqcmd, // llvm.x86.enqcmd
x86_enqcmds, // llvm.x86.enqcmds
x86_flags_read_u32, // llvm.x86.flags.read.u32
x86_flags_read_u64, // llvm.x86.flags.read.u64
x86_flags_write_u32, // llvm.x86.flags.write.u32
x86_flags_write_u64, // llvm.x86.flags.write.u64
x86_fxrstor, // llvm.x86.fxrstor
x86_fxrstor64, // llvm.x86.fxrstor64
x86_fxsave, // llvm.x86.fxsave
x86_fxsave64, // llvm.x86.fxsave64
x86_incsspd, // llvm.x86.incsspd
x86_incsspq, // llvm.x86.incsspq
x86_int, // llvm.x86.int
x86_invpcid, // llvm.x86.invpcid
x86_llwpcb, // llvm.x86.llwpcb
x86_lwpins32, // llvm.x86.lwpins32
x86_lwpins64, // llvm.x86.lwpins64
x86_lwpval32, // llvm.x86.lwpval32
x86_lwpval64, // llvm.x86.lwpval64
x86_mmx_emms, // llvm.x86.mmx.emms
x86_mmx_femms, // llvm.x86.mmx.femms
x86_mmx_maskmovq, // llvm.x86.mmx.maskmovq
x86_mmx_movnt_dq, // llvm.x86.mmx.movnt.dq
x86_mmx_packssdw, // llvm.x86.mmx.packssdw
x86_mmx_packsswb, // llvm.x86.mmx.packsswb
x86_mmx_packuswb, // llvm.x86.mmx.packuswb
x86_mmx_padd_b, // llvm.x86.mmx.padd.b
x86_mmx_padd_d, // llvm.x86.mmx.padd.d
x86_mmx_padd_q, // llvm.x86.mmx.padd.q
x86_mmx_padd_w, // llvm.x86.mmx.padd.w
x86_mmx_padds_b, // llvm.x86.mmx.padds.b
x86_mmx_padds_w, // llvm.x86.mmx.padds.w
x86_mmx_paddus_b, // llvm.x86.mmx.paddus.b
x86_mmx_paddus_w, // llvm.x86.mmx.paddus.w
x86_mmx_palignr_b, // llvm.x86.mmx.palignr.b
x86_mmx_pand, // llvm.x86.mmx.pand
x86_mmx_pandn, // llvm.x86.mmx.pandn
x86_mmx_pavg_b, // llvm.x86.mmx.pavg.b
x86_mmx_pavg_w, // llvm.x86.mmx.pavg.w
x86_mmx_pcmpeq_b, // llvm.x86.mmx.pcmpeq.b
x86_mmx_pcmpeq_d, // llvm.x86.mmx.pcmpeq.d
x86_mmx_pcmpeq_w, // llvm.x86.mmx.pcmpeq.w
x86_mmx_pcmpgt_b, // llvm.x86.mmx.pcmpgt.b
x86_mmx_pcmpgt_d, // llvm.x86.mmx.pcmpgt.d
x86_mmx_pcmpgt_w, // llvm.x86.mmx.pcmpgt.w
x86_mmx_pextr_w, // llvm.x86.mmx.pextr.w
x86_mmx_pinsr_w, // llvm.x86.mmx.pinsr.w
x86_mmx_pmadd_wd, // llvm.x86.mmx.pmadd.wd
x86_mmx_pmaxs_w, // llvm.x86.mmx.pmaxs.w
x86_mmx_pmaxu_b, // llvm.x86.mmx.pmaxu.b
x86_mmx_pmins_w, // llvm.x86.mmx.pmins.w
x86_mmx_pminu_b, // llvm.x86.mmx.pminu.b
x86_mmx_pmovmskb, // llvm.x86.mmx.pmovmskb
x86_mmx_pmulh_w, // llvm.x86.mmx.pmulh.w
x86_mmx_pmulhu_w, // llvm.x86.mmx.pmulhu.w
x86_mmx_pmull_w, // llvm.x86.mmx.pmull.w
x86_mmx_pmulu_dq, // llvm.x86.mmx.pmulu.dq
x86_mmx_por, // llvm.x86.mmx.por
x86_mmx_psad_bw, // llvm.x86.mmx.psad.bw
x86_mmx_psll_d, // llvm.x86.mmx.psll.d
x86_mmx_psll_q, // llvm.x86.mmx.psll.q
x86_mmx_psll_w, // llvm.x86.mmx.psll.w
x86_mmx_pslli_d, // llvm.x86.mmx.pslli.d
x86_mmx_pslli_q, // llvm.x86.mmx.pslli.q
x86_mmx_pslli_w, // llvm.x86.mmx.pslli.w
x86_mmx_psra_d, // llvm.x86.mmx.psra.d
x86_mmx_psra_w, // llvm.x86.mmx.psra.w
x86_mmx_psrai_d, // llvm.x86.mmx.psrai.d
x86_mmx_psrai_w, // llvm.x86.mmx.psrai.w
x86_mmx_psrl_d, // llvm.x86.mmx.psrl.d
x86_mmx_psrl_q, // llvm.x86.mmx.psrl.q
x86_mmx_psrl_w, // llvm.x86.mmx.psrl.w
x86_mmx_psrli_d, // llvm.x86.mmx.psrli.d
x86_mmx_psrli_q, // llvm.x86.mmx.psrli.q
x86_mmx_psrli_w, // llvm.x86.mmx.psrli.w
x86_mmx_psub_b, // llvm.x86.mmx.psub.b
x86_mmx_psub_d, // llvm.x86.mmx.psub.d
x86_mmx_psub_q, // llvm.x86.mmx.psub.q
x86_mmx_psub_w, // llvm.x86.mmx.psub.w
x86_mmx_psubs_b, // llvm.x86.mmx.psubs.b
x86_mmx_psubs_w, // llvm.x86.mmx.psubs.w
x86_mmx_psubus_b, // llvm.x86.mmx.psubus.b
x86_mmx_psubus_w, // llvm.x86.mmx.psubus.w
x86_mmx_punpckhbw, // llvm.x86.mmx.punpckhbw
x86_mmx_punpckhdq, // llvm.x86.mmx.punpckhdq
x86_mmx_punpckhwd, // llvm.x86.mmx.punpckhwd
x86_mmx_punpcklbw, // llvm.x86.mmx.punpcklbw
x86_mmx_punpckldq, // llvm.x86.mmx.punpckldq
x86_mmx_punpcklwd, // llvm.x86.mmx.punpcklwd
x86_mmx_pxor, // llvm.x86.mmx.pxor
x86_monitorx, // llvm.x86.monitorx
x86_movdir64b, // llvm.x86.movdir64b
x86_mwaitx, // llvm.x86.mwaitx
x86_pclmulqdq, // llvm.x86.pclmulqdq
x86_pclmulqdq_256, // llvm.x86.pclmulqdq.256
x86_pclmulqdq_512, // llvm.x86.pclmulqdq.512
x86_ptwrite32, // llvm.x86.ptwrite32
x86_ptwrite64, // llvm.x86.ptwrite64
x86_rdfsbase_32, // llvm.x86.rdfsbase.32
x86_rdfsbase_64, // llvm.x86.rdfsbase.64
x86_rdgsbase_32, // llvm.x86.rdgsbase.32
x86_rdgsbase_64, // llvm.x86.rdgsbase.64
x86_rdpid, // llvm.x86.rdpid
x86_rdpkru, // llvm.x86.rdpkru
x86_rdpmc, // llvm.x86.rdpmc
x86_rdrand_16, // llvm.x86.rdrand.16
x86_rdrand_32, // llvm.x86.rdrand.32
x86_rdrand_64, // llvm.x86.rdrand.64
x86_rdseed_16, // llvm.x86.rdseed.16
x86_rdseed_32, // llvm.x86.rdseed.32
x86_rdseed_64, // llvm.x86.rdseed.64
x86_rdsspd, // llvm.x86.rdsspd
x86_rdsspq, // llvm.x86.rdsspq
x86_rdtsc, // llvm.x86.rdtsc
x86_rdtscp, // llvm.x86.rdtscp
x86_rstorssp, // llvm.x86.rstorssp
x86_saveprevssp, // llvm.x86.saveprevssp
x86_seh_ehguard, // llvm.x86.seh.ehguard
x86_seh_ehregnode, // llvm.x86.seh.ehregnode
x86_seh_lsda, // llvm.x86.seh.lsda
x86_setssbsy, // llvm.x86.setssbsy
x86_sha1msg1, // llvm.x86.sha1msg1
x86_sha1msg2, // llvm.x86.sha1msg2
x86_sha1nexte, // llvm.x86.sha1nexte
x86_sha1rnds4, // llvm.x86.sha1rnds4
x86_sha256msg1, // llvm.x86.sha256msg1
x86_sha256msg2, // llvm.x86.sha256msg2
x86_sha256rnds2, // llvm.x86.sha256rnds2
x86_slwpcb, // llvm.x86.slwpcb
x86_sse_cmp_ps, // llvm.x86.sse.cmp.ps
x86_sse_cmp_ss, // llvm.x86.sse.cmp.ss
x86_sse_comieq_ss, // llvm.x86.sse.comieq.ss
x86_sse_comige_ss, // llvm.x86.sse.comige.ss
x86_sse_comigt_ss, // llvm.x86.sse.comigt.ss
x86_sse_comile_ss, // llvm.x86.sse.comile.ss
x86_sse_comilt_ss, // llvm.x86.sse.comilt.ss
x86_sse_comineq_ss, // llvm.x86.sse.comineq.ss
x86_sse_cvtpd2pi, // llvm.x86.sse.cvtpd2pi
x86_sse_cvtpi2pd, // llvm.x86.sse.cvtpi2pd
x86_sse_cvtpi2ps, // llvm.x86.sse.cvtpi2ps
x86_sse_cvtps2pi, // llvm.x86.sse.cvtps2pi
x86_sse_cvtss2si, // llvm.x86.sse.cvtss2si
x86_sse_cvtss2si64, // llvm.x86.sse.cvtss2si64
x86_sse_cvttpd2pi, // llvm.x86.sse.cvttpd2pi
x86_sse_cvttps2pi, // llvm.x86.sse.cvttps2pi
x86_sse_cvttss2si, // llvm.x86.sse.cvttss2si
x86_sse_cvttss2si64, // llvm.x86.sse.cvttss2si64
x86_sse_ldmxcsr, // llvm.x86.sse.ldmxcsr
x86_sse_max_ps, // llvm.x86.sse.max.ps
x86_sse_max_ss, // llvm.x86.sse.max.ss
x86_sse_min_ps, // llvm.x86.sse.min.ps
x86_sse_min_ss, // llvm.x86.sse.min.ss
x86_sse_movmsk_ps, // llvm.x86.sse.movmsk.ps
x86_sse_pshuf_w, // llvm.x86.sse.pshuf.w
x86_sse_rcp_ps, // llvm.x86.sse.rcp.ps
x86_sse_rcp_ss, // llvm.x86.sse.rcp.ss
x86_sse_rsqrt_ps, // llvm.x86.sse.rsqrt.ps
x86_sse_rsqrt_ss, // llvm.x86.sse.rsqrt.ss
x86_sse_sfence, // llvm.x86.sse.sfence
x86_sse_stmxcsr, // llvm.x86.sse.stmxcsr
x86_sse_ucomieq_ss, // llvm.x86.sse.ucomieq.ss
x86_sse_ucomige_ss, // llvm.x86.sse.ucomige.ss
x86_sse_ucomigt_ss, // llvm.x86.sse.ucomigt.ss
x86_sse_ucomile_ss, // llvm.x86.sse.ucomile.ss
x86_sse_ucomilt_ss, // llvm.x86.sse.ucomilt.ss
x86_sse_ucomineq_ss, // llvm.x86.sse.ucomineq.ss
x86_sse2_clflush, // llvm.x86.sse2.clflush
x86_sse2_cmp_pd, // llvm.x86.sse2.cmp.pd
x86_sse2_cmp_sd, // llvm.x86.sse2.cmp.sd
x86_sse2_comieq_sd, // llvm.x86.sse2.comieq.sd
x86_sse2_comige_sd, // llvm.x86.sse2.comige.sd
x86_sse2_comigt_sd, // llvm.x86.sse2.comigt.sd
x86_sse2_comile_sd, // llvm.x86.sse2.comile.sd
x86_sse2_comilt_sd, // llvm.x86.sse2.comilt.sd
x86_sse2_comineq_sd, // llvm.x86.sse2.comineq.sd
x86_sse2_cvtpd2dq, // llvm.x86.sse2.cvtpd2dq
x86_sse2_cvtpd2ps, // llvm.x86.sse2.cvtpd2ps
x86_sse2_cvtps2dq, // llvm.x86.sse2.cvtps2dq
x86_sse2_cvtsd2si, // llvm.x86.sse2.cvtsd2si
x86_sse2_cvtsd2si64, // llvm.x86.sse2.cvtsd2si64
x86_sse2_cvtsd2ss, // llvm.x86.sse2.cvtsd2ss
x86_sse2_cvttpd2dq, // llvm.x86.sse2.cvttpd2dq
x86_sse2_cvttps2dq, // llvm.x86.sse2.cvttps2dq
x86_sse2_cvttsd2si, // llvm.x86.sse2.cvttsd2si
x86_sse2_cvttsd2si64, // llvm.x86.sse2.cvttsd2si64
x86_sse2_lfence, // llvm.x86.sse2.lfence
x86_sse2_maskmov_dqu, // llvm.x86.sse2.maskmov.dqu
x86_sse2_max_pd, // llvm.x86.sse2.max.pd
x86_sse2_max_sd, // llvm.x86.sse2.max.sd
x86_sse2_mfence, // llvm.x86.sse2.mfence
x86_sse2_min_pd, // llvm.x86.sse2.min.pd
x86_sse2_min_sd, // llvm.x86.sse2.min.sd
x86_sse2_movmsk_pd, // llvm.x86.sse2.movmsk.pd
x86_sse2_packssdw_128, // llvm.x86.sse2.packssdw.128
x86_sse2_packsswb_128, // llvm.x86.sse2.packsswb.128
x86_sse2_packuswb_128, // llvm.x86.sse2.packuswb.128
x86_sse2_pause, // llvm.x86.sse2.pause
x86_sse2_pavg_b, // llvm.x86.sse2.pavg.b
x86_sse2_pavg_w, // llvm.x86.sse2.pavg.w
x86_sse2_pmadd_wd, // llvm.x86.sse2.pmadd.wd
x86_sse2_pmovmskb_128, // llvm.x86.sse2.pmovmskb.128
x86_sse2_pmulh_w, // llvm.x86.sse2.pmulh.w
x86_sse2_pmulhu_w, // llvm.x86.sse2.pmulhu.w
x86_sse2_psad_bw, // llvm.x86.sse2.psad.bw
x86_sse2_psll_d, // llvm.x86.sse2.psll.d
x86_sse2_psll_q, // llvm.x86.sse2.psll.q
x86_sse2_psll_w, // llvm.x86.sse2.psll.w
x86_sse2_pslli_d, // llvm.x86.sse2.pslli.d
x86_sse2_pslli_q, // llvm.x86.sse2.pslli.q
x86_sse2_pslli_w, // llvm.x86.sse2.pslli.w
x86_sse2_psra_d, // llvm.x86.sse2.psra.d
x86_sse2_psra_w, // llvm.x86.sse2.psra.w
x86_sse2_psrai_d, // llvm.x86.sse2.psrai.d
x86_sse2_psrai_w, // llvm.x86.sse2.psrai.w
x86_sse2_psrl_d, // llvm.x86.sse2.psrl.d
x86_sse2_psrl_q, // llvm.x86.sse2.psrl.q
x86_sse2_psrl_w, // llvm.x86.sse2.psrl.w
x86_sse2_psrli_d, // llvm.x86.sse2.psrli.d
x86_sse2_psrli_q, // llvm.x86.sse2.psrli.q
x86_sse2_psrli_w, // llvm.x86.sse2.psrli.w
x86_sse2_ucomieq_sd, // llvm.x86.sse2.ucomieq.sd
x86_sse2_ucomige_sd, // llvm.x86.sse2.ucomige.sd
x86_sse2_ucomigt_sd, // llvm.x86.sse2.ucomigt.sd
x86_sse2_ucomile_sd, // llvm.x86.sse2.ucomile.sd
x86_sse2_ucomilt_sd, // llvm.x86.sse2.ucomilt.sd
x86_sse2_ucomineq_sd, // llvm.x86.sse2.ucomineq.sd
x86_sse3_addsub_pd, // llvm.x86.sse3.addsub.pd
x86_sse3_addsub_ps, // llvm.x86.sse3.addsub.ps
x86_sse3_hadd_pd, // llvm.x86.sse3.hadd.pd
x86_sse3_hadd_ps, // llvm.x86.sse3.hadd.ps
x86_sse3_hsub_pd, // llvm.x86.sse3.hsub.pd
x86_sse3_hsub_ps, // llvm.x86.sse3.hsub.ps
x86_sse3_ldu_dq, // llvm.x86.sse3.ldu.dq
x86_sse3_monitor, // llvm.x86.sse3.monitor
x86_sse3_mwait, // llvm.x86.sse3.mwait
x86_sse41_blendvpd, // llvm.x86.sse41.blendvpd
x86_sse41_blendvps, // llvm.x86.sse41.blendvps
x86_sse41_dppd, // llvm.x86.sse41.dppd
x86_sse41_dpps, // llvm.x86.sse41.dpps
x86_sse41_insertps, // llvm.x86.sse41.insertps
x86_sse41_mpsadbw, // llvm.x86.sse41.mpsadbw
x86_sse41_packusdw, // llvm.x86.sse41.packusdw
x86_sse41_pblendvb, // llvm.x86.sse41.pblendvb
x86_sse41_phminposuw, // llvm.x86.sse41.phminposuw
x86_sse41_ptestc, // llvm.x86.sse41.ptestc
x86_sse41_ptestnzc, // llvm.x86.sse41.ptestnzc
x86_sse41_ptestz, // llvm.x86.sse41.ptestz
x86_sse41_round_pd, // llvm.x86.sse41.round.pd
x86_sse41_round_ps, // llvm.x86.sse41.round.ps
x86_sse41_round_sd, // llvm.x86.sse41.round.sd
x86_sse41_round_ss, // llvm.x86.sse41.round.ss
x86_sse42_crc32_32_16, // llvm.x86.sse42.crc32.32.16
x86_sse42_crc32_32_32, // llvm.x86.sse42.crc32.32.32
x86_sse42_crc32_32_8, // llvm.x86.sse42.crc32.32.8
x86_sse42_crc32_64_64, // llvm.x86.sse42.crc32.64.64
x86_sse42_pcmpestri128, // llvm.x86.sse42.pcmpestri128
x86_sse42_pcmpestria128, // llvm.x86.sse42.pcmpestria128
x86_sse42_pcmpestric128, // llvm.x86.sse42.pcmpestric128
x86_sse42_pcmpestrio128, // llvm.x86.sse42.pcmpestrio128
x86_sse42_pcmpestris128, // llvm.x86.sse42.pcmpestris128
x86_sse42_pcmpestriz128, // llvm.x86.sse42.pcmpestriz128
x86_sse42_pcmpestrm128, // llvm.x86.sse42.pcmpestrm128
x86_sse42_pcmpistri128, // llvm.x86.sse42.pcmpistri128
x86_sse42_pcmpistria128, // llvm.x86.sse42.pcmpistria128
x86_sse42_pcmpistric128, // llvm.x86.sse42.pcmpistric128
x86_sse42_pcmpistrio128, // llvm.x86.sse42.pcmpistrio128
x86_sse42_pcmpistris128, // llvm.x86.sse42.pcmpistris128
x86_sse42_pcmpistriz128, // llvm.x86.sse42.pcmpistriz128
x86_sse42_pcmpistrm128, // llvm.x86.sse42.pcmpistrm128
x86_sse4a_extrq, // llvm.x86.sse4a.extrq
x86_sse4a_extrqi, // llvm.x86.sse4a.extrqi
x86_sse4a_insertq, // llvm.x86.sse4a.insertq
x86_sse4a_insertqi, // llvm.x86.sse4a.insertqi
x86_ssse3_pabs_b, // llvm.x86.ssse3.pabs.b
x86_ssse3_pabs_d, // llvm.x86.ssse3.pabs.d
x86_ssse3_pabs_w, // llvm.x86.ssse3.pabs.w
x86_ssse3_phadd_d, // llvm.x86.ssse3.phadd.d
x86_ssse3_phadd_d_128, // llvm.x86.ssse3.phadd.d.128
x86_ssse3_phadd_sw, // llvm.x86.ssse3.phadd.sw
x86_ssse3_phadd_sw_128, // llvm.x86.ssse3.phadd.sw.128
x86_ssse3_phadd_w, // llvm.x86.ssse3.phadd.w
x86_ssse3_phadd_w_128, // llvm.x86.ssse3.phadd.w.128
x86_ssse3_phsub_d, // llvm.x86.ssse3.phsub.d
x86_ssse3_phsub_d_128, // llvm.x86.ssse3.phsub.d.128
x86_ssse3_phsub_sw, // llvm.x86.ssse3.phsub.sw
x86_ssse3_phsub_sw_128, // llvm.x86.ssse3.phsub.sw.128
x86_ssse3_phsub_w, // llvm.x86.ssse3.phsub.w
x86_ssse3_phsub_w_128, // llvm.x86.ssse3.phsub.w.128
x86_ssse3_pmadd_ub_sw, // llvm.x86.ssse3.pmadd.ub.sw
x86_ssse3_pmadd_ub_sw_128, // llvm.x86.ssse3.pmadd.ub.sw.128
x86_ssse3_pmul_hr_sw, // llvm.x86.ssse3.pmul.hr.sw
x86_ssse3_pmul_hr_sw_128, // llvm.x86.ssse3.pmul.hr.sw.128
x86_ssse3_pshuf_b, // llvm.x86.ssse3.pshuf.b
x86_ssse3_pshuf_b_128, // llvm.x86.ssse3.pshuf.b.128
x86_ssse3_psign_b, // llvm.x86.ssse3.psign.b
x86_ssse3_psign_b_128, // llvm.x86.ssse3.psign.b.128
x86_ssse3_psign_d, // llvm.x86.ssse3.psign.d
x86_ssse3_psign_d_128, // llvm.x86.ssse3.psign.d.128
x86_ssse3_psign_w, // llvm.x86.ssse3.psign.w
x86_ssse3_psign_w_128, // llvm.x86.ssse3.psign.w.128
x86_subborrow_32, // llvm.x86.subborrow.32
x86_subborrow_64, // llvm.x86.subborrow.64
x86_tbm_bextri_u32, // llvm.x86.tbm.bextri.u32
x86_tbm_bextri_u64, // llvm.x86.tbm.bextri.u64
x86_tpause, // llvm.x86.tpause
x86_umonitor, // llvm.x86.umonitor
x86_umwait, // llvm.x86.umwait
x86_vcvtph2ps_128, // llvm.x86.vcvtph2ps.128
x86_vcvtph2ps_256, // llvm.x86.vcvtph2ps.256
x86_vcvtps2ph_128, // llvm.x86.vcvtps2ph.128
x86_vcvtps2ph_256, // llvm.x86.vcvtps2ph.256
x86_vgf2p8affineinvqb_128, // llvm.x86.vgf2p8affineinvqb.128
x86_vgf2p8affineinvqb_256, // llvm.x86.vgf2p8affineinvqb.256
x86_vgf2p8affineinvqb_512, // llvm.x86.vgf2p8affineinvqb.512
x86_vgf2p8affineqb_128, // llvm.x86.vgf2p8affineqb.128
x86_vgf2p8affineqb_256, // llvm.x86.vgf2p8affineqb.256
x86_vgf2p8affineqb_512, // llvm.x86.vgf2p8affineqb.512
x86_vgf2p8mulb_128, // llvm.x86.vgf2p8mulb.128
x86_vgf2p8mulb_256, // llvm.x86.vgf2p8mulb.256
x86_vgf2p8mulb_512, // llvm.x86.vgf2p8mulb.512
x86_wbinvd, // llvm.x86.wbinvd
x86_wbnoinvd, // llvm.x86.wbnoinvd
x86_wrfsbase_32, // llvm.x86.wrfsbase.32
x86_wrfsbase_64, // llvm.x86.wrfsbase.64
x86_wrgsbase_32, // llvm.x86.wrgsbase.32
x86_wrgsbase_64, // llvm.x86.wrgsbase.64
x86_wrpkru, // llvm.x86.wrpkru
x86_wrssd, // llvm.x86.wrssd
x86_wrssq, // llvm.x86.wrssq
x86_wrussd, // llvm.x86.wrussd
x86_wrussq, // llvm.x86.wrussq
x86_xabort, // llvm.x86.xabort
x86_xbegin, // llvm.x86.xbegin
x86_xend, // llvm.x86.xend
x86_xgetbv, // llvm.x86.xgetbv
x86_xop_vfrcz_pd, // llvm.x86.xop.vfrcz.pd
x86_xop_vfrcz_pd_256, // llvm.x86.xop.vfrcz.pd.256
x86_xop_vfrcz_ps, // llvm.x86.xop.vfrcz.ps
x86_xop_vfrcz_ps_256, // llvm.x86.xop.vfrcz.ps.256
x86_xop_vfrcz_sd, // llvm.x86.xop.vfrcz.sd
x86_xop_vfrcz_ss, // llvm.x86.xop.vfrcz.ss
x86_xop_vpermil2pd, // llvm.x86.xop.vpermil2pd
x86_xop_vpermil2pd_256, // llvm.x86.xop.vpermil2pd.256
x86_xop_vpermil2ps, // llvm.x86.xop.vpermil2ps
x86_xop_vpermil2ps_256, // llvm.x86.xop.vpermil2ps.256
x86_xop_vphaddbd, // llvm.x86.xop.vphaddbd
x86_xop_vphaddbq, // llvm.x86.xop.vphaddbq
x86_xop_vphaddbw, // llvm.x86.xop.vphaddbw
x86_xop_vphadddq, // llvm.x86.xop.vphadddq
x86_xop_vphaddubd, // llvm.x86.xop.vphaddubd
x86_xop_vphaddubq, // llvm.x86.xop.vphaddubq
x86_xop_vphaddubw, // llvm.x86.xop.vphaddubw
x86_xop_vphaddudq, // llvm.x86.xop.vphaddudq
x86_xop_vphadduwd, // llvm.x86.xop.vphadduwd
x86_xop_vphadduwq, // llvm.x86.xop.vphadduwq
x86_xop_vphaddwd, // llvm.x86.xop.vphaddwd
x86_xop_vphaddwq, // llvm.x86.xop.vphaddwq
x86_xop_vphsubbw, // llvm.x86.xop.vphsubbw
x86_xop_vphsubdq, // llvm.x86.xop.vphsubdq
x86_xop_vphsubwd, // llvm.x86.xop.vphsubwd
x86_xop_vpmacsdd, // llvm.x86.xop.vpmacsdd
x86_xop_vpmacsdqh, // llvm.x86.xop.vpmacsdqh
x86_xop_vpmacsdql, // llvm.x86.xop.vpmacsdql
x86_xop_vpmacssdd, // llvm.x86.xop.vpmacssdd
x86_xop_vpmacssdqh, // llvm.x86.xop.vpmacssdqh
x86_xop_vpmacssdql, // llvm.x86.xop.vpmacssdql
x86_xop_vpmacsswd, // llvm.x86.xop.vpmacsswd
x86_xop_vpmacssww, // llvm.x86.xop.vpmacssww
x86_xop_vpmacswd, // llvm.x86.xop.vpmacswd
x86_xop_vpmacsww, // llvm.x86.xop.vpmacsww
x86_xop_vpmadcsswd, // llvm.x86.xop.vpmadcsswd
x86_xop_vpmadcswd, // llvm.x86.xop.vpmadcswd
x86_xop_vpperm, // llvm.x86.xop.vpperm
x86_xop_vpshab, // llvm.x86.xop.vpshab
x86_xop_vpshad, // llvm.x86.xop.vpshad
x86_xop_vpshaq, // llvm.x86.xop.vpshaq
x86_xop_vpshaw, // llvm.x86.xop.vpshaw
x86_xop_vpshlb, // llvm.x86.xop.vpshlb
x86_xop_vpshld, // llvm.x86.xop.vpshld
x86_xop_vpshlq, // llvm.x86.xop.vpshlq
x86_xop_vpshlw, // llvm.x86.xop.vpshlw
x86_xrstor, // llvm.x86.xrstor
x86_xrstor64, // llvm.x86.xrstor64
x86_xrstors, // llvm.x86.xrstors
x86_xrstors64, // llvm.x86.xrstors64
x86_xsave, // llvm.x86.xsave
x86_xsave64, // llvm.x86.xsave64
x86_xsavec, // llvm.x86.xsavec
x86_xsavec64, // llvm.x86.xsavec64
x86_xsaveopt, // llvm.x86.xsaveopt
x86_xsaveopt64, // llvm.x86.xsaveopt64
x86_xsaves, // llvm.x86.xsaves
x86_xsaves64, // llvm.x86.xsaves64
x86_xsetbv, // llvm.x86.xsetbv
x86_xtest, // llvm.x86.xtest
xcore_bitrev, // llvm.xcore.bitrev
xcore_checkevent, // llvm.xcore.checkevent
xcore_chkct, // llvm.xcore.chkct
xcore_clre, // llvm.xcore.clre
xcore_clrpt, // llvm.xcore.clrpt
xcore_clrsr, // llvm.xcore.clrsr
xcore_crc32, // llvm.xcore.crc32
xcore_crc8, // llvm.xcore.crc8
xcore_edu, // llvm.xcore.edu
xcore_eeu, // llvm.xcore.eeu
xcore_endin, // llvm.xcore.endin
xcore_freer, // llvm.xcore.freer
xcore_geted, // llvm.xcore.geted
xcore_getet, // llvm.xcore.getet
xcore_getid, // llvm.xcore.getid
xcore_getps, // llvm.xcore.getps
xcore_getr, // llvm.xcore.getr
xcore_getst, // llvm.xcore.getst
xcore_getts, // llvm.xcore.getts
xcore_in, // llvm.xcore.in
xcore_inct, // llvm.xcore.inct
xcore_initcp, // llvm.xcore.initcp
xcore_initdp, // llvm.xcore.initdp
xcore_initlr, // llvm.xcore.initlr
xcore_initpc, // llvm.xcore.initpc
xcore_initsp, // llvm.xcore.initsp
xcore_inshr, // llvm.xcore.inshr
xcore_int, // llvm.xcore.int
xcore_mjoin, // llvm.xcore.mjoin
xcore_msync, // llvm.xcore.msync
xcore_out, // llvm.xcore.out
xcore_outct, // llvm.xcore.outct
xcore_outshr, // llvm.xcore.outshr
xcore_outt, // llvm.xcore.outt
xcore_peek, // llvm.xcore.peek
xcore_setc, // llvm.xcore.setc
xcore_setclk, // llvm.xcore.setclk
xcore_setd, // llvm.xcore.setd
xcore_setev, // llvm.xcore.setev
xcore_setps, // llvm.xcore.setps
xcore_setpsc, // llvm.xcore.setpsc
xcore_setpt, // llvm.xcore.setpt
xcore_setrdy, // llvm.xcore.setrdy
xcore_setsr, // llvm.xcore.setsr
xcore_settw, // llvm.xcore.settw
xcore_setv, // llvm.xcore.setv
xcore_sext, // llvm.xcore.sext
xcore_ssync, // llvm.xcore.ssync
xcore_syncr, // llvm.xcore.syncr
xcore_testct, // llvm.xcore.testct
xcore_testwct, // llvm.xcore.testwct
xcore_waitevent, // llvm.xcore.waitevent
xcore_zext // llvm.xcore.zext
#endif
#if defined(_MSC_VER) && defined(setjmp_undefined_for_msvc)
// let's return it to _setjmp state
# pragma pop_macro("setjmp")
# undef setjmp_undefined_for_msvc
#endif
|