Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / unix / sysv / linux / am33 / clone.S
blob81eeac05d6ff1979514c060ab793968279f22d1d
1 /* Copyright 2001-2014 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Alexandre Oliva <aoliva@redhat.com>.
4    Based on ../i386/clone.S.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Library General Public License as
8    published by the Free Software Foundation; either version 2 of the
9    License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Library General Public License for more details.
16    You should have received a copy of the GNU Library General Public
17    License along with the GNU C Library.  If not, see
18    <http://www.gnu.org/licenses/>.  */
20 /* clone() is even more special than fork() as it mucks with stacks
21    and invokes a function in the right context after its all over.  */
23 #include <sysdep.h>
24 #define _ERRNO_H        1
25 #include <bits/errno.h>
26 #include <asm-syntax.h>
28 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg); */
30         .text
31 ENTRY (__clone)
32         /* Sanity check arguments.  */
33         cmp     0,d0    /* no NULL function pointers */
34         beq     L(error_inval)
35         cmp     0,d1    /* no NULL stack pointers */
36         beq     L(error_inval)
38         /* Allocate room for a function call in the new stack, and
39            store fn and arg in it.  They will be read back in
40            thread_start.  */
41         mov     d1,a0
42         sub     12,a0
43         mov     d0,(a0)
44         mov     (16,sp),d1
45         mov     d1,(4,a0)
47         /* Do the system call */
48         mov     a0,d1
49         mov     (12,sp),a0
50         mov     SYS_ify(clone),d0
51         syscall 0
53         cmp     0,d0
54         beq     thread_start
55         blt     L(to_SYSCALL_ERROR_LABEL)
57 L(pseudo_end):
58         ret
60 L(error_inval):
61         mov     -EINVAL,d0
62 L(to_SYSCALL_ERROR_LABEL):
63         jmp     SYSCALL_ERROR_LABEL
65 thread_start:
66         mov     0,a3    /* terminate the stack frame */
67         mov     (4,sp),d0
68         mov     (sp),a0
69         calls   (a0)
70 #ifdef PIC
71 L(here):
72         mov     pc,a2
73         add     _GLOBAL_OFFSET_TABLE_-(L(here) - .),a2
74 #endif
75         call    JUMPTARGET (_exit),[],0
77 PSEUDO_END (__clone)
79 weak_alias (__clone, clone)