2 * String handling functions for PowerPC.
4 * Copyright (C) 1996 Paul Mackerras.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #include <asm/processor.h>
12 #include <asm/errno.h>
13 #include <asm/ppc_asm.h>
15 .section __ex_table,"a"
34 /* This clears out any unused part of the destination buffer,
35 just as the libc version does. -- paulus */
45 bdnzf 2,1b /* dec ctr, branch if ctr != 0 && !cr0.eq */
46 bnelr /* if we didn't hit a null char, we're done */
48 cmpwi 0,r5,0 /* any space left in destination buffer? */
49 beqlr /* we know r0 == 0 here */
50 2: stbu r0,1(r6) /* clear it out if so */
126 _GLOBAL(__clear_user)
132 /* clear a single word */
135 /* clear word sized chunks */
145 /* clear byte sized chunks */
162 .section __ex_table,"a"
168 _GLOBAL(__strncpy_from_user)
177 bdnzf 2,1b /* dec ctr, branch if ctr != 0 && !cr0.eq */
185 .section __ex_table,"a"
189 /* r3 = str, r4 = len (> 0), r5 = top (highest addr) */
190 _GLOBAL(__strnlen_user)
192 subf r6,r7,r5 /* top+1 - str */
196 0: mtctr r6 /* ctr = min(len, top - str) */
197 1: lbzu r0,1(r7) /* get next byte */
199 bdnzf 2,1b /* loop if --ctr != 0 && byte != 0 */
201 subf r3,r3,r7 /* number of bytes we have looked at */
202 beqlr /* return if we found a 0 byte */
203 cmpw 0,r3,r4 /* did we look at all len bytes? */
204 blt 99f /* if not, must have hit top */
205 addi r3,r4,1 /* return len + 1 to indicate no null found */
207 99: li r3,0 /* bad address, return 0 */
210 .section __ex_table,"a"