1 /* Optimized memset implementation for PowerPC64.
2 Copyright (C) 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 /* Define a global static that can hold the cache line size. The
25 assumption is that startup code will access the "aux vector" to
26 to obtain the value set by the kernel and store it into this
28 .globl __cache_line_size
29 .lcomm __cache_line_size,4,4
32 .tc __cache_line_size[TC],__cache_line_size
36 /* __ptr_t [r3] memset (__ptr_t s [r3], int c [r4], size_t n [r5]));
39 The memset is done in three sizes: byte (8 bits), word (32 bits),
40 cache line (256 bits). There is a special case for setting cache lines
41 to 0, to take advantage of the dcbz instruction. */
43 EALIGN (BP_SYM (memset), 5, 0)
47 #define rRTN r3 /* Initial value of 1st argument. */
48 #if __BOUNDED_POINTERS__
49 # define rMEMP0 r4 /* Original value of 1st arg. */
50 # define rCHR r5 /* Char to set in each byte. */
51 # define rLEN r6 /* Length of region to set. */
52 # define rMEMP r10 /* Address at which we are storing. */
54 # define rMEMP0 r3 /* Original value of 1st arg. */
55 # define rCHR r4 /* Char to set in each byte. */
56 # define rLEN r5 /* Length of region to set. */
57 # define rMEMP r6 /* Address at which we are storing. */
59 #define rALIGN r7 /* Number of bytes we are setting now (when aligning). */
62 #define rNEG64 r8 /* Constant -64 for clearing with dcbz. */
63 #define rCLS r8 /* Cache line size obtained from static. */
64 #define rCLM r9 /* Cache line size mask to check for cache alignment. */
66 #if __BOUNDED_POINTERS__
68 CHECK_BOUNDS_BOTH_WIDE (rMEMP0, rTMP, rTMP2, rLEN)
70 STORE_RETURN_VALUE (rMEMP0)
71 STORE_RETURN_BOUNDS (rTMP, rTMP2)
74 /* Take care of case for size <= 4. */
76 andi. rALIGN, rMEMP0, 7
80 /* Align to doubleword boundary. */
82 rlwimi rCHR, rCHR, 8, 16, 23 /* Replicate byte to halfword. */
85 subfic rALIGN, rALIGN, 8
86 cror 28,30,31 /* Detect odd word aligned. */
87 add rMEMP, rMEMP, rALIGN
88 sub rLEN, rLEN, rALIGN
89 rlwimi rCHR, rCHR, 16, 0, 15 /* Replicate halfword to word. */
91 /* Process the even word of doubleword. */
100 /* Process the odd word of doubleword. */
102 bf 28, L(g4x) /* If false, word aligned on odd word. */
109 /* Handle the case of size < 31. */
111 rlwimi rCHR, rCHR, 16, 0, 15 /* Replicate halfword to word. */
115 /* Align to 32-byte boundary. */
116 andi. rALIGN, rMEMP, 0x18
117 subfic rALIGN, rALIGN, 0x20
118 insrdi rCHR,rCHR,32,0 /* Replicate word to double word. */
121 add rMEMP, rMEMP, rALIGN
122 sub rLEN, rLEN, rALIGN
123 cmplwi cr1, rALIGN, 0x10
126 stdu rCHR, -8(rMEMP2)
127 L(a1): blt cr1, L(a2)
129 stdu rCHR, -16(rMEMP2)
132 /* Now aligned to a 32 byte boundary. */
135 clrrdi. rALIGN, rLEN, 5
137 beq cr1, L(zloopstart) /* Special case for clearing memory using dcbz. */
141 beq L(medium) /* We may not actually get to do a full line. */
142 clrldi. rLEN, rLEN, 59
143 add rMEMP, rMEMP, rALIGN
147 L(c3): dcbtst rNEG64, rMEMP
151 stdu rCHR, -32(rMEMP)
158 stdu rCHR, -32(rMEMP)
160 add rMEMP, rMEMP, rALIGN
164 /* Clear lines of memory in 128-byte chunks. */
166 /* If the remaining length is less the 32 bytes, don't bother getting
167 the cache line size. */
171 /* If the cache line size was not set just goto to L(nondcbz) which is
172 safe for any cache line size. */
177 /* Now we know the cache line size, and it is not 32-bytes, but
178 we may not yet be aligned to the cache line. May have a partial
179 line to fill, so touch it 1st. */
185 blt cr1,L(handletail32)
195 /* Now we are aligned to the cache line and can use dcbz. */
198 blt cr1,L(handletail32)
204 /* We are here because the cache line size was set and was not 32-bytes
205 and the remainder (rLEN) is less than the actual cache line size.
206 So set up the preconditions for L(nondcbz) and go there. */
208 clrrwi. rALIGN, rLEN, 5
213 /* Memset of 8 bytes or less. */
236 /* Memset of 0-31 bytes. */
239 insrdi rCHR,rCHR,32,0 /* Replicate word to double word. */
242 add rMEMP, rMEMP, rLEN
244 bt- 31, L(medium_31t)
245 bt- 30, L(medium_30t)
247 bt- 29, L(medium_29t)
249 bge- cr1, L(medium_27t)
256 bf- 30, L(medium_30f)
259 bf- 29, L(medium_29f)
262 blt- cr1, L(medium_27f)
265 stdu rCHR, -16(rMEMP)
271 END_GEN_TB (BP_SYM (memset),TB_TOCLESS)
272 libc_hidden_builtin_def (memset)
274 /* Copied from bzero.S to prevent the linker from inserting a stub
275 between bzero and memset. */
276 ENTRY (BP_SYM (__bzero))
278 #if __BOUNDED_POINTERS__
282 /* Tell memset that we don't want a return value. */
290 END_GEN_TB (BP_SYM (__bzero),TB_TOCLESS)
292 weak_alias (BP_SYM (__bzero), BP_SYM (bzero))