clone.S 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* Copyright (C) 2003 Free Software Foudnation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Alexandre Oliva <aoliva@redhat.com>, 2003.
  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. /* clone() is even more special than fork() as it mucks with stacks
  17. and invokes a function in the right context after its all over. */
  18. #include <asm/unistd.h>
  19. #define _ERRNO_H 1
  20. #include <bits/errno.h>
  21. .text
  22. .globl __clone
  23. .type __clone,@function
  24. /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */
  25. __clone:
  26. /* Sanity check arguments. */
  27. cmp.p gr8, gr0, icc0
  28. cmp gr9, gr0, icc1
  29. mov.p gr8, gr4
  30. beq icc0, #0, .Lerror
  31. mov.p gr11, gr5
  32. beq icc1, #0, .Lerror
  33. mov.p gr10, gr8
  34. setlos #__NR_clone, gr7
  35. tra gr0,gr0
  36. cmp gr8, gr0, icc0
  37. bgtlr icc0, #1
  38. beq icc0, #0, .Lthread_start
  39. .Lsys_error:
  40. sethi.p #gotofffuncdeschi(__syscall_error), gr14
  41. setlo #gotofffuncdesclo(__syscall_error), gr14
  42. ldd @(gr14, gr15), gr14
  43. jmpl @(gr14, gr0)
  44. .Lerror:
  45. setlos.p #-EINVAL, gr7
  46. bra .Lsys_error
  47. ###############################################################################
  48. #
  49. # come here as the new thread [GR4 is fn, GR5 is arg]
  50. #
  51. ###############################################################################
  52. .Lthread_start:
  53. /* Save the PIC register. */
  54. mov gr15, gr17
  55. /* Call the user's function. */
  56. ldd.p @(gr4, gr0), gr14
  57. mov gr5, gr8
  58. calll @(gr14, gr0)
  59. /* Call _exit, rather simply inlining the syscall, such that
  60. breakpoints work.*/
  61. mov.p gr17, gr15
  62. call _exit
  63. /* Should never get here. */
  64. jmpl @(gr0, gr0)
  65. .size __clone,.-__clone
  66. .weak clone
  67. clone = __clone