Test for stack alignment.
[glibc.git] / linuxthreads / sysdeps / unix / sysv / linux / sparc / sparc64 / vfork.S
blob8a6d2771e8b9d74c463c02889a890f7523d4b4ca
1 /* Copyright (C) 2003 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Jakub Jelinek <jakub@redhat.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.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep-cancel.h>
22 #ifdef SHARED
23 .LLGETPC0:
24         retl
25          add    %o7, %o0, %o0
26 #endif
27 ENTRY(__vfork)
28 #ifdef SHARED
29         mov     %o7, %o1
30         sethi   %hi(_GLOBAL_OFFSET_TABLE_-4), %o0
31         call    .LLGETPC0
32          add    %o0, %lo(_GLOBAL_OFFSET_TABLE_+4), %o0
33         sethi   %hi(__libc_pthread_functions), %o2
34         mov     %o1, %o7
35         or      %o2, %lo(__libc_pthread_functions), %o2
36         ldx     [%o0 + %o2], %o2
37         ldx     [%o2], %o0
38 #else
39         .weak   pthread_create
40         sethi   %hi(pthread_create), %o0
41         or      %o0, %lo(pthread_create), %o0
42 #endif
43 #if defined SHARED && !defined BROKEN_SPARC_WDISP22
44         cmp     %o0, 0
45         bne     HIDDEN_JUMPTARGET(__fork)
46 #else
47         brnz,pn %o0, 1f
48 #endif
49          mov    __NR_vfork, %g1
50         ta      0x6d
51         bcs,pn  %xcc, __syscall_error_handler
52          nop
53         sub     %o1, 1, %o1
54         retl
55          and    %o0, %o1, %o0
56 #if !defined SHARED || defined BROKEN_SPARC_WDISP22
57 1:      mov     %o7, %g1
58         call    HIDDEN_JUMPTARGET(__fork)
59          mov    %g1, %o7
60 #endif
61         SYSCALL_ERROR_HANDLER
62 PSEUDO_END (__vfork)
63 libc_hidden_def (__vfork)
64 weak_alias (__vfork, vfork)