clear_user.S 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #include <asm/unwind.h>
  13. .text
  14. /* Prototype: unsigned long arm_clear_user(void *addr, size_t sz)
  15. * Purpose : clear some user memory
  16. * Params : addr - user memory address to clear
  17. * : sz - number of bytes to clear
  18. * Returns : number of bytes NOT cleared
  19. */
  20. ENTRY(__clear_user_std)
  21. WEAK(arm_clear_user)
  22. UNWIND(.fnstart)
  23. UNWIND(.save {r1, lr})
  24. stmfd sp!, {r1, lr}
  25. mov r2, #0
  26. cmp r1, #4
  27. blt 2f
  28. ands ip, r0, #3
  29. beq 1f
  30. cmp ip, #2
  31. strusr r2, r0, 1
  32. strusr r2, r0, 1, le
  33. strusr r2, r0, 1, lt
  34. rsb ip, ip, #4
  35. sub r1, r1, ip @ 7 6 5 4 3 2 1
  36. 1: subs r1, r1, #8 @ -1 -2 -3 -4 -5 -6 -7
  37. strusr r2, r0, 4, pl, rept=2
  38. bpl 1b
  39. adds r1, r1, #4 @ 3 2 1 0 -1 -2 -3
  40. strusr r2, r0, 4, pl
  41. 2: tst r1, #2 @ 1x 1x 0x 0x 1x 1x 0x
  42. strusr r2, r0, 1, ne, rept=2
  43. tst r1, #1 @ x1 x0 x1 x0 x1 x0 x1
  44. it ne @ explicit IT needed for the label
  45. USER( strnebt r2, [r0])
  46. mov r0, #0
  47. ldmfd sp!, {r1, pc}
  48. UNWIND(.fnend)
  49. ENDPROC(arm_clear_user)
  50. ENDPROC(__clear_user_std)
  51. .pushsection .text.fixup,"ax"
  52. .align 0
  53. 9001: ldmfd sp!, {r0, pc}
  54. .popsection