strlen.S 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* vi: set sw=8 ts=8: */
  2. /*
  3. * libc/string/sh64/strlen.S
  4. *
  5. * Simplistic strlen() implementation for SHmedia.
  6. *
  7. * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
  8. *
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. The name of the above contributors may not be
  17. * used to endorse or promote products derived from this software
  18. * without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
  21. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. * ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
  24. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. */
  32. #include <features.h>
  33. .section .text..SHmedia32,"ax"
  34. .globl __strlen
  35. .hidden __strlen
  36. .type __strlen,@function
  37. .balign 16
  38. __strlen:
  39. ptabs r18, tr4
  40. /*
  41. * Note: We could easily deal with the NULL case here with a simple
  42. * sanity check, though it seems that the behavior we want is to fault
  43. * in the event that r2 == NULL, so we don't bother.
  44. */
  45. /* beqi r2, 0, tr4 */ ! Sanity check
  46. movi -1, r0
  47. pta/l loop, tr0
  48. loop:
  49. ld.b r2, 0, r1
  50. addi r2, 1, r2
  51. addi r0, 1, r0
  52. bnei/l r1, 0, tr0
  53. or r0, r63, r2
  54. blink tr4, r63
  55. .size __strlen,.-__strlen
  56. strong_alias(__strlen,strlen)