OSDN Git Service

Use strong_alias everywhere instead of .global/.set. Correct some cases where the...
[uclinux-h8/uClibc.git] / libc / string / generic / strlen.c
1 /* Copyright (C) 1991, 1993, 1997, 2000, 2003 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Written by Torbjorn Granlund (tege@sics.se),
4    with help from Dan Sahlin (dan@sics.se);
5    commentary by Jim Blandy (jimb@ai.mit.edu).
6
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
11
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; if not, write to the Free
19    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20    02111-1307 USA.  */
21
22 #include <string.h>
23 #include <stdlib.h>
24
25 /* Return the length of the null-terminated string STR.  Scan for
26    the null terminator quickly by testing four bytes at a time.  */
27 size_t attribute_hidden __strlen (const char *str)
28 {
29   const char *char_ptr;
30   const unsigned long int *longword_ptr;
31   unsigned long int longword, magic_bits, himagic, lomagic;
32
33   /* Handle the first few characters by reading one character at a time.
34      Do this until CHAR_PTR is aligned on a longword boundary.  */
35   for (char_ptr = str; ((unsigned long int) char_ptr
36                         & (sizeof (longword) - 1)) != 0;
37        ++char_ptr)
38     if (*char_ptr == '\0')
39       return char_ptr - str;
40
41   /* All these elucidatory comments refer to 4-byte longwords,
42      but the theory applies equally well to 8-byte longwords.  */
43
44   longword_ptr = (unsigned long int *) char_ptr;
45
46   /* Bits 31, 24, 16, and 8 of this number are zero.  Call these bits
47      the "holes."  Note that there is a hole just to the left of
48      each byte, with an extra at the end:
49
50      bits:  01111110 11111110 11111110 11111111
51      bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD
52
53      The 1-bits make sure that carries propagate to the next 0-bit.
54      The 0-bits provide holes for carries to fall into.  */
55   magic_bits = 0x7efefeffL;
56   himagic = 0x80808080L;
57   lomagic = 0x01010101L;
58   if (sizeof (longword) > 4)
59     {
60       /* 64-bit version of the magic.  */
61       /* Do the shift in two steps to avoid a warning if long has 32 bits.  */
62       magic_bits = ((0x7efefefeL << 16) << 16) | 0xfefefeffL;
63       himagic = ((himagic << 16) << 16) | himagic;
64       lomagic = ((lomagic << 16) << 16) | lomagic;
65     }
66   if (sizeof (longword) > 8)
67     abort ();
68
69   /* Instead of the traditional loop which tests each character,
70      we will test a longword at a time.  The tricky part is testing
71      if *any of the four* bytes in the longword in question are zero.  */
72   for (;;)
73     {
74       /* We tentatively exit the loop if adding MAGIC_BITS to
75          LONGWORD fails to change any of the hole bits of LONGWORD.
76
77          1) Is this safe?  Will it catch all the zero bytes?
78          Suppose there is a byte with all zeros.  Any carry bits
79          propagating from its left will fall into the hole at its
80          least significant bit and stop.  Since there will be no
81          carry from its most significant bit, the LSB of the
82          byte to the left will be unchanged, and the zero will be
83          detected.
84
85          2) Is this worthwhile?  Will it ignore everything except
86          zero bytes?  Suppose every byte of LONGWORD has a bit set
87          somewhere.  There will be a carry into bit 8.  If bit 8
88          is set, this will carry into bit 16.  If bit 8 is clear,
89          one of bits 9-15 must be set, so there will be a carry
90          into bit 16.  Similarly, there will be a carry into bit
91          24.  If one of bits 24-30 is set, there will be a carry
92          into bit 31, so all of the hole bits will be changed.
93
94          The one misfire occurs when bits 24-30 are clear and bit
95          31 is set; in this case, the hole at bit 31 is not
96          changed.  If we had access to the processor carry flag,
97          we could close this loophole by putting the fourth hole
98          at bit 32!
99
100          So it ignores everything except 128's, when they're aligned
101          properly.  */
102
103       longword = *longword_ptr++;
104
105       if (
106 #if 0
107           /* Add MAGIC_BITS to LONGWORD.  */
108           (((longword + magic_bits)
109
110             /* Set those bits that were unchanged by the addition.  */
111             ^ ~longword)
112
113            /* Look at only the hole bits.  If any of the hole bits
114               are unchanged, most likely one of the bytes was a
115               zero.  */
116            & ~magic_bits)
117 #else
118           ((longword - lomagic) & himagic)
119 #endif
120           != 0)
121         {
122           /* Which of the bytes was the zero?  If none of them were, it was
123              a misfire; continue the search.  */
124
125           const char *cp = (const char *) (longword_ptr - 1);
126
127           if (cp[0] == 0)
128             return cp - str;
129           if (cp[1] == 0)
130             return cp - str + 1;
131           if (cp[2] == 0)
132             return cp - str + 2;
133           if (cp[3] == 0)
134             return cp - str + 3;
135           if (sizeof (longword) > 4)
136             {
137               if (cp[4] == 0)
138                 return cp - str + 4;
139               if (cp[5] == 0)
140                 return cp - str + 5;
141               if (cp[6] == 0)
142                 return cp - str + 6;
143               if (cp[7] == 0)
144                 return cp - str + 7;
145             }
146         }
147     }
148 }
149
150 strong_alias(__strlen,strlen)