summaryrefslogtreecommitdiff
path: root/gas/testsuite/gas/frv/allinsn.s
blob: 4979d73380f918f17a053577cfd944225a3d30d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
 .data
foodata: .word 42
 .text
footext:
	.text
	.global add
add:
	ADD sp,sp,sp
	.text
	.global sub
sub:
	sub sp,sp,sp
	.text
	.global udiv
udiv:
	udiv sp,sp,sp
	.text
	.global and
and:
	and sp,sp,sp
	.text
	.global or
or:
	or sp,sp,sp
	.text
	.global xor
xor:
	xor sp,sp,sp
	.text
	.global not
not:
	not sp,sp
	.text
	.global sdiv
sdiv:
	sdiv sp,sp,sp
	.text
	.global nsdiv
nsdiv:
	nsdiv sp,sp,sp
	.text
	.global nudiv
nudiv:
	nudiv sp,sp,sp
	.text
	.global smul
smul:
	smul sp,sp,sp
	.text
	.global umul
umul:
	umul sp,sp,sp
	.text
	.global sll
sll:
	sll sp,sp,sp
	.text
	.global srl
srl:
	srl sp,sp,sp
	.text
	.global sra
sra:
	sra sp,sp,sp
	.text
	.global scan
scan:
	scan sp,sp,sp
	.text
	.global cadd
cadd:
	cadd sp,sp,sp,cc0,0
	.text
	.global csub
csub:
	csub sp,sp,sp,cc0,0
	.text
	.global cudiv
cudiv:
	cudiv sp,sp,sp,cc0,0
	.text
	.global cand
cand:
	cand sp,sp,sp,cc0,0
	.text
	.global cor
cor:
	cor sp,sp,sp,cc0,0
	.text
	.global cxor
cxor:
	cxor sp,sp,sp,cc0,0
	.text
	.global cnot
cnot:
	cnot sp,sp,cc0,0
	.text
	.global csmul
csmul:
	csmul sp,sp,sp,cc0,0
	.text
	.global csdiv
csdiv:
	csdiv sp,sp,sp,cc0,0
	.text
	.global csll
csll:
	csll sp,sp,sp,cc0,0
	.text
	.global csrl
csrl:
	csrl sp,sp,sp,cc0,0
	.text
	.global csra
csra:
	csra sp,sp,sp,cc0,0
	.text
	.global cscan
cscan:
	cscan sp,sp,sp,cc0,0
	.text
	.global addcc
addcc:
	addcc sp,sp,sp,icc0
	.text
	.global subcc
subcc:
	subcc sp,sp,sp,icc0
	.text
	.global andcc
andcc:
	andcc sp,sp,sp,icc0
	.text
	.global orcc
orcc:
	orcc sp,sp,sp,icc0
	.text
	.global xorcc
xorcc:
	xorcc sp,sp,sp,icc0
	.text
	.global sllcc
sllcc:
	sllcc sp,sp,sp,icc0
	.text
	.global srlcc
srlcc:
	srlcc sp,sp,sp,icc0
	.text
	.global sracc
sracc:
	sracc sp,sp,sp,icc0
	.text
	.global smulcc
smulcc:
	smulcc sp,sp,sp,icc0
	.text
	.global umulcc
umulcc:
	umulcc sp,sp,sp,icc0
	.text
	.global caddcc
caddcc:
	caddcc sp,sp,sp,cc0,0
	.text
	.global csubcc
csubcc:
	csubcc sp,sp,sp,cc0,0
	.text
	.global csmulcc
csmulcc:
	csmulcc sp,sp,sp,cc0,0
	.text
	.global candcc
candcc:
	candcc sp,sp,sp,cc0,0
	.text
	.global corcc
corcc:
	corcc sp,sp,sp,cc0,0
	.text
	.global cxorcc
cxorcc:
	cxorcc sp,sp,sp,cc0,0
	.text
	.global csllcc
csllcc:
	csllcc sp,sp,sp,cc0,0
	.text
	.global csrlcc
csrlcc:
	csrlcc sp,sp,sp,cc0,0
	.text
	.global csracc
csracc:
	csracc sp,sp,sp,cc0,0
	.text
	.global addx
addx:
	addx sp,sp,sp,icc0
	.text
	.global subx
subx:
	subx sp,sp,sp,icc0
	.text
	.global addxcc
addxcc:
	addxcc sp,sp,sp,icc0
	.text
	.global subxcc
subxcc:
	subxcc sp,sp,sp,icc0
	.text
	.global addi
addi:
	addi sp,0,sp
	.text
	.global subi
subi:
	subi sp,0,sp
	.text
	.global udivi
udivi:
	udivi sp,0,sp
	.text
	.global andi
andi:
	andi sp,0,sp
	.text
	.global ori
ori:
	ori sp,0,sp
	.text
	.global xori
xori:
	xori sp,0,sp
	.text
	.global sdivi
sdivi:
	sdivi sp,0,sp
	.text
	.global nsdivi
nsdivi:
	nsdivi sp,0,sp
	.text
	.global nudivi
nudivi:
	nudivi sp,0,sp
	.text
	.global smuli
smuli:
	smuli sp,0,sp
	.text
	.global umuli
umuli:
	umuli sp,0,sp
	.text
	.global slli
slli:
	slli sp,0,sp
	.text
	.global srli
srli:
	srli sp,0,sp
	.text
	.global srai
srai:
	srai sp,0,sp
	.text
	.global scani
scani:
	scani sp,0,sp
	.text
	.global addicc
addicc:
	addicc sp,0,sp,icc0
	.text
	.global subicc
subicc:
	subicc sp,0,sp,icc0
	.text
	.global andicc
