sigrestorer.S 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* Copyright (C) 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #include <bits/arm_asm.h>
  16. #include <sys/syscall.h>
  17. #include <linux/version.h>
  18. /* If no SA_RESTORER function was specified by the application we use
  19. one of these. This avoids the need for the kernel to synthesise a return
  20. instruction on the stack, which would involve expensive cache flushes.
  21. Nowadays (2.6 series, and somewhat earlier) the kernel uses a high page
  22. for signal trampolines, so the cache flushes are not an issue. But since
  23. we do not have a vDSO, continue to use these so that we can provide
  24. unwind information.
  25. Start the unwind tables at least one instruction before the signal
  26. trampoline, because the unwinder will assume we are returning after
  27. a call site.
  28. The signal frame layout changed in 2.6.18. */
  29. .global __default_sa_restorer
  30. .type __default_sa_restorer,%function
  31. .align 2
  32. #ifdef __ARM_EABI__
  33. #ifdef __thumb__
  34. .thumb_func
  35. #endif
  36. .fnstart
  37. .save {r0-r15}
  38. #if LINUX_VERSION_CODE >= 0x020612
  39. .pad #32
  40. #else
  41. .pad #12
  42. #endif
  43. nop
  44. __default_sa_restorer:
  45. mov r7, $SYS_ify(sigreturn)
  46. swi 0x0
  47. .fnend
  48. #else
  49. __default_sa_restorer:
  50. DO_CALL (sigreturn)
  51. #endif
  52. #ifdef __NR_rt_sigreturn
  53. .global __default_rt_sa_restorer
  54. .type __default_rt_sa_restorer,%function
  55. .align 2
  56. #ifdef __ARM_EABI__
  57. #ifdef __thumb__
  58. .thumb_func
  59. #endif
  60. .fnstart
  61. .save {r0-r15}
  62. #if LINUX_VERSION_CODE >= 0x020612
  63. .pad #160
  64. #else
  65. .pad #168
  66. #endif
  67. nop
  68. __default_rt_sa_restorer:
  69. mov r7, $SYS_ify(rt_sigreturn)
  70. swi 0x0
  71. .fnend
  72. #else
  73. __default_rt_sa_restorer:
  74. DO_CALL (rt_sigreturn)
  75. #endif
  76. #endif