armv8.1a-lse.s
166 KB
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
// RUN: not llvm-mc -triple aarch64-none-linux-gnu -mattr=+v8.1a,+lse -show-encoding < %s 2> %t | FileCheck %s
// RUN: FileCheck -check-prefix=CHECK-ERROR < %t %s
// RUN: not llvm-mc -triple aarch64-none-linux-gnu -mcpu=cortex-a55 -show-encoding < %s 2> %t | FileCheck %s
// RUN: FileCheck -check-prefix=CHECK-ERROR < %t %s
// RUN: not llvm-mc -triple aarch64-none-linux-gnu -mcpu=cortex-a75 -show-encoding < %s 2> %t | FileCheck %s
// RUN: FileCheck -check-prefix=CHECK-ERROR < %t %s
// RUN: not llvm-mc -triple aarch64-none-linux-gnu -mcpu=tsv110 -show-encoding < %s 2> %t | FileCheck %s
// RUN: FileCheck -check-prefix=CHECK-ERROR < %t %s
.text
cas w0, w1, [x2]
cas w2, w3, [sp]
casa w0, w1, [x2]
casa w2, w3, [sp]
casl w0, w1, [x2]
casl w2, w3, [sp]
casal w0, w1, [x2]
casal w2, w3, [sp]
// CHECK: cas w0, w1, [x2] // encoding: [0x41,0x7c,0xa0,0x88]
// CHECK: cas w2, w3, [sp] // encoding: [0xe3,0x7f,0xa2,0x88]
// CHECK: casa w0, w1, [x2] // encoding: [0x41,0x7c,0xe0,0x88]
// CHECK: casa w2, w3, [sp] // encoding: [0xe3,0x7f,0xe2,0x88]
// CHECK: casl w0, w1, [x2] // encoding: [0x41,0xfc,0xa0,0x88]
// CHECK: casl w2, w3, [sp] // encoding: [0xe3,0xff,0xa2,0x88]
// CHECK: casal w0, w1, [x2] // encoding: [0x41,0xfc,0xe0,0x88]
// CHECK: casal w2, w3, [sp] // encoding: [0xe3,0xff,0xe2,0x88]
casb w0, w1, [x2]
casb w2, w3, [sp]
cash w0, w1, [x2]
cash w2, w3, [sp]
casab w0, w1, [x2]
casab w2, w3, [sp]
caslb w0, w1, [x2]
caslb w2, w3, [sp]
// CHECK: casb w0, w1, [x2] // encoding: [0x41,0x7c,0xa0,0x08]
// CHECK: casb w2, w3, [sp] // encoding: [0xe3,0x7f,0xa2,0x08]
// CHECK: cash w0, w1, [x2] // encoding: [0x41,0x7c,0xa0,0x48]
// CHECK: cash w2, w3, [sp] // encoding: [0xe3,0x7f,0xa2,0x48]
// CHECK: casab w0, w1, [x2] // encoding: [0x41,0x7c,0xe0,0x08]
// CHECK: casab w2, w3, [sp] // encoding: [0xe3,0x7f,0xe2,0x08]
// CHECK: caslb w0, w1, [x2] // encoding: [0x41,0xfc,0xa0,0x08]
// CHECK: caslb w2, w3, [sp] // encoding: [0xe3,0xff,0xa2,0x08]
casalb w0, w1, [x2]
casalb w2, w3, [sp]
casah w0, w1, [x2]
casah w2, w3, [sp]
caslh w0, w1, [x2]
caslh w2, w3, [sp]
casalh w0, w1, [x2]
casalh w2, w3, [sp]
// CHECK: casalb w0, w1, [x2] // encoding: [0x41,0xfc,0xe0,0x08]
// CHECK: casalb w2, w3, [sp] // encoding: [0xe3,0xff,0xe2,0x08]
// CHECK: casah w0, w1, [x2] // encoding: [0x41,0x7c,0xe0,0x48]
// CHECK: casah w2, w3, [sp] // encoding: [0xe3,0x7f,0xe2,0x48]
// CHECK: caslh w0, w1, [x2] // encoding: [0x41,0xfc,0xa0,0x48]
// CHECK: caslh w2, w3, [sp] // encoding: [0xe3,0xff,0xa2,0x48]
// CHECK: casalh w0, w1, [x2] // encoding: [0x41,0xfc,0xe0,0x48]
// CHECK: casalh w2, w3, [sp] // encoding: [0xe3,0xff,0xe2,0x48]
cas x0, x1, [x2]
cas x2, x3, [sp]
casa x0, x1, [x2]
casa x2, x3, [sp]
casl x0, x1, [x2]
casl x2, x3, [sp]
casal x0, x1, [x2]
casal x2, x3, [sp]
// CHECK: cas x0, x1, [x2] // encoding: [0x41,0x7c,0xa0,0xc8]
// CHECK: cas x2, x3, [sp] // encoding: [0xe3,0x7f,0xa2,0xc8]
// CHECK: casa x0, x1, [x2] // encoding: [0x41,0x7c,0xe0,0xc8]
// CHECK: casa x2, x3, [sp] // encoding: [0xe3,0x7f,0xe2,0xc8]
// CHECK: casl x0, x1, [x2] // encoding: [0x41,0xfc,0xa0,0xc8]
// CHECK: casl x2, x3, [sp] // encoding: [0xe3,0xff,0xa2,0xc8]
// CHECK: casal x0, x1, [x2] // encoding: [0x41,0xfc,0xe0,0xc8]
// CHECK: casal x2, x3, [sp] // encoding: [0xe3,0xff,0xe2,0xc8]
swp w0, w1, [x2]
swp w2, w3, [sp]
swpa w0, w1, [x2]
swpa w2, w3, [sp]
swpl w0, w1, [x2]
swpl w2, w3, [sp]
swpal w0, w1, [x2]
swpal w2, w3, [sp]
// CHECK: swp w0, w1, [x2] // encoding: [0x41,0x80,0x20,0xb8]
// CHECK: swp w2, w3, [sp] // encoding: [0xe3,0x83,0x22,0xb8]
// CHECK: swpa w0, w1, [x2] // encoding: [0x41,0x80,0xa0,0xb8]
// CHECK: swpa w2, w3, [sp] // encoding: [0xe3,0x83,0xa2,0xb8]
// CHECK: swpl w0, w1, [x2] // encoding: [0x41,0x80,0x60,0xb8]
// CHECK: swpl w2, w3, [sp] // encoding: [0xe3,0x83,0x62,0xb8]
// CHECK: swpal w0, w1, [x2] // encoding: [0x41,0x80,0xe0,0xb8]
// CHECK: swpal w2, w3, [sp] // encoding: [0xe3,0x83,0xe2,0xb8]
swpb w0, w1, [x2]
swpb w2, w3, [sp]
swph w0, w1, [x2]
swph w2, w3, [sp]
swpab w0, w1, [x2]
swpab w2, w3, [sp]
swplb w0, w1, [x2]
swplb w2, w3, [sp]
// CHECK: swpb w0, w1, [x2] // encoding: [0x41,0x80,0x20,0x38]
// CHECK: swpb w2, w3, [sp] // encoding: [0xe3,0x83,0x22,0x38]
// CHECK: swph w0, w1, [x2] // encoding: [0x41,0x80,0x20,0x78]
// CHECK: swph w2, w3, [sp] // encoding: [0xe3,0x83,0x22,0x78]
// CHECK: swpab w0, w1, [x2] // encoding: [0x41,0x80,0xa0,0x38]
// CHECK: swpab w2, w3, [sp] // encoding: [0xe3,0x83,0xa2,0x38]
// CHECK: swplb w0, w1, [x2] // encoding: [0x41,0x80,0x60,0x38]
// CHECK: swplb w2, w3, [sp] // encoding: [0xe3,0x83,0x62,0x38]
swpalb w0, w1, [x2]
swpalb w2, w3, [sp]
swpah w0, w1, [x2]
swpah w2, w3, [sp]
swplh w0, w1, [x2]
swplh w2, w3, [sp]
swpalh w0, w1, [x2]
swpalh w2, w3, [sp]
// CHECK: swpalb w0, w1, [x2] // encoding: [0x41,0x80,0xe0,0x38]
// CHECK: swpalb w2, w3, [sp] // encoding: [0xe3,0x83,0xe2,0x38]
// CHECK: swpah w0, w1, [x2] // encoding: [0x41,0x80,0xa0,0x78]
// CHECK: swpah w2, w3, [sp] // encoding: [0xe3,0x83,0xa2,0x78]
// CHECK: swplh w0, w1, [x2] // encoding: [0x41,0x80,0x60,0x78]
// CHECK: swplh w2, w3, [sp] // encoding: [0xe3,0x83,0x62,0x78]
// CHECK: swpalh w0, w1, [x2] // encoding: [0x41,0x80,0xe0,0x78]
// CHECK: swpalh w2, w3, [sp] // encoding: [0xe3,0x83,0xe2,0x78]
swp x0, x1, [x2]
swp x2, x3, [sp]
swpa x0, x1, [x2]
swpa x2, x3, [sp]
swpl x0, x1, [x2]
swpl x2, x3, [sp]
swpal x0, x1, [x2]
swpal x2, x3, [sp]
// CHECK: swp x0, x1, [x2] // encoding: [0x41,0x80,0x20,0xf8]
// CHECK: swp x2, x3, [sp] // encoding: [0xe3,0x83,0x22,0xf8]
// CHECK: swpa x0, x1, [x2] // encoding: [0x41,0x80,0xa0,0xf8]
// CHECK: swpa x2, x3, [sp] // encoding: [0xe3,0x83,0xa2,0xf8]
// CHECK: swpl x0, x1, [x2] // encoding: [0x41,0x80,0x60,0xf8]
// CHECK: swpl x2, x3, [sp] // encoding: [0xe3,0x83,0x62,0xf8]
// CHECK: swpal x0, x1, [x2] // encoding: [0x41,0x80,0xe0,0xf8]
// CHECK: swpal x2, x3, [sp] // encoding: [0xe3,0x83,0xe2,0xf8]
casp w0, w1, w2, w3, [x5]
casp w4, w5, w6, w7, [sp]
casp x0, x1, x2, x3, [x2]
casp x4, x5, x6, x7, [sp]
caspa w0, w1, w2, w3, [x5]
caspa w4, w5, w6, w7, [sp]
caspa x0, x1, x2, x3, [x2]
caspa x4, x5, x6, x7, [sp]
// CHECK: casp w0, w1, w2, w3, [x5] // encoding: [0xa2,0x7c,0x20,0x08]
// CHECK: casp w4, w5, w6, w7, [sp] // encoding: [0xe6,0x7f,0x24,0x08]
// CHECK: casp x0, x1, x2, x3, [x2] // encoding: [0x42,0x7c,0x20,0x48]
// CHECK: casp x4, x5, x6, x7, [sp] // encoding: [0xe6,0x7f,0x24,0x48]
// CHECK: caspa w0, w1, w2, w3, [x5] // encoding: [0xa2,0x7c,0x60,0x08]
// CHECK: caspa w4, w5, w6, w7, [sp] // encoding: [0xe6,0x7f,0x64,0x08]
// CHECK: caspa x0, x1, x2, x3, [x2] // encoding: [0x42,0x7c,0x60,0x48]
// CHECK: caspa x4, x5, x6, x7, [sp] // encoding: [0xe6,0x7f,0x64,0x48]
caspl w0, w1, w2, w3, [x5]
caspl w4, w5, w6, w7, [sp]
caspl x0, x1, x2, x3, [x2]
caspl x4, x5, x6, x7, [sp]
caspal w0, w1, w2, w3, [x5]
caspal w4, w5, w6, w7, [sp]
caspal x0, x1, x2, x3, [x2]
caspal x4, x5, x6, x7, [sp]
// CHECK: caspl w0, w1, w2, w3, [x5] // encoding: [0xa2,0xfc,0x20,0x08]
// CHECK: caspl w4, w5, w6, w7, [sp] // encoding: [0xe6,0xff,0x24,0x08]
// CHECK: caspl x0, x1, x2, x3, [x2] // encoding: [0x42,0xfc,0x20,0x48]
// CHECK: caspl x4, x5, x6, x7, [sp] // encoding: [0xe6,0xff,0x24,0x48]
// CHECK: caspal w0, w1, w2, w3, [x5] // encoding: [0xa2,0xfc,0x60,0x08]
// CHECK: caspal w4, w5, w6, w7, [sp] // encoding: [0xe6,0xff,0x64,0x08]
// CHECK: caspal x0, x1, x2, x3, [x2] // encoding: [0x42,0xfc,0x60,0x48]
// CHECK: caspal x4, x5, x6, x7, [sp] // encoding: [0xe6,0xff,0x64,0x48]
ldadd w0, w1, [x2]
ldadd w2, w3, [sp]
ldadda w0, w1, [x2]
ldadda w2, w3, [sp]
ldaddl w0, w1, [x2]
ldaddl w2, w3, [sp]
ldaddal w0, w1, [x2]
ldaddal w2, w3, [sp]
// CHECK: ldadd w0, w1, [x2] // encoding: [0x41,0x00,0x20,0xb8]
// CHECK: ldadd w2, w3, [sp] // encoding: [0xe3,0x03,0x22,0xb8]
// CHECK: ldadda w0, w1, [x2] // encoding: [0x41,0x00,0xa0,0xb8]
// CHECK: ldadda w2, w3, [sp] // encoding: [0xe3,0x03,0xa2,0xb8]
// CHECK: ldaddl w0, w1, [x2] // encoding: [0x41,0x00,0x60,0xb8]
// CHECK: ldaddl w2, w3, [sp] // encoding: [0xe3,0x03,0x62,0xb8]
// CHECK: ldaddal w0, w1, [x2] // encoding: [0x41,0x00,0xe0,0xb8]
// CHECK: ldaddal w2, w3, [sp] // encoding: [0xe3,0x03,0xe2,0xb8]
ldaddb w0, w1, [x2]
ldaddb w2, w3, [sp]
ldaddh w0, w1, [x2]
ldaddh w2, w3, [sp]
ldaddab w0, w1, [x2]
ldaddab w2, w3, [sp]
ldaddlb w0, w1, [x2]
ldaddlb w2, w3, [sp]
// CHECK: ldaddb w0, w1, [x2] // encoding: [0x41,0x00,0x20,0x38]
// CHECK: ldaddb w2, w3, [sp] // encoding: [0xe3,0x03,0x22,0x38]
// CHECK: ldaddh w0, w1, [x2] // encoding: [0x41,0x00,0x20,0x78]
// CHECK: ldaddh w2, w3, [sp] // encoding: [0xe3,0x03,0x22,0x78]
// CHECK: ldaddab w0, w1, [x2] // encoding: [0x41,0x00,0xa0,0x38]
// CHECK: ldaddab w2, w3, [sp] // encoding: [0xe3,0x03,0xa2,0x38]
// CHECK: ldaddlb w0, w1, [x2] // encoding: [0x41,0x00,0x60,0x38]
// CHECK: ldaddlb w2, w3, [sp] // encoding: [0xe3,0x03,0x62,0x38]
ldaddalb w0, w1, [x2]
ldaddalb w2, w3, [sp]
ldaddah w0, w1, [x2]
ldaddah w2, w3, [sp]
ldaddlh w0, w1, [x2]
ldaddlh w2, w3, [sp]
ldaddalh w0, w1, [x2]
ldaddalh w2, w3, [sp]
// CHECK: ldaddalb w0, w1, [x2] // encoding: [0x41,0x00,0xe0,0x38]
// CHECK: ldaddalb w2, w3, [sp] // encoding: [0xe3,0x03,0xe2,0x38]
// CHECK: ldaddah w0, w1, [x2] // encoding: [0x41,0x00,0xa0,0x78]
// CHECK: ldaddah w2, w3, [sp] // encoding: [0xe3,0x03,0xa2,0x78]
// CHECK: ldaddlh w0, w1, [x2] // encoding: [0x41,0x00,0x60,0x78]
// CHECK: ldaddlh w2, w3, [sp] // encoding: [0xe3,0x03,0x62,0x78]
// CHECK: ldaddalh w0, w1, [x2] // encoding: [0x41,0x00,0xe0,0x78]
// CHECK: ldaddalh w2, w3, [sp] // encoding: [0xe3,0x03,0xe2,0x78]
ldadd x0, x1, [x2]
ldadd x2, x3, [sp]
ldadda x0, x1, [x2]
ldadda x2, x3, [sp]
ldaddl x0, x1, [x2]
ldaddl x2, x3, [sp]
ldaddal x0, x1, [x2]
ldaddal x2, x3, [sp]
// CHECK: ldadd x0, x1, [x2] // encoding: [0x41,0x00,0x20,0xf8]
// CHECK: ldadd x2, x3, [sp] // encoding: [0xe3,0x03,0x22,0xf8]
// CHECK: ldadda x0, x1, [x2] // encoding: [0x41,0x00,0xa0,0xf8]
// CHECK: ldadda x2, x3, [sp] // encoding: [0xe3,0x03,0xa2,0xf8]
// CHECK: ldaddl x0, x1, [x2] // encoding: [0x41,0x00,0x60,0xf8]
// CHECK: ldaddl x2, x3, [sp] // encoding: [0xe3,0x03,0x62,0xf8]
// CHECK: ldaddal x0, x1, [x2] // encoding: [0x41,0x00,0xe0,0xf8]
// CHECK: ldaddal x2, x3, [sp] // encoding: [0xe3,0x03,0xe2,0xf8]
ldclr w0, w1, [x2]
ldclr w2, w3, [sp]
ldclra w0, w1, [x2]
ldclra w2, w3, [sp]
ldclrl w0, w1, [x2]
ldclrl w2, w3, [sp]
ldclral w0, w1, [x2]
ldclral w2, w3, [sp]
// CHECK: ldclr w0, w1, [x2] // encoding: [0x41,0x10,0x20,0xb8]
// CHECK: ldclr w2, w3, [sp] // encoding: [0xe3,0x13,0x22,0xb8]
// CHECK: ldclra w0, w1, [x2] // encoding: [0x41,0x10,0xa0,0xb8]
// CHECK: ldclra w2, w3, [sp] // encoding: [0xe3,0x13,0xa2,0xb8]
// CHECK: ldclrl w0, w1, [x2] // encoding: [0x41,0x10,0x60,0xb8]
// CHECK: ldclrl w2, w3, [sp] // encoding: [0xe3,0x13,0x62,0xb8]
// CHECK: ldclral w0, w1, [x2] // encoding: [0x41,0x10,0xe0,0xb8]
// CHECK: ldclral w2, w3, [sp] // encoding: [0xe3,0x13,0xe2,0xb8]
ldclrb w0, w1, [x2]
ldclrb w2, w3, [sp]
ldclrh w0, w1, [x2]
ldclrh w2, w3, [sp]
ldclrab w0, w1, [x2]
ldclrab w2, w3, [sp]
ldclrlb w0, w1, [x2]
ldclrlb w2, w3, [sp]
// CHECK: ldclrb w0, w1, [x2] // encoding: [0x41,0x10,0x20,0x38]
// CHECK: ldclrb w2, w3, [sp] // encoding: [0xe3,0x13,0x22,0x38]
// CHECK: ldclrh w0, w1, [x2] // encoding: [0x41,0x10,0x20,0x78]
// CHECK: ldclrh w2, w3, [sp] // encoding: [0xe3,0x13,0x22,0x78]
// CHECK: ldclrab w0, w1, [x2] // encoding: [0x41,0x10,0xa0,0x38]
// CHECK: ldclrab w2, w3, [sp] // encoding: [0xe3,0x13,0xa2,0x38]
// CHECK: ldclrlb w0, w1, [x2] // encoding: [0x41,0x10,0x60,0x38]
// CHECK: ldclrlb w2, w3, [sp] // encoding: [0xe3,0x13,0x62,0x38]
ldclralb w0, w1, [x2]
ldclralb w2, w3, [sp]
ldclrah w0, w1, [x2]
ldclrah w2, w3, [sp]
ldclrlh w0, w1, [x2]
ldclrlh w2, w3, [sp]
ldclralh w0, w1, [x2]
ldclralh w2, w3, [sp]
// CHECK: ldclralb w0, w1, [x2] // encoding: [0x41,0x10,0xe0,0x38]
// CHECK: ldclralb w2, w3, [sp] // encoding: [0xe3,0x13,0xe2,0x38]
// CHECK: ldclrah w0, w1, [x2] // encoding: [0x41,0x10,0xa0,0x78]
// CHECK: ldclrah w2, w3, [sp] // encoding: [0xe3,0x13,0xa2,0x78]
// CHECK: ldclrlh w0, w1, [x2] // encoding: [0x41,0x10,0x60,0x78]
// CHECK: ldclrlh w2, w3, [sp] // encoding: [0xe3,0x13,0x62,0x78]
// CHECK: ldclralh w0, w1, [x2] // encoding: [0x41,0x10,0xe0,0x78]
// CHECK: ldclralh w2, w3, [sp] // encoding: [0xe3,0x13,0xe2,0x78]
ldclr x0, x1, [x2]
ldclr x2, x3, [sp]
ldclra x0, x1, [x2]
ldclra x2, x3, [sp]
ldclrl x0, x1, [x2]
ldclrl x2, x3, [sp]
ldclral x0, x1, [x2]
ldclral x2, x3, [sp]
// CHECK: ldclr x0, x1, [x2] // encoding: [0x41,0x10,0x20,0xf8]
// CHECK: ldclr x2, x3, [sp] // encoding: [0xe3,0x13,0x22,0xf8]
// CHECK: ldclra x0, x1, [x2] // encoding: [0x41,0x10,0xa0,0xf8]
// CHECK: ldclra x2, x3, [sp] // encoding: [0xe3,0x13,0xa2,0xf8]
// CHECK: ldclrl x0, x1, [x2] // encoding: [0x41,0x10,0x60,0xf8]
// CHECK: ldclrl x2, x3, [sp] // encoding: [0xe3,0x13,0x62,0xf8]
// CHECK: ldclral x0, x1, [x2] // encoding: [0x41,0x10,0xe0,0xf8]
// CHECK: ldclral x2, x3, [sp] // encoding: [0xe3,0x13,0xe2,0xf8]
ldeor w0, w1, [x2]
ldeor w2, w3, [sp]
ldeora w0, w1, [x2]
ldeora w2, w3, [sp]
ldeorl w0, w1, [x2]
ldeorl w2, w3, [sp]
ldeoral w0, w1, [x2]
ldeoral w2, w3, [sp]
// CHECK: ldeor w0, w1, [x2] // encoding: [0x41,0x20,0x20,0xb8]
// CHECK: ldeor w2, w3, [sp] // encoding: [0xe3,0x23,0x22,0xb8]
// CHECK: ldeora w0, w1, [x2] // encoding: [0x41,0x20,0xa0,0xb8]
// CHECK: ldeora w2, w3, [sp] // encoding: [0xe3,0x23,0xa2,0xb8]
// CHECK: ldeorl w0, w1, [x2] // encoding: [0x41,0x20,0x60,0xb8]
// CHECK: ldeorl w2, w3, [sp] // encoding: [0xe3,0x23,0x62,0xb8]
// CHECK: ldeoral w0, w1, [x2] // encoding: [0x41,0x20,0xe0,0xb8]
// CHECK: ldeoral w2, w3, [sp] // encoding: [0xe3,0x23,0xe2,0xb8]
ldeorb w0, w1, [x2]
ldeorb w2, w3, [sp]
ldeorh w0, w1, [x2]
ldeorh w2, w3, [sp]
ldeorab w0, w1, [x2]
ldeorab w2, w3, [sp]
ldeorlb w0, w1, [x2]
ldeorlb w2, w3, [sp]
// CHECK: ldeorb w0, w1, [x2] // encoding: [0x41,0x20,0x20,0x38]
// CHECK: ldeorb w2, w3, [sp] // encoding: [0xe3,0x23,0x22,0x38]
// CHECK: ldeorh w0, w1, [x2] // encoding: [0x41,0x20,0x20,0x78]
// CHECK: ldeorh w2, w3, [sp] // encoding: [0xe3,0x23,0x22,0x78]
// CHECK: ldeorab w0, w1, [x2] // encoding: [0x41,0x20,0xa0,0x38]
// CHECK: ldeorab w2, w3, [sp] // encoding: [0xe3,0x23,0xa2,0x38]
// CHECK: ldeorlb w0, w1, [x2] // encoding: [0x41,0x20,0x60,0x38]
// CHECK: ldeorlb w2, w3, [sp] // encoding: [0xe3,0x23,0x62,0x38]
ldeoralb w0, w1, [x2]
ldeoralb w2, w3, [sp]
ldeorah w0, w1, [x2]
ldeorah w2, w3, [sp]
ldeorlh w0, w1, [x2]
ldeorlh w2, w3, [sp]
ldeoralh w0, w1, [x2]
ldeoralh w2, w3, [sp]
// CHECK: ldeoralb w0, w1, [x2] // encoding: [0x41,0x20,0xe0,0x38]
// CHECK: ldeoralb w2, w3, [sp] // encoding: [0xe3,0x23,0xe2,0x38]
// CHECK: ldeorah w0, w1, [x2] // encoding: [0x41,0x20,0xa0,0x78]
// CHECK: ldeorah w2, w3, [sp] // encoding: [0xe3,0x23,0xa2,0x78]
// CHECK: ldeorlh w0, w1, [x2] // encoding: [0x41,0x20,0x60,0x78]
// CHECK: ldeorlh w2, w3, [sp] // encoding: [0xe3,0x23,0x62,0x78]
// CHECK: ldeoralh w0, w1, [x2] // encoding: [0x41,0x20,0xe0,0x78]
// CHECK: ldeoralh w2, w3, [sp] // encoding: [0xe3,0x23,0xe2,0x78]
ldeor x0, x1, [x2]
ldeor x2, x3, [sp]
ldeora x0, x1, [x2]
ldeora x2, x3, [sp]
ldeorl x0, x1, [x2]
ldeorl x2, x3, [sp]
ldeoral x0, x1, [x2]
ldeoral x2, x3, [sp]
// CHECK: ldeor x0, x1, [x2] // encoding: [0x41,0x20,0x20,0xf8]
// CHECK: ldeor x2, x3, [sp] // encoding: [0xe3,0x23,0x22,0xf8]
// CHECK: ldeora x0, x1, [x2] // encoding: [0x41,0x20,0xa0,0xf8]
// CHECK: ldeora x2, x3, [sp] // encoding: [0xe3,0x23,0xa2,0xf8]
// CHECK: ldeorl x0, x1, [x2] // encoding: [0x41,0x20,0x60,0xf8]
// CHECK: ldeorl x2, x3, [sp] // encoding: [0xe3,0x23,0x62,0xf8]
// CHECK: ldeoral x0, x1, [x2] // encoding: [0x41,0x20,0xe0,0xf8]
// CHECK: ldeoral x2, x3, [sp] // encoding: [0xe3,0x23,0xe2,0xf8]
ldset w0, w1, [x2]
ldset w2, w3, [sp]
ldseta w0, w1, [x2]
ldseta w2, w3, [sp]
ldsetl w0, w1, [x2]
ldsetl w2, w3, [sp]
ldsetal w0, w1, [x2]
ldsetal w2, w3, [sp]
// CHECK: ldset w0, w1, [x2] // encoding: [0x41,0x30,0x20,0xb8]
// CHECK: ldset w2, w3, [sp] // encoding: [0xe3,0x33,0x22,0xb8]
// CHECK: ldseta w0, w1, [x2] // encoding: [0x41,0x30,0xa0,0xb8]
// CHECK: ldseta w2, w3, [sp] // encoding: [0xe3,0x33,0xa2,0xb8]
// CHECK: ldsetl w0, w1, [x2] // encoding: [0x41,0x30,0x60,0xb8]
// CHECK: ldsetl w2, w3, [sp] // encoding: [0xe3,0x33,0x62,0xb8]
// CHECK: ldsetal w0, w1, [x2] // encoding: [0x41,0x30,0xe0,0xb8]
// CHECK: ldsetal w2, w3, [sp] // encoding: [0xe3,0x33,0xe2,0xb8]
ldsetb w0, w1, [x2]
ldsetb w2, w3, [sp]
ldseth w0, w1, [x2]
ldseth w2, w3, [sp]
ldsetab w0, w1, [x2]
ldsetab w2, w3, [sp]
ldsetlb w0, w1, [x2]
ldsetlb w2, w3, [sp]
// CHECK: ldsetb w0, w1, [x2] // encoding: [0x41,0x30,0x20,0x38]
// CHECK: ldsetb w2, w3, [sp] // encoding: [0xe3,0x33,0x22,0x38]
// CHECK: ldseth w0, w1, [x2] // encoding: [0x41,0x30,0x20,0x78]
// CHECK: ldseth w2, w3, [sp] // encoding: [0xe3,0x33,0x22,0x78]
// CHECK: ldsetab w0, w1, [x2] // encoding: [0x41,0x30,0xa0,0x38]
// CHECK: ldsetab w2, w3, [sp] // encoding: [0xe3,0x33,0xa2,0x38]
// CHECK: ldsetlb w0, w1, [x2] // encoding: [0x41,0x30,0x60,0x38]
// CHECK: ldsetlb w2, w3, [sp] // encoding: [0xe3,0x33,0x62,0x38]
ldsetalb w0, w1, [x2]
ldsetalb w2, w3, [sp]
ldsetah w0, w1, [x2]
ldsetah w2, w3, [sp]
ldsetlh w0, w1, [x2]
ldsetlh w2, w3, [sp]
ldsetalh w0, w1, [x2]
ldsetalh w2, w3, [sp]
// CHECK: ldsetalb w0, w1, [x2] // encoding: [0x41,0x30,0xe0,0x38]
// CHECK: ldsetalb w2, w3, [sp] // encoding: [0xe3,0x33,0xe2,0x38]
// CHECK: ldsetah w0, w1, [x2] // encoding: [0x41,0x30,0xa0,0x78]
// CHECK: ldsetah w2, w3, [sp] // encoding: [0xe3,0x33,0xa2,0x78]
// CHECK: ldsetlh w0, w1, [x2] // encoding: [0x41,0x30,0x60,0x78]
// CHECK: ldsetlh w2, w3, [sp] // encoding: [0xe3,0x33,0x62,0x78]
// CHECK: ldsetalh w0, w1, [x2] // encoding: [0x41,0x30,0xe0,0x78]
// CHECK: ldsetalh w2, w3, [sp] // encoding: [0xe3,0x33,0xe2,0x78]
ldset x0, x1, [x2]
ldset x2, x3, [sp]
ldseta x0, x1, [x2]
ldseta x2, x3, [sp]
ldsetl x0, x1, [x2]
ldsetl x2, x3, [sp]
ldsetal x0, x1, [x2]
ldsetal x2, x3, [sp]
// CHECK: ldset x0, x1, [x2] // encoding: [0x41,0x30,0x20,0xf8]
// CHECK: ldset x2, x3, [sp] // encoding: [0xe3,0x33,0x22,0xf8]
// CHECK: ldseta x0, x1, [x2] // encoding: [0x41,0x30,0xa0,0xf8]
// CHECK: ldseta x2, x3, [sp] // encoding: [0xe3,0x33,0xa2,0xf8]
// CHECK: ldsetl x0, x1, [x2] // encoding: [0x41,0x30,0x60,0xf8]
// CHECK: ldsetl x2, x3, [sp] // encoding: [0xe3,0x33,0x62,0xf8]
// CHECK: ldsetal x0, x1, [x2] // encoding: [0x41,0x30,0xe0,0xf8]
// CHECK: ldsetal x2, x3, [sp] // encoding: [0xe3,0x33,0xe2,0xf8]
ldsmax w0, w1, [x2]
ldsmax w2, w3, [sp]
ldsmaxa w0, w1, [x2]
ldsmaxa w2, w3, [sp]
ldsmaxl w0, w1, [x2]
ldsmaxl w2, w3, [sp]
ldsmaxal w0, w1, [x2]
ldsmaxal w2, w3, [sp]
// CHECK: ldsmax w0, w1, [x2] // encoding: [0x41,0x40,0x20,0xb8]
// CHECK: ldsmax w2, w3, [sp] // encoding: [0xe3,0x43,0x22,0xb8]
// CHECK: ldsmaxa w0, w1, [x2] // encoding: [0x41,0x40,0xa0,0xb8]
// CHECK: ldsmaxa w2, w3, [sp] // encoding: [0xe3,0x43,0xa2,0xb8]
// CHECK: ldsmaxl w0, w1, [x2] // encoding: [0x41,0x40,0x60,0xb8]
// CHECK: ldsmaxl w2, w3, [sp] // encoding: [0xe3,0x43,0x62,0xb8]
// CHECK: ldsmaxal w0, w1, [x2] // encoding: [0x41,0x40,0xe0,0xb8]
// CHECK: ldsmaxal w2, w3, [sp] // encoding: [0xe3,0x43,0xe2,0xb8]
ldsmaxb w0, w1, [x2]
ldsmaxb w2, w3, [sp]
ldsmaxh w0, w1, [x2]
ldsmaxh w2, w3, [sp]
ldsmaxab w0, w1, [x2]
ldsmaxab w2, w3, [sp]
ldsmaxlb w0, w1, [x2]
ldsmaxlb w2, w3, [sp]
// CHECK: ldsmaxb w0, w1, [x2] // encoding: [0x41,0x40,0x20,0x38]
// CHECK: ldsmaxb w2, w3, [sp] // encoding: [0xe3,0x43,0x22,0x38]
// CHECK: ldsmaxh w0, w1, [x2] // encoding: [0x41,0x40,0x20,0x78]
// CHECK: ldsmaxh w2, w3, [sp] // encoding: [0xe3,0x43,0x22,0x78]
// CHECK: ldsmaxab w0, w1, [x2] // encoding: [0x41,0x40,0xa0,0x38]
// CHECK: ldsmaxab w2, w3, [sp] // encoding: [0xe3,0x43,0xa2,0x38]
// CHECK: ldsmaxlb w0, w1, [x2] // encoding: [0x41,0x40,0x60,0x38]
// CHECK: ldsmaxlb w2, w3, [sp] // encoding: [0xe3,0x43,0x62,0x38]
ldsmaxalb w0, w1, [x2]
ldsmaxalb w2, w3, [sp]
ldsmaxah w0, w1, [x2]
ldsmaxah w2, w3, [sp]
ldsmaxlh w0, w1, [x2]
ldsmaxlh w2, w3, [sp]
ldsmaxalh w0, w1, [x2]
ldsmaxalh w2, w3, [sp]
// CHECK: ldsmaxalb w0, w1, [x2] // encoding: [0x41,0x40,0xe0,0x38]
// CHECK: ldsmaxalb w2, w3, [sp] // encoding: [0xe3,0x43,0xe2,0x38]
// CHECK: ldsmaxah w0, w1, [x2] // encoding: [0x41,0x40,0xa0,0x78]
// CHECK: ldsmaxah w2, w3, [sp] // encoding: [0xe3,0x43,0xa2,0x78]
// CHECK: ldsmaxlh w0, w1, [x2] // encoding: [0x41,0x40,0x60,0x78]
// CHECK: ldsmaxlh w2, w3, [sp] // encoding: [0xe3,0x43,0x62,0x78]
// CHECK: ldsmaxalh w0, w1, [x2] // encoding: [0x41,0x40,0xe0,0x78]
// CHECK: ldsmaxalh w2, w3, [sp] // encoding: [0xe3,0x43,0xe2,0x78]
ldsmax x0, x1, [x2]
ldsmax x2, x3, [sp]
ldsmaxa x0, x1, [x2]
ldsmaxa x2, x3, [sp]
ldsmaxl x0, x1, [x2]
ldsmaxl x2, x3, [sp]
ldsmaxal x0, x1, [x2]
ldsmaxal x2, x3, [sp]
// CHECK: ldsmax x0, x1, [x2] // encoding: [0x41,0x40,0x20,0xf8]
// CHECK: ldsmax x2, x3, [sp] // encoding: [0xe3,0x43,0x22,0xf8]
// CHECK: ldsmaxa x0, x1, [x2] // encoding: [0x41,0x40,0xa0,0xf8]
// CHECK: ldsmaxa x2, x3, [sp] // encoding: [0xe3,0x43,0xa2,0xf8]
// CHECK: ldsmaxl x0, x1, [x2] // encoding: [0x41,0x40,0x60,0xf8]
// CHECK: ldsmaxl x2, x3, [sp] // encoding: [0xe3,0x43,0x62,0xf8]
// CHECK: ldsmaxal x0, x1, [x2] // encoding: [0x41,0x40,0xe0,0xf8]
// CHECK: ldsmaxal x2, x3, [sp] // encoding: [0xe3,0x43,0xe2,0xf8]
ldsmin w0, w1, [x2]
ldsmin w2, w3, [sp]
ldsmina w0, w1, [x2]
ldsmina w2, w3, [sp]
ldsminl w0, w1, [x2]
ldsminl w2, w3, [sp]
ldsminal w0, w1, [x2]
ldsminal w2, w3, [sp]
// CHECK: ldsmin w0, w1, [x2] // encoding: [0x41,0x50,0x20,0xb8]
// CHECK: ldsmin w2, w3, [sp] // encoding: [0xe3,0x53,0x22,0xb8]
// CHECK: ldsmina w0, w1, [x2] // encoding: [0x41,0x50,0xa0,0xb8]
// CHECK: ldsmina w2, w3, [sp] // encoding: [0xe3,0x53,0xa2,0xb8]
// CHECK: ldsminl w0, w1, [x2] // encoding: [0x41,0x50,0x60,0xb8]
// CHECK: ldsminl w2, w3, [sp] // encoding: [0xe3,0x53,0x62,0xb8]
// CHECK: ldsminal w0, w1, [x2] // encoding: [0x41,0x50,0xe0,0xb8]
// CHECK: ldsminal w2, w3, [sp] // encoding: [0xe3,0x53,0xe2,0xb8]
ldsminb w0, w1, [x2]
ldsminb w2, w3, [sp]
ldsminh w0, w1, [x2]
ldsminh w2, w3, [sp]
ldsminab w0, w1, [x2]
ldsminab w2, w3, [sp]
ldsminlb w0, w1, [x2]
ldsminlb w2, w3, [sp]
// CHECK: ldsminb w0, w1, [x2] // encoding: [0x41,0x50,0x20,0x38]
// CHECK: ldsminb w2, w3, [sp] // encoding: [0xe3,0x53,0x22,0x38]
// CHECK: ldsminh w0, w1, [x2] // encoding: [0x41,0x50,0x20,0x78]
// CHECK: ldsminh w2, w3, [sp] // encoding: [0xe3,0x53,0x22,0x78]
// CHECK: ldsminab w0, w1, [x2] // encoding: [0x41,0x50,0xa0,0x38]
// CHECK: ldsminab w2, w3, [sp] // encoding: [0xe3,0x53,0xa2,0x38]
// CHECK: ldsminlb w0, w1, [x2] // encoding: [0x41,0x50,0x60,0x38]
// CHECK: ldsminlb w2, w3, [sp] // encoding: [0xe3,0x53,0x62,0x38]
ldsminalb w0, w1, [x2]
ldsminalb w2, w3, [sp]
ldsminah w0, w1, [x2]
ldsminah w2, w3, [sp]
ldsminlh w0, w1, [x2]
ldsminlh w2, w3, [sp]
ldsminalh w0, w1, [x2]
ldsminalh w2, w3, [sp]
// CHECK: ldsminalb w0, w1, [x2] // encoding: [0x41,0x50,0xe0,0x38]
// CHECK: ldsminalb w2, w3, [sp] // encoding: [0xe3,0x53,0xe2,0x38]
// CHECK: ldsminah w0, w1, [x2] // encoding: [0x41,0x50,0xa0,0x78]
// CHECK: ldsminah w2, w3, [sp] // encoding: [0xe3,0x53,0xa2,0x78]
// CHECK: ldsminlh w0, w1, [x2] // encoding: [0x41,0x50,0x60,0x78]
// CHECK: ldsminlh w2, w3, [sp] // encoding: [0xe3,0x53,0x62,0x78]
// CHECK: ldsminalh w0, w1, [x2] // encoding: [0x41,0x50,0xe0,0x78]
// CHECK: ldsminalh w2, w3, [sp] // encoding: [0xe3,0x53,0xe2,0x78]
ldsmin x0, x1, [x2]
ldsmin x2, x3, [sp]
ldsmina x0, x1, [x2]
ldsmina x2, x3, [sp]
ldsminl x0, x1, [x2]
ldsminl x2, x3, [sp]
ldsminal x0, x1, [x2]
ldsminal x2, x3, [sp]
// CHECK: ldsmin x0, x1, [x2] // encoding: [0x41,0x50,0x20,0xf8]
// CHECK: ldsmin x2, x3, [sp] // encoding: [0xe3,0x53,0x22,0xf8]
// CHECK: ldsmina x0, x1, [x2] // encoding: [0x41,0x50,0xa0,0xf8]
// CHECK: ldsmina x2, x3, [sp] // encoding: [0xe3,0x53,0xa2,0xf8]
// CHECK: ldsminl x0, x1, [x2] // encoding: [0x41,0x50,0x60,0xf8]
// CHECK: ldsminl x2, x3, [sp] // encoding: [0xe3,0x53,0x62,0xf8]
// CHECK: ldsminal x0, x1, [x2] // encoding: [0x41,0x50,0xe0,0xf8]
// CHECK: ldsminal x2, x3, [sp] // encoding: [0xe3,0x53,0xe2,0xf8]
ldumax w0, w1, [x2]
ldumax w2, w3, [sp]
ldumaxa w0, w1, [x2]
ldumaxa w2, w3, [sp]
ldumaxl w0, w1, [x2]
ldumaxl w2, w3, [sp]
ldumaxal w0, w1, [x2]
ldumaxal w2, w3, [sp]
// CHECK: ldumax w0, w1, [x2] // encoding: [0x41,0x60,0x20,0xb8]
// CHECK: ldumax w2, w3, [sp] // encoding: [0xe3,0x63,0x22,0xb8]
// CHECK: ldumaxa w0, w1, [x2] // encoding: [0x41,0x60,0xa0,0xb8]
// CHECK: ldumaxa w2, w3, [sp] // encoding: [0xe3,0x63,0xa2,0xb8]
// CHECK: ldumaxl w0, w1, [x2] // encoding: [0x41,0x60,0x60,0xb8]
// CHECK: ldumaxl w2, w3, [sp] // encoding: [0xe3,0x63,0x62,0xb8]
// CHECK: ldumaxal w0, w1, [x2] // encoding: [0x41,0x60,0xe0,0xb8]
// CHECK: ldumaxal w2, w3, [sp] // encoding: [0xe3,0x63,0xe2,0xb8]
ldumaxb w0, w1, [x2]
ldumaxb w2, w3, [sp]
ldumaxh w0, w1, [x2]
ldumaxh w2, w3, [sp]
ldumaxab w0, w1, [x2]
ldumaxab w2, w3, [sp]
ldumaxlb w0, w1, [x2]
ldumaxlb w2, w3, [sp]
// CHECK: ldumaxb w0, w1, [x2] // encoding: [0x41,0x60,0x20,0x38]
// CHECK: ldumaxb w2, w3, [sp] // encoding: [0xe3,0x63,0x22,0x38]
// CHECK: ldumaxh w0, w1, [x2] // encoding: [0x41,0x60,0x20,0x78]
// CHECK: ldumaxh w2, w3, [sp] // encoding: [0xe3,0x63,0x22,0x78]
// CHECK: ldumaxab w0, w1, [x2] // encoding: [0x41,0x60,0xa0,0x38]
// CHECK: ldumaxab w2, w3, [sp] // encoding: [0xe3,0x63,0xa2,0x38]
// CHECK: ldumaxlb w0, w1, [x2] // encoding: [0x41,0x60,0x60,0x38]
// CHECK: ldumaxlb w2, w3, [sp] // encoding: [0xe3,0x63,0x62,0x38]
ldumaxalb w0, w1, [x2]
ldumaxalb w2, w3, [sp]
ldumaxah w0, w1, [x2]
ldumaxah w2, w3, [sp]
ldumaxlh w0, w1, [x2]
ldumaxlh w2, w3, [sp]
ldumaxalh w0, w1, [x2]
ldumaxalh w2, w3, [sp]
// CHECK: ldumaxalb w0, w1, [x2] // encoding: [0x41,0x60,0xe0,0x38]
// CHECK: ldumaxalb w2, w3, [sp] // encoding: [0xe3,0x63,0xe2,0x38]
// CHECK: ldumaxah w0, w1, [x2] // encoding: [0x41,0x60,0xa0,0x78]
// CHECK: ldumaxah w2, w3, [sp] // encoding: [0xe3,0x63,0xa2,0x78]
// CHECK: ldumaxlh w0, w1, [x2] // encoding: [0x41,0x60,0x60,0x78]
// CHECK: ldumaxlh w2, w3, [sp] // encoding: [0xe3,0x63,0x62,0x78]
// CHECK: ldumaxalh w0, w1, [x2] // encoding: [0x41,0x60,0xe0,0x78]
// CHECK: ldumaxalh w2, w3, [sp] // encoding: [0xe3,0x63,0xe2,0x78]
ldumax x0, x1, [x2]
ldumax x2, x3, [sp]
ldumaxa x0, x1, [x2]
ldumaxa x2, x3, [sp]
ldumaxl x0, x1, [x2]
ldumaxl x2, x3, [sp]
ldumaxal x0, x1, [x2]
ldumaxal x2, x3, [sp]
// CHECK: ldumax x0, x1, [x2] // encoding: [0x41,0x60,0x20,0xf8]
// CHECK: ldumax x2, x3, [sp] // encoding: [0xe3,0x63,0x22,0xf8]
// CHECK: ldumaxa x0, x1, [x2] // encoding: [0x41,0x60,0xa0,0xf8]
// CHECK: ldumaxa x2, x3, [sp] // encoding: [0xe3,0x63,0xa2,0xf8]
// CHECK: ldumaxl x0, x1, [x2] // encoding: [0x41,0x60,0x60,0xf8]
// CHECK: ldumaxl x2, x3, [sp] // encoding: [0xe3,0x63,0x62,0xf8]
// CHECK: ldumaxal x0, x1, [x2] // encoding: [0x41,0x60,0xe0,0xf8]
// CHECK: ldumaxal x2, x3, [sp] // encoding: [0xe3,0x63,0xe2,0xf8]
ldumin w0, w1, [x2]
ldumin w2, w3, [sp]
ldumina w0, w1, [x2]
ldumina w2, w3, [sp]
lduminl w0, w1, [x2]
lduminl w2, w3, [sp]
lduminal w0, w1, [x2]
lduminal w2, w3, [sp]
// CHECK: ldumin w0, w1, [x2] // encoding: [0x41,0x70,0x20,0xb8]
// CHECK: ldumin w2, w3, [sp] // encoding: [0xe3,0x73,0x22,0xb8]
// CHECK: ldumina w0, w1, [x2] // encoding: [0x41,0x70,0xa0,0xb8]
// CHECK: ldumina w2, w3, [sp] // encoding: [0xe3,0x73,0xa2,0xb8]
// CHECK: lduminl w0, w1, [x2] // encoding: [0x41,0x70,0x60,0xb8]
// CHECK: lduminl w2, w3, [sp] // encoding: [0xe3,0x73,0x62,0xb8]
// CHECK: lduminal w0, w1, [x2] // encoding: [0x41,0x70,0xe0,0xb8]
// CHECK: lduminal w2, w3, [sp] // encoding: [0xe3,0x73,0xe2,0xb8]
lduminb w0, w1, [x2]
lduminb w2, w3, [sp]
lduminh w0, w1, [x2]
lduminh w2, w3, [sp]
lduminab w0, w1, [x2]
lduminab w2, w3, [sp]
lduminlb w0, w1, [x2]
lduminlb w2, w3, [sp]
// CHECK: lduminb w0, w1, [x2] // encoding: [0x41,0x70,0x20,0x38]
// CHECK: lduminb w2, w3, [sp] // encoding: [0xe3,0x73,0x22,0x38]
// CHECK: lduminh w0, w1, [x2] // encoding: [0x41,0x70,0x20,0x78]
// CHECK: lduminh w2, w3, [sp] // encoding: [0xe3,0x73,0x22,0x78]
// CHECK: lduminab w0, w1, [x2] // encoding: [0x41,0x70,0xa0,0x38]
// CHECK: lduminab w2, w3, [sp] // encoding: [0xe3,0x73,0xa2,0x38]
// CHECK: lduminlb w0, w1, [x2] // encoding: [0x41,0x70,0x60,0x38]
// CHECK: lduminlb w2, w3, [sp] // encoding: [0xe3,0x73,0x62,0x38]
lduminalb w0, w1, [x2]
lduminalb w2, w3, [sp]
lduminah w0, w1, [x2]
lduminah w2, w3, [sp]
lduminlh w0, w1, [x2]
lduminlh w2, w3, [sp]
lduminalh w0, w1, [x2]
lduminalh w2, w3, [sp]
// CHECK: lduminalb w0, w1, [x2] // encoding: [0x41,0x70,0xe0,0x38]
// CHECK: lduminalb w2, w3, [sp] // encoding: [0xe3,0x73,0xe2,0x38]
// CHECK: lduminah w0, w1, [x2] // encoding: [0x41,0x70,0xa0,0x78]
// CHECK: lduminah w2, w3, [sp] // encoding: [0xe3,0x73,0xa2,0x78]
// CHECK: lduminlh w0, w1, [x2] // encoding: [0x41,0x70,0x60,0x78]
// CHECK: lduminlh w2, w3, [sp] // encoding: [0xe3,0x73,0x62,0x78]
// CHECK: lduminalh w0, w1, [x2] // encoding: [0x41,0x70,0xe0,0x78]
// CHECK: lduminalh w2, w3, [sp] // encoding: [0xe3,0x73,0xe2,0x78]
ldumin x0, x1, [x2]
ldumin x2, x3, [sp]
ldumina x0, x1, [x2]
ldumina x2, x3, [sp]
lduminl x0, x1, [x2]
lduminl x2, x3, [sp]
lduminal x0, x1, [x2]
lduminal x2, x3, [sp]
// CHECK: ldumin x0, x1, [x2] // encoding: [0x41,0x70,0x20,0xf8]
// CHECK: ldumin x2, x3, [sp] // encoding: [0xe3,0x73,0x22,0xf8]
// CHECK: ldumina x0, x1, [x2] // encoding: [0x41,0x70,0xa0,0xf8]
// CHECK: ldumina x2, x3, [sp] // encoding: [0xe3,0x73,0xa2,0xf8]
// CHECK: lduminl x0, x1, [x2] // encoding: [0x41,0x70,0x60,0xf8]
// CHECK: lduminl x2, x3, [sp] // encoding: [0xe3,0x73,0x62,0xf8]
// CHECK: lduminal x0, x1, [x2] // encoding: [0x41,0x70,0xe0,0xf8]
// CHECK: lduminal x2, x3, [sp] // encoding: [0xe3,0x73,0xe2,0xf8]
stadd w0, [x2]
stadd w2, [sp]
staddl w0, [x2]
staddl w2, [sp]
staddb w0, [x2]
staddb w2, [sp]
staddh w0, [x2]
staddh w2, [sp]
// CHECK: stadd w0, [x2] // encoding: [0x5f,0x00,0x20,0xb8]
// CHECK: stadd w2, [sp] // encoding: [0xff,0x03,0x22,0xb8]
// CHECK: staddl w0, [x2] // encoding: [0x5f,0x00,0x60,0xb8]
// CHECK: staddl w2, [sp] // encoding: [0xff,0x03,0x62,0xb8]
// CHECK: staddb w0, [x2] // encoding: [0x5f,0x00,0x20,0x38]
// CHECK: staddb w2, [sp] // encoding: [0xff,0x03,0x22,0x38]
// CHECK: staddh w0, [x2] // encoding: [0x5f,0x00,0x20,0x78]
// CHECK: staddh w2, [sp] // encoding: [0xff,0x03,0x22,0x78]
staddlb w0, [x2]
staddlb w2, [sp]
staddlh w0, [x2]
staddlh w2, [sp]
stadd x0, [x2]
stadd x2, [sp]
staddl x0, [x2]
staddl x2, [sp]
// CHECK: staddlb w0, [x2] // encoding: [0x5f,0x00,0x60,0x38]
// CHECK: staddlb w2, [sp] // encoding: [0xff,0x03,0x62,0x38]
// CHECK: staddlh w0, [x2] // encoding: [0x5f,0x00,0x60,0x78]
// CHECK: staddlh w2, [sp] // encoding: [0xff,0x03,0x62,0x78]
// CHECK: stadd x0, [x2] // encoding: [0x5f,0x00,0x20,0xf8]
// CHECK: stadd x2, [sp] // encoding: [0xff,0x03,0x22,0xf8]
// CHECK: staddl x0, [x2] // encoding: [0x5f,0x00,0x60,0xf8]
// CHECK: staddl x2, [sp] // encoding: [0xff,0x03,0x62,0xf8]
stclr w0, [x2]
stclr w2, [sp]
stclrl w0, [x2]
stclrl w2, [sp]
stclrb w0, [x2]
stclrb w2, [sp]
stclrh w0, [x2]
stclrh w2, [sp]
// CHECK: stclr w0, [x2] // encoding: [0x5f,0x10,0x20,0xb8]
// CHECK: stclr w2, [sp] // encoding: [0xff,0x13,0x22,0xb8]
// CHECK: stclrl w0, [x2] // encoding: [0x5f,0x10,0x60,0xb8]
// CHECK: stclrl w2, [sp] // encoding: [0xff,0x13,0x62,0xb8]
// CHECK: stclrb w0, [x2] // encoding: [0x5f,0x10,0x20,0x38]
// CHECK: stclrb w2, [sp] // encoding: [0xff,0x13,0x22,0x38]
// CHECK: stclrh w0, [x2] // encoding: [0x5f,0x10,0x20,0x78]
// CHECK: stclrh w2, [sp] // encoding: [0xff,0x13,0x22,0x78]
stclrlb w0, [x2]
stclrlb w2, [sp]
stclrlh w0, [x2]
stclrlh w2, [sp]
stclr x0, [x2]
stclr x2, [sp]
stclrl x0, [x2]
stclrl x2, [sp]
// CHECK: stclrlb w0, [x2] // encoding: [0x5f,0x10,0x60,0x38]
// CHECK: stclrlb w2, [sp] // encoding: [0xff,0x13,0x62,0x38]
// CHECK: stclrlh w0, [x2] // encoding: [0x5f,0x10,0x60,0x78]
// CHECK: stclrlh w2, [sp] // encoding: [0xff,0x13,0x62,0x78]
// CHECK: stclr x0, [x2] // encoding: [0x5f,0x10,0x20,0xf8]
// CHECK: stclr x2, [sp] // encoding: [0xff,0x13,0x22,0xf8]
// CHECK: stclrl x0, [x2] // encoding: [0x5f,0x10,0x60,0xf8]
// CHECK: stclrl x2, [sp] // encoding: [0xff,0x13,0x62,0xf8]
steor w0, [x2]
steor w2, [sp]
steorl w0, [x2]
steorl w2, [sp]
steorb w0, [x2]
steorb w2, [sp]
steorh w0, [x2]
steorh w2, [sp]
// CHECK: steor w0, [x2] // encoding: [0x5f,0x20,0x20,0xb8]
// CHECK: steor w2, [sp] // encoding: [0xff,0x23,0x22,0xb8]
// CHECK: steorl w0, [x2] // encoding: [0x5f,0x20,0x60,0xb8]
// CHECK: steorl w2, [sp] // encoding: [0xff,0x23,0x62,0xb8]
// CHECK: steorb w0, [x2] // encoding: [0x5f,0x20,0x20,0x38]
// CHECK: steorb w2, [sp] // encoding: [0xff,0x23,0x22,0x38]
// CHECK: steorh w0, [x2] // encoding: [0x5f,0x20,0x20,0x78]
// CHECK: steorh w2, [sp] // encoding: [0xff,0x23,0x22,0x78]
steorlb w0, [x2]
steorlb w2, [sp]
steorlh w0, [x2]
steorlh w2, [sp]
steor x0, [x2]
steor x2, [sp]
steorl x0, [x2]
steorl x2, [sp]
// CHECK: steorlb w0, [x2] // encoding: [0x5f,0x20,0x60,0x38]
// CHECK: steorlb w2, [sp] // encoding: [0xff,0x23,0x62,0x38]
// CHECK: steorlh w0, [x2] // encoding: [0x5f,0x20,0x60,0x78]
// CHECK: steorlh w2, [sp] // encoding: [0xff,0x23,0x62,0x78]
// CHECK: steor x0, [x2] // encoding: [0x5f,0x20,0x20,0xf8]
// CHECK: steor x2, [sp] // encoding: [0xff,0x23,0x22,0xf8]
// CHECK: steorl x0, [x2] // encoding: [0x5f,0x20,0x60,0xf8]
// CHECK: steorl x2, [sp] // encoding: [0xff,0x23,0x62,0xf8]
stset w0, [x2]
stset w2, [sp]
stsetl w0, [x2]
stsetl w2, [sp]
stsetb w0, [x2]
stsetb w2, [sp]
stseth w0, [x2]
stseth w2, [sp]
// CHECK: stset w0, [x2] // encoding: [0x5f,0x30,0x20,0xb8]
// CHECK: stset w2, [sp] // encoding: [0xff,0x33,0x22,0xb8]
// CHECK: stsetl w0, [x2] // encoding: [0x5f,0x30,0x60,0xb8]
// CHECK: stsetl w2, [sp] // encoding: [0xff,0x33,0x62,0xb8]
// CHECK: stsetb w0, [x2] // encoding: [0x5f,0x30,0x20,0x38]
// CHECK: stsetb w2, [sp] // encoding: [0xff,0x33,0x22,0x38]
// CHECK: stseth w0, [x2] // encoding: [0x5f,0x30,0x20,0x78]
// CHECK: stseth w2, [sp] // encoding: [0xff,0x33,0x22,0x78]
stsetlb w0, [x2]
stsetlb w2, [sp]
stsetlh w0, [x2]
stsetlh w2, [sp]
stset x0, [x2]
stset x2, [sp]
stsetl x0, [x2]
stsetl x2, [sp]
// CHECK: stsetlb w0, [x2] // encoding: [0x5f,0x30,0x60,0x38]
// CHECK: stsetlb w2, [sp] // encoding: [0xff,0x33,0x62,0x38]
// CHECK: stsetlh w0, [x2] // encoding: [0x5f,0x30,0x60,0x78]
// CHECK: stsetlh w2, [sp] // encoding: [0xff,0x33,0x62,0x78]
// CHECK: stset x0, [x2] // encoding: [0x5f,0x30,0x20,0xf8]
// CHECK: stset x2, [sp] // encoding: [0xff,0x33,0x22,0xf8]
// CHECK: stsetl x0, [x2] // encoding: [0x5f,0x30,0x60,0xf8]
// CHECK: stsetl x2, [sp] // encoding: [0xff,0x33,0x62,0xf8]
stsmax w0, [x2]
stsmax w2, [sp]
stsmaxl w0, [x2]
stsmaxl w2, [sp]
stsmaxb w0, [x2]
stsmaxb w2, [sp]
stsmaxh w0, [x2]
stsmaxh w2, [sp]
// CHECK: stsmax w0, [x2] // encoding: [0x5f,0x40,0x20,0xb8]
// CHECK: stsmax w2, [sp] // encoding: [0xff,0x43,0x22,0xb8]
// CHECK: stsmaxl w0, [x2] // encoding: [0x5f,0x40,0x60,0xb8]
// CHECK: stsmaxl w2, [sp] // encoding: [0xff,0x43,0x62,0xb8]
// CHECK: stsmaxb w0, [x2] // encoding: [0x5f,0x40,0x20,0x38]
// CHECK: stsmaxb w2, [sp] // encoding: [0xff,0x43,0x22,0x38]
// CHECK: stsmaxh w0, [x2] // encoding: [0x5f,0x40,0x20,0x78]
// CHECK: stsmaxh w2, [sp] // encoding: [0xff,0x43,0x22,0x78]
stsmaxlb w0, [x2]
stsmaxlb w2, [sp]
stsmaxlh w0, [x2]
stsmaxlh w2, [sp]
stsmax x0, [x2]
stsmax x2, [sp]
stsmaxl x0, [x2]
stsmaxl x2, [sp]
// CHECK: stsmaxlb w0, [x2] // encoding: [0x5f,0x40,0x60,0x38]
// CHECK: stsmaxlb w2, [sp] // encoding: [0xff,0x43,0x62,0x38]
// CHECK: stsmaxlh w0, [x2] // encoding: [0x5f,0x40,0x60,0x78]
// CHECK: stsmaxlh w2, [sp] // encoding: [0xff,0x43,0x62,0x78]
// CHECK: stsmax x0, [x2] // encoding: [0x5f,0x40,0x20,0xf8]
// CHECK: stsmax x2, [sp] // encoding: [0xff,0x43,0x22,0xf8]
// CHECK: stsmaxl x0, [x2] // encoding: [0x5f,0x40,0x60,0xf8]
// CHECK: stsmaxl x2, [sp] // encoding: [0xff,0x43,0x62,0xf8]
stsmin w0, [x2]
stsmin w2, [sp]
stsminl w0, [x2]
stsminl w2, [sp]
stsminb w0, [x2]
stsminb w2, [sp]
stsminh w0, [x2]
stsminh w2, [sp]
// CHECK: stsmin w0, [x2] // encoding: [0x5f,0x50,0x20,0xb8]
// CHECK: stsmin w2, [sp] // encoding: [0xff,0x53,0x22,0xb8]
// CHECK: stsminl w0, [x2] // encoding: [0x5f,0x50,0x60,0xb8]
// CHECK: stsminl w2, [sp] // encoding: [0xff,0x53,0x62,0xb8]
// CHECK: stsminb w0, [x2] // encoding: [0x5f,0x50,0x20,0x38]
// CHECK: stsminb w2, [sp] // encoding: [0xff,0x53,0x22,0x38]
// CHECK: stsminh w0, [x2] // encoding: [0x5f,0x50,0x20,0x78]
// CHECK: stsminh w2, [sp] // encoding: [0xff,0x53,0x22,0x78]
stsminlb w0, [x2]
stsminlb w2, [sp]
stsminlh w0, [x2]
stsminlh w2, [sp]
stsmin x0, [x2]
stsmin x2, [sp]
stsminl x0, [x2]
stsminl x2, [sp]
// CHECK: stsminlb w0, [x2] // encoding: [0x5f,0x50,0x60,0x38]
// CHECK: stsminlb w2, [sp] // encoding: [0xff,0x53,0x62,0x38]
// CHECK: stsminlh w0, [x2] // encoding: [0x5f,0x50,0x60,0x78]
// CHECK: stsminlh w2, [sp] // encoding: [0xff,0x53,0x62,0x78]
// CHECK: stsmin x0, [x2] // encoding: [0x5f,0x50,0x20,0xf8]
// CHECK: stsmin x2, [sp] // encoding: [0xff,0x53,0x22,0xf8]
// CHECK: stsminl x0, [x2] // encoding: [0x5f,0x50,0x60,0xf8]
// CHECK: stsminl x2, [sp] // encoding: [0xff,0x53,0x62,0xf8]
stumax w0, [x2]
stumax w2, [sp]
stumaxl w0, [x2]
stumaxl w2, [sp]
stumaxb w0, [x2]
stumaxb w2, [sp]
stumaxh w0, [x2]
stumaxh w2, [sp]
// CHECK: stumax w0, [x2] // encoding: [0x5f,0x60,0x20,0xb8]
// CHECK: stumax w2, [sp] // encoding: [0xff,0x63,0x22,0xb8]
// CHECK: stumaxl w0, [x2] // encoding: [0x5f,0x60,0x60,0xb8]
// CHECK: stumaxl w2, [sp] // encoding: [0xff,0x63,0x62,0xb8]
// CHECK: stumaxb w0, [x2] // encoding: [0x5f,0x60,0x20,0x38]
// CHECK: stumaxb w2, [sp] // encoding: [0xff,0x63,0x22,0x38]
// CHECK: stumaxh w0, [x2] // encoding: [0x5f,0x60,0x20,0x78]
// CHECK: stumaxh w2, [sp] // encoding: [0xff,0x63,0x22,0x78]
stumaxlb w0, [x2]
stumaxlb w2, [sp]
stumaxlh w0, [x2]
stumaxlh w2, [sp]
stumax x0, [x2]
stumax x2, [sp]
stumaxl x0, [x2]
stumaxl x2, [sp]
// CHECK: stumaxlb w0, [x2] // encoding: [0x5f,0x60,0x60,0x38]
// CHECK: stumaxlb w2, [sp] // encoding: [0xff,0x63,0x62,0x38]
// CHECK: stumaxlh w0, [x2] // encoding: [0x5f,0x60,0x60,0x78]
// CHECK: stumaxlh w2, [sp] // encoding: [0xff,0x63,0x62,0x78]
// CHECK: stumax x0, [x2] // encoding: [0x5f,0x60,0x20,0xf8]
// CHECK: stumax x2, [sp] // encoding: [0xff,0x63,0x22,0xf8]
// CHECK: stumaxl x0, [x2] // encoding: [0x5f,0x60,0x60,0xf8]
// CHECK: stumaxl x2, [sp] // encoding: [0xff,0x63,0x62,0xf8]
stumin w0, [x2]
stumin w2, [sp]
stuminl w0, [x2]
stuminl w2, [sp]
stuminb w0, [x2]
stuminb w2, [sp]
stuminh w0, [x2]
stuminh w2, [sp]
// CHECK: stumin w0, [x2] // encoding: [0x5f,0x70,0x20,0xb8]
// CHECK: stumin w2, [sp] // encoding: [0xff,0x73,0x22,0xb8]
// CHECK: stuminl w0, [x2] // encoding: [0x5f,0x70,0x60,0xb8]
// CHECK: stuminl w2, [sp] // encoding: [0xff,0x73,0x62,0xb8]
// CHECK: stuminb w0, [x2] // encoding: [0x5f,0x70,0x20,0x38]
// CHECK: stuminb w2, [sp] // encoding: [0xff,0x73,0x22,0x38]
// CHECK: stuminh w0, [x2] // encoding: [0x5f,0x70,0x20,0x78]
// CHECK: stuminh w2, [sp] // encoding: [0xff,0x73,0x22,0x78]
cas b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cas b0, b1, [x2]
// CHECK-ERROR: ^
cas b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cas b2, b3, [sp]
// CHECK-ERROR: ^
cas h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cas h0, h1, [x2]
// CHECK-ERROR: ^
cas h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cas h2, h3, [sp]
// CHECK-ERROR: ^
casa b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casa b0, b1, [x2]
// CHECK-ERROR: ^
casa b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casa b2, b3, [sp]
// CHECK-ERROR: ^
casa h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casa h0, h1, [x2]
// CHECK-ERROR: ^
casa h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casa h2, h3, [sp]
// CHECK-ERROR: ^
casb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casb b0, b1, [x2]
// CHECK-ERROR: ^
casb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casb b2, b3, [sp]
// CHECK-ERROR: ^
casb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casb h0, h1, [x2]
// CHECK-ERROR: ^
casb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casb h2, h3, [sp]
// CHECK-ERROR: ^
cash b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cash b0, b1, [x2]
// CHECK-ERROR: ^
cash b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cash b2, b3, [sp]
// CHECK-ERROR: ^
cash h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cash h0, h1, [x2]
// CHECK-ERROR: ^
cash h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: cash h2, h3, [sp]
// CHECK-ERROR: ^
casah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casah b0, b1, [x2]
// CHECK-ERROR: ^
casah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casah b2, b3, [sp]
// CHECK-ERROR: ^
casah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casah h0, h1, [x2]
// CHECK-ERROR: ^
casah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casah h2, h3, [sp]
// CHECK-ERROR: ^
casalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh b0, b1, [x2]
// CHECK-ERROR: ^
casalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh b2, b3, [sp]
// CHECK-ERROR: ^
casalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh h0, h1, [x2]
// CHECK-ERROR: ^
casalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh h2, h3, [sp]
// CHECK-ERROR: ^
casl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casl b0, b1, [x2]
// CHECK-ERROR: ^
casl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casl b2, b3, [sp]
// CHECK-ERROR: ^
casl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casl h0, h1, [x2]
// CHECK-ERROR: ^
casl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casl h2, h3, [sp]
// CHECK-ERROR: ^
caslb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslb b0, b1, [x2]
// CHECK-ERROR: ^
caslb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslb b2, b3, [sp]
// CHECK-ERROR: ^
caslb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslb h0, h1, [x2]
// CHECK-ERROR: ^
caslb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslb h2, h3, [sp]
// CHECK-ERROR: ^
casalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalb b0, b1, [x2]
// CHECK-ERROR: ^
casalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalb b2, b3, [sp]
// CHECK-ERROR: ^
casalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalb h0, h1, [x2]
// CHECK-ERROR: ^
casalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalb h2, h3, [sp]
// CHECK-ERROR: ^
casalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh b0, b1, [x2]
// CHECK-ERROR: ^
casalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh b2, b3, [sp]
// CHECK-ERROR: ^
casalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh h0, h1, [x2]
// CHECK-ERROR: ^
casalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh h2, h3, [sp]
// CHECK-ERROR: ^
cas v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
caslb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
caslh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: caslh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: casalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
casp b0, b1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: casp b0, b1, [x2]
// CHECK-ERROR: ^
casp b2, b3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: casp b2, b3, [sp]
// CHECK-ERROR: ^
casp h0, h1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: casp h0, h1, [x2]
// CHECK-ERROR: ^
casp h2, h3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: casp h2, h3, [sp]
// CHECK-ERROR: ^
caspa b0, b1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspa b0, b1, [x2]
// CHECK-ERROR: ^
caspa b2, b3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspa b2, b3, [sp]
// CHECK-ERROR: ^
caspa h0, h1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspa h0, h1, [x2]
// CHECK-ERROR: ^
caspa h2, h3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspa h2, h3, [sp]
// CHECK-ERROR: ^
caspl b0, b1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspl b0, b1, [x2]
// CHECK-ERROR: ^
caspl b2, b3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspl b2, b3, [sp]
// CHECK-ERROR: ^
caspl h0, h1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspl h0, h1, [x2]
// CHECK-ERROR: ^
caspl h2, h3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspl h2, h3, [sp]
// CHECK-ERROR: ^
caspal b0, b1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspal b0, b1, [x2]
// CHECK-ERROR: ^
caspal b2, b3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspal b2, b3, [sp]
// CHECK-ERROR: ^
caspal h0, h1, [x2]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspal h0, h1, [x2]
// CHECK-ERROR: ^
caspal h2, h3, [sp]
// CHECK-ERROR: error: expected first even register of a consecutive same-size even/odd register pair
// CHECK-ERROR: caspal h2, h3, [sp]
// CHECK-ERROR: ^
swp b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swp b0, b1, [x2]
// CHECK-ERROR: ^
swp b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swp b2, b3, [sp]
// CHECK-ERROR: ^
swpa b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpa b0, b1, [x2]
// CHECK-ERROR: ^
swpa b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpa b2, b3, [sp]
// CHECK-ERROR: ^
swpah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah b0, b1, [x2]
// CHECK-ERROR: ^
swpah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah b2, b3, [sp]
// CHECK-ERROR: ^
swpl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl b0, b1, [x2]
// CHECK-ERROR: ^
swpl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl b2, b3, [sp]
// CHECK-ERROR: ^
swpal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal b0, b1, [x2]
// CHECK-ERROR: ^
swpal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal b2, b3, [sp]
// CHECK-ERROR: ^
swpalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb b0, b1, [x2]
// CHECK-ERROR: ^
swpalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb b2, b3, [sp]
// CHECK-ERROR: ^
swpalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh b0, b1, [x2]
// CHECK-ERROR: ^
swpalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh b2, b3, [sp]
// CHECK-ERROR: ^
swpb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpb b0, b1, [x2]
// CHECK-ERROR: ^
swpb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpb b2, b3, [sp]
// CHECK-ERROR: ^
swpab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpab b0, b1, [x2]
// CHECK-ERROR: ^
swpab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpab b2, b3, [sp]
// CHECK-ERROR: ^
swpal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal b0, b1, [x2]
// CHECK-ERROR: ^
swpal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal b2, b3, [sp]
// CHECK-ERROR: ^
swpah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah b0, b1, [x2]
// CHECK-ERROR: ^
swpah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah b2, b3, [sp]
// CHECK-ERROR: ^
swpalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh b0, b1, [x2]
// CHECK-ERROR: ^
swpalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh b2, b3, [sp]
// CHECK-ERROR: ^
swpl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl b0, b1, [x2]
// CHECK-ERROR: ^
swpl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl b2, b3, [sp]
// CHECK-ERROR: ^
swplb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swplb b0, b1, [x2]
// CHECK-ERROR: ^
swplb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swplb b2, b3, [sp]
// CHECK-ERROR: ^
swpalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb b0, b1, [x2]
// CHECK-ERROR: ^
swpalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb b2, b3, [sp]
// CHECK-ERROR: ^
swph b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swph b0, b1, [x2]
// CHECK-ERROR: ^
swph b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swph b2, b3, [sp]
// CHECK-ERROR: ^
swp v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swp v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swplb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swplb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swpalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swpalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
swph v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: swph v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldadd b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadd b0, b1, [x2]
// CHECK-ERROR: ^
ldadd b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadd b2, b3, [sp]
// CHECK-ERROR: ^
ldadd h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadd h0, h1, [x2]
// CHECK-ERROR: ^
ldadd h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadd h2, h3, [sp]
// CHECK-ERROR: ^
ldadd v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadd v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldadda b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadda b0, b1, [x2]
// CHECK-ERROR: ^
ldadda b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadda b2, b3, [sp]
// CHECK-ERROR: ^
ldadda h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadda h0, h1, [x2]
// CHECK-ERROR: ^
ldadda h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadda h2, h3, [sp]
// CHECK-ERROR: ^
ldadda v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldadda v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddl b0, b1, [x2]
// CHECK-ERROR: ^
ldaddl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddl b2, b3, [sp]
// CHECK-ERROR: ^
ldaddl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddl h0, h1, [x2]
// CHECK-ERROR: ^
ldaddl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddl h2, h3, [sp]
// CHECK-ERROR: ^
ldaddl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddal b0, b1, [x2]
// CHECK-ERROR: ^
ldaddal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddal b2, b3, [sp]
// CHECK-ERROR: ^
ldaddal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddal h0, h1, [x2]
// CHECK-ERROR: ^
ldaddal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddal h2, h3, [sp]
// CHECK-ERROR: ^
ldaddal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddb b0, b1, [x2]
// CHECK-ERROR: ^
ldaddb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddb b2, b3, [sp]
// CHECK-ERROR: ^
ldaddb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddb h0, h1, [x2]
// CHECK-ERROR: ^
ldaddb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddb h2, h3, [sp]
// CHECK-ERROR: ^
ldaddb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddh b0, b1, [x2]
// CHECK-ERROR: ^
ldaddh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddh b2, b3, [sp]
// CHECK-ERROR: ^
ldaddh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddh h0, h1, [x2]
// CHECK-ERROR: ^
ldaddh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddh h2, h3, [sp]
// CHECK-ERROR: ^
ldaddh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddab b0, b1, [x2]
// CHECK-ERROR: ^
ldaddab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddab b2, b3, [sp]
// CHECK-ERROR: ^
ldaddab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddab h0, h1, [x2]
// CHECK-ERROR: ^
ldaddab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddab h2, h3, [sp]
// CHECK-ERROR: ^
ldaddab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlb b0, b1, [x2]
// CHECK-ERROR: ^
ldaddlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlb b2, b3, [sp]
// CHECK-ERROR: ^
ldaddlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlb h0, h1, [x2]
// CHECK-ERROR: ^
ldaddlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlb h2, h3, [sp]
// CHECK-ERROR: ^
ldaddlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalb b0, b1, [x2]
// CHECK-ERROR: ^
ldaddalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalb b2, b3, [sp]
// CHECK-ERROR: ^
ldaddalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalb h0, h1, [x2]
// CHECK-ERROR: ^
ldaddalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalb h2, h3, [sp]
// CHECK-ERROR: ^
ldaddalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddah b0, b1, [x2]
// CHECK-ERROR: ^
ldaddah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddah b2, b3, [sp]
// CHECK-ERROR: ^
ldaddah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddah h0, h1, [x2]
// CHECK-ERROR: ^
ldaddah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddah h2, h3, [sp]
// CHECK-ERROR: ^
ldaddah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlh b0, b1, [x2]
// CHECK-ERROR: ^
ldaddlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlh b2, b3, [sp]
// CHECK-ERROR: ^
ldaddlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlh h0, h1, [x2]
// CHECK-ERROR: ^
ldaddlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlh h2, h3, [sp]
// CHECK-ERROR: ^
ldaddlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldaddalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalh b0, b1, [x2]
// CHECK-ERROR: ^
ldaddalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalh b2, b3, [sp]
// CHECK-ERROR: ^
ldaddalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalh h0, h1, [x2]
// CHECK-ERROR: ^
ldaddalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalh h2, h3, [sp]
// CHECK-ERROR: ^
ldaddalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldaddalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclr b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclr b0, b1, [x2]
// CHECK-ERROR: ^
ldclr b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclr b2, b3, [sp]
// CHECK-ERROR: ^
ldclr h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclr h0, h1, [x2]
// CHECK-ERROR: ^
ldclr h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclr h2, h3, [sp]
// CHECK-ERROR: ^
ldclr v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclr v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclra b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra b0, b1, [x2]
// CHECK-ERROR: ^
ldclra b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra b2, b3, [sp]
// CHECK-ERROR: ^
ldclra h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra h0, h1, [x2]
// CHECK-ERROR: ^
ldclra h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra h2, h3, [sp]
// CHECK-ERROR: ^
ldclra v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclra b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra b0, b1, [x2]
// CHECK-ERROR: ^
ldclra b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra b2, b3, [sp]
// CHECK-ERROR: ^
ldclra h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra h0, h1, [x2]
// CHECK-ERROR: ^
ldclra h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra h2, h3, [sp]
// CHECK-ERROR: ^
ldclra v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclra v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrl b0, b1, [x2]
// CHECK-ERROR: ^
ldclrl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrl b2, b3, [sp]
// CHECK-ERROR: ^
ldclrl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrl h0, h1, [x2]
// CHECK-ERROR: ^
ldclrl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrl h2, h3, [sp]
// CHECK-ERROR: ^
ldclrl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclral b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclral b0, b1, [x2]
// CHECK-ERROR: ^
ldclral b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclral b2, b3, [sp]
// CHECK-ERROR: ^
ldclral h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclral h0, h1, [x2]
// CHECK-ERROR: ^
ldclral h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclral h2, h3, [sp]
// CHECK-ERROR: ^
ldclral v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclral v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrb b0, b1, [x2]
// CHECK-ERROR: ^
ldclrb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrb b2, b3, [sp]
// CHECK-ERROR: ^
ldclrb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrb h0, h1, [x2]
// CHECK-ERROR: ^
ldclrb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrb h2, h3, [sp]
// CHECK-ERROR: ^
ldclrb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrh b0, b1, [x2]
// CHECK-ERROR: ^
ldclrh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrh b2, b3, [sp]
// CHECK-ERROR: ^
ldclrh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrh h0, h1, [x2]
// CHECK-ERROR: ^
ldclrh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrh h2, h3, [sp]
// CHECK-ERROR: ^
ldclrh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrab b0, b1, [x2]
// CHECK-ERROR: ^
ldclrab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrab b2, b3, [sp]
// CHECK-ERROR: ^
ldclrab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrab h0, h1, [x2]
// CHECK-ERROR: ^
ldclrab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrab h2, h3, [sp]
// CHECK-ERROR: ^
ldclrab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlb b0, b1, [x2]
// CHECK-ERROR: ^
ldclrlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlb b2, b3, [sp]
// CHECK-ERROR: ^
ldclrlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlb h0, h1, [x2]
// CHECK-ERROR: ^
ldclrlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlb h2, h3, [sp]
// CHECK-ERROR: ^
ldclrlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclralb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralb b0, b1, [x2]
// CHECK-ERROR: ^
ldclralb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralb b2, b3, [sp]
// CHECK-ERROR: ^
ldclralb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralb h0, h1, [x2]
// CHECK-ERROR: ^
ldclralb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralb h2, h3, [sp]
// CHECK-ERROR: ^
ldclralb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrah b0, b1, [x2]
// CHECK-ERROR: ^
ldclrah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrah b2, b3, [sp]
// CHECK-ERROR: ^
ldclrah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrah h0, h1, [x2]
// CHECK-ERROR: ^
ldclrah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrah h2, h3, [sp]
// CHECK-ERROR: ^
ldclrah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclrlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlh b0, b1, [x2]
// CHECK-ERROR: ^
ldclrlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlh b2, b3, [sp]
// CHECK-ERROR: ^
ldclrlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlh h0, h1, [x2]
// CHECK-ERROR: ^
ldclrlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlh h2, h3, [sp]
// CHECK-ERROR: ^
ldclrlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclrlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldclralh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralh b0, b1, [x2]
// CHECK-ERROR: ^
ldclralh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralh b2, b3, [sp]
// CHECK-ERROR: ^
ldclralh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralh h0, h1, [x2]
// CHECK-ERROR: ^
ldclralh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralh h2, h3, [sp]
// CHECK-ERROR: ^
ldclralh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldclralh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeor b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeor b0, b1, [x2]
// CHECK-ERROR: ^
ldeor b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeor b2, b3, [sp]
// CHECK-ERROR: ^
ldeor h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeor h0, h1, [x2]
// CHECK-ERROR: ^
ldeor h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeor h2, h3, [sp]
// CHECK-ERROR: ^
ldeor v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeor v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeora b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeora b0, b1, [x2]
// CHECK-ERROR: ^
ldeora b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeora b2, b3, [sp]
// CHECK-ERROR: ^
ldeora h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeora h0, h1, [x2]
// CHECK-ERROR: ^
ldeora h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeora h2, h3, [sp]
// CHECK-ERROR: ^
ldeora v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeora v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorl b0, b1, [x2]
// CHECK-ERROR: ^
ldeorl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorl b2, b3, [sp]
// CHECK-ERROR: ^
ldeorl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorl h0, h1, [x2]
// CHECK-ERROR: ^
ldeorl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorl h2, h3, [sp]
// CHECK-ERROR: ^
ldeorl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeoral b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoral b0, b1, [x2]
// CHECK-ERROR: ^
ldeoral b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoral b2, b3, [sp]
// CHECK-ERROR: ^
ldeoral h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoral h0, h1, [x2]
// CHECK-ERROR: ^
ldeoral h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoral h2, h3, [sp]
// CHECK-ERROR: ^
ldeoral v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoral v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorb b0, b1, [x2]
// CHECK-ERROR: ^
ldeorb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorb b2, b3, [sp]
// CHECK-ERROR: ^
ldeorb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorb h0, h1, [x2]
// CHECK-ERROR: ^
ldeorb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorb h2, h3, [sp]
// CHECK-ERROR: ^
ldeorb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorh b0, b1, [x2]
// CHECK-ERROR: ^
ldeorh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorh b2, b3, [sp]
// CHECK-ERROR: ^
ldeorh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorh h0, h1, [x2]
// CHECK-ERROR: ^
ldeorh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorh h2, h3, [sp]
// CHECK-ERROR: ^
ldeorh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorab b0, b1, [x2]
// CHECK-ERROR: ^
ldeorab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorab b2, b3, [sp]
// CHECK-ERROR: ^
ldeorab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorab h0, h1, [x2]
// CHECK-ERROR: ^
ldeorab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorab h2, h3, [sp]
// CHECK-ERROR: ^
ldeorab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlb b0, b1, [x2]
// CHECK-ERROR: ^
ldeorlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlb b2, b3, [sp]
// CHECK-ERROR: ^
ldeorlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlb h0, h1, [x2]
// CHECK-ERROR: ^
ldeorlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlb h2, h3, [sp]
// CHECK-ERROR: ^
ldeorlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeoralb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralb b0, b1, [x2]
// CHECK-ERROR: ^
ldeoralb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralb b2, b3, [sp]
// CHECK-ERROR: ^
ldeoralb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralb h0, h1, [x2]
// CHECK-ERROR: ^
ldeoralb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralb h2, h3, [sp]
// CHECK-ERROR: ^
ldeoralb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorah b0, b1, [x2]
// CHECK-ERROR: ^
ldeorah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorah b2, b3, [sp]
// CHECK-ERROR: ^
ldeorah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorah h0, h1, [x2]
// CHECK-ERROR: ^
ldeorah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorah h2, h3, [sp]
// CHECK-ERROR: ^
ldeorah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeorlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlh b0, b1, [x2]
// CHECK-ERROR: ^
ldeorlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlh b2, b3, [sp]
// CHECK-ERROR: ^
ldeorlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlh h0, h1, [x2]
// CHECK-ERROR: ^
ldeorlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlh h2, h3, [sp]
// CHECK-ERROR: ^
ldeorlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeorlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldeoralh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralh b0, b1, [x2]
// CHECK-ERROR: ^
ldeoralh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralh b2, b3, [sp]
// CHECK-ERROR: ^
ldeoralh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralh h0, h1, [x2]
// CHECK-ERROR: ^
ldeoralh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralh h2, h3, [sp]
// CHECK-ERROR: ^
ldeoralh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldeoralh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldset b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldset b0, b1, [x2]
// CHECK-ERROR: ^
ldset b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldset b2, b3, [sp]
// CHECK-ERROR: ^
ldset h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldset h0, h1, [x2]
// CHECK-ERROR: ^
ldset h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldset h2, h3, [sp]
// CHECK-ERROR: ^
ldset v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldset v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldseta b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseta b0, b1, [x2]
// CHECK-ERROR: ^
ldseta b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseta b2, b3, [sp]
// CHECK-ERROR: ^
ldseta h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseta h0, h1, [x2]
// CHECK-ERROR: ^
ldseta h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseta h2, h3, [sp]
// CHECK-ERROR: ^
ldseta v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseta v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetl b0, b1, [x2]
// CHECK-ERROR: ^
ldsetl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetl b2, b3, [sp]
// CHECK-ERROR: ^
ldsetl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetl h0, h1, [x2]
// CHECK-ERROR: ^
ldsetl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetl h2, h3, [sp]
// CHECK-ERROR: ^
ldsetl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetal b0, b1, [x2]
// CHECK-ERROR: ^
ldsetal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetal b2, b3, [sp]
// CHECK-ERROR: ^
ldsetal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetal h0, h1, [x2]
// CHECK-ERROR: ^
ldsetal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetal h2, h3, [sp]
// CHECK-ERROR: ^
ldsetal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetb b0, b1, [x2]
// CHECK-ERROR: ^
ldsetb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetb b2, b3, [sp]
// CHECK-ERROR: ^
ldsetb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetb h0, h1, [x2]
// CHECK-ERROR: ^
ldsetb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetb h2, h3, [sp]
// CHECK-ERROR: ^
ldsetb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldseth b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseth b0, b1, [x2]
// CHECK-ERROR: ^
ldseth b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseth b2, b3, [sp]
// CHECK-ERROR: ^
ldseth h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseth h0, h1, [x2]
// CHECK-ERROR: ^
ldseth h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseth h2, h3, [sp]
// CHECK-ERROR: ^
ldseth v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldseth v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetab b0, b1, [x2]
// CHECK-ERROR: ^
ldsetab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetab b2, b3, [sp]
// CHECK-ERROR: ^
ldsetab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetab h0, h1, [x2]
// CHECK-ERROR: ^
ldsetab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetab h2, h3, [sp]
// CHECK-ERROR: ^
ldsetab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlb b0, b1, [x2]
// CHECK-ERROR: ^
ldsetlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlb b2, b3, [sp]
// CHECK-ERROR: ^
ldsetlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlb h0, h1, [x2]
// CHECK-ERROR: ^
ldsetlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlb h2, h3, [sp]
// CHECK-ERROR: ^
ldsetlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalb b0, b1, [x2]
// CHECK-ERROR: ^
ldsetalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalb b2, b3, [sp]
// CHECK-ERROR: ^
ldsetalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalb h0, h1, [x2]
// CHECK-ERROR: ^
ldsetalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalb h2, h3, [sp]
// CHECK-ERROR: ^
ldsetalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetah b0, b1, [x2]
// CHECK-ERROR: ^
ldsetah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetah b2, b3, [sp]
// CHECK-ERROR: ^
ldsetah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetah h0, h1, [x2]
// CHECK-ERROR: ^
ldsetah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetah h2, h3, [sp]
// CHECK-ERROR: ^
ldsetah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlh b0, b1, [x2]
// CHECK-ERROR: ^
ldsetlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlh b2, b3, [sp]
// CHECK-ERROR: ^
ldsetlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlh h0, h1, [x2]
// CHECK-ERROR: ^
ldsetlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlh h2, h3, [sp]
// CHECK-ERROR: ^
ldsetlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsetalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalh b0, b1, [x2]
// CHECK-ERROR: ^
ldsetalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalh b2, b3, [sp]
// CHECK-ERROR: ^
ldsetalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalh h0, h1, [x2]
// CHECK-ERROR: ^
ldsetalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalh h2, h3, [sp]
// CHECK-ERROR: ^
ldsetalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsetalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmax b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmax b0, b1, [x2]
// CHECK-ERROR: ^
ldsmax b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmax b2, b3, [sp]
// CHECK-ERROR: ^
ldsmax h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmax h0, h1, [x2]
// CHECK-ERROR: ^
ldsmax h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmax h2, h3, [sp]
// CHECK-ERROR: ^
ldsmax v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmax v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxa b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxa b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxa b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxa b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxa h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxa h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxa h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxa h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxl b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxl b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxl h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxl h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxal b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxal b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxal h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxal h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxb b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxb b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxb h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxb h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxh b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxh b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxh h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxh h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxab b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxab b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxab h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxab h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlb b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlb b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlb h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlb h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalb b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalb b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalb h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalb h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxah b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxah b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxah h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxah h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlh b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlh b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlh h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlh h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmaxalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalh b0, b1, [x2]
// CHECK-ERROR: ^
ldsmaxalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalh b2, b3, [sp]
// CHECK-ERROR: ^
ldsmaxalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalh h0, h1, [x2]
// CHECK-ERROR: ^
ldsmaxalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalh h2, h3, [sp]
// CHECK-ERROR: ^
ldsmaxalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmaxalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmin b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmin b0, b1, [x2]
// CHECK-ERROR: ^
ldsmin b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmin b2, b3, [sp]
// CHECK-ERROR: ^
ldsmin h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmin h0, h1, [x2]
// CHECK-ERROR: ^
ldsmin h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmin h2, h3, [sp]
// CHECK-ERROR: ^
ldsmin v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmin v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsmina b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmina b0, b1, [x2]
// CHECK-ERROR: ^
ldsmina b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmina b2, b3, [sp]
// CHECK-ERROR: ^
ldsmina h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmina h0, h1, [x2]
// CHECK-ERROR: ^
ldsmina h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmina h2, h3, [sp]
// CHECK-ERROR: ^
ldsmina v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsmina v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminl b0, b1, [x2]
// CHECK-ERROR: ^
ldsminl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminl b2, b3, [sp]
// CHECK-ERROR: ^
ldsminl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminl h0, h1, [x2]
// CHECK-ERROR: ^
ldsminl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminl h2, h3, [sp]
// CHECK-ERROR: ^
ldsminl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminal b0, b1, [x2]
// CHECK-ERROR: ^
ldsminal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminal b2, b3, [sp]
// CHECK-ERROR: ^
ldsminal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminal h0, h1, [x2]
// CHECK-ERROR: ^
ldsminal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminal h2, h3, [sp]
// CHECK-ERROR: ^
ldsminal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminb b0, b1, [x2]
// CHECK-ERROR: ^
ldsminb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminb b2, b3, [sp]
// CHECK-ERROR: ^
ldsminb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminb h0, h1, [x2]
// CHECK-ERROR: ^
ldsminb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminb h2, h3, [sp]
// CHECK-ERROR: ^
ldsminb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminh b0, b1, [x2]
// CHECK-ERROR: ^
ldsminh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminh b2, b3, [sp]
// CHECK-ERROR: ^
ldsminh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminh h0, h1, [x2]
// CHECK-ERROR: ^
ldsminh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminh h2, h3, [sp]
// CHECK-ERROR: ^
ldsminh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminab b0, b1, [x2]
// CHECK-ERROR: ^
ldsminab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminab b2, b3, [sp]
// CHECK-ERROR: ^
ldsminab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminab h0, h1, [x2]
// CHECK-ERROR: ^
ldsminab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminab h2, h3, [sp]
// CHECK-ERROR: ^
ldsminab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlb b0, b1, [x2]
// CHECK-ERROR: ^
ldsminlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlb b2, b3, [sp]
// CHECK-ERROR: ^
ldsminlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlb h0, h1, [x2]
// CHECK-ERROR: ^
ldsminlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlb h2, h3, [sp]
// CHECK-ERROR: ^
ldsminlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalb b0, b1, [x2]
// CHECK-ERROR: ^
ldsminalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalb b2, b3, [sp]
// CHECK-ERROR: ^
ldsminalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalb h0, h1, [x2]
// CHECK-ERROR: ^
ldsminalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalb h2, h3, [sp]
// CHECK-ERROR: ^
ldsminalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminah b0, b1, [x2]
// CHECK-ERROR: ^
ldsminah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminah b2, b3, [sp]
// CHECK-ERROR: ^
ldsminah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminah h0, h1, [x2]
// CHECK-ERROR: ^
ldsminah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminah h2, h3, [sp]
// CHECK-ERROR: ^
ldsminah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlh b0, b1, [x2]
// CHECK-ERROR: ^
ldsminlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlh b2, b3, [sp]
// CHECK-ERROR: ^
ldsminlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlh h0, h1, [x2]
// CHECK-ERROR: ^
ldsminlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlh h2, h3, [sp]
// CHECK-ERROR: ^
ldsminlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldsminalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalh b0, b1, [x2]
// CHECK-ERROR: ^
ldsminalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalh b2, b3, [sp]
// CHECK-ERROR: ^
ldsminalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalh h0, h1, [x2]
// CHECK-ERROR: ^
ldsminalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalh h2, h3, [sp]
// CHECK-ERROR: ^
ldsminalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldsminalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumax b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumax b0, b1, [x2]
// CHECK-ERROR: ^
ldumax b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumax b2, b3, [sp]
// CHECK-ERROR: ^
ldumax h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumax h0, h1, [x2]
// CHECK-ERROR: ^
ldumax h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumax h2, h3, [sp]
// CHECK-ERROR: ^
ldumax v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumax v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxa b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxa b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxa b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxa b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxa h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxa h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxa h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxa h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxa v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxl b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxl b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxl h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxl h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxal b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxal b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxal h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxal h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxb b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxb b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxb h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxb h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxh b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxh b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxh h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxh h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxab b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxab b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxab h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxab h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlb b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlb b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlb h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlb h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalb b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalb b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalb h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalb h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxah b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxah b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxah h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxah h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlh b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlh b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlh h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlh h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumaxalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalh b0, b1, [x2]
// CHECK-ERROR: ^
ldumaxalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalh b2, b3, [sp]
// CHECK-ERROR: ^
ldumaxalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalh h0, h1, [x2]
// CHECK-ERROR: ^
ldumaxalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalh h2, h3, [sp]
// CHECK-ERROR: ^
ldumaxalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumaxalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumin b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumin b0, b1, [x2]
// CHECK-ERROR: ^
ldumin b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumin b2, b3, [sp]
// CHECK-ERROR: ^
ldumin h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumin h0, h1, [x2]
// CHECK-ERROR: ^
ldumin h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumin h2, h3, [sp]
// CHECK-ERROR: ^
ldumin v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumin v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
ldumina b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumina b0, b1, [x2]
// CHECK-ERROR: ^
ldumina b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumina b2, b3, [sp]
// CHECK-ERROR: ^
ldumina h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumina h0, h1, [x2]
// CHECK-ERROR: ^
ldumina h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumina h2, h3, [sp]
// CHECK-ERROR: ^
ldumina v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: ldumina v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminl b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminl b0, b1, [x2]
// CHECK-ERROR: ^
lduminl b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminl b2, b3, [sp]
// CHECK-ERROR: ^
lduminl h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminl h0, h1, [x2]
// CHECK-ERROR: ^
lduminl h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminl h2, h3, [sp]
// CHECK-ERROR: ^
lduminl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminl v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminal b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminal b0, b1, [x2]
// CHECK-ERROR: ^
lduminal b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminal b2, b3, [sp]
// CHECK-ERROR: ^
lduminal h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminal h0, h1, [x2]
// CHECK-ERROR: ^
lduminal h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminal h2, h3, [sp]
// CHECK-ERROR: ^
lduminal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminal v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminb b0, b1, [x2]
// CHECK-ERROR: ^
lduminb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminb b2, b3, [sp]
// CHECK-ERROR: ^
lduminb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminb h0, h1, [x2]
// CHECK-ERROR: ^
lduminb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminb h2, h3, [sp]
// CHECK-ERROR: ^
lduminb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminh b0, b1, [x2]
// CHECK-ERROR: ^
lduminh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminh b2, b3, [sp]
// CHECK-ERROR: ^
lduminh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminh h0, h1, [x2]
// CHECK-ERROR: ^
lduminh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminh h2, h3, [sp]
// CHECK-ERROR: ^
lduminh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminab b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminab b0, b1, [x2]
// CHECK-ERROR: ^
lduminab b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminab b2, b3, [sp]
// CHECK-ERROR: ^
lduminab h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminab h0, h1, [x2]
// CHECK-ERROR: ^
lduminab h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminab h2, h3, [sp]
// CHECK-ERROR: ^
lduminab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminab v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminlb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlb b0, b1, [x2]
// CHECK-ERROR: ^
lduminlb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlb b2, b3, [sp]
// CHECK-ERROR: ^
lduminlb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlb h0, h1, [x2]
// CHECK-ERROR: ^
lduminlb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlb h2, h3, [sp]
// CHECK-ERROR: ^
lduminlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminalb b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalb b0, b1, [x2]
// CHECK-ERROR: ^
lduminalb b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalb b2, b3, [sp]
// CHECK-ERROR: ^
lduminalb h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalb h0, h1, [x2]
// CHECK-ERROR: ^
lduminalb h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalb h2, h3, [sp]
// CHECK-ERROR: ^
lduminalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalb v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminah b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminah b0, b1, [x2]
// CHECK-ERROR: ^
lduminah b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminah b2, b3, [sp]
// CHECK-ERROR: ^
lduminah h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminah h0, h1, [x2]
// CHECK-ERROR: ^
lduminah h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminah h2, h3, [sp]
// CHECK-ERROR: ^
lduminah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminah v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminlh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlh b0, b1, [x2]
// CHECK-ERROR: ^
lduminlh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlh b2, b3, [sp]
// CHECK-ERROR: ^
lduminlh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlh h0, h1, [x2]
// CHECK-ERROR: ^
lduminlh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlh h2, h3, [sp]
// CHECK-ERROR: ^
lduminlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminlh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
lduminalh b0, b1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalh b0, b1, [x2]
// CHECK-ERROR: ^
lduminalh b2, b3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalh b2, b3, [sp]
// CHECK-ERROR: ^
lduminalh h0, h1, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalh h0, h1, [x2]
// CHECK-ERROR: ^
lduminalh h2, h3, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalh h2, h3, [sp]
// CHECK-ERROR: ^
lduminalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: lduminalh v0.4h, v1.4h, v2.4h
// CHECK-ERROR: ^
stadd b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd b0, [x2]
// CHECK-ERROR: ^
stadd b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd b2, [sp]
// CHECK-ERROR: ^
stadd h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd h0, [x2]
// CHECK-ERROR: ^
stadd h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd h2, [sp]
// CHECK-ERROR: ^
stadd v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd v0.4h, v2.4h
// CHECK-ERROR: ^
staddl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl b0, [x2]
// CHECK-ERROR: ^
staddl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl b2, [sp]
// CHECK-ERROR: ^
staddl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl h0, [x2]
// CHECK-ERROR: ^
staddl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl h2, [sp]
// CHECK-ERROR: ^
staddl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl v0.4h, v2.4h
// CHECK-ERROR: ^
staddb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddb b0, [x2]
// CHECK-ERROR: ^
staddb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddb b2, [sp]
// CHECK-ERROR: ^
staddb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddb h0, [x2]
// CHECK-ERROR: ^
staddb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddb h2, [sp]
// CHECK-ERROR: ^
staddb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddb v0.4h, v2.4h
// CHECK-ERROR: ^
staddh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddh b0, [x2]
// CHECK-ERROR: ^
staddh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddh b2, [sp]
// CHECK-ERROR: ^
staddh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddh h0, [x2]
// CHECK-ERROR: ^
staddh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddh h2, [sp]
// CHECK-ERROR: ^
staddh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddh v0.4h, v2.4h
// CHECK-ERROR: ^
staddlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlb b0, [x2]
// CHECK-ERROR: ^
staddlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlb b2, [sp]
// CHECK-ERROR: ^
staddlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlb h0, [x2]
// CHECK-ERROR: ^
staddlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlb h2, [sp]
// CHECK-ERROR: ^
staddlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlb v0.4h, v2.4h
// CHECK-ERROR: ^
staddlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlh b0, [x2]
// CHECK-ERROR: ^
staddlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlh b2, [sp]
// CHECK-ERROR: ^
staddlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlh h0, [x2]
// CHECK-ERROR: ^
staddlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlh h2, [sp]
// CHECK-ERROR: ^
staddlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddlh v0.4h, v2.4h
// CHECK-ERROR: ^
stadd b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd b0, [x2]
// CHECK-ERROR: ^
stadd b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd b2, [sp]
// CHECK-ERROR: ^
stadd h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd h0, [x2]
// CHECK-ERROR: ^
stadd h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd h2, [sp]
// CHECK-ERROR: ^
stadd v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stadd v0.4h, v2.4h
// CHECK-ERROR: ^
staddl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl b0, [x2]
// CHECK-ERROR: ^
staddl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl b2, [sp]
// CHECK-ERROR: ^
staddl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl h0, [x2]
// CHECK-ERROR: ^
staddl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl h2, [sp]
// CHECK-ERROR: ^
staddl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: staddl v0.4h, v2.4h
// CHECK-ERROR: ^
stclr b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclr b0, [x2]
// CHECK-ERROR: ^
stclr b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclr b2, [sp]
// CHECK-ERROR: ^
stclr h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclr h0, [x2]
// CHECK-ERROR: ^
stclr h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclr h2, [sp]
// CHECK-ERROR: ^
stclr v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclr v0.4h, v2.4h
// CHECK-ERROR: ^
stclrl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrl b0, [x2]
// CHECK-ERROR: ^
stclrl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrl b2, [sp]
// CHECK-ERROR: ^
stclrl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrl h0, [x2]
// CHECK-ERROR: ^
stclrl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrl h2, [sp]
// CHECK-ERROR: ^
stclrl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrl v0.4h, v2.4h
// CHECK-ERROR: ^
stclrb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrb b0, [x2]
// CHECK-ERROR: ^
stclrb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrb b2, [sp]
// CHECK-ERROR: ^
stclrb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrb h0, [x2]
// CHECK-ERROR: ^
stclrb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrb h2, [sp]
// CHECK-ERROR: ^
stclrb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrb v0.4h, v2.4h
// CHECK-ERROR: ^
stclrh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrh b0, [x2]
// CHECK-ERROR: ^
stclrh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrh b2, [sp]
// CHECK-ERROR: ^
stclrh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrh h0, [x2]
// CHECK-ERROR: ^
stclrh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrh h2, [sp]
// CHECK-ERROR: ^
stclrh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrh v0.4h, v2.4h
// CHECK-ERROR: ^
stclrlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlb b0, [x2]
// CHECK-ERROR: ^
stclrlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlb b2, [sp]
// CHECK-ERROR: ^
stclrlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlb h0, [x2]
// CHECK-ERROR: ^
stclrlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlb h2, [sp]
// CHECK-ERROR: ^
stclrlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlb v0.4h, v2.4h
// CHECK-ERROR: ^
stclrlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlh b0, [x2]
// CHECK-ERROR: ^
stclrlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlh b2, [sp]
// CHECK-ERROR: ^
stclrlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlh h0, [x2]
// CHECK-ERROR: ^
stclrlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlh h2, [sp]
// CHECK-ERROR: ^
stclrlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stclrlh v0.4h, v2.4h
// CHECK-ERROR: ^
steor b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steor b0, [x2]
// CHECK-ERROR: ^
steor b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steor b2, [sp]
// CHECK-ERROR: ^
steor h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steor h0, [x2]
// CHECK-ERROR: ^
steor h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steor h2, [sp]
// CHECK-ERROR: ^
steor v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steor v0.4h, v2.4h
// CHECK-ERROR: ^
steorl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorl b0, [x2]
// CHECK-ERROR: ^
steorl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorl b2, [sp]
// CHECK-ERROR: ^
steorl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorl h0, [x2]
// CHECK-ERROR: ^
steorl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorl h2, [sp]
// CHECK-ERROR: ^
steorl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorl v0.4h, v2.4h
// CHECK-ERROR: ^
steorb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorb b0, [x2]
// CHECK-ERROR: ^
steorb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorb b2, [sp]
// CHECK-ERROR: ^
steorb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorb h0, [x2]
// CHECK-ERROR: ^
steorb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorb h2, [sp]
// CHECK-ERROR: ^
steorb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorb v0.4h, v2.4h
// CHECK-ERROR: ^
steorh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorh b0, [x2]
// CHECK-ERROR: ^
steorh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorh b2, [sp]
// CHECK-ERROR: ^
steorh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorh h0, [x2]
// CHECK-ERROR: ^
steorh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorh h2, [sp]
// CHECK-ERROR: ^
steorh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorh v0.4h, v2.4h
// CHECK-ERROR: ^
steorlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlb b0, [x2]
// CHECK-ERROR: ^
steorlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlb b2, [sp]
// CHECK-ERROR: ^
steorlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlb h0, [x2]
// CHECK-ERROR: ^
steorlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlb h2, [sp]
// CHECK-ERROR: ^
steorlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlb v0.4h, v2.4h
// CHECK-ERROR: ^
steorlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlh b0, [x2]
// CHECK-ERROR: ^
steorlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlh b2, [sp]
// CHECK-ERROR: ^
steorlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlh h0, [x2]
// CHECK-ERROR: ^
steorlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlh h2, [sp]
// CHECK-ERROR: ^
steorlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: steorlh v0.4h, v2.4h
// CHECK-ERROR: ^
stset b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stset b0, [x2]
// CHECK-ERROR: ^
stset b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stset b2, [sp]
// CHECK-ERROR: ^
stset h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stset h0, [x2]
// CHECK-ERROR: ^
stset h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stset h2, [sp]
// CHECK-ERROR: ^
stset v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stset v0.4h, v2.4h
// CHECK-ERROR: ^
stsetl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetl b0, [x2]
// CHECK-ERROR: ^
stsetl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetl b2, [sp]
// CHECK-ERROR: ^
stsetl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetl h0, [x2]
// CHECK-ERROR: ^
stsetl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetl h2, [sp]
// CHECK-ERROR: ^
stsetl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetl v0.4h, v2.4h
// CHECK-ERROR: ^
stsetb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetb b0, [x2]
// CHECK-ERROR: ^
stsetb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetb b2, [sp]
// CHECK-ERROR: ^
stsetb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetb h0, [x2]
// CHECK-ERROR: ^
stsetb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetb h2, [sp]
// CHECK-ERROR: ^
stsetb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetb v0.4h, v2.4h
// CHECK-ERROR: ^
stseth b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stseth b0, [x2]
// CHECK-ERROR: ^
stseth b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stseth b2, [sp]
// CHECK-ERROR: ^
stseth h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stseth h0, [x2]
// CHECK-ERROR: ^
stseth h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stseth h2, [sp]
// CHECK-ERROR: ^
stseth v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stseth v0.4h, v2.4h
// CHECK-ERROR: ^
stsetlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlb b0, [x2]
// CHECK-ERROR: ^
stsetlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlb b2, [sp]
// CHECK-ERROR: ^
stsetlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlb h0, [x2]
// CHECK-ERROR: ^
stsetlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlb h2, [sp]
// CHECK-ERROR: ^
stsetlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlb v0.4h, v2.4h
// CHECK-ERROR: ^
stsetlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlh b0, [x2]
// CHECK-ERROR: ^
stsetlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlh b2, [sp]
// CHECK-ERROR: ^
stsetlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlh h0, [x2]
// CHECK-ERROR: ^
stsetlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlh h2, [sp]
// CHECK-ERROR: ^
stsetlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsetlh v0.4h, v2.4h
// CHECK-ERROR: ^
stsmax b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmax b0, [x2]
// CHECK-ERROR: ^
stsmax b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmax b2, [sp]
// CHECK-ERROR: ^
stsmax h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmax h0, [x2]
// CHECK-ERROR: ^
stsmax h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmax h2, [sp]
// CHECK-ERROR: ^
stsmax v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmax v0.4h, v2.4h
// CHECK-ERROR: ^
stsmaxl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxl b0, [x2]
// CHECK-ERROR: ^
stsmaxl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxl b2, [sp]
// CHECK-ERROR: ^
stsmaxl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxl h0, [x2]
// CHECK-ERROR: ^
stsmaxl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxl h2, [sp]
// CHECK-ERROR: ^
stsmaxl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxl v0.4h, v2.4h
// CHECK-ERROR: ^
stsmaxb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxb b0, [x2]
// CHECK-ERROR: ^
stsmaxb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxb b2, [sp]
// CHECK-ERROR: ^
stsmaxb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxb h0, [x2]
// CHECK-ERROR: ^
stsmaxb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxb h2, [sp]
// CHECK-ERROR: ^
stsmaxb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxb v0.4h, v2.4h
// CHECK-ERROR: ^
stsmaxh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxh b0, [x2]
// CHECK-ERROR: ^
stsmaxh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxh b2, [sp]
// CHECK-ERROR: ^
stsmaxh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxh h0, [x2]
// CHECK-ERROR: ^
stsmaxh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxh h2, [sp]
// CHECK-ERROR: ^
stsmaxh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxh v0.4h, v2.4h
// CHECK-ERROR: ^
stsmaxlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlb b0, [x2]
// CHECK-ERROR: ^
stsmaxlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlb b2, [sp]
// CHECK-ERROR: ^
stsmaxlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlb h0, [x2]
// CHECK-ERROR: ^
stsmaxlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlb h2, [sp]
// CHECK-ERROR: ^
stsmaxlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlb v0.4h, v2.4h
// CHECK-ERROR: ^
stsmaxlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlh b0, [x2]
// CHECK-ERROR: ^
stsmaxlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlh b2, [sp]
// CHECK-ERROR: ^
stsmaxlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlh h0, [x2]
// CHECK-ERROR: ^
stsmaxlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlh h2, [sp]
// CHECK-ERROR: ^
stsmaxlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmaxlh v0.4h, v2.4h
// CHECK-ERROR: ^
stsmin b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmin b0, [x2]
// CHECK-ERROR: ^
stsmin b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmin b2, [sp]
// CHECK-ERROR: ^
stsmin h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmin h0, [x2]
// CHECK-ERROR: ^
stsmin h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmin h2, [sp]
// CHECK-ERROR: ^
stsmin v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsmin v0.4h, v2.4h
// CHECK-ERROR: ^
stsminl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminl b0, [x2]
// CHECK-ERROR: ^
stsminl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminl b2, [sp]
// CHECK-ERROR: ^
stsminl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminl h0, [x2]
// CHECK-ERROR: ^
stsminl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminl h2, [sp]
// CHECK-ERROR: ^
stsminl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminl v0.4h, v2.4h
// CHECK-ERROR: ^
stsminb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminb b0, [x2]
// CHECK-ERROR: ^
stsminb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminb b2, [sp]
// CHECK-ERROR: ^
stsminb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminb h0, [x2]
// CHECK-ERROR: ^
stsminb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminb h2, [sp]
// CHECK-ERROR: ^
stsminb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminb v0.4h, v2.4h
// CHECK-ERROR: ^
stsminh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminh b0, [x2]
// CHECK-ERROR: ^
stsminh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminh b2, [sp]
// CHECK-ERROR: ^
stsminh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminh h0, [x2]
// CHECK-ERROR: ^
stsminh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminh h2, [sp]
// CHECK-ERROR: ^
stsminh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminh v0.4h, v2.4h
// CHECK-ERROR: ^
stsminlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlb b0, [x2]
// CHECK-ERROR: ^
stsminlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlb b2, [sp]
// CHECK-ERROR: ^
stsminlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlb h0, [x2]
// CHECK-ERROR: ^
stsminlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlb h2, [sp]
// CHECK-ERROR: ^
stsminlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlb v0.4h, v2.4h
// CHECK-ERROR: ^
stsminlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlh b0, [x2]
// CHECK-ERROR: ^
stsminlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlh b2, [sp]
// CHECK-ERROR: ^
stsminlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlh h0, [x2]
// CHECK-ERROR: ^
stsminlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlh h2, [sp]
// CHECK-ERROR: ^
stsminlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stsminlh v0.4h, v2.4h
// CHECK-ERROR: ^
stumax b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumax b0, [x2]
// CHECK-ERROR: ^
stumax b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumax b2, [sp]
// CHECK-ERROR: ^
stumax h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumax h0, [x2]
// CHECK-ERROR: ^
stumax h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumax h2, [sp]
// CHECK-ERROR: ^
stumax v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumax v0.4h, v2.4h
// CHECK-ERROR: ^
stumaxl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxl b0, [x2]
// CHECK-ERROR: ^
stumaxl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxl b2, [sp]
// CHECK-ERROR: ^
stumaxl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxl h0, [x2]
// CHECK-ERROR: ^
stumaxl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxl h2, [sp]
// CHECK-ERROR: ^
stumaxl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxl v0.4h, v2.4h
// CHECK-ERROR: ^
stumaxb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxb b0, [x2]
// CHECK-ERROR: ^
stumaxb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxb b2, [sp]
// CHECK-ERROR: ^
stumaxb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxb h0, [x2]
// CHECK-ERROR: ^
stumaxb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxb h2, [sp]
// CHECK-ERROR: ^
stumaxb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxb v0.4h, v2.4h
// CHECK-ERROR: ^
stumaxh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxh b0, [x2]
// CHECK-ERROR: ^
stumaxh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxh b2, [sp]
// CHECK-ERROR: ^
stumaxh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxh h0, [x2]
// CHECK-ERROR: ^
stumaxh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxh h2, [sp]
// CHECK-ERROR: ^
stumaxh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxh v0.4h, v2.4h
// CHECK-ERROR: ^
stumaxlb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlb b0, [x2]
// CHECK-ERROR: ^
stumaxlb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlb b2, [sp]
// CHECK-ERROR: ^
stumaxlb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlb h0, [x2]
// CHECK-ERROR: ^
stumaxlb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlb h2, [sp]
// CHECK-ERROR: ^
stumaxlb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlb v0.4h, v2.4h
// CHECK-ERROR: ^
stumaxlh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlh b0, [x2]
// CHECK-ERROR: ^
stumaxlh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlh b2, [sp]
// CHECK-ERROR: ^
stumaxlh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlh h0, [x2]
// CHECK-ERROR: ^
stumaxlh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlh h2, [sp]
// CHECK-ERROR: ^
stumaxlh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumaxlh v0.4h, v2.4h
// CHECK-ERROR: ^
stumin b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumin b0, [x2]
// CHECK-ERROR: ^
stumin b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumin b2, [sp]
// CHECK-ERROR: ^
stumin h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumin h0, [x2]
// CHECK-ERROR: ^
stumin h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumin h2, [sp]
// CHECK-ERROR: ^
stumin v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stumin v0.4h, v2.4h
// CHECK-ERROR: ^
stuminl b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminl b0, [x2]
// CHECK-ERROR: ^
stuminl b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminl b2, [sp]
// CHECK-ERROR: ^
stuminl h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminl h0, [x2]
// CHECK-ERROR: ^
stuminl h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminl h2, [sp]
// CHECK-ERROR: ^
stuminl v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminl v0.4h, v2.4h
// CHECK-ERROR: ^
stuminb b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminb b0, [x2]
// CHECK-ERROR: ^
stuminb b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminb b2, [sp]
// CHECK-ERROR: ^
stuminb h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminb h0, [x2]
// CHECK-ERROR: ^
stuminb h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminb h2, [sp]
// CHECK-ERROR: ^
stuminb v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminb v0.4h, v2.4h
// CHECK-ERROR: ^
stuminh b0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminh b0, [x2]
// CHECK-ERROR: ^
stuminh b2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminh b2, [sp]
// CHECK-ERROR: ^
stuminh h0, [x2]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminh h0, [x2]
// CHECK-ERROR: ^
stuminh h2, [sp]
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminh h2, [sp]
// CHECK-ERROR: ^
stuminh v0.4h, v2.4h
// CHECK-ERROR: error: invalid operand for instruction
// CHECK-ERROR: stuminh v0.4h, v2.4h
// CHECK-ERROR: ^