andicc:
	andicc sp,0,sp,icc0
	.text
	.global oricc
oricc:
	oricc sp,0,sp,icc0
	.text
	.global xoricc
xoricc:
	xoricc sp,0,sp,icc0
	.text
	.global smulicc
smulicc:
	smulicc sp,0,sp,icc0
	.text
	.global umulicc
umulicc:
	umulicc sp,0,sp,icc0
	.text
	.global sllicc
sllicc:
	sllicc sp,0,sp,icc0
	.text
	.global srlicc
srlicc:
	srlicc sp,0,sp,icc0
	.text
	.global sraicc
sraicc:
	sraicc sp,0,sp,icc0
	.text
	.global addxi
addxi:
	addxi sp,0,sp,icc0
	.text
	.global subxi
subxi:
	subxi sp,0,sp,icc0
	.text
	.global addxicc
addxicc:
	addxicc sp,0,sp,icc0
	.text
	.global subxicc
subxicc:
	subxicc sp,0,sp,icc0
	.text
	.global setlo
setlo:
	setlo 0,sp
	.text
	.global sethi
sethi:
	sethi 0,sp
	.text
	.global setlos
setlos:
	setlos 0,sp
	.text
	.global ldsb
ldsb:
	ldsb @(sp,sp),sp
	.text
	.global ldub
ldub:
	ldub @(sp,sp),sp
	.text
	.global ldsh
ldsh:
	ldsh @(sp,sp),sp
	.text
	.global lduh
lduh:
	lduh @(sp,sp),sp
	.text
	.global ld
ld:
	ld @(sp,sp),sp
	.text
	.global ldbf
ldbf:
	ldbf @(sp,sp),fr0
	.text
	.global ldhf
ldhf:
	ldhf @(sp,sp),fr0
	.text
	.global ldf
ldf:
	ldf @(sp,sp),fr0
	.text
	.global ldc
ldc:
	ldc @(sp,sp),cpr0
	.text
	.global nldsb
nldsb:
	nldsb @(sp,sp),sp
	.text
	.global nldub
nldub:
	nldub @(sp,sp),sp
	.text
	.global nldsh
nldsh:
	nldsh @(sp,sp),sp
	.text
	.global nlduh
nlduh:
	nlduh @(sp,sp),sp
	.text
	.global nld
nld:
	nld @(sp,sp),sp
	.text
	.global nldbf
nldbf:
	nldbf @(sp,sp),fr0
	.text
	.global nldhf
nldhf:
	nldhf @(sp,sp),fr0
	.text
	.global nldf
nldf:
	nldf @(sp,sp),fr0
	.text
	.global ldd
ldd:
	ldd @(sp,sp),sp
	.text
	.global lddf
lddf:
	lddf @(sp,sp),fr0
	.text
	.global lddc
lddc:
	lddc @(sp,sp),cpr0
	.text
	.global nldd
nldd:
	nldd @(sp,sp),sp
	.text
	.global nlddf
nlddf:
	nlddf @(sp,sp),fr0
	.text
	.global ldq
ldq:
	ldq @(sp,sp),sp
	.text
	.global ldqf
ldqf:
	ldqf @(sp,sp),fr0
	.text
	.global ldqc
ldqc:
	ldqc @(sp,sp),cpr0
	.text
	.global nldq
nldq:
	nldq @(sp,sp),sp
	.text
	.global nldqf
nldqf:
	nldqf @(sp,sp),fr0
	.text
	.global ldsbu
ldsbu:
	ldsbu @(sp,sp),sp
	.text
	.global ldubu
ldubu:
	ldubu @(sp,sp),sp
	.text
	.global ldshu
ldshu:
	ldshu @(sp,sp),sp
	.text
	.global lduhu
lduhu:
	lduhu @(sp,sp),sp
	.text
	.global ldu
ldu:
	ldu @(sp,sp),sp
	.text
	.global nldsbu
nldsbu:
	nldsbu @(sp,sp),sp
	.text
	.global nldubu
nldubu:
	nldubu @(sp,sp),sp
	.text
	.global nldshu
nldshu:
	nldshu @(sp,sp),sp
	.text
	.global nlduhu
nlduhu:
	nlduhu @(sp,sp),sp
	.text
	.global nldu
nldu:
	nldu @(sp,sp),sp
	.text
	.global ldbfu
ldbfu:
	ldbfu @(sp,sp),fr0
	.text
	.global ldhfu
ldhfu:
	ldhfu @(sp,sp),fr0
	.text
	.global ldfu
ldfu:
	ldfu @(sp,sp),fr0
	.text
	.global ldcu
ldcu:
	ldcu @(sp,sp),cpr0
	.text
	.global nldbfu
nldbfu:
	nldbfu @(sp,sp),fr0
	.text
	.global nldhfu
nldhfu:
	nldhfu @(sp,sp),fr0
	.text
	.global nldfu
nldfu:
	nldfu @(sp,sp),fr0
	.text
	.global lddu
lddu:
	lddu @(sp,sp),sp
	.text
	.global nlddu
nlddu:
	nlddu @(sp,sp),sp
	.text
	.global lddfu
lddfu:
	lddfu @(sp,sp),fr0
	.text
	.global lddcu
lddcu:
	lddcu @(sp,sp),cpr0
	.text
	.global nlddfu
nlddfu:
	nlddfu @(sp,sp),fr0
	.text
	.global ldqu
ldqu:
	ldqu @(sp,sp),sp
	.text
	.global nldqu
nldqu:
	nldqu @(sp,sp),sp
	.text
	.global ldqfu
