__syscall_rt_sigaction.S 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* Copyright (C) 1998, 2003, 2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Richard Henderson <rth@cygnus.com>, 1998
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <features.h>
  17. #include <sys/syscall.h>
  18. #include <sys/regdef.h>
  19. /* On Alpha we desparately want to avoid having to issue an imb. Ordinarily
  20. the kernel would have to issue one after setting up the signal return
  21. stack, but the Linux rt_sigaction syscall is prepared to accept a pointer
  22. to the sigreturn syscall, instead of inlining it on the stack.
  23. This just about halves signal delivery time. */
  24. .text
  25. .globl __syscall_rt_sigaction
  26. #ifndef __UCLIBC_HAS_THREADS_NATIVE__
  27. .hidden __syscall_rt_sigaction
  28. #endif
  29. .align 4
  30. .ent __syscall_rt_sigaction, 0
  31. __syscall_rt_sigaction:
  32. .frame sp,0,ra,0
  33. ldgp gp,0(pv)
  34. .prologue 1
  35. beq a1, 0f
  36. ldl t0, 8(a1) # sa_flags
  37. /* The unwinder will subtract one from the return address when
  38. attempting to find the call instruction that led us here.
  39. Since we didn't get here via a normal call, if we do nothing
  40. we would pick up the wrong symbol and the wrong FDE. Account
  41. for this by adding a nop to the start of the function and
  42. then skipping it here by adding 4. */
  43. ldah a4, __syscall_sigreturn+4(gp) !gprelhigh
  44. ldah t1, __syscall_rt_sigreturn+4(gp) !gprelhigh
  45. lda a4, __syscall_sigreturn+4(a4) !gprellow
  46. lda t1, __syscall_rt_sigreturn+4(t1) !gprellow
  47. and t0, 0x40, t0 # SA_SIGINFO
  48. cmovne t0, t1, a4
  49. 0: ldi v0, __NR_rt_sigaction
  50. callsys
  51. bne a3, $error
  52. ret
  53. $error:
  54. jmp zero,__syscall_error
  55. .end __syscall_rt_sigaction
  56. __syscall_sigreturn:
  57. nop
  58. mov sp, a0
  59. ldi v0, __NR_sigreturn
  60. callsys
  61. .size __syscall_sigreturn, .-__syscall_sigreturn
  62. .type __syscall_sigreturn, @function
  63. __syscall_rt_sigreturn:
  64. nop
  65. mov sp,a0
  66. ldi v0,__NR_rt_sigreturn
  67. callsys
  68. .size __syscall_rt_sigreturn, .-__syscall_rt_sigreturn
  69. .type __syscall_rt_sigreturn, @function