strlen.S 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. .section .text..SHmedia32,"ax"
  33. .globl strlen
  34. .set strlen,__strlen
  35. .globl __strlen
  36. .hidden __strlen
  37. .type __strlen,@function
  38. .balign 16
  39. __strlen:
  40. ptabs r18, tr4
  41. /*
  42. * Note: We could easily deal with the NULL case here with a simple
  43. * sanity check, though it seems that the behavior we want is to fault
  44. * in the event that r2 == NULL, so we don't bother.
  45. */
  46. /* beqi r2, 0, tr4 */ ! Sanity check
  47. movi -1, r0
  48. pta/l loop, tr0
  49. loop:
  50. ld.b r2, 0, r1
  51. addi r2, 1, r2
  52. addi r0, 1, r0
  53. bnei/l r1, 0, tr0
  54. or r0, r63, r2
  55. blink tr4, r63
  56. .size __strlen,.-__strlen