1 /* strchrnul - find a character or nul in a string
3 Copyright (C) 2014-2021 Free Software Foundation, Inc.
5 This file is part of the GNU C Library.
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, see
19 <https://www.gnu.org/licenses/>. */
25 * ARMv8-a, AArch64, Advanced SIMD.
49 For each 16-byte chunk we calculate a 64-bit syndrome value with four bits
50 per byte. For even bytes, bits 0-3 are set if the relevant byte matched the
51 requested character or the byte is NUL. Bits 4-7 must be zero. Bits 4-7 are
52 set likewise for odd bytes so that adjacent bytes can be merged. Since the
53 bits in the syndrome reflect the order in which things occur in the original
54 string, counting trailing zeros identifies exactly which byte matched. */
59 dup vrepchr.16b, chrin
60 ld1 {vdata.16b}, [src]
62 dup vrepmask.8h, tmp2w
63 cmeq vhas_chr.16b, vdata.16b, vrepchr.16b
64 cmhs vhas_chr.16b, vhas_chr.16b, vdata.16b
66 and vhas_chr.16b, vhas_chr.16b, vrepmask.16b
67 addp vend.16b, vhas_chr.16b, vhas_chr.16b /* 128->64 */
69 lsr tmp1, tmp1, tmp2 /* Mask padding bits. */
74 add result, srcin, tmp1, lsr 2
80 cmeq vhas_chr.16b, vdata.16b, vrepchr.16b
81 cmhs vhas_chr.16b, vhas_chr.16b, vdata.16b
82 umaxp vend.16b, vhas_chr.16b, vhas_chr.16b
86 and vhas_chr.16b, vhas_chr.16b, vrepmask.16b
87 addp vend.16b, vhas_chr.16b, vhas_chr.16b /* 128->64 */
93 add result, src, tmp1, lsr 2
97 weak_alias (__strchrnul, strchrnul)