ldqfu:
	ldqfu @(sp,sp),fr0
	.text
	.global ldqcu
ldqcu:
	ldqcu @(sp,sp),cpr0
	.text
	.global nldqfu
nldqfu:
	nldqfu @(sp,sp),fr0
	.text
	.global ldsbi
ldsbi:
	ldsbi @(sp,0),sp
	.text
	.global ldshi
ldshi:
	ldshi @(sp,0),sp
	.text
	.global ldi
ldi:
	ldi @(sp,0),sp
	.text
	.global ldubi
ldubi:
	ldubi @(sp,0),sp
	.text
	.global lduhi
lduhi:
	lduhi @(sp,0),sp
	.text
	.global ldbfi
ldbfi:
	ldbfi @(sp,0),fr0
	.text
	.global ldhfi
ldhfi:
	ldhfi @(sp,0),fr0
	.text
	.global ldfi
ldfi:
	ldfi @(sp,0),fr0
	.text
	.global nldsbi
nldsbi:
	nldsbi @(sp,0),sp
	.text
	.global nldubi
nldubi:
	nldubi @(sp,0),sp
	.text
	.global nldshi
nldshi:
	nldshi @(sp,0),sp
	.text
	.global nlduhi
nlduhi:
	nlduhi @(sp,0),sp
	.text
	.global nldi
nldi:
	nldi @(sp,0),sp
	.text
	.global nldbfi
nldbfi:
	nldbfi @(sp,0),fr0
	.text
	.global nldhfi
nldhfi:
	nldhfi @(sp,0),fr0
	.text
	.global nldfi
nldfi:
	nldfi @(sp,0),fr0
	.text
	.global lddi
lddi:
	lddi @(sp,0),sp
	.text
	.global lddfi
lddfi:
	lddfi @(sp,0),fr0
	.text
	.global nlddi
nlddi:
	nlddi @(sp,0),sp
	.text
	.global nlddfi
nlddfi:
	nlddfi @(sp,0),fr0
	.text
	.global ldqi
ldqi:
	ldqi @(sp,0),sp
	.text
	.global ldqfi
ldqfi:
	ldqfi @(sp,0),fr0
	.text
	.global nldqi
nldqi:
	nldqi @(sp,0),sp
	.text
	.global nldqfi
nldqfi:
	nldqfi @(sp,0),fr0
	.text
	.global stb
stb:
	stb sp,@(sp,sp)
	.text
	.global sth
sth:
	sth sp,@(sp,sp)
	.text
	.global st
st:
	st sp,@(sp,sp)
	.text
	.global stbf
stbf:
	stbf fr0,@(sp,sp)
	.text
	.global sthf
sthf:
	sthf fr0,@(sp,sp)
	.text
	.global stf
stf:
	stf fr0,@(sp,sp)
	.text
	.global stc
stc:
	stc cpr0,@(sp,sp)
	.text
	.global rstb
rstb:
	rstb sp,@(sp,sp)
	.text
	.global rsth
rsth:
	rsth sp,@(sp,sp)
	.text
	.global rst
rst:
	rst sp,@(sp,sp)
	.text
	.global rstbf
rstbf:
	rstbf fr0,@(sp,sp)
	.text
	.global rsthf
rsthf:
	rsthf fr0,@(sp,sp)
	.text
	.global rstf
rstf:
	rstf fr0,@(sp,sp)
	.text
	.global std
std:
	std sp,@(sp,sp)
	.text
	.global stdf
stdf:
	stdf fr0,@(sp,sp)
	.text
	.global stdc
stdc:
	stdc cpr0,@(sp,sp)
	.text
	.global rstd
rstd:
	rstd sp,@(sp,sp)
	.text
	.global rstdf
rstdf:
	rstdf fr0,@(sp,sp)
	.text
	.global stq
stq:
	stq sp,@(sp,sp)
	.text
	.global stqf
stqf:
	stqf fr0,@(sp,sp)
	.text
	.global stqc
stqc:
	stqc cpr0,@(sp,sp)
	.text
	.global rstq
rstq:
	rstq sp,@(sp,sp)
	.text
	.global rstqf
rstqf:
	rstqf fr0,@(sp,sp)
	.text
	.global stbu
stbu:
	stbu sp,@(sp,sp)
	.text
	.global sthu
sthu:
	sthu sp,@(sp,sp)
	.text
	.global stu
stu:
	stu sp,@(sp,sp)
	.text
	.global stbfu
stbfu:
	stbfu fr0,@(sp,sp)
	.text
	.global sthfu
sthfu:
	sthfu fr0,@(sp,sp)
	.text
	.global stfu
stfu:
	stfu fr0,@(sp,sp)
	.text
	.global stcu
stcu:
	stcu cpr0,@(sp,sp)
	.text
	.global stdu
stdu:
	stdu sp,@(sp,sp)
	.text
	.global stdfu
stdfu:
	stdfu fr0,@(sp,sp)
	.text
	.global stdcu
stdcu:
	stdcu cpr0,@(sp,sp)
	.text
	.global stqu
stqu:
	stqu sp,@(sp,sp)
	.text
	.global stqfu
stqfu:
	stqfu fr0,@(sp,sp)
	.text
	.global stqcu
stqcu:
	stqcu cpr0,@(sp,sp)
	.text
	.global cldsb
cldsb:
	cldsb @(sp,sp),sp,cc0,0
	.text
	.global cldub
cldub:
	cldub @(sp,sp),sp,cc0,0
	.text
	.global cldsh
cldsh:
	cldsh @(sp,sp),sp,cc0,0
	.text
	.global clduh
clduh:
	clduh @(sp,sp),sp,cc0,0
	.text
	.global cld
