Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / tile / tilegx / strchr.c
blobf0065a8ba4ee87b42e8743ec25b169b7f9403499
1 /* Copyright (C) 2011-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
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 <http://www.gnu.org/licenses/>. */
19 #include <string.h>
20 #include <stdint.h>
21 #include "string-endian.h"
23 #undef strchr
25 char *
26 strchr (const char *s, int c)
28 int z, g;
30 /* Get an aligned pointer. */
31 const uintptr_t s_int = (uintptr_t) s;
32 const uint64_t *p = (const uint64_t *) (s_int & -8);
34 /* Create eight copies of the byte for which we are looking. */
35 const uint64_t goal = copy_byte(c);
37 /* Read the first aligned word, but force bytes before the string to
38 match neither zero nor goal (we make sure the high bit of each byte
39 is 1, and the low 7 bits are all the opposite of the goal byte). */
40 const uint64_t before_mask = MASK (s_int);
41 uint64_t v = (*p | before_mask) ^ (goal & __insn_v1shrui (before_mask, 1));
43 uint64_t zero_matches, goal_matches;
44 while (1)
46 /* Look for a terminating '\0'. */
47 zero_matches = __insn_v1cmpeqi (v, 0);
49 /* Look for the goal byte. */
50 goal_matches = __insn_v1cmpeq (v, goal);
52 if (__builtin_expect ((zero_matches | goal_matches) != 0, 0))
53 break;
55 v = *++p;
58 z = CFZ (zero_matches);
59 g = CFZ (goal_matches);
61 /* If we found c before '\0' we got a match. Note that if c == '\0'
62 then g == z, and we correctly return the address of the '\0'
63 rather than NULL. */
64 return (g <= z) ? ((char *) p) + (g >> 3) : NULL;
66 weak_alias (strchr, index)
67 libc_hidden_builtin_def (strchr)