sigrestorer.S 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 <sys/syscall.h>
  16. #include <linux/version.h>
  17. /* If no SA_RESTORER function was specified by the application we use
  18. one of these. This avoids the need for the kernel to synthesise a return
  19. instruction on the stack, which would involve expensive cache flushes.
  20. Nowadays (2.6 series, and somewhat earlier) the kernel uses a high page
  21. for signal trampolines, so the cache flushes are not an issue. But since
  22. we do not have a vDSO, continue to use these so that we can provide
  23. unwind information.
  24. Start the unwind tables at least one instruction before the signal
  25. trampoline, because the unwinder will assume we are returning after
  26. a call site.
  27. The signal frame layout changed in 2.6.18. */
  28. .global __default_sa_restorer
  29. .type __default_sa_restorer,%function
  30. .align 2
  31. #ifdef __ARM_EABI__
  32. .fnstart
  33. .save {r0-r15}
  34. #if LINUX_VERSION_CODE >= 0x020612
  35. .pad #32
  36. #else
  37. .pad #12
  38. #endif
  39. nop
  40. __default_sa_restorer:
  41. mov r7, $SYS_ify(sigreturn)
  42. swi 0x0
  43. .fnend
  44. #else
  45. __default_sa_restorer:
  46. DO_CALL (sigreturn)
  47. #endif
  48. #ifdef __NR_rt_sigreturn
  49. .global __default_rt_sa_restorer
  50. .type __default_rt_sa_restorer,%function
  51. .align 2
  52. #ifdef __ARM_EABI__
  53. .fnstart
  54. .save {r0-r15}
  55. #if LINUX_VERSION_CODE >= 0x020612
  56. .pad #160
  57. #else
  58. .pad #168
  59. #endif
  60. nop
  61. __default_rt_sa_restorer:
  62. mov r7, $SYS_ify(rt_sigreturn)
  63. swi 0x0
  64. .fnend
  65. #else
  66. __default_rt_sa_restorer:
  67. DO_CALL (rt_sigreturn)
  68. #endif
  69. #endif