cld:
	cld @(sp,sp),sp,cc0,0
	.text
	.global cldbf
cldbf:
	cldbf @(sp,sp),fr0,cc0,0
	.text
	.global cldhf
cldhf:
	cldhf @(sp,sp),fr0,cc0,0
	.text
	.global cldf
cldf:
	cldf @(sp,sp),fr0,cc0,0
	.text
	.global cldd
cldd:
	cldd @(sp,sp),sp,cc0,0
	.text
	.global clddf
clddf:
	clddf @(sp,sp),fr0,cc0,0
	.text
	.global cldq
cldq:
	cldq @(sp,sp),sp,cc0,0
	.text
	.global cldsbu
cldsbu:
	cldsbu @(sp,sp),sp,cc0,0
	.text
	.global cldubu
cldubu:
	cldubu @(sp,sp),sp,cc0,0
	.text
	.global cldshu
cldshu:
	cldshu @(sp,sp),sp,cc0,0
	.text
	.global clduhu
clduhu:
	clduhu @(sp,sp),sp,cc0,0
	.text
	.global cldu
cldu:
	cldu @(sp,sp),sp,cc0,0
	.text
	.global cldbfu
cldbfu:
	cldbfu @(sp,sp),fr0,cc0,0
	.text
	.global cldhfu
cldhfu:
	cldhfu @(sp,sp),fr0,cc0,0
	.text
	.global cldfu
cldfu:
	cldfu @(sp,sp),fr0,cc0,0
	.text
	.global clddu
clddu:
	clddu @(sp,sp),sp,cc0,0
	.text
	.global clddfu
clddfu:
	clddfu @(sp,sp),fr0,cc0,0
	.text
	.global cldqu
cldqu:
	cldqu @(sp,sp),sp,cc0,0
	.text
	.global cstb
cstb:
	cstb sp,@(sp,sp),cc0,0
	.text
	.global csth
csth:
	csth sp,@(sp,sp),cc0,0
	.text
	.global cst
cst:
	cst sp,@(sp,sp),cc0,0
	.text
	.global cstbf
cstbf:
	cstbf fr0,@(sp,sp),cc0,0
	.text
	.global csthf
csthf:
	csthf fr0,@(sp,sp),cc0,0
	.text
	.global cstf
cstf:
	cstf fr0,@(sp,sp),cc0,0
	.text
	.global cstd
cstd:
	cstd sp,@(sp,sp),cc0,0
	.text
	.global cstdf
cstdf:
	cstdf fr0,@(sp,sp),cc0,0
	.text
	.global cstq
cstq:
	cstq sp,@(sp,sp),cc0,0
	.text
	.global cstbu
cstbu:
	cstbu sp,@(sp,sp),cc0,0
	.text
	.global csthu
csthu:
	csthu sp,@(sp,sp),cc0,0
	.text
	.global cstu
cstu:
	cstu sp,@(sp,sp),cc0,0
	.text
	.global cstbfu
cstbfu:
	cstbfu fr0,@(sp,sp),cc0,0
	.text
	.global csthfu
csthfu:
	csthfu fr0,@(sp,sp),cc0,0
	.text
	.global cstfu
cstfu:
	cstfu fr0,@(sp,sp),cc0,0
	.text
	.global cstdu
cstdu:
	cstdu sp,@(sp,sp),cc0,0
	.text
	.global cstdfu
cstdfu:
	cstdfu fr0,@(sp,sp),cc0,0
	.text
	.global stbi
stbi:
	stbi sp,@(sp,0)
	.text
	.global sthi
sthi:
	sthi sp,@(sp,0)
	.text
	.global sti
sti:
	sti sp,@(sp,0)
	.text
	.global stbfi
stbfi:
	stbfi fr0,@(sp,0)
	.text
	.global sthfi
sthfi:
	sthfi fr0,@(sp,0)
	.text
	.global stfi
stfi:
	stfi fr0,@(sp,0)
	.text
	.global stdi
stdi:
	stdi sp,@(sp,0)
	.text
	.global stdfi
stdfi:
	stdfi fr0,@(sp,0)
	.text
	.global stqi
stqi:
	stqi sp,@(sp,0)
	.text
	.global stqfi
stqfi:
	stqfi fr0,@(sp,0)
	.text
	.global swap
swap:
	swap @(sp,sp),sp
	.text
	.global swapi
swapi:
	swapi @(sp,0),sp
	.text
	.global cswap
cswap:
	cswap @(sp,sp),sp,cc0,0
	.text
	.global movgf
movgf:
	movgf sp,fr0
	.text
	.global movfg
movfg:
	movfg fr0,sp
	.text
	.global movgfd
movgfd:
	movgfd sp,fr0
	.text
	.global movfgd
movfgd:
	movfgd fr0,sp
	.text
	.global movgfq
movgfq:
	movgfq sp,fr0
	.text
	.global movfgq
movfgq:
	movfgq fr0,sp
	.text
	.global cmovgf
cmovgf:
	cmovgf sp,fr0,cc0,0
	.text
	.global cmovfg
cmovfg:
	cmovfg fr0,sp,cc0,0
	.text
	.global cmovgfd
cmovgfd:
	cmovgfd sp,fr0,cc0,0
	.text
	.global cmovfgd
cmovfgd:
	cmovfgd fr0,sp,cc0,0
	.text
	.global movgs
movgs:
	movgs sp,psr
	.text
	.global movsg
movsg:
	movsg psr,sp
	.text
	.global bno
bno:
	bno
	.text
	.global bra
bra:
	bra footext
	.text
	.global beq
beq:
	beq icc0,0,footext
	.text
	.global bne
