~linaro-toolchain-dev/cortex-strings/trunk

1 by Michael Hope
Pulled in the initial versions
1
/* Copyright (C) 1998, 2003 Free Software Foundation, Inc.
2
   This file is part of the GNU C Library.
3
   Code contributed by Matthew Wilcox <willy@odie.barnet.ac.uk>
4
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.
9
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.
14
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
18
   02111-1307 USA.  */
19
20
/* size_t strlen(const char *S)
21
 * entry: r0 -> string
22
 * exit: r0 = len
23
 */
77 by Michael Hope
Added function type attributes to all reference assembly versions.
24
	.text
72 by Michael Hope
Updated the GLIBC routines and shifted the C only routines out.
25
	.globl strlen
77 by Michael Hope
Added function type attributes to all reference assembly versions.
26
	.type strlen, %function
72 by Michael Hope
Updated the GLIBC routines and shifted the C only routines out.
27
	
2 by Michael Hope
Made the different routines compile. Expanded the tests.
28
strlen:	
1 by Michael Hope
Pulled in the initial versions
29
	bic     r1, r0, $3              @ addr of word containing first byte
30
	ldr     r2, [r1], $4            @ get the first word
31
	ands    r3, r0, $3              @ how many bytes are duff?
32
	rsb     r0, r3, $0              @ get - that number into counter.
33
	beq     Laligned                @ skip into main check routine if no
34
					@ more
35
#ifdef __ARMEB__
36
	orr     r2, r2, $0xff000000     @ set this byte to non-zero
37
	subs    r3, r3, $1              @ any more to do?
38
	orrgt   r2, r2, $0x00ff0000     @ if so, set this byte
39
	subs    r3, r3, $1              @ more?
40
	orrgt   r2, r2, $0x0000ff00     @ then set.
41
#else
42
	orr     r2, r2, $0x000000ff     @ set this byte to non-zero
43
	subs    r3, r3, $1              @ any more to do?
44
	orrgt   r2, r2, $0x0000ff00     @ if so, set this byte
45
	subs    r3, r3, $1              @ more?
46
	orrgt   r2, r2, $0x00ff0000     @ then set.
47
#endif
48
Laligned:				@ here, we have a word in r2.  Does it
49
	tst     r2, $0x000000ff         @ contain any zeroes?
50
	tstne   r2, $0x0000ff00         @
51
	tstne   r2, $0x00ff0000         @
52
	tstne   r2, $0xff000000         @
53
	addne   r0, r0, $4              @ if not, the string is 4 bytes longer
54
	ldrne   r2, [r1], $4            @ and we continue to the next word
55
	bne     Laligned                @
56
Llastword:				@ drop through to here once we find a
57
#ifdef __ARMEB__
58
	tst     r2, $0xff000000         @ word that has a zero byte in it
59
	addne   r0, r0, $1              @
60
	tstne   r2, $0x00ff0000         @ and add up to 3 bytes on to it
61
	addne   r0, r0, $1              @
62
	tstne   r2, $0x0000ff00         @ (if first three all non-zero, 4th
63
	addne   r0, r0, $1              @  must be zero)
64
#else
65
	tst     r2, $0x000000ff         @ word that has a zero byte in it
66
	addne   r0, r0, $1              @
67
	tstne   r2, $0x0000ff00         @ and add up to 3 bytes on to it
68
	addne   r0, r0, $1              @
69
	tstne   r2, $0x00ff0000         @ (if first three all non-zero, 4th
70
	addne   r0, r0, $1              @  must be zero)
71
#endif
2 by Michael Hope
Made the different routines compile. Expanded the tests.
72
	bx lr
73