1 /* strcspn (str, ss) -- Return the length of the initial segment of STR
2 which contains no characters from SS.
4 Copyright (C) 1994-2014 Free Software Foundation, Inc.
5 This file is part of the GNU C Library.
6 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>
7 Bug fixes by Alan Modra <Alan@SPRI.Levels.UniSA.Edu.Au>
9 The GNU C Library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
14 The GNU C Library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public
20 License along with the GNU C Library; if not, see
21 <http://www.gnu.org/licenses/>. */
24 #include "asm-syntax.h"
26 #define PARMS 4 /* no space for saved regs */
36 /* First we create a table with flags for all possible characters.
37 For the ASCII (7bit/8bit) or ISO-8859-X character sets which are
38 supported by the C string functions we have 256 characters.
39 Before inserting marks for the stop characters we clear the whole
40 table. The unrolled form is much faster than a loop. */
41 xorl %ecx, %ecx /* %ecx = 0 !!! */
43 pushl %ecx /* make a 256 bytes long block filled with 0 */
44 cfi_adjust_cfa_offset (4)
46 cfi_adjust_cfa_offset (4)
48 cfi_adjust_cfa_offset (4)
50 cfi_adjust_cfa_offset (4)
52 cfi_adjust_cfa_offset (4)
54 cfi_adjust_cfa_offset (4)
56 cfi_adjust_cfa_offset (4)
58 cfi_adjust_cfa_offset (4)
60 cfi_adjust_cfa_offset (4)
62 cfi_adjust_cfa_offset (4)
64 cfi_adjust_cfa_offset (4)
66 cfi_adjust_cfa_offset (4)
68 cfi_adjust_cfa_offset (4)
70 cfi_adjust_cfa_offset (4)
72 cfi_adjust_cfa_offset (4)
74 cfi_adjust_cfa_offset (4)
76 cfi_adjust_cfa_offset (4)
78 cfi_adjust_cfa_offset (4)
80 cfi_adjust_cfa_offset (4)
82 cfi_adjust_cfa_offset (4)
84 cfi_adjust_cfa_offset (4)
86 cfi_adjust_cfa_offset (4)
88 cfi_adjust_cfa_offset (4)
90 cfi_adjust_cfa_offset (4)
92 cfi_adjust_cfa_offset (4)
94 cfi_adjust_cfa_offset (4)
96 cfi_adjust_cfa_offset (4)
98 cfi_adjust_cfa_offset (4)
100 cfi_adjust_cfa_offset (4)
102 cfi_adjust_cfa_offset (4)
104 cfi_adjust_cfa_offset (4)
106 cfi_adjust_cfa_offset (4)
108 cfi_adjust_cfa_offset (4)
110 cfi_adjust_cfa_offset (4)
112 cfi_adjust_cfa_offset (4)
114 cfi_adjust_cfa_offset (4)
116 cfi_adjust_cfa_offset (4)
118 cfi_adjust_cfa_offset (4)
120 cfi_adjust_cfa_offset (4)
122 cfi_adjust_cfa_offset (4)
124 cfi_adjust_cfa_offset (4)
126 cfi_adjust_cfa_offset (4)
128 cfi_adjust_cfa_offset (4)
130 cfi_adjust_cfa_offset (4)
132 cfi_adjust_cfa_offset (4)
134 cfi_adjust_cfa_offset (4)
136 cfi_adjust_cfa_offset (4)
138 cfi_adjust_cfa_offset (4)
140 cfi_adjust_cfa_offset (4)
142 cfi_adjust_cfa_offset (4)
144 cfi_adjust_cfa_offset (4)
146 cfi_adjust_cfa_offset (4)
148 cfi_adjust_cfa_offset (4)
150 cfi_adjust_cfa_offset (4)
152 cfi_adjust_cfa_offset (4)
154 cfi_adjust_cfa_offset (4)
156 cfi_adjust_cfa_offset (4)
158 cfi_adjust_cfa_offset (4)
159 pushl $0 /* These immediate values make the label 2 */
160 cfi_adjust_cfa_offset (4)
161 pushl $0 /* to be aligned on a 16 byte boundary to */
162 cfi_adjust_cfa_offset (4)
163 pushl $0 /* get a better performance of the loop. */
164 cfi_adjust_cfa_offset (4)
166 cfi_adjust_cfa_offset (4)
168 cfi_adjust_cfa_offset (4)
170 cfi_adjust_cfa_offset (4)
172 /* For understanding the following code remember that %ecx == 0 now.
173 Although all the following instruction only modify %cl we always
174 have a correct zero-extended 32-bit value in %ecx. */
176 /* Don't change the "testb $0xff,%%cl" to "testb %%cl,%%cl". We want
177 longer instructions so that the next loop aligns without adding nops. */
179 L(2): movb (%eax), %cl /* get byte from stopset */
180 testb %cl, %cl /* is NUL char? */
181 jz L(1) /* yes => start compare loop */
182 movb %cl, (%esp,%ecx) /* set corresponding byte in stopset table */
184 movb 1(%eax), %cl /* get byte from stopset */
185 testb $0xff, %cl /* is NUL char? */
186 jz L(1) /* yes => start compare loop */
187 movb %cl, (%esp,%ecx) /* set corresponding byte in stopset table */
189 movb 2(%eax), %cl /* get byte from stopset */
190 testb $0xff, %cl /* is NUL char? */
191 jz L(1) /* yes => start compare loop */
192 movb %cl, (%esp,%ecx) /* set corresponding byte in stopset table */
194 movb 3(%eax), %cl /* get byte from stopset */
195 addl $4, %eax /* increment stopset pointer */
196 movb %cl, (%esp,%ecx) /* set corresponding byte in stopset table */
197 testb $0xff, %cl /* is NUL char? */
198 jnz L(2) /* no => process next dword from stopset */
200 L(1): leal -4(%edx), %eax /* prepare loop */
202 /* We use a neat trick for the following loop. Normally we would
203 have to test for two termination conditions
204 1. a character in the stopset was found
206 2. the end of the string was found
207 But as a sign that the character is in the stopset we store its
208 value in the table. But the value of NUL is NUL so the loop
209 terminates for NUL in every case. */
211 L(3): addl $4, %eax /* adjust pointer for full loop round */
213 movb (%eax), %cl /* get byte from string */
214 cmpb %cl, (%esp,%ecx) /* is it contained in stopset? */
215 je L(4) /* yes => return */
217 movb 1(%eax), %cl /* get byte from string */
218 cmpb %cl, (%esp,%ecx) /* is it contained in stopset? */
219 je L(5) /* yes => return */
221 movb 2(%eax), %cl /* get byte from string */
222 cmpb %cl, (%esp,%ecx) /* is it contained in stopset? */
223 je L(6) /* yes => return */
225 movb 3(%eax), %cl /* get byte from string */
226 cmpb %cl, (%esp,%ecx) /* is it contained in stopset? */
227 jne L(3) /* yes => return */
229 incl %eax /* adjust pointer */
233 L(4): addl $256, %esp /* remove stopset */
234 cfi_adjust_cfa_offset (-256)
235 subl %edx, %eax /* we have to return the number of valid
236 characters, so compute distance to first
237 non-valid character */
240 libc_hidden_builtin_def (strcspn)