bne:
	bne icc0,0,footext
	.text
	.global ble
ble:
	ble icc0,0,footext
	.text
	.global bgt
bgt:
	bgt icc0,0,footext
	.text
	.global blt
blt:
	blt icc0,0,footext
	.text
	.global bge
bge:
	bge icc0,0,footext
	.text
	.global bls
bls:
	bls icc0,0,footext
	.text
	.global bhi
bhi:
	bhi icc0,0,footext
	.text
	.global bc
bc:
	bc icc0,0,footext
	.text
	.global bnc
bnc:
	bnc icc0,0,footext
	.text
	.global bn
bn:
	bn icc0,0,footext
	.text
	.global bp
bp:
	bp icc0,0,footext
	.text
	.global bv
bv:
	bv icc0,0,footext
	.text
	.global bnv
bnv:
	bnv icc0,0,footext
	.text
	.global fbno
fbno:
	fbno
	.text
	.global fbra
fbra:
	fbra footext
	.text
	.global fbne
fbne:
	fbne fcc0,0,footext
	.text
	.global fbeq
fbeq:
	fbeq fcc0,0,footext
	.text
	.global fblg
fblg:
	fblg fcc0,0,footext
	.text
	.global fbue
fbue:
	fbue fcc0,0,footext
	.text
	.global fbul
fbul:
	fbul fcc0,0,footext
	.text
	.global fbge
fbge:
	fbge fcc0,0,footext
	.text
	.global fblt
fblt:
	fblt fcc0,0,footext
	.text
	.global fbuge
fbuge:
	fbuge fcc0,0,footext
	.text
	.global fbug
fbug:
	fbug fcc0,0,footext
	.text
	.global fble
fble:
	fble fcc0,0,footext
	.text
	.global fbgt
fbgt:
	fbgt fcc0,0,footext
	.text
	.global fbule
fbule:
	fbule fcc0,0,footext
	.text
	.global fbu
fbu:
	fbu fcc0,0,footext
	.text
	.global fbo
fbo:
	fbo fcc0,0,footext
	.text
	.global bctrlr
bctrlr:
	bctrlr 0,0
	.text
	.global bnolr
bnolr:
	bnolr
	.text
	.global bralr
bralr:
	bralr
	.text
	.global beqlr
beqlr:
	beqlr icc0,0
	.text
	.global bnelr
bnelr:
	bnelr icc0,0
	.text
	.global blelr
blelr:
	blelr icc0,0
	.text
	.global bgtlr
bgtlr:
	bgtlr icc0,0
	.text
	.global bltlr
bltlr:
	bltlr icc0,0
	.text
	.global bgelr
bgelr:
	bgelr icc0,0
	.text
	.global blslr
blslr:
	blslr icc0,0
	.text
	.global bhilr
bhilr:
	bhilr icc0,0
	.text
	.global bclr
bclr:
	bclr icc0,0
	.text
	.global bnclr
bnclr:
	bnclr icc0,0
	.text
	.global bnlr
bnlr:
	bnlr icc0,0
	.text
	.global bplr
bplr:
	bplr icc0,0
	.text
	.global bvlr
bvlr:
	bvlr icc0,0
	.text
	.global bnvlr
bnvlr:
	bnvlr icc0,0
	.text
	.global fbnolr
fbnolr:
	fbnolr
	.text
	.global fbralr
fbralr:
	fbralr
	.text
	.global fbeqlr
fbeqlr:
	fbeqlr fcc0,0
	.text
	.global fbnelr
fbnelr:
	fbnelr fcc0,0
	.text
	.global fblglr
fblglr:
	fblglr fcc0,0
	.text
	.global fbuelr
fbuelr:
	fbuelr fcc0,0
	.text
	.global fbullr
fbullr:
	fbullr fcc0,0
	.text
	.global fbgelr
fbgelr:
	fbgelr fcc0,0
	.text
	.global fbltlr
fbltlr:
	fbltlr fcc0,0
	.text
	.global fbugelr
fbugelr:
	fbugelr fcc0,0
	.text
	.global fbuglr
fbuglr:
	fbuglr fcc0,0
	.text
	.global fblelr
fblelr:
	fblelr fcc0,0
	.text
	.global fbgtlr
fbgtlr:
	fbgtlr fcc0,0
	.text
	.global fbulelr
fbulelr:
	fbulelr fcc0,0
	.text
	.global fbulr
fbulr:
	fbulr fcc0,0
	.text
	.global fbolr
fbolr:
	fbolr fcc0,0
	.text
	.global bcnolr
bcnolr:
	bcnolr
	.text
	.global bcralr
bcralr:
	bcralr 0
	.text
	.global bceqlr
bceqlr:
	bceqlr icc0,0,0
	.text
	.global bcnelr
bcnelr:
	bcnelr icc0,0,0
	.text
	.global bclelr
bclelr:
	bclelr icc0,0,0
	.text
	.global bcgtlr
bcgtlr:
	bcgtlr icc0,0,0
	.text
	.global bcltlr
bcltlr:
	bcltlr icc0,0,0
	.text
	.global bcgelr
bcgelr:
	bcgelr icc0,0,0
	.text
	.global bclslr
bclslr:
	bclslr icc0,0,0
	.text
	.global bchilr
bchilr:
	bchilr icc0,0,0
	.text
	.global bcclr
bcclr:
	bcclr icc0,0,0
	.text
	.global bcnclr
bcnclr:
	bcnclr icc0,0,0
	.text
	.global bcnlr
bcnlr:
	bcnlr icc0,0,0
	.text
	.global bcplr
bcplr:
	bcplr icc0,0,0
	.text
	.global bcvlr
