1 /* strnlen - calculate the length of a string with limit.
3 Copyright (C) 2013-2023 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.
47 Process the string in 16-byte aligned chunks. Compute a 64-bit mask with
48 four bits per byte using the shrn instruction. A count trailing zeros then
49 identifies the first zero byte. */
56 ld1 {vdata.16b}, [src]
57 cmeq vhas_chr.16b, vdata.16b, 0
59 shrn vend.8b, vhas_chr.8h, 4 /* 128->64 */
62 cbz synd, L(start_loop)
68 csel result, cntin, result, ls
78 subs cntrem, cntin, tmp
81 /* Make sure that it won't overread by a 16-byte chunk */
82 tbz cntrem, 4, L(loop32_2)
87 cmeq vhas_chr.16b, vdata.16b, 0
88 umaxp vend.16b, vhas_chr.16b, vhas_chr.16b /* 128->64 */
93 subs cntrem, cntrem, 32
94 cmeq vhas_chr.16b, vdata.16b, 0
96 umaxp vend.16b, vhas_chr.16b, vhas_chr.16b /* 128->64 */
102 shrn vend.8b, vhas_chr.8h, 4 /* 128->64 */
103 sub result, src, srcin
105 #ifndef __AARCH64EB__
109 add result, result, synd, lsr 2
111 csel result, cntin, result, ls
115 libc_hidden_def (__strnlen)
116 weak_alias (__strnlen, strnlen)
117 libc_hidden_def (strnlen)