strchr_64.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright 2011 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. #include <linux/types.h>
  15. #include <linux/string.h>
  16. #include <linux/module.h>
  17. #include "string-endian.h"
  18. char *strchr(const char *s, int c)
  19. {
  20. int z, g;
  21. /* Get an aligned pointer. */
  22. const uintptr_t s_int = (uintptr_t) s;
  23. const uint64_t *p = (const uint64_t *)(s_int & -8);
  24. /* Create eight copies of the byte for which we are looking. */
  25. const uint64_t goal = copy_byte(c);
  26. /* Read the first aligned word, but force bytes before the string to
  27. * match neither zero nor goal (we make sure the high bit of each
  28. * byte is 1, and the low 7 bits are all the opposite of the goal
  29. * byte).
  30. */
  31. const uint64_t before_mask = MASK(s_int);
  32. uint64_t v = (*p | before_mask) ^ (goal & __insn_v1shrui(before_mask, 1));
  33. uint64_t zero_matches, goal_matches;
  34. while (1) {
  35. /* Look for a terminating '\0'. */
  36. zero_matches = __insn_v1cmpeqi(v, 0);
  37. /* Look for the goal byte. */
  38. goal_matches = __insn_v1cmpeq(v, goal);
  39. if (__builtin_expect((zero_matches | goal_matches) != 0, 0))
  40. break;
  41. v = *++p;
  42. }
  43. z = CFZ(zero_matches);
  44. g = CFZ(goal_matches);
  45. /* If we found c before '\0' we got a match. Note that if c == '\0'
  46. * then g == z, and we correctly return the address of the '\0'
  47. * rather than NULL.
  48. */
  49. return (g <= z) ? ((char *)p) + (g >> 3) : NULL;
  50. }
  51. EXPORT_SYMBOL(strchr);