bcvlr:
	bcvlr icc0,0,0
	.text
	.global bcnvlr
bcnvlr:
	bcnvlr icc0,0,0
	.text
	.global fcbnolr
fcbnolr:
	fcbnolr
	.text
	.global fcbralr
fcbralr:
	fcbralr 0
	.text
	.global fcbeqlr
fcbeqlr:
	fcbeqlr fcc0,0,0
	.text
	.global fcbnelr
fcbnelr:
	fcbnelr fcc0,0,0
	.text
	.global fcblglr
fcblglr:
	fcblglr fcc0,0,0
	.text
	.global fcbuelr
fcbuelr:
	fcbuelr fcc0,0,0
	.text
	.global fcbullr
fcbullr:
	fcbullr fcc0,0,0
	.text
	.global fcbgelr
fcbgelr:
	fcbgelr fcc0,0,0
	.text
	.global fcbltlr
fcbltlr:
	fcbltlr fcc0,0,0
	.text
	.global fcbugelr
fcbugelr:
	fcbugelr fcc0,0,0
	.text
	.global fcbuglr
fcbuglr:
	fcbuglr fcc0,0,0
	.text
	.global fcblelr
fcblelr:
	fcblelr fcc0,0,0
	.text
	.global fcbgtlr
fcbgtlr:
	fcbgtlr fcc0,0,0
	.text
	.global fcbulelr
fcbulelr:
	fcbulelr fcc0,0,0
	.text
	.global fcbulr
fcbulr:
	fcbulr fcc0,0,0
	.text
	.global fcbolr
fcbolr:
	fcbolr fcc0,0,0
	.text
	.global jmpl
jmpl:
	jmpl @(sp,sp)
	.text
	.global jmpil
jmpil:
	jmpil @(sp,0)
	.text
	.global call
call:
	call footext
	.text
	.global rett
rett:
	.text
	.global rei
rei:
	rei 0
	.text
	.global tno
tno:
	tno
	.text
	.global tra
tra:
	tra sp,sp
	.text
	.global teq
teq:
	teq icc0,sp,sp
	.text
	.global tne
tne:
	tne icc0,sp,sp
	.text
	.global tle
tle:
	tle icc0,sp,sp
	.text
	.global tgt
tgt:
	tgt icc0,sp,sp
	.text
	.global tlt
tlt:
	tlt icc0,sp,sp
	.text
	.global tge
tge:
	tge icc0,sp,sp
	.text
	.global tls
tls:
	tls icc0,sp,sp
	.text
	.global thi
thi:
	thi icc0,sp,sp
	.text
	.global tc
tc:
	tc icc0,sp,sp
	.text
	.global tnc
tnc:
	tnc icc0,sp,sp
	.text
	.global tn
tn:
	tn icc0,sp,sp
	.text
	.global tp
tp:
	tp icc0,sp,sp
	.text
	.global tv
tv:
	tv icc0,sp,sp
	.text
	.global tnv
tnv:
	tnv icc0,sp,sp
	.text
	.global ftno
ftno:
	ftno
	.text
	.global ftra
ftra:
	ftra sp,sp
	.text
	.global ftne
ftne:
	ftne fcc0,sp,sp
	.text
	.global fteq
fteq:
	fteq fcc0,sp,sp
	.text
	.global ftlg
ftlg:
	ftlg fcc0,sp,sp
	.text
	.global ftue
ftue:
	ftue fcc0,sp,sp
	.text
	.global ftul
ftul:
	ftul fcc0,sp,sp
	.text
	.global ftge
ftge:
	ftge fcc0,sp,sp
	.text
	.global ftlt
ftlt:
	ftlt fcc0,sp,sp
	.text
	.global ftuge
ftuge:
	ftuge fcc0,sp,sp
	.text
	.global ftug
ftug:
	ftug fcc0,sp,sp
	.text
	.global ftle
ftle:
	ftle fcc0,sp,sp
	.text
	.global ftgt
ftgt:
	ftgt fcc0,sp,sp
	.text
	.global ftule
ftule:
	ftule fcc0,sp,sp
	.text
	.global ftu
ftu:
	ftu fcc0,sp,sp
	.text
	.global fto
fto:
	fto fcc0,sp,sp
	.text
	.global tino
tino:
	tino
	.text
	.global tira
tira:
	tira sp,0
	.text
	.global tieq
tieq:
	tieq icc0,sp,0
	.text
	.global tine
tine:
	tine icc0,sp,0
	.text
	.global tile
tile:
	tile icc0,sp,0
	.text
	.global tigt
tigt:
	tigt icc0,sp,0
	.text
	.global tilt
tilt:
	tilt icc0,sp,0
	.text
	.global tige
tige:
	tige icc0,sp,0
	.text
	.global tils
tils:
	tils icc0,sp,0
	.text
	.global tihi
tihi:
	tihi icc0,sp,0
	.text
	.global tic
tic:
	tic icc0,sp,0
	.text
	.global tinc
tinc:
	tinc icc0,sp,0
	.text
	.global tin
tin:
	tin icc0,sp,0
	.text
	.global tip
tip:
	tip icc0,sp,0
	.text
	.global tiv
tiv:
	tiv icc0,sp,0
	.text
	.global tinv
tinv:
	tinv icc0,sp,0
	.text
	.global ftino
ftino:
	ftino
	.text
	.global ftira
ftira:
	ftira sp,0
	.text
	.global ftine
ftine:
	ftine fcc0,sp,0
	.text
	.global ftieq
ftieq:
	ftieq fcc0,sp,0
	.text
	.global ftilg
ftilg:
	ftilg fcc0,sp,0
	.text
	.global ftiue
