strchr_32.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2010 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. #undef strchr
  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 uint32_t *p = (const uint32_t *)(s_int & -4);
  24. /* Create four copies of the byte for which we are looking. */
  25. const uint32_t goal = 0x01010101 * (uint8_t) 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. * Note that this shift count expression works because we know shift
  32. * counts are taken mod 32.
  33. */
  34. const uint32_t before_mask = (1 << (s_int << 3)) - 1;
  35. uint32_t v = (*p | before_mask) ^ (goal & __insn_shrib(before_mask, 1));
  36. uint32_t zero_matches, goal_matches;
  37. while (1) {
  38. /* Look for a terminating '\0'. */
  39. zero_matches = __insn_seqb(v, 0);
  40. /* Look for the goal byte. */
  41. goal_matches = __insn_seqb(v, goal);
  42. if (__builtin_expect(zero_matches | goal_matches, 0))
  43. break;
  44. v = *++p;
  45. }
  46. z = __insn_ctz(zero_matches);
  47. g = __insn_ctz(goal_matches);
  48. /* If we found c before '\0' we got a match. Note that if c == '\0'
  49. * then g == z, and we correctly return the address of the '\0'
  50. * rather than NULL.
  51. */
  52. return (g <= z) ? ((char *)p) + (g >> 3) : NULL;
  53. }
  54. EXPORT_SYMBOL(strchr);