]> git.saurik.com Git - apple/libc.git/blame - ppc/gen/bzero.s
Libc-262.tar.gz
[apple/libc.git] / ppc / gen / bzero.s
CommitLineData
5b2abdfb
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22//
23// =============================
24// BZERO and MEMSET FOR Mac OS X
25// =============================
26//
27// We use DCBZ, and therefore are dependent on the cache block size (32.)
28// Bzero and memset need to be in the same file since they are tightly
29// coupled, so we can use bzero for memset of 0 without incurring extra
30// overhead. (The issue is that bzero must preserve r3 for memset.)
31//
32// Registers we use:
33// r3 = original ptr, not changed since memset returns it
34// r4 = count of bytes to set ("rc")
35// r11 = working operand ptr ("rp")
36// r10 = value to set ("rv")
37
38#define rc r4
39#define rp r11
40#define rv r10
41
42#include <architecture/ppc/asm_help.h>
43
44 .text
45 .align 5
46 .globl _bzero
47 .globl _memset
48
49// *************
50// * B Z E R O *
51// *************
52
53_bzero: // void bzero(void *b, size_t len);
54 cmplwi cr1,rc,32 // too short for DCBZ?
55 li rv,0 // get a 0
56Lbzero1: // enter from memset with cr1 and rv set up
57 neg r5,r3 // start to compute bytes to align
58 mr rp,r3 // make copy of operand ptr
59 andi. r6,r5,0x1F // r6 <- bytes to align on cache block
60 blt- cr1,Ltail // <32, so skip DCBZs
61 beq- cr0,Ldcbz // already aligned
62
63 // align on 32-byte boundary
64
65 mtcrf 0x01,r6 // move length to cr7 (faster if only 1 cr)
66 andi. r7,r6,16 // test bit 27 by hand
67 sub rc,rc,r6 // adjust length
68 bf 31,1f // test bits of count
69 stb rv,0(rp)
70 addi rp,rp,1
711:
72 bf 30,2f
73 sth rv,0(rp)
74 addi rp,rp,2
752:
76 bf 29,3f
77 stw rv,0(rp)
78 addi rp,rp,4
793:
80 bf 28,4f
81 stw rv,0(rp)
82 stw rv,4(rp)
83 addi rp,rp,8
844:
85 beq Ldcbz
86 stw rv,0(rp)
87 stw rv,4(rp)
88 stw rv,8(rp)
89 stw rv,12(rp)
90 addi rp,rp,16
91
92 // DCBZ 32-byte cache blocks
93Ldcbz:
94 srwi. r5,rc,5 // r5 <- number of cache blocks to zero
95 beq Ltail // none
96 mtctr r5 // set up loop count
97 andi. rc,rc,0x1F // will there be leftovers?
981:
99 dcbz 0,rp // zero 32 bytes
100 addi rp,rp,32
101 bdnz 1b
102 beqlr // no leftovers so done
103
104 // store up to 31 trailing bytes
105 // rv = value to store (in all 4 bytes)
106 // rc = #bytes to store (0..31)
107Ltail:
108 andi. r5,rc,16 // bit 27 set in length?
109 mtcrf 0x01,rc // low 4 bits of length to cr7
110 beq 1f // test bits of length
111 stw rv,0(rp)
112 stw rv,4(rp)
113 stw rv,8(rp)
114 stw rv,12(rp)
115 addi rp,rp,16
1161:
117 bf 28,2f
118 stw rv,0(rp)
119 stw rv,4(rp)
120 addi rp,rp,8
1212:
122 bf 29,3f
123 stw rv,0(rp)
124 addi rp,rp,4
1253:
126 bf 30,4f
127 sth rv,0(rp)
128 addi rp,rp,2
1294:
130 bflr 31
131 stb rv,0(rp)
132 blr
133
134
135// ***************
136// * M E M S E T *
137// ***************
138
139 .align 5
140_memset: // void * memset(void *b, int c, size_t len);
141 andi. rv,r4,0xFF // copy value to working register, test for 0
142 mr rc,r5 // move length to working register
143 cmplwi cr1,r5,32 // length < 32 ?
144 beq Lbzero1 // memset of 0 is just a bzero
145 rlwimi rv,rv,8,16,23 // replicate value to low 2 bytes
146 mr rp,r3 // make working copy of operand ptr
147 rlwimi rv,rv,16,0,15 // value now in all 4 bytes
148 blt cr1,Ltail // length<32, so use common tail routine
149 neg r5,rp // start to compute #bytes to align
150 andi. r6,r5,0x7 // r6 <- #bytes to align on dw
151 beq- Lmemset1 // already aligned
152
153 ; align on 8-byte boundary
154
155 mtcrf 0x01,r6 // move count to cr7 (faster if only 1 cr)
156 sub rc,rc,r6 // adjust length
157 bf 31,1f
158 stb rv,0(rp)
159 addi rp,rp,1
1601:
161 bf 30,2f
162 sth rv,0(rp)
163 addi rp,rp,2
1642:
165 bf 29,Lmemset1
166 stw rv,0(rp)
167 addi rp,rp,4
168
169 // loop on 16-byte blocks
170Lmemset1:
171 stw rv,0(rp) // store first 8 bytes from rv
172 stw rv,4(rp)
173 srwi r5,rc,4 // r5 <- #blocks (>=1)
174 mtcrf 0x01,rc // leftover length to cr7
175 mtctr r5 // set up loop count
176 lfd f0,0(rp) // pick up in a fp register
177 b 2f // enter loop in middle
178 .align 4
1791: // loop on 16-byte blocks
180 stfd f0,0(rp)
1812:
182 stfd f0,8(rp)
183 addi rp,rp,16
184 bdnz 1b
185
186 // store up to 16 trailing bytes (count in cr7)
187
188 bf 28,3f
189 stfd f0,0(rp)
190 addi rp,rp,8
1913:
192 bf 29,4f
193 stw rv,0(rp)
194 addi rp,rp,4
1954:
196 bf 30,5f
197 sth rv,0(rp)
198 addi rp,rp,2
1995:
200 bflr 31
201 stb rv,0(rp)
202 blr