sigrestorer.S 2.0 KB

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