clone.S 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* Copyright (C) 2003, 2004 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 <features.h>
  19. #include <asm/unistd.h>
  20. #define _ERRNO_H 1
  21. #include <bits/errno.h>
  22. .text
  23. .globl clone
  24. .type clone,@function
  25. /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */
  26. clone:
  27. /* Sanity check arguments. */
  28. cmp.p gr8, gr0, icc0
  29. cmp gr9, gr0, icc1
  30. mov.p gr8, gr4
  31. beq icc0, #0, .Lerror
  32. mov.p gr11, gr5
  33. beq icc1, #0, .Lerror
  34. mov.p gr10, gr8
  35. setlos #__NR_clone, gr7
  36. tra gr0,gr0
  37. cmp.p gr8, gr0, icc0
  38. setlos #-4096, gr6
  39. cmp.p gr8, gr6, icc1
  40. beq icc0, #0, .Lthread_start
  41. blslr icc1, #2
  42. .Lsys_error:
  43. sethi.p #gotofffuncdeschi(__syscall_error), gr14
  44. setlo #gotofffuncdesclo(__syscall_error), gr14
  45. ldd @(gr14, gr15), gr14
  46. jmpl @(gr14, gr0)
  47. .Lerror:
  48. setlos.p #-EINVAL, gr8
  49. bra .Lsys_error
  50. ###############################################################################
  51. #
  52. # come here as the new thread [GR4 is fn, GR5 is arg]
  53. #
  54. ###############################################################################
  55. .Lthread_start:
  56. /* Save the PIC register. */
  57. mov gr15, gr17
  58. /* Call the user's function. */
  59. ldd.p @(gr4, gr0), gr14
  60. mov gr5, gr8
  61. calll @(gr14, gr0)
  62. /* Call _exit, rather simply inlining the syscall, such that
  63. breakpoints work.*/
  64. mov.p gr17, gr15
  65. call HIDDEN_JUMPTARGET(_exit)
  66. /* Should never get here. */
  67. jmpl @(gr0, gr0)
  68. .size clone,.-clone