1 /* strchr with SSE2 with bsf
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
23 # define CFI_PUSH(REG) \
24 cfi_adjust_cfa_offset (4); \
25 cfi_rel_offset (REG, 0)
27 # define CFI_POP(REG) \
28 cfi_adjust_cfa_offset (-4); \
31 # define PUSH(REG) pushl REG; CFI_PUSH (REG)
32 # define POP(REG) popl REG; CFI_POP (REG)
35 # define ENTRANCE PUSH(%edi)
36 # define RETURN POP(%edi); ret; CFI_PUSH(%edi);
42 ENTRY (__strchr_sse2_bsf)
46 movd STR2(%esp), %xmm1
50 punpcklbw %xmm1, %xmm1
51 punpcklbw %xmm1, %xmm1
54 pshufd $0, %xmm1, %xmm1
57 /* Handle unaligned string. */
62 /* Find where NULL is. */
64 /* Check if there is a match. */
66 /* Remove the leading bytes. */
70 je L(unaligned_no_match)
71 /* Check which byte is a match. */
73 /* Is there a NULL? */
78 /* Return NULL if NULL comes first. */
86 L(unaligned_no_match):
94 /* Loop start on aligned string. */
138 /* There is a match. First find where NULL is. */
142 /* Check if NULL comes first. */
156 END (__strchr_sse2_bsf)