clear_user.S 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * linux/arch/arm/lib/clear_user.S
  3. *
  4. * Copyright (C) 1995, 1996,1997,1998 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/linkage.h>
  11. #include <asm/assembler.h>
  12. .text
  13. /* Prototype: int __clear_user(void *addr, size_t sz)
  14. * Purpose : clear some user memory
  15. * Params : addr - user memory address to clear
  16. * : sz - number of bytes to clear
  17. * Returns : number of bytes NOT cleared
  18. */
  19. ENTRY(__clear_user_std)
  20. WEAK(__clear_user)
  21. stmfd sp!, {r1, lr}
  22. mov r2, #0
  23. cmp r1, #4
  24. blt 2f
  25. ands ip, r0, #3
  26. beq 1f
  27. cmp ip, #2
  28. USER( strbt r2, [r0], #1)
  29. USER( strlebt r2, [r0], #1)
  30. USER( strltbt r2, [r0], #1)
  31. rsb ip, ip, #4
  32. sub r1, r1, ip @ 7 6 5 4 3 2 1
  33. 1: subs r1, r1, #8 @ -1 -2 -3 -4 -5 -6 -7
  34. USER( strplt r2, [r0], #4)
  35. USER( strplt r2, [r0], #4)
  36. bpl 1b
  37. adds r1, r1, #4 @ 3 2 1 0 -1 -2 -3
  38. USER( strplt r2, [r0], #4)
  39. 2: tst r1, #2 @ 1x 1x 0x 0x 1x 1x 0x
  40. USER( strnebt r2, [r0], #1)
  41. USER( strnebt r2, [r0], #1)
  42. tst r1, #1 @ x1 x0 x1 x0 x1 x0 x1
  43. USER( strnebt r2, [r0])
  44. mov r0, #0
  45. ldmfd sp!, {r1, pc}
  46. ENDPROC(__clear_user)
  47. .section .fixup,"ax"
  48. .align 0
  49. 9001: ldmfd sp!, {r0, pc}
  50. .previous