clone.S 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Wrapper around clone system call.
  2. Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  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 "ppc_asm.h"
  18. #define _ERRNO_H 1
  19. #include <bits/errno.h>
  20. #include <sys/syscall.h>
  21. /* This is the only really unusual system call in PPC linux, but not
  22. because of any weirdness in the system call itself; because of
  23. all the freaky stuff we have to do to make the call useful. */
  24. /* int [r3] clone(int (*fn)(void *arg) [r3], void *child_stack [r4],
  25. int flags [r5], void *arg [r6]); */
  26. #ifdef __NR_clone
  27. .globl clone
  28. .type clone,@function
  29. .align 2
  30. clone:
  31. /* Check for child_stack == NULL || fn == NULL. */
  32. cmpwi cr0,r4,0
  33. cmpwi cr1,r3,0
  34. cror cr0*4+eq,cr1*4+eq,cr0*4+eq
  35. beq- cr0,.Lbadargs
  36. /* Set up stack frame for parent. */
  37. stwu r1,-32(r1)
  38. stmw r29,16(r1)
  39. /* Set up stack frame for child. */
  40. clrrwi r4,r4,4
  41. li r0,0
  42. stwu r0,-16(r4)
  43. /* Save fn, args, stack across syscall. */
  44. mr r29,r3 /* Function in r29. */
  45. mr r30,r4 /* Stack pointer in r30. */
  46. mr r31,r6 /* Argument in r31. */
  47. /* 'flags' argument is first parameter to clone syscall. (The other
  48. argument is the stack pointer, already in r4.) */
  49. mr r3,r5
  50. /* Do the call. */
  51. li 0, __NR_clone
  52. sc
  53. /* Check for child process. */
  54. cmpwi cr1,r3,0
  55. crandc cr1*4+eq,cr1*4+eq,cr0*4+so
  56. bne- cr1,.Lparent /* The '-' is to minimise the race. */
  57. /* On at least mklinux DR3a5, clone() doesn't actually change
  58. the stack pointer. I'm pretty sure this is a bug, because
  59. it adds a race condition if a signal is sent to a thread
  60. just after it is created (in the previous three instructions). */
  61. mr r1,r30
  62. /* Call procedure. */
  63. mtctr r29
  64. mr r3,r31
  65. bctrl
  66. /* Call _exit with result from procedure. */
  67. b HIDDEN_JUMPTARGET(_exit)
  68. .Lparent:
  69. /* Parent. Restore registers & return. */
  70. lmw r29,16(r1)
  71. addi r1,r1,32
  72. bnslr+
  73. b __syscall_error
  74. .Lbadargs:
  75. li r3,EINVAL
  76. b __syscall_error
  77. .size clone,.-clone
  78. #endif