clear_user.S 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Based on arch/arm/lib/clear_user.S
  3. *
  4. * Copyright (C) 2012 ARM Ltd.
  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. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/linkage.h>
  19. #include <asm/assembler.h>
  20. .text
  21. /* Prototype: int __clear_user(void *addr, size_t sz)
  22. * Purpose : clear some user memory
  23. * Params : addr - user memory address to clear
  24. * : sz - number of bytes to clear
  25. * Returns : number of bytes NOT cleared
  26. *
  27. * Alignment fixed up by hardware.
  28. */
  29. ENTRY(__clear_user)
  30. mov x2, x1 // save the size for fixup return
  31. subs x1, x1, #8
  32. b.mi 2f
  33. 1:
  34. USER(9f, str xzr, [x0], #8 )
  35. subs x1, x1, #8
  36. b.pl 1b
  37. 2: adds x1, x1, #4
  38. b.mi 3f
  39. USER(9f, str wzr, [x0], #4 )
  40. sub x1, x1, #4
  41. 3: adds x1, x1, #2
  42. b.mi 4f
  43. USER(9f, strh wzr, [x0], #2 )
  44. sub x1, x1, #2
  45. 4: adds x1, x1, #1
  46. b.mi 5f
  47. strb wzr, [x0]
  48. 5: mov x0, #0
  49. ret
  50. ENDPROC(__clear_user)
  51. .section .fixup,"ax"
  52. .align 2
  53. 9: mov x0, x2 // return the original size
  54. ret
  55. .previous