ftiue:
	ftiue fcc0,sp,0
	.text
	.global ftiul
ftiul:
	ftiul fcc0,sp,0
	.text
	.global ftige
ftige:
	ftige fcc0,sp,0
	.text
	.global ftilt
ftilt:
	ftilt fcc0,sp,0
	.text
	.global ftiuge
ftiuge:
	ftiuge fcc0,sp,0
	.text
	.global ftiug
ftiug:
	ftiug fcc0,sp,0
	.text
	.global ftile
ftile:
	ftile fcc0,sp,0
	.text
	.global ftigt
ftigt:
	ftigt fcc0,sp,0
	.text
	.global ftiule
ftiule:
	ftiule fcc0,sp,0
	.text
	.global ftiu
ftiu:
	ftiu fcc0,sp,0
	.text
	.global ftio
ftio:
	ftio fcc0,sp,0
	.text
	.global break
break:
	.text
	.global mtrap
mtrap:
	.text
	.global andcr
andcr:
	andcr cc0,cc0,cc0
	.text
	.global orcr
orcr:
	orcr cc0,cc0,cc0
	.text
	.global xorcr
xorcr:
	xorcr cc0,cc0,cc0
	.text
	.global nandcr
nandcr:
	nandcr cc0,cc0,cc0
	.text
	.global norcr
norcr:
	norcr cc0,cc0,cc0
	.text
	.global andncr
andncr:
	andncr cc0,cc0,cc0
	.text
	.global orncr
orncr:
	orncr cc0,cc0,cc0
	.text
	.global nandncr
nandncr:
	nandncr cc0,cc0,cc0
	.text
	.global norncr
norncr:
	norncr cc0,cc0,cc0
	.text
	.global notcr
notcr:
	notcr cc0,cc0
	.text
	.global ckno
ckno:
	ckno cc7
	.text
	.global ckra
ckra:
	ckra cc7
	.text
	.global ckeq
ckeq:
	ckeq icc0,cc7
	.text
	.global ckne
ckne:
	ckne icc0,cc7
	.text
	.global ckle
ckle:
	ckle icc0,cc7
	.text
	.global ckgt
ckgt:
	ckgt icc0,cc7
	.text
	.global cklt
cklt:
	cklt icc0,cc7
	.text
	.global ckge
ckge:
	ckge icc0,cc7
	.text
	.global ckls
ckls:
	ckls icc0,cc7
	.text
	.global ckhi
ckhi:
	ckhi icc0,cc7
	.text
	.global ckc
ckc:
	ckc icc0,cc7
	.text
	.global cknc
cknc:
	cknc icc0,cc7
	.text
	.global ckn
ckn:
	ckn icc0,cc7
	.text
	.global ckp
ckp:
	ckp icc0,cc7
	.text
	.global ckv
ckv:
	ckv icc0,cc7
	.text
	.global cknv
cknv:
	cknv icc0,cc7
	.text
	.global fckno
fckno:
	fckno cc0
	.text
	.global fckra
fckra:
	fckra cc0
	.text
	.global fckne
fckne:
	fckne fcc0,cc0
	.text
	.global fckeq
fckeq:
	fckeq fcc0,cc0
	.text
	.global fcklg
fcklg:
	fcklg fcc0,cc0
	.text
	.global fckue
fckue:
	fckue fcc0,cc0
	.text
	.global fckul
fckul:
	fckul fcc0,cc0
	.text
	.global fckge
fckge:
	fckge fcc0,cc0
	.text
	.global fcklt
fcklt:
	fcklt fcc0,cc0
	.text
	.global fckuge
fckuge:
	fckuge fcc0,cc0
	.text
	.global fckug
fckug:
	fckug fcc0,cc0
	.text
	.global fckle
fckle:
	fckle fcc0,cc0
	.text
	.global fckgt
fckgt:
	fckgt fcc0,cc0
	.text
	.global fckule
fckule:
	fckule fcc0,cc0
	.text
	.global fcku
fcku:
	fcku fcc0,cc0
	.text
	.global fcko
fcko:
	fcko fcc0,cc0
	.text
	.global cckno
cckno:
	cckno cc7,cc3,0
	.text
	.global cckra
cckra:
	cckra cc7,cc3,0
	.text
	.global cckeq
cckeq:
	cckeq icc0,cc7,cc3,0
	.text
	.global cckne
cckne:
	cckne icc0,cc7,cc3,0
	.text
	.global cckle
cckle:
	cckle icc0,cc7,cc3,0
	.text
	.global cckgt
cckgt:
	cckgt icc0,cc7,cc3,0
	.text
	.global ccklt
ccklt:
	ccklt icc0,cc7,cc3,0
	.text
	.global cckge
cckge:
	cckge icc0,cc7,cc3,0
	.text
	.global cckls
cckls:
	cckls icc0,cc7,cc3,0
	.text
	.global cckhi
cckhi:
	cckhi icc0,cc7,cc3,0
	.text
	.global cckc
cckc:
	cckc icc0,cc7,cc3,0
	.text
	.global ccknc
ccknc:
	ccknc icc0,cc7,cc3,0
	.text
	.global cckn
cckn:
	cckn icc0,cc7,cc3,0
	.text
	.global cckp
cckp:
	cckp icc0,cc7,cc3,0
	.text
	.global cckv
cckv:
	cckv icc0,cc7,cc3,0
	.text
	.global ccknv
ccknv:
	ccknv icc0,cc7,cc3,0
	.text
	.global cfckno
cfckno:
	cfckno cc0,cc0,0
	.text
	.global cfckra
