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
|
/* $OpenBSD: subr.S,v 1.3 2004/08/01 17:18:05 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1993-1992 Carnegie Mellon University
* Copyright (c) 1991 OMRON Corporation
* Copyright (c) 1996 Nivas Madhur
* Copyright (c) 1998 Steve Murphree, Jr.
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON AND OMRON ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON AND OMRON DISCLAIM ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include "assym.h"
#include <sys/errno.h>
#include <machine/asm.h>
#include <machine/board.h>
#include <machine/cpu_number.h>
#include <machine/trap.h>
#ifdef M88100
/*
* DO_LOAD_ADDRESS
*
* unsigned int do_load_word(address, supervisor_mode)
* vaddr_t address; \\ in r2
* boolean_t supervisor_mode; \\ in r3
*
* Return the word at ADDRESS (from user space if SUPERVISOR_MODE is zero,
* supervisor space if non-zero).
*
*/
ENTRY(do_load_word) /* do_load_word(address, supervisor) */
bcnd ne0,r3,1f
#ifdef ERRATA__XXX_USR
NOP
ld.usr r2,r2,r0
NOP
NOP
NOP
#else
ld.usr r2,r2,r0
#endif
br 2f
1: ld r2,r2,r0
2: jmp r1
ENTRY(do_load_half) /* do_load_half(address, supervisor) */
bcnd ne0,r3,1f
#ifdef ERRATA__XXX_USR
NOP
ld.h.usr r2,r2,r0
NOP
NOP
NOP
#else
ld.h.usr r2,r2,r0
#endif
br 2f
1: ld.h r2,r2,r0
2: jmp r1
ENTRY(do_load_byte) /* do_load_byte(address, supervisor) */
bcnd ne0,r3,1f
#ifdef ERRATA__XXX_USR
NOP
ld.b.usr r2,r2,r0
NOP
NOP
NOP
#else
ld.b.usr r2,r2,r0
#endif
br 2f
1: ld.b r2,r2,r0
2: jmp r1
ENTRY(do_store_word) /* do_store_word(address, data, supervisor) */
bcnd ne0,r4,1f
#ifdef ERRATA__XXX_USR
NOP
st.usr r3,r2,r0
NOP
NOP
NOP
#else
st.usr r3,r2,r0
#endif
br 2f
1: st r3,r2,r0
2: jmp r1
ENTRY(do_store_half) /* do_store_half(address, data, supervisor) */
bcnd ne0,r4,1f
#ifdef ERRATA__XXX_USR
NOP
st.h.usr r3,r2,r0
NOP
NOP
NOP
#else
st.h.usr r3,r2,r0
#endif
br 2f
1: st.h r3,r2,r0
2: jmp r1
ENTRY(do_store_byte) /* do_store_byte(address, data, supervisor) */
bcnd ne0,r4,1f
#ifdef ERRATA__XXX_USR
NOP
st.b.usr r3,r2,r0
NOP
NOP
NOP
#else
st.b.usr r3,r2,r0
#endif
br 2f
1: st.b r3,r2,r0
2: jmp r1
ENTRY(do_xmem_word) /* do_xmem_word(address, data, supervisor) */
bcnd ne0,r4,1f
#ifdef ERRATA__XXX_USR
NOP
xmem.usr r3,r2,r0
NOP
NOP
NOP
#else
xmem.usr r3,r2,r0
#endif
br 2f
1: xmem r3,r2,r0
2: jmp r1
ENTRY(do_xmem_byte) /* do_xmem_byte(address, data, supervisor) */
bcnd ne0,r4,1f
#ifdef ERRATA__XXX_USR
NOP
xmem.bu.usr r3,r2,r0
NOP
NOP
NOP
#else
xmem.bu.usr r3,r2,r0
#endif
br 2f
1: xmem.bu r3,r2,r0
2: jmp r1
#endif /* M88100 */
/*
* Copy specified amount of data from user space into the kernel
* copyin(from, to, len)
* r2 == from (user source address)
* r3 == to (kernel destination address)
* r4 == length
* (r1=return addr)
*/
#define SRC r2
#define DEST r3
#define LEN r4
ENTRY(copyin)
/* set up fault handler */
or.u r5, r0, hi16(_C_LABEL(curpcb))
ld r6, r5, lo16(_C_LABEL(curpcb))
or.u r5, r0, hi16(_ASM_LABEL(Lciflt))
or r5, r5, lo16(_ASM_LABEL(Lciflt))
st r5, r6, PCB_ONFAULT /* pcb_onfault = Lciflt */
#if 0
bcnd ne0, LEN, 1f /* XXX optimize len = 0 case */
or r2, r0, 0
br _ASM_LABEL(Lcidone)
1: bcnd lt0, LEN, _ASM_LABEL(Lciflt) /* EFAULT if len < 0 */
#endif
/* If it's a small length (less than 8), then do byte-by-byte */
cmp r9, LEN, 8
bb1 lt, r9, _ASM_LABEL(copyin_byte_only)
/* If they're not aligned similarly, use byte only... */
xor r9, SRC, DEST
mask r8, r9, 0x3
bcnd ne0, r8, _ASM_LABEL(copyin_byte_only)
/*
* At this point, we don't know if they're word aligned or not,
* but we know that what needs to be done to one to align
* it is what's needed for the other.
*/
bb1 0, SRC, _ASM_LABEL(copyin_left_align_to_halfword)
ASLOCAL(copyin_left_aligned_to_halfword)
bb1 1, SRC, _ASM_LABEL(copyin_left_align_to_word)
ASLOCAL(copyin_left_aligned_to_word)
bb1 0, LEN, _ASM_LABEL(copyin_right_align_to_halfword)
ASLOCAL(copyin_right_aligned_to_halfword)
bb1 1, LEN, _ASM_LABEL(copyin_right_align_to_word)
ASLOCAL(copyin_right_aligned_to_word)
/* At this point, both SRC and DEST are aligned to a word */
/* boundry, and LEN is an even multiple of 4. */
bb1.n 2, LEN, _ASM_LABEL(copyin_right_align_to_doubleword)
or r7, r0, 4
ASLOCAL(copyin_right_aligned_to_doubleword)
#ifdef ERRATA__XXX_USR
NOP
ld.usr r5, SRC, r0
NOP
NOP
NOP
ld.usr r6, SRC, r7
NOP
NOP
NOP
#else
ld.usr r5, SRC, r0
ld.usr r6, SRC, r7
#endif
subu LEN, LEN, 8
st r5, DEST, r0
addu SRC, SRC, 8
st r6, DEST, r7
bcnd.n ne0, LEN, _ASM_LABEL(copyin_right_aligned_to_doubleword)
addu DEST, DEST, 8
br.n _ASM_LABEL(Lcidone)
or r2, r0, r0 /* successful return */
/***************************************************/
ASLOCAL(copyin_left_align_to_halfword)
#ifdef ERRATA__XXX_USR
NOP
ld.b.usr r5, SRC, r0
NOP
NOP
NOP
#else
ld.b.usr r5, SRC, r0
#endif
subu LEN, LEN, 1
st.b r5, DEST, r0
addu SRC, SRC, 1
br.n _ASM_LABEL(copyin_left_aligned_to_halfword)
addu DEST, DEST, 1
ASLOCAL(copyin_left_align_to_word)
#ifdef ERRATA__XXX_USR
NOP
ld.h.usr r5, SRC, r0
NOP
NOP
NOP
#else
ld.h.usr r5, SRC, r0
#endif
subu LEN, LEN, 2
st.h r5, DEST, r0
addu SRC, SRC, 2
br.n _ASM_LABEL(copyin_left_aligned_to_word)
addu DEST, DEST, 2
ASLOCAL(copyin_right_align_to_halfword)
subu LEN, LEN, 1
#ifdef ERRATA__XXX_USR
NOP
ld.b.usr r5, SRC, LEN
NOP
NOP
NOP
#else
ld.b.usr r5, SRC, LEN
#endif
br.n _ASM_LABEL(copyin_right_aligned_to_halfword)
st.b r5, DEST, LEN
ASLOCAL(copyin_right_align_to_word)
subu LEN, LEN, 2
#ifdef ERRATA__XXX_USR
NOP
ld.h.usr r5, SRC, LEN
NOP
NOP
NOP
#else
ld.h.usr r5, SRC, LEN
#endif
br.n _ASM_LABEL(copyin_right_aligned_to_word)
st.h r5, DEST, LEN
ASLOCAL(copyin_right_align_to_doubleword)
subu LEN, LEN, 4
#ifdef ERRATA__XXX_USR
NOP
ld.usr r5, SRC, LEN
NOP
NOP
NOP
#else
ld.usr r5, SRC, LEN
#endif
bcnd.n ne0, LEN, _ASM_LABEL(copyin_right_aligned_to_doubleword)
st r5, DEST, LEN
br.n _ASM_LABEL(Lcidone)
or r2, r0, r0 /* successful return */
ASLOCAL(copyin_byte_only)
bcnd eq0, LEN, 2f
1:
subu LEN, LEN, 1
#ifdef ERRATA__XXX_USR
NOP
ld.b.usr r5, SRC, LEN
NOP
NOP
NOP
#else
ld.b.usr r5, SRC, LEN
#endif
bcnd.n ne0, LEN, 1b
st.b r5, DEST, LEN
2:
br.n _ASM_LABEL(Lcidone)
or r2, r0, r0 /* successful return */
ASLOCAL(Lcidone)
or.u r5,r0,hi16(_C_LABEL(curpcb))
ld r6,r5,lo16(_C_LABEL(curpcb))
jmp.n r1
st r0,r6,PCB_ONFAULT
ASLOCAL(Lciflt)
br.n _ASM_LABEL(Lcidone)
or r2, r0, EFAULT /* return fault */
#undef SRC
#undef DEST
#undef LEN
/*######################################################################*/
/*######################################################################*/
/*
* Copy a null terminated string from the user space to the kernel
* address space.
*
* copyinstr(from, to, maxlen, &lencopied)
* r2 == from
* r3 == to
* r4 == maxlen
* r5 == len actually transferred (includes the terminating NULL!!!)
* r6 & r7 - used as temporaries
*/
#define SRC r2
#define DEST r3
#define CNT r4
#define LEN r5
ENTRY(copyinstr)
/* setup fault handler */
or.u r6, r0, hi16(_C_LABEL(curpcb))
ld r7, r6, lo16(_C_LABEL(curpcb))
or.u r6, r0, hi16(_ASM_LABEL(Lcisflt))
or r6, r6, lo16(_ASM_LABEL(Lcisflt))
st r6, r7, PCB_ONFAULT
or r6, r0, 0
bcnd lt0, CNT, _ASM_LABEL(Lcisflt)
bcnd eq0, CNT, _ASM_LABEL(Lcistoolong)
1:
#ifdef ERRATA__XXX_USR
NOP
ld.bu.usr r7, SRC, r6
NOP
NOP
NOP
#else
ld.bu.usr r7, SRC, r6
#endif
st.b r7, DEST, r6
bcnd.n eq0, r7, 2f /* all done */
addu r6, r6, 1
cmp r7, r6, CNT
bb1 lt, r7, 1b
ASLOCAL(Lcistoolong)
or r2, r0, ENAMETOOLONG /* overflow */
ASLOCAL(Lcisnull)
bcnd eq0,r6, _ASM_LABEL(Lcisdone) /* do not attempt to clear last byte */
/* if we did not write to the string */
subu r6, r6, 1
st.b r0, DEST, r6 /* clear last byte */
br.n _ASM_LABEL(Lcisdone)
addu r6, r6, 1
2: /* all done */
or r2, r0, 0
ASLOCAL(Lcisdone)
bcnd eq0, LEN, 3f
st r6, r0, LEN
3:
or.u r5,r0,hi16(_C_LABEL(curpcb))
ld r6,r5,lo16(_C_LABEL(curpcb))
jmp.n r1
st r0,r6,PCB_ONFAULT /* clear the handler */
ASLOCAL(Lcisflt)
br.n _ASM_LABEL(Lcisnull)
or r2, r0, EFAULT /* return fault */
#undef SRC
#undef DEST
#undef CNT
#undef LEN
/*
* Copy specified amount of data from kernel to the user space
* Copyout(from, to, len)
* r2 == from (kernel source address)
* r3 == to (user destination address)
* r4 == length
*/
#define SRC r2
#define DEST r3
#define LEN r4
ENTRY(copyout)
/* setup fault handler */
or.u r5, r0, hi16(_C_LABEL(curpcb))
ld r6, r5, lo16(_C_LABEL(curpcb))
or.u r5, r0, hi16(_ASM_LABEL(Lcoflt))
or r5, r5, lo16(_ASM_LABEL(Lcoflt))
st r5, r6, PCB_ONFAULT /* pcb_onfault = Lcoflt */
#if 0
bcnd ne0, LEN, 1f /* XXX optimize len = 0 case */
or r2, r0, 0
br _ASM_LABEL(Lcodone)
1: bcnd lt0, LEN, _ASM_LABEL(Lcoflt) /* EFAULT if len < 0 */
#endif
/* If it's a small length (less than 8), then do byte-by-byte */
cmp r9, LEN, 8
bb1 lt, r9, _ASM_LABEL(copyout_byte_only)
/* If they're not aligned similarly, use byte only... */
xor r9, SRC, DEST
mask r8, r9, 0x3
bcnd ne0, r8, _ASM_LABEL(copyout_byte_only)
/*
* At this point, we don't know if they're word aligned or not,
* but we know that what needs to be done to one to align
* it is what's needed for the other.
*/
bb1 0, SRC, _ASM_LABEL(copyout_left_align_to_halfword)
ASLOCAL(copyout_left_aligned_to_halfword)
bb1 1, SRC, _ASM_LABEL(copyout_left_align_to_word)
ASLOCAL(copyout_left_aligned_to_word)
bb1 0, LEN, _ASM_LABEL(copyout_right_align_to_halfword)
ASLOCAL(copyout_right_aligned_to_halfword)
bb1 1, LEN, _ASM_LABEL(copyout_right_align_to_word)
ASLOCAL(copyout_right_aligned_to_word)
/*
* At this point, both SRC and DEST are aligned to a word
* boundry, and LEN is an even multiple of 4.
*/
bb1.n 2, LEN, _ASM_LABEL(copyout_right_align_to_doubleword)
or r7, r0, 4
ASLOCAL(copyout_right_aligned_to_doubleword)
ld r5, SRC, r0
ld r6, SRC, r7
subu LEN, LEN, 8
#ifdef ERRATA__XXX_USR
NOP
st.usr r5, DEST, r0
NOP
NOP
NOP
#else
st.usr r5, DEST, r0
#endif
addu SRC, SRC, 8
#ifdef ERRATA__XXX_USR
NOP
st.usr r6, DEST, r7
NOP
NOP
NOP
#else
st.usr r6, DEST, r7
#endif
bcnd.n ne0, LEN, _ASM_LABEL(copyout_right_aligned_to_doubleword)
addu DEST, DEST, 8
or r2, r0, r0 /* successful return */
br _ASM_LABEL(Lcodone)
/***************************************************/
ASLOCAL(copyout_left_align_to_halfword)
ld.b r5, SRC, r0
subu LEN, LEN, 1
#ifdef ERRATA__XXX_USR
NOP
st.b.usr r5, DEST, r0
NOP
NOP
NOP
#else
st.b.usr r5, DEST, r0
#endif
addu SRC, SRC, 1
br.n _ASM_LABEL(copyout_left_aligned_to_halfword)
addu DEST, DEST, 1
ASLOCAL(copyout_left_align_to_word)
ld.h r5, SRC, r0
subu LEN, LEN, 2
#ifdef ERRATA__XXX_USR
NOP
st.h.usr r5, DEST, r0
NOP
NOP
NOP
#else
st.h.usr r5, DEST, r0
#endif
addu SRC, SRC, 2
br.n _ASM_LABEL(copyout_left_aligned_to_word)
addu DEST, DEST, 2
ASLOCAL(copyout_right_align_to_halfword)
subu LEN, LEN, 1
ld.b r5, SRC, LEN
#ifdef ERRATA__XXX_USR
NOP
st.b.usr r5, DEST, LEN
NOP
NOP
NOP
br _ASM_LABEL(copyout_right_aligned_to_halfword)
#else
br.n _ASM_LABEL(copyout_right_aligned_to_halfword)
st.b.usr r5, DEST, LEN
#endif
ASLOCAL(copyout_right_align_to_word)
subu LEN, LEN, 2
ld.h r5, SRC, LEN
#ifdef ERRATA__XXX_USR
NOP
st.h.usr r5, DEST, LEN
NOP
NOP
NOP
br _ASM_LABEL(copyout_right_aligned_to_word)
#else
br.n _ASM_LABEL(copyout_right_aligned_to_word)
st.h.usr r5, DEST, LEN
#endif
ASLOCAL(copyout_right_align_to_doubleword)
subu LEN, LEN, 4
ld r5, SRC, LEN
#ifdef ERRATA__XXX_USR
NOP
st.usr r5, DEST, LEN
NOP
NOP
NOP
bcnd ne0, LEN, _ASM_LABEL(copyout_right_aligned_to_doubleword)
#else
bcnd.n ne0, LEN, _ASM_LABEL(copyout_right_aligned_to_doubleword)
st.usr r5, DEST, LEN
#endif
br.n _ASM_LABEL(Lcodone)
or r2, r0, r0 /* successful return */
ASLOCAL(copyout_byte_only)
bcnd eq0, LEN, 2f
1:
subu LEN, LEN, 1
ld.b r5, SRC, LEN
#ifdef ERRATA__XXX_USR
NOP
st.b.usr r5, DEST, LEN
NOP
NOP
NOP
bcnd ne0, LEN, 1b
#else
bcnd.n ne0, LEN, 1b
st.b.usr r5, DEST, LEN
#endif
2:
br.n _ASM_LABEL(Lcodone)
or r2, r0, r0 /* successful return */
ASLOCAL(Lcodone)
or.u r5,r0,hi16(_C_LABEL(curpcb))
ld r6,r5,lo16(_C_LABEL(curpcb))
jmp.n r1
st r0,r6,PCB_ONFAULT /* clear the handler */
ASLOCAL(Lcoflt)
br.n _ASM_LABEL(Lcodone)
or r2, r0, EFAULT /* return fault */
#undef SRC
#undef DEST
#undef LEN
/*
* Copy a null terminated string from the kernel space to the user
* address space.
*
* copyoutstr(from, to, maxlen, &lencopied)
* r2 == from
* r3 == to
* r4 == maxlen that can be copied
* r5 == len actually copied (including the terminating NULL!!!)
*/
#define SRC r2
#define DEST r3
#define CNT r4
#define LEN r5
ENTRY(copyoutstr)
/* setup fault handler */
or.u r6, r0, hi16(_C_LABEL(curpcb))
ld r7, r6, lo16(_C_LABEL(curpcb))
or.u r6, r0, hi16(_ASM_LABEL(Lcosflt))
or r6, r6, lo16(_ASM_LABEL(Lcosflt))
st r6, r7, PCB_ONFAULT
bcnd lt0, CNT, _ASM_LABEL(Lcosflt)
bcnd eq0, CNT, _ASM_LABEL(Lcosdone)
or r6, r0, 0
1:
ld.bu r7, SRC, r6
#ifdef ERRATA__XXX_USR
NOP
st.b.usr r7, DEST, r6
NOP
NOP
NOP
#else
st.b.usr r7, DEST, r6
#endif
bcnd.n eq0, r7, 2f /* all done */
addu r6, r6, 1
cmp r7, r6, CNT
bb1 lt, r7, 1b
br.n _ASM_LABEL(Lcosdone)
or r2, r0, ENAMETOOLONG
2:
br.n _ASM_LABEL(Lcosdone)
or r2, r0, 0
ASLOCAL(Lcosflt)
br.n _ASM_LABEL(Lcosdone)
or r2, r0, EFAULT
ASLOCAL(Lcosdone)
bcnd eq0, LEN, 3f
st r6, r0, LEN
3: or.u r5,r0,hi16(_C_LABEL(curpcb))
ld r6,r5,lo16(_C_LABEL(curpcb))
jmp.n r1
st r0,r6,PCB_ONFAULT /* clear the handler */
#undef SRC
#undef DEST
#undef CNT
#undef LEN
/*######################################################################*/
/*
* kcopy(const void *src, void *dst, size_t len);
*
* Copy len bytes from src to dst, aborting if we encounter a page fault.
*/
ENTRY(kcopy)
or.u r5, r0, hi16(_C_LABEL(curpcb))
ld r6, r5, lo16(_C_LABEL(curpcb))
or.u r5, r0, hi16(_ASM_LABEL(kcopy_fault))
or r5, r5, lo16(_ASM_LABEL(kcopy_fault))
st r5, r6, PCB_ONFAULT /* pcb_onfault = kcopy_fault */
bcnd le0,r4,_ASM_LABEL(kcopy_out) /* nothing to do if <= 0 */
/*
* check position of source and destination data
*/
cmp r9,r2,r3 /* compare source address to destination */
bb1 eq,r9,_ASM_LABEL(kcopy_out) /* nothing to do if equal */
bb1 lo,r9,_ASM_LABEL(kcopy_reverse) /* reverse copy if src < dest */
/*
* source address is greater than destination address, copy forward
*/
cmp r9,r4,16 /* see if we have at least 16 bytes */
bb1 lt,r9,_ASM_LABEL(kf_byte_copy) /* copy bytes for small length */
/*
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
mask r7,r3,3 /* get 2 low order bits of destintation addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(kf_strat))
or r12,r12,lo16(_ASM_LABEL(kf_strat))
addu r6,r6,r7 /* compute final table offset for strategy */
ld r12,r12,r6 /* load the strategy routine */
jmp r12 /* branch to strategy routine */
/*
* Copy three bytes from src to destination then copy words
*/
ASLOCAL(kf_3byte_word_copy)
ld.bu r6,r2,0 /* load byte from source */
ld.bu r7,r2,1 /* load byte from source */
ld.bu r8,r2,2 /* load byte from source */
st.b r6,r3,0 /* store byte to destination */
st.b r7,r3,1 /* store byte to destination */
st.b r8,r3,2 /* store byte to destination */
addu r2,r2,3 /* increment source pointer */
addu r3,r3,3 /* increment destination pointer */
br.n _ASM_LABEL(kf_word_copy) /* copy full words */
subu r4,r4,3 /* decrement length */
/*
* Copy 1 halfword from src to destination then copy words
*/
ASLOCAL(kf_1half_word_copy)
ld.hu r6,r2,0 /* load half-word from source */
st.h r6,r3,0 /* store half-word to destination */
addu r2,r2,2 /* increment source pointer */
addu r3,r3,2 /* increment destination pointer */
br.n _ASM_LABEL(kf_word_copy) /* copy full words */
subu r4,r4,2 /* decrement remaining length */
/*
* Copy 1 byte from src to destination then copy words
*/
ASLOCAL(kf_1byte_word_copy)
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
subu r4,r4,1 /* decrement remaining length */
/* fall through to word copy */
/*
* Copy as many full words as possible, 4 words per loop
*/
ASLOCAL(kf_word_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(kf_byte_copy) /* not enough left, copy bytes */
ld r6,r2,0 /* load first word */
ld r7,r2,4 /* load second word */
ld r8,r2,8 /* load third word */
ld r9,r2,12 /* load fourth word */
st r6,r3,0 /* store first word */
st r7,r3,4 /* store second word */
st r8,r3,8 /* store third word */
st r9,r3,12 /* store fourth word */
addu r2,r2,16 /* increment source pointer */
addu r3,r3,16 /* increment destination pointer */
br.n _ASM_LABEL(kf_word_copy) /* copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(kf_1byte_half_copy)
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
subu r4,r4,1 /* decrement remaining length */
/* fall through to half copy */
ASLOCAL(kf_half_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(kf_byte_copy) /* not enough left, copy bytes */
ld.hu r6,r2,0 /* load first half-word */
ld.hu r7,r2,2 /* load second half-word */
ld.hu r8,r2,4 /* load third half-word */
ld.hu r9,r2,6 /* load fourth half-word */
ld.hu r10,r2,8 /* load fifth half-word */
ld.hu r11,r2,10 /* load sixth half-word */
ld.hu r12,r2,12 /* load seventh half-word */
ld.hu r13,r2,14 /* load eighth half-word */
st.h r6,r3,0 /* store first half-word */
st.h r7,r3,2 /* store second half-word */
st.h r8,r3,4 /* store third half-word */
st.h r9,r3,6 /* store fourth half-word */
st.h r10,r3,8 /* store fifth half-word */
st.h r11,r3,10 /* store sixth half-word */
st.h r12,r3,12 /* store seventh half-word */
st.h r13,r3,14 /* store eighth half-word */
addu r2,r2,16 /* increment source pointer */
addu r3,r3,16 /* increment destination pointer */
br.n _ASM_LABEL(kf_half_copy) /* copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(kf_byte_copy)
bcnd eq0,r4,_ASM_LABEL(kcopy_out) /* branch if nothing left to copy */
ld.bu r6,r2,0 /* load byte from source */
st.b r6,r3,0 /* store byte in destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
br.n _ASM_LABEL(kf_byte_copy) /* branch for next byte */
subu r4,r4,1 /* decrement remaining length */
/*
* source address is less than destination address, copy in reverse
*/
ASLOCAL(kcopy_reverse)
/*
* start copy pointers at end of data
*/
addu r2,r2,r4 /* start source at end of data */
addu r3,r3,r4 /* start destination at end of data */
/*
* check for short data
*/
cmp r9,r4,16 /* see if we have at least 16 bytes */
bb1 lt,r9,_ASM_LABEL(kr_byte_copy) /* copy bytes for small data length */
/*
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
mask r7,r3,3 /* get 2 low order bits of destintation addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(kr_strat))
or r12,r12,lo16(_ASM_LABEL(kr_strat))
addu r6,r6,r7 /* compute final table offset for strategy */
ld r12,r12,r6 /* load the strategy routine */
jmp r12 /* branch to strategy routine */
/*
* Copy three bytes from src to destination then copy words
*/
ASLOCAL(kr_3byte_word_copy)
subu r2,r2,3 /* decrement source pointer */
subu r3,r3,3 /* decrement destination pointer */
ld.bu r6,r2,0 /* load byte from source */
ld.bu r7,r2,1 /* load byte from source */
ld.bu r8,r2,2 /* load byte from source */
st.b r6,r3,0 /* store byte to destination */
st.b r7,r3,1 /* store byte to destination */
st.b r8,r3,2 /* store byte to destination */
br.n _ASM_LABEL(kr_word_copy) /* copy full words */
subu r4,r4,3 /* decrement length */
/*
* Copy 1 halfword from src to destination then copy words
*/
ASLOCAL(kr_1half_word_copy)
subu r2,r2,2 /* decrement source pointer */
subu r3,r3,2 /* decrement destination pointer */
ld.hu r6,r2,0 /* load half-word from source */
st.h r6,r3,0 /* store half-word to destination */
br.n _ASM_LABEL(kr_word_copy) /* copy full words */
subu r4,r4,2 /* decrement remaining length */
/*
* Copy 1 byte from src to destination then copy words
*/
ASLOCAL(kr_1byte_word_copy)
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
subu r4,r4,1 /* decrement remaining length */
/* fall through to word copy */
/*
* Copy as many full words as possible, 4 words per loop
*/
ASLOCAL(kr_word_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(kr_byte_copy) /* not enough left, copy bytes */
subu r2,r2,16 /* decrement source pointer */
subu r3,r3,16 /* decrement destination pointer */
ld r6,r2,0 /* load first word */
ld r7,r2,4 /* load second word */
ld r8,r2,8 /* load third word */
ld r9,r2,12 /* load fourth word */
st r6,r3,0 /* store first word */
st r7,r3,4 /* store second word */
st r8,r3,8 /* store third word */
st r9,r3,12 /* store fourth word */
br.n _ASM_LABEL(kr_word_copy) /* copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(kr_1byte_half_copy)
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
subu r4,r4,1 /* decrement remaining length */
/* fall through to half copy */
ASLOCAL(kr_half_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(kr_byte_copy) /* not enough left, copy bytes */
subu r2,r2,16 /* decrement source pointer */
subu r3,r3,16 /* decrement destination pointer */
ld.hu r6,r2,0 /* load first half-word */
ld.hu r7,r2,2 /* load second half-word */
ld.hu r8,r2,4 /* load third half-word */
ld.hu r9,r2,6 /* load fourth half-word */
ld.hu r10,r2,8 /* load fifth half-word */
ld.hu r11,r2,10 /* load sixth half-word */
ld.hu r12,r2,12 /* load seventh half-word */
ld.hu r13,r2,14 /* load eighth half-word */
st.h r6,r3,0 /* store first half-word */
st.h r7,r3,2 /* store second half-word */
st.h r8,r3,4 /* store third half-word */
st.h r9,r3,6 /* store fourth half-word */
st.h r10,r3,8 /* store fifth half-word */
st.h r11,r3,10 /* store sixth half-word */
st.h r12,r3,12 /* store seventh half-word */
st.h r13,r3,14 /* store eighth half-word */
br.n _ASM_LABEL(kr_half_copy) /* copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(kr_byte_copy)
bcnd eq0,r4,_ASM_LABEL(kcopy_out) /* branch if nothing left to copy */
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load byte from source */
st.b r6,r3,0 /* store byte in destination */
br.n _ASM_LABEL(kr_byte_copy) /* branch for next byte */
subu r4,r4,1 /* decrement remaining length */
ASLOCAL(kcopy_out)
or r2, r0, 0 /* return success */
ASLOCAL(kcopy_out_fault)
or.u r5,r0,hi16(_C_LABEL(curpcb))
ld r6,r5,lo16(_C_LABEL(curpcb))
st r0,r6,PCB_ONFAULT /* clear the handler */
jmp r1 /* all done, return to caller */
ASLOCAL(kcopy_fault)
or r2, r0, EFAULT /* return fault */
br _ASM_LABEL(kcopy_out_fault)
data
align 4
ASLOCAL(kf_strat)
word _ASM_LABEL(kf_word_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_half_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_3byte_word_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_1byte_half_copy)
word _ASM_LABEL(kf_half_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_1half_word_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_1byte_half_copy)
word _ASM_LABEL(kf_byte_copy)
word _ASM_LABEL(kf_1byte_word_copy)
ASLOCAL(kr_strat)
word _ASM_LABEL(kr_word_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_half_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_1byte_word_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_1byte_half_copy)
word _ASM_LABEL(kr_half_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_1half_word_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_1byte_half_copy)
word _ASM_LABEL(kr_byte_copy)
word _ASM_LABEL(kr_3byte_word_copy)
/*
* Gcc 2 generates calls to memcpy for bcopies of unknown size. memcpy can
* simply be implemented as ovbcopy but the src (r2, r3) and dst args need to
* be switched.
*/
/*
* void memcpy(dest, source, count)
*
*/
ENTRY(memcpy)
or r5, r0, r2 /* dst -> tmp */
or r2, r0, r3 /* src -> 1st arg */
br.n _C_LABEL(ovbcopy)
or r3, r0, r5 /* dst -> 2nd arg */
/*
* void bcopy(source, destination, count)
*
* copy count bytes of data from source to destination
* Don Harper (don@omron.co.jp), Omron Corporation.
*
*/
ENTRY(bcopy)
ENTRY(ovbcopy)
bcnd le0,r4,_ASM_LABEL(bcopy_out) /* nothing to do if <= 0 */
/*
* check position of source and destination data
*/
cmp r9,r2,r3 /* compare source address to destination */
bb1 eq,r9,_ASM_LABEL(bcopy_out) /* nothing to do if equal */
bb1 lo,r9,_ASM_LABEL(bcopy_reverse) /* reverse copy if src < dest */
/*
* source address is greater than destination address, copy forward
*/
cmp r9,r4,16 /* see if we have at least 16 bytes */
bb1 lt,r9,_ASM_LABEL(f_byte_copy) /* copy bytes for small data length */
/*
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
mask r7,r3,3 /* get 2 low order bits of destintation addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(f_strat))
or r12,r12,lo16(_ASM_LABEL(f_strat))
addu r6,r6,r7 /* compute final table offset for strategy */
ld r12,r12,r6 /* load the strategy routine */
jmp r12 /* branch to strategy routine */
/*
* Copy three bytes from src to destination then copy words
*/
ASLOCAL(f_3byte_word_copy)
ld.bu r6,r2,0 /* load byte from source */
ld.bu r7,r2,1 /* load byte from source */
ld.bu r8,r2,2 /* load byte from source */
st.b r6,r3,0 /* store byte to destination */
st.b r7,r3,1 /* store byte to destination */
st.b r8,r3,2 /* store byte to destination */
addu r2,r2,3 /* increment source pointer */
addu r3,r3,3 /* increment destination pointer */
br.n _ASM_LABEL(f_word_copy) /* copy full words */
subu r4,r4,3 /* decrement length */
/*
* Copy 1 halfword from src to destination then copy words
*/
ASLOCAL(f_1half_word_copy)
ld.hu r6,r2,0 /* load half-word from source */
st.h r6,r3,0 /* store half-word to destination */
addu r2,r2,2 /* increment source pointer */
addu r3,r3,2 /* increment destination pointer */
br.n _ASM_LABEL(f_word_copy) /* copy full words */
subu r4,r4,2 /* decrement remaining length */
/*
* Copy 1 byte from src to destination then copy words
*/
ASLOCAL(f_1byte_word_copy)
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
subu r4,r4,1 /* decrement remaining length */
/* fall through to word copy */
/*
* Copy as many full words as possible, 4 words per loop
*/
ASLOCAL(f_word_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(f_byte_copy) /* not enough left, copy bytes */
ld r6,r2,0 /* load first word */
ld r7,r2,4 /* load second word */
ld r8,r2,8 /* load third word */
ld r9,r2,12 /* load fourth word */
st r6,r3,0 /* store first word */
st r7,r3,4 /* store second word */
st r8,r3,8 /* store third word */
st r9,r3,12 /* store fourth word */
addu r2,r2,16 /* increment source pointer */
addu r3,r3,16 /* increment destination pointer */
br.n _ASM_LABEL(f_word_copy) /* branch to copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(f_1byte_half_copy)
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
subu r4,r4,1 /* decrement remaining length */
/* fall through to half copy */
ASLOCAL(f_half_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(f_byte_copy) /* not enough left, copy bytes */
ld.hu r6,r2,0 /* load first half-word */
ld.hu r7,r2,2 /* load second half-word */
ld.hu r8,r2,4 /* load third half-word */
ld.hu r9,r2,6 /* load fourth half-word */
ld.hu r10,r2,8 /* load fifth half-word */
ld.hu r11,r2,10 /* load sixth half-word */
ld.hu r12,r2,12 /* load seventh half-word */
ld.hu r13,r2,14 /* load eighth half-word */
st.h r6,r3,0 /* store first half-word */
st.h r7,r3,2 /* store second half-word */
st.h r8,r3,4 /* store third half-word */
st.h r9,r3,6 /* store fourth half-word */
st.h r10,r3,8 /* store fifth half-word */
st.h r11,r3,10 /* store sixth half-word */
st.h r12,r3,12 /* store seventh half-word */
st.h r13,r3,14 /* store eighth half-word */
addu r2,r2,16 /* increment source pointer */
addu r3,r3,16 /* increment destination pointer */
br.n _ASM_LABEL(f_half_copy) /* branch to copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(f_byte_copy)
bcnd eq0,r4,_ASM_LABEL(bcopy_out) /* branch if nothing left to copy */
ld.bu r6,r2,0 /* load byte from source */
st.b r6,r3,0 /* store byte in destination */
addu r2,r2,1 /* increment source pointer */
addu r3,r3,1 /* increment destination pointer */
br.n _ASM_LABEL(f_byte_copy) /* branch for next byte */
subu r4,r4,1 /* decrement remaining length */
/*
* source address is less than destination address, copy in reverse
*/
ASLOCAL(bcopy_reverse)
/*
* start copy pointers at end of data
*/
addu r2,r2,r4 /* start source at end of data */
addu r3,r3,r4 /* start destination at end of data */
/*
* check for short data
*/
cmp r9,r4,16 /* see if we have at least 16 bytes */
bb1 lt,r9,_ASM_LABEL(r_byte_copy) /* copy bytes for small data length */
/*
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
mask r7,r3,3 /* get 2 low order bits of destintation addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(r_strat))
or r12,r12,lo16(_ASM_LABEL(r_strat))
addu r6,r6,r7 /* compute final table offset for strategy */
ld r12,r12,r6 /* load the strategy routine */
jmp r12 /* branch to strategy routine */
/*
* Copy three bytes from src to destination then copy words
*/
ASLOCAL(r_3byte_word_copy)
subu r2,r2,3 /* decrement source pointer */
subu r3,r3,3 /* decrement destination pointer */
ld.bu r6,r2,0 /* load byte from source */
ld.bu r7,r2,1 /* load byte from source */
ld.bu r8,r2,2 /* load byte from source */
st.b r6,r3,0 /* store byte to destination */
st.b r7,r3,1 /* store byte to destination */
st.b r8,r3,2 /* store byte to destination */
br.n _ASM_LABEL(r_word_copy) /* copy full words */
subu r4,r4,3 /* decrement length */
/*
* Copy 1 halfword from src to destination then copy words
*/
ASLOCAL(r_1half_word_copy)
subu r2,r2,2 /* decrement source pointer */
subu r3,r3,2 /* decrement destination pointer */
ld.hu r6,r2,0 /* load half-word from source */
st.h r6,r3,0 /* store half-word to destination */
br.n _ASM_LABEL(r_word_copy) /* copy full words */
subu r4,r4,2 /* decrement remaining length */
/*
* Copy 1 byte from src to destination then copy words
*/
ASLOCAL(r_1byte_word_copy)
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
subu r4,r4,1 /* decrement remaining length */
/* fall through to word copy */
/*
* Copy as many full words as possible, 4 words per loop
*/
ASLOCAL(r_word_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(r_byte_copy) /* not enough left, copy bytes */
subu r2,r2,16 /* decrement source pointer */
subu r3,r3,16 /* decrement destination pointer */
ld r6,r2,0 /* load first word */
ld r7,r2,4 /* load second word */
ld r8,r2,8 /* load third word */
ld r9,r2,12 /* load fourth word */
st r6,r3,0 /* store first word */
st r7,r3,4 /* store second word */
st r8,r3,8 /* store third word */
st r9,r3,12 /* store fourth word */
br.n _ASM_LABEL(r_word_copy) /* branch to copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(r_1byte_half_copy)
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load 1 byte from source */
st.b r6,r3,0 /* store 1 byte to destination */
subu r4,r4,1 /* decrement remaining length */
/* fall through to half copy */
ASLOCAL(r_half_copy)
cmp r10,r4,16 /* see if we have 16 bytes remaining */
bb1 lo,r10,_ASM_LABEL(r_byte_copy) /* not enough left, copy bytes */
subu r2,r2,16 /* decrement source pointer */
subu r3,r3,16 /* decrement destination pointer */
ld.hu r6,r2,0 /* load first half-word */
ld.hu r7,r2,2 /* load second half-word */
ld.hu r8,r2,4 /* load third half-word */
ld.hu r9,r2,6 /* load fourth half-word */
ld.hu r10,r2,8 /* load fifth half-word */
ld.hu r11,r2,10 /* load sixth half-word */
ld.hu r12,r2,12 /* load seventh half-word */
ld.hu r13,r2,14 /* load eighth half-word */
st.h r6,r3,0 /* store first half-word */
st.h r7,r3,2 /* store second half-word */
st.h r8,r3,4 /* store third half-word */
st.h r9,r3,6 /* store fourth half-word */
st.h r10,r3,8 /* store fifth half-word */
st.h r11,r3,10 /* store sixth half-word */
st.h r12,r3,12 /* store seventh half-word */
st.h r13,r3,14 /* store eighth half-word */
br.n _ASM_LABEL(r_half_copy) /* branch to copy another block */
subu r4,r4,16 /* decrement remaining length */
ASLOCAL(r_byte_copy)
bcnd eq0,r4,_ASM_LABEL(bcopy_out) /* branch if nothing left to copy */
subu r2,r2,1 /* decrement source pointer */
subu r3,r3,1 /* decrement destination pointer */
ld.bu r6,r2,0 /* load byte from source */
st.b r6,r3,0 /* store byte in destination */
br.n _ASM_LABEL(r_byte_copy) /* branch for next byte */
subu r4,r4,1 /* decrement remaining length */
ASLOCAL(bcopy_out)
jmp r1 /* all done, return to caller */
data
align 4
ASLOCAL(f_strat)
word _ASM_LABEL(f_word_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_half_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_3byte_word_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_1byte_half_copy)
word _ASM_LABEL(f_half_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_1half_word_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_1byte_half_copy)
word _ASM_LABEL(f_byte_copy)
word _ASM_LABEL(f_1byte_word_copy)
ASLOCAL(r_strat)
word _ASM_LABEL(r_word_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_half_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_1byte_word_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_1byte_half_copy)
word _ASM_LABEL(r_half_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_1half_word_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_1byte_half_copy)
word _ASM_LABEL(r_byte_copy)
word _ASM_LABEL(r_3byte_word_copy)
text
/*######################################################################*/
/*
* April 1990, Omron Corporation
* jfriedl@nff.ncl.omron.co.jp
*
* void bzero(destination, length)
*
* Clear (set to zero) LENGTH bytes of memory starting at DESTINATION.
* Note that there is no return value.
*
* This is fast. Really fast. Especially for long lengths.
*/
#define R_dest r2
#define R_len r3
#define R_bytes r4
#define R_mark_address r5
#define R_addr r6 /* R_addr && R_temp SHARE */
#define R_temp r6 /* R_addr && R_temp SHARE */
ENTRY(bzero)
/*
* If the destination is not word aligned, we'll word align
* it first to make things easier.
*
* We'll check to see first if bit #0 is set and then bit #1
* (of the destination address). If either are set, it's
* not word aligned.
*/
bb1 0, R_dest, _ASM_LABEL(not_initially_word_aligned)
bb1 1, R_dest, _ASM_LABEL(not_initially_word_aligned)
ASLOCAL(now_word_aligned)
/*
* before we get into the main loop, grab the
* address of the label "mark" below.
*/
or.u R_mark_address, r0, hi16(_ASM_LABEL(mark))
or R_mark_address, R_mark_address, lo16(_ASM_LABEL(mark))
ASLOCAL(top_of_main_loop)
#define MAX_AT_ONE_TIME 128
/*
* Now we find out how many words we can zero-fill in a row.
* We do this by doing something like:
*
* bytes &= 0xfffffffc;
* if (bytes > MAX_AT_ONE_TIME)
* bytes = MAX_AT_ONE_TIME;
*/
/*
* Clear lower two bits of length to give us the number of bytes
* ALIGNED TO THE WORD LENGTH remaining to move.
*/
clr R_bytes, R_len, 2<0>
/* if we're done clearing WORDS, jump out */
bcnd eq0, R_bytes, _ASM_LABEL(done_doing_words)
/* if the number of bytes > MAX_AT_ONE_TIME, do only the max */
cmp R_temp, R_bytes, MAX_AT_ONE_TIME
bb1 lt, R_temp, 1f
/*
* Since we're doing the max, we know exactly where we're
* jumping (the first one in the list!), so we can jump
* right there. However, we've still got to adjust
* the length, so we'll jump to where we ajust the length
* which just happens to fall through to the first store zero
* in the list.
*
* Note, however, that we're jumping to an instruction that
* would be in the delay slot for the jump in front of it,
* so if you change things here, WATCH OUT.
*/
br.n do_max
or R_bytes, r0, MAX_AT_ONE_TIME
1:
/*
* Now we have the number of bytes to zero during this iteration,
* (which, as it happens, is the last iteration if we're here).
* We'll calculate the proper place to jump and then jump there,
* after adjusting the length. NOTE that there is a label between
* the "jmp.n" and the "subu" below... the "subu" is NOT always
* executed in the delay slot of the "jmp.n".
*/
subu R_addr, R_mark_address, R_bytes
/* and go there (after adjusting the length via ".n") */
jmp.n R_addr
ASLOCAL(do_max)
subu R_len, R_len, R_bytes /* NOTE: this is in the delay slot! */
st r0, R_dest, 0x7c /* 128 */
st r0, R_dest, 0x78 /* 124 */
st r0, R_dest, 0x74 /* 120 */
st r0, R_dest, 0x70 /* 116 */
st r0, R_dest, 0x6c /* 112 */
st r0, R_dest, 0x68 /* 108 */
st r0, R_dest, 0x64 /* 104 */
st r0, R_dest, 0x60 /* 100 */
st r0, R_dest, 0x5c /* 96 */
st r0, R_dest, 0x58 /* 92 */
st r0, R_dest, 0x54 /* 88 */
st r0, R_dest, 0x50 /* 84 */
st r0, R_dest, 0x4c /* 80 */
st r0, R_dest, 0x48 /* 76 */
st r0, R_dest, 0x44 /* 72 */
st r0, R_dest, 0x40 /* 68 */
st r0, R_dest, 0x3c /* 64 */
st r0, R_dest, 0x38 /* 60 */
st r0, R_dest, 0x34 /* 56 */
st r0, R_dest, 0x30 /* 52 */
st r0, R_dest, 0x2c /* 44 */
st r0, R_dest, 0x28 /* 40 */
st r0, R_dest, 0x24 /* 36 */
st r0, R_dest, 0x20 /* 32 */
st r0, R_dest, 0x1c /* 28 */
st r0, R_dest, 0x18 /* 24 */
st r0, R_dest, 0x14 /* 20 */
st r0, R_dest, 0x10 /* 16 */
st r0, R_dest, 0x0c /* 12 */
st r0, R_dest, 0x08 /* 8 */
st r0, R_dest, 0x04 /* 4 */
st r0, R_dest, 0x00 /* 0 */
ASLOCAL(mark)
br.n _ASM_LABEL(top_of_main_loop)
addu R_dest, R_dest, R_bytes /* bump up the dest address */
ASLOCAL(done_doing_words)
bcnd ne0, R_len, 1f
jmp r1
1:
subu R_len, R_len, 1
bcnd.n ne0, R_len, 1b
st.b r0, R_dest, R_len
1:
jmp r1
ASLOCAL(not_initially_word_aligned)
/*
* Bzero to word-align the address (at least if the length allows it).
*/
bcnd eq0, R_len, 1b
st.b r0, R_dest, 0
addu R_dest, R_dest, 1
mask R_temp, R_dest, 0x3
bcnd.n eq0, R_temp, _ASM_LABEL(now_word_aligned)
subu R_len, R_len, 1
br _ASM_LABEL(not_initially_word_aligned)
#undef R_dest
#undef R_len
#undef R_bytes
#undef R_mark_address
#undef R_addr
#undef R_temp
#undef MAX_AT_ONE_TIME
/*
* non-local goto
* int setjmp(label_t *);
* void longjmp(label_t*);
*/
ENTRY(setjmp)
st r1,r2,0
st r14,r2,4
st r15,r2,2*4
st r16,r2,3*4
st r17,r2,4*4
st r18,r2,5*4
st r19,r2,6*4
st r20,r2,7*4
st r21,r2,8*4
st r22,r2,9*4
st r23,r2,10*4
st r24,r2,11*4
st r25,r2,12*4
st r26,r2,13*4
st r27,r2,14*4
st r28,r2,15*4
st r29,r2,16*4
st r30,r2,17*4
st r31,r2,18*4
jmp.n r1
or r2,r0,r0
ENTRY(longjmp)
ld r1,r2,0
ld r14,r2,4
ld r15,r2,2*4
ld r16,r2,3*4
ld r17,r2,4*4
ld r18,r2,5*4
ld r19,r2,6*4
ld r20,r2,7*4
ld r21,r2,8*4
ld r22,r2,9*4
ld r23,r2,10*4
ld r24,r2,11*4
ld r25,r2,12*4
ld r26,r2,13*4
ld r27,r2,14*4
ld r28,r2,15*4
ld r29,r2,16*4
ld r30,r2,17*4
ld r31,r2,18*4
jmp.n r1
or r2,r0,1
ENTRY(read_processor_identification_register)
jmp.n r1
ldcr r2, PID
GLOBAL(guarded_access_start)
ENTRY(guarded_access)
cmp r9,r3,4
bb1 eq,r9,@L145
cmp r9,r3,2
bb1 eq,r9,@L144
cmp r9,r3,1
bb1 eq,r9,@L143
br _C_LABEL(guarded_access_bad)
@L143:
ld.b r9,r0,r2
tb1 0, r0, 0
st.b r9,r0,r4
br @L142
@L144:
ld.h r9,r0,r2
tb1 0, r0, 0
st.h r9,r0,r4
br @L142
@L145:
ld r9,r0,r2
tb1 0, r0, 0
st r9,r0,r4
br @L142
GLOBAL(guarded_access_bad)
jmp.n r1
or r2,r0,EFAULT
@L142:
jmp.n r1
or r2,r0,0
GLOBAL(guarded_access_end)
/*
* void set_cpu_number(unsigned number);
*
* Sets the kernel cpu number for this cpu to the given value.
*
* Input:
* r1 return address
* r2 the number (should be 0, 1, 2, or 3).
*
* Other registers used:
* r3 temp
* r4 original PSR
* r5 temporary new PSR
*/
ENTRY(set_cpu_number)
#ifdef DEBUG
/* make sure the CPU number is valid */
clr r3, r2, FLAG_CPU_FIELD_WIDTH<0>
bcnd ne0, r3, 1f /* bad cpu number */
#endif
/* going to change a control register -- disable interrupts */
ldcr r4, PSR
set r5, r4, 1<PSR_INTERRUPT_DISABLE_BIT>
stcr r5, PSR
FLUSH_PIPELINE
/* put in the cpu number */
ldcr r3, SR1 /* get the flags */
clr r3, r3, FLAG_CPU_FIELD_WIDTH<0> /* clean the slate */
or r3, r3, r2 /* add the cpu number */
stcr r3, SR1 /* put back */
/* put back the PSR to what it was before and return */
stcr r4, PSR
FLUSH_PIPELINE
jmp r1
#ifdef DEBUG
1: /* bad cpu number*/
or.u r2, r0, hi16(9f)
bsr.n _C_LABEL(panic)
or r2, r2, lo16(9f)
data
9: string "set_cpu_number: bad CPU number %x\0"
#endif
|