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
|
; Overloaded built-in functions for PowerPC.
; Copyright (C) 2020-2025 Free Software Foundation, Inc.
; Contributed by Bill Schmidt, IBM <wschmidt@linux.ibm.com>
;
; This file is part of GCC.
;
; GCC is free software; you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free
; Software Foundation; either version 3, or (at your option) any later
; version.
;
; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
; WARRANTY; without even the implied warranty of MERCHANTABILITY or
; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
; for more details.
;
; You should have received a copy of the GNU General Public License
; along with GCC; see the file COPYING3. If not see
; <http://www.gnu.org/licenses/>.
; Overloaded built-in functions in this file are organized into "stanzas",
; where all built-ins in a given stanza have the same overloaded function
; name:
;
; [<overload-id>, <abi-name>, <builtin-name>[[, <ifdef>]] ]
;
; Here the single square brackets are part of the syntax; <overload-id>
; is a unique internal identifier for the overload that will be used as
; part of an enumeration of all overloaded functions; <abi-name> is the
; name that will appear as a #define in rs6000-vecdefines.h;
; <builtin-name> is the name that is overloaded in the back end; and
; <ifdef> is an optional token used to guard the #define with an #ifdef
; in rs6000-vecdefines.h. If no #define is desired, the <abi-name> should
; be replaced with the token SKIP.
;
; The <ifdef> token should be used sparingly, because a #define can't be
; overridden by __attribute__((target)). It is appropriate for cases
; where a target override isn't a possibility, like __PPU__.
;
; Each function entry has two lines. The first line is a prototype line.
; See rs6000-builtin-new.def for a description of the prototype line.
; A prototype line in this file differs in that it doesn't have an
; optional [kind] token:
;
; <return-type> <internal-name> (<argument-list>);
;
; The second line contains the <bif-id> that this particular instance of
; the overloaded function maps to. It must match a token that appears in
; rs6000-builtin-new.def. Optionally, a second token may appear. If only
; one token is on the line, it is also used to build the unique identifier
; for the overloaded function. If a second token is present, the second
; token is used instead for this purpose. This is necessary in cases
; where a built-in function accepts more than one type signature. It is
; common to have a built-in function that, for example, specifies a
; "vector signed char" argument, but accepts "vector unsigned char" and
; "vector bool char" as well because only the mode matters. Note that
; the overload resolution mechanism has always handled these cases by
; performing fold_convert on vector arguments to hide type mismatches,
; and it will continue to do so.
;
; As a concrete example, __builtin_altivec_mtvscr uses an opaque argument
; type for the source operand. Its built-in function id is MTVSCR. The
; overloaded function __builtin_vec_mtvscr takes a variety of specific
; types, but not all vector types. Each of these maps to the same
; __builtin_altivec_mtvscr built-in function, but the overload ID must
; be unique, so we must specify the second token as shown here.
;
;[VEC_MTVSCR, vec_mtvscr, __builtin_vec_mtvscr]
; void __builtin_vec_mtvscr (vbc);
; MTVSCR MTVSCR_VBC
; void __builtin_vec_mtvscr (vsc);
; MTVSCR MTVSCR_VSC
; ...
;
; Blank lines may be used as desired in this file between the lines as
; defined above; that is, you can introduce as many extra newlines as you
; like after a required newline, but nowhere else. Lines beginning with
; a semicolon are also treated as blank lines.
[BCDADD, __builtin_bcdadd, __builtin_vec_bcdadd]
vsq __builtin_vec_bcdadd (vsq, vsq, const int);
BCDADD_V1TI
vuc __builtin_vec_bcdadd (vuc, vuc, const int);
BCDADD_V16QI
[BCDADD_EQ, __builtin_bcdadd_eq, __builtin_vec_bcdadd_eq]
signed int __builtin_vec_bcdadd_eq (vsq, vsq, const int);
BCDADD_EQ_V1TI
signed int __builtin_vec_bcdadd_eq (vuc, vuc, const int);
BCDADD_EQ_V16QI
[BCDADD_GT, __builtin_bcdadd_gt, __builtin_vec_bcdadd_gt]
signed int __builtin_vec_bcdadd_gt (vsq, vsq, const int);
BCDADD_GT_V1TI
signed int __builtin_vec_bcdadd_gt (vuc, vuc, const int);
BCDADD_GT_V16QI
[BCDADD_LT, __builtin_bcdadd_lt, __builtin_vec_bcdadd_lt]
signed int __builtin_vec_bcdadd_lt (vsq, vsq, const int);
BCDADD_LT_V1TI
signed int __builtin_vec_bcdadd_lt (vuc, vuc, const int);
BCDADD_LT_V16QI
[BCDADD_OV, __builtin_bcdadd_ov, __builtin_vec_bcdadd_ov]
signed int __builtin_vec_bcdadd_ov (vsq, vsq, const int);
BCDADD_OV_V1TI
signed int __builtin_vec_bcdadd_ov (vuc, vuc, const int);
BCDADD_OV_V16QI
[BCDDIV10, __builtin_bcddiv10, __builtin_vec_bcddiv10]
vuc __builtin_vec_bcddiv10 (vuc);
BCDDIV10_V16QI
[BCDINVALID, __builtin_bcdinvalid, __builtin_vec_bcdinvalid]
signed int __builtin_vec_bcdinvalid (vsq);
BCDINVALID_V1TI
signed int __builtin_vec_bcdinvalid (vuc);
BCDINVALID_V16QI
[BCDMUL10, __builtin_bcdmul10, __builtin_vec_bcdmul10]
vuc __builtin_vec_bcdmul10 (vuc);
BCDMUL10_V16QI
[BCDSUB, __builtin_bcdsub, __builtin_vec_bcdsub]
vsq __builtin_vec_bcdsub (vsq, vsq, const int);
BCDSUB_V1TI
vuc __builtin_vec_bcdsub (vuc, vuc, const int);
BCDSUB_V16QI
[BCDSUB_EQ, __builtin_bcdsub_eq, __builtin_vec_bcdsub_eq]
signed int __builtin_vec_bcdsub_eq (vsq, vsq, const int);
BCDSUB_EQ_V1TI
signed int __builtin_vec_bcdsub_eq (vuc, vuc, const int);
BCDSUB_EQ_V16QI
[BCDSUB_GE, __builtin_bcdsub_ge, __builtin_vec_bcdsub_ge]
signed int __builtin_vec_bcdsub_ge (vsq, vsq, const int);
BCDSUB_GE_V1TI
signed int __builtin_vec_bcdsub_ge (vuc, vuc, const int);
BCDSUB_GE_V16QI
[BCDSUB_GT, __builtin_bcdsub_gt, __builtin_vec_bcdsub_gt]
signed int __builtin_vec_bcdsub_gt (vsq, vsq, const int);
BCDSUB_GT_V1TI
signed int __builtin_vec_bcdsub_gt (vuc, vuc, const int);
BCDSUB_GT_V16QI
[BCDSUB_LE, __builtin_bcdsub_le, __builtin_vec_bcdsub_le]
signed int __builtin_vec_bcdsub_le (vsq, vsq, const int);
BCDSUB_LE_V1TI
signed int __builtin_vec_bcdsub_le (vuc, vuc, const int);
BCDSUB_LE_V16QI
[BCDSUB_LT, __builtin_bcdsub_lt, __builtin_vec_bcdsub_lt]
signed int __builtin_vec_bcdsub_lt (vsq, vsq, const int);
BCDSUB_LT_V1TI
signed int __builtin_vec_bcdsub_lt (vuc, vuc, const int);
BCDSUB_LT_V16QI
[BCDSUB_OV, __builtin_bcdsub_ov, __builtin_vec_bcdsub_ov]
signed int __builtin_vec_bcdsub_ov (vsq, vsq, const int);
BCDSUB_OV_V1TI
signed int __builtin_vec_bcdsub_ov (vuc, vuc, const int);
BCDSUB_OV_V16QI
[BCD2DFP, __builtin_bcd2dfp, __builtin_vec_denb2dfp]
_Decimal128 __builtin_vec_denb2dfp (vuc);
DENB2DFP_V16QI
[CRYPTO_PERMXOR, SKIP, __builtin_crypto_vpermxor]
vuc __builtin_crypto_vpermxor (vuc, vuc, vuc);
VPERMXOR_V16QI
vus __builtin_crypto_vpermxor (vus, vus, vus);
VPERMXOR_V8HI
vui __builtin_crypto_vpermxor (vui, vui, vui);
VPERMXOR_V4SI
vull __builtin_crypto_vpermxor (vull, vull, vull);
VPERMXOR_V2DI
[CRYPTO_PMSUM, SKIP, __builtin_crypto_vpmsum]
vuc __builtin_crypto_vpmsum (vuc, vuc);
VPMSUMB VPMSUMB_C
vus __builtin_crypto_vpmsum (vus, vus);
VPMSUMH VPMSUMH_C
vui __builtin_crypto_vpmsum (vui, vui);
VPMSUMW VPMSUMW_C
vull __builtin_crypto_vpmsum (vull, vull);
VPMSUMD VPMSUMD_C
[SCAL_CMPB, SKIP, __builtin_cmpb]
unsigned int __builtin_cmpb (unsigned int, unsigned int);
CMPB_32
unsigned long long __builtin_cmpb (unsigned long long, unsigned long long);
CMPB
[DFPQUAN, dfp_quantize, __builtin_dfp_quantize]
_Decimal64 __builtin_dfp_quantize (_Decimal64, _Decimal64, const int);
DFPQUAN_64
_Decimal64 __builtin_dfp_quantize (const int, _Decimal64, const int);
DFPQUAN_64i
_Decimal128 __builtin_dfp_quantize (_Decimal128, _Decimal128, const int);
DFPQUAN_128
_Decimal128 __builtin_dfp_quantize (const int, _Decimal128, const int);
DFPQUAN_128i
[VEC_ABS, vec_abs, __builtin_vec_abs]
vsc __builtin_vec_abs (vsc);
ABS_V16QI
vss __builtin_vec_abs (vss);
ABS_V8HI
vsi __builtin_vec_abs (vsi);
ABS_V4SI
vsll __builtin_vec_abs (vsll);
ABS_V2DI
vf __builtin_vec_abs (vf);
ABS_V4SF
vd __builtin_vec_abs (vd);
XVABSDP
[VEC_ABSD, vec_absd, __builtin_vec_vadu]
vuc __builtin_vec_vadu (vuc, vuc);
VADUB
vus __builtin_vec_vadu (vus, vus);
VADUH
vui __builtin_vec_vadu (vui, vui);
VADUW
[VEC_ABSS, vec_abss, __builtin_vec_abss]
vsc __builtin_vec_abss (vsc);
ABSS_V16QI
vss __builtin_vec_abss (vss);
ABSS_V8HI
vsi __builtin_vec_abss (vsi);
ABSS_V4SI
[VEC_ADD, vec_add, __builtin_vec_add]
vsc __builtin_vec_add (vsc, vsc);
VADDUBM VADDUBM_VSC
vuc __builtin_vec_add (vuc, vuc);
VADDUBM VADDUBM_VUC
vss __builtin_vec_add (vss, vss);
VADDUHM VADDUHM_VSS
vus __builtin_vec_add (vus, vus);
VADDUHM VADDUHM_VUS
vsi __builtin_vec_add (vsi, vsi);
VADDUWM VADDUWM_VSI
vui __builtin_vec_add (vui, vui);
VADDUWM VADDUWM_VUI
vsll __builtin_vec_add (vsll, vsll);
VADDUDM VADDUDM_VSLL
vull __builtin_vec_add (vull, vull);
VADDUDM VADDUDM_VULL
vsq __builtin_vec_add (vsq, vsq);
VADDUQM VADDUQM_VSQ
vuq __builtin_vec_add (vuq, vuq);
VADDUQM VADDUQM_VUQ
vf __builtin_vec_add (vf, vf);
VADDFP
vd __builtin_vec_add (vd, vd);
XVADDDP
; The following variants are deprecated.
vsc __builtin_vec_add (vbc, vsc);
VADDUBM VADDUBM_VBC_VSC
vsc __builtin_vec_add (vsc, vbc);
VADDUBM VADDUBM_VSC_VBC
vuc __builtin_vec_add (vbc, vuc);
VADDUBM VADDUBM_VBC_VUC
vuc __builtin_vec_add (vuc, vbc);
VADDUBM VADDUBM_VUC_VBC
vss __builtin_vec_add (vbs, vss);
VADDUHM VADDUHM_VBS_VSS
vss __builtin_vec_add (vss, vbs);
VADDUHM VADDUHM_VSS_VBS
vus __builtin_vec_add (vbs, vus);
VADDUHM VADDUHM_VBS_VUS
vus __builtin_vec_add (vus, vbs);
VADDUHM VADDUHM_VUS_VBS
vsi __builtin_vec_add (vbi, vsi);
VADDUWM VADDUWM_VBI_VSI
vsi __builtin_vec_add (vsi, vbi);
VADDUWM VADDUWM_VSI_VBI
vui __builtin_vec_add (vbi, vui);
VADDUWM VADDUWM_VBI_VUI
vui __builtin_vec_add (vui, vbi);
VADDUWM VADDUWM_VUI_VBI
vsll __builtin_vec_add (vbll, vsll);
VADDUDM VADDUDM_VBLL_VSLL
vsll __builtin_vec_add (vsll, vbll);
VADDUDM VADDUDM_VSLL_VBLL
vull __builtin_vec_add (vbll, vull);
VADDUDM VADDUDM_VBLL_VULL
vull __builtin_vec_add (vull, vbll);
VADDUDM VADDUDM_VULL_VBLL
[VEC_ADDC, vec_addc, __builtin_vec_addc]
vsi __builtin_vec_addc (vsi, vsi);
VADDCUW VADDCUW_VSI
vui __builtin_vec_addc (vui, vui);
VADDCUW VADDCUW_VUI
vsq __builtin_vec_addc (vsq, vsq);
VADDCUQ VADDCUQ_VSQ
vuq __builtin_vec_addc (vuq, vuq);
VADDCUQ VADDCUQ_VUQ
; TODO: Note that the entry for VEC_ADDE currently gets ignored in
; altivec_resolve_overloaded_builtin. Revisit whether we can remove
; that. We still need to register the legal builtin forms here.
[VEC_ADDE, vec_adde, __builtin_vec_adde]
vsq __builtin_vec_adde (vsq, vsq, vsq);
VADDEUQM VADDEUQM_VSQ
vuq __builtin_vec_adde (vuq, vuq, vuq);
VADDEUQM VADDEUQM_VUQ
; TODO: Note that the entry for VEC_ADDEC currently gets ignored in
; altivec_resolve_overloaded_builtin. Revisit whether we can remove
; that. We still need to register the legal builtin forms here.
[VEC_ADDEC, vec_addec, __builtin_vec_addec]
vsq __builtin_vec_addec (vsq, vsq, vsq);
VADDECUQ VADDECUQ_VSQ
vuq __builtin_vec_addec (vuq, vuq, vuq);
VADDECUQ VADDECUQ_VUQ
[VEC_ADDS, vec_adds, __builtin_vec_adds]
vuc __builtin_vec_adds (vuc, vuc);
VADDUBS
vsc __builtin_vec_adds (vsc, vsc);
VADDSBS
vus __builtin_vec_adds (vus, vus);
VADDUHS
vss __builtin_vec_adds (vss, vss);
VADDSHS
vui __builtin_vec_adds (vui, vui);
VADDUWS
vsi __builtin_vec_adds (vsi, vsi);
VADDSWS
; The following variants are deprecated.
vuc __builtin_vec_adds (vbc, vuc);
VADDUBS VADDUBS_BU
vuc __builtin_vec_adds (vuc, vbc);
VADDUBS VADDUBS_UB
vsc __builtin_vec_adds (vbc, vsc);
VADDSBS VADDSBS_BS
vsc __builtin_vec_adds (vsc, vbc);
VADDSBS VADDSBS_SB
vus __builtin_vec_adds (vbs, vus);
VADDUHS VADDUHS_BU
vus __builtin_vec_adds (vus, vbs);
VADDUHS VADDUHS_UB
vss __builtin_vec_adds (vbs, vss);
VADDSHS VADDSHS_BS
vss __builtin_vec_adds (vss, vbs);
VADDSHS VADDSHS_SB
vui __builtin_vec_adds (vbi, vui);
VADDUWS VADDUWS_BU
vui __builtin_vec_adds (vui, vbi);
VADDUWS VADDUWS_UB
vsi __builtin_vec_adds (vbi, vsi);
VADDSWS VADDSWS_BS
vsi __builtin_vec_adds (vsi, vbi);
VADDSWS VADDSWS_SB
[VEC_AND, vec_and, __builtin_vec_and]
vsc __builtin_vec_and (vsc, vsc);
VAND_V16QI
vuc __builtin_vec_and (vuc, vuc);
VAND_V16QI_UNS VAND_VUC
vbc __builtin_vec_and (vbc, vbc);
VAND_V16QI_UNS VAND_VBC
vss __builtin_vec_and (vss, vss);
VAND_V8HI
vus __builtin_vec_and (vus, vus);
VAND_V8HI_UNS VAND_VUS
vbs __builtin_vec_and (vbs, vbs);
VAND_V8HI_UNS VAND_VBS
vsi __builtin_vec_and (vsi, vsi);
VAND_V4SI
vui __builtin_vec_and (vui, vui);
VAND_V4SI_UNS VAND_VUI
vbi __builtin_vec_and (vbi, vbi);
VAND_V4SI_UNS VAND_VBI
vsll __builtin_vec_and (vsll, vsll);
VAND_V2DI
vull __builtin_vec_and (vull, vull);
VAND_V2DI_UNS VAND_VULL
vbll __builtin_vec_and (vbll, vbll);
VAND_V2DI_UNS VAND_VBLL
vf __builtin_vec_and (vf, vf);
VAND_V4SF
vd __builtin_vec_and (vd, vd);
VAND_V2DF
; The following variants are deprecated.
vsc __builtin_vec_and (vsc, vbc);
VAND_V16QI VAND_VSC_VBC
vsc __builtin_vec_and (vbc, vsc);
VAND_V16QI VAND_VBC_VSC
vuc __builtin_vec_and (vuc, vbc);
VAND_V16QI_UNS VAND_VUC_VBC
vuc __builtin_vec_and (vbc, vuc);
VAND_V16QI_UNS VAND_VBC_VUC
vss __builtin_vec_and (vss, vbs);
VAND_V8HI VAND_VSS_VBS
vss __builtin_vec_and (vbs, vss);
VAND_V8HI VAND_VBS_VSS
vus __builtin_vec_and (vus, vbs);
VAND_V8HI_UNS VAND_VUS_VBS
vus __builtin_vec_and (vbs, vus);
VAND_V8HI_UNS VAND_VBS_VUS
vsi __builtin_vec_and (vsi, vbi);
VAND_V4SI VAND_VSI_VBI
vsi __builtin_vec_and (vbi, vsi);
VAND_V4SI VAND_VBI_VSI
vui __builtin_vec_and (vui, vbi);
VAND_V4SI_UNS VAND_VUI_VBI
vui __builtin_vec_and (vbi, vui);
VAND_V4SI_UNS VAND_VBI_VUI
vsll __builtin_vec_and (vsll, vbll);
VAND_V2DI VAND_VSLL_VBLL
vsll __builtin_vec_and (vbll, vsll);
VAND_V2DI VAND_VBLL_VSLL
vull __builtin_vec_and (vull, vbll);
VAND_V2DI_UNS VAND_VULL_VBLL
vull __builtin_vec_and (vbll, vull);
VAND_V2DI_UNS VAND_VBLL_VULL
vf __builtin_vec_and (vf, vbi);
VAND_V4SF VAND_VF_VBI
vf __builtin_vec_and (vbi, vf);
VAND_V4SF VAND_VBI_VF
vd __builtin_vec_and (vd, vbll);
VAND_V2DF VAND_VD_VBLL
vd __builtin_vec_and (vbll, vd);
VAND_V2DF VAND_VBLL_VD
[VEC_ANDC, vec_andc, __builtin_vec_andc]
vbc __builtin_vec_andc (vbc, vbc);
VANDC_V16QI_UNS VANDC_VBC
vsc __builtin_vec_andc (vsc, vsc);
VANDC_V16QI
vuc __builtin_vec_andc (vuc, vuc);
VANDC_V16QI_UNS VANDC_VUC
vbs __builtin_vec_andc (vbs, vbs);
VANDC_V8HI_UNS VANDC_VBS
vss __builtin_vec_andc (vss, vss);
VANDC_V8HI
vus __builtin_vec_andc (vus, vus);
VANDC_V8HI_UNS VANDC_VUS
vbi __builtin_vec_andc (vbi, vbi);
VANDC_V4SI_UNS VANDC_VBI
vsi __builtin_vec_andc (vsi, vsi);
VANDC_V4SI
vui __builtin_vec_andc (vui, vui);
VANDC_V4SI_UNS VANDC_VUI
vbll __builtin_vec_andc (vbll, vbll);
VANDC_V2DI_UNS VANDC_VBLL
vsll __builtin_vec_andc (vsll, vsll);
VANDC_V2DI
vull __builtin_vec_andc (vull, vull);
VANDC_V2DI_UNS VANDC_VULL
vf __builtin_vec_andc (vf, vf);
VANDC_V4SF
vd __builtin_vec_andc (vd, vd);
VANDC_V2DF
; The following variants are deprecated.
vsc __builtin_vec_andc (vsc, vbc);
VANDC_V16QI VANDC_VSC_VBC
vsc __builtin_vec_andc (vbc, vsc);
VANDC_V16QI VANDC_VBC_VSC
vuc __builtin_vec_andc (vuc, vbc);
VANDC_V16QI_UNS VANDC_VUC_VBC
vuc __builtin_vec_andc (vbc, vuc);
VANDC_V16QI_UNS VANDC_VBC_VUC
vss __builtin_vec_andc (vss, vbs);
VANDC_V8HI VANDC_VSS_VBS
vss __builtin_vec_andc (vbs, vss);
VANDC_V8HI VANDC_VBS_VSS
vus __builtin_vec_andc (vus, vbs);
VANDC_V8HI_UNS VANDC_VUS_VBS
vus __builtin_vec_andc (vbs, vus);
VANDC_V8HI_UNS VANDC_VBS_VUS
vsi __builtin_vec_andc (vsi, vbi);
VANDC_V4SI VANDC_VSI_VBI
vsi __builtin_vec_andc (vbi, vsi);
VANDC_V4SI VANDC_VBI_VSI
vui __builtin_vec_andc (vui, vbi);
VANDC_V4SI_UNS VANDC_VUI_VBI
vui __builtin_vec_andc (vbi, vui);
VANDC_V4SI_UNS VANDC_VBI_VUI
vsll __builtin_vec_andc (vsll, vbll);
VANDC_V2DI VANDC_VSLL_VBLL
vsll __builtin_vec_andc (vbll, vsll);
VANDC_V2DI VANDC_VBLL_VSLL
vull __builtin_vec_andc (vull, vbll);
VANDC_V2DI_UNS VANDC_VULL_VBLL
vull __builtin_vec_andc (vbll, vull);
VANDC_V2DI_UNS VANDC_VBLL_VULL
vf __builtin_vec_andc (vf, vbi);
VANDC_V4SF VANDC_VF_VBI
vf __builtin_vec_andc (vbi, vf);
VANDC_V4SF VANDC_VBI_VF
vd __builtin_vec_andc (vd, vbll);
VANDC_V2DF VANDC_VD_VBLL
vd __builtin_vec_andc (vbll, vd);
VANDC_V2DF VANDC_VBLL_VD
[VEC_AVG, vec_avg, __builtin_vec_avg]
vsc __builtin_vec_avg (vsc, vsc);
VAVGSB
vuc __builtin_vec_avg (vuc, vuc);
VAVGUB
vss __builtin_vec_avg (vss, vss);
VAVGSH
vus __builtin_vec_avg (vus, vus);
VAVGUH
vsi __builtin_vec_avg (vsi, vsi);
VAVGSW
vui __builtin_vec_avg (vui, vui);
VAVGUW
[VEC_BLENDV, vec_blendv, __builtin_vec_xxblend]
vsc __builtin_vec_xxblend (vsc, vsc, vuc);
VXXBLEND_V16QI VXXBLEND_VSC
vuc __builtin_vec_xxblend (vuc, vuc, vuc);
VXXBLEND_V16QI VXXBLEND_VUC
vss __builtin_vec_xxblend (vss, vss, vus);
VXXBLEND_V8HI VXXBLEND_VSS
vus __builtin_vec_xxblend (vus, vus, vus);
VXXBLEND_V8HI VXXBLEND_VUS
vsi __builtin_vec_xxblend (vsi, vsi, vui);
VXXBLEND_V4SI VXXBLEND_VSI
vui __builtin_vec_xxblend (vui, vui, vui);
VXXBLEND_V4SI VXXBLEND_VUI
vsll __builtin_vec_xxblend (vsll, vsll, vull);
VXXBLEND_V2DI VXXBLEND_VSLL
vull __builtin_vec_xxblend (vull, vull, vull);
VXXBLEND_V2DI VXXBLEND_VULL
vf __builtin_vec_xxblend (vf, vf, vui);
VXXBLEND_V4SF
vd __builtin_vec_xxblend (vd, vd, vull);
VXXBLEND_V2DF
[VEC_BPERM, vec_bperm, __builtin_vec_vbperm_api]
vull __builtin_vec_vbperm_api (vull, vuc);
VBPERMD VBPERMD_VULL
vull __builtin_vec_vbperm_api (vuq, vuc);
VBPERMQ VBPERMQ_VUQ
vuc __builtin_vec_vbperm_api (vuc, vuc);
VBPERMQ2 VBPERMQ2_U
vsc __builtin_vec_vbperm_api (vsc, vsc);
VBPERMQ2 VBPERMQ2_S
[VEC_CEIL, vec_ceil, __builtin_vec_ceil]
vf __builtin_vec_ceil (vf);
VRFIP
vd __builtin_vec_ceil (vd);
XVRDPIP
[VEC_CFUGE, vec_cfuge, __builtin_vec_cfuge]
vull __builtin_vec_cfuge (vull, vull);
VCFUGED
[VEC_CIPHER_BE, vec_cipher_be, __builtin_vec_vcipher_be]
vuc __builtin_vec_vcipher_be (vuc, vuc);
VCIPHER_BE
[VEC_CIPHERLAST_BE, vec_cipherlast_be, __builtin_vec_vcipherlast_be]
vuc __builtin_vec_vcipherlast_be (vuc, vuc);
VCIPHERLAST_BE
[VEC_CLRL, vec_clrl, __builtin_vec_clrl]
vsc __builtin_vec_clrl (vsc, unsigned int);
VCLRLB VCLRLB_S
vuc __builtin_vec_clrl (vuc, unsigned int);
VCLRLB VCLRLB_U
[VEC_CLRR, vec_clrr, __builtin_vec_clrr]
vsc __builtin_vec_clrr (vsc, unsigned int);
VCLRRB VCLRRB_S
vuc __builtin_vec_clrr (vuc, unsigned int);
VCLRRB VCLRRB_U
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
[VEC_CMPAE_P, SKIP, __builtin_vec_vcmpae_p]
signed int __builtin_vec_vcmpae_p (vsc, vsc);
VCMPAEB_P VCMPAEB_VSC_P
signed int __builtin_vec_vcmpae_p (vuc, vuc);
VCMPAEB_P VCMPAEB_VUC_P
signed int __builtin_vec_vcmpae_p (vbc, vbc);
VCMPAEB_P VCMPAEB_VBC_P
signed int __builtin_vec_vcmpae_p (vss, vss);
VCMPAEH_P VCMPAEH_VSS_P
signed int __builtin_vec_vcmpae_p (vus, vus);
VCMPAEH_P VCMPAEH_VUS_P
signed int __builtin_vec_vcmpae_p (vbs, vbs);
VCMPAEH_P VCMPAEH_VBS_P
signed int __builtin_vec_vcmpae_p (vp, vp);
VCMPAEH_P VCMPAEH_VP_P
signed int __builtin_vec_vcmpae_p (vsi, vsi);
VCMPAEW_P VCMPAEW_VSI_P
signed int __builtin_vec_vcmpae_p (vui, vui);
VCMPAEW_P VCMPAEW_VUI_P
signed int __builtin_vec_vcmpae_p (vbi, vbi);
VCMPAEW_P VCMPAEW_VBI_P
signed int __builtin_vec_vcmpae_p (vsll, vsll);
VCMPAED_P VCMPAED_VSLL_P
signed int __builtin_vec_vcmpae_p (vull, vull);
VCMPAED_P VCMPAED_VULL_P
signed int __builtin_vec_vcmpae_p (vbll, vbll);
VCMPAED_P VCMPAED_VBLL_P
signed int __builtin_vec_vcmpae_p (vsq, vsq);
VCMPAET_P VCMPAET_VSQ_P
signed int __builtin_vec_vcmpae_p (vuq, vuq);
VCMPAET_P VCMPAET_VUQ_P
signed int __builtin_vec_vcmpae_p (vf, vf);
VCMPAEFP_P
signed int __builtin_vec_vcmpae_p (vd, vd);
VCMPAEDP_P
; The following variants are deprecated.
signed int __builtin_vec_vcmpae_p (signed int, vbc, vuc);
VCMPAEB_P VCMPAEB_P_BU
signed int __builtin_vec_vcmpae_p (signed int, vuc, vbc);
VCMPAEB_P VCMPAEB_P_UB
signed int __builtin_vec_vcmpae_p (signed int, vbc, vsc);
VCMPAEB_P VCMPAEB_P_BS
signed int __builtin_vec_vcmpae_p (signed int, vsc, vbc);
VCMPAEB_P VCMPAEB_P_SB
signed int __builtin_vec_vcmpae_p (signed int, vbs, vus);
VCMPAEH_P VCMPAEH_P_BU
signed int __builtin_vec_vcmpae_p (signed int, vus, vbs);
VCMPAEH_P VCMPAEH_P_UB
signed int __builtin_vec_vcmpae_p (signed int, vbs, vss);
VCMPAEH_P VCMPAEH_P_BS
signed int __builtin_vec_vcmpae_p (signed int, vss, vbs);
VCMPAEH_P VCMPAEH_P_SB
signed int __builtin_vec_vcmpae_p (signed int, vbi, vui);
VCMPAEW_P VCMPAEW_P_BU
signed int __builtin_vec_vcmpae_p (signed int, vui, vbi);
VCMPAEW_P VCMPAEW_P_UB
signed int __builtin_vec_vcmpae_p (signed int, vbi, vsi);
VCMPAEW_P VCMPAEW_P_BS
signed int __builtin_vec_vcmpae_p (signed int, vsi, vbi);
VCMPAEW_P VCMPAEW_P_SB
signed int __builtin_vec_vcmpae_p (signed int, vbll, vull);
VCMPAED_P VCMPAED_P_BU
signed int __builtin_vec_vcmpae_p (signed int, vull, vbll);
VCMPAED_P VCMPAED_P_UB
signed int __builtin_vec_vcmpae_p (signed int, vbll, vsll);
VCMPAED_P VCMPAED_P_BS
signed int __builtin_vec_vcmpae_p (signed int, vbll, vsll);
VCMPAED_P VCMPAED_P_SB
[VEC_CMPB, vec_cmpb, __builtin_vec_cmpb]
vsi __builtin_vec_cmpb (vf, vf);
VCMPBFP
[VEC_CMPEQ, vec_cmpeq, __builtin_vec_cmpeq]
vbc __builtin_vec_cmpeq (vsc, vsc);
VCMPEQUB VCMPEQUB_VSC
vbc __builtin_vec_cmpeq (vuc, vuc);
VCMPEQUB VCMPEQUB_VUC
vbc __builtin_vec_cmpeq (vbc, vbc);
VCMPEQUB VCMPEQUB_VBC
vbs __builtin_vec_cmpeq (vss, vss);
VCMPEQUH VCMPEQUH_VSS
vbs __builtin_vec_cmpeq (vus, vus);
VCMPEQUH VCMPEQUH_VUS
vbs __builtin_vec_cmpeq (vbs, vbs);
VCMPEQUH VCMPEQUH_VBS
vbi __builtin_vec_cmpeq (vsi, vsi);
VCMPEQUW VCMPEQUW_VSI
vbi __builtin_vec_cmpeq (vui, vui);
VCMPEQUW VCMPEQUW_VUI
vbi __builtin_vec_cmpeq (vbi, vbi);
VCMPEQUW VCMPEQUW_VBI
vbll __builtin_vec_cmpeq (vsll, vsll);
VCMPEQUD VCMPEQUD_VSLL
vbll __builtin_vec_cmpeq (vull, vull);
VCMPEQUD VCMPEQUD_VULL
vbll __builtin_vec_cmpeq (vbll, vbll);
VCMPEQUD VCMPEQUD_VBLL
vbq __builtin_vec_cmpeq (vsq, vsq);
VCMPEQUT VCMPEQUT_VSQ
vbq __builtin_vec_cmpeq (vuq, vuq);
VCMPEQUT VCMPEQUT_VUQ
vbi __builtin_vec_cmpeq (vf, vf);
VCMPEQFP
vbll __builtin_vec_cmpeq (vd, vd);
XVCMPEQDP
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
[VEC_CMPEQ_P, SKIP, __builtin_vec_vcmpeq_p]
signed int __builtin_vec_vcmpeq_p (signed int, vuc, vuc);
VCMPEQUB_P VCMPEQUB_PU
signed int __builtin_vec_vcmpeq_p (signed int, vsc, vsc);
VCMPEQUB_P VCMPEQUB_PS
signed int __builtin_vec_vcmpeq_p (signed int, vbc, vbc);
VCMPEQUB_P VCMPEQUB_PB
signed int __builtin_vec_vcmpeq_p (signed int, vus, vus);
VCMPEQUH_P VCMPEQUH_PU
signed int __builtin_vec_vcmpeq_p (signed int, vss, vss);
VCMPEQUH_P VCMPEQUH_PS
signed int __builtin_vec_vcmpeq_p (signed int, vbs, vbs);
VCMPEQUH_P VCMPEQUH_PB
signed int __builtin_vec_vcmpeq_p (signed int, vp, vp);
VCMPEQUH_P VCMPEQUH_PP
signed int __builtin_vec_vcmpeq_p (signed int, vui, vui);
VCMPEQUW_P VCMPEQUW_PU
signed int __builtin_vec_vcmpeq_p (signed int, vsi, vsi);
VCMPEQUW_P VCMPEQUW_PS
signed int __builtin_vec_vcmpeq_p (signed int, vbi, vbi);
VCMPEQUW_P VCMPEQUW_PB
signed int __builtin_vec_vcmpeq_p (signed int, vull, vull);
VCMPEQUD_P VCMPEQUD_PU
signed int __builtin_vec_vcmpeq_p (signed int, vsll, vsll);
VCMPEQUD_P VCMPEQUD_PS
signed int __builtin_vec_vcmpeq_p (signed int, vbll, vbll);
VCMPEQUD_P VCMPEQUD_PB
signed int __builtin_vec_vcmpeq_p (signed int, vsq, vsq);
VCMPEQUT_P VCMPEQUT_P_VSQ
signed int __builtin_vec_vcmpeq_p (signed int, vuq, vuq);
VCMPEQUT_P VCMPEQUT_P_VUQ
signed int __builtin_vec_vcmpeq_p (signed int, vf, vf);
VCMPEQFP_P
signed int __builtin_vec_vcmpeq_p (signed int, vd, vd);
XVCMPEQDP_P
; The following variants are deprecated.
signed int __builtin_vec_vcmpeq_p (signed int, vbc, vuc);
VCMPEQUB_P VCMPEQUB_P_BU
signed int __builtin_vec_vcmpeq_p (signed int, vuc, vbc);
VCMPEQUB_P VCMPEQUB_P_UB
signed int __builtin_vec_vcmpeq_p (signed int, vbc, vsc);
VCMPEQUB_P VCMPEQUB_P_BS
signed int __builtin_vec_vcmpeq_p (signed int, vsc, vbc);
VCMPEQUB_P VCMPEQUB_P_SB
signed int __builtin_vec_vcmpeq_p (signed int, vbs, vus);
VCMPEQUH_P VCMPEQUH_P_BU
signed int __builtin_vec_vcmpeq_p (signed int, vus, vbs);
VCMPEQUH_P VCMPEQUH_P_UB
signed int __builtin_vec_vcmpeq_p (signed int, vbs, vss);
VCMPEQUH_P VCMPEQUH_P_BS
signed int __builtin_vec_vcmpeq_p (signed int, vss, vbs);
VCMPEQUH_P VCMPEQUH_P_SB
signed int __builtin_vec_vcmpeq_p (signed int, vbi, vui);
VCMPEQUW_P VCMPEQUW_P_BU
signed int __builtin_vec_vcmpeq_p (signed int, vui, vbi);
VCMPEQUW_P VCMPEQUW_P_UB
signed int __builtin_vec_vcmpeq_p (signed int, vbi, vsi);
VCMPEQUW_P VCMPEQUW_P_BS
signed int __builtin_vec_vcmpeq_p (signed int, vsi, vbi);
VCMPEQUW_P VCMPEQUW_P_SB
signed int __builtin_vec_vcmpeq_p (signed int, vbll, vull);
VCMPEQUD_P VCMPEQUD_P_BU
signed int __builtin_vec_vcmpeq_p (signed int, vull, vbll);
VCMPEQUD_P VCMPEQUD_P_UB
signed int __builtin_vec_vcmpeq_p (signed int, vbll, vsll);
VCMPEQUD_P VCMPEQUD_P_BS
signed int __builtin_vec_vcmpeq_p (signed int, vbll, vsll);
VCMPEQUD_P VCMPEQUD_P_SB
[VEC_CMPEQB, SKIP, __builtin_byte_in_set]
signed int __builtin_byte_in_set (unsigned int, unsigned long long);
CMPEQB
[VEC_CMPGE, vec_cmpge, __builtin_vec_cmpge]
vbc __builtin_vec_cmpge (vsc, vsc);
CMPGE_16QI CMPGE_16QI_VSC
vbc __builtin_vec_cmpge (vuc, vuc);
CMPGE_U16QI CMPGE_16QI_VUC
vbs __builtin_vec_cmpge (vss, vss);
CMPGE_8HI CMPGE_8HI_VSS
vbs __builtin_vec_cmpge (vus, vus);
CMPGE_U8HI CMPGE_8HI_VUS
vbi __builtin_vec_cmpge (vsi, vsi);
CMPGE_4SI CMPGE_4SI_VSI
vbi __builtin_vec_cmpge (vui, vui);
CMPGE_U4SI CMPGE_4SI_VUI
vbll __builtin_vec_cmpge (vsll, vsll);
CMPGE_2DI CMPGE_2DI_VSLL
vbll __builtin_vec_cmpge (vull, vull);
CMPGE_U2DI CMPGE_2DI_VULL
vbq __builtin_vec_cmpge (vsq, vsq);
CMPGE_1TI
vbq __builtin_vec_cmpge (vuq, vuq);
CMPGE_U1TI
vbi __builtin_vec_cmpge (vf, vf);
VCMPGEFP
vbll __builtin_vec_cmpge (vd, vd);
XVCMPGEDP
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
; See altivec_build_resolved_builtin for how we deal with VEC_CMPGE_P.
; It's quite strange and horrible!
[VEC_CMPGE_P, SKIP, __builtin_vec_vcmpge_p]
signed int __builtin_vec_vcmpge_p (signed int, vuc, vuc);
VCMPGTUB_P VCMPGTUB_PR
signed int __builtin_vec_vcmpge_p (signed int, vsc, vsc);
VCMPGTSB_P VCMPGTSB_PR
signed int __builtin_vec_vcmpge_p (signed int, vus, vus);
VCMPGTUH_P VCMPGTUH_PR
signed int __builtin_vec_vcmpge_p (signed int, vss, vss);
VCMPGTSH_P VCMPGTSH_PR
signed int __builtin_vec_vcmpge_p (signed int, vui, vui);
VCMPGTUW_P VCMPGTUW_PR
signed int __builtin_vec_vcmpge_p (signed int, vsi, vsi);
VCMPGTSW_P VCMPGTSW_PR
signed int __builtin_vec_vcmpge_p (signed int, vull, vull);
VCMPGTUD_P VCMPGTUD_PR
signed int __builtin_vec_vcmpge_p (signed int, vsll, vsll);
VCMPGTSD_P VCMPGTSD_PR
signed int __builtin_vec_vcmpge_p (signed int, vuq, vuq);
VCMPGTUT_P VCMPGTUT_PR
signed int __builtin_vec_vcmpge_p (signed int, vsq, vsq);
VCMPGTST_P VCMPGTST_PR
signed int __builtin_vec_vcmpge_p (signed int, vf, vf);
VCMPGEFP_P
signed int __builtin_vec_vcmpge_p (signed int, vd, vd);
XVCMPGEDP_P
; The following variants are deprecated.
signed int __builtin_vec_vcmpge_p (signed int, vbc, vuc);
VCMPGTUB_P VCMPGTUB_PR_BU
signed int __builtin_vec_vcmpge_p (signed int, vuc, vbc);
VCMPGTUB_P VCMPGTUB_PR_UB
signed int __builtin_vec_vcmpge_p (signed int, vbc, vsc);
VCMPGTSB_P VCMPGTSB_PR_BS
signed int __builtin_vec_vcmpge_p (signed int, vsc, vbc);
VCMPGTSB_P VCMPGTSB_PR_SB
signed int __builtin_vec_vcmpge_p (signed int, vbs, vus);
VCMPGTUH_P VCMPGTUH_PR_BU
signed int __builtin_vec_vcmpge_p (signed int, vus, vbs);
VCMPGTUH_P VCMPGTUH_PR_UB
signed int __builtin_vec_vcmpge_p (signed int, vbs, vss);
VCMPGTSH_P VCMPGTSH_PR_BS
signed int __builtin_vec_vcmpge_p (signed int, vss, vbs);
VCMPGTSH_P VCMPGTSH_PR_SB
signed int __builtin_vec_vcmpge_p (signed int, vbi, vui);
VCMPGTUW_P VCMPGTUW_PR_BU
signed int __builtin_vec_vcmpge_p (signed int, vui, vbi);
VCMPGTUW_P VCMPGTUW_PR_UB
signed int __builtin_vec_vcmpge_p (signed int, vbi, vsi);
VCMPGTSW_P VCMPGTSW_PR_BS
signed int __builtin_vec_vcmpge_p (signed int, vsi, vbi);
VCMPGTSW_P VCMPGTSW_PR_SB
signed int __builtin_vec_vcmpge_p (signed int, vbll, vull);
VCMPGTUD_P VCMPGTUD_PR_BU
signed int __builtin_vec_vcmpge_p (signed int, vull, vbll);
VCMPGTUD_P VCMPGTUD_PR_UB
signed int __builtin_vec_vcmpge_p (signed int, vbll, vsll);
VCMPGTSD_P VCMPGTSD_PR_BS
signed int __builtin_vec_vcmpge_p (signed int, vsll, vbll);
VCMPGTSD_P VCMPGTSD_PR_SB
[VEC_CMPGT, vec_cmpgt, __builtin_vec_cmpgt]
vbc __builtin_vec_cmpgt (vsc, vsc);
VCMPGTSB
vbc __builtin_vec_cmpgt (vuc, vuc);
VCMPGTUB
vbs __builtin_vec_cmpgt (vss, vss);
VCMPGTSH
vbs __builtin_vec_cmpgt (vus, vus);
VCMPGTUH
vbi __builtin_vec_cmpgt (vsi, vsi);
VCMPGTSW
vbi __builtin_vec_cmpgt (vui, vui);
VCMPGTUW
vbll __builtin_vec_cmpgt (vsll, vsll);
VCMPGTSD
vbll __builtin_vec_cmpgt (vull, vull);
VCMPGTUD
vbq __builtin_vec_cmpgt (vsq, vsq);
VCMPGTST
vbq __builtin_vec_cmpgt (vuq, vuq);
VCMPGTUT
vbi __builtin_vec_cmpgt (vf, vf);
VCMPGTFP
vbll __builtin_vec_cmpgt (vd, vd);
XVCMPGTDP
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
[VEC_CMPGT_P, SKIP, __builtin_vec_vcmpgt_p]
signed int __builtin_vec_vcmpgt_p (signed int, vuc, vuc);
VCMPGTUB_P
signed int __builtin_vec_vcmpgt_p (signed int, vsc, vsc);
VCMPGTSB_P
signed int __builtin_vec_vcmpgt_p (signed int, vus, vus);
VCMPGTUH_P
signed int __builtin_vec_vcmpgt_p (signed int, vss, vss);
VCMPGTSH_P
signed int __builtin_vec_vcmpgt_p (signed int, vui, vui);
VCMPGTUW_P
signed int __builtin_vec_vcmpgt_p (signed int, vsi, vsi);
VCMPGTSW_P
signed int __builtin_vec_vcmpgt_p (signed int, vull, vull);
VCMPGTUD_P
signed int __builtin_vec_vcmpgt_p (signed int, vsll, vsll);
VCMPGTSD_P
signed int __builtin_vec_vcmpgt_p (signed int, vuq, vuq);
VCMPGTUT_P
signed int __builtin_vec_vcmpgt_p (signed int, vsq, vsq);
VCMPGTST_P
signed int __builtin_vec_vcmpgt_p (signed int, vf, vf);
VCMPGTFP_P
signed int __builtin_vec_vcmpgt_p (signed int, vd, vd);
XVCMPGTDP_P
; The following variants are deprecated.
signed int __builtin_vec_vcmpgt_p (signed int, vbc, vuc);
VCMPGTUB_P VCMPGTUB_P_BU
signed int __builtin_vec_vcmpgt_p (signed int, vuc, vbc);
VCMPGTUB_P VCMPGTUB_P_UB
signed int __builtin_vec_vcmpgt_p (signed int, vbc, vsc);
VCMPGTSB_P VCMPGTSB_P_BS
signed int __builtin_vec_vcmpgt_p (signed int, vsc, vbc);
VCMPGTSB_P VCMPGTSB_P_SB
signed int __builtin_vec_vcmpgt_p (signed int, vbs, vus);
VCMPGTUH_P VCMPGTUH_P_BU
signed int __builtin_vec_vcmpgt_p (signed int, vus, vbs);
VCMPGTUH_P VCMPGTUH_P_UB
signed int __builtin_vec_vcmpgt_p (signed int, vbs, vss);
VCMPGTSH_P VCMPGTSH_P_BS
signed int __builtin_vec_vcmpgt_p (signed int, vss, vbs);
VCMPGTSH_P VCMPGTSH_P_SB
signed int __builtin_vec_vcmpgt_p (signed int, vbi, vui);
VCMPGTUW_P VCMPGTUW_P_BU
signed int __builtin_vec_vcmpgt_p (signed int, vui, vbi);
VCMPGTUW_P VCMPGTUW_P_UB
signed int __builtin_vec_vcmpgt_p (signed int, vbi, vsi);
VCMPGTSW_P VCMPGTSW_P_BS
signed int __builtin_vec_vcmpgt_p (signed int, vsi, vbi);
VCMPGTSW_P VCMPGTSW_P_SB
signed int __builtin_vec_vcmpgt_p (signed int, vbll, vull);
VCMPGTUD_P VCMPGTUD_P_BU
signed int __builtin_vec_vcmpgt_p (signed int, vull, vbll);
VCMPGTUD_P VCMPGTUD_P_UB
signed int __builtin_vec_vcmpgt_p (signed int, vbll, vsll);
VCMPGTSD_P VCMPGTSD_P_BS
signed int __builtin_vec_vcmpgt_p (signed int, vsll, vbll);
VCMPGTSD_P VCMPGTSD_P_SB
; Note that there is no entry for VEC_CMPLE. VEC_CMPLE is implemented
; using VEC_CMPGE with reversed arguments in altivec.h.
; Note that there is no entry for VEC_CMPLT. VEC_CMPLT is implemented
; using VEC_CMPGT with reversed arguments in altivec.h.
[VEC_CMPNE, vec_cmpne, __builtin_vec_cmpne]
vbc __builtin_vec_cmpne (vbc, vbc);
VCMPNEB VCMPNEB_VBC
vbc __builtin_vec_cmpne (vsc, vsc);
VCMPNEB VCMPNEB_VSC
vbc __builtin_vec_cmpne (vuc, vuc);
VCMPNEB VCMPNEB_VUC
vbs __builtin_vec_cmpne (vbs, vbs);
VCMPNEH VCMPNEH_VBS
vbs __builtin_vec_cmpne (vss, vss);
VCMPNEH VCMPNEH_VSS
vbs __builtin_vec_cmpne (vus, vus);
VCMPNEH VCMPNEH_VUS
vbi __builtin_vec_cmpne (vbi, vbi);
VCMPNEW VCMPNEW_VBI
vbi __builtin_vec_cmpne (vsi, vsi);
VCMPNEW VCMPNEW_VSI
vbi __builtin_vec_cmpne (vui, vui);
VCMPNEW VCMPNEW_VUI
vbq __builtin_vec_cmpne (vsq, vsq);
VCMPNET VCMPNET_VSQ
vbq __builtin_vec_cmpne (vuq, vuq);
VCMPNET VCMPNET_VUQ
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
[VEC_CMPNE_P, SKIP, __builtin_vec_vcmpne_p]
signed int __builtin_vec_vcmpne_p (vsc, vsc);
VCMPNEB_P VCMPNEB_VSC_P
signed int __builtin_vec_vcmpne_p (vuc, vuc);
VCMPNEB_P VCMPNEB_VUC_P
signed int __builtin_vec_vcmpne_p (vbc, vbc);
VCMPNEB_P VCMPNEB_VBC_P
signed int __builtin_vec_vcmpne_p (vss, vss);
VCMPNEH_P VCMPNEH_VSS_P
signed int __builtin_vec_vcmpne_p (vus, vus);
VCMPNEH_P VCMPNEH_VUS_P
signed int __builtin_vec_vcmpne_p (vbs, vbs);
VCMPNEH_P VCMPNEH_VBS_P
signed int __builtin_vec_vcmpne_p (vp, vp);
VCMPNEH_P VCMPNEH_VP_P
signed int __builtin_vec_vcmpne_p (vsi, vsi);
VCMPNEW_P VCMPNEW_VSI_P
signed int __builtin_vec_vcmpne_p (vui, vui);
VCMPNEW_P VCMPNEW_VUI_P
signed int __builtin_vec_vcmpne_p (vbi, vbi);
VCMPNEW_P VCMPNEW_VBI_P
signed int __builtin_vec_vcmpne_p (vsll, vsll);
VCMPNED_P VCMPNED_VSLL_P
signed int __builtin_vec_vcmpne_p (vull, vull);
VCMPNED_P VCMPNED_VULL_P
signed int __builtin_vec_vcmpne_p (vbll, vbll);
VCMPNED_P VCMPNED_VBLL_P
signed int __builtin_vec_vcmpne_p (vsq, vsq);
VCMPNET_P VCMPNET_VSQ_P
signed int __builtin_vec_vcmpne_p (vuq, vuq);
VCMPNET_P VCMPNET_VUQ_P
signed int __builtin_vec_vcmpne_p (vf, vf);
VCMPNEFP_P
signed int __builtin_vec_vcmpne_p (vd, vd);
VCMPNEDP_P
; The following variants are deprecated.
signed int __builtin_vec_vcmpne_p (signed int, vbc, vuc);
VCMPNEB_P VCMPNEB_P_BU
signed int __builtin_vec_vcmpne_p (signed int, vuc, vbc);
VCMPNEB_P VCMPNEB_P_UB
signed int __builtin_vec_vcmpne_p (signed int, vbc, vsc);
VCMPNEB_P VCMPNEB_P_BS
signed int __builtin_vec_vcmpne_p (signed int, vsc, vbc);
VCMPNEB_P VCMPNEB_P_SB
signed int __builtin_vec_vcmpne_p (signed int, vbs, vus);
VCMPNEH_P VCMPNEH_P_BU
signed int __builtin_vec_vcmpne_p (signed int, vus, vbs);
VCMPNEH_P VCMPNEH_P_UB
signed int __builtin_vec_vcmpne_p (signed int, vbs, vss);
VCMPNEH_P VCMPNEH_P_BS
signed int __builtin_vec_vcmpne_p (signed int, vss, vbs);
VCMPNEH_P VCMPNEH_P_SB
signed int __builtin_vec_vcmpne_p (signed int, vbi, vui);
VCMPNEW_P VCMPNEW_P_BU
signed int __builtin_vec_vcmpne_p (signed int, vui, vbi);
VCMPNEW_P VCMPNEW_P_UB
signed int __builtin_vec_vcmpne_p (signed int, vbi, vsi);
VCMPNEW_P VCMPNEW_P_BS
signed int __builtin_vec_vcmpne_p (signed int, vsi, vbi);
VCMPNEW_P VCMPNEW_P_SB
signed int __builtin_vec_vcmpne_p (signed int, vbll, vull);
VCMPNED_P VCMPNED_P_BU
signed int __builtin_vec_vcmpne_p (signed int, vull, vbll);
VCMPNED_P VCMPNED_P_UB
signed int __builtin_vec_vcmpne_p (signed int, vbll, vsll);
VCMPNED_P VCMPNED_P_BS
signed int __builtin_vec_vcmpne_p (signed int, vbll, vsll);
VCMPNED_P VCMPNED_P_SB
[VEC_CMPNEZ, vec_cmpnez, __builtin_vec_vcmpnez]
vbc __builtin_vec_cmpnez (vsc, vsc);
CMPNEZB CMPNEZB_S
vbc __builtin_vec_cmpnez (vuc, vuc);
CMPNEZB CMPNEZB_U
vbs __builtin_vec_cmpnez (vss, vss);
CMPNEZH CMPNEZH_S
vbs __builtin_vec_cmpnez (vus, vus);
CMPNEZH CMPNEZH_U
vbi __builtin_vec_cmpnez (vsi, vsi);
CMPNEZW CMPNEZW_S
vbi __builtin_vec_cmpnez (vui, vui);
CMPNEZW CMPNEZW_U
; We skip generating a #define because of the C-versus-C++ complexity
; in altivec.h. Look there for the template-y details.
[VEC_CMPNEZ_P, SKIP, __builtin_vec_vcmpnez_p]
signed int __builtin_vec_vcmpnez_p (signed int, vsc, vsc);
VCMPNEZB_P VCMPNEZB_VSC_P
signed int __builtin_vec_vcmpnez_p (signed int, vuc, vuc);
VCMPNEZB_P VCMPNEZB_VUC_P
signed int __builtin_vec_vcmpnez_p (signed int, vss, vss);
VCMPNEZH_P VCMPNEZH_VSS_P
signed int __builtin_vec_vcmpnez_p (signed int, vus, vus);
VCMPNEZH_P VCMPNEZH_VUS_P
signed int __builtin_vec_vcmpnez_p (signed int, vsi, vsi);
VCMPNEZW_P VCMPNEZW_VSI_P
signed int __builtin_vec_vcmpnez_p (signed int, vui, vui);
VCMPNEZW_P VCMPNEZW_VUI_P
[VEC_CMPRB, SKIP, __builtin_byte_in_range]
signed int __builtin_byte_in_range (unsigned int, unsigned int);
CMPRB
[VEC_CMPRB2, SKIP, __builtin_byte_in_either_range]
signed int __builtin_byte_in_range (unsigned int, unsigned int);
CMPRB2
[VEC_CNTLZ, vec_cntlz, __builtin_vec_vclz]
vsc __builtin_vec_vclz (vsc);
VCLZB VCLZB_S
vuc __builtin_vec_vclz (vuc);
VCLZB VCLZB_U
vss __builtin_vec_vclz (vss);
VCLZH VCLZH_S
vus __builtin_vec_vclz (vus);
VCLZH VCLZH_U
vsi __builtin_vec_vclz (vsi);
VCLZW VCLZW_S
vui __builtin_vec_vclz (vui);
VCLZW VCLZW_U
vsll __builtin_vec_vclz (vsll);
VCLZD VCLZD_S
vull __builtin_vec_vclz (vull);
VCLZD VCLZD_U
[VEC_CNTLZM, vec_cntlzm, __builtin_vec_vclzdm]
vull __builtin_vec_vclzdm (vull, vull);
VCLZDM
[VEC_CNTTZM, vec_cnttzm, __builtin_vec_vctzdm]
vull __builtin_vec_vctzdm (vull, vull);
VCTZDM
[VEC_CNTLZ_LSBB, vec_cntlz_lsbb, __builtin_vec_vclzlsbb]
signed int __builtin_vec_vclzlsbb (vsc);
VCLZLSBB_V16QI VCLZLSBB_VSC
signed int __builtin_vec_vclzlsbb (vuc);
VCLZLSBB_V16QI VCLZLSBB_VUC
signed int __builtin_vec_vclzlsbb (vss);
VCLZLSBB_V8HI VCLZLSBB_VSS
signed int __builtin_vec_vclzlsbb (vus);
VCLZLSBB_V8HI VCLZLSBB_VUS
signed int __builtin_vec_vclzlsbb (vsi);
VCLZLSBB_V4SI VCLZLSBB_VSI
signed int __builtin_vec_vclzlsbb (vui);
VCLZLSBB_V4SI VCLZLSBB_VUI
[VEC_CNTM, vec_cntm, __builtin_vec_cntm]
unsigned long long __builtin_vec_cntm (vuc, const int);
VCNTMBB
unsigned long long __builtin_vec_cntm (vus, const int);
VCNTMBH
unsigned long long __builtin_vec_cntm (vui, const int);
VCNTMBW
unsigned long long __builtin_vec_cntm (vull, const int);
VCNTMBD
[VEC_CNTTZ, vec_cnttz, __builtin_vec_vctz]
vsc __builtin_vec_vctz (vsc);
VCTZB VCTZB_S
vuc __builtin_vec_vctz (vuc);
VCTZB VCTZB_U
vss __builtin_vec_vctz (vss);
VCTZH VCTZH_S
vus __builtin_vec_vctz (vus);
VCTZH VCTZH_U
vsi __builtin_vec_vctz (vsi);
VCTZW VCTZW_S
vui __builtin_vec_vctz (vui);
VCTZW VCTZW_U
vsll __builtin_vec_vctz (vsll);
VCTZD VCTZD_S
vull __builtin_vec_vctz (vull);
VCTZD VCTZD_U
[VEC_CNTTZ_LSBB, vec_cnttz_lsbb, __builtin_vec_vctzlsbb]
signed int __builtin_vec_vctzlsbb (vsc);
VCTZLSBB_V16QI VCTZLSBB_VSC
signed int __builtin_vec_vctzlsbb (vuc);
VCTZLSBB_V16QI VCTZLSBB_VUC
signed int __builtin_vec_vctzlsbb (vss);
VCTZLSBB_V8HI VCTZLSBB_VSS
signed int __builtin_vec_vctzlsbb (vus);
VCTZLSBB_V8HI VCTZLSBB_VUS
signed int __builtin_vec_vctzlsbb (vsi);
VCTZLSBB_V4SI VCTZLSBB_VSI
signed int __builtin_vec_vctzlsbb (vui);
VCTZLSBB_V4SI VCTZLSBB_VUI
[VEC_CONVERT_4F32_8I16, SKIP, __builtin_vec_convert_4f32_8i16]
vus __builtin_vec_convert_4f32_8i16 (vf, vf);
CONVERT_4F32_8I16
[VEC_CONVERT_4F32_8F16, vec_pack_to_short_fp32, __builtin_vec_convert_4f32_8f16]
vus __builtin_vec_convert_4f32_8f16 (vf, vf);
CONVERT_4F32_8F16
[VEC_COPYSIGN, SKIP, __builtin_vec_copysign]
vf __builtin_vec_copysign (vf, vf);
COPYSIGN_V4SF
vd __builtin_vec_copysign (vd, vd);
CPSGNDP
[VEC_CTF, vec_ctf, __builtin_vec_ctf]
vf __builtin_vec_ctf (vsi, const int);
VCFSX
vf __builtin_vec_ctf (vui, const int);
VCFUX
vd __builtin_vec_ctf (vsll, const int);
XVCVSXDDP_SCALE
vd __builtin_vec_ctf (vull, const int);
XVCVUXDDP_SCALE
[VEC_CTS, vec_cts, __builtin_vec_cts]
vsi __builtin_vec_cts (vf, const int);
VCTSXS
vsll __builtin_vec_cts (vd, const int);
XVCVDPSXDS_SCALE
[VEC_CTU, vec_ctu, __builtin_vec_ctu]
vui __builtin_vec_ctu (vf, const int);
VCTUXS
vull __builtin_vec_ctu (vd, const int);
XVCVDPUXDS_SCALE
[VEC_DIV, vec_div, __builtin_vec_div]
vsi __builtin_vec_div (vsi, vsi);
VDIVSW
vui __builtin_vec_div (vui, vui);
VDIVUW
vsll __builtin_vec_div (vsll, vsll);
DIV_V2DI
vull __builtin_vec_div (vull, vull);
UDIV_V2DI
vsq __builtin_vec_div (vsq, vsq);
DIV_V1TI
vuq __builtin_vec_div (vuq, vuq);
UDIV_V1TI
vf __builtin_vec_div (vf, vf);
XVDIVSP
vd __builtin_vec_div (vd, vd);
XVDIVDP
[VEC_DIVE, vec_dive, __builtin_vec_dive]
vsi __builtin_vec_dive (vsi, vsi);
VDIVESW
vui __builtin_vec_dive (vui, vui);
VDIVEUW
vsll __builtin_vec_dive (vsll, vsll);
VDIVESD
vull __builtin_vec_dive (vull, vull);
VDIVEUD
vsq __builtin_vec_dive (vsq, vsq);
DIVES_V1TI
vuq __builtin_vec_dive (vuq, vuq);
DIVEU_V1TI
[VEC_DOUBLE, vec_double, __builtin_vec_double]
vd __builtin_vec_double (vsll);
XVCVSXDDP
vd __builtin_vec_double (vull);
XVCVUXDDP
[VEC_DOUBLEE, vec_doublee, __builtin_vec_doublee]
vd __builtin_vec_doublee (vsi);
DOUBLEE_V4SI
vd __builtin_vec_doublee (vui);
UNS_DOUBLEE_V4SI
vd __builtin_vec_doublee (vf);
DOUBLEE_V4SF
[VEC_DOUBLEH, vec_doubleh, __builtin_vec_doubleh]
vd __builtin_vec_doubleh (vsi);
DOUBLEH_V4SI
vd __builtin_vec_doubleh (vui);
UNS_DOUBLEH_V4SI
vd __builtin_vec_doubleh (vf);
DOUBLEH_V4SF
[VEC_DOUBLEL, vec_doublel, __builtin_vec_doublel]
vd __builtin_vec_doublel (vsi);
DOUBLEL_V4SI
vd __builtin_vec_doublel (vui);
UNS_DOUBLEL_V4SI
vd __builtin_vec_doublel (vf);
DOUBLEL_V4SF
[VEC_DOUBLEO, vec_doubleo, __builtin_vec_doubleo]
vd __builtin_vec_doubleo (vsi);
DOUBLEO_V4SI
vd __builtin_vec_doubleo (vui);
UNS_DOUBLEO_V4SI
vd __builtin_vec_doubleo (vf);
DOUBLEO_V4SF
[VEC_DST, vec_dst, __builtin_vec_dst]
void __builtin_vec_dst (unsigned char *, const int, const int);
DST DST_UC
void __builtin_vec_dst (signed char *, const int, const int);
DST DST_SC
void __builtin_vec_dst (unsigned short *, const int, const int);
DST DST_US
void __builtin_vec_dst (signed short *, const int, const int);
DST DST_SS
void __builtin_vec_dst (unsigned int *, const int, const int);
DST DST_UI
void __builtin_vec_dst (signed int *, const int, const int);
DST DST_SI
void __builtin_vec_dst (unsigned long *, const int, const int);
DST DST_UL
void __builtin_vec_dst (signed long *, const int, const int);
DST DST_SL
void __builtin_vec_dst (unsigned long long *, const int, const int);
DST DST_ULL
void __builtin_vec_dst (signed long long *, const int, const int);
DST DST_SLL
void __builtin_vec_dst (float *, const int, const int);
DST DST_F
void __builtin_vec_dst (vuc *, const int, const int);
DST DST_VUC
void __builtin_vec_dst (vsc *, const int, const int);
DST DST_VSC
void __builtin_vec_dst (vbc *, const int, const int);
DST DST_VBC
void __builtin_vec_dst (vus *, const int, const int);
DST DST_VUS
void __builtin_vec_dst (vss *, const int, const int);
DST DST_VSS
void __builtin_vec_dst (vbs *, const int, const int);
DST DST_VBS
void __builtin_vec_dst (vp *, const int, const int);
DST DST_VP
void __builtin_vec_dst (vui *, const int, const int);
DST DST_VUI
void __builtin_vec_dst (vsi *, const int, const int);
DST DST_VSI
void __builtin_vec_dst (vbi *, const int, const int);
DST DST_VBI
void __builtin_vec_dst (vf *, const int, const int);
DST DST_VF
[VEC_DSTST, vec_dstst, __builtin_vec_dstst]
void __builtin_vec_dstst (unsigned char *, const int, const int);
DSTST DSTST_UC
void __builtin_vec_dstst (signed char *, const int, const int);
DSTST DSTST_SC
void __builtin_vec_dstst (unsigned short *, const int, const int);
DSTST DSTST_US
void __builtin_vec_dstst (signed short *, const int, const int);
DSTST DSTST_SS
void __builtin_vec_dstst (unsigned int *, const int, const int);
DSTST DSTST_UI
void __builtin_vec_dstst (signed int *, const int, const int);
DSTST DSTST_SI
void __builtin_vec_dstst (unsigned long *, const int, const int);
DSTST DSTST_UL
void __builtin_vec_dstst (signed long *, const int, const int);
DSTST DSTST_SL
void __builtin_vec_dstst (unsigned long long *, const int, const int);
DSTST DSTST_ULL
void __builtin_vec_dstst (signed long long *, const int, const int);
DSTST DSTST_SLL
void __builtin_vec_dstst (float *, const int, const int);
DSTST DSTST_F
void __builtin_vec_dstst (vuc *, const int, const int);
DSTST DSTST_VUC
void __builtin_vec_dstst (vsc *, const int, const int);
DSTST DSTST_VSC
void __builtin_vec_dstst (vbc *, const int, const int);
DSTST DSTST_VBC
void __builtin_vec_dstst (vus *, const int, const int);
DSTST DSTST_VUS
void __builtin_vec_dstst (vss *, const int, const int);
DSTST DSTST_VSS
void __builtin_vec_dstst (vbs *, const int, const int);
DSTST DSTST_VBS
void __builtin_vec_dstst (vp *, const int, const int);
DSTST DSTST_VP
void __builtin_vec_dstst (vui *, const int, const int);
DSTST DSTST_VUI
void __builtin_vec_dstst (vsi *, const int, const int);
DSTST DSTST_VSI
void __builtin_vec_dstst (vbi *, const int, const int);
DSTST DSTST_VBI
void __builtin_vec_dstst (vf *, const int, const int);
DSTST DSTST_VF
[VEC_DSTSTT, vec_dststt, __builtin_vec_dststt]
void __builtin_vec_dststt (unsigned char *, const int, const int);
DSTSTT DSTSTT_UC
void __builtin_vec_dststt (signed char *, const int, const int);
DSTSTT DSTSTT_SC
void __builtin_vec_dststt (unsigned short *, const int, const int);
DSTSTT DSTSTT_US
void __builtin_vec_dststt (signed short *, const int, const int);
DSTSTT DSTSTT_SS
void __builtin_vec_dststt (unsigned int *, const int, const int);
DSTSTT DSTSTT_UI
void __builtin_vec_dststt (signed int *, const int, const int);
DSTSTT DSTSTT_SI
void __builtin_vec_dststt (unsigned long *, const int, const int);
DSTSTT DSTSTT_UL
void __builtin_vec_dststt (signed long *, const int, const int);
DSTSTT DSTSTT_SL
void __builtin_vec_dststt (unsigned long long *, const int, const int);
DSTSTT DSTSTT_ULL
void __builtin_vec_dststt (signed long long *, const int, const int);
DSTSTT DSTSTT_SLL
void __builtin_vec_dststt (float *, const int, const int);
DSTSTT DSTSTT_F
void __builtin_vec_dststt (vuc *, const int, const int);
DSTSTT DSTSTT_VUC
void __builtin_vec_dststt (vsc *, const int, const int);
DSTSTT DSTSTT_VSC
void __builtin_vec_dststt (vbc *, const int, const int);
DSTSTT DSTSTT_VBC
void __builtin_vec_dststt (vus *, const int, const int);
DSTSTT DSTSTT_VUS
void __builtin_vec_dststt (vss *, const int, const int);
DSTSTT DSTSTT_VSS
void __builtin_vec_dststt (vbs *, const int, const int);
DSTSTT DSTSTT_VBS
void __builtin_vec_dststt (vp *, const int, const int);
DSTSTT DSTSTT_VP
void __builtin_vec_dststt (vui *, const int, const int);
DSTSTT DSTSTT_VUI
void __builtin_vec_dststt (vsi *, const int, const int);
DSTSTT DSTSTT_VSI
void __builtin_vec_dststt (vbi *, const int, const int);
DSTSTT DSTSTT_VBI
void __builtin_vec_dststt (vf *, const int, const int);
DSTSTT DSTSTT_VF
[VEC_DSTT, vec_dstt, __builtin_vec_dstt]
void __builtin_vec_dstt (unsigned char *, const int, const int);
DSTT DSTT_UC
void __builtin_vec_dstt (signed char *, const int, const int);
DSTT DSTT_SC
void __builtin_vec_dstt (unsigned short *, const int, const int);
DSTT DSTT_US
void __builtin_vec_dstt (signed short *, const int, const int);
DSTT DSTT_SS
void __builtin_vec_dstt (unsigned int *, const int, const int);
DSTT DSTT_UI
void __builtin_vec_dstt (signed int *, const int, const int);
DSTT DSTT_SI
void __builtin_vec_dstt (unsigned long *, const int, const int);
DSTT DSTT_UL
void __builtin_vec_dstt (signed long *, const int, const int);
DSTT DSTT_SL
void __builtin_vec_dstt (unsigned long long *, const int, const int);
DSTT DSTT_ULL
void __builtin_vec_dstt (signed long long *, const int, const int);
DSTT DSTT_SLL
void __builtin_vec_dstt (float *, const int, const int);
DSTT DSTT_F
void __builtin_vec_dstt (vuc *, const int, const int);
DSTT DSTT_VUC
void __builtin_vec_dstt (vsc *, const int, const int);
DSTT DSTT_VSC
void __builtin_vec_dstt (vbc *, const int, const int);
DSTT DSTT_VBC
void __builtin_vec_dstt (vus *, const int, const int);
DSTT DSTT_VUS
void __builtin_vec_dstt (vss *, const int, const int);
DSTT DSTT_VSS
void __builtin_vec_dstt (vbs *, const int, const int);
DSTT DSTT_VBS
void __builtin_vec_dstt (vp *, const int, const int);
DSTT DSTT_VP
void __builtin_vec_dstt (vui *, const int, const int);
DSTT DSTT_VUI
void __builtin_vec_dstt (vsi *, const int, const int);
DSTT DSTT_VSI
void __builtin_vec_dstt (vbi *, const int, const int);
DSTT DSTT_VBI
void __builtin_vec_dstt (vf *, const int, const int);
DSTT DSTT_VF
[VEC_EQV, vec_eqv, __builtin_vec_eqv]
vsc __builtin_vec_eqv (vsc, vsc);
EQV_V16QI
vuc __builtin_vec_eqv (vuc, vuc);
EQV_V16QI_UNS EQV_V16QI_VUC
vbc __builtin_vec_eqv (vbc, vbc);
EQV_V16QI_UNS EQV_V16QI_VBC
vss __builtin_vec_eqv (vss, vss);
EQV_V8HI
vus __builtin_vec_eqv (vus, vus);
EQV_V8HI_UNS EQV_V8HI_VUS
vbs __builtin_vec_eqv (vbs, vbs);
EQV_V8HI_UNS EQV_V8HI_VBS
vsi __builtin_vec_eqv (vsi, vsi);
EQV_V4SI
vui __builtin_vec_eqv (vui, vui);
EQV_V4SI_UNS EQV_V4SI_VUI
vbi __builtin_vec_eqv (vbi, vbi);
EQV_V4SI_UNS EQV_V4SI_VBI
vsll __builtin_vec_eqv (vsll, vsll);
EQV_V2DI
vull __builtin_vec_eqv (vull, vull);
EQV_V2DI_UNS EQV_V2DI_VULL
vbll __builtin_vec_eqv (vbll, vbll);
EQV_V2DI_UNS EQV_V2DI_VBLL
vf __builtin_vec_eqv (vf, vf);
EQV_V4SF
vd __builtin_vec_eqv (vd, vd);
EQV_V2DF
; The following variants are deprecated.
vsc __builtin_vec_eqv (vbc, vsc);
EQV_V16QI EQV_VBC_VSC
vsc __builtin_vec_eqv (vsc, vbc);
EQV_V16QI EQV_VSC_VBC
vuc __builtin_vec_eqv (vbc, vuc);
EQV_V16QI_UNS EQV_VBC_VUC
vuc __builtin_vec_eqv (vuc, vbc);
EQV_V16QI_UNS EQV_VUC_VBC
vss __builtin_vec_eqv (vbs, vss);
EQV_V8HI EQV_VBS_VSS
vss __builtin_vec_eqv (vss, vbs);
EQV_V8HI EQV_VSS_VBS
vus __builtin_vec_eqv (vbs, vus);
EQV_V8HI_UNS EQV_VBS_VUS
vus __builtin_vec_eqv (vus, vbs);
EQV_V8HI_UNS EQV_VUS_VBS
vsi __builtin_vec_eqv (vbi, vsi);
EQV_V4SI EQV_VBI_VSI
vsi __builtin_vec_eqv (vsi, vbi);
EQV_V4SI EQV_VSI_VBI
vui __builtin_vec_eqv (vbi, vui);
EQV_V4SI_UNS EQV_VBI_VUI
vui __builtin_vec_eqv (vui, vbi);
EQV_V4SI_UNS EQV_VUI_VBI
vsll __builtin_vec_eqv (vbll, vsll);
EQV_V2DI EQV_VBLL_VSLL
vsll __builtin_vec_eqv (vsll, vbll);
EQV_V2DI EQV_VSLL_VBLL
vull __builtin_vec_eqv (vbll, vull);
EQV_V2DI_UNS EQV_VBLL_VULL
vull __builtin_vec_eqv (vull, vbll);
EQV_V2DI_UNS EQV_VULL_VBLL
[VEC_EXPANDM, vec_expandm, __builtin_vec_vexpandm]
vuc __builtin_vec_vexpandm (vuc);
VEXPANDMB
vus __builtin_vec_vexpandm (vus);
VEXPANDMH
vui __builtin_vec_vexpandm (vui);
VEXPANDMW
vull __builtin_vec_vexpandm (vull);
VEXPANDMD
vuq __builtin_vec_vexpandm (vuq);
VEXPANDMQ
[VEC_EXPTE, vec_expte, __builtin_vec_expte]
vf __builtin_vec_expte (vf);
VEXPTEFP
; There are no actual builtins for vec_extract. There is special handling for
; this in altivec_resolve_overloaded_builtin in rs6000-c.cc, where the call
; is replaced by "pointer tricks." The single overload here causes
; __builtin_vec_extract to be registered with the front end so this can
; happen.
[VEC_EXTRACT, vec_extract, __builtin_vec_extract]
vsi __builtin_vec_extract (vsi, signed int);
VSPLTW EXTRACT_FAKERY
[VEC_EXTRACT_FP_FROM_SHORTH, vec_extract_fp32_from_shorth, __builtin_vec_vextract_fp_from_shorth]
vf __builtin_vec_vextract_fp_from_shorth (vus);
VEXTRACT_FP_FROM_SHORTH
[VEC_EXTRACT_FP_FROM_SHORTL, vec_extract_fp32_from_shortl, __builtin_vec_vextract_fp_from_shortl]
vf __builtin_vec_vextract_fp_from_shortl (vus);
VEXTRACT_FP_FROM_SHORTL
[VEC_EXTRACTH, vec_extracth, __builtin_vec_extracth]
vull __builtin_vec_extracth (vuc, vuc, unsigned char);
VEXTRACTBR
vull __builtin_vec_extracth (vus, vus, unsigned char);
VEXTRACTHR
vull __builtin_vec_extracth (vui, vui, unsigned char);
VEXTRACTWR
vull __builtin_vec_extracth (vull, vull, unsigned char);
VEXTRACTDR
[VEC_EXTRACTL, vec_extractl, __builtin_vec_extractl]
vull __builtin_vec_extractl (vuc, vuc, unsigned char);
VEXTRACTBL
vull __builtin_vec_extractl (vus, vus, unsigned char);
VEXTRACTHL
vull __builtin_vec_extractl (vui, vui, unsigned char);
VEXTRACTWL
vull __builtin_vec_extractl (vull, vull, unsigned char);
VEXTRACTDL
[VEC_EXTRACTM, vec_extractm, __builtin_vec_vextractm]
signed int __builtin_vec_vextractm (vuc);
VEXTRACTMB
signed int __builtin_vec_vextractm (vus);
VEXTRACTMH
signed int __builtin_vec_vextractm (vui);
VEXTRACTMW
signed int __builtin_vec_vextractm (vull);
VEXTRACTMD
signed int __builtin_vec_vextractm (vuq);
VEXTRACTMQ
[VEC_EXTRACT4B, vec_extract4b, __builtin_vec_extract4b]
vull __builtin_vec_extract4b (vuc, const int);
EXTRACT4B
[VEC_EXTULX, vec_xlx, __builtin_vec_vextulx]
signed char __builtin_vec_vextulx (unsigned int, vsc);
VEXTUBLX VEXTUBLX_S
unsigned char __builtin_vec_vextulx (unsigned int, vuc);
VEXTUBLX VEXTUBLX_U
signed short __builtin_vec_vextulx (unsigned int, vss);
VEXTUHLX VEXTUHLX_S
unsigned short __builtin_vec_vextulx (unsigned int, vus);
VEXTUHLX VEXTUHLX_U
signed int __builtin_vec_vextulx (unsigned int, vsi);
VEXTUWLX VEXTUWLX_S
unsigned int __builtin_vec_vextulx (unsigned int, vui);
VEXTUWLX VEXTUWLX_U
float __builtin_vec_vextulx (unsigned int, vf);
VEXTUWLX VEXTUWLX_F
[VEC_EXTURX, vec_xrx, __builtin_vec_vexturx]
signed char __builtin_vec_vexturx (unsigned int, vsc);
VEXTUBRX VEXTUBRX_S
unsigned char __builtin_vec_vexturx (unsigned int, vuc);
VEXTUBRX VEXTUBRX_U
signed short __builtin_vec_vexturx (unsigned int, vss);
VEXTUHRX VEXTUHRX_S
unsigned short __builtin_vec_vexturx (unsigned int, vus);
VEXTUHRX VEXTUHRX_U
signed int __builtin_vec_vexturx (unsigned int, vsi);
VEXTUWRX VEXTUWRX_S
unsigned int __builtin_vec_vexturx (unsigned int, vui);
VEXTUWRX VEXTUWRX_U
float __builtin_vec_vexturx (unsigned int, vf);
VEXTUWRX VEXTUWRX_F
[VEC_FIRSTMATCHINDEX, vec_first_match_index, __builtin_vec_first_match_index]
unsigned int __builtin_vec_first_match_index (vsc, vsc);
VFIRSTMATCHINDEX_V16QI FIRSTMATCHINDEX_VSC
unsigned int __builtin_vec_first_match_index (vuc, vuc);
VFIRSTMATCHINDEX_V16QI FIRSTMATCHINDEX_VUC
unsigned int __builtin_vec_first_match_index (vss, vss);
VFIRSTMATCHINDEX_V8HI FIRSTMATCHINDEX_VSS
unsigned int __builtin_vec_first_match_index (vus, vus);
VFIRSTMATCHINDEX_V8HI FIRSTMATCHINDEX_VUS
unsigned int __builtin_vec_first_match_index (vsi, vsi);
VFIRSTMATCHINDEX_V4SI FIRSTMATCHINDEX_VSI
unsigned int __builtin_vec_first_match_index (vui, vui);
VFIRSTMATCHINDEX_V4SI FIRSTMATCHINDEX_VUI
[VEC_FIRSTMATCHOREOSINDEX, vec_first_match_or_eos_index, __builtin_vec_first_match_or_eos_index]
unsigned int __builtin_vec_first_match_or_eos_index (vsc, vsc);
VFIRSTMATCHOREOSINDEX_V16QI FIRSTMATCHOREOSINDEX_VSC
unsigned int __builtin_vec_first_match_or_eos_index (vuc, vuc);
VFIRSTMATCHOREOSINDEX_V16QI FIRSTMATCHOREOSINDEX_VUC
unsigned int __builtin_vec_first_match_or_eos_index (vss, vss);
VFIRSTMATCHOREOSINDEX_V8HI FIRSTMATCHOREOSINDEX_VSS
unsigned int __builtin_vec_first_match_or_eos_index (vus, vus);
VFIRSTMATCHOREOSINDEX_V8HI FIRSTMATCHOREOSINDEX_VUS
unsigned int __builtin_vec_first_match_or_eos_index (vsi, vsi);
VFIRSTMATCHOREOSINDEX_V4SI FIRSTMATCHOREOSINDEX_VSI
unsigned int __builtin_vec_first_match_or_eos_index (vui, vui);
VFIRSTMATCHOREOSINDEX_V4SI FIRSTMATCHOREOSINDEX_VUI
[VEC_FIRSTMISMATCHINDEX, vec_first_mismatch_index, __builtin_vec_first_mismatch_index]
unsigned int __builtin_vec_first_mismatch_index (vsc, vsc);
VFIRSTMISMATCHINDEX_V16QI FIRSTMISMATCHINDEX_VSC
unsigned int __builtin_vec_first_mismatch_index (vuc, vuc);
VFIRSTMISMATCHINDEX_V16QI FIRSTMISMATCHINDEX_VUC
unsigned int __builtin_vec_first_mismatch_index (vss, vss);
VFIRSTMISMATCHINDEX_V8HI FIRSTMISMATCHINDEX_VSS
unsigned int __builtin_vec_first_mismatch_index (vus, vus);
VFIRSTMISMATCHINDEX_V8HI FIRSTMISMATCHINDEX_VUS
unsigned int __builtin_vec_first_mismatch_index (vsi, vsi);
VFIRSTMISMATCHINDEX_V4SI FIRSTMISMATCHINDEX_VSI
unsigned int __builtin_vec_first_mismatch_index (vui, vui);
VFIRSTMISMATCHINDEX_V4SI FIRSTMISMATCHINDEX_VUI
[VEC_FIRSTMISMATCHOREOSINDEX, vec_first_mismatch_or_eos_index, __builtin_vec_first_mismatch_or_eos_index]
unsigned int __builtin_vec_first_mismatch_or_eos_index (vsc, vsc);
VFIRSTMISMATCHOREOSINDEX_V16QI FIRSTMISMATCHOREOSINDEX_VSC
unsigned int __builtin_vec_first_mismatch_or_eos_index (vuc, vuc);
VFIRSTMISMATCHOREOSINDEX_V16QI FIRSTMISMATCHOREOSINDEX_VUC
unsigned int __builtin_vec_first_mismatch_or_eos_index (vss, vss);
VFIRSTMISMATCHOREOSINDEX_V8HI FIRSTMISMATCHOREOSINDEX_VSS
unsigned int __builtin_vec_first_mismatch_or_eos_index (vus, vus);
VFIRSTMISMATCHOREOSINDEX_V8HI FIRSTMISMATCHOREOSINDEX_VUS
unsigned int __builtin_vec_first_mismatch_or_eos_index (vsi, vsi);
VFIRSTMISMATCHOREOSINDEX_V4SI FIRSTMISMATCHOREOSINDEX_VSI
unsigned int __builtin_vec_first_mismatch_or_eos_index (vui, vui);
VFIRSTMISMATCHOREOSINDEX_V4SI FIRSTMISMATCHOREOSINDEX_VUI
[VEC_FLOAT, vec_float, __builtin_vec_float]
vf __builtin_vec_float (vsi);
XVCVSXWSP
vf __builtin_vec_float (vui);
XVCVUXWSP
[VEC_FLOAT2, vec_float2, __builtin_vec_float2]
vf __builtin_vec_float2 (vsll, vsll);
FLOAT2_V2DI
vf __builtin_vec_float2 (vull, vull);
UNS_FLOAT2_V2DI
vf __builtin_vec_float2 (vd, vd);
FLOAT2_V2DF
[VEC_FLOATE, vec_floate, __builtin_vec_floate]
vf __builtin_vec_floate (vsll);
FLOATE_V2DI
vf __builtin_vec_floate (vull);
UNS_FLOATE_V2DI
vf __builtin_vec_floate (vd);
FLOATE_V2DF
[VEC_FLOATO, vec_floato, __builtin_vec_floato]
vf __builtin_vec_floato (vsll);
FLOATO_V2DI
vf __builtin_vec_floato (vull);
UNS_FLOATO_V2DI
vf __builtin_vec_floato (vd);
FLOATO_V2DF
[VEC_FLOOR, vec_floor, __builtin_vec_floor]
vf __builtin_vec_floor (vf);
VRFIM
vd __builtin_vec_floor (vd);
XVRDPIM
[VEC_GB, vec_gb, __builtin_vec_vgbbd]
vsc __builtin_vec_vgbbd (vsc);
VGBBD VGBBD_S
vuc __builtin_vec_vgbbd (vuc);
VGBBD VGBBD_U
[VEC_GENBM, vec_genbm, __builtin_vec_mtvsrbm]
vuc __builtin_vec_mtvsrbm (unsigned long long);
MTVSRBM
[VEC_GENHM, vec_genhm, __builtin_vec_mtvsrhm]
vus __builtin_vec_mtvsrhm (unsigned long long);
MTVSRHM
[VEC_GENWM, vec_genwm, __builtin_vec_mtvsrwm]
vui __builtin_vec_mtvsrwm (unsigned long long);
MTVSRWM
[VEC_GENDM, vec_gendm, __builtin_vec_mtvsrdm]
vull __builtin_vec_mtvsrdm (unsigned long long);
MTVSRDM
[VEC_GENQM, vec_genqm, __builtin_vec_mtvsrqm]
vuq __builtin_vec_mtvsrqm (unsigned long long);
MTVSRQM
[VEC_GENPCVM, vec_genpcvm, __builtin_vec_xxgenpcvm]
vuc __builtin_vec_xxgenpcvm (vuc, const int);
XXGENPCVM_V16QI
vus __builtin_vec_xxgenpcvm (vus, const int);
XXGENPCVM_V8HI
vui __builtin_vec_xxgenpcvm (vui, const int);
XXGENPCVM_V4SI
vull __builtin_vec_xxgenpcvm (vull, const int);
XXGENPCVM_V2DI
[VEC_GNB, vec_gnb, __builtin_vec_gnb]
unsigned long long __builtin_vec_gnb (vuq, const int);
VGNB
; There are no actual builtins for vec_insert. There is special handling for
; this in altivec_resolve_overloaded_builtin in rs6000-c.cc, where the call
; is replaced by "pointer tricks." The single overload here causes
; __builtin_vec_insert to be registered with the front end so this can happen.
[VEC_INSERT, vec_insert, __builtin_vec_insert]
vsi __builtin_vec_insert (vsi, vsi, signed int);
XXPERMDI_4SI INSERT_FAKERY
[VEC_INSERTH, vec_inserth, __builtin_vec_inserth]
vuc __builtin_vec_inserth (unsigned char, vuc, unsigned int);
VINSERTGPRBR
vuc __builtin_vec_inserth (vuc, vuc, unsigned int);
VINSERTVPRBR
vus __builtin_vec_inserth (unsigned short, vus, unsigned int);
VINSERTGPRHR
vus __builtin_vec_inserth (vus, vus, unsigned int);
VINSERTVPRHR
vui __builtin_vec_inserth (unsigned int, vui, unsigned int);
VINSERTGPRWR
vui __builtin_vec_inserth (vui, vui, unsigned int);
VINSERTVPRWR
vull __builtin_vec_inserth (unsigned long long, vull, unsigned int);
VINSERTGPRDR
[VEC_INSERTL, vec_insertl, __builtin_vec_insertl]
vuc __builtin_vec_insertl (unsigned char, vuc, unsigned int);
VINSERTGPRBL
vuc __builtin_vec_insertl (vuc, vuc, unsigned int);
VINSERTVPRBL
vus __builtin_vec_insertl (unsigned short, vus, unsigned int);
VINSERTGPRHL
vus __builtin_vec_insertl (vus, vus, unsigned int);
VINSERTVPRHL
vui __builtin_vec_insertl (unsigned int, vui, unsigned int);
VINSERTGPRWL
vui __builtin_vec_insertl (vui, vui, unsigned int);
VINSERTVPRWL
vull __builtin_vec_insertl (unsigned long long, vull, unsigned int);
VINSERTGPRDL
[VEC_INSERT4B, vec_insert4b, __builtin_vec_insert4b]
vuc __builtin_vec_insert4b (vsi, vuc, const int);
INSERT4B INSERT4B_S
vuc __builtin_vec_insert4b (vui, vuc, const int);
INSERT4B INSERT4B_U
[VEC_LD, vec_ld, __builtin_vec_ld]
vsc __builtin_vec_ld (signed long, const vsc *);
LVX_V16QI LVX_V16QI_VSC
vsc __builtin_vec_ld (signed long, const signed char *);
LVX_V16QI LVX_V16QI_SC
vuc __builtin_vec_ld (signed long, const vuc *);
LVX_V16QI LVX_V16QI_VUC
vuc __builtin_vec_ld (signed long, const unsigned char *);
LVX_V16QI LVX_V16QI_UC
vbc __builtin_vec_ld (signed long, const vbc *);
LVX_V16QI LVX_V16QI_VBC
vss __builtin_vec_ld (signed long, const vss *);
LVX_V8HI LVX_V8HI_VSS
vss __builtin_vec_ld (signed long, const signed short *);
LVX_V8HI LVX_V8HI_SS
vus __builtin_vec_ld (signed long, const vus *);
LVX_V8HI LVX_V8HI_VUS
vus __builtin_vec_ld (signed long, const unsigned short *);
LVX_V8HI LVX_V8HI_US
vbs __builtin_vec_ld (signed long, const vbs *);
LVX_V8HI LVX_V8HI_VBS
vp __builtin_vec_ld (signed long, const vp *);
LVX_V8HI LVX_V8HI_VP
vsi __builtin_vec_ld (signed long, const vsi *);
LVX_V4SI LVX_V4SI_VSI
vsi __builtin_vec_ld (signed long, const signed int *);
LVX_V4SI LVX_V4SI_SI
vui __builtin_vec_ld (signed long, const vui *);
LVX_V4SI LVX_V4SI_VUI
vui __builtin_vec_ld (signed long, const unsigned int *);
LVX_V4SI LVX_V4SI_UI
vbi __builtin_vec_ld (signed long, const vbi *);
LVX_V4SI LVX_V4SI_VBI
vsll __builtin_vec_ld (signed long, const vsll *);
LVX_V2DI LVX_V2DI_VSLL
vsll __builtin_vec_ld (signed long, const signed long long *);
LVX_V2DI LVX_V2DI_SLL
vull __builtin_vec_ld (signed long, const vull *);
LVX_V2DI LVX_V2DI_VULL
vull __builtin_vec_ld (signed long, const unsigned long long *);
LVX_V2DI LVX_V2DI_ULL
vbll __builtin_vec_ld (signed long, const vbll *);
LVX_V2DI LVX_V2DI_VBLL
vsq __builtin_vec_ld (signed long, const vsq *);
LVX_V1TI LVX_V1TI_VSQ
vuq __builtin_vec_ld (signed long, const vuq *);
LVX_V1TI LVX_V1TI_VUQ
vsq __builtin_vec_ld (signed long, const __int128 *);
LVX_V1TI LVX_V1TI_TI
vuq __builtin_vec_ld (signed long, const unsigned __int128 *);
LVX_V1TI LVX_V1TI_UTI
vf __builtin_vec_ld (signed long, const vf *);
LVX_V4SF LVX_V4SF_VF
vf __builtin_vec_ld (signed long, const float *);
LVX_V4SF LVX_V4SF_F
vd __builtin_vec_ld (signed long, const vd *);
LVX_V2DF LVX_V2DF_VD
vd __builtin_vec_ld (signed long, const double *);
LVX_V2DF LVX_V2DF_D
; The following variants are deprecated.
vsi __builtin_vec_ld (signed long, const long *);
LVX_V4SI LVX_V4SI_SL
vui __builtin_vec_ld (signed long, const unsigned long *);
LVX_V4SI LVX_V4SI_UL
[VEC_LDE, vec_lde, __builtin_vec_lde]
vsc __builtin_vec_lde (signed long, const signed char *);
LVEBX LVEBX_SC
vuc __builtin_vec_lde (signed long, const unsigned char *);
LVEBX LVEBX_UC
vss __builtin_vec_lde (signed long, const signed short *);
LVEHX LVEHX_SS
vus __builtin_vec_lde (signed long, const unsigned short *);
LVEHX LVEHX_US
vsi __builtin_vec_lde (signed long, const signed int *);
LVEWX LVEWX_SI
vui __builtin_vec_lde (signed long, const unsigned int *);
LVEWX LVEWX_UI
vf __builtin_vec_lde (signed long, const float *);
LVEWX LVEWX_F
; The following variants are deprecated.
vsi __builtin_vec_lde (signed long, const long *);
LVEWX LVEWX_SL
vui __builtin_vec_lde (signed long, const unsigned long *);
LVEWX LVEWX_UL
[VEC_LDL, vec_ldl, __builtin_vec_ldl]
vsc __builtin_vec_ldl (signed long, const vsc *);
LVXL_V16QI LVXL_V16QI_VSC
vsc __builtin_vec_ldl (signed long, const signed char *);
LVXL_V16QI LVXL_V16QI_SC
vuc __builtin_vec_ldl (signed long, const vuc *);
LVXL_V16QI LVXL_V16QI_VUC
vuc __builtin_vec_ldl (signed long, const unsigned char *);
LVXL_V16QI LVXL_V16QI_UC
vbc __builtin_vec_ldl (signed long, const vbc *);
LVXL_V16QI LVXL_V16QI_VBC
vss __builtin_vec_ldl (signed long, const vss *);
LVXL_V8HI LVXL_V8HI_VSS
vss __builtin_vec_ldl (signed long, const signed short *);
LVXL_V8HI LVXL_V8HI_SS
vus __builtin_vec_ldl (signed long, const vus *);
LVXL_V8HI LVXL_V8HI_VUS
vus __builtin_vec_ldl (signed long, const unsigned short *);
LVXL_V8HI LVXL_V8HI_US
vbs __builtin_vec_ldl (signed long, const vbs *);
LVXL_V8HI LVXL_V8HI_VBS
vp __builtin_vec_ldl (signed long, const vp *);
LVXL_V8HI LVXL_V8HI_VP
vsi __builtin_vec_ldl (signed long, const vsi *);
LVXL_V4SI LVXL_V4SI_VSI
vsi __builtin_vec_ldl (signed long, const signed int *);
LVXL_V4SI LVXL_V4SI_SI
vui __builtin_vec_ldl (signed long, const vui *);
LVXL_V4SI LVXL_V4SI_VUI
vui __builtin_vec_ldl (signed long, const unsigned int *);
LVXL_V4SI LVXL_V4SI_UI
vbi __builtin_vec_ldl (signed long, const vbi *);
LVXL_V4SI LVXL_V4SI_VBI
vsll __builtin_vec_ldl (signed long, const vsll *);
LVXL_V2DI LVXL_V2DI_VSLL
vsll __builtin_vec_ldl (signed long, const signed long long *);
LVXL_V2DI LVXL_V2DI_SLL
vull __builtin_vec_ldl (signed long, const vull *);
LVXL_V2DI LVXL_V2DI_VULL
vull __builtin_vec_ldl (signed long, const unsigned long long *);
LVXL_V2DI LVXL_V2DI_ULL
vbll __builtin_vec_ldl (signed long, const vbll *);
LVXL_V2DI LVXL_V2DI_VBLL
vf __builtin_vec_ldl (signed long, const vf *);
LVXL_V4SF LVXL_V4SF_VF
vf __builtin_vec_ldl (signed long, const float *);
LVXL_V4SF LVXL_V4SF_F
vd __builtin_vec_ldl (signed long, const vd *);
LVXL_V2DF LVXL_V2DF_VD
vd __builtin_vec_ldl (signed long, const double *);
LVXL_V2DF LVXL_V2DF_D
[VEC_LOGE, vec_loge, __builtin_vec_loge]
vf __builtin_vec_loge (vf);
VLOGEFP
[VEC_LVLX, vec_lvlx, __builtin_vec_lvlx, __PPU__]
vbc __builtin_vec_lvlx (signed long, const vbc *);
LVLX LVLX_VBC
vsc __builtin_vec_lvlx (signed long, const vsc *);
LVLX LVLX_VSC
vsc __builtin_vec_lvlx (signed long, const signed char *);
LVLX LVLX_SC
vuc __builtin_vec_lvlx (signed long, const vuc *);
LVLX LVLX_VUC
vuc __builtin_vec_lvlx (signed long, const unsigned char *);
LVLX LVLX_UC
vbs __builtin_vec_lvlx (signed long, const vbs *);
LVLX LVLX_VBS
vss __builtin_vec_lvlx (signed long, const vss *);
LVLX LVLX_VSS
vss __builtin_vec_lvlx (signed long, const signed short *);
LVLX LVLX_SS
vus __builtin_vec_lvlx (signed long, const vus *);
LVLX LVLX_VUS
vus __builtin_vec_lvlx (signed long, const unsigned short *);
LVLX LVLX_US
vp __builtin_vec_lvlx (signed long, const vp *);
LVLX LVLX_VP
vbi __builtin_vec_lvlx (signed long, const vbi *);
LVLX LVLX_VBI
vsi __builtin_vec_lvlx (signed long, const vsi *);
LVLX LVLX_VSI
vsi __builtin_vec_lvlx (signed long, const signed int *);
LVLX LVLX_SI
vui __builtin_vec_lvlx (signed long, const vui *);
LVLX LVLX_VUI
vui __builtin_vec_lvlx (signed long, const unsigned int *);
LVLX LVLX_UI
vf __builtin_vec_lvlx (signed long, const vf *);
LVLX LVLX_VF
vf __builtin_vec_lvlx (signed long, const float *);
LVLX LVLX_F
[VEC_LVLXL, vec_lvlxl, __builtin_vec_lvlxl, __PPU__]
vbc __builtin_vec_lvlxl (signed long, const vbc *);
LVLXL LVLXL_VBC
vsc __builtin_vec_lvlxl (signed long, const vsc *);
LVLXL LVLXL_VSC
vsc __builtin_vec_lvlxl (signed long, const signed char *);
LVLXL LVLXL_SC
vuc __builtin_vec_lvlxl (signed long, const vuc *);
LVLXL LVLXL_VUC
vuc __builtin_vec_lvlxl (signed long, const unsigned char *);
LVLXL LVLXL_UC
vbs __builtin_vec_lvlxl (signed long, const vbs *);
LVLXL LVLXL_VBS
vss __builtin_vec_lvlxl (signed long, const vss *);
LVLXL LVLXL_VSS
vss __builtin_vec_lvlxl (signed long, const signed short *);
LVLXL LVLXL_SS
vus __builtin_vec_lvlxl (signed long, const vus *);
LVLXL LVLXL_VUS
vus __builtin_vec_lvlxl (signed long, const unsigned short *);
LVLXL LVLXL_US
vp __builtin_vec_lvlxl (signed long, const vp *);
LVLXL LVLXL_VP
vbi __builtin_vec_lvlxl (signed long, const vbi *);
LVLXL LVLXL_VBI
vsi __builtin_vec_lvlxl (signed long, const vsi *);
LVLXL LVLXL_VSI
vsi __builtin_vec_lvlxl (signed long, const signed int *);
LVLXL LVLXL_SI
vui __builtin_vec_lvlxl (signed long, const vui *);
LVLXL LVLXL_VUI
vui __builtin_vec_lvlxl (signed long, const unsigned int *);
LVLXL LVLXL_UI
vf __builtin_vec_lvlxl (signed long, const vf *);
LVLXL LVLXL_VF
vf __builtin_vec_lvlxl (signed long, const float *);
LVLXL LVLXL_F
[VEC_LVRX, vec_lvrx, __builtin_vec_lvrx, __PPU__]
vbc __builtin_vec_lvrx (signed long, const vbc *);
LVRX LVRX_VBC
vsc __builtin_vec_lvrx (signed long, const vsc *);
LVRX LVRX_VSC
vsc __builtin_vec_lvrx (signed long, const signed char *);
LVRX LVRX_SC
vuc __builtin_vec_lvrx (signed long, const vuc *);
LVRX LVRX_VUC
vuc __builtin_vec_lvrx (signed long, const unsigned char *);
LVRX LVRX_UC
vbs __builtin_vec_lvrx (signed long, const vbs *);
LVRX LVRX_VBS
vss __builtin_vec_lvrx (signed long, const vss *);
LVRX LVRX_VSS
vss __builtin_vec_lvrx (signed long, const signed short *);
LVRX LVRX_SS
vus __builtin_vec_lvrx (signed long, const vus *);
LVRX LVRX_VUS
vus __builtin_vec_lvrx (signed long, const unsigned short *);
LVRX LVRX_US
vp __builtin_vec_lvrx (signed long, const vp *);
LVRX LVRX_VP
vbi __builtin_vec_lvrx (signed long, const vbi *);
LVRX LVRX_VBI
vsi __builtin_vec_lvrx (signed long, const vsi *);
LVRX LVRX_VSI
vsi __builtin_vec_lvrx (signed long, const signed int *);
LVRX LVRX_SI
vui __builtin_vec_lvrx (signed long, const vui *);
LVRX LVRX_VUI
vui __builtin_vec_lvrx (signed long, const unsigned int *);
LVRX LVRX_UI
vf __builtin_vec_lvrx (signed long, const vf *);
LVRX LVRX_VF
vf __builtin_vec_lvrx (signed long, const float *);
LVRX LVRX_F
[VEC_LVRXL, vec_lvrxl, __builtin_vec_lvrxl, __PPU__]
vbc __builtin_vec_lvrxl (signed long, const vbc *);
LVRXL LVRXL_VBC
vsc __builtin_vec_lvrxl (signed long, const vsc *);
LVRXL LVRXL_VSC
vsc __builtin_vec_lvrxl (signed long, const signed char *);
LVRXL LVRXL_SC
vuc __builtin_vec_lvrxl (signed long, const vuc *);
LVRXL LVRXL_VUC
vuc __builtin_vec_lvrxl (signed long, const unsigned char *);
LVRXL LVRXL_UC
vbs __builtin_vec_lvrxl (signed long, const vbs *);
LVRXL LVRXL_VBS
vss __builtin_vec_lvrxl (signed long, const vss *);
LVRXL LVRXL_VSS
vss __builtin_vec_lvrxl (signed long, const signed short *);
LVRXL LVRXL_SS
vus __builtin_vec_lvrxl (signed long, const vus *);
LVRXL LVRXL_VUS
vus __builtin_vec_lvrxl (signed long, const unsigned short *);
LVRXL LVRXL_US
vp __builtin_vec_lvrxl (signed long, const vp *);
LVRXL LVRXL_VP
vbi __builtin_vec_lvrxl (signed long, const vbi *);
LVRXL LVRXL_VBI
vsi __builtin_vec_lvrxl (signed long, const vsi *);
LVRXL LVRXL_VSI
vsi __builtin_vec_lvrxl (signed long, const signed int *);
LVRXL LVRXL_SI
vui __builtin_vec_lvrxl (signed long, const vui *);
LVRXL LVRXL_VUI
vui __builtin_vec_lvrxl (signed long, const unsigned int *);
LVRXL LVRXL_UI
vf __builtin_vec_lvrxl (signed long, const vf *);
LVRXL LVRXL_VF
vf __builtin_vec_lvrxl (signed long, const float *);
LVRXL LVRXL_F
[VEC_LVSL, vec_lvsl, __builtin_vec_lvsl]
vuc __builtin_vec_lvsl (signed long, const unsigned char *);
LVSL LVSL_UC
vuc __builtin_vec_lvsl (signed long, const signed char *);
LVSL LVSL_SC
vuc __builtin_vec_lvsl (signed long, const char *);
LVSL LVSL_STR
vuc __builtin_vec_lvsl (signed long, const unsigned short *);
LVSL LVSL_US
vuc __builtin_vec_lvsl (signed long, const signed short *);
LVSL LVSL_SS
vuc __builtin_vec_lvsl (signed long, const unsigned int *);
LVSL LVSL_UI
vuc __builtin_vec_lvsl (signed long, const signed int *);
LVSL LVSL_SI
vuc __builtin_vec_lvsl (signed long, const unsigned long *);
LVSL LVSL_UL
vuc __builtin_vec_lvsl (signed long, const signed long *);
LVSL LVSL_SL
vuc __builtin_vec_lvsl (signed long, const unsigned long long *);
LVSL LVSL_ULL
vuc __builtin_vec_lvsl (signed long, const signed long long *);
LVSL LVSL_SLL
vuc __builtin_vec_lvsl (signed long, const float *);
LVSL LVSL_F
vuc __builtin_vec_lvsl (signed long, const double *);
LVSL LVSL_D
[VEC_LVSR, vec_lvsr, __builtin_vec_lvsr]
vuc __builtin_vec_lvsr (signed long, const unsigned char *);
LVSR LVSR_UC
vuc __builtin_vec_lvsr (signed long, const signed char *);
LVSR LVSR_SC
vuc __builtin_vec_lvsr (signed long, const char *);
LVSR LVSR_STR
vuc __builtin_vec_lvsr (signed long, const unsigned short *);
LVSR LVSR_US
vuc __builtin_vec_lvsr (signed long, const signed short *);
LVSR LVSR_SS
vuc __builtin_vec_lvsr (signed long, const unsigned int *);
LVSR LVSR_UI
vuc __builtin_vec_lvsr (signed long, const signed int *);
LVSR LVSR_SI
vuc __builtin_vec_lvsr (signed long, const unsigned long *);
LVSR LVSR_UL
vuc __builtin_vec_lvsr (signed long, const signed long *);
LVSR LVSR_SL
vuc __builtin_vec_lvsr (signed long, const unsigned long long *);
LVSR LVSR_ULL
vuc __builtin_vec_lvsr (signed long, const signed long long *);
LVSR LVSR_SLL
vuc __builtin_vec_lvsr (signed long, const float *);
LVSR LVSR_F
vuc __builtin_vec_lvsr (signed long, const double *);
LVSR LVSR_D
[VEC_LXVL, vec_xl_len, __builtin_vec_lxvl]
vsc __builtin_vec_lxvl (const signed char *, unsigned int);
LXVL LXVL_VSC
vuc __builtin_vec_lxvl (const unsigned char *, unsigned int);
LXVL LXVL_VUC
vss __builtin_vec_lxvl (const signed short *, unsigned int);
LXVL LXVL_VSS
vus __builtin_vec_lxvl (const unsigned short *, unsigned int);
LXVL LXVL_VUS
vsi __builtin_vec_lxvl (const signed int *, unsigned int);
LXVL LXVL_VSI
vui __builtin_vec_lxvl (const unsigned int *, unsigned int);
LXVL LXVL_VUI
vsll __builtin_vec_lxvl (const signed long long *, unsigned int);
LXVL LXVL_VSLL
vull __builtin_vec_lxvl (const unsigned long long *, unsigned int);
LXVL LXVL_VULL
vsq __builtin_vec_lxvl (const signed __int128 *, unsigned int);
LXVL LXVL_VSQ
vuq __builtin_vec_lxvl (const unsigned __int128 *, unsigned int);
LXVL LXVL_VUQ
vf __builtin_vec_lxvl (const float *, unsigned int);
LXVL LXVL_VF
vd __builtin_vec_lxvl (const double *, unsigned int);
LXVL LXVL_VD
[VEC_MADD, vec_madd, __builtin_vec_madd]
vss __builtin_vec_madd (vss, vss, vss);
VMLADDUHM VMLADDUHM_VSS
vss __builtin_vec_madd (vss, vus, vus);
VMLADDUHM VMLADDUHM_VSSVUS
vss __builtin_vec_madd (vus, vss, vss);
VMLADDUHM VMLADDUHM_VUSVSS
vus __builtin_vec_madd (vus, vus, vus);
VMLADDUHM VMLADDUHM_VUS
vf __builtin_vec_madd (vf, vf, vf);
VMADDFP
vd __builtin_vec_madd (vd, vd, vd);
XVMADDDP
[VEC_MADDS, vec_madds, __builtin_vec_madds]
vss __builtin_vec_madds (vss, vss, vss);
VMHADDSHS
[VEC_MAX, vec_max, __builtin_vec_max]
vsc __builtin_vec_max (vsc, vsc);
VMAXSB
vuc __builtin_vec_max (vuc, vuc);
VMAXUB
vss __builtin_vec_max (vss, vss);
VMAXSH
vus __builtin_vec_max (vus, vus);
VMAXUH
vsi __builtin_vec_max (vsi, vsi);
VMAXSW
vui __builtin_vec_max (vui, vui);
VMAXUW
vsll __builtin_vec_max (vsll, vsll);
VMAXSD
vull __builtin_vec_max (vull, vull);
VMAXUD
vf __builtin_vec_max (vf, vf);
VMAXFP
vd __builtin_vec_max (vd, vd);
XVMAXDP
; The following variants are deprecated.
vsc __builtin_vec_max (vsc, vbc);
VMAXSB VMAXSB_SB
vsc __builtin_vec_max (vbc, vsc);
VMAXSB VMAXSB_BS
vuc __builtin_vec_max (vuc, vbc);
VMAXUB VMAXUB_UB
vuc __builtin_vec_max (vbc, vuc);
VMAXUB VMAXUB_BU
vss __builtin_vec_max (vss, vbs);
VMAXSH VMAXSH_SB
vss __builtin_vec_max (vbs, vss);
VMAXSH VMAXSH_BS
vus __builtin_vec_max (vus, vbs);
VMAXUH VMAXUH_UB
vus __builtin_vec_max (vbs, vus);
VMAXUH VMAXUH_BU
vsi __builtin_vec_max (vsi, vbi);
VMAXSW VMAXSW_SB
vsi __builtin_vec_max (vbi, vsi);
VMAXSW VMAXSW_BS
vui __builtin_vec_max (vui, vbi);
VMAXUW VMAXUW_UB
vui __builtin_vec_max (vbi, vui);
VMAXUW VMAXUW_BU
vsll __builtin_vec_max (vsll, vbll);
VMAXSD VMAXSD_SB
vsll __builtin_vec_max (vbll, vsll);
VMAXSD VMAXSD_BS
vull __builtin_vec_max (vull, vbll);
VMAXUD VMAXUD_UB
vull __builtin_vec_max (vbll, vull);
VMAXUD VMAXUD_BU
[VEC_MERGEE, vec_mergee, __builtin_vec_vmrgew]
vsi __builtin_vec_vmrgew (vsi, vsi);
VMRGEW_V4SI VMRGEW_VSI
vui __builtin_vec_vmrgew (vui, vui);
VMRGEW_V4SI VMRGEW_VUI
vbi __builtin_vec_vmrgew (vbi, vbi);
VMRGEW_V4SI VMRGEW_VBI
vsll __builtin_vec_vmrgew (vsll, vsll);
VMRGEW_V2DI VMRGEW_VSLL
vull __builtin_vec_vmrgew (vull, vull);
VMRGEW_V2DI VMRGEW_VULL
vbll __builtin_vec_vmrgew (vbll, vbll);
VMRGEW_V2DI VMRGEW_VBLL
vf __builtin_vec_vmrgew (vf, vf);
VMRGEW_V4SF
vd __builtin_vec_vmrgew (vd, vd);
VMRGEW_V2DF
[VEC_MERGEH, vec_mergeh, __builtin_vec_mergeh]
vbc __builtin_vec_mergeh (vbc, vbc);
VMRGHB VMRGHB_VBC
vsc __builtin_vec_mergeh (vsc, vsc);
VMRGHB VMRGHB_VSC
vuc __builtin_vec_mergeh (vuc, vuc);
VMRGHB VMRGHB_VUC
vbs __builtin_vec_mergeh (vbs, vbs);
VMRGHH VMRGHH_VBS
vss __builtin_vec_mergeh (vss, vss);
VMRGHH VMRGHH_VSS
vus __builtin_vec_mergeh (vus, vus);
VMRGHH VMRGHH_VUS
vp __builtin_vec_mergeh (vp, vp);
VMRGHH VMRGHH_VP
vbi __builtin_vec_mergeh (vbi, vbi);
VMRGHW VMRGHW_VBI
vsi __builtin_vec_mergeh (vsi, vsi);
VMRGHW VMRGHW_VSI
vui __builtin_vec_mergeh (vui, vui);
VMRGHW VMRGHW_VUI
vbll __builtin_vec_mergeh (vbll, vbll);
VEC_MERGEH_V2DI VEC_MERGEH_VBLL
vsll __builtin_vec_mergeh (vsll, vsll);
VEC_MERGEH_V2DI VEC_MERGEH_VSLL
vull __builtin_vec_mergeh (vull, vull);
VEC_MERGEH_V2DI VEC_MERGEH_VULL
vf __builtin_vec_mergeh (vf, vf);
VMRGHW VMRGHW_VF
vd __builtin_vec_mergeh (vd, vd);
VEC_MERGEH_V2DF
; The following variants are deprecated.
vsll __builtin_vec_mergeh (vsll, vbll);
VEC_MERGEH_V2DI VEC_MERGEH_VSLL_VBLL
vsll __builtin_vec_mergeh (vbll, vsll);
VEC_MERGEH_V2DI VEC_MERGEH_VBLL_VSLL
vull __builtin_vec_mergeh (vull, vbll);
VEC_MERGEH_V2DI VEC_MERGEH_VULL_VBLL
vull __builtin_vec_mergeh (vbll, vull);
VEC_MERGEH_V2DI VEC_MERGEH_VBLL_VULL
[VEC_MERGEL, vec_mergel, __builtin_vec_mergel]
vbc __builtin_vec_mergel (vbc, vbc);
VMRGLB VMRGLB_VBC
vsc __builtin_vec_mergel (vsc, vsc);
VMRGLB VMRGLB_VSC
vuc __builtin_vec_mergel (vuc, vuc);
VMRGLB VMRGLB_VUC
vbs __builtin_vec_mergel (vbs, vbs);
VMRGLH VMRGLH_VBS
vss __builtin_vec_mergel (vss, vss);
VMRGLH VMRGLH_VSS
vus __builtin_vec_mergel (vus, vus);
VMRGLH VMRGLH_VUS
vp __builtin_vec_mergel (vp, vp);
VMRGLH VMRGLH_VP
vbi __builtin_vec_mergel (vbi, vbi);
VMRGLW VMRGLW_VBI
vsi __builtin_vec_mergel (vsi, vsi);
VMRGLW VMRGLW_VSI
vui __builtin_vec_mergel (vui, vui);
VMRGLW VMRGLW_VUI
vbll __builtin_vec_mergel (vbll, vbll);
VEC_MERGEL_V2DI VEC_MERGEL_VBLL
vsll __builtin_vec_mergel (vsll, vsll);
VEC_MERGEL_V2DI VEC_MERGEL_VSLL
vull __builtin_vec_mergel (vull, vull);
VEC_MERGEL_V2DI VEC_MERGEL_VULL
vf __builtin_vec_mergel (vf, vf);
VMRGLW VMRGLW_VF
vd __builtin_vec_mergel (vd, vd);
VEC_MERGEL_V2DF
; The following variants are deprecated.
vsll __builtin_vec_mergel (vsll, vbll);
VEC_MERGEL_V2DI VEC_MERGEL_VSLL_VBLL
vsll __builtin_vec_mergel (vbll, vsll);
VEC_MERGEL_V2DI VEC_MERGEL_VBLL_VSLL
vull __builtin_vec_mergel (vull, vbll);
VEC_MERGEL_V2DI VEC_MERGEL_VULL_VBLL
vull __builtin_vec_mergel (vbll, vull);
VEC_MERGEL_V2DI VEC_MERGEL_VBLL_VULL
[VEC_MERGEO, vec_mergeo, __builtin_vec_vmrgow]
vsi __builtin_vec_vmrgow (vsi, vsi);
VMRGOW_V4SI VMRGOW_VSI
vui __builtin_vec_vmrgow (vui, vui);
VMRGOW_V4SI VMRGOW_VUI
vbi __builtin_vec_vmrgow (vbi, vbi);
VMRGOW_V4SI VMRGOW_VBI
vsll __builtin_vec_vmrgow (vsll, vsll);
VMRGOW_V2DI VMRGOW_VSLL
vull __builtin_vec_vmrgow (vull, vull);
VMRGOW_V2DI VMRGOW_VULL
vbll __builtin_vec_vmrgow (vbll, vbll);
VMRGOW_V2DI VMRGOW_VBLL
vf __builtin_vec_vmrgow (vf, vf);
VMRGOW_V4SF
vd __builtin_vec_vmrgow (vd, vd);
VMRGOW_V2DF
[VEC_MFVSCR, vec_mfvscr, __builtin_vec_mfvscr]
vus __builtin_vec_mfvscr ();
MFVSCR
[VEC_MIN, vec_min, __builtin_vec_min]
vsc __builtin_vec_min (vsc, vsc);
VMINSB
vuc __builtin_vec_min (vuc, vuc);
VMINUB
vss __builtin_vec_min (vss, vss);
VMINSH
vus __builtin_vec_min (vus, vus);
VMINUH
vsi __builtin_vec_min (vsi, vsi);
VMINSW
vui __builtin_vec_min (vui, vui);
VMINUW
vsll __builtin_vec_min (vsll, vsll);
VMINSD
vull __builtin_vec_min (vull, vull);
VMINUD
vf __builtin_vec_min (vf, vf);
VMINFP
vd __builtin_vec_min (vd, vd);
XVMINDP
; The following variants are deprecated.
vsc __builtin_vec_min (vsc, vbc);
VMINSB VMINSB_SB
vsc __builtin_vec_min (vbc, vsc);
VMINSB VMINSB_BS
vuc __builtin_vec_min (vuc, vbc);
VMINUB VMINUB_UB
vuc __builtin_vec_min (vbc, vuc);
VMINUB VMINUB_BU
vss __builtin_vec_min (vss, vbs);
VMINSH VMINSH_SB
vss __builtin_vec_min (vbs, vss);
VMINSH VMINSH_BS
vus __builtin_vec_min (vus, vbs);
VMINUH VMINUH_UB
vus __builtin_vec_min (vbs, vus);
VMINUH VMINUH_BU
vsi __builtin_vec_min (vsi, vbi);
VMINSW VMINSW_SB
vsi __builtin_vec_min (vbi, vsi);
VMINSW VMINSW_BS
vui __builtin_vec_min (vui, vbi);
VMINUW VMINUW_UB
vui __builtin_vec_min (vbi, vui);
VMINUW VMINUW_BU
vsll __builtin_vec_min (vsll, vbll);
VMINSD VMINSD_SB
vsll __builtin_vec_min (vbll, vsll);
VMINSD VMINSD_BS
vull __builtin_vec_min (vull, vbll);
VMINUD VMINUD_UB
vull __builtin_vec_min (vbll, vull);
VMINUD VMINUD_BU
[VEC_MLADD, vec_mladd, __builtin_vec_mladd]
vss __builtin_vec_mladd (vss, vss, vss);
VMLADDUHM VMLADDUHM_VSS2
vss __builtin_vec_mladd (vss, vus, vus);
VMLADDUHM VMLADDUHM_VSSVUS2
vss __builtin_vec_mladd (vus, vss, vss);
VMLADDUHM VMLADDUHM_VUSVSS2
vus __builtin_vec_mladd (vus, vus, vus);
VMLADDUHM VMLADDUHM_VUS2
[VEC_MOD, vec_mod, __builtin_vec_mod]
vsi __builtin_vec_mod (vsi, vsi);
VMODSW
vui __builtin_vec_mod (vui, vui);
VMODUW
vsll __builtin_vec_mod (vsll, vsll);
VMODSD
vull __builtin_vec_mod (vull, vull);
VMODUD
vsq __builtin_vec_mod (vsq, vsq);
MODS_V1TI
vuq __builtin_vec_mod (vuq, vuq);
MODU_V1TI
[VEC_MRADDS, vec_mradds, __builtin_vec_mradds]
vss __builtin_vec_mradds (vss, vss, vss);
VMHRADDSHS
[VEC_MSUB, vec_msub, __builtin_vec_msub]
vf __builtin_vec_msub (vf, vf, vf);
XVMSUBSP
vd __builtin_vec_msub (vd, vd, vd);
XVMSUBDP
[VEC_MSUM, vec_msum, __builtin_vec_msum]
vui __builtin_vec_msum (vuc, vuc, vui);
VMSUMUBM
vsi __builtin_vec_msum (vsc, vuc, vsi);
VMSUMMBM
vui __builtin_vec_msum (vus, vus, vui);
VMSUMUHM
vsi __builtin_vec_msum (vss, vss, vsi);
VMSUMSHM
vsq __builtin_vec_msum (vsll, vsll, vsq);
VMSUMUDM VMSUMUDM_S
vuq __builtin_vec_msum (vull, vull, vuq);
VMSUMUDM VMSUMUDM_U
[VEC_MSUMC, vec_msumc, __builtin_vec_msumc]
vuq __builtin_vec_msumc (vull, vull, vuq);
VMSUMCUD
[VEC_MSUMS, vec_msums, __builtin_vec_msums]
vui __builtin_vec_msums (vus, vus, vui);
VMSUMUHS
vsi __builtin_vec_msums (vss, vss, vsi);
VMSUMSHS
[VEC_MTVSCR, vec_mtvscr, __builtin_vec_mtvscr]
void __builtin_vec_mtvscr (vbc);
MTVSCR MTVSCR_VBC
void __builtin_vec_mtvscr (vsc);
MTVSCR MTVSCR_VSC
void __builtin_vec_mtvscr (vuc);
MTVSCR MTVSCR_VUC
void __builtin_vec_mtvscr (vbs);
MTVSCR MTVSCR_VBS
void __builtin_vec_mtvscr (vss);
MTVSCR MTVSCR_VSS
void __builtin_vec_mtvscr (vus);
MTVSCR MTVSCR_VUS
void __builtin_vec_mtvscr (vp);
MTVSCR MTVSCR_VP
void __builtin_vec_mtvscr (vbi);
MTVSCR MTVSCR_VBI
void __builtin_vec_mtvscr (vsi);
MTVSCR MTVSCR_VSI
void __builtin_vec_mtvscr (vui);
MTVSCR MTVSCR_VUI
; Note that the entries for VEC_MUL are currently ignored. See rs6000-c.cc:
; altivec_resolve_overloaded_builtin, where there is special-case code for
; VEC_MUL. TODO: Is this really necessary? Investigate. Seven missing
; prototypes here...no corresponding builtins. Also added "vmulld" in P10
; which could be used instead of MUL_V2DI, conditionally?
[VEC_MUL, vec_mul, __builtin_vec_mul]
vsll __builtin_vec_mul (vsll, vsll);
MUL_V2DI
vf __builtin_vec_mul (vf, vf);
XVMULSP
vd __builtin_vec_mul (vd, vd);
XVMULDP
[VEC_MULE, vec_mule, __builtin_vec_mule]
vss __builtin_vec_mule (vsc, vsc);
VMULESB
vus __builtin_vec_mule (vuc, vuc);
VMULEUB
vsi __builtin_vec_mule (vss, vss);
VMULESH
vui __builtin_vec_mule (vus, vus);
VMULEUH
vsll __builtin_vec_mule (vsi, vsi);
VMULESW
vull __builtin_vec_mule (vui, vui);
VMULEUW
vsq __builtin_vec_mule (vsll, vsll);
VMULESD
vuq __builtin_vec_mule (vull, vull);
VMULEUD
[VEC_MULH, vec_mulh, __builtin_vec_mulh]
vsi __builtin_vec_mulh (vsi, vsi);
VMULHSW
vui __builtin_vec_mulh (vui, vui);
VMULHUW
vsll __builtin_vec_mulh (vsll, vsll);
VMULHSD
vull __builtin_vec_mulh (vull, vull);
VMULHUD
[VEC_MULO, vec_mulo, __builtin_vec_mulo]
vss __builtin_vec_mulo (vsc, vsc);
VMULOSB
vus __builtin_vec_mulo (vuc, vuc);
VMULOUB
vsi __builtin_vec_mulo (vss, vss);
VMULOSH
vui __builtin_vec_mulo (vus, vus);
VMULOUH
vsll __builtin_vec_mulo (vsi, vsi);
VMULOSW
vull __builtin_vec_mulo (vui, vui);
VMULOUW
vsq __builtin_vec_mulo (vsll, vsll);
VMULOSD
vuq __builtin_vec_mulo (vull, vull);
VMULOUD
[VEC_NABS, vec_nabs, __builtin_vec_nabs]
vsc __builtin_vec_nabs (vsc);
NABS_V16QI
vss __builtin_vec_nabs (vss);
NABS_V8HI
vsi __builtin_vec_nabs (vsi);
NABS_V4SI
vsll __builtin_vec_nabs (vsll);
NABS_V2DI
vf __builtin_vec_nabs (vf);
NABS_V4SF
vd __builtin_vec_nabs (vd);
NABS_V2DF
[VEC_NAND, vec_nand, __builtin_vec_nand]
vsc __builtin_vec_nand (vsc, vsc);
NAND_V16QI
vuc __builtin_vec_nand (vuc, vuc);
NAND_V16QI_UNS NAND_VUC
vbc __builtin_vec_nand (vbc, vbc);
NAND_V16QI_UNS NAND_VBC
vss __builtin_vec_nand (vss, vss);
NAND_V8HI
vus __builtin_vec_nand (vus, vus);
NAND_V8HI_UNS NAND_VUS
vbs __builtin_vec_nand (vbs, vbs);
NAND_V8HI_UNS NAND_VBS
vsi __builtin_vec_nand (vsi, vsi);
NAND_V4SI
vui __builtin_vec_nand (vui, vui);
NAND_V4SI_UNS NAND_VUI
vbi __builtin_vec_nand (vbi, vbi);
NAND_V4SI_UNS NAND_VBI
vsll __builtin_vec_nand (vsll, vsll);
NAND_V2DI
vull __builtin_vec_nand (vull, vull);
NAND_V2DI_UNS NAND_VULL
vbll __builtin_vec_nand (vbll, vbll);
NAND_V2DI_UNS NAND_VBLL
vf __builtin_vec_nand (vf, vf);
NAND_V4SF
vd __builtin_vec_nand (vd, vd);
NAND_V2DF
; The following variants are deprecated.
vsc __builtin_vec_nand (vbc, vsc);
NAND_V16QI NAND_VBC_VSC
vsc __builtin_vec_nand (vsc, vbc);
NAND_V16QI NAND_VSC_VBC
vuc __builtin_vec_nand (vbc, vuc);
NAND_V16QI_UNS NAND_VBC_VUC
vuc __builtin_vec_nand (vuc, vbc);
NAND_V16QI_UNS NAND_VUC_VBC
vss __builtin_vec_nand (vbs, vss);
NAND_V8HI NAND_VBS_VSS
vss __builtin_vec_nand (vss, vbs);
NAND_V8HI NAND_VSS_VBS
vus __builtin_vec_nand (vbs, vus);
NAND_V8HI_UNS NAND_VBS_VUS
vus __builtin_vec_nand (vus, vbs);
NAND_V8HI_UNS NAND_VUS_VBS
vsi __builtin_vec_nand (vbi, vsi);
NAND_V4SI NAND_VBI_VSI
vsi __builtin_vec_nand (vsi, vbi);
NAND_V4SI NAND_VSI_VBI
vui __builtin_vec_nand (vbi, vui);
NAND_V4SI_UNS NAND_VBI_VUI
vui __builtin_vec_nand (vui, vbi);
NAND_V4SI_UNS NAND_VUI_VBI
vsll __builtin_vec_nand (vbll, vsll);
NAND_V2DI NAND_VBLL_VSLL
vsll __builtin_vec_nand (vsll, vbll);
NAND_V2DI NAND_VSLL_VBLL
vull __builtin_vec_nand (vbll, vull);
NAND_V2DI_UNS NAND_VBLL_VULL
vull __builtin_vec_nand (vull, vbll);
NAND_V2DI_UNS NAND_VULL_VBLL
[VEC_NCIPHER_BE, vec_ncipher_be, __builtin_vec_vncipher_be]
vuc __builtin_vec_vncipher_be (vuc, vuc);
VNCIPHER_BE
[VEC_NCIPHERLAST_BE, vec_ncipherlast_be, __builtin_vec_vncipherlast_be]
vuc __builtin_vec_vncipherlast_be (vuc, vuc);
VNCIPHERLAST_BE
[VEC_NEARBYINT, vec_nearbyint, __builtin_vec_nearbyint]
vf __builtin_vec_nearbyint (vf);
XVRSPI XVRSPI_NBI
vd __builtin_vec_nearbyint (vd);
XVRDPI XVRDPI_NBI
[VEC_NEG, vec_neg, __builtin_vec_neg]
vsc __builtin_vec_neg (vsc);
NEG_V16QI
vss __builtin_vec_neg (vss);
NEG_V8HI
vsi __builtin_vec_neg (vsi);
NEG_V4SI
vsll __builtin_vec_neg (vsll);
NEG_V2DI
vf __builtin_vec_neg (vf);
NEG_V4SF
vd __builtin_vec_neg (vd);
NEG_V2DF
[VEC_NMADD, vec_nmadd, __builtin_vec_nmadd]
vf __builtin_vec_nmadd (vf, vf, vf);
XVNMADDSP
vd __builtin_vec_nmadd (vd, vd, vd);
XVNMADDDP
[VEC_NMSUB, vec_nmsub, __builtin_vec_nmsub]
vf __builtin_vec_nmsub (vf, vf, vf);
VNMSUBFP
vd __builtin_vec_nmsub (vd, vd, vd);
XVNMSUBDP
[VEC_NOR, vec_nor, __builtin_vec_nor]
vsc __builtin_vec_nor (vsc, vsc);
VNOR_V16QI
vuc __builtin_vec_nor (vuc, vuc);
VNOR_V16QI_UNS VNOR_V16QI_U
vbc __builtin_vec_nor (vbc, vbc);
VNOR_V16QI_UNS VNOR_V16QI_B
vss __builtin_vec_nor (vss, vss);
VNOR_V8HI
vus __builtin_vec_nor (vus, vus);
VNOR_V8HI_UNS VNOR_V8HI_U
vbs __builtin_vec_nor (vbs, vbs);
VNOR_V8HI_UNS VNOR_V8HI_B
vsi __builtin_vec_nor (vsi, vsi);
VNOR_V4SI
vui __builtin_vec_nor (vui, vui);
VNOR_V4SI_UNS VNOR_V4SI_U
vbi __builtin_vec_nor (vbi, vbi);
VNOR_V4SI_UNS VNOR_V4SI_B
vsll __builtin_vec_nor (vsll, vsll);
VNOR_V2DI
vull __builtin_vec_nor (vull, vull);
VNOR_V2DI_UNS VNOR_V2DI_U
vbll __builtin_vec_nor (vbll, vbll);
VNOR_V2DI_UNS VNOR_V2DI_B
vsq __builtin_vec_nor (vsq, vsq);
VNOR_V1TI VNOR_V1TI_S
vuq __builtin_vec_nor (vuq, vuq);
VNOR_V1TI_UNS VNOR_V1TI_U
vf __builtin_vec_nor (vf, vf);
VNOR_V4SF
vd __builtin_vec_nor (vd, vd);
VNOR_V2DF
; The following variants are deprecated.
vsll __builtin_vec_nor (vsll, vbll);
VNOR_V2DI VNOR_VSLL_VBLL
vsll __builtin_vec_nor (vbll, vsll);
VNOR_V2DI VNOR_VBLL_VSLL
vull __builtin_vec_nor (vull, vbll);
VNOR_V2DI_UNS VNOR_VULL_VBLL
vull __builtin_vec_nor (vbll, vull);
VNOR_V2DI_UNS VNOR_VBLL_VULL
vsq __builtin_vec_nor (vsq, vbq);
VNOR_V1TI VNOR_VSQ_VBQ
vsq __builtin_vec_nor (vbq, vsq);
VNOR_V1TI VNOR_VBQ_VSQ
vuq __builtin_vec_nor (vuq, vbq);
VNOR_V1TI_UNS VNOR_VUQ_VBQ
vuq __builtin_vec_nor (vbq, vuq);
VNOR_V1TI_UNS VNOR_VBQ_VUQ
[VEC_OR, vec_or, __builtin_vec_or]
vsc __builtin_vec_or (vsc, vsc);
VOR_V16QI
vuc __builtin_vec_or (vuc, vuc);
VOR_V16QI_UNS VOR_V16QI_U
vbc __builtin_vec_or (vbc, vbc);
VOR_V16QI_UNS VOR_V16QI_B
vss __builtin_vec_or (vss, vss);
VOR_V8HI
vus __builtin_vec_or (vus, vus);
VOR_V8HI_UNS VOR_V8HI_U
vbs __builtin_vec_or (vbs, vbs);
VOR_V8HI_UNS VOR_V8HI_B
vsi __builtin_vec_or (vsi, vsi);
VOR_V4SI
vui __builtin_vec_or (vui, vui);
VOR_V4SI_UNS VOR_V4SI_U
vbi __builtin_vec_or (vbi, vbi);
VOR_V4SI_UNS VOR_V4SI_B
vsll __builtin_vec_or (vsll, vsll);
VOR_V2DI
vull __builtin_vec_or (vull, vull);
VOR_V2DI_UNS VOR_V2DI_U
vbll __builtin_vec_or (vbll, vbll);
VOR_V2DI_UNS VOR_V2DI_B
vf __builtin_vec_or (vf, vf);
VOR_V4SF
vd __builtin_vec_or (vd, vd);
VOR_V2DF
; The following variants are deprecated.
vsc __builtin_vec_or (vsc, vbc);
VOR_V16QI VOR_VSC_VBC
vsc __builtin_vec_or (vbc, vsc);
VOR_V16QI VOR_VBC_VSC
vuc __builtin_vec_or (vuc, vbc);
VOR_V16QI_UNS VOR_V16QI_UB
vuc __builtin_vec_or (vbc, vuc);
VOR_V16QI_UNS VOR_V16QI_BU
vss __builtin_vec_or (vss, vbs);
VOR_V8HI VOR_VSS_VBS
vss __builtin_vec_or (vbs, vss);
VOR_V8HI VOR_VBS_VSS
vus __builtin_vec_or (vus, vbs);
VOR_V8HI_UNS VOR_V8HI_UB
vus __builtin_vec_or (vbs, vus);
VOR_V8HI_UNS VOR_V8HI_BU
vsi __builtin_vec_or (vsi, vbi);
VOR_V4SI VOR_VSI_VBI
vsi __builtin_vec_or (vbi, vsi);
VOR_V4SI VOR_VBI_VSI
vui __builtin_vec_or (vui, vbi);
VOR_V4SI_UNS VOR_V4SI_UB
vui __builtin_vec_or (vbi, vui);
VOR_V4SI_UNS VOR_V4SI_BU
vsll __builtin_vec_or (vsll, vbll);
VOR_V2DI VOR_VSLL_VBLL
vsll __builtin_vec_or (vbll, vsll);
VOR_V2DI VOR_VBLL_VSLL
vull __builtin_vec_or (vull, vbll);
VOR_V2DI_UNS VOR_V2DI_UB
vull __builtin_vec_or (vbll, vull);
VOR_V2DI_UNS VOR_V2DI_BU
vf __builtin_vec_or (vf, vbi);
VOR_V4SF VOR_VF_VBI
vf __builtin_vec_or (vbi, vf);
VOR_V4SF VOR_VBI_VF
vd __builtin_vec_or (vd, vbll);
VOR_V2DF VOR_VD_VBLL
vd __builtin_vec_or (vbll, vd);
VOR_V2DF VOR_VBLL_VD
[VEC_ORC, vec_orc, __builtin_vec_orc]
vsc __builtin_vec_orc (vsc, vsc);
ORC_V16QI
vuc __builtin_vec_orc (vuc, vuc);
ORC_V16QI_UNS ORC_VUC
vbc __builtin_vec_orc (vbc, vbc);
ORC_V16QI_UNS ORC_VBC
vss __builtin_vec_orc (vss, vss);
ORC_V8HI
vus __builtin_vec_orc (vus, vus);
ORC_V8HI_UNS ORC_VUS
vbs __builtin_vec_orc (vbs, vbs);
ORC_V8HI_UNS ORC_VBS
vsi __builtin_vec_orc (vsi, vsi);
ORC_V4SI
vui __builtin_vec_orc (vui, vui);
ORC_V4SI_UNS ORC_VUI
vbi __builtin_vec_orc (vbi, vbi);
ORC_V4SI_UNS ORC_VBI
vsll __builtin_vec_orc (vsll, vsll);
ORC_V2DI
vull __builtin_vec_orc (vull, vull);
ORC_V2DI_UNS ORC_VULL
vbll __builtin_vec_orc (vbll, vbll);
ORC_V2DI_UNS ORC_VBLL
vf __builtin_vec_orc (vf, vf);
ORC_V4SF
vd __builtin_vec_orc (vd, vd);
ORC_V2DF
; The following variants are deprecated.
vsc __builtin_vec_orc (vbc, vsc);
ORC_V16QI ORC_VBC_VSC
vsc __builtin_vec_orc (vsc, vbc);
ORC_V16QI ORC_VSC_VBC
vuc __builtin_vec_orc (vbc, vuc);
ORC_V16QI_UNS ORC_VBC_VUC
vuc __builtin_vec_orc (vuc, vbc);
ORC_V16QI_UNS ORC_VUC_VBC
vss __builtin_vec_orc (vbs, vss);
ORC_V8HI ORC_VBS_VSS
vss __builtin_vec_orc (vss, vbs);
ORC_V8HI ORC_VSS_VBS
vus __builtin_vec_orc (vbs, vus);
ORC_V8HI_UNS ORC_VBS_VUS
vus __builtin_vec_orc (vus, vbs);
ORC_V8HI_UNS ORC_VUS_VBS
vsi __builtin_vec_orc (vbi, vsi);
ORC_V4SI ORC_VBI_VSI
vsi __builtin_vec_orc (vsi, vbi);
ORC_V4SI ORC_VSI_VBI
vui __builtin_vec_orc (vbi, vui);
ORC_V4SI_UNS ORC_VBI_VUI
vui __builtin_vec_orc (vui, vbi);
ORC_V4SI_UNS ORC_VUI_VBI
vsll __builtin_vec_orc (vbll, vsll);
ORC_V2DI ORC_VBLL_VSLL
vsll __builtin_vec_orc (vsll, vbll);
ORC_V2DI ORC_VSLL_VBLL
vull __builtin_vec_orc (vbll, vull);
ORC_V2DI_UNS ORC_VBLL_VULL
vull __builtin_vec_orc (vull, vbll);
ORC_V2DI_UNS ORC_VULL_VBLL
[VEC_PACK, vec_pack, __builtin_vec_pack]
vsc __builtin_vec_pack (vss, vss);
VPKUHUM VPKUHUM_VSS
vuc __builtin_vec_pack (vus, vus);
VPKUHUM VPKUHUM_VUS
vbc __builtin_vec_pack (vbs, vbs);
VPKUHUM VPKUHUM_VBS
vss __builtin_vec_pack (vsi, vsi);
VPKUWUM VPKUWUM_VSI
vus __builtin_vec_pack (vui, vui);
VPKUWUM VPKUWUM_VUI
vbs __builtin_vec_pack (vbi, vbi);
VPKUWUM VPKUWUM_VBI
vsi __builtin_vec_pack (vsll, vsll);
VPKUDUM VPKUDUM_VSLL
vui __builtin_vec_pack (vull, vull);
VPKUDUM VPKUDUM_VULL
vbi __builtin_vec_pack (vbll, vbll);
VPKUDUM VPKUDUM_VBLL
vf __builtin_vec_pack (vd, vd);
FLOAT2_V2DF FLOAT2_V2DF_PACK
[VEC_PACKPX, vec_packpx, __builtin_vec_packpx]
vp __builtin_vec_packpx (vui, vui);
VPKPX
[VEC_PACKS, vec_packs, __builtin_vec_packs]
vuc __builtin_vec_packs (vus, vus);
VPKUHUS VPKUHUS_S
vsc __builtin_vec_packs (vss, vss);
VPKSHSS
vus __builtin_vec_packs (vui, vui);
VPKUWUS VPKUWUS_S
vss __builtin_vec_packs (vsi, vsi);
VPKSWSS
vui __builtin_vec_packs (vull, vull);
VPKUDUS VPKUDUS_S
vsi __builtin_vec_packs (vsll, vsll);
VPKSDSS
[VEC_PACKSU, vec_packsu, __builtin_vec_packsu]
vuc __builtin_vec_packsu (vus, vus);
VPKUHUS VPKUHUS_U
vuc __builtin_vec_packsu (vss, vss);
VPKSHUS
vus __builtin_vec_packsu (vui, vui);
VPKUWUS VPKUWUS_U
vus __builtin_vec_packsu (vsi, vsi);
VPKSWUS
vui __builtin_vec_packsu (vull, vull);
VPKUDUS VPKUDUS_U
vui __builtin_vec_packsu (vsll, vsll);
VPKSDUS
[VEC_PDEP, vec_pdep, __builtin_vec_vpdepd]
vull __builtin_vec_vpdepd (vull, vull);
VPDEPD
[VEC_PERM, vec_perm, __builtin_vec_perm]
vsc __builtin_vec_perm (vsc, vsc, vuc);
VPERM_16QI
vuc __builtin_vec_perm (vuc, vuc, vuc);
VPERM_16QI_UNS VPERM_16QI_VUC
vbc __builtin_vec_perm (vbc, vbc, vuc);
VPERM_16QI_UNS VPERM_16QI_VBC
vss __builtin_vec_perm (vss, vss, vuc);
VPERM_8HI
vus __builtin_vec_perm (vus, vus, vuc);
VPERM_8HI_UNS VPERM_8HI_VUS
vbs __builtin_vec_perm (vbs, vbs, vuc);
VPERM_8HI_UNS VPERM_8HI_VBS
vp __builtin_vec_perm (vp, vp, vuc);
VPERM_8HI_UNS VPERM_8HI_VP
vsi __builtin_vec_perm (vsi, vsi, vuc);
VPERM_4SI
vui __builtin_vec_perm (vui, vui, vuc);
VPERM_4SI_UNS VPERM_4SI_VUI
vbi __builtin_vec_perm (vbi, vbi, vuc);
VPERM_4SI_UNS VPERM_4SI_VBI
vsll __builtin_vec_perm (vsll, vsll, vuc);
VPERM_2DI
vull __builtin_vec_perm (vull, vull, vuc);
VPERM_2DI_UNS VPERM_2DI_VULL
vbll __builtin_vec_perm (vbll, vbll, vuc);
VPERM_2DI_UNS VPERM_2DI_VBLL
vf __builtin_vec_perm (vf, vf, vuc);
VPERM_4SF
vd __builtin_vec_perm (vd, vd, vuc);
VPERM_2DF
vsq __builtin_vec_perm (vsq, vsq, vuc);
VPERM_1TI
vuq __builtin_vec_perm (vuq, vuq, vuc);
VPERM_1TI_UNS
; The following variants are deprecated.
vsc __builtin_vec_perm (vsc, vuc, vuc);
VPERM_16QI VPERM_VSC_VUC_VUC
vbc __builtin_vec_perm (vbc, vbc, vbc);
VPERM_16QI VPERM_VBC_VBC_VBC
[VEC_PERMX, vec_permx, __builtin_vec_xxpermx]
vsc __builtin_vec_xxpermx (vsc, vsc, vuc, const int);
XXPERMX_UV2DI XXPERMX_VSC
vuc __builtin_vec_xxpermx (vuc, vuc, vuc, const int);
XXPERMX_UV2DI XXPERMX_VUC
vss __builtin_vec_xxpermx (vss, vss, vuc, const int);
XXPERMX_UV2DI XXPERMX_VSS
vus __builtin_vec_xxpermx (vus, vus, vuc, const int);
XXPERMX_UV2DI XXPERMX_VUS
vsi __builtin_vec_xxpermx (vsi, vsi, vuc, const int);
XXPERMX_UV2DI XXPERMX_VSI
vui __builtin_vec_xxpermx (vui, vui, vuc, const int);
XXPERMX_UV2DI XXPERMX_VUI
vsll __builtin_vec_xxpermx (vsll, vsll, vuc, const int);
XXPERMX_UV2DI XXPERMX_VSLL
vull __builtin_vec_xxpermx (vull, vull, vuc, const int);
XXPERMX_UV2DI XXPERMX_VULL
vf __builtin_vec_xxpermx (vf, vf, vuc, const int);
XXPERMX_UV2DI XXPERMX_VF
vd __builtin_vec_xxpermx (vd, vd, vuc, const int);
XXPERMX_UV2DI XXPERMX_VD
[VEC_PERMXOR, vec_permxor, __builtin_vec_vpermxor]
vsc __builtin_vec_vpermxor (vsc, vsc, vsc);
VPERMXOR VPERMXOR_VSC
vuc __builtin_vec_vpermxor (vuc, vuc, vuc);
VPERMXOR VPERMXOR_VUC
vbc __builtin_vec_vpermxor (vbc, vbc, vbc);
VPERMXOR VPERMXOR_VBC
[VEC_PEXT, vec_pext, __builtin_vec_vpextd]
vull __builtin_vec_vpextd (vull, vull);
VPEXTD
[VEC_PMSUM, vec_pmsum_be, __builtin_vec_vpmsum]
vus __builtin_vec_vpmsum (vuc, vuc);
VPMSUMB VPMSUMB_V
vui __builtin_vec_vpmsum (vus, vus);
VPMSUMH VPMSUMH_V
vull __builtin_vec_vpmsum (vui, vui);
VPMSUMW VPMSUMW_V
vuq __builtin_vec_vpmsum (vull, vull);
VPMSUMD VPMSUMD_V
[VEC_POPCNT, vec_popcnt, __builtin_vec_vpopcntu]
vuc __builtin_vec_vpopcntu (vsc);
VPOPCNTB
vuc __builtin_vec_vpopcntu (vuc);
VPOPCNTUB
vus __builtin_vec_vpopcntu (vss);
VPOPCNTH
vus __builtin_vec_vpopcntu (vus);
VPOPCNTUH
vui __builtin_vec_vpopcntu (vsi);
VPOPCNTW
vui __builtin_vec_vpopcntu (vui);
VPOPCNTUW
vull __builtin_vec_vpopcntu (vsll);
VPOPCNTD
vull __builtin_vec_vpopcntu (vull);
VPOPCNTUD
[VEC_PARITY_LSBB, vec_parity_lsbb, __builtin_vec_vparity_lsbb]
vui __builtin_vec_vparity_lsbb (vsi);
VPRTYBW VPRTYBW_S
vui __builtin_vec_vparity_lsbb (vui);
VPRTYBW VPRTYBW_U
vull __builtin_vec_vparity_lsbb (vsll);
VPRTYBD VPRTYBD_S
vull __builtin_vec_vparity_lsbb (vull);
VPRTYBD VPRTYBD_U
vuq __builtin_vec_vparity_lsbb (vsq);
VPRTYBQ VPRTYBQ_S
vuq __builtin_vec_vparity_lsbb (vuq);
VPRTYBQ VPRTYBQ_U
; There are no actual builtins for vec_promote. There is special handling for
; this in altivec_resolve_overloaded_builtin in rs6000-c.cc, where the call
; is replaced by a constructor. The single overload here causes
; __builtin_vec_promote to be registered with the front end so that can happen.
[VEC_PROMOTE, vec_promote, __builtin_vec_promote]
vsi __builtin_vec_promote (vsi, const int);
ABS_V4SI PROMOTE_FAKERY
[VEC_RE, vec_re, __builtin_vec_re]
vf __builtin_vec_re (vf);
VREFP
vd __builtin_vec_re (vd);
XVREDP
[VEC_RECIP, vec_recipdiv, __builtin_vec_recipdiv]
vf __builtin_vec_recipdiv (vf, vf);
RECIP_V4SF
vd __builtin_vec_recipdiv (vd, vd);
RECIP_V2DF
[VEC_REPLACE_ELT, vec_replace_elt, __builtin_vec_replace_elt]
vui __builtin_vec_replace_elt (vui, unsigned int, const int);
VREPLACE_ELT_UV4SI
vsi __builtin_vec_replace_elt (vsi, signed int, const int);
VREPLACE_ELT_V4SI
vull __builtin_vec_replace_elt (vull, unsigned long long, const int);
VREPLACE_ELT_UV2DI
vsll __builtin_vec_replace_elt (vsll, signed long long, const int);
VREPLACE_ELT_V2DI
vf __builtin_vec_replace_elt (vf, float, const int);
VREPLACE_ELT_V4SF
vd __builtin_vec_replace_elt (vd, double, const int);
VREPLACE_ELT_V2DF
[VEC_REPLACE_UN, vec_replace_unaligned, __builtin_vec_replace_un]
vuc __builtin_vec_replace_un (vuc, unsigned int, const int);
VREPLACE_UN_USI
vuc __builtin_vec_replace_un (vuc, signed int, const int);
VREPLACE_UN_SI
vuc __builtin_vec_replace_un (vuc, unsigned long long, const int);
VREPLACE_UN_UDI
vuc __builtin_vec_replace_un (vuc, signed long long, const int);
VREPLACE_UN_DI
vuc __builtin_vec_replace_un (vuc, float, const int);
VREPLACE_UN_SF
vuc __builtin_vec_replace_un (vuc, double, const int);
VREPLACE_UN_DF
[VEC_REVB, vec_revb, __builtin_vec_revb]
vss __builtin_vec_revb (vss);
REVB_V8HI REVB_VSS
vus __builtin_vec_revb (vus);
REVB_V8HI REVB_VUS
vsi __builtin_vec_revb (vsi);
REVB_V4SI REVB_VSI
vui __builtin_vec_revb (vui);
REVB_V4SI REVB_VUI
vsll __builtin_vec_revb (vsll);
REVB_V2DI REVB_VSLL
vull __builtin_vec_revb (vull);
REVB_V2DI REVB_VULL
vsq __builtin_vec_revb (vsq);
REVB_V1TI REVB_VSQ
vuq __builtin_vec_revb (vuq);
REVB_V1TI REVB_VUQ
vf __builtin_vec_revb (vf);
REVB_V4SF
vd __builtin_vec_revb (vd);
REVB_V2DF
; The following variants are deprecated.
vsc __builtin_vec_revb (vsc);
REVB_V16QI REVB_VSC
vuc __builtin_vec_revb (vuc);
REVB_V16QI REVB_VUC
vbc __builtin_vec_revb (vbc);
REVB_V16QI REVB_VBC
vbs __builtin_vec_revb (vbs);
REVB_V8HI REVB_VBS
vbi __builtin_vec_revb (vbi);
REVB_V4SI REVB_VBI
vbll __builtin_vec_revb (vbll);
REVB_V2DI REVB_VBLL
[VEC_REVE, vec_reve, __builtin_vec_vreve]
vsc __builtin_vec_vreve (vsc);
VREVE_V16QI VREVE_VSC
vuc __builtin_vec_vreve (vuc);
VREVE_V16QI VREVE_VUC
vbc __builtin_vec_vreve (vbc);
VREVE_V16QI VREVE_VBC
vss __builtin_vec_vreve (vss);
VREVE_V8HI VREVE_VSS
vus __builtin_vec_vreve (vus);
VREVE_V8HI VREVE_VUS
vbs __builtin_vec_vreve (vbs);
VREVE_V8HI VREVE_VBS
vsi __builtin_vec_vreve (vsi);
VREVE_V4SI VREVE_VSI
vui __builtin_vec_vreve (vui);
VREVE_V4SI VREVE_VUI
vbi __builtin_vec_vreve (vbi);
VREVE_V4SI VREVE_VBI
vsll __builtin_vec_vreve (vsll);
VREVE_V2DI VREVE_VSLL
vull __builtin_vec_vreve (vull);
VREVE_V2DI VREVE_VULL
vbll __builtin_vec_vreve (vbll);
VREVE_V2DI VREVE_VBLL
vf __builtin_vec_vreve (vf);
VREVE_V4SF
vd __builtin_vec_vreve (vd);
VREVE_V2DF
[VEC_RINT, vec_rint, __builtin_vec_rint]
vf __builtin_vec_rint (vf);
XVRSPIC
vd __builtin_vec_rint (vd);
XVRDPIC
[VEC_RL, vec_rl, __builtin_vec_rl]
vsc __builtin_vec_rl (vsc, vuc);
VRLB VRLB_VSC
vuc __builtin_vec_rl (vuc, vuc);
VRLB VRLB_VUC
vss __builtin_vec_rl (vss, vus);
VRLH VRLH_VSS
vus __builtin_vec_rl (vus, vus);
VRLH VRLH_VUS
vsi __builtin_vec_rl (vsi, vui);
VRLW VRLW_VSI
vui __builtin_vec_rl (vui, vui);
VRLW VRLW_VUI
vsll __builtin_vec_rl (vsll, vull);
VRLD VRLD_VSLL
vull __builtin_vec_rl (vull, vull);
VRLD VRLD_VULL
vsq __builtin_vec_rl (vsq, vuq);
VRLQ VRLQ_VSQ
vuq __builtin_vec_rl (vuq, vuq);
VRLQ VRLQ_VUQ
[VEC_RLMI, vec_rlmi, __builtin_vec_rlmi]
vui __builtin_vec_rlmi (vui, vui, vui);
VRLWMI
vull __builtin_vec_rlmi (vull, vull, vull);
VRLDMI
vsq __builtin_vec_rlmi (vsq, vsq, vuq);
VRLQMI VRLQMI_VSQ
vuq __builtin_vec_rlmi (vuq, vuq, vuq);
VRLQMI VRLQMI_VUQ
[VEC_RLNM, vec_vrlnm, __builtin_vec_rlnm]
vui __builtin_vec_rlnm (vui, vui);
VRLWNM
vull __builtin_vec_rlnm (vull, vull);
VRLDNM
vsq __builtin_vec_rlnm (vsq, vuq);
VRLQNM VRLQNM_VSQ
vuq __builtin_vec_rlnm (vuq, vuq);
VRLQNM VRLQNM_VUQ
[VEC_ROUND, vec_round, __builtin_vec_round]
vf __builtin_vec_round (vf);
VRFIN
vd __builtin_vec_round (vd);
XVRDPI
[VEC_RSQRT, vec_rsqrt, __builtin_vec_rsqrt]
vf __builtin_vec_rsqrt (vf);
RSQRT_4SF
vd __builtin_vec_rsqrt (vd);
RSQRT_2DF
[VEC_RSQRTE, vec_rsqrte, __builtin_vec_rsqrte]
vf __builtin_vec_rsqrte (vf);
VRSQRTEFP
vd __builtin_vec_rsqrte (vd);
XVRSQRTEDP
[VEC_SBOX_BE, vec_sbox_be, __builtin_vec_sbox_be]
vuc __builtin_vec_sbox_be (vuc);
VSBOX_BE
[VEC_SEL, vec_sel, __builtin_vec_sel]
vsc __builtin_vec_sel (vsc, vsc, vbc);
VSEL_16QI VSEL_16QI_B
vsc __builtin_vec_sel (vsc, vsc, vuc);
VSEL_16QI VSEL_16QI_U
vuc __builtin_vec_sel (vuc, vuc, vbc);
VSEL_16QI_UNS VSEL_16QI_UB
vuc __builtin_vec_sel (vuc, vuc, vuc);
VSEL_16QI_UNS VSEL_16QI_UU
vbc __builtin_vec_sel (vbc, vbc, vbc);
VSEL_16QI_UNS VSEL_16QI_BB
vbc __builtin_vec_sel (vbc, vbc, vuc);
VSEL_16QI_UNS VSEL_16QI_BU
vss __builtin_vec_sel (vss, vss, vbs);
VSEL_8HI VSEL_8HI_B
vss __builtin_vec_sel (vss, vss, vus);
VSEL_8HI VSEL_8HI_U
vus __builtin_vec_sel (vus, vus, vbs);
VSEL_8HI_UNS VSEL_8HI_UB
vus __builtin_vec_sel (vus, vus, vus);
VSEL_8HI_UNS VSEL_8HI_UU
vbs __builtin_vec_sel (vbs, vbs, vbs);
VSEL_8HI_UNS VSEL_8HI_BB
vbs __builtin_vec_sel (vbs, vbs, vus);
VSEL_8HI_UNS VSEL_8HI_BU
vsi __builtin_vec_sel (vsi, vsi, vbi);
VSEL_4SI VSEL_4SI_B
vsi __builtin_vec_sel (vsi, vsi, vui);
VSEL_4SI VSEL_4SI_U
vui __builtin_vec_sel (vui, vui, vbi);
VSEL_4SI_UNS VSEL_4SI_UB
vui __builtin_vec_sel (vui, vui, vui);
VSEL_4SI_UNS VSEL_4SI_UU
vbi __builtin_vec_sel (vbi, vbi, vbi);
VSEL_4SI_UNS VSEL_4SI_BB
vbi __builtin_vec_sel (vbi, vbi, vui);
VSEL_4SI_UNS VSEL_4SI_BU
vsll __builtin_vec_sel (vsll, vsll, vbll);
VSEL_2DI_B VSEL_2DI_B
vsll __builtin_vec_sel (vsll, vsll, vull);
VSEL_2DI_B VSEL_2DI_U
vull __builtin_vec_sel (vull, vull, vbll);
VSEL_2DI_UNS VSEL_2DI_UB
vull __builtin_vec_sel (vull, vull, vull);
VSEL_2DI_UNS VSEL_2DI_UU
vbll __builtin_vec_sel (vbll, vbll, vbll);
VSEL_2DI_UNS VSEL_2DI_BB
vbll __builtin_vec_sel (vbll, vbll, vull);
VSEL_2DI_UNS VSEL_2DI_BU
vsq __builtin_vec_sel (vsq, vsq, vbq);
VSEL_1TI VSEL_1TI_B
vsq __builtin_vec_sel (vsq, vsq, vuq);
VSEL_1TI VSEL_1TI_U
vuq __builtin_vec_sel (vuq, vuq, vbq);
VSEL_1TI_UNS VSEL_1TI_UB
vuq __builtin_vec_sel (vuq, vuq, vuq);
VSEL_1TI_UNS VSEL_1TI_UU
vbq __builtin_vec_sel (vbq, vbq, vbq);
VSEL_1TI_UNS VSEL_1TI_BB
vbq __builtin_vec_sel (vbq, vbq, vuq);
VSEL_1TI_UNS VSEL_1TI_BU
vf __builtin_vec_sel (vf, vf, vbi);
VSEL_4SF VSEL_4SF_B
vf __builtin_vec_sel (vf, vf, vui);
VSEL_4SF VSEL_4SF_U
vd __builtin_vec_sel (vd, vd, vbll);
VSEL_2DF VSEL_2DF_B
vd __builtin_vec_sel (vd, vd, vull);
VSEL_2DF VSEL_2DF_U
; The following variants are deprecated.
vsll __builtin_vec_sel (vsll, vsll, vsll);
VSEL_2DI_B VSEL_2DI_S
vull __builtin_vec_sel (vull, vull, vsll);
VSEL_2DI_UNS VSEL_2DI_US
vf __builtin_vec_sel (vf, vf, vf);
VSEL_4SF VSEL_4SF_F
vf __builtin_vec_sel (vf, vf, vsi);
VSEL_4SF VSEL_4SF_S
vd __builtin_vec_sel (vd, vd, vsll);
VSEL_2DF VSEL_2DF_S
vd __builtin_vec_sel (vd, vd, vd);
VSEL_2DF VSEL_2DF_D
[VEC_SHASIGMA_BE, vec_shasigma_be, __builtin_crypto_vshasigma]
vui __builtin_crypto_vshasigma (vui, const int, const int);
VSHASIGMAW
vull __builtin_crypto_vshasigma (vull, const int, const int);
VSHASIGMAD
[VEC_SIGNED, vec_signed, __builtin_vec_vsigned]
vsi __builtin_vec_vsigned (vf);
VEC_VSIGNED_V4SF
vsll __builtin_vec_vsigned (vd);
VEC_VSIGNED_V2DF
[VEC_SIGNED2, vec_signed2, __builtin_vec_vsigned2]
vsi __builtin_vec_vsigned2 (vd, vd);
VEC_VSIGNED2_V2DF
[VEC_SIGNEDE, vec_signede, __builtin_vec_vsignede]
vsi __builtin_vec_vsignede (vd);
VEC_VSIGNEDE_V2DF
vsll __builtin_vec_vsignede (vf);
VEC_VSIGNEDE_V4SF
[VEC_SIGNEDO, vec_signedo, __builtin_vec_vsignedo]
vsi __builtin_vec_vsignedo (vd);
VEC_VSIGNEDO_V2DF
vsll __builtin_vec_vsignedo (vf);
VEC_VSIGNEDO_V4SF
[VEC_SIGNEXTI, vec_signexti, __builtin_vec_signexti]
vsi __builtin_vec_signexti (vsc);
VSIGNEXTSB2W
vsi __builtin_vec_signexti (vss);
VSIGNEXTSH2W
[VEC_SIGNEXTLL, vec_signextll, __builtin_vec_signextll]
vsll __builtin_vec_signextll (vsc);
VSIGNEXTSB2D
vsll __builtin_vec_signextll (vss);
VSIGNEXTSH2D
vsll __builtin_vec_signextll (vsi);
VSIGNEXTSW2D
[VEC_SIGNEXTQ, vec_signextq, __builtin_vec_signextq]
vsq __builtin_vec_signextq (vsll);
VSIGNEXTSD2Q
[VEC_SL, vec_sl, __builtin_vec_sl]
vsc __builtin_vec_sl (vsc, vuc);
VSLB VSLB_VSC
vuc __builtin_vec_sl (vuc, vuc);
VSLB VSLB_VUC
vss __builtin_vec_sl (vss, vus);
VSLH VSLH_VSS
vus __builtin_vec_sl (vus, vus);
VSLH VSLH_VUS
vsi __builtin_vec_sl (vsi, vui);
VSLW VSLW_VSI
vui __builtin_vec_sl (vui, vui);
VSLW VSLW_VUI
vsll __builtin_vec_sl (vsll, vull);
VSLD VSLD_VSLL
vull __builtin_vec_sl (vull, vull);
VSLD VSLD_VULL
vsq __builtin_vec_sl (vsq, vuq);
VSLQ VSLQ_VSQ
vuq __builtin_vec_sl (vuq, vuq);
VSLQ VSLQ_VUQ
[VEC_SLD, vec_sld, __builtin_vec_sld]
vsc __builtin_vec_sld (vsc, vsc, const int);
VSLDOI_16QI VSLDOI_VSC
vbc __builtin_vec_sld (vbc, vbc, const int);
VSLDOI_16QI VSLDOI_VBC
vuc __builtin_vec_sld (vuc, vuc, const int);
VSLDOI_16QI VSLDOI_VUC
vss __builtin_vec_sld (vss, vss, const int);
VSLDOI_8HI VSLDOI_VSS
vbs __builtin_vec_sld (vbs, vbs, const int);
VSLDOI_8HI VSLDOI_VBS
vus __builtin_vec_sld (vus, vus, const int);
VSLDOI_8HI VSLDOI_VUS
vp __builtin_vec_sld (vp, vp, const int);
VSLDOI_8HI VSLDOI_VP
vsi __builtin_vec_sld (vsi, vsi, const int);
VSLDOI_4SI VSLDOI_VSI
vbi __builtin_vec_sld (vbi, vbi, const int);
VSLDOI_4SI VSLDOI_VBI
vui __builtin_vec_sld (vui, vui, const int);
VSLDOI_4SI VSLDOI_VUI
vsll __builtin_vec_sld (vsll, vsll, const int);
VSLDOI_2DI VSLDOI_VSLL
vbll __builtin_vec_sld (vbll, vbll, const int);
VSLDOI_2DI VSLDOI_VBLL
vull __builtin_vec_sld (vull, vull, const int);
VSLDOI_2DI VSLDOI_VULL
vf __builtin_vec_sld (vf, vf, const int);
VSLDOI_4SF
vd __builtin_vec_sld (vd, vd, const int);
VSLDOI_2DF
vsq __builtin_vec_sld (vsq, vsq, const int);
VSLDOI_1TI VSLDOI_VSQ
vuq __builtin_vec_sld (vuq, vuq, const int);
VSLDOI_1TI VSLDOI_VUQ
[VEC_SLDB, vec_sldb, __builtin_vec_sldb]
vsc __builtin_vec_sldb (vsc, vsc, const int);
VSLDB_V16QI VSLDB_VSC
vuc __builtin_vec_sldb (vuc, vuc, const int);
VSLDB_V16QI VSLDB_VUC
vss __builtin_vec_sldb (vss, vss, const int);
VSLDB_V8HI VSLDB_VSS
vus __builtin_vec_sldb (vus, vus, const int);
VSLDB_V8HI VSLDB_VUS
vsi __builtin_vec_sldb (vsi, vsi, const int);
VSLDB_V4SI VSLDB_VSI
vui __builtin_vec_sldb (vui, vui, const int);
VSLDB_V4SI VSLDB_VUI
vsll __builtin_vec_sldb (vsll, vsll, const int);
VSLDB_V2DI VSLDB_VSLL
vull __builtin_vec_sldb (vull, vull, const int);
VSLDB_V2DI VSLDB_VULL
vsq __builtin_vec_sldb (vsq, vsq, const int);
VSLDB_V1TI VSLDB_VSQ
vuq __builtin_vec_sldb (vuq, vuq, const int);
VSLDB_V1TI VSLDB_VUQ
[VEC_SLDW, vec_sldw, __builtin_vec_sldw]
vsc __builtin_vec_sldw (vsc, vsc, const int);
XXSLDWI_16QI XXSLDWI_VSC
vuc __builtin_vec_sldw (vuc, vuc, const int);
XXSLDWI_16QI XXSLDWI_VUC
vss __builtin_vec_sldw (vss, vss, const int);
XXSLDWI_8HI XXSLDWI_VSS
vus __builtin_vec_sldw (vus, vus, const int);
XXSLDWI_8HI XXSLDWI_VUS
vsi __builtin_vec_sldw (vsi, vsi, const int);
XXSLDWI_4SI XXSLDWI_VSI
vui __builtin_vec_sldw (vui, vui, const int);
XXSLDWI_4SI XXSLDWI_VUI
vsll __builtin_vec_sldw (vsll, vsll, const int);
XXSLDWI_2DI XXSLDWI_VSLL
vull __builtin_vec_sldw (vull, vull, const int);
XXSLDWI_2DI XXSLDWI_VULL
vf __builtin_vec_sldw (vf, vf, const int);
XXSLDWI_4SF XXSLDWI_VF
vd __builtin_vec_sldw (vd, vd, const int);
XXSLDWI_2DF XXSLDWI_VD
vsq __builtin_vec_sldw (vsq, vsq, const int);
XXSLDWI_1TI XXSLDWI_VSQ
vuq __builtin_vec_sldw (vuq, vuq, const int);
XXSLDWI_1TI XXSLDWI_VUQ
[VEC_SLL, vec_sll, __builtin_vec_sll]
vsc __builtin_vec_sll (vsc, vuc);
VSL VSL_VSC
vuc __builtin_vec_sll (vuc, vuc);
VSL VSL_VUC
vss __builtin_vec_sll (vss, vuc);
VSL VSL_VSS
vus __builtin_vec_sll (vus, vuc);
VSL VSL_VUS
vp __builtin_vec_sll (vp, vuc);
VSL VSL_VP
vsi __builtin_vec_sll (vsi, vuc);
VSL VSL_VSI
vui __builtin_vec_sll (vui, vuc);
VSL VSL_VUI
vsll __builtin_vec_sll (vsll, vuc);
VSL VSL_VSLL
vull __builtin_vec_sll (vull, vuc);
VSL VSL_VULL
vsq __builtin_vec_sll (vsq, vuc);
VSL VSL_VSQ
vuq __builtin_vec_sll (vuq, vuc);
VSL VSL_VUQ
; The following variants are deprecated.
vsc __builtin_vec_sll (vsc, vus);
VSL VSL_VSC_VUS
vsc __builtin_vec_sll (vsc, vui);
VSL VSL_VSC_VUI
vuc __builtin_vec_sll (vuc, vus);
VSL VSL_VUC_VUS
vuc __builtin_vec_sll (vuc, vui);
VSL VSL_VUC_VUI
vbc __builtin_vec_sll (vbc, vuc);
VSL VSL_VBC_VUC
vbc __builtin_vec_sll (vbc, vus);
VSL VSL_VBC_VUS
vbc __builtin_vec_sll (vbc, vui);
VSL VSL_VBC_VUI
vss __builtin_vec_sll (vss, vus);
VSL VSL_VSS_VUS
vss __builtin_vec_sll (vss, vui);
VSL VSL_VSS_VUI
vus __builtin_vec_sll (vus, vus);
VSL VSL_VUS_VUS
vus __builtin_vec_sll (vus, vui);
VSL VSL_VUS_VUI
vbs __builtin_vec_sll (vbs, vuc);
VSL VSL_VBS_VUC
vbs __builtin_vec_sll (vbs, vus);
VSL VSL_VBS_VUS
vbs __builtin_vec_sll (vbs, vui);
VSL VSL_VBS_VUI
vp __builtin_vec_sll (vp, vus);
VSL VSL_VP_VUS
vp __builtin_vec_sll (vp, vui);
VSL VSL_VP_VUI
vsi __builtin_vec_sll (vsi, vus);
VSL VSL_VSI_VUS
vsi __builtin_vec_sll (vsi, vui);
VSL VSL_VSI_VUI
vui __builtin_vec_sll (vui, vus);
VSL VSL_VUI_VUS
vui __builtin_vec_sll (vui, vui);
VSL VSL_VUI_VUI
vbi __builtin_vec_sll (vbi, vuc);
VSL VSL_VBI_VUC
vbi __builtin_vec_sll (vbi, vus);
VSL VSL_VBI_VUS
vbi __builtin_vec_sll (vbi, vui);
VSL VSL_VBI_VUI
vbll __builtin_vec_sll (vbll, vuc);
VSL VSL_VBLL_VUC
vbll __builtin_vec_sll (vbll, vus);
VSL VSL_VBLL_VUS
vbll __builtin_vec_sll (vbll, vull);
VSL VSL_VBLL_VULL
[VEC_SLO, vec_slo, __builtin_vec_slo]
vsc __builtin_vec_slo (vsc, vsc);
VSLO VSLO_VSCS
vsc __builtin_vec_slo (vsc, vuc);
VSLO VSLO_VSCU
vuc __builtin_vec_slo (vuc, vsc);
VSLO VSLO_VUCS
vuc __builtin_vec_slo (vuc, vuc);
VSLO VSLO_VUCU
vss __builtin_vec_slo (vss, vsc);
VSLO VSLO_VSSS
vss __builtin_vec_slo (vss, vuc);
VSLO VSLO_VSSU
vus __builtin_vec_slo (vus, vsc);
VSLO VSLO_VUSS
vus __builtin_vec_slo (vus, vuc);
VSLO VSLO_VUSU
vp __builtin_vec_slo (vp, vsc);
VSLO VSLO_VPS
vp __builtin_vec_slo (vp, vuc);
VSLO VSLO_VPU
vsi __builtin_vec_slo (vsi, vsc);
VSLO VSLO_VSIS
vsi __builtin_vec_slo (vsi, vuc);
VSLO VSLO_VSIU
vui __builtin_vec_slo (vui, vsc);
VSLO VSLO_VUIS
vui __builtin_vec_slo (vui, vuc);
VSLO VSLO_VUIU
vsll __builtin_vec_slo (vsll, vsc);
VSLO VSLO_VSLLS
vsll __builtin_vec_slo (vsll, vuc);
VSLO VSLO_VSLLU
vull __builtin_vec_slo (vull, vsc);
VSLO VSLO_VULLS
vull __builtin_vec_slo (vull, vuc);
VSLO VSLO_VULLU
vf __builtin_vec_slo (vf, vsc);
VSLO VSLO_VFS
vf __builtin_vec_slo (vf, vuc);
VSLO VSLO_VFU
vsq __builtin_vec_slo (vsq, vsc);
VSLO VSLDO_VSQS
vsq __builtin_vec_slo (vsq, vuc);
VSLO VSLDO_VSQU
vuq __builtin_vec_slo (vuq, vsc);
VSLO VSLDO_VUQS
vuq __builtin_vec_slo (vuq, vuc);
VSLO VSLDO_VUQU
[VEC_SLV, vec_slv, __builtin_vec_vslv]
vuc __builtin_vec_vslv (vuc, vuc);
VSLV
[VEC_SPLAT, vec_splat, __builtin_vec_splat]
vsc __builtin_vec_splat (vsc, signed int);
VSPLTB VSPLTB_VSC
vuc __builtin_vec_splat (vuc, signed int);
VSPLTB VSPLTB_VUC
vbc __builtin_vec_splat (vbc, signed int);
VSPLTB VSPLTB_VBC
vss __builtin_vec_splat (vss, signed int);
VSPLTH VSPLTH_VSS
vus __builtin_vec_splat (vus, signed int);
VSPLTH VSPLTH_VUS
vbs __builtin_vec_splat (vbs, signed int);
VSPLTH VSPLTH_VBS
vp __builtin_vec_splat (vp, signed int);
VSPLTH VSPLTH_VP
vf __builtin_vec_splat (vf, signed int);
VSPLTW VSPLTW_VF
vsi __builtin_vec_splat (vsi, signed int);
VSPLTW VSPLTW_VSI
vui __builtin_vec_splat (vui, signed int);
VSPLTW VSPLTW_VUI
vbi __builtin_vec_splat (vbi, signed int);
VSPLTW VSPLTW_VBI
vd __builtin_vec_splat (vd, signed int);
XXSPLTD_V2DF
vsll __builtin_vec_splat (vsll, signed int);
XXSPLTD_V2DI XXSPLTD_VSLL
vull __builtin_vec_splat (vull, signed int);
XXSPLTD_V2DI XXSPLTD_VULL
vbll __builtin_vec_splat (vbll, signed int);
XXSPLTD_V2DI XXSPLTD_VBLL
[VEC_SPLAT_S8, vec_splat_s8, __builtin_vec_splat_s8]
vsc __builtin_vec_splat_s8 (signed int);
VSPLTISB
[VEC_SPLAT_S16, vec_splat_s16, __builtin_vec_splat_s16]
vss __builtin_vec_splat_s16 (signed int);
VSPLTISH
[VEC_SPLAT_S32, vec_splat_s32, __builtin_vec_splat_s32]
vsi __builtin_vec_splat_s32 (signed int);
VSPLTISW
; There are no entries for vec_splat_u{8,16,32}. These are handled
; in altivec.h with a #define and a cast.
[VEC_SPLATI, vec_splati, __builtin_vec_xxspltiw]
vsi __builtin_vec_xxspltiw (signed int);
VXXSPLTIW_V4SI
vf __builtin_vec_xxspltiw (float);
VXXSPLTIW_V4SF
[VEC_SPLATID, vec_splatid, __builtin_vec_xxspltid]
vd __builtin_vec_xxspltid (float);
VXXSPLTIDP
[VEC_SPLATI_INS, vec_splati_ins, __builtin_vec_xxsplti32dx]
vsi __builtin_vec_xxsplti32dx (vsi, const int, signed int);
VXXSPLTI32DX_V4SI VXXSPLTI32DX_VSI
vui __builtin_vec_xxsplti32dx (vui, const int, unsigned int);
VXXSPLTI32DX_V4SI VXXSPLTI32DX_VUI
vf __builtin_vec_xxsplti32dx (vf, const int, float);
VXXSPLTI32DX_V4SF
; There are no actual builtins for vec_splats. There is special handling for
; this in altivec_resolve_overloaded_builtin in rs6000-c.cc, where the call
; is replaced by a constructor. The single overload here causes
; __builtin_vec_splats to be registered with the front end so that can happen.
[VEC_SPLATS, vec_splats, __builtin_vec_splats]
vsi __builtin_vec_splats (vsi);
ABS_V4SI SPLATS_FAKERY
[VEC_SQRT, vec_sqrt, __builtin_vec_sqrt]
vf __builtin_vec_sqrt (vf);
XVSQRTSP
vd __builtin_vec_sqrt (vd);
XVSQRTDP
[VEC_SR, vec_sr, __builtin_vec_sr]
vsc __builtin_vec_sr (vsc, vuc);
VSRB VSRB_VSC
vuc __builtin_vec_sr (vuc, vuc);
VSRB VSRB_VUC
vss __builtin_vec_sr (vss, vus);
VSRH VSRH_VSS
vus __builtin_vec_sr (vus, vus);
VSRH VSRH_VUS
vsi __builtin_vec_sr (vsi, vui);
VSRW VSRW_VSI
vui __builtin_vec_sr (vui, vui);
VSRW VSRW_VUI
vsll __builtin_vec_sr (vsll, vull);
VSRD VSRD_VSLL
vull __builtin_vec_sr (vull, vull);
VSRD VSRD_VULL
vsq __builtin_vec_sr (vsq, vuq);
VSRQ VSRQ_VSQ
vuq __builtin_vec_sr (vuq, vuq);
VSRQ VSRQ_VUQ
[VEC_SRA, vec_sra, __builtin_vec_sra]
vsc __builtin_vec_sra (vsc, vuc);
VSRAB VSRAB_VSC
vuc __builtin_vec_sra (vuc, vuc);
VSRAB VSRAB_VUC
vss __builtin_vec_sra (vss, vus);
VSRAH VSRAH_VSS
vus __builtin_vec_sra (vus, vus);
VSRAH VSRAH_VUS
vsi __builtin_vec_sra (vsi, vui);
VSRAW VSRAW_VSI
vui __builtin_vec_sra (vui, vui);
VSRAW VSRAW_VUI
vsll __builtin_vec_sra (vsll, vull);
VSRAD VSRAD_VSLL
vull __builtin_vec_sra (vull, vull);
VSRAD VSRAD_VULL
vsq __builtin_vec_sra (vsq, vuq);
VSRAQ VSRAQ_VSQ
vuq __builtin_vec_sra (vuq, vuq);
VSRAQ VSRAQ_VUQ
[VEC_SRDB, vec_srdb, __builtin_vec_srdb]
vsc __builtin_vec_srdb (vsc, vsc, const int);
VSRDB_V16QI VSRDB_VSC
vuc __builtin_vec_srdb (vuc, vuc, const int);
VSRDB_V16QI VSRDB_VUC
vss __builtin_vec_srdb (vss, vss, const int);
VSRDB_V8HI VSRDB_VSS
vus __builtin_vec_srdb (vus, vus, const int);
VSRDB_V8HI VSRDB_VUS
vsi __builtin_vec_srdb (vsi, vsi, const int);
VSRDB_V4SI VSRDB_VSI
vui __builtin_vec_srdb (vui, vui, const int);
VSRDB_V4SI VSRDB_VUI
vsll __builtin_vec_srdb (vsll, vsll, const int);
VSRDB_V2DI VSRDB_VSLL
vull __builtin_vec_srdb (vull, vull, const int);
VSRDB_V2DI VSRDB_VULL
vsq __builtin_vec_srdb (vsq, vsq, const int);
VSRDB_V1TI VSRDB_VSQ
vuq __builtin_vec_srdb (vuq, vuq, const int);
VSRDB_V1TI VSRDB_VUQ
[VEC_SRL, vec_srl, __builtin_vec_srl]
vsc __builtin_vec_srl (vsc, vuc);
VSR VSR_VSC
vuc __builtin_vec_srl (vuc, vuc);
VSR VSR_VUC
vss __builtin_vec_srl (vss, vuc);
VSR VSR_VSS
vus __builtin_vec_srl (vus, vuc);
VSR VSR_VUS
vp __builtin_vec_srl (vp, vuc);
VSR VSR_VP
vsi __builtin_vec_srl (vsi, vuc);
VSR VSR_VSI
vui __builtin_vec_srl (vui, vuc);
VSR VSR_VUI
vsll __builtin_vec_srl (vsll, vuc);
VSR VSR_VSLL
vull __builtin_vec_srl (vull, vuc);
VSR VSR_VULL
vsq __builtin_vec_srl (vsq, vuc);
VSR VSR_VSQ
vuq __builtin_vec_srl (vuq, vuc);
VSR VSR_VUQ
; The following variants are deprecated.
vsc __builtin_vec_srl (vsc, vus);
VSR VSR_VSC_VUS
vsc __builtin_vec_srl (vsc, vui);
VSR VSR_VSC_VUI
vuc __builtin_vec_srl (vuc, vus);
VSR VSR_VUC_VUS
vuc __builtin_vec_srl (vuc, vui);
VSR VSR_VUC_VUI
vbc __builtin_vec_srl (vbc, vuc);
VSR VSR_VBC_VUC
vbc __builtin_vec_srl (vbc, vus);
VSR VSR_VBC_VUS
vbc __builtin_vec_srl (vbc, vui);
VSR VSR_VBC_VUI
vss __builtin_vec_srl (vss, vus);
VSR VSR_VSS_VUS
vss __builtin_vec_srl (vss, vui);
VSR VSR_VSS_VUI
vus __builtin_vec_srl (vus, vus);
VSR VSR_VUS_VUS
vus __builtin_vec_srl (vus, vui);
VSR VSR_VUS_VUI
vbs __builtin_vec_srl (vbs, vuc);
VSR VSR_VBS_VUC
vbs __builtin_vec_srl (vbs, vus);
VSR VSR_VBS_VUS
vbs __builtin_vec_srl (vbs, vui);
VSR VSR_VBS_VUI
vp __builtin_vec_srl (vp, vus);
VSR VSR_VP_VUS
vp __builtin_vec_srl (vp, vui);
VSR VSR_VP_VUI
vsi __builtin_vec_srl (vsi, vus);
VSR VSR_VSI_VUS
vsi __builtin_vec_srl (vsi, vui);
VSR VSR_VSI_VUI
vui __builtin_vec_srl (vui, vus);
VSR VSR_VUI_VUS
vui __builtin_vec_srl (vui, vui);
VSR VSR_VUI_VUI
vbi __builtin_vec_srl (vbi, vuc);
VSR VSR_VBI_VUC
vbi __builtin_vec_srl (vbi, vus);
VSR VSR_VBI_VUS
vbi __builtin_vec_srl (vbi, vui);
VSR VSR_VBI_VUI
[VEC_SRO, vec_sro, __builtin_vec_sro]
vsc __builtin_vec_sro (vsc, vsc);
VSRO VSRO_VSCS
vsc __builtin_vec_sro (vsc, vuc);
VSRO VSRO_VSCU
vuc __builtin_vec_sro (vuc, vsc);
VSRO VSRO_VUCS
vuc __builtin_vec_sro (vuc, vuc);
VSRO VSRO_VUCU
vss __builtin_vec_sro (vss, vsc);
VSRO VSRO_VSSS
vss __builtin_vec_sro (vss, vuc);
VSRO VSRO_VSSU
vus __builtin_vec_sro (vus, vsc);
VSRO VSRO_VUSS
vus __builtin_vec_sro (vus, vuc);
VSRO VSRO_VUSU
vp __builtin_vec_sro (vp, vsc);
VSRO VSRO_VPS
vp __builtin_vec_sro (vp, vuc);
VSRO VSRO_VPU
vsi __builtin_vec_sro (vsi, vsc);
VSRO VSRO_VSIS
vsi __builtin_vec_sro (vsi, vuc);
VSRO VSRO_VSIU
vui __builtin_vec_sro (vui, vsc);
VSRO VSRO_VUIS
vui __builtin_vec_sro (vui, vuc);
VSRO VSRO_VUIU
vsll __builtin_vec_sro (vsll, vsc);
VSRO VSRO_VSLLS
vsll __builtin_vec_sro (vsll, vuc);
VSRO VSRO_VSLLU
vull __builtin_vec_sro (vull, vsc);
VSRO VSRO_VULLS
vull __builtin_vec_sro (vull, vuc);
VSRO VSRO_VULLU
vf __builtin_vec_sro (vf, vsc);
VSRO VSRO_VFS
vf __builtin_vec_sro (vf, vuc);
VSRO VSRO_VFU
vsq __builtin_vec_sro (vsq, vsc);
VSRO VSRDO_VSQS
vsq __builtin_vec_sro (vsq, vuc);
VSRO VSRDO_VSQU
vuq __builtin_vec_sro (vuq, vsc);
VSRO VSRDO_VUQS
vuq __builtin_vec_sro (vuq, vuc);
VSRO VSRDO_VUQU
[VEC_SRV, vec_srv, __builtin_vec_vsrv]
vuc __builtin_vec_vsrv (vuc, vuc);
VSRV
[VEC_ST, vec_st, __builtin_vec_st]
void __builtin_vec_st (vsc, signed long long, vsc *);
STVX_V16QI STVX_VSC
void __builtin_vec_st (vsc, signed long long, signed char *);
STVX_V16QI STVX_SC
void __builtin_vec_st (vuc, signed long long, vuc *);
STVX_V16QI STVX_VUC
void __builtin_vec_st (vuc, signed long long, unsigned char *);
STVX_V16QI STVX_UC
void __builtin_vec_st (vbc, signed long long, vbc *);
STVX_V16QI STVX_VBC
void __builtin_vec_st (vbc, signed long long, signed char *);
STVX_V16QI STVX_SC_B
void __builtin_vec_st (vbc, signed long long, unsigned char *);
STVX_V16QI STVX_UC_B
void __builtin_vec_st (vss, signed long long, vss *);
STVX_V8HI STVX_VSS
void __builtin_vec_st (vss, signed long long, signed short *);
STVX_V8HI STVX_SS
void __builtin_vec_st (vus, signed long long, vus *);
STVX_V8HI STVX_VUS
void __builtin_vec_st (vus, signed long long, unsigned short *);
STVX_V8HI STVX_US
void __builtin_vec_st (vbs, signed long long, vbs *);
STVX_V8HI STVX_VBS
void __builtin_vec_st (vbs, signed long long, signed short *);
STVX_V8HI STVX_SS_B
void __builtin_vec_st (vbs, signed long long, unsigned short *);
STVX_V8HI STVX_US_B
void __builtin_vec_st (vp, signed long long, vp *);
STVX_V8HI STVX_P
void __builtin_vec_st (vsi, signed long long, vsi *);
STVX_V4SI STVX_VSI
void __builtin_vec_st (vsi, signed long long, signed int *);
STVX_V4SI STVX_SI
void __builtin_vec_st (vui, signed long long, vui *);
STVX_V4SI STVX_VUI
void __builtin_vec_st (vui, signed long long, unsigned int *);
STVX_V4SI STVX_UI
void __builtin_vec_st (vbi, signed long long, vbi *);
STVX_V4SI STVX_VBI
void __builtin_vec_st (vbi, signed long long, signed int *);
STVX_V4SI STVX_SI_B
void __builtin_vec_st (vbi, signed long long, unsigned int *);
STVX_V4SI STVX_UI_B
void __builtin_vec_st (vsll, signed long long, vsll *);
STVX_V2DI STVX_VSLL
void __builtin_vec_st (vsll, signed long long, signed long long *);
STVX_V2DI STVX_SLL
void __builtin_vec_st (vull, signed long long, vull *);
STVX_V2DI STVX_VULL
void __builtin_vec_st (vull, signed long long, unsigned long long *);
STVX_V2DI STVX_ULL
void __builtin_vec_st (vbll, signed long long, vbll *);
STVX_V2DI STVX_VBLL
void __builtin_vec_st (vf, signed long long, vf *);
STVX_V4SF STVX_VF
void __builtin_vec_st (vf, signed long long, float *);
STVX_V4SF STVX_F
void __builtin_vec_st (vd, signed long long, vd *);
STVX_V2DF STVX_VD
void __builtin_vec_st (vd, signed long long, double *);
STVX_V2DF STVX_D
; The following variants are deprecated.
void __builtin_vec_st (vbll, signed long long, signed long long *);
STVX_V2DI STVX_SLL_B
void __builtin_vec_st (vbll, signed long long, unsigned long long *);
STVX_V2DI STVX_ULL_B
[VEC_STE, vec_ste, __builtin_vec_ste]
void __builtin_vec_ste (vsc, signed long long, signed char *);
STVEBX STVEBX_S
void __builtin_vec_ste (vuc, signed long long, unsigned char *);
STVEBX STVEBX_U
void __builtin_vec_ste (vbc, signed long long, signed char *);
STVEBX STVEBX_BS
void __builtin_vec_ste (vbc, signed long long, unsigned char *);
STVEBX STVEBX_BU
void __builtin_vec_ste (vss, signed long long, signed short *);
STVEHX STVEHX_S
void __builtin_vec_ste (vus, signed long long, unsigned short *);
STVEHX STVEHX_U
void __builtin_vec_ste (vbs, signed long long, signed short *);
STVEHX STVEHX_BS
void __builtin_vec_ste (vbs, signed long long, unsigned short *);
STVEHX STVEHX_BU
void __builtin_vec_ste (vp, signed long long, signed short *);
STVEHX STVEHX_PS
void __builtin_vec_ste (vp, signed long long, unsigned short *);
STVEHX STVEHX_PU
void __builtin_vec_ste (vsi, signed long long, signed int *);
STVEWX STVEHWX_S
void __builtin_vec_ste (vui, signed long long, unsigned int *);
STVEWX STVEWX_U
void __builtin_vec_ste (vbi, signed long long, signed int *);
STVEWX STVEWX_BS
void __builtin_vec_ste (vbi, signed long long, unsigned int *);
STVEWX STVEWX_BU
void __builtin_vec_ste (vf, signed long long, float *);
STVEWX STVEWX_F
; There are no builtins for VEC_STEP; this is handled directly
; with a constant replacement in rs6000_resolve_overloaded_builtin.
; The single overload registers __builtin_vec_step with the front end
; so this can happen.
[VEC_STEP, vec_step, __builtin_vec_step]
signed int __builtin_vec_step (vsi);
VCLZLSBB_V4SI STEP_FAKERY
[VEC_STL, vec_stl, __builtin_vec_stl]
void __builtin_vec_stl (vsc, signed long long, vsc *);
STVXL_V16QI STVXL_VSC
void __builtin_vec_stl (vsc, signed long long, signed char *);
STVXL_V16QI STVXL_SC
void __builtin_vec_stl (vuc, signed long long, vuc *);
STVXL_V16QI STVXL_VUC
void __builtin_vec_stl (vuc, signed long long, unsigned char *);
STVXL_V16QI STVXL_UC
void __builtin_vec_stl (vbc, signed long long, vbc *);
STVXL_V16QI STVXL_VBC
void __builtin_vec_stl (vbc, signed long long, signed char *);
STVXL_V16QI STVXL_SC_B
void __builtin_vec_stl (vbc, signed long long, unsigned char *);
STVXL_V16QI STVXL_UC_B
void __builtin_vec_stl (vss, signed long long, vss *);
STVXL_V8HI STVXL_VSS
void __builtin_vec_stl (vss, signed long long, signed short *);
STVXL_V8HI STVXL_SS
void __builtin_vec_stl (vus, signed long long, vus *);
STVXL_V8HI STVXL_VUS
void __builtin_vec_stl (vus, signed long long, unsigned short *);
STVXL_V8HI STVXL_US
void __builtin_vec_stl (vbs, signed long long, vbs *);
STVXL_V8HI STVXL_VBS
void __builtin_vec_stl (vbs, signed long long, signed short *);
STVXL_V8HI STVXL_SS_B
void __builtin_vec_stl (vbs, signed long long, unsigned short *);
STVXL_V8HI STVXL_US_B
void __builtin_vec_stl (vp, signed long long, vp *);
STVXL_V8HI STVXL_P
void __builtin_vec_stl (vsi, signed long long, vsi *);
STVXL_V4SI STVXL_VSI
void __builtin_vec_stl (vsi, signed long long, signed int *);
STVXL_V4SI STVXL_SI
void __builtin_vec_stl (vui, signed long long, vui *);
STVXL_V4SI STVXL_VUI
void __builtin_vec_stl (vui, signed long long, unsigned int *);
STVXL_V4SI STVXL_UI
void __builtin_vec_stl (vbi, signed long long, vbi *);
STVXL_V4SI STVXL_VBI
void __builtin_vec_stl (vbi, signed long long, signed int *);
STVXL_V4SI STVXL_SI_B
void __builtin_vec_stl (vbi, signed long long, unsigned int *);
STVXL_V4SI STVXL_UI_B
void __builtin_vec_stl (vsll, signed long long, vsll *);
STVXL_V2DI STVXL_VSLL
void __builtin_vec_stl (vsll, signed long long, signed long long *);
STVXL_V2DI STVXL_SLL
void __builtin_vec_stl (vull, signed long long, vull *);
STVXL_V2DI STVXL_VULL
void __builtin_vec_stl (vull, signed long long, unsigned long long *);
STVXL_V2DI STVXL_ULL
void __builtin_vec_stl (vbll, signed long long, vbll *);
STVXL_V2DI STVXL_VBLL
void __builtin_vec_stl (vbll, signed long long, signed long long *);
STVXL_V2DI STVXL_SLL_B
void __builtin_vec_stl (vbll, signed long long, unsigned long long *);
STVXL_V2DI STVXL_ULL_B
void __builtin_vec_stl (vf, signed long long, vf *);
STVXL_V4SF STVXL_VF
void __builtin_vec_stl (vf, signed long long, float *);
STVXL_V4SF STVXL_F
void __builtin_vec_stl (vd, signed long long, vd *);
STVXL_V2DF STVXL_VD
void __builtin_vec_stl (vd, signed long long, double *);
STVXL_V2DF STVXL_D
[VEC_STRIL, vec_stril, __builtin_vec_stril]
vuc __builtin_vec_stril (vuc);
VSTRIBL VSTRIBL_U
vsc __builtin_vec_stril (vsc);
VSTRIBL VSTRIBL_S
vus __builtin_vec_stril (vus);
VSTRIHL VSTRIHL_U
vss __builtin_vec_stril (vss);
VSTRIHL VSTRIHL_S
[VEC_STRIL_P, vec_stril_p, __builtin_vec_stril_p]
signed int __builtin_vec_stril_p (vuc);
VSTRIBL_P VSTRIBL_PU
signed int __builtin_vec_stril_p (vsc);
VSTRIBL_P VSTRIBL_PS
signed int __builtin_vec_stril_p (vus);
VSTRIHL_P VSTRIHL_PU
signed int __builtin_vec_stril_p (vss);
VSTRIHL_P VSTRIHL_PS
[VEC_STRIR, vec_strir, __builtin_vec_strir]
vuc __builtin_vec_strir (vuc);
VSTRIBR VSTRIBR_U
vsc __builtin_vec_strir (vsc);
VSTRIBR VSTRIBR_S
vus __builtin_vec_strir (vus);
VSTRIHR VSTRIHR_U
vss __builtin_vec_strir (vss);
VSTRIHR VSTRIHR_S
[VEC_STRIR_P, vec_strir_p, __builtin_vec_strir_p]
signed int __builtin_vec_strir_p (vuc);
VSTRIBR_P VSTRIBR_PU
signed int __builtin_vec_strir_p (vsc);
VSTRIBR_P VSTRIBR_PS
signed int __builtin_vec_strir_p (vus);
VSTRIHR_P VSTRIHR_PU
signed int __builtin_vec_strir_p (vss);
VSTRIHR_P VSTRIHR_PS
[VEC_STVLX, vec_stvlx, __builtin_vec_stvlx, __PPU__]
void __builtin_vec_stvlx (vbc, signed long long, vbc *);
STVLX STVLX_VBC
void __builtin_vec_stvlx (vsc, signed long long, vsc *);
STVLX STVLX_VSC
void __builtin_vec_stvlx (vsc, signed long long, signed char *);
STVLX STVLX_SC
void __builtin_vec_stvlx (vuc, signed long long, vuc *);
STVLX STVLX_VUC
void __builtin_vec_stvlx (vuc, signed long long, unsigned char *);
STVLX STVLX_UC
void __builtin_vec_stvlx (vbs, signed long long, vbs *);
STVLX STVLX_VBS
void __builtin_vec_stvlx (vss, signed long long, vss *);
STVLX STVLX_VSS
void __builtin_vec_stvlx (vss, signed long long, signed short *);
STVLX STVLX_SS
void __builtin_vec_stvlx (vus, signed long long, vus *);
STVLX STVLX_VUS
void __builtin_vec_stvlx (vus, signed long long, unsigned short *);
STVLX STVLX_US
void __builtin_vec_stvlx (vp, signed long long, vp *);
STVLX STVLX_VP
void __builtin_vec_stvlx (vbi, signed long long, vbi *);
STVLX STVLX_VBI
void __builtin_vec_stvlx (vsi, signed long long, vsi *);
STVLX STVLX_VSI
void __builtin_vec_stvlx (vsi, signed long long, signed int *);
STVLX STVLX_SI
void __builtin_vec_stvlx (vui, signed long long, vui *);
STVLX STVLX_VUI
void __builtin_vec_stvlx (vui, signed long long, unsigned int *);
STVLX STVLX_UI
void __builtin_vec_stvlx (vf, signed long long, vf *);
STVLX STVLX_VF
void __builtin_vec_stvlx (vf, signed long long, float *);
STVLX STVLX_F
[VEC_STVLXL, vec_stvlxl, __builtin_vec_stvlxl, __PPU__]
void __builtin_vec_stvlxl (vbc, signed long long, vbc *);
STVLXL STVLXL_VBC
void __builtin_vec_stvlxl (vsc, signed long long, vsc *);
STVLXL STVLXL_VSC
void __builtin_vec_stvlxl (vsc, signed long long, signed char *);
STVLXL STVLXL_SC
void __builtin_vec_stvlxl (vuc, signed long long, vuc *);
STVLXL STVLXL_VUC
void __builtin_vec_stvlxl (vuc, signed long long, unsigned char *);
STVLXL STVLXL_UC
void __builtin_vec_stvlxl (vbs, signed long long, vbs *);
STVLXL STVLXL_VBS
void __builtin_vec_stvlxl (vss, signed long long, vss *);
STVLXL STVLXL_VSS
void __builtin_vec_stvlxl (vss, signed long long, signed short *);
STVLXL STVLXL_SS
void __builtin_vec_stvlxl (vus, signed long long, vus *);
STVLXL STVLXL_VUS
void __builtin_vec_stvlxl (vus, signed long long, unsigned short *);
STVLXL STVLXL_US
void __builtin_vec_stvlxl (vp, signed long long, vp *);
STVLXL STVLXL_VP
void __builtin_vec_stvlxl (vbi, signed long long, vbi *);
STVLXL STVLXL_VBI
void __builtin_vec_stvlxl (vsi, signed long long, vsi *);
STVLXL STVLXL_VSI
void __builtin_vec_stvlxl (vsi, signed long long, signed int *);
STVLXL STVLXL_SI
void __builtin_vec_stvlxl (vui, signed long long, vui *);
STVLXL STVLXL_VUI
void __builtin_vec_stvlxl (vui, signed long long, unsigned int *);
STVLXL STVLXL_UI
void __builtin_vec_stvlxl (vf, signed long long, vf *);
STVLXL STVLXL_VF
void __builtin_vec_stvlxl (vf, signed long long, float *);
STVLXL STVLXL_F
[VEC_STVRX, vec_stvrx, __builtin_vec_stvrx, __PPU__]
void __builtin_vec_stvrx (vbc, signed long long, vbc *);
STVRX STVRX_VBC
void __builtin_vec_stvrx (vsc, signed long long, vsc *);
STVRX STVRX_VSC
void __builtin_vec_stvrx (vsc, signed long long, signed char *);
STVRX STVRX_SC
void __builtin_vec_stvrx (vuc, signed long long, vuc *);
STVRX STVRX_VUC
void __builtin_vec_stvrx (vuc, signed long long, unsigned char *);
STVRX STVRX_UC
void __builtin_vec_stvrx (vbs, signed long long, vbs *);
STVRX STVRX_VBS
void __builtin_vec_stvrx (vss, signed long long, vss *);
STVRX STVRX_VSS
void __builtin_vec_stvrx (vss, signed long long, signed short *);
STVRX STVRX_SS
void __builtin_vec_stvrx (vus, signed long long, vus *);
STVRX STVRX_VUS
void __builtin_vec_stvrx (vus, signed long long, unsigned short *);
STVRX STVRX_US
void __builtin_vec_stvrx (vp, signed long long, vp *);
STVRX STVRX_VP
void __builtin_vec_stvrx (vbi, signed long long, vbi *);
STVRX STVRX_VBI
void __builtin_vec_stvrx (vsi, signed long long, vsi *);
STVRX STVRX_VSI
void __builtin_vec_stvrx (vsi, signed long long, signed int *);
STVRX STVRX_SI
void __builtin_vec_stvrx (vui, signed long long, vui *);
STVRX STVRX_VUI
void __builtin_vec_stvrx (vui, signed long long, unsigned int *);
STVRX STVRX_UI
void __builtin_vec_stvrx (vf, signed long long, vf *);
STVRX STVRX_VF
void __builtin_vec_stvrx (vf, signed long long, float *);
STVRX STVRX_F
[VEC_STVRXL, vec_stvrxl, __builtin_vec_stvrxl, __PPU__]
void __builtin_vec_stvrxl (vbc, signed long long, vbc *);
STVRXL STVRXL_VBC
void __builtin_vec_stvrxl (vsc, signed long long, vsc *);
STVRXL STVRXL_VSC
void __builtin_vec_stvrxl (vsc, signed long long, signed char *);
STVRXL STVRXL_SC
void __builtin_vec_stvrxl (vuc, signed long long, vuc *);
STVRXL STVRXL_VUC
void __builtin_vec_stvrxl (vuc, signed long long, unsigned char *);
STVRXL STVRXL_UC
void __builtin_vec_stvrxl (vbs, signed long long, vbs *);
STVRXL STVRXL_VBS
void __builtin_vec_stvrxl (vss, signed long long, vss *);
STVRXL STVRXL_VSS
void __builtin_vec_stvrxl (vss, signed long long, signed short *);
STVRXL STVRXL_SS
void __builtin_vec_stvrxl (vus, signed long long, vus *);
STVRXL STVRXL_VUS
void __builtin_vec_stvrxl (vus, signed long long, unsigned short *);
STVRXL STVRXL_US
void __builtin_vec_stvrxl (vp, signed long long, vp *);
STVRXL STVRXL_VP
void __builtin_vec_stvrxl (vbi, signed long long, vbi *);
STVRXL STVRXL_VBI
void __builtin_vec_stvrxl (vsi, signed long long, vsi *);
STVRXL STVRXL_VSI
void __builtin_vec_stvrxl (vsi, signed long long, signed int *);
STVRXL STVRXL_SI
void __builtin_vec_stvrxl (vui, signed long long, vui *);
STVRXL STVRXL_VUI
void __builtin_vec_stvrxl (vui, signed long long, unsigned int *);
STVRXL STVRXL_UI
void __builtin_vec_stvrxl (vf, signed long long, vf *);
STVRXL STVRXL_VF
void __builtin_vec_stvrxl (vf, signed long long, float *);
STVRXL STVRXL_F
[VEC_STXVL, vec_xst_len, __builtin_vec_stxvl]
void __builtin_vec_stxvl (vsc, signed char *, unsigned int);
STXVL STXVL_VSC
void __builtin_vec_stxvl (vuc, unsigned char *, unsigned int);
STXVL STXVL_VUC
void __builtin_vec_stxvl (vss, signed short *, unsigned int);
STXVL STXVL_VSS
void __builtin_vec_stxvl (vus, unsigned short *, unsigned int);
STXVL STXVL_VUS
void __builtin_vec_stxvl (vsi, signed int *, unsigned int);
STXVL STXVL_VSI
void __builtin_vec_stxvl (vui, unsigned int *, unsigned int);
STXVL STXVL_VUI
void __builtin_vec_stxvl (vsll, signed long long *, unsigned int);
STXVL STXVL_VSLL
void __builtin_vec_stxvl (vull, unsigned long long *, unsigned int);
STXVL STXVL_VULL
void __builtin_vec_stxvl (vsq, signed __int128 *, unsigned int);
STXVL STXVL_VSQ
void __builtin_vec_stxvl (vuq, unsigned __int128 *, unsigned int);
STXVL STXVL_VUQ
void __builtin_vec_stxvl (vf, float *, unsigned int);
STXVL STXVL_VF
void __builtin_vec_stxvl (vd, double *, unsigned int);
STXVL STXVL_VD
[VEC_SUB, vec_sub, __builtin_vec_sub]
vsc __builtin_vec_sub (vsc, vsc);
VSUBUBM VSUBUBM_VSC
vuc __builtin_vec_sub (vuc, vuc);
VSUBUBM VSUBUBM_VUC
vss __builtin_vec_sub (vss, vss);
VSUBUHM VSUBUHM_VSS
vus __builtin_vec_sub (vus, vus);
VSUBUHM VSUBUHM_VUS
vsi __builtin_vec_sub (vsi, vsi);
VSUBUWM VSUBUWM_VSI
vui __builtin_vec_sub (vui, vui);
VSUBUWM VSUBUWM_VUI
vsll __builtin_vec_sub (vsll, vsll);
VSUBUDM VSUBUDM_VSLL
vull __builtin_vec_sub (vull, vull);
VSUBUDM VSUBUDM_VULL
vsq __builtin_vec_sub (vsq, vsq);
VSUBUQM VSUBUQM_VSQ
vuq __builtin_vec_sub (vuq, vuq);
VSUBUQM VSUBUQM_VUQ
vf __builtin_vec_sub (vf, vf);
VSUBFP
vd __builtin_vec_sub (vd, vd);
XVSUBDP
; The following variants are deprecated.
vsc __builtin_vec_sub (vsc, vbc);
VSUBUBM VSUBUBM_VSC_VBC
vsc __builtin_vec_sub (vbc, vsc);
VSUBUBM VSUBUBM_VBC_VSC
vuc __builtin_vec_sub (vuc, vbc);
VSUBUBM VSUBUBM_VUC_VBC
vuc __builtin_vec_sub (vbc, vuc);
VSUBUBM VSUBUBM_VBC_VUC
vss __builtin_vec_sub (vss, vbs);
VSUBUHM VSUBUHM_VSS_VBS
vss __builtin_vec_sub (vbs, vss);
VSUBUHM VSUBUHM_VBS_VSS
vus __builtin_vec_sub (vus, vbs);
VSUBUHM VSUBUHM_VUS_VBS
vus __builtin_vec_sub (vbs, vus);
VSUBUHM VSUBUHM_VBS_VUS
vsi __builtin_vec_sub (vsi, vbi);
VSUBUWM VSUBUWM_VSI_VBI
vsi __builtin_vec_sub (vbi, vsi);
VSUBUWM VSUBUWM_VBI_VSI
vui __builtin_vec_sub (vui, vbi);
VSUBUWM VSUBUWM_VUI_VBI
vui __builtin_vec_sub (vbi, vui);
VSUBUWM VSUBUWM_VBI_VUI
vsll __builtin_vec_sub (vsll, vbll);
VSUBUDM VSUBUDM_VSLL_VBLL
vsll __builtin_vec_sub (vbll, vsll);
VSUBUDM VSUBUDM_VBLL_VSLL
vull __builtin_vec_sub (vull, vbll);
VSUBUDM VSUBUDM_VULL_VBLL
vull __builtin_vec_sub (vbll, vull);
VSUBUDM VSUBUDM_VBLL_VULL
[VEC_SUBC, vec_subc, __builtin_vec_subc]
vsi __builtin_vec_subc (vsi, vsi);
VSUBCUW VSUBCUW_VSI
vui __builtin_vec_subc (vui, vui);
VSUBCUW VSUBCUW_VUI
vsq __builtin_vec_subc (vsq, vsq);
VSUBCUQ VSUBCUQ_VSQ
vuq __builtin_vec_subc (vuq, vuq);
VSUBCUQ VSUBCUQ_VUQ
; TODO: Note that the entry for VEC_SUBE currently gets ignored in
; altivec_resolve_overloaded_builtin. Revisit whether we can remove
; that. We still need to register the legal builtin forms here.
[VEC_SUBE, vec_sube, __builtin_vec_sube]
vsq __builtin_vec_sube (vsq, vsq, vsq);
VSUBEUQM VSUBEUQM_VSQ
vuq __builtin_vec_sube (vuq, vuq, vuq);
VSUBEUQM VSUBEUQM_VUQ
; TODO: Note that the entry for VEC_SUBEC currently gets ignored in
; altivec_resolve_overloaded_builtin. Revisit whether we can remove
; that. We still need to register the legal builtin forms here.
[VEC_SUBEC, vec_subec, __builtin_vec_subec]
vsq __builtin_vec_subec (vsq, vsq, vsq);
VSUBECUQ VSUBECUQ_VSQ
vuq __builtin_vec_subec (vuq, vuq, vuq);
VSUBECUQ VSUBECUQ_VUQ
[VEC_SUBS, vec_subs, __builtin_vec_subs]
vuc __builtin_vec_subs (vuc, vuc);
VSUBUBS
vsc __builtin_vec_subs (vsc, vsc);
VSUBSBS
vus __builtin_vec_subs (vus, vus);
VSUBUHS
vss __builtin_vec_subs (vss, vss);
VSUBSHS
vui __builtin_vec_subs (vui, vui);
VSUBUWS
vsi __builtin_vec_subs (vsi, vsi);
VSUBSWS
; The following variants are deprecated.
vuc __builtin_vec_subs (vuc, vbc);
VSUBUBS VSUBUBS_UB
vuc __builtin_vec_subs (vbc, vuc);
VSUBUBS VSUBUBS_BU
vsc __builtin_vec_subs (vsc, vbc);
VSUBSBS VSUBSBS_SB
vsc __builtin_vec_subs (vbc, vsc);
VSUBSBS VSUBSBS_BS
vus __builtin_vec_subs (vus, vbs);
VSUBUHS VSUBUHS_UB
vus __builtin_vec_subs (vbs, vus);
VSUBUHS VSUBUHS_BU
vss __builtin_vec_subs (vss, vbs);
VSUBSHS VSUBSHS_SB
vss __builtin_vec_subs (vbs, vss);
VSUBSHS VSUBSHS_BS
vui __builtin_vec_subs (vui, vbi);
VSUBUWS VSUBUWS_UB
vui __builtin_vec_subs (vbi, vui);
VSUBUWS VSUBUWS_BU
vsi __builtin_vec_subs (vsi, vbi);
VSUBSWS VSUBSWS_SB
vsi __builtin_vec_subs (vbi, vsi);
VSUBSWS VSUBSWS_BS
[VEC_SUM2S, vec_sum2s, __builtin_vec_sum2s]
vsi __builtin_vec_sum2s (vsi, vsi);
VSUM2SWS
[VEC_SUM4S, vec_sum4s, __builtin_vec_sum4s]
vui __builtin_vec_sum4s (vuc, vui);
VSUM4UBS
vsi __builtin_vec_sum4s (vsc, vsi);
VSUM4SBS
vsi __builtin_vec_sum4s (vss, vsi);
VSUM4SHS
[VEC_SUMS, vec_sums, __builtin_vec_sums]
vsi __builtin_vec_sums (vsi, vsi);
VSUMSWS
[VEC_TERNARYLOGIC, vec_ternarylogic, __builtin_vec_xxeval]
vuc __builtin_vec_xxeval (vuc, vuc, vuc, const int);
XXEVAL XXEVAL_VUC
vus __builtin_vec_xxeval (vus, vus, vus, const int);
XXEVAL XXEVAL_VUS
vui __builtin_vec_xxeval (vui, vui, vui, const int);
XXEVAL XXEVAL_VUI
vull __builtin_vec_xxeval (vull, vull, vull, const int);
XXEVAL XXEVAL_VULL
vuq __builtin_vec_xxeval (vuq, vuq, vuq, const int);
XXEVAL XXEVAL_VUQ
[VEC_TEST_LSBB_ALL_ONES, vec_test_lsbb_all_ones, __builtin_vec_xvtlsbb_all_ones]
signed int __builtin_vec_xvtlsbb_all_ones (vsc);
XVTLSBB_ONES LSBB_ALL_ONES_VSC
signed int __builtin_vec_xvtlsbb_all_ones (vuc);
XVTLSBB_ONES LSBB_ALL_ONES_VUC
signed int __builtin_vec_xvtlsbb_all_ones (vbc);
XVTLSBB_ONES LSBB_ALL_ONES_VBC
[VEC_TEST_LSBB_ALL_ZEROS, vec_test_lsbb_all_zeros, __builtin_vec_xvtlsbb_all_zeros]
signed int __builtin_vec_xvtlsbb_all_zeros (vsc);
XVTLSBB_ZEROS LSBB_ALL_ZEROS_VSC
signed int __builtin_vec_xvtlsbb_all_zeros (vuc);
XVTLSBB_ZEROS LSBB_ALL_ZEROS_VUC
signed int __builtin_vec_xvtlsbb_all_zeros (vbc);
XVTLSBB_ZEROS LSBB_ALL_ZEROS_VBC
[VEC_TRUNC, vec_trunc, __builtin_vec_trunc]
vf __builtin_vec_trunc (vf);
VRFIZ
vd __builtin_vec_trunc (vd);
XVRDPIZ
[VEC_TSTSFI_GT, SKIP, __builtin_dfp_dtstsfi_gt]
signed int __builtin_dfp_dtstsfi_gt (const int, _Decimal64);
TSTSFI_GT_DD
signed int __builtin_dfp_dtstsfi_gt (const int, _Decimal128);
TSTSFI_GT_TD
[VEC_TSTSFI_EQ, SKIP, __builtin_dfp_dtstsfi_eq]
signed int __builtin_dfp_dtstsfi_eq (const int, _Decimal64);
TSTSFI_EQ_DD
signed int __builtin_dfp_dtstsfi_eq (const int, _Decimal128);
TSTSFI_EQ_TD
[VEC_TSTSFI_LT, SKIP, __builtin_dfp_dtstsfi_lt]
signed int __builtin_dfp_dtstsfi_lt (const int, _Decimal64);
TSTSFI_LT_DD
signed int __builtin_dfp_dtstsfi_lt (const int, _Decimal128);
TSTSFI_LT_TD
[VEC_TSTSFI_OV, SKIP, __builtin_dfp_dtstsfi_ov]
signed int __builtin_dfp_dtstsfi_ov (const int, _Decimal64);
TSTSFI_OV_DD
signed int __builtin_dfp_dtstsfi_ov (const int, _Decimal128);
TSTSFI_OV_TD
[VEC_UNPACKH, vec_unpackh, __builtin_vec_unpackh]
vss __builtin_vec_unpackh (vsc);
VUPKHSB VUPKHSB_VSC
vbs __builtin_vec_unpackh (vbc);
VUPKHSB VUPKHSB_VBC
vsi __builtin_vec_unpackh (vss);
VUPKHSH VUPKHSH_VSS
vbi __builtin_vec_unpackh (vbs);
VUPKHSH VUPKHSH_VBS
vui __builtin_vec_unpackh (vp);
VUPKHPX
vsll __builtin_vec_unpackh (vsi);
VUPKHSW VUPKHSW_VSI
vbll __builtin_vec_unpackh (vbi);
VUPKHSW VUPKHSW_VBI
vd __builtin_vec_unpackh (vf);
DOUBLEH_V4SF VUPKHF
[VEC_UNPACKL, vec_unpackl, __builtin_vec_unpackl]
vss __builtin_vec_unpackl (vsc);
VUPKLSB VUPKLSB_VSC
vbs __builtin_vec_unpackl (vbc);
VUPKLSB VUPKLSB_VBC
vsi __builtin_vec_unpackl (vss);
VUPKLSH VUPKLSH_VSS
vbi __builtin_vec_unpackl (vbs);
VUPKLSH VUPKLSH_VBS
vui __builtin_vec_unpackl (vp);
VUPKLPX
vsll __builtin_vec_unpackl (vsi);
VUPKLSW VUPKLSW_VSI
vbll __builtin_vec_unpackl (vbi);
VUPKLSW VUPKLSW_VBI
vd __builtin_vec_unpackl (vf);
DOUBLEL_V4SF VUPKLF
[VEC_UNSIGNED, vec_unsigned, __builtin_vec_vunsigned]
vui __builtin_vec_vunsigned (vf);
VEC_VUNSIGNED_V4SF
vull __builtin_vec_vunsigned (vd);
VEC_VUNSIGNED_V2DF
[VEC_UNSIGNED2, vec_unsigned2, __builtin_vec_vunsigned2]
vui __builtin_vec_vunsigned2 (vd, vd);
VEC_VUNSIGNED2_V2DF
[VEC_UNSIGNEDE, vec_unsignede, __builtin_vec_vunsignede]
vui __builtin_vec_vunsignede (vd);
VEC_VUNSIGNEDE_V2DF
vull __builtin_vec_vunsignede (vf);
VEC_VUNSIGNEDE_V4SF
[VEC_UNSIGNEDO, vec_unsignedo, __builtin_vec_vunsignedo]
vui __builtin_vec_vunsignedo (vd);
VEC_VUNSIGNEDO_V2DF
vull __builtin_vec_vunsignedo (vf);
VEC_VUNSIGNEDO_V4SF
[VEC_VEE, vec_extract_exp, __builtin_vec_extract_exp]
vui __builtin_vec_extract_exp (vf);
VEESP
vull __builtin_vec_extract_exp (vd);
VEEDP
[VEC_VES, vec_extract_sig, __builtin_vec_extract_sig]
vui __builtin_vec_extract_sig (vf);
VESSP
vull __builtin_vec_extract_sig (vd);
VESDP
[VEC_VIE, vec_insert_exp, __builtin_vec_insert_exp]
vf __builtin_vec_insert_exp (vf, vui);
VIESP VIESP_VF
vf __builtin_vec_insert_exp (vui, vui);
VIESP VIESP_VUI
vd __builtin_vec_insert_exp (vd, vull);
VIEDP VIEDP_VD
vd __builtin_vec_insert_exp (vull, vull);
VIEDP VIEDP_VULL
; It is truly unfortunate that vec_vprtyb has an incompatible set of
; interfaces with vec_parity_lsbb. So we can't even deprecate this.
[VEC_VPRTYB, vec_vprtyb, __builtin_vec_vprtyb]
vsi __builtin_vec_vprtyb (vsi);
VPRTYBW VPRTYB_VSI
vui __builtin_vec_vprtyb (vui);
VPRTYBW VPRTYB_VUI
vsll __builtin_vec_vprtyb (vsll);
VPRTYBD VPRTYB_VSLL
vull __builtin_vec_vprtyb (vull);
VPRTYBD VPRTYB_VULL
vsq __builtin_vec_vprtyb (vsq);
VPRTYBQ VPRTYB_VSQ
vuq __builtin_vec_vprtyb (vuq);
VPRTYBQ VPRTYB_VUQ
signed __int128 __builtin_vec_vprtyb (signed __int128);
VPRTYBQ VPRTYB_SQ
unsigned __int128 __builtin_vec_vprtyb (unsigned __int128);
VPRTYBQ VPRTYB_UQ
[VEC_VSCEEQ, scalar_cmp_exp_eq, __builtin_vec_scalar_cmp_exp_eq]
signed int __builtin_vec_scalar_cmp_exp_eq (double, double);
VSCEDPEQ
signed int __builtin_vec_scalar_cmp_exp_eq (_Float128, _Float128);
VSCEQPEQ
[VEC_VSCEGT, scalar_cmp_exp_gt, __builtin_vec_scalar_cmp_exp_gt]
signed int __builtin_vec_scalar_cmp_exp_gt (double, double);
VSCEDPGT
signed int __builtin_vec_scalar_cmp_exp_gt (_Float128, _Float128);
VSCEQPGT
[VEC_VSCELT, scalar_cmp_exp_lt, __builtin_vec_scalar_cmp_exp_lt]
signed int __builtin_vec_scalar_cmp_exp_lt (double, double);
VSCEDPLT
signed int __builtin_vec_scalar_cmp_exp_lt (_Float128, _Float128);
VSCEQPLT
[VEC_VSCEUO, scalar_cmp_exp_unordered, __builtin_vec_scalar_cmp_exp_unordered]
signed int __builtin_vec_scalar_cmp_exp_unordered (double, double);
VSCEDPUO
signed int __builtin_vec_scalar_cmp_exp_unordered (_Float128, _Float128);
VSCEQPUO
[VEC_VSEE, scalar_extract_exp, __builtin_vec_scalar_extract_exp]
unsigned int __builtin_vec_scalar_extract_exp (double);
VSEEDP
unsigned int __builtin_vec_scalar_extract_exp (_Float128);
VSEEQP
[VEC_VSES, scalar_extract_sig, __builtin_vec_scalar_extract_sig]
unsigned long long __builtin_vec_scalar_extract_sig (double);
VSESDP
unsigned __int128 __builtin_vec_scalar_extract_sig (_Float128);
VSESQP
[VEC_VSIE, scalar_insert_exp, __builtin_vec_scalar_insert_exp]
double __builtin_vec_scalar_insert_exp (unsigned long long, unsigned long long);
VSIEDP
double __builtin_vec_scalar_insert_exp (double, unsigned long long);
VSIEDPF
_Float128 __builtin_vec_scalar_insert_exp (unsigned __int128, unsigned long long);
VSIEQP
_Float128 __builtin_vec_scalar_insert_exp (_Float128, unsigned long long);
VSIEQPF
_Float128 __builtin_vec_scalar_insert_exp (vuq, vull);
VSIEQPV
[VEC_VSEEV, scalar_extract_exp_to_vec, \
__builtin_vec_scalar_extract_exp_to_vector]
vull __builtin_vec_scalar_extract_exp_to_vector (_Float128);
VSEEQPV
[VEC_VSESV, scalar_extract_sig_to_vec, \
__builtin_vec_scalar_extract_sig_to_vector]
vuq __builtin_vec_scalar_extract_sig_to_vector (_Float128);
VSESQPV
[VEC_VSTDC, scalar_test_data_class, __builtin_vec_scalar_test_data_class]
unsigned int __builtin_vec_scalar_test_data_class (float, const int);
VSTDCSP
unsigned int __builtin_vec_scalar_test_data_class (double, const int);
VSTDCDP
unsigned int __builtin_vec_scalar_test_data_class (_Float128, const int);
VSTDCQP
[VEC_VSTDCN, scalar_test_neg, __builtin_vec_scalar_test_neg]
unsigned int __builtin_vec_scalar_test_neg (float);
VSTDCNSP
unsigned int __builtin_vec_scalar_test_neg (double);
VSTDCNDP
unsigned int __builtin_vec_scalar_test_neg (_Float128);
VSTDCNQP
[VEC_VTDC, vec_test_data_class, __builtin_vec_test_data_class]
vbi __builtin_vec_test_data_class (vf, const int);
VTDCSP
vbll __builtin_vec_test_data_class (vd, const int);
VTDCDP
[VEC_XL, vec_xl, __builtin_vec_vsx_ld]
vsc __builtin_vec_vsx_ld (signed long long, const vsc *);
LXVW4X_V16QI LXVW4X_VSC
vsc __builtin_vec_vsx_ld (signed long long, const signed char *);
LXVW4X_V16QI LXVW4X_SC
vuc __builtin_vec_vsx_ld (signed long long, const vuc *);
LXVW4X_V16QI LXVW4X_VUC
vuc __builtin_vec_vsx_ld (signed long long, const unsigned char *);
LXVW4X_V16QI LXVW4X_UC
vbc __builtin_vec_vsx_ld (signed long long, const vbc *);
LXVW4X_V16QI LXVW4X_VBC
vss __builtin_vec_vsx_ld (signed long long, const vss *);
LXVW4X_V8HI LXVW4X_VSS
vss __builtin_vec_vsx_ld (signed long long, const signed short *);
LXVW4X_V8HI LXVW4X_SS
vus __builtin_vec_vsx_ld (signed long long, const vus *);
LXVW4X_V8HI LXVW4X_VUS
vus __builtin_vec_vsx_ld (signed long long, const unsigned short *);
LXVW4X_V8HI LXVW4X_US
vbs __builtin_vec_vsx_ld (signed long long, const vbs *);
LXVW4X_V8HI LXVW4X_VBS
vp __builtin_vec_vsx_ld (signed long long, const vp *);
LXVW4X_V8HI LXVW4X_P
vsi __builtin_vec_vsx_ld (signed long long, const vsi *);
LXVW4X_V4SI LXVW4X_VSI
vsi __builtin_vec_vsx_ld (signed long long, const signed int *);
LXVW4X_V4SI LXVW4X_SI
vui __builtin_vec_vsx_ld (signed long long, const vui *);
LXVW4X_V4SI LXVW4X_VUI
vui __builtin_vec_vsx_ld (signed long long, const unsigned int *);
LXVW4X_V4SI LXVW4X_UI
vbi __builtin_vec_vsx_ld (signed long long, const vbi *);
LXVW4X_V4SI LXVW4X_VBI
vsll __builtin_vec_vsx_ld (signed long long, const vsll *);
LXVD2X_V2DI LXVD2X_VSLL
vsll __builtin_vec_vsx_ld (signed long long, const signed long long *);
LXVD2X_V2DI LXVD2X_SLL
vull __builtin_vec_vsx_ld (signed long long, const vull *);
LXVD2X_V2DI LXVD2X_VULL
vull __builtin_vec_vsx_ld (signed long long, const unsigned long long *);
LXVD2X_V2DI LXVD2X_ULL
vbll __builtin_vec_vsx_ld (signed long long, const vbll *);
LXVD2X_V2DI LXVD2X_VBLL
vsq __builtin_vec_vsx_ld (signed long long, const vsq *);
LXVD2X_V1TI LXVD2X_VSQ
vsq __builtin_vec_vsx_ld (signed long long, const signed __int128 *);
LXVD2X_V1TI LXVD2X_SQ
vuq __builtin_vec_vsx_ld (signed long long, const unsigned __int128 *);
LXVD2X_V1TI LXVD2X_UQ
vf __builtin_vec_vsx_ld (signed long long, const vf *);
LXVW4X_V4SF LXVW4X_VF
vf __builtin_vec_vsx_ld (signed long long, const float *);
LXVW4X_V4SF LXVW4X_F
vd __builtin_vec_vsx_ld (signed long long, const vd *);
LXVD2X_V2DF LXVD2X_VD
vd __builtin_vec_vsx_ld (signed long long, const double *);
LXVD2X_V2DF LXVD2X_D
[VEC_XL_BE, vec_xl_be, __builtin_vec_xl_be]
vsc __builtin_vec_xl_be (signed long long, const vsc *);
LD_ELEMREV_V16QI LD_ELEMREV_VSC
vsc __builtin_vec_xl_be (signed long long, const signed char *);
LD_ELEMREV_V16QI LD_ELEMREV_SC
vuc __builtin_vec_xl_be (signed long long, const vuc *);
LD_ELEMREV_V16QI LD_ELEMREV_VUC
vuc __builtin_vec_xl_be (signed long long, const unsigned char *);
LD_ELEMREV_V16QI LD_ELEMREV_UC
vss __builtin_vec_xl_be (signed long long, const vss *);
LD_ELEMREV_V8HI LD_ELEMREV_VSS
vss __builtin_vec_xl_be (signed long long, const signed short *);
LD_ELEMREV_V8HI LD_ELEMREV_SS
vus __builtin_vec_xl_be (signed long long, const vus *);
LD_ELEMREV_V8HI LD_ELEMREV_VUS
vus __builtin_vec_xl_be (signed long long, const unsigned short *);
LD_ELEMREV_V8HI LD_ELEMREV_US
vsi __builtin_vec_xl_be (signed long long, const vsi *);
LD_ELEMREV_V4SI LD_ELEMREV_VSI
vsi __builtin_vec_xl_be (signed long long, const signed int *);
LD_ELEMREV_V4SI LD_ELEMREV_SI
vui __builtin_vec_xl_be (signed long long, const vui *);
LD_ELEMREV_V4SI LD_ELEMREV_VUI
vui __builtin_vec_xl_be (signed long long, const unsigned int *);
LD_ELEMREV_V4SI LD_ELEMREV_UI
vsll __builtin_vec_xl_be (signed long long, const vsll *);
LD_ELEMREV_V2DI LD_ELEMREV_VSLL
vsll __builtin_vec_xl_be (signed long long, const signed long long *);
LD_ELEMREV_V2DI LD_ELEMREV_SLL
vull __builtin_vec_xl_be (signed long long, const vull *);
LD_ELEMREV_V2DI LD_ELEMREV_VULL
vull __builtin_vec_xl_be (signed long long, const unsigned long long *);
LD_ELEMREV_V2DI LD_ELEMREV_ULL
vsq __builtin_vec_xl_be (signed long long, const signed __int128 *);
LD_ELEMREV_V1TI LD_ELEMREV_SQ
vuq __builtin_vec_xl_be (signed long long, const unsigned __int128 *);
LD_ELEMREV_V1TI LD_ELEMREV_UQ
vf __builtin_vec_xl_be (signed long long, const vf *);
LD_ELEMREV_V4SF LD_ELEMREV_VF
vf __builtin_vec_xl_be (signed long long, const float *);
LD_ELEMREV_V4SF LD_ELEMREV_F
vd __builtin_vec_xl_be (signed long long, const vd *);
LD_ELEMREV_V2DF LD_ELEMREV_VD
vd __builtin_vec_xl_be (signed long long, const double *);
LD_ELEMREV_V2DF LD_ELEMREV_DD
[VEC_XL_LEN_R, vec_xl_len_r, __builtin_vec_xl_len_r]
vuc __builtin_vsx_xl_len_r (const unsigned char *, unsigned int);
XL_LEN_R
[VEC_XL_SEXT, vec_xl_sext, __builtin_vec_xl_sext]
vsq __builtin_vec_xl_sext (signed long long, const signed char *);
SE_LXVRBX
vsq __builtin_vec_xl_sext (signed long long, const signed short *);
SE_LXVRHX
vsq __builtin_vec_xl_sext (signed long long, const signed int *);
SE_LXVRWX
vsq __builtin_vec_xl_sext (signed long long, const signed long long *);
SE_LXVRDX
[VEC_XL_ZEXT, vec_xl_zext, __builtin_vec_xl_zext]
vuq __builtin_vec_xl_zext (signed long long, const unsigned char *);
ZE_LXVRBX
vuq __builtin_vec_xl_zext (signed long long, const unsigned short *);
ZE_LXVRHX
vuq __builtin_vec_xl_zext (signed long long, const unsigned int *);
ZE_LXVRWX
vuq __builtin_vec_xl_zext (signed long long, const unsigned long long *);
ZE_LXVRDX
[VEC_XOR, vec_xor, __builtin_vec_xor]
vsc __builtin_vec_xor (vsc, vsc);
VXOR_V16QI
vuc __builtin_vec_xor (vuc, vuc);
VXOR_V16QI_UNS VXOR_VUC
vbc __builtin_vec_xor (vbc, vbc);
VXOR_V16QI_UNS VXOR_VBC
vss __builtin_vec_xor (vss, vss);
VXOR_V8HI
vus __builtin_vec_xor (vus, vus);
VXOR_V8HI_UNS VXOR_VUS
vbs __builtin_vec_xor (vbs, vbs);
VXOR_V8HI_UNS VXOR_VBS
vsi __builtin_vec_xor (vsi, vsi);
VXOR_V4SI
vui __builtin_vec_xor (vui, vui);
VXOR_V4SI_UNS VXOR_VUI
vbi __builtin_vec_xor (vbi, vbi);
VXOR_V4SI_UNS VXOR_VBI
vsll __builtin_vec_xor (vsll, vsll);
VXOR_V2DI
vull __builtin_vec_xor (vull, vull);
VXOR_V2DI_UNS VXOR_VULL
vbll __builtin_vec_xor (vbll, vbll);
VXOR_V2DI_UNS VXOR_VBLL
vf __builtin_vec_xor (vf, vf);
VXOR_V4SF
vd __builtin_vec_xor (vd, vd);
VXOR_V2DF
; The following variants are deprecated.
vsc __builtin_vec_xor (vsc, vbc);
VXOR_V16QI VXOR_VSC_VBC
vsc __builtin_vec_xor (vbc, vsc);
VXOR_V16QI VXOR_VBC_VSC
vsc __builtin_vec_xor (vsc, vuc);
VXOR_V16QI VXOR_VSC_VUC
vuc __builtin_vec_xor (vuc, vbc);
VXOR_V16QI_UNS VXOR_VUC_VBC
vuc __builtin_vec_xor (vbc, vuc);
VXOR_V16QI_UNS VXOR_VBC_VUC
vuc __builtin_vec_xor (vuc, vsc);
VXOR_V16QI_UNS VXOR_VUC_VSC
vss __builtin_vec_xor (vss, vbs);
VXOR_V8HI VXOR_VSS_VBS
vss __builtin_vec_xor (vbs, vss);
VXOR_V8HI VXOR_VBS_VSS
vus __builtin_vec_xor (vus, vbs);
VXOR_V8HI_UNS VXOR_VUS_VBS
vus __builtin_vec_xor (vbs, vus);
VXOR_V8HI_UNS VXOR_VBS_VUS
vsi __builtin_vec_xor (vsi, vbi);
VXOR_V4SI VXOR_VSI_VBI
vsi __builtin_vec_xor (vbi, vsi);
VXOR_V4SI VXOR_VBI_VSI
vui __builtin_vec_xor (vui, vbi);
VXOR_V4SI_UNS VXOR_VUI_VBI
vui __builtin_vec_xor (vbi, vui);
VXOR_V4SI_UNS VXOR_VBI_VUI
vsll __builtin_vec_xor (vsll, vbll);
VXOR_V2DI VXOR_VSLL_VBLL
vsll __builtin_vec_xor (vbll, vsll);
VXOR_V2DI VXOR_VBLL_VSLL
vull __builtin_vec_xor (vull, vbll);
VXOR_V2DI_UNS VXOR_VULL_VBLL
vull __builtin_vec_xor (vbll, vull);
VXOR_V2DI_UNS VXOR_VBLL_VULL
vf __builtin_vec_xor (vf, vbi);
VXOR_V4SF VXOR_VF_VBI
vf __builtin_vec_xor (vbi, vf);
VXOR_V4SF VXOR_VBI_VF
vd __builtin_vec_xor (vd, vbll);
VXOR_V2DF VXOR_VD_VBLL
vd __builtin_vec_xor (vbll, vd);
VXOR_V2DF VXOR_VBLL_VD
[VEC_XST, vec_xst, __builtin_vec_vsx_st]
void __builtin_vec_vsx_st (vsc, signed long long, vsc *);
STXVW4X_V16QI STXVW4X_VSC
void __builtin_vec_vsx_st (vsc, signed long long, signed char *);
STXVW4X_V16QI STXVW4X_SC
void __builtin_vec_vsx_st (vuc, signed long long, vuc *);
STXVW4X_V16QI STXVW4X_VUC
void __builtin_vec_vsx_st (vuc, signed long long, unsigned char *);
STXVW4X_V16QI STXVW4X_UC
void __builtin_vec_vsx_st (vbc, signed long long, vbc *);
STXVW4X_V16QI STXVW4X_VBC
void __builtin_vec_vsx_st (vbc, signed long long, signed char *);
STXVW4X_V16QI STXVW4X_VBC_S
void __builtin_vec_vsx_st (vbc, signed long long, unsigned char *);
STXVW4X_V16QI STXVW4X_VBC_U
void __builtin_vec_vsx_st (vss, signed long long, vss *);
STXVW4X_V8HI STXVW4X_VSS
void __builtin_vec_vsx_st (vss, signed long long, signed short *);
STXVW4X_V8HI STXVW4X_SS
void __builtin_vec_vsx_st (vus, signed long long, vus *);
STXVW4X_V8HI STXVW4X_VUS
void __builtin_vec_vsx_st (vus, signed long long, unsigned short *);
STXVW4X_V8HI STXVW4X_US
void __builtin_vec_vsx_st (vbs, signed long long, vbs *);
STXVW4X_V8HI STXVW4X_VBS
void __builtin_vec_vsx_st (vbs, signed long long, signed short *);
STXVW4X_V8HI STXVW4X_VBS_S
void __builtin_vec_vsx_st (vbs, signed long long, unsigned short *);
STXVW4X_V8HI STXVW4X_VBS_U
void __builtin_vec_vsx_st (vp, signed long long, vp *);
STXVW4X_V8HI STXVW4X_VP
void __builtin_vec_vsx_st (vsi, signed long long, vsi *);
STXVW4X_V4SI STXVW4X_VSI
void __builtin_vec_vsx_st (vsi, signed long long, signed int *);
STXVW4X_V4SI STXVW4X_SI
void __builtin_vec_vsx_st (vui, signed long long, vui *);
STXVW4X_V4SI STXVW4X_VUI
void __builtin_vec_vsx_st (vui, signed long long, unsigned int *);
STXVW4X_V4SI STXVW4X_UI
void __builtin_vec_vsx_st (vbi, signed long long, vbi *);
STXVW4X_V4SI STXVW4X_VBI
void __builtin_vec_vsx_st (vbi, signed long long, signed int *);
STXVW4X_V4SI STXVW4X_VBI_S
void __builtin_vec_vsx_st (vbi, signed long long, unsigned int *);
STXVW4X_V4SI STXVW4X_VBI_U
void __builtin_vec_vsx_st (vsll, signed long long, vsll *);
STXVD2X_V2DI STXVD2X_VSLL
void __builtin_vec_vsx_st (vsll, signed long long, signed long long *);
STXVD2X_V2DI STXVD2X_SLL
void __builtin_vec_vsx_st (vull, signed long long, vull *);
STXVD2X_V2DI STXVD2X_VULL
void __builtin_vec_vsx_st (vull, signed long long, unsigned long long *);
STXVD2X_V2DI STXVD2X_ULL
void __builtin_vec_vsx_st (vbll, signed long long, vbll *);
STXVD2X_V2DI STXVD2X_VBLL
void __builtin_vec_vsx_st (vsq, signed long long, signed __int128 *);
STXVD2X_V1TI STXVD2X_SQ
void __builtin_vec_vsx_st (vuq, signed long long, unsigned __int128 *);
STXVD2X_V1TI STXVD2X_UQ
void __builtin_vec_vsx_st (vf, signed long long, vf *);
STXVW4X_V4SF STXVW4X_VF
void __builtin_vec_vsx_st (vf, signed long long, float *);
STXVW4X_V4SF STXVW4X_F
void __builtin_vec_vsx_st (vd, signed long long, vd *);
STXVD2X_V2DF STXVD2X_VD
void __builtin_vec_vsx_st (vd, signed long long, double *);
STXVD2X_V2DF STXVD2X_D
[VEC_XST_BE, vec_xst_be, __builtin_vec_xst_be]
void __builtin_vec_xst_be (vsc, signed long long, vsc *);
ST_ELEMREV_V16QI ST_ELEMREV_VSC
void __builtin_vec_xst_be (vsc, signed long long, signed char *);
ST_ELEMREV_V16QI ST_ELEMREV_SC_
void __builtin_vec_xst_be (vuc, signed long long, vuc *);
ST_ELEMREV_V16QI ST_ELEMREV_VUC
void __builtin_vec_xst_be (vuc, signed long long, unsigned char *);
ST_ELEMREV_V16QI ST_ELEMREV_UC
void __builtin_vec_xst_be (vss, signed long long, vss *);
ST_ELEMREV_V8HI ST_ELEMREV_VSS
void __builtin_vec_xst_be (vss, signed long long, signed short *);
ST_ELEMREV_V8HI ST_ELEMREV_SS
void __builtin_vec_xst_be (vus, signed long long, vus *);
ST_ELEMREV_V8HI ST_ELEMREV_VUS
void __builtin_vec_xst_be (vus, signed long long, unsigned short *);
ST_ELEMREV_V8HI ST_ELEMREV_US
void __builtin_vec_xst_be (vsi, signed long long, vsi *);
ST_ELEMREV_V4SI ST_ELEMREV_VSI
void __builtin_vec_xst_be (vsi, signed long long, signed int *);
ST_ELEMREV_V4SI ST_ELEMREV_SI
void __builtin_vec_xst_be (vui, signed long long, vui *);
ST_ELEMREV_V4SI ST_ELEMREV_VUI
void __builtin_vec_xst_be (vui, signed long long, unsigned int *);
ST_ELEMREV_V4SI ST_ELEMREV_UI
void __builtin_vec_xst_be (vsll, signed long long, vsll *);
ST_ELEMREV_V2DI ST_ELEMREV_VSLL
void __builtin_vec_xst_be (vsll, signed long long, signed long long *);
ST_ELEMREV_V2DI ST_ELEMREV_SLL
void __builtin_vec_xst_be (vull, signed long long, vull *);
ST_ELEMREV_V2DI ST_ELEMREV_VULL
void __builtin_vec_xst_be (vull, signed long long, unsigned long long *);
ST_ELEMREV_V2DI ST_ELEMREV_ULL
void __builtin_vec_xst_be (vsq, signed long long, signed __int128 *);
ST_ELEMREV_V1TI ST_ELEMREV_SQ
void __builtin_vec_xst_be (vuq, signed long long, unsigned __int128 *);
ST_ELEMREV_V1TI ST_ELEMREV_UQ
void __builtin_vec_xst_be (vf, signed long long, vf *);
ST_ELEMREV_V4SF ST_ELEMREV_VF
void __builtin_vec_xst_be (vf, signed long long, float *);
ST_ELEMREV_V4SF ST_ELEMREV_F
void __builtin_vec_xst_be (vd, signed long long, vd *);
ST_ELEMREV_V2DF ST_ELEMREV_VD
void __builtin_vec_xst_be (vd, signed long long, double *);
ST_ELEMREV_V2DF ST_ELEMREV_D
[VEC_XST_LEN_R, vec_xst_len_r, __builtin_vec_xst_len_r]
void __builtin_vsx_xst_len_r (vuc, unsigned char *, unsigned int);
XST_LEN_R
[VEC_XST_TRUNC, vec_xst_trunc, __builtin_vec_xst_trunc]
void __builtin_vec_xst_trunc (vsq, signed long long, signed char *);
TR_STXVRBX TR_STXVRBX_S
void __builtin_vec_xst_trunc (vuq, signed long long, unsigned char *);
TR_STXVRBX TR_STXVRBX_U
void __builtin_vec_xst_trunc (vsq, signed long long, signed short *);
TR_STXVRHX TR_STXVRHX_S
void __builtin_vec_xst_trunc (vuq, signed long long, unsigned short *);
TR_STXVRHX TR_STXVRHX_U
void __builtin_vec_xst_trunc (vsq, signed long long, signed int *);
TR_STXVRWX TR_STXVRWX_S
void __builtin_vec_xst_trunc (vuq, signed long long, unsigned int *);
TR_STXVRWX TR_STXVRWX_U
void __builtin_vec_xst_trunc (vsq, signed long long, signed long long *);
TR_STXVRDX TR_STXVRDX_S
void __builtin_vec_xst_trunc (vuq, signed long long, unsigned long long *);
TR_STXVRDX TR_STXVRDX_U
[VEC_XXPERMDI, vec_xxpermdi, __builtin_vsx_xxpermdi]
vsc __builtin_vsx_xxpermdi (vsc, vsc, const int);
XXPERMDI_16QI XXPERMDI_VSC
vuc __builtin_vsx_xxpermdi (vuc, vuc, const int);
XXPERMDI_16QI XXPERMDI_VUC
vss __builtin_vsx_xxpermdi (vss, vss, const int);
XXPERMDI_8HI XXPERMDI_VSS
vus __builtin_vsx_xxpermdi (vus, vus, const int);
XXPERMDI_8HI XXPERMDI_VUS
vsi __builtin_vsx_xxpermdi (vsi, vsi, const int);
XXPERMDI_4SI XXPERMDI_VSI
vui __builtin_vsx_xxpermdi (vui, vui, const int);
XXPERMDI_4SI XXPERMDI_VUI
vsll __builtin_vsx_xxpermdi (vsll, vsll, const int);
XXPERMDI_2DI XXPERMDI_VSLL
vull __builtin_vsx_xxpermdi (vull, vull, const int);
XXPERMDI_2DI XXPERMDI_VULL
vsq __builtin_vsx_xxpermdi (vsq, vsq, const int);
XXPERMDI_1TI XXPERMDI_SQ
vuq __builtin_vsx_xxpermdi (vuq, vuq, const int);
XXPERMDI_1TI XXPERMDI_UQ
vf __builtin_vsx_xxpermdi (vf, vf, const int);
XXPERMDI_4SF XXPERMDI_VF
vd __builtin_vsx_xxpermdi (vd, vd, const int);
XXPERMDI_2DF XXPERMDI_VD
[VEC_XXSLDWI, vec_xxsldwi, __builtin_vsx_xxsldwi]
vsc __builtin_vsx_xxsldwi (vsc, vsc, const int);
XXSLDWI_16QI XXSLDWI_VSC2
vuc __builtin_vsx_xxsldwi (vuc, vuc, const int);
XXSLDWI_16QI XXSLDWI_VUC2
vss __builtin_vsx_xxsldwi (vss, vss, const int);
XXSLDWI_8HI XXSLDWI_VSS2
vus __builtin_vsx_xxsldwi (vus, vus, const int);
XXSLDWI_8HI XXSLDWI_VUS2
vsi __builtin_vsx_xxsldwi (vsi, vsi, const int);
XXSLDWI_4SI XXSLDWI_VSI2
vui __builtin_vsx_xxsldwi (vui, vui, const int);
XXSLDWI_4SI XXSLDWI_VUI2
vsll __builtin_vsx_xxsldwi (vsll, vsll, const int);
XXSLDWI_2DI XXSLDWI_VSLL2
vull __builtin_vsx_xxsldwi (vull, vull, const int);
XXSLDWI_2DI XXSLDWI_VULL2
vf __builtin_vsx_xxsldwi (vf, vf, const int);
XXSLDWI_4SF XXSLDWI_VF2
vd __builtin_vsx_xxsldwi (vd, vd, const int);
XXSLDWI_2DF XXSLDWI_VD2
; **************************************************************************
; **************************************************************************
; **** Deprecated overloads that should never have existed at all ****
; **************************************************************************
; **************************************************************************
[VEC_LVEBX, vec_lvebx, __builtin_vec_lvebx]
vsc __builtin_vec_lvebx (signed long, signed char *);
LVEBX LVEBX_DEPR1
vuc __builtin_vec_lvebx (signed long, unsigned char *);
LVEBX LVEBX_DEPR2
[VEC_LVEHX, vec_lvehx, __builtin_vec_lvehx]
vss __builtin_vec_lvehx (signed long, signed short *);
LVEHX LVEHX_DEPR1
vus __builtin_vec_lvehx (signed long, unsigned short *);
LVEHX LVEHX_DEPR2
[VEC_LVEWX, vec_lvewx, __builtin_vec_lvewx]
vf __builtin_vec_lvewx (signed long, float *);
LVEWX LVEWX_DEPR1
vsi __builtin_vec_lvewx (signed long, signed int *);
LVEWX LVEWX_DEPR2
vui __builtin_vec_lvewx (signed long, unsigned int *);
LVEWX LVEWX_DEPR3
vsi __builtin_vec_lvewx (signed long, signed long *);
LVEWX LVEWX_DEPR4
vui __builtin_vec_lvewx (signed long, unsigned long *);
LVEWX LVEWX_DEPR5
[VEC_STVEBX, vec_stvebx, __builtin_vec_stvebx]
void __builtin_vec_stvebx (vsc, signed long, signed char *);
STVEBX STVEBX_DEPR1
void __builtin_vec_stvebx (vuc, signed long, unsigned char *);
STVEBX STVEBX_DEPR2
void __builtin_vec_stvebx (vbc, signed long, signed char *);
STVEBX STVEBX_DEPR3
void __builtin_vec_stvebx (vbc, signed long, signed char *);
STVEBX STVEBX_DEPR4
void __builtin_vec_stvebx (vsc, signed long, void *);
STVEBX STVEBX_DEPR5
void __builtin_vec_stvebx (vuc, signed long, void *);
STVEBX STVEBX_DEPR6
[VEC_STVEHX, vec_stvehx, __builtin_vec_stvehx]
void __builtin_vec_stvehx (vss, signed long, signed short *);
STVEHX STVEHX_DEPR1
void __builtin_vec_stvehx (vus, signed long, unsigned short *);
STVEHX STVEHX_DEPR2
void __builtin_vec_stvehx (vbs, signed long, signed short *);
STVEHX STVEHX_DEPR3
void __builtin_vec_stvehx (vbs, signed long, signed short *);
STVEHX STVEHX_DEPR4
void __builtin_vec_stvehx (vss, signed long, void *);
STVEHX STVEHX_DEPR5
void __builtin_vec_stvehx (vus, signed long, void *);
STVEHX STVEHX_DEPR6
[VEC_STVEWX, vec_stvewx, __builtin_vec_stvewx]
void __builtin_vec_stvewx (vf, signed long, float *);
STVEWX STVEWX_DEPR1
void __builtin_vec_stvewx (vsi, signed long, signed int *);
STVEWX STVEWX_DEPR2
void __builtin_vec_stvewx (vui, signed long, unsigned int *);
STVEWX STVEWX_DEPR3
void __builtin_vec_stvewx (vbi, signed long, signed int *);
STVEWX STVEWX_DEPR4
void __builtin_vec_stvewx (vbi, signed long, unsigned int *);
STVEWX STVEWX_DEPR5
void __builtin_vec_stvewx (vf, signed long, void *);
STVEWX STVEWX_DEPR6
void __builtin_vec_stvewx (vsi, signed long, void *);
STVEWX STVEWX_DEPR7
void __builtin_vec_stvewx (vui, signed long, void *);
STVEWX STVEWX_DEPR8
[VEC_TSTSFI_EQ_DD, SKIP, __builtin_dfp_dtstsfi_eq_dd]
signed int __builtin_dfp_dtstsfi_eq_dd (const int, _Decimal64);
TSTSFI_EQ_DD TSTSFI_EQ_DD_DEPR1
[VEC_TSTSFI_EQ_TD, SKIP, __builtin_dfp_dtstsfi_eq_td]
signed int __builtin_dfp_dtstsfi_eq_td (const int, _Decimal128);
TSTSFI_EQ_TD TSTSFI_EQ_TD_DEPR1
[VEC_TSTSFI_GT_DD, SKIP, __builtin_dfp_dtstsfi_gt_dd]
signed int __builtin_dfp_dtstsfi_gt_dd (const int, _Decimal64);
TSTSFI_GT_DD TSTSFI_GT_DD_DEPR1
[VEC_TSTSFI_GT_TD, SKIP, __builtin_dfp_dtstsfi_gt_td]
signed int __builtin_dfp_dtstsfi_gt_td (const int, _Decimal128);
TSTSFI_GT_TD TSTSFI_GT_TD_DEPR1
[VEC_TSTSFI_LT_DD, SKIP, __builtin_dfp_dtstsfi_lt_dd]
signed int __builtin_dfp_dtstsfi_lt_dd (const int, _Decimal64);
TSTSFI_LT_DD TSTSFI_LT_DD_DEPR1
[VEC_TSTSFI_LT_TD, SKIP, __builtin_dfp_dtstsfi_lt_td]
signed int __builtin_dfp_dtstsfi_lt_td (const int, _Decimal128);
TSTSFI_LT_TD TSTSFI_LT_TD_DEPR1
[VEC_TSTSFI_OV_DD, SKIP, __builtin_dfp_dtstsfi_ov_dd]
signed int __builtin_dfp_dtstsfi_ov_dd (const int, _Decimal64);
TSTSFI_OV_DD TSTSFI_OV_DD_DEPR1
[VEC_TSTSFI_OV_TD, SKIP, __builtin_dfp_dtstsfi_ov_td]
signed int __builtin_dfp_dtstsfi_ov_td (const int, _Decimal128);
TSTSFI_OV_TD TSTSFI_OV_TD_DEPR1
[VEC_VADDCUQ, vec_vaddcuq, __builtin_vec_vaddcuq]
vsq __builtin_vec_vaddcuq (vsq, vsq);
VADDCUQ VADDCUQ_DEPR1
vuq __builtin_vec_vaddcuq (vuq, vuq);
VADDCUQ VADDCUQ_DEPR2
[VEC_VADDECUQ, vec_vaddecuq, __builtin_vec_vaddecuq]
vsq __builtin_vec_vaddecuq (vsq, vsq, vsq);
VADDECUQ VADDECUQ_DEPR1
vuq __builtin_vec_vaddecuq (vuq, vuq, vuq);
VADDECUQ VADDECUQ_DEPR2
[VEC_VADDEUQM, vec_vaddeuqm, __builtin_vec_vaddeuqm]
vsq __builtin_vec_vaddeuqm (vsq, vsq, vsq);
VADDEUQM VADDEUQM_DEPR1
vuq __builtin_vec_vaddeuqm (vuq, vuq, vuq);
VADDEUQM VADDEUQM_DEPR2
[VEC_VADDFP, vec_vaddfp, __builtin_vec_vaddfp]
vf __builtin_vec_vaddfp (vf, vf);
VADDFP VADDFP_DEPR1
[VEC_VADDSBS, vec_vaddsbs, __builtin_vec_vaddsbs]
vsc __builtin_vec_vaddsbs (vsc, vsc);
VADDSBS VADDSBS_DEPR1
vsc __builtin_vec_vaddsbs (vbc, vsc);
VADDSBS VADDSBS_DEPR2
vsc __builtin_vec_vaddsbs (vsc, vbc);
VADDSBS VADDSBS_DEPR3
[VEC_VADDSHS, vec_vaddshs, __builtin_vec_vaddshs]
vss __builtin_vec_vaddshs (vss, vss);
VADDSHS VADDSHS_DEPR1
vss __builtin_vec_vaddshs (vbs, vss);
VADDSHS VADDSHS_DEPR2
vss __builtin_vec_vaddshs (vss, vbs);
VADDSHS VADDSHS_DEPR3
[VEC_VADDSWS, vec_vaddsws, __builtin_vec_vaddsws]
vsi __builtin_vec_vaddsws (vsi, vsi);
VADDSWS VADDSWS_DEPR1
vsi __builtin_vec_vaddsws (vbi, vsi);
VADDSWS VADDSWS_DEPR2
vsi __builtin_vec_vaddsws (vsi, vbi);
VADDSWS VADDSWS_DEPR3
[VEC_VADDUBM, vec_vaddubm, __builtin_vec_vaddubm]
vsc __builtin_vec_vaddubm (vsc, vsc);
VADDUBM VADDUBM_DEPR1
vuc __builtin_vec_vaddubm (vsc, vuc);
VADDUBM VADDUBM_DEPR2
vuc __builtin_vec_vaddubm (vuc, vsc);
VADDUBM VADDUBM_DEPR3
vuc __builtin_vec_vaddubm (vuc, vuc);
VADDUBM VADDUBM_DEPR4
vsc __builtin_vec_vaddubm (vbc, vsc);
VADDUBM VADDUBM_DEPR5
vsc __builtin_vec_vaddubm (vsc, vbc);
VADDUBM VADDUBM_DEPR6
vuc __builtin_vec_vaddubm (vbc, vuc);
VADDUBM VADDUBM_DEPR7
vuc __builtin_vec_vaddubm (vuc, vbc);
VADDUBM VADDUBM_DEPR8
[VEC_VADDUBS, vec_vaddubs, __builtin_vec_vaddubs]
vuc __builtin_vec_vaddubs (vsc, vuc);
VADDUBS VADDUBS_DEPR1
vuc __builtin_vec_vaddubs (vuc, vsc);
VADDUBS VADDUBS_DEPR2
vuc __builtin_vec_vaddubs (vuc, vuc);
VADDUBS VADDUBS_DEPR3
vuc __builtin_vec_vaddubs (vbc, vuc);
VADDUBS VADDUBS_DEPR4
vuc __builtin_vec_vaddubs (vuc, vbc);
VADDUBS VADDUBS_DEPR5
[VEC_VADDUDM, vec_vaddudm, __builtin_vec_vaddudm]
vsll __builtin_vec_vaddudm (vbll, vsll);
VADDUDM VADDUDM_DEPR1
vsll __builtin_vec_vaddudm (vsll, vbll);
VADDUDM VADDUDM_DEPR2
vsll __builtin_vec_vaddudm (vsll, vsll);
VADDUDM VADDUDM_DEPR3
vull __builtin_vec_vaddudm (vbll, vull);
VADDUDM VADDUDM_DEPR4
vull __builtin_vec_vaddudm (vull, vbll);
VADDUDM VADDUDM_DEPR5
vull __builtin_vec_vaddudm (vull, vull);
VADDUDM VADDUDM_DEPR6
[VEC_VADDUHM, vec_vadduhm, __builtin_vec_vadduhm]
vss __builtin_vec_vadduhm (vss, vss);
VADDUHM VADDUHM_DEPR1
vus __builtin_vec_vadduhm (vss, vus);
VADDUHM VADDUHM_DEPR2
vus __builtin_vec_vadduhm (vus, vss);
VADDUHM VADDUHM_DEPR3
vus __builtin_vec_vadduhm (vus, vus);
VADDUHM VADDUHM_DEPR4
vss __builtin_vec_vadduhm (vbs, vss);
VADDUHM VADDUHM_DEPR5
vss __builtin_vec_vadduhm (vss, vbs);
VADDUHM VADDUHM_DEPR6
vus __builtin_vec_vadduhm (vbs, vus);
VADDUHM VADDUHM_DEPR7
vus __builtin_vec_vadduhm (vus, vbs);
VADDUHM VADDUHM_DEPR8
[VEC_VADDUHS, vec_vadduhs, __builtin_vec_vadduhs]
vus __builtin_vec_vadduhs (vss, vus);
VADDUHS VADDUHS_DEPR1
vus __builtin_vec_vadduhs (vus, vss);
VADDUHS VADDUHS_DEPR2
vus __builtin_vec_vadduhs (vus, vus);
VADDUHS VADDUHS_DEPR3
vus __builtin_vec_vadduhs (vbs, vus);
VADDUHS VADDUHS_DEPR4
vus __builtin_vec_vadduhs (vus, vbs);
VADDUHS VADDUHS_DEPR5
[VEC_VADDUQM, vec_vadduqm, __builtin_vec_vadduqm]
vsq __builtin_vec_vadduqm (vsq, vsq);
VADDUQM VADDUQM_DEPR1
vuq __builtin_vec_vadduqm (vuq, vuq);
VADDUQM VADDUQM_DEPR2
[VEC_VADDUWM, vec_vadduwm, __builtin_vec_vadduwm]
vsi __builtin_vec_vadduwm (vsi, vsi);
VADDUWM VADDUWM_DEPR1
vui __builtin_vec_vadduwm (vsi, vui);
VADDUWM VADDUWM_DEPR2
vui __builtin_vec_vadduwm (vui, vsi);
VADDUWM VADDUWM_DEPR3
vui __builtin_vec_vadduwm (vui, vui);
VADDUWM VADDUWM_DEPR4
vsi __builtin_vec_vadduwm (vbi, vsi);
VADDUWM VADDUWM_DEPR5
vsi __builtin_vec_vadduwm (vsi, vbi);
VADDUWM VADDUWM_DEPR6
vui __builtin_vec_vadduwm (vbi, vui);
VADDUWM VADDUWM_DEPR7
vui __builtin_vec_vadduwm (vui, vbi);
VADDUWM VADDUWM_DEPR8
[VEC_VADDUWS, vec_vadduws, __builtin_vec_vadduws]
vui __builtin_vec_vadduws (vsi, vui);
VADDUWS VADDUWS_DEPR1
vui __builtin_vec_vadduws (vui, vsi);
VADDUWS VADDUWS_DEPR2
vui __builtin_vec_vadduws (vui, vui);
VADDUWS VADDUWS_DEPR3
vui __builtin_vec_vadduws (vbi, vui);
VADDUWS VADDUWS_DEPR4
vui __builtin_vec_vadduws (vui, vbi);
VADDUWS VADDUWS_DEPR5
[VEC_VADUB, vec_absdb, __builtin_vec_vadub]
vuc __builtin_vec_vadub (vuc, vuc);
VADUB VADUB_DEPR1
[VEC_VADUH, vec_absdh, __builtin_vec_vaduh]
vus __builtin_vec_vaduh (vus, vus);
VADUH VADUH_DEPR1
[VEC_VADUW, vec_absdw, __builtin_vec_vaduw]
vui __builtin_vec_vaduw (vui, vui);
VADUW VADUW_DEPR1
[VEC_VAVGSB, vec_vavgsb, __builtin_vec_vavgsb]
vsc __builtin_vec_vavgsb (vsc, vsc);
VAVGSB VAVGSB_DEPR1
[VEC_VAVGSH, vec_vavgsh, __builtin_vec_vavgsh]
vss __builtin_vec_vavgsh (vss, vss);
VAVGSH VAVGSH_DEPR1
[VEC_VAVGSW, vec_vavgsw, __builtin_vec_vavgsw]
vsi __builtin_vec_vavgsw (vsi, vsi);
VAVGSW VAVGSW_DEPR1
[VEC_VAVGUB, vec_vavgub, __builtin_vec_vavgub]
vuc __builtin_vec_vavgub (vuc, vuc);
VAVGUB VAVGUB_DEPR1
[VEC_VAVGUH, vec_vavguh, __builtin_vec_vavguh]
vus __builtin_vec_vavguh (vus, vus);
VAVGUH VAVGUH_DEPR1
[VEC_VAVGUW, vec_vavguw, __builtin_vec_vavguw]
vui __builtin_vec_vavguw (vui, vui);
VAVGUW VAVGUW_DEPR1
[VEC_VBPERMQ, vec_vbpermq, __builtin_vec_vbpermq]
vull __builtin_vec_vbpermq (vull, vuc);
VBPERMQ VBPERMQ_DEPR1
vsll __builtin_vec_vbpermq (vsc, vsc);
VBPERMQ VBPERMQ_DEPR2
vull __builtin_vec_vbpermq (vuc, vuc);
VBPERMQ VBPERMQ_DEPR3
vull __builtin_vec_vbpermq (vuq, vuc);
VBPERMQ VBPERMQ_DEPR4
[VEC_VCFSX, vec_vcfsx, __builtin_vec_vcfsx]
vf __builtin_vec_vcfsx (vsi, const int);
VCFSX VCFSX_DEPR1
[VEC_VCFUX, vec_vcfux, __builtin_vec_vcfux]
vf __builtin_vec_vcfux (vui, const int);
VCFUX VCFUX_DEPR1
[VEC_VCLZB, vec_vclzb, __builtin_vec_vclzb]
vsc __builtin_vec_vclzb (vsc);
VCLZB VCLZB_DEPR1
vuc __builtin_vec_vclzb (vuc);
VCLZB VCLZB_DEPR2
[VEC_VCLZD, vec_vclzd, __builtin_vec_vclzd]
vsll __builtin_vec_vclzd (vsll);
VCLZD VCLZD_DEPR1
vull __builtin_vec_vclzd (vull);
VCLZD VCLZD_DEPR2
[VEC_VCLZH, vec_vclzh, __builtin_vec_vclzh]
vss __builtin_vec_vclzh (vss);
VCLZH VCLZH_DEPR1
vus __builtin_vec_vclzh (vus);
VCLZH VCLZH_DEPR2
[VEC_VCLZW, vec_vclzw, __builtin_vec_vclzw]
vsi __builtin_vec_vclzw (vsi);
VCLZW VCLZW_DEPR1
vui __builtin_vec_vclzw (vui);
VCLZW VCLZW_DEPR2
[VEC_VCMPEQFP, vec_vcmpeqfp, __builtin_vec_vcmpeqfp]
vbi __builtin_vec_vcmpeqfp (vf, vf);
VCMPEQFP VCMPEQFP_DEPR1
[VEC_VCMPEQUB, vec_vcmpequb, __builtin_vec_vcmpequb]
vbc __builtin_vec_vcmpequb (vsc, vsc);
VCMPEQUB VCMPEQUB_DEPR1
vbc __builtin_vec_vcmpequb (vuc, vuc);
VCMPEQUB VCMPEQUB_DEPR2
[VEC_VCMPEQUH, vec_vcmpequh, __builtin_vec_vcmpequh]
vbs __builtin_vec_vcmpequh (vss, vss);
VCMPEQUH VCMPEQUH_DEPR1
vbs __builtin_vec_vcmpequh (vus, vus);
VCMPEQUH VCMPEQUH_DEPR2
[VEC_VCMPEQUW, vec_vcmpequw, __builtin_vec_vcmpequw]
vbi __builtin_vec_vcmpequw (vsi, vsi);
VCMPEQUW VCMPEQUW_DEPR1
vbi __builtin_vec_vcmpequw (vui, vui);
VCMPEQUW VCMPEQUW_DEPR2
[VEC_VCMPGTFP, vec_vcmpgtfp, __builtin_vec_vcmpgtfp]
vbi __builtin_vec_vcmpgtfp (vf, vf);
VCMPGTFP VCMPGTFP_DEPR1
[VEC_VCMPGTSB, vec_vcmpgtsb, __builtin_vec_vcmpgtsb]
vbc __builtin_vec_vcmpgtsb (vsc, vsc);
VCMPGTSB VCMPGTSB_DEPR1
[VEC_VCMPGTSH, vec_vcmpgtsh, __builtin_vec_vcmpgtsh]
vbs __builtin_vec_vcmpgtsh (vss, vss);
VCMPGTSH VCMPGTSH_DEPR1
[VEC_VCMPGTSW, vec_vcmpgtsw, __builtin_vec_vcmpgtsw]
vbi __builtin_vec_vcmpgtsw (vsi, vsi);
VCMPGTSW VCMPGTSW_DEPR1
[VEC_VCMPGTUB, vec_vcmpgtub, __builtin_vec_vcmpgtub]
vbc __builtin_vec_vcmpgtub (vuc, vuc);
VCMPGTUB VCMPGTUB_DEPR1
[VEC_VCMPGTUH, vec_vcmpgtuh, __builtin_vec_vcmpgtuh]
vbs __builtin_vec_vcmpgtuh (vus, vus);
VCMPGTUH VCMPGTUH_DEPR1
[VEC_VCMPGTUW, vec_vcmpgtuw, __builtin_vec_vcmpgtuw]
vbi __builtin_vec_vcmpgtuw (vui, vui);
VCMPGTUW VCMPGTUW_DEPR1
[VEC_VCTZB, vec_vctzb, __builtin_vec_vctzb]
vsc __builtin_vec_vctzb (vsc);
VCTZB VCTZB_DEPR1
vuc __builtin_vec_vctzb (vuc);
VCTZB VCTZB_DEPR2
[VEC_VCTZD, vec_vctzd, __builtin_vec_vctzd]
vsll __builtin_vec_vctzd (vsll);
VCTZD VCTZD_DEPR1
vull __builtin_vec_vctzd (vull);
VCTZD VCTZD_DEPR2
[VEC_VCTZH, vec_vctzh, __builtin_vec_vctzh]
vss __builtin_vec_vctzh (vss);
VCTZH VCTZH_DEPR1
vus __builtin_vec_vctzh (vus);
VCTZH VCTZH_DEPR2
[VEC_VCTZW, vec_vctzw, __builtin_vec_vctzw]
vsi __builtin_vec_vctzw (vsi);
VCTZW VCTZW_DEPR1
vui __builtin_vec_vctzw (vui);
VCTZW VCTZW_DEPR2
[VEC_VEEDP, vec_extract_exp_dp, __builtin_vec_extract_exp_dp]
vull __builtin_vec_extract_exp_dp (vd);
VEEDP VEEDP_DEPR1
[VEC_VEESP, vec_extract_exp_sp, __builtin_vec_extract_exp_sp]
vui __builtin_vec_extract_exp_sp (vf);
VEESP VEESP_DEPR1
[VEC_VESDP, vec_extract_sig_dp, __builtin_vec_extract_sig_dp]
vull __builtin_vec_extract_sig_dp (vd);
VESDP VESDP_DEPR1
[VEC_VESSP, vec_extract_sig_sp, __builtin_vec_extract_sig_sp]
vui __builtin_vec_extract_sig_sp (vf);
VESSP VESSP_DEPR1
[VEC_VIEDP, vec_insert_exp_dp, __builtin_vec_insert_exp_dp]
vd __builtin_vec_insert_exp_dp (vd, vull);
VIEDP VIEDP_DEPR1
vd __builtin_vec_insert_exp_dp (vull, vull);
VIEDP VIEDP_DEPR2
[VEC_VIESP, vec_insert_exp_sp, __builtin_vec_insert_exp_sp]
vf __builtin_vec_insert_exp_sp (vf, vui);
VIESP VIESP_DEPR1
vf __builtin_vec_insert_exp_sp (vui, vui);
VIESP VIESP_DEPR2
[VEC_VMAXFP, vec_vmaxfp, __builtin_vec_vmaxfp]
vf __builtin_vec_vmaxfp (vf, vf);
VMAXFP VMAXFP_DEPR1
[VEC_VMAXSB, vec_vmaxsb, __builtin_vec_vmaxsb]
vsc __builtin_vec_vmaxsb (vsc, vsc);
VMAXSB VMAXSB_DEPR1
vsc __builtin_vec_vmaxsb (vbc, vsc);
VMAXSB VMAXSB_DEPR2
vsc __builtin_vec_vmaxsb (vsc, vbc);
VMAXSB VMAXSB_DEPR3
[VEC_VMAXSD, vec_vmaxsd, __builtin_vec_vmaxsd]
vsll __builtin_vec_vmaxsd (vsll, vsll);
VMAXSD VMAXSD_DEPR1
vsll __builtin_vec_vmaxsd (vbll, vsll);
VMAXSD VMAXSD_DEPR2
vsll __builtin_vec_vmaxsd (vsll, vbll);
VMAXSD VMAXSD_DEPR3
[VEC_VMAXSH, vec_vmaxsh, __builtin_vec_vmaxsh]
vss __builtin_vec_vmaxsh (vss, vss);
VMAXSH VMAXSH_DEPR1
vss __builtin_vec_vmaxsh (vbs, vss);
VMAXSH VMAXSH_DEPR2
vss __builtin_vec_vmaxsh (vss, vbs);
VMAXSH VMAXSH_DEPR3
[VEC_VMAXSW, vec_vmaxsw, __builtin_vec_vmaxsw]
vsi __builtin_vec_vmaxsw (vsi, vsi);
VMAXSW VMAXSW_DEPR1
vsi __builtin_vec_vmaxsw (vbi, vsi);
VMAXSW VMAXSW_DEPR2
vsi __builtin_vec_vmaxsw (vsi, vbi);
VMAXSW VMAXSW_DEPR3
[VEC_VMAXUB, vec_vmaxub, __builtin_vec_vmaxub]
vuc __builtin_vec_vmaxub (vsc, vuc);
VMAXUB VMAXUB_DEPR1
vuc __builtin_vec_vmaxub (vuc, vsc);
VMAXUB VMAXUB_DEPR2
vuc __builtin_vec_vmaxub (vuc, vuc);
VMAXUB VMAXUB_DEPR3
vuc __builtin_vec_vmaxub (vbc, vuc);
VMAXUB VMAXUB_DEPR4
vuc __builtin_vec_vmaxub (vuc, vbc);
VMAXUB VMAXUB_DEPR5
[VEC_VMAXUD, vec_vmaxud, __builtin_vec_vmaxud]
vull __builtin_vec_vmaxud (vull, vull);
VMAXUD VMAXUD_DEPR1
vull __builtin_vec_vmaxud (vbll, vull);
VMAXUD VMAXUD_DEPR2
vull __builtin_vec_vmaxud (vull, vbll);
VMAXUD VMAXUD_DEPR3
[VEC_VMAXUH, vec_vmaxuh, __builtin_vec_vmaxuh]
vus __builtin_vec_vmaxuh (vss, vus);
VMAXUH VMAXUH_DEPR1
vus __builtin_vec_vmaxuh (vus, vss);
VMAXUH VMAXUH_DEPR2
vus __builtin_vec_vmaxuh (vus, vus);
VMAXUH VMAXUH_DEPR3
vus __builtin_vec_vmaxuh (vbs, vus);
VMAXUH VMAXUH_DEPR4
vus __builtin_vec_vmaxuh (vus, vbs);
VMAXUH VMAXUH_DEPR5
[VEC_VMAXUW, vec_vmaxuw, __builtin_vec_vmaxuw]
vui __builtin_vec_vmaxuw (vsi, vui);
VMAXUW VMAXUW_DEPR1
vui __builtin_vec_vmaxuw (vui, vsi);
VMAXUW VMAXUW_DEPR2
vui __builtin_vec_vmaxuw (vui, vui);
VMAXUW VMAXUW_DEPR3
vui __builtin_vec_vmaxuw (vbi, vui);
VMAXUW VMAXUW_DEPR4
vui __builtin_vec_vmaxuw (vui, vbi);
VMAXUW VMAXUW_DEPR5
[VEC_VMINFP, vec_vminfp, __builtin_vec_vminfp]
vf __builtin_vec_vminfp (vf, vf);
VMINFP VMINFP_DEPR1
[VEC_VMINSB, vec_vminsb, __builtin_vec_vminsb]
vsc __builtin_vec_vminsb (vsc, vsc);
VMINSB VMINSB_DEPR1
vsc __builtin_vec_vminsb (vbc, vsc);
VMINSB VMINSB_DEPR2
vsc __builtin_vec_vminsb (vsc, vbc);
VMINSB VMINSB_DEPR3
[VEC_VMINSD, vec_vminsd, __builtin_vec_vminsd]
vsll __builtin_vec_vminsd (vsll, vsll);
VMINSD VMINSD_DEPR1
vsll __builtin_vec_vminsd (vbll, vsll);
VMINSD VMINSD_DEPR2
vsll __builtin_vec_vminsd (vsll, vbll);
VMINSD VMINSD_DEPR3
[VEC_VMINSH, vec_vminsh, __builtin_vec_vminsh]
vss __builtin_vec_vminsh (vss, vss);
VMINSH VMINSH_DEPR1
vss __builtin_vec_vminsh (vbs, vss);
VMINSH VMINSH_DEPR2
vss __builtin_vec_vminsh (vss, vbs);
VMINSH VMINSH_DEPR3
[VEC_VMINSW, vec_vminsw, __builtin_vec_vminsw]
vsi __builtin_vec_vminsw (vsi, vsi);
VMINSW VMINSW_DEPR1
vsi __builtin_vec_vminsw (vbi, vsi);
VMINSW VMINSW_DEPR2
vsi __builtin_vec_vminsw (vsi, vbi);
VMINSW VMINSW_DEPR3
[VEC_VMINUB, vec_vminub, __builtin_vec_vminub]
vuc __builtin_vec_vminub (vsc, vuc);
VMINUB VMINUB_DEPR1
vuc __builtin_vec_vminub (vuc, vsc);
VMINUB VMINUB_DEPR2
vuc __builtin_vec_vminub (vuc, vuc);
VMINUB VMINUB_DEPR3
vuc __builtin_vec_vminub (vbc, vuc);
VMINUB VMINUB_DEPR4
vuc __builtin_vec_vminub (vuc, vbc);
VMINUB VMINUB_DEPR5
[VEC_VMINUD, vec_vminud, __builtin_vec_vminud]
vull __builtin_vec_vminud (vull, vull);
VMINUD VMINUD_DEPR1
vull __builtin_vec_vminud (vbll, vull);
VMINUD VMINUD_DEPR2
vull __builtin_vec_vminud (vull, vbll);
VMINUD VMINUD_DEPR3
[VEC_VMINUH, vec_vminuh, __builtin_vec_vminuh]
vus __builtin_vec_vminuh (vss, vus);
VMINUH VMINUH_DEPR1
vus __builtin_vec_vminuh (vus, vss);
VMINUH VMINUH_DEPR2
vus __builtin_vec_vminuh (vus, vus);
VMINUH VMINUH_DEPR3
vus __builtin_vec_vminuh (vbs, vus);
VMINUH VMINUH_DEPR4
vus __builtin_vec_vminuh (vus, vbs);
VMINUH VMINUH_DEPR5
[VEC_VMINUW, vec_vminuw, __builtin_vec_vminuw]
vui __builtin_vec_vminuw (vsi, vui);
VMINUW VMINUW_DEPR1
vui __builtin_vec_vminuw (vui, vsi);
VMINUW VMINUW_DEPR2
vui __builtin_vec_vminuw (vui, vui);
VMINUW VMINUW_DEPR3
vui __builtin_vec_vminuw (vbi, vui);
VMINUW VMINUW_DEPR4
vui __builtin_vec_vminuw (vui, vbi);
VMINUW VMINUW_DEPR5
[VEC_VMRGHB, vec_vmrghb, __builtin_vec_vmrghb]
vsc __builtin_vec_vmrghb (vsc, vsc);
VMRGHB VMRGHB_DEPR1
vuc __builtin_vec_vmrghb (vuc, vuc);
VMRGHB VMRGHB_DEPR2
vbc __builtin_vec_vmrghb (vbc, vbc);
VMRGHB VMRGHB_DEPR3
[VEC_VMRGHH, vec_vmrghh, __builtin_vec_vmrghh]
vss __builtin_vec_vmrghh (vss, vss);
VMRGHH VMRGHH_DEPR1
vus __builtin_vec_vmrghh (vus, vus);
VMRGHH VMRGHH_DEPR2
vbs __builtin_vec_vmrghh (vbs, vbs);
VMRGHH VMRGHH_DEPR3
vp __builtin_vec_vmrghh (vp, vp);
VMRGHH VMRGHH_DEPR4
[VEC_VMRGHW, vec_vmrghw, __builtin_vec_vmrghw]
vf __builtin_vec_vmrghw (vf, vf);
VMRGHW VMRGHW_DEPR1
vsi __builtin_vec_vmrghw (vsi, vsi);
VMRGHW VMRGHW_DEPR2
vui __builtin_vec_vmrghw (vui, vui);
VMRGHW VMRGHW_DEPR3
vbi __builtin_vec_vmrghw (vbi, vbi);
VMRGHW VMRGHW_DEPR4
[VEC_VMRGLB, vec_vmrglb, __builtin_vec_vmrglb]
vsc __builtin_vec_vmrglb (vsc, vsc);
VMRGLB VMRGLB_DEPR1
vuc __builtin_vec_vmrglb (vuc, vuc);
VMRGLB VMRGLB_DEPR2
vbc __builtin_vec_vmrglb (vbc, vbc);
VMRGLB VMRGLB_DEPR3
[VEC_VMRGLH, vec_vmrglh, __builtin_vec_vmrglh]
vss __builtin_vec_vmrglh (vss, vss);
VMRGLH VMRGLH_DEPR1
vus __builtin_vec_vmrglh (vus, vus);
VMRGLH VMRGLH_DEPR2
vbs __builtin_vec_vmrglh (vbs, vbs);
VMRGLH VMRGLH_DEPR3
vp __builtin_vec_vmrglh (vp, vp);
VMRGLH VMRGLH_DEPR4
[VEC_VMRGLW, vec_vmrglw, __builtin_vec_vmrglw]
vf __builtin_vec_vmrglw (vf, vf);
VMRGLW VMRGLW_DEPR1
vsi __builtin_vec_vmrglw (vsi, vsi);
VMRGLW VMRGLW_DEPR2
vui __builtin_vec_vmrglw (vui, vui);
VMRGLW VMRGLW_DEPR3
vbi __builtin_vec_vmrglw (vbi, vbi);
VMRGLW VMRGLW_DEPR4
[VEC_VMSUMMBM, vec_vmsummbm, __builtin_vec_vmsummbm]
vsi __builtin_vec_vmsummbm (vsc, vuc, vsi);
VMSUMMBM VMSUMMBM_DEPR1
[VEC_VMSUMSHM, vec_vmsumshm, __builtin_vec_vmsumshm]
vsi __builtin_vec_vmsumshm (vss, vss, vsi);
VMSUMSHM VMSUMSHM_DEPR1
[VEC_VMSUMSHS, vec_vmsumshs, __builtin_vec_vmsumshs]
vsi __builtin_vec_vmsumshs (vss, vss, vsi);
VMSUMSHS VMSUMSHS_DEPR1
[VEC_VMSUMUBM, vec_vmsumubm, __builtin_vec_vmsumubm]
vui __builtin_vec_vmsumubm (vuc, vuc, vui);
VMSUMUBM VMSUMUBM_DEPR1
[VEC_VMSUMUDM, vec_vmsumudm, __builtin_vec_vmsumudm]
vuq __builtin_vec_vmsumudm (vull, vull, vuq);
VMSUMUDM VMSUMUDM_DEPR1
[VEC_VMSUMUHM, vec_vmsumuhm, __builtin_vec_vmsumuhm]
vui __builtin_vec_vmsumuhm (vus, vus, vui);
VMSUMUHM VMSUMUHM_DEPR1
[VEC_VMSUMUHS, vec_vmsumuhs, __builtin_vec_vmsumuhs]
vui __builtin_vec_vmsumuhs (vus, vus, vui);
VMSUMUHS VMSUMUHS_DEPR1
[VEC_VMULESB, vec_vmulesb, __builtin_vec_vmulesb]
vss __builtin_vec_vmulesb (vsc, vsc);
VMULESB VMULESB_DEPR1
[VEC_VMULESH, vec_vmulesh, __builtin_vec_vmulesh]
vsi __builtin_vec_vmulesh (vss, vss);
VMULESH VMULESH_DEPR1
[VEC_VMULESW, SKIP, __builtin_vec_vmulesw]
vsll __builtin_vec_vmulesw (vsi, vsi);
VMULESW VMULESW_DEPR1
[VEC_VMULEUB, vec_vmuleub, __builtin_vec_vmuleub]
vus __builtin_vec_vmuleub (vuc, vuc);
VMULEUB VMULEUB_DEPR1
[VEC_VMULEUH, vec_vmuleuh, __builtin_vec_vmuleuh]
vui __builtin_vec_vmuleuh (vus, vus);
VMULEUH VMULEUH_DEPR1
[VEC_VMULEUW, SKIP, __builtin_vec_vmuleuw]
vull __builtin_vec_vmuleuw (vui, vui);
VMULEUW VMULEUW_DEPR1
[VEC_VMULOSB, vec_vmulosb, __builtin_vec_vmulosb]
vss __builtin_vec_vmulosb (vsc, vsc);
VMULOSB VMULOSB_DEPR1
[VEC_VMULOSH, vec_vmulosh, __builtin_vec_vmulosh]
vsi __builtin_vec_vmulosh (vss, vss);
VMULOSH VMULOSH_DEPR1
[VEC_VMULOSW, SKIP, __builtin_vec_vmulosw]
vsll __builtin_vec_vmulosw (vsi, vsi);
VMULOSW VMULOSW_DEPR1
[VEC_VMULOUB, vec_vmuloub, __builtin_vec_vmuloub]
vus __builtin_vec_vmuloub (vuc, vuc);
VMULOUB VMULOUB_DEPR1
[VEC_VMULOUH, vec_vmulouh, __builtin_vec_vmulouh]
vui __builtin_vec_vmulouh (vus, vus);
VMULOUH VMULOUH_DEPR1
[VEC_VMULOUW, SKIP, __builtin_vec_vmulouw]
vull __builtin_vec_vmulouw (vui, vui);
VMULOUW VMULOUW_DEPR1
[VEC_VPKSDSS, vec_vpksdss, __builtin_vec_vpksdss]
vsi __builtin_vec_vpksdss (vsll, vsll);
VPKSDSS VPKSDSS_DEPR1
[VEC_VPKSDUS, vec_vpksdus, __builtin_vec_vpksdus]
vui __builtin_vec_vpksdus (vsll, vsll);
VPKSDUS VPKSDUS_DEPR1
[VEC_VPKSHSS, vec_vpkshss, __builtin_vec_vpkshss]
vsc __builtin_vec_vpkshss (vss, vss);
VPKSHSS VPKSHSS_DEPR1
[VEC_VPKSHUS, vec_vpkshus, __builtin_vec_vpkshus]
vuc __builtin_vec_vpkshus (vss, vss);
VPKSHUS VPKSHUS_DEPR1
[VEC_VPKSWSS, vec_vpkswss, __builtin_vec_vpkswss]
vss __builtin_vec_vpkswss (vsi, vsi);
VPKSWSS VPKSWSS_DEPR1
[VEC_VPKSWUS, vec_vpkswus, __builtin_vec_vpkswus]
vus __builtin_vec_vpkswus (vsi, vsi);
VPKSWUS VPKSWUS_DEPR1
[VEC_VPKUDUM, vec_vpkudum, __builtin_vec_vpkudum]
vsi __builtin_vec_vpkudum (vsll, vsll);
VPKUDUM VPKUDUM_DEPR1
vui __builtin_vec_vpkudum (vull, vull);
VPKUDUM VPKUDUM_DEPR2
vbi __builtin_vec_vpkudum (vbll, vbll);
VPKUDUM VPKUDUM_DEPR3
[VEC_VPKUDUS, vec_vpkudus, __builtin_vec_vpkudus]
vui __builtin_vec_vpkudus (vull, vull);
VPKUDUS VPKUDUS_DEPR1
[VEC_VPKUHUM, vec_vpkuhum, __builtin_vec_vpkuhum]
vsc __builtin_vec_vpkuhum (vss, vss);
VPKUHUM VPKUHUM_DEPR1
vuc __builtin_vec_vpkuhum (vus, vus);
VPKUHUM VPKUHUM_DEPR2
vbc __builtin_vec_vpkuhum (vbs, vbs);
VPKUHUM VPKUHUM_DEPR3
[VEC_VPKUHUS, vec_vpkuhus, __builtin_vec_vpkuhus]
vuc __builtin_vec_vpkuhus (vus, vus);
VPKUHUS VPKUHUS_DEPR1
[VEC_VPKUWUM, vec_vpkuwum, __builtin_vec_vpkuwum]
vss __builtin_vec_vpkuwum (vsi, vsi);
VPKUWUM VPKUWUM_DEPR1
vus __builtin_vec_vpkuwum (vui, vui);
VPKUWUM VPKUWUM_DEPR2
vbs __builtin_vec_vpkuwum (vbi, vbi);
VPKUWUM VPKUWUM_DEPR3
[VEC_VPKUWUS, vec_vpkuwus, __builtin_vec_vpkuwus]
vus __builtin_vec_vpkuwus (vui, vui);
VPKUWUS VPKUWUS_DEPR1
[VEC_VPOPCNT, vec_vpopcnt, __builtin_vec_vpopcnt]
vsc __builtin_vec_vpopcnt (vsc);
VPOPCNTB VPOPCNT_DEPR1
vuc __builtin_vec_vpopcnt (vuc);
VPOPCNTB VPOPCNT_DEPR2
vss __builtin_vec_vpopcnt (vss);
VPOPCNTH VPOPCNT_DEPR3
vus __builtin_vec_vpopcnt (vus);
VPOPCNTH VPOPCNT_DEPR4
vsi __builtin_vec_vpopcnt (vsi);
VPOPCNTW VPOPCNT_DEPR5
vui __builtin_vec_vpopcnt (vui);
VPOPCNTW VPOPCNT_DEPR6
vsll __builtin_vec_vpopcnt (vsll);
VPOPCNTD VPOPCNT_DEPR7
vull __builtin_vec_vpopcnt (vull);
VPOPCNTD VPOPCNT_DEPR8
[VEC_VPOPCNTB, vec_vpopcntb, __builtin_vec_vpopcntb]
vsc __builtin_vec_vpopcntb (vsc);
VPOPCNTB VPOPCNTB_DEPR1
vuc __builtin_vec_vpopcntb (vuc);
VPOPCNTB VPOPCNTB_DEPR2
[VEC_VPOPCNTD, vec_vpopcntd, __builtin_vec_vpopcntd]
vsll __builtin_vec_vpopcntd (vsll);
VPOPCNTD VPOPCNTD_DEPR1
vull __builtin_vec_vpopcntd (vull);
VPOPCNTD VPOPCNTD_DEPR2
[VEC_VPOPCNTH, vec_vpopcnth, __builtin_vec_vpopcnth]
vss __builtin_vec_vpopcnth (vss);
VPOPCNTH VPOPCNTH_DEPR1
vus __builtin_vec_vpopcnth (vus);
VPOPCNTH VPOPCNTH_DEPR2
[VEC_VPOPCNTW, vec_vpopcntw, __builtin_vec_vpopcntw]
vsi __builtin_vec_vpopcntw (vsi);
VPOPCNTW VPOPCNTW_DEPR1
vui __builtin_vec_vpopcntw (vui);
VPOPCNTW VPOPCNTW_DEPR2
[VEC_VPRTYBD, vec_vprtybd, __builtin_vec_vprtybd]
vsll __builtin_vec_vprtybd (vsll);
VPRTYBD VPRTYBD_DEPR1
vull __builtin_vec_vprtybd (vull);
VPRTYBD VPRTYBD_DEPR2
[VEC_VPRTYBQ, vec_vprtybq, __builtin_vec_vprtybq]
vsq __builtin_vec_vprtybq (vsq);
VPRTYBQ VPRTYBQ_DEPR1
vuq __builtin_vec_vprtybq (vuq);
VPRTYBQ VPRTYBQ_DEPR2
signed __int128 __builtin_vec_vprtybq (signed __int128);
VPRTYBQ VPRTYBQ_DEPR3
unsigned __int128 __builtin_vec_vprtybq (unsigned __int128);
VPRTYBQ VPRTYBQ_DEPR4
[VEC_VPRTYBW, vec_vprtybw, __builtin_vec_vprtybw]
vsi __builtin_vec_vprtybw (vsi);
VPRTYBW VPRTYBW_DEPR1
vui __builtin_vec_vprtybw (vui);
VPRTYBW VPRTYBW_DEPR2
[VEC_VRLB, vec_vrlb, __builtin_vec_vrlb]
vsc __builtin_vec_vrlb (vsc, vuc);
VRLB VRLB_DEPR1
vuc __builtin_vec_vrlb (vuc, vuc);
VRLB VRLB_DEPR2
[VEC_VRLD, SKIP, __builtin_vec_vrld]
vsll __builtin_vec_vrld (vsll, vull);
VRLD VRLD_DEPR1
vull __builtin_vec_vrld (vull, vull);
VRLD VRLD_DEPR2
[VEC_VRLH, vec_vrlh, __builtin_vec_vrlh]
vss __builtin_vec_vrlh (vss, vus);
VRLH VRLH_DEPR1
vus __builtin_vec_vrlh (vus, vus);
VRLH VRLH_DEPR2
[VEC_VRLW, vec_vrlw, __builtin_vec_vrlw]
vsi __builtin_vec_vrlw (vsi, vui);
VRLW VRLW_DEPR1
vui __builtin_vec_vrlw (vui, vui);
VRLW VRLW_DEPR2
[VEC_VSLB, vec_vslb, __builtin_vec_vslb]
vsc __builtin_vec_vslb (vsc, vuc);
VSLB VSLB_DEPR1
vuc __builtin_vec_vslb (vuc, vuc);
VSLB VSLB_DEPR2
[VEC_VSLD, SKIP, __builtin_vec_vsld]
vsll __builtin_vec_vsld (vsll, vull);
VSLD VSLD_DEPR1
vull __builtin_vec_vsld (vull, vull);
VSLD VSLD_DEPR2
[VEC_VSLH, vec_vslh, __builtin_vec_vslh]
vss __builtin_vec_vslh (vss, vus);
VSLH VSLH_DEPR1
vus __builtin_vec_vslh (vus, vus);
VSLH VSLH_DEPR2
[VEC_VSLW, vec_vslw, __builtin_vec_vslw]
vsi __builtin_vec_vslw (vsi, vui);
VSLW VSLW_DEPR1
vui __builtin_vec_vslw (vui, vui);
VSLW VSLW_DEPR2
[VEC_VSPLTB, vec_vspltb, __builtin_vec_vspltb]
vsc __builtin_vec_vspltb (vsc, const int);
VSPLTB VSPLTB_DEPR1
vuc __builtin_vec_vspltb (vuc, const int);
VSPLTB VSPLTB_DEPR2
vbc __builtin_vec_vspltb (vbc, const int);
VSPLTB VSPLTB_DEPR3
[VEC_VSPLTH, vec_vsplth, __builtin_vec_vsplth]
vss __builtin_vec_vsplth (vss, const int);
VSPLTH VSPLTH_DEPR1
vus __builtin_vec_vsplth (vus, const int);
VSPLTH VSPLTH_DEPR2
vbs __builtin_vec_vsplth (vbs, const int);
VSPLTH VSPLTH_DEPR3
vp __builtin_vec_vsplth (vp, const int);
VSPLTH VSPLTH_DEPR4
[VEC_VSPLTW, vec_vspltw, __builtin_vec_vspltw]
vsi __builtin_vec_vspltw (vsi, const int);
VSPLTW VSPLTW_DEPR1
vui __builtin_vec_vspltw (vui, const int);
VSPLTW VSPLTW_DEPR2
vbi __builtin_vec_vspltw (vbi, const int);
VSPLTW VSPLTW_DEPR3
vf __builtin_vec_vspltw (vf, const int);
VSPLTW VSPLTW_DEPR4
[VEC_VSRAB, vec_vsrab, __builtin_vec_vsrab]
vsc __builtin_vec_vsrab (vsc, vuc);
VSRAB VSRAB_DEPR1
vuc __builtin_vec_vsrab (vuc, vuc);
VSRAB VSRAB_DEPR2
[VEC_VSRAD, SKIP, __builtin_vec_vsrad]
vsll __builtin_vec_vsrad (vsll, vull);
VSRAD VSRAD_DEPR1
vull __builtin_vec_vsrad (vull, vull);
VSRAD VSRAD_DEPR2
[VEC_VSRAH, vec_vsrah, __builtin_vec_vsrah]
vss __builtin_vec_vsrah (vss, vus);
VSRAH VSRAH_DEPR1
vus __builtin_vec_vsrah (vus, vus);
VSRAH VSRAH_DEPR2
[VEC_VSRAW, vec_vsraw, __builtin_vec_vsraw]
vsi __builtin_vec_vsraw (vsi, vui);
VSRAW VSRAW_DEPR1
vui __builtin_vec_vsraw (vui, vui);
VSRAW VSRAW_DEPR2
[VEC_VSRB, vec_vsrb, __builtin_vec_vsrb]
vsc __builtin_vec_vsrb (vsc, vuc);
VSRB VSRB_DEPR1
vuc __builtin_vec_vsrb (vuc, vuc);
VSRB VSRB_DEPR2
[VEC_VSRD, SKIP, __builtin_vec_vsrd]
vsll __builtin_vec_vsrd (vsll, vull);
VSRD VSRD_DEPR1
vull __builtin_vec_vsrd (vull, vull);
VSRD VSRD_DEPR2
[VEC_VSRH, vec_vsrh, __builtin_vec_vsrh]
vss __builtin_vec_vsrh (vss, vus);
VSRH VSRH_DEPR1
vus __builtin_vec_vsrh (vus, vus);
VSRH VSRH_DEPR2
[VEC_VSRW, vec_vsrw, __builtin_vec_vsrw]
vsi __builtin_vec_vsrw (vsi, vui);
VSRW VSRW_DEPR1
vui __builtin_vec_vsrw (vui, vui);
VSRW VSRW_DEPR2
[VEC_VSTDCDP, scalar_test_data_class_dp, __builtin_vec_scalar_test_data_class_dp]
unsigned int __builtin_vec_scalar_test_data_class_dp (double, const int);
VSTDCDP VSTDCDP_DEPR1
[VEC_VSTDCNDP, scalar_test_neg_dp, __builtin_vec_scalar_test_neg_dp]
unsigned int __builtin_vec_scalar_test_neg_dp (double);
VSTDCNDP VSTDCNDP_DEPR1
[VEC_VSTDCNQP, scalar_test_neg_qp, __builtin_vec_scalar_test_neg_qp]
unsigned int __builtin_vec_scalar_test_neg_qp (_Float128);
VSTDCNQP VSTDCNQP_DEPR1
[VEC_VSTDCNSP, scalar_test_neg_sp, __builtin_vec_scalar_test_neg_sp]
unsigned int __builtin_vec_scalar_test_neg_sp (float);
VSTDCNSP VSTDCNSP_DEPR1
[VEC_VSTDCQP, scalar_test_data_class_qp, __builtin_vec_scalar_test_data_class_qp]
unsigned int __builtin_vec_scalar_test_data_class_qp (_Float128, const int);
VSTDCQP VSTDCQP_DEPR1
[VEC_VSTDCSP, scalar_test_data_class_sp, __builtin_vec_scalar_test_data_class_sp]
unsigned int __builtin_vec_scalar_test_data_class_sp (float, const int);
VSTDCSP VSTDCSP_DEPR1
[VEC_VSUBCUQ, vec_vsubcuq, __builtin_vec_vsubcuq]
vsq __builtin_vec_vsubcuq (vsq, vsq);
VSUBCUQ VSUBCUQ_DEPR1
vuq __builtin_vec_vsubcuq (vuq, vuq);
VSUBCUQ VSUBCUQ_DEPR2
[VEC_VSUBECUQ, vec_vsubecuq, __builtin_vec_vsubecuq]
vsq __builtin_vec_vsubecuq (vsq, vsq, vsq);
VSUBECUQ VSUBECUQ_DEPR1
vuq __builtin_vec_vsubecuq (vuq, vuq, vuq);
VSUBECUQ VSUBECUQ_DEPR2
[VEC_VSUBEUQM, vec_vsubeuqm, __builtin_vec_vsubeuqm]
vsq __builtin_vec_vsubeuqm (vsq, vsq, vsq);
VSUBEUQM VSUBEUQM_DEPR1
vuq __builtin_vec_vsubeuqm (vuq, vuq, vuq);
VSUBEUQM VSUBEUQM_DEPR2
[VEC_VSUBFP, vec_vsubfp, __builtin_vec_vsubfp]
vf __builtin_vec_vsubfp (vf, vf);
VSUBFP VSUBFP_DEPR1
[VEC_VSUBSBS, vec_vsubsbs, __builtin_vec_vsubsbs]
vsc __builtin_vec_vsubsbs (vsc, vsc);
VSUBSBS VSUBSBS_DEPR1
vsc __builtin_vec_vsubsbs (vbc, vsc);
VSUBSBS VSUBSBS_DEPR2
vsc __builtin_vec_vsubsbs (vsc, vbc);
VSUBSBS VSUBSBS_DEPR3
[VEC_VSUBSHS, vec_vsubshs, __builtin_vec_vsubshs]
vss __builtin_vec_vsubshs (vss, vss);
VSUBSHS VSUBSHS_DEPR1
vss __builtin_vec_vsubshs (vbs, vss);
VSUBSHS VSUBSHS_DEPR2
vss __builtin_vec_vsubshs (vss, vbs);
VSUBSHS VSUBSHS_DEPR3
[VEC_VSUBSWS, vec_vsubsws, __builtin_vec_vsubsws]
vsi __builtin_vec_vsubsws (vsi, vsi);
VSUBSWS VSUBSWS_DEPR1
vsi __builtin_vec_vsubsws (vbi, vsi);
VSUBSWS VSUBSWS_DEPR2
vsi __builtin_vec_vsubsws (vsi, vbi);
VSUBSWS VSUBSWS_DEPR3
[VEC_VSUBUBM, vec_vsububm, __builtin_vec_vsububm]
vsc __builtin_vec_vsububm (vsc, vsc);
VSUBUBM VSUBUBM_DEPR1
vuc __builtin_vec_vsububm (vsc, vuc);
VSUBUBM VSUBUBM_DEPR2
vuc __builtin_vec_vsububm (vuc, vsc);
VSUBUBM VSUBUBM_DEPR3
vuc __builtin_vec_vsububm (vuc, vuc);
VSUBUBM VSUBUBM_DEPR4
vsc __builtin_vec_vsububm (vbc, vsc);
VSUBUBM VSUBUBM_DEPR5
vsc __builtin_vec_vsububm (vsc, vbc);
VSUBUBM VSUBUBM_DEPR6
vuc __builtin_vec_vsububm (vbc, vuc);
VSUBUBM VSUBUBM_DEPR7
vuc __builtin_vec_vsububm (vuc, vbc);
VSUBUBM VSUBUBM_DEPR8
[VEC_VSUBUBS, vec_vsububs, __builtin_vec_vsububs]
vsc __builtin_vec_vsububs (vsc, vsc);
VSUBUBS VSUBUBS_DEPR1
vsc __builtin_vec_vsububs (vbc, vsc);
VSUBUBS VSUBUBS_DEPR2
vsc __builtin_vec_vsububs (vsc, vbc);
VSUBUBS VSUBUBS_DEPR3
vuc __builtin_vec_vsububs (vsc, vuc);
VSUBUBS VSUBUBS_DEPR4
vuc __builtin_vec_vsububs (vuc, vsc);
VSUBUBS VSUBUBS_DEPR5
vuc __builtin_vec_vsububs (vuc, vuc);
VSUBUBS VSUBUBS_DEPR6
vuc __builtin_vec_vsububs (vbc, vuc);
VSUBUBS VSUBUBS_DEPR7
vuc __builtin_vec_vsububs (vuc, vbc);
VSUBUBS VSUBUBS_DEPR8
[VEC_VSUBUDM, vec_vsubudm, __builtin_vec_vsubudm]
vsll __builtin_vec_vsubudm (vbll, vsll);
VSUBUDM VSUBUDM_DEPR1
vsll __builtin_vec_vsubudm (vsll, vbll);
VSUBUDM VSUBUDM_DEPR2
vsll __builtin_vec_vsubudm (vsll, vsll);
VSUBUDM VSUBUDM_DEPR3
vull __builtin_vec_vsubudm (vbll, vull);
VSUBUDM VSUBUDM_DEPR4
vull __builtin_vec_vsubudm (vull, vbll);
VSUBUDM VSUBUDM_DEPR5
vull __builtin_vec_vsubudm (vull, vull);
VSUBUDM VSUBUDM_DEPR6
[VEC_VSUBUHM, vec_vsubuhm, __builtin_vec_vsubuhm]
vss __builtin_vec_vsubuhm (vss, vss);
VSUBUHM VUSBUHM_DEPR1
vus __builtin_vec_vsubuhm (vss, vus);
VSUBUHM VUSBUHM_DEPR2
vus __builtin_vec_vsubuhm (vus, vss);
VSUBUHM VUSBUHM_DEPR3
vus __builtin_vec_vsubuhm (vus, vus);
VSUBUHM VUSBUHM_DEPR4
vss __builtin_vec_vsubuhm (vbs, vss);
VSUBUHM VUSBUHM_DEPR5
vss __builtin_vec_vsubuhm (vss, vbs);
VSUBUHM VUSBUHM_DEPR6
vus __builtin_vec_vsubuhm (vbs, vus);
VSUBUHM VUSBUHM_DEPR7
vus __builtin_vec_vsubuhm (vus, vbs);
VSUBUHM VUSBUHM_DEPR8
[VEC_VSUBUHS, vec_vsubuhs, __builtin_vec_vsubuhs]
vus __builtin_vec_vsubuhs (vss, vus);
VSUBUHS VSUBUHS_DEPR1
vus __builtin_vec_vsubuhs (vus, vss);
VSUBUHS VSUBUHS_DEPR2
vus __builtin_vec_vsubuhs (vus, vus);
VSUBUHS VSUBUHS_DEPR3
vus __builtin_vec_vsubuhs (vbs, vus);
VSUBUHS VSUBUHS_DEPR4
vus __builtin_vec_vsubuhs (vus, vbs);
VSUBUHS VSUBUHS_DEPR5
[VEC_VSUBUQM, vec_vsubuqm, __builtin_vec_vsubuqm]
vsq __builtin_vec_vsubuqm (vsq, vsq);
VSUBUQM VSUBUQM_DEPR1
vuq __builtin_vec_vsubuqm (vuq, vuq);
VSUBUQM VSUBUQM_DEPR2
[VEC_VSUBUWM, vec_vsubuwm, __builtin_vec_vsubuwm]
vsi __builtin_vec_vsubuwm (vbi, vsi);
VSUBUWM VSUBUWM_DEPR1
vsi __builtin_vec_vsubuwm (vsi, vbi);
VSUBUWM VSUBUWM_DEPR2
vui __builtin_vec_vsubuwm (vbi, vui);
VSUBUWM VSUBUWM_DEPR3
vui __builtin_vec_vsubuwm (vui, vbi);
VSUBUWM VSUBUWM_DEPR4
vsi __builtin_vec_vsubuwm (vsi, vsi);
VSUBUWM VSUBUWM_DEPR5
vui __builtin_vec_vsubuwm (vsi, vui);
VSUBUWM VSUBUWM_DEPR6
vui __builtin_vec_vsubuwm (vui, vsi);
VSUBUWM VSUBUWM_DEPR7
vui __builtin_vec_vsubuwm (vui, vui);
VSUBUWM VSUBUWM_DEPR8
[VEC_VSUBUWS, vec_vsubuws, __builtin_vec_vsubuws]
vui __builtin_vec_vsubuws (vsi, vui);
VSUBUWS VSUBUWS_DEPR1
vui __builtin_vec_vsubuws (vui, vsi);
VSUBUWS VSUBUWS_DEPR2
vui __builtin_vec_vsubuws (vui, vui);
VSUBUWS VSUBUWS_DEPR3
vui __builtin_vec_vsubuws (vbi, vui);
VSUBUWS VSUBUWS_DEPR4
vui __builtin_vec_vsubuws (vui, vbi);
VSUBUWS VSUBUWS_DEPR5
[VEC_VSUM4SBS, vec_vsum4sbs, __builtin_vec_vsum4sbs]
vsi __builtin_vec_vsum4sbs (vsc, vsi);
VSUM4SBS VSUM4SBS_DEPR1
[VEC_VSUM4SHS, vec_vsum4shs, __builtin_vec_vsum4shs]
vsi __builtin_vec_vsum4shs (vss, vsi);
VSUM4SHS VSUM4SHS_DEPR1
[VEC_VSUM4UBS, vec_vsum4ubs, __builtin_vec_vsum4ubs]
vui __builtin_vec_vsum4ubs (vuc, vui);
VSUM4UBS VSUM4UBS_DEPR1
[VEC_VTDCDP, vec_test_data_class_dp, __builtin_vec_test_data_class_dp]
vbll __builtin_vec_test_data_class_dp (vd, const int);
VTDCDP VTDCDP_DEPR1
[VEC_VTDCSP, vec_test_data_class_sp, __builtin_vec_test_data_class_sp]
vbi __builtin_vec_test_data_class_sp (vf, const int);
VTDCSP VTDCSP_DEPR1
[VEC_UNS_DOUBLEE, vec_uns_doublee, __builtin_vec_uns_doublee]
vd __builtin_vec_uns_doublee (vui);
UNS_DOUBLEE_V4SI UNS_DOUBLEE_DEPR1
[VEC_UNS_DOUBLEH, vec_uns_doubleh, __builtin_vec_uns_doubleh]
vd __builtin_vec_uns_doubleh (vui);
UNS_DOUBLEH_V4SI UNS_DOUBLEH_DEPR1
[VEC_UNS_DOUBLEL, vec_uns_doublel, __builtin_vec_uns_doublel]
vd __builtin_vec_uns_doublel (vui);
UNS_DOUBLEL_V4SI UNS_DOUBLEL_DEPR1
[VEC_UNS_DOUBLEO, vec_uns_doubleo, __builtin_vec_uns_doubleo]
vd __builtin_vec_uns_doubleo (vui);
UNS_DOUBLEO_V4SI UNS_DOUBLEO_DEPR1
[VEC_VUPKHPX, vec_vupkhpx, __builtin_vec_vupkhpx]
vui __builtin_vec_vupkhpx (vus);
VUPKHPX VUPKHPX_DEPR1
vui __builtin_vec_vupkhpx (vp);
VUPKHPX VUPKHPX_DEPR2
[VEC_VUPKHSB, vec_vupkhsb, __builtin_vec_vupkhsb]
vss __builtin_vec_vupkhsb (vsc);
VUPKHSB VUPKHSB_DEPR1
vbs __builtin_vec_vupkhsb (vbc);
VUPKHSB VUPKHSB_DEPR2
[VEC_VUPKHSH, vec_vupkhsh, __builtin_vec_vupkhsh]
vsi __builtin_vec_vupkhsh (vss);
VUPKHSH VUPKHSH_DEPR1
vbi __builtin_vec_vupkhsh (vbs);
VUPKHSH VUPKHSH_DEPR2
[VEC_VUPKHSW, vec_vupkhsw, __builtin_vec_vupkhsw]
vsll __builtin_vec_vupkhsw (vsi);
VUPKHSW VUPKHSW_DEPR1
vbll __builtin_vec_vupkhsw (vbi);
VUPKHSW VUPKHSW_DEPR2
[VEC_VUPKLPX, vec_vupklpx, __builtin_vec_vupklpx]
vui __builtin_vec_vupklpx (vus);
VUPKLPX VUPKLPX_DEPR1
vui __builtin_vec_vupklpx (vp);
VUPKLPX VUPKLPX_DEPR2
[VEC_VUPKLSB, vec_vupklsb, __builtin_vec_vupklsb]
vss __builtin_vec_vupklsb (vsc);
VUPKLSB VUPKLSB_DEPR1
vbs __builtin_vec_vupklsb (vbc);
VUPKLSB VUPKLSB_DEPR2
[VEC_VUPKLSH, vec_vupklsh, __builtin_vec_vupklsh]
vsi __builtin_vec_vupklsh (vss);
VUPKLSH VUPKLSH_DEPR1
vbi __builtin_vec_vupklsh (vbs);
VUPKLSH VUPKLSH_DEPR2
[VEC_VUPKLSW, vec_vupklsw, __builtin_vec_vupklsw]
vsll __builtin_vec_vupklsw (vsi);
VUPKLSW VUPKLSW_DEPR1
vbll __builtin_vec_vupklsw (vbi);
VUPKLSW VUPKLSW_DEPR2
|