cfckra:
	cfckra cc0,cc0,0
	.text
	.global cfckne
cfckne:
	cfckne fcc0,cc0,cc0,0
	.text
	.global cfckeq
cfckeq:
	cfckeq fcc0,cc0,cc0,0
	.text
	.global cfcklg
cfcklg:
	cfcklg fcc0,cc0,cc0,0
	.text
	.global cfckue
cfckue:
	cfckue fcc0,cc0,cc0,0
	.text
	.global cfckul
cfckul:
	cfckul fcc0,cc0,cc0,0
	.text
	.global cfckge
cfckge:
	cfckge fcc0,cc0,cc0,0
	.text
	.global cfcklt
cfcklt:
	cfcklt fcc0,cc0,cc0,0
	.text
	.global cfckuge
cfckuge:
	cfckuge fcc0,cc0,cc0,0
	.text
	.global cfckug
cfckug:
	cfckug fcc0,cc0,cc0,0
	.text
	.global cfckle
cfckle:
	cfckle fcc0,cc0,cc0,0
	.text
	.global cfckgt
cfckgt:
	cfckgt fcc0,cc0,cc0,0
	.text
	.global cfckule
cfckule:
	cfckule fcc0,cc0,cc0,0
	.text
	.global cfcku
cfcku:
	cfcku fcc0,cc0,cc0,0
	.text
	.global cfcko
cfcko:
	cfcko fcc0,cc0,cc0,0
	.text
	.global cjmpl
cjmpl:
	cjmpl @(sp,sp),cc0,0
	.text
	.global ici
ici:
	ici @(sp,sp)
	.text
	.global dci
dci:
	dci @(sp,sp)
	.text
	.global dcf
dcf:
	dcf @(sp,sp)
	.text
	.global witlb
witlb:
	witlb sp,@(sp,sp)
	.text
	.global wdtlb
wdtlb:
	wdtlb sp,@(sp,sp)
	.text
	.global itlbi
itlbi:
	itlbi @(sp,sp)
	.text
	.global dtlbi
dtlbi:
	dtlbi @(sp,sp)
	.text
	.global icpl
icpl:
	icpl sp,sp,0
	.text
	.global dcpl
dcpl:
	dcpl sp,sp,0
	.text
	.global icul
icul:
	icul sp
	.text
	.global dcul
dcul:
	dcul sp
	.text
	.global bar
bar:
	.text
	.global membar
membar:
	.text
	.global clrgr
clrgr:
	clrgr sp
	.text
	.global clrfr
clrfr:
	clrfr fr0
	.text
	.global clrga
clrga:
	.text
	.global clrfa
clrfa:
	.text
	.global commitgr
commitgr:
	commitgr sp
	.text
	.global commitfr
commitfr:
	commitfr fr0
	.text
	.global commitgra
commitgra:
	.text
	.global commitfra
commitfra:
	.text
	.global fitos
fitos:
	fitos fr0,fr0
	.text
	.global fstoi
fstoi:
	fstoi fr0,fr0
	.text
	.global fitod
fitod:
	fitod fr0,fr0
	.text
	.global fdtoi
fdtoi:
	fdtoi fr0,fr0
	.text
	.global fmovs
fmovs:
	fmovs fr0,fr0
	.text
	.global fmovd
fmovd:
	fmovd fr0,fr0
	.text
	.global fnegs
fnegs:
	fnegs fr0,fr0
	.text
	.global fnegd
fnegd:
	fnegd fr0,fr0
	.text
	.global fabss
fabss:
	fabss fr0,fr0
	.text
	.global fabsd
fabsd:
	fabsd fr0,fr0
	.text
	.global fsqrts
fsqrts:
	fsqrts fr0,fr0
	.text
	.global fsqrtd
fsqrtd:
	fsqrtd fr0,fr0
	.text
	.global fadds
fadds:
	fadds fr0,fr0,fr0
	.text
	.global fsubs
fsubs:
	fsubs fr0,fr0,fr0
	.text
	.global fmuls
fmuls:
	fmuls fr0,fr0,fr0
	.text
	.global fdivs
fdivs:
	fdivs fr0,fr0,fr0
	.text
	.global faddd
faddd:
	faddd fr0,fr0,fr0
	.text
	.global fsubd
fsubd:
	fsubd fr0,fr0,fr0
	.text
	.global fmuld
fmuld:
	fmuld fr0,fr0,fr0
	.text
	.global fdivd
fdivd:
	fdivd fr0,fr0,fr0
	.text
	.global fcmps
fcmps:
	fcmps fr0,fr0,fcc0
	.text
	.global fcmpd
fcmpd:
	fcmpd fr0,fr0,fcc0
	.text
	.global fmadds
fmadds:
	fmadds fr0,fr0,fr0
	.text
	.global fmsubs
fmsubs:
	fmsubs fr0,fr0,fr0
	.text
	.global fmaddd
fmaddd:
	fmaddd fr0,fr0,fr0
	.text
	.global fmsubd
fmsubd:
	fmsubd fr0,fr0,fr0
	.text
	.global mand
mand:
	mand fr0,fr0,fr0
	.text
	.global mor
mor:
	mor fr0,fr0,fr0
	.text
	.global mxor
mxor:
	mxor fr0,fr0,fr0
	.text
	.global mnot
mnot:
	mnot fr0,fr0
	.text
	.global mrotli
mrotli:
	mrotli fr0,0,fr0
	.text
	.global mrotri
mrotri:
	mrotri fr0,0,fr0
	.text
	.global mwcut
mwcut:
	mwcut fr0,fr0,fr0
	.text
	.global mwcuti
mwcuti:
	mwcuti fr0,0,fr0