1 /* strchrnul (str, ch) -- Return pointer to first occurrence of CH in STR
4 Copyright (C) 1999 Free Software Foundation, Inc.
5 This file is part of the GNU C Library.
6 Contributed by Andreas Schwab <schwab@gnu.org>.
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public
19 License along with the GNU C Library; if not, write to the Free
20 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include "asm-syntax.h"
28 /* Save the callee-saved registers we use. */
29 movel R(d2),MEM_PREDEC(sp)
30 movel R(d3),MEM_PREDEC(sp)
32 /* Get string pointer and character. */
33 movel MEM_DISP(sp,12),R(a0)
34 moveb MEM_DISP(sp,19),R(d0)
36 /* Distribute the character to all bytes of a longword. */
44 /* First search for the character one byte at a time until the
45 pointer is aligned to a longword boundary. */
77 /* Load the magic bits. Unlike the generic implementation we can
78 use the carry bit as the fourth hole. */
79 movel #0xfefefeff,R(d3)
81 /* We exit the loop if adding MAGIC_BITS to LONGWORD fails to
82 change any of the hole bits of LONGWORD.
84 1) Is this safe? Will it catch all the zero bytes?
85 Suppose there is a byte with all zeros. Any carry bits
86 propagating from its left will fall into the hole at its
87 least significant bit and stop. Since there will be no
88 carry from its most significant bit, the LSB of the
89 byte to the left will be unchanged, and the zero will be
92 2) Is this worthwhile? Will it ignore everything except
93 zero bytes? Suppose every byte of LONGWORD has a bit set
94 somewhere. There will be a carry into bit 8. If bit 8
95 is set, this will carry into bit 16. If bit 8 is clear,
96 one of bits 9-15 must be set, so there will be a carry
97 into bit 16. Similarly, there will be a carry into bit
98 24. If one of bits 24-31 is set, there will be a carry
99 into bit 32 (=carry flag), so all of the hole bits will
102 3) But wait! Aren't we looking for C, not zero?
103 Good point. So what we do is XOR LONGWORD with a longword,
104 each of whose bytes is C. This turns each byte that is C
108 /* Get the longword in question. */
109 movel MEM_POSTINC(a0),R(d1)
110 /* XOR with the byte we search for. */
113 /* Add the magic value. We get carry bits reported for each byte
118 /* Check the fourth carry bit before it is clobbered by the next
119 XOR. If it is not set we have a hit. */
122 /* We are only interested in carry bits that change due to the
123 previous add, so remove original bits. */
126 /* Now test for the other three overflow bits.
127 Set all non-carry bits. */
129 /* Add 1 to get zero if all carry bits were set. */
132 /* If we don't get zero then at least one byte of the word equals
136 /* Next look for a NUL byte.
137 Restore original longword without reload. */
139 /* Add the magic value. We get carry bits reported for each byte
144 /* Check the fourth carry bit before it is clobbered by the next
145 XOR. If it is not set we have a hit. */
148 /* We are only interested in carry bits that change due to the
149 previous add, so remove original bits. */
152 /* Now test for the other three overflow bits.
153 Set all non-carry bits. */
155 /* Add 1 to get zero if all carry bits were set. */
158 /* If we don't get zero then at least one byte of the word was
159 NUL. Otherwise continue with the next longword. */
162 /* Get the longword in question. */
163 movel MEM_POSTINC(a0),R(d1)
164 /* XOR with the byte we search for. */
167 /* Add the magic value. We get carry bits reported for each byte
172 /* Check the fourth carry bit before it is clobbered by the next
173 XOR. If it is not set we have a hit. */
176 /* We are only interested in carry bits that change due to the
177 previous add, so remove original bits */
180 /* Now test for the other three overflow bits.
181 Set all non-carry bits. */
183 /* Add 1 to get zero if all carry bits were set. */
186 /* If we don't get zero then at least one byte of the word equals
190 /* Next look for a NUL byte.
191 Restore original longword without reload. */
193 /* Add the magic value. We get carry bits reported for each byte
198 /* Check the fourth carry bit before it is clobbered by the next
199 XOR. If it is not set we have a hit. */
202 /* We are only interested in carry bits that change due to the
203 previous add, so remove original bits */
206 /* Now test for the other three overflow bits.
207 Set all non-carry bits. */
209 /* Add 1 to get zero if all carry bits were set. */
212 /* If we don't get zero then at least one byte of the word was
213 NUL. Otherwise continue with the next longword. */
217 /* We have a hit. Check to see which byte it was. First
218 compensate for the autoincrement in the loop. */
242 /* Otherwise the fourth byte must equal C or be NUL. */
245 movel MEM_POSTINC(sp),R(d3)
246 movel MEM_POSTINC(sp),R(d2)
250 weak_alias (__strchrnul, strchrnul)