1 /* rawmemchr (str, ch) -- Return pointer to first occurrence of CH in STR.
3 Copyright (C) 1999, 2002 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Andreas Schwab <schwab@gnu.org>.
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.
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.
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
23 #include "asm-syntax.h"
27 /* Save the callee-saved registers we use. */
28 movel R(d2),MEM_PREDEC(sp)
29 movel R(d3),MEM_PREDEC(sp)
31 /* Get string pointer and character. */
32 movel MEM_DISP(sp,12),R(a0)
33 moveb MEM_DISP(sp,19),R(d0)
35 /* Distribute the character to all bytes of a longword. */
43 /* First search for the character one byte at a time until the
44 pointer is aligned to a longword boundary. */
67 /* Load the magic bits. Unlike the generic implementation we can
68 use the carry bit as the fourth hole. */
69 movel #0xfefefeff,R(d3)
71 /* We exit the loop if adding MAGIC_BITS to LONGWORD fails to
72 change any of the hole bits of LONGWORD.
74 1) Is this safe? Will it catch all the zero bytes?
75 Suppose there is a byte with all zeros. Any carry bits
76 propagating from its left will fall into the hole at its
77 least significant bit and stop. Since there will be no
78 carry from its most significant bit, the LSB of the
79 byte to the left will be unchanged, and the zero will be
82 2) Is this worthwhile? Will it ignore everything except
83 zero bytes? Suppose every byte of LONGWORD has a bit set
84 somewhere. There will be a carry into bit 8. If bit 8
85 is set, this will carry into bit 16. If bit 8 is clear,
86 one of bits 9-15 must be set, so there will be a carry
87 into bit 16. Similarly, there will be a carry into bit
88 24. If one of bits 24-31 is set, there will be a carry
89 into bit 32 (=carry flag), so all of the hole bits will
92 3) But wait! Aren't we looking for C, not zero?
93 Good point. So what we do is XOR LONGWORD with a longword,
94 each of whose bytes is C. This turns each byte that is C
98 /* Get the longword in question. */
99 movel MEM_POSTINC(a0),R(d1)
100 /* XOR with the byte we search for. */
103 /* Add the magic value. We get carry bits reported for each byte
108 /* Check the fourth carry bit before it is clobbered by the next
109 XOR. If it is not set we have a hit. */
112 /* We are only interested in carry bits that change due to the
113 previous add, so remove original bits. */
116 /* Now test for the other three overflow bits.
117 Set all non-carry bits. */
119 /* Add 1 to get zero if all carry bits were set. */
122 /* If we don't get zero then at least one byte of the word equals
126 /* Get the longword in question. */
127 movel MEM_POSTINC(a0),R(d1)
128 /* XOR with the byte we search for. */
131 /* Add the magic value. We get carry bits reported for each byte
136 /* Check the fourth carry bit before it is clobbered by the next
137 XOR. If it is not set we have a hit. */
140 /* We are only interested in carry bits that change due to the
141 previous add, so remove original bits */
144 /* Now test for the other three overflow bits.
145 Set all non-carry bits. */
147 /* Add 1 to get zero if all carry bits were set. */
150 /* If we don't get zero then at least one byte of the word equals
155 /* We have a hit. Check to see which byte it was. First
156 compensate for the autoincrement in the loop. */
171 /* Otherwise the fourth byte must equal C. */
174 movel MEM_POSTINC(sp),R(d3)
175 movel MEM_POSTINC(sp),R(d2)
179 libc_hidden_def (__rawmemchr)
180 weak_alias (__rawmemchr, rawmemchr)