sysdep-cancel.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* Cancellable system call stubs. Linux/PowerPC version.
  2. Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>, 2003.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #include <sysdep.h>
  18. #include <tls.h>
  19. #ifndef __ASSEMBLER__
  20. # include <nptl/pthreadP.h>
  21. #endif
  22. #if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
  23. # undef PSEUDO
  24. # define PSEUDO(name, syscall_name, args) \
  25. .section ".text"; \
  26. ENTRY (name) \
  27. cfi_startproc; \
  28. SINGLE_THREAD_P; \
  29. bne- .Lpseudo_cancel; \
  30. .type __##syscall_name##_nocancel,@function; \
  31. .globl __##syscall_name##_nocancel; \
  32. __##syscall_name##_nocancel: \
  33. DO_CALL (SYS_ify (syscall_name)); \
  34. PSEUDO_RET; \
  35. .size __##syscall_name##_nocancel,.-__##syscall_name##_nocancel; \
  36. .Lpseudo_cancel: \
  37. stwu 1,-48(1); \
  38. cfi_adjust_cfa_offset (48); \
  39. mflr 9; \
  40. stw 9,52(1); \
  41. cfi_offset (lr, 4); \
  42. CGOTSETUP; \
  43. DOCARGS_##args; /* save syscall args around CENABLE. */ \
  44. CENABLE; \
  45. stw 3,16(1); /* store CENABLE return value (MASK). */ \
  46. UNDOCARGS_##args; /* restore syscall args. */ \
  47. DO_CALL (SYS_ify (syscall_name)); \
  48. mfcr 0; /* save CR/R3 around CDISABLE. */ \
  49. stw 3,8(1); \
  50. stw 0,12(1); \
  51. lwz 3,16(1); /* pass MASK to CDISABLE. */ \
  52. CDISABLE; \
  53. lwz 4,52(1); \
  54. lwz 0,12(1); /* restore CR/R3. */ \
  55. lwz 3,8(1); \
  56. CGOTRESTORE; \
  57. mtlr 4; \
  58. mtcr 0; \
  59. addi 1,1,48; \
  60. cfi_endproc;
  61. # define DOCARGS_0
  62. # define UNDOCARGS_0
  63. # define DOCARGS_1 stw 3,20(1); DOCARGS_0
  64. # define UNDOCARGS_1 lwz 3,20(1); UNDOCARGS_0
  65. # define DOCARGS_2 stw 4,24(1); DOCARGS_1
  66. # define UNDOCARGS_2 lwz 4,24(1); UNDOCARGS_1
  67. # define DOCARGS_3 stw 5,28(1); DOCARGS_2
  68. # define UNDOCARGS_3 lwz 5,28(1); UNDOCARGS_2
  69. # define DOCARGS_4 stw 6,32(1); DOCARGS_3
  70. # define UNDOCARGS_4 lwz 6,32(1); UNDOCARGS_3
  71. # define DOCARGS_5 stw 7,36(1); DOCARGS_4
  72. # define UNDOCARGS_5 lwz 7,36(1); UNDOCARGS_4
  73. # define DOCARGS_6 stw 8,40(1); DOCARGS_5
  74. # define UNDOCARGS_6 lwz 8,40(1); UNDOCARGS_5
  75. # define CGOTSETUP
  76. # define CGOTRESTORE
  77. # ifdef IS_IN_libpthread
  78. # define CENABLE bl __pthread_enable_asynccancel@local
  79. # define CDISABLE bl __pthread_disable_asynccancel@local
  80. # elif !defined NOT_IN_libc
  81. # define CENABLE bl __libc_enable_asynccancel@local
  82. # define CDISABLE bl __libc_disable_asynccancel@local
  83. # elif defined IS_IN_librt
  84. # define CENABLE bl JUMPTARGET(__librt_enable_asynccancel)
  85. # define CDISABLE bl JUMPTARGET(__librt_disable_asynccancel)
  86. # if defined HAVE_AS_REL16 && defined __PIC__
  87. # undef CGOTSETUP
  88. # define CGOTSETUP \
  89. bcl 20,31,1f; \
  90. 1: stw 30,44(1); \
  91. mflr 30; \
  92. addis 30,30,_GLOBAL_OFFSET_TABLE-1b@ha; \
  93. addi 30,30,_GLOBAL_OFFSET_TABLE-1b@l
  94. # undef CGOTRESTORE
  95. # define CGOTRESTORE \
  96. lwz 30,44(1)
  97. # endif
  98. # else
  99. # error Unsupported library
  100. # endif
  101. # ifndef __ASSEMBLER__
  102. # define SINGLE_THREAD_P \
  103. __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
  104. header.multiple_threads) == 0, 1)
  105. # else
  106. # define SINGLE_THREAD_P \
  107. lwz 10,MULTIPLE_THREADS_OFFSET(2); \
  108. cmpwi 10,0
  109. # endif
  110. #elif !defined __ASSEMBLER__
  111. # define SINGLE_THREAD_P (1)
  112. # define NO_CANCELLATION 1
  113. #endif