strlen.S 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright (C) 1998 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Code contributed by Matthew Wilcox <willy@odie.barnet.ac.uk>
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <endian.h>
  17. #include <sys/syscall.h>
  18. /* size_t strlen(const char *S)
  19. * entry: r0 -> string
  20. * exit: r0 = len
  21. */
  22. .global strlen
  23. .set strlen,__strlen
  24. .text
  25. .global __strlen
  26. .hidden __strlen
  27. .type __strlen,%function
  28. .align 4
  29. __strlen:
  30. bic r1, r0, $3 @ addr of word containing first byte
  31. ldr r2, [r1], $4 @ get the first word
  32. ands r3, r0, $3 @ how many bytes are duff?
  33. rsb r0, r3, $0 @ get - that number into counter.
  34. beq Laligned @ skip into main check routine if no
  35. @ more
  36. #if __BYTE_ORDER == __BIG_ENDIAN
  37. orr r2, r2, $0xff000000 @ set this byte to non-zero
  38. subs r3, r3, $1 @ any more to do?
  39. orrgt r2, r2, $0x00ff0000 @ if so, set this byte
  40. subs r3, r3, $1 @ more?
  41. orrgt r2, r2, $0x0000ff00 @ then set.
  42. #else
  43. orr r2, r2, $0x000000ff @ set this byte to non-zero
  44. subs r3, r3, $1 @ any more to do?
  45. orrgt r2, r2, $0x0000ff00 @ if so, set this byte
  46. subs r3, r3, $1 @ more?
  47. orrgt r2, r2, $0x00ff0000 @ then set.
  48. #endif
  49. Laligned: @ here, we have a word in r2. Does it
  50. tst r2, $0x000000ff @ contain any zeroes?
  51. tstne r2, $0x0000ff00 @
  52. tstne r2, $0x00ff0000 @
  53. tstne r2, $0xff000000 @
  54. addne r0, r0, $4 @ if not, the string is 4 bytes longer
  55. ldrne r2, [r1], $4 @ and we continue to the next word
  56. bne Laligned @
  57. Llastword: @ drop through to here once we find a
  58. #if __BYTE_ORDER == __BIG_ENDIAN
  59. tst r2, $0xff000000 @ word that has a zero byte in it
  60. addne r0, r0, $1 @
  61. tstne r2, $0x00ff0000 @ and add up to 3 bytes on to it
  62. addne r0, r0, $1 @
  63. tstne r2, $0x0000ff00 @ (if first three all non-zero, 4th
  64. addne r0, r0, $1 @ must be zero)
  65. #else
  66. tst r2, $0x000000ff @
  67. addne r0, r0, $1 @
  68. tstne r2, $0x0000ff00 @ and add up to 3 bytes on to it
  69. addne r0, r0, $1 @
  70. tstne r2, $0x00ff0000 @ (if first three all non-zero, 4th
  71. addne r0, r0, $1 @ must be zero)
  72. #endif
  73. mov pc,lr
  74. .size __strlen,.-__strlen