(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / linuxthreads / sysdeps / unix / sysv / linux / sparc / sparc32 / vfork.S
blob132da67a14cb664e4848bfe49cc451fab5ce2f1d
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         .text
23 #ifdef SHARED
24 .LLGETPC0:
25         retl
26          add    %o7, %o0, %o0
27 #endif
28 ENTRY(__vfork)
29 #ifdef SHARED
30         mov     %o7, %o1
31         sethi   %hi(_GLOBAL_OFFSET_TABLE_-4), %o0
32         call    .LLGETPC0
33          add    %o0, %lo(_GLOBAL_OFFSET_TABLE_+4), %o0
34         sethi   %hi(__libc_pthread_functions), %o2
35         mov     %o1, %o7
36         or      %o2, %lo(__libc_pthread_functions), %o2
37         ld      [%o0 + %o2], %o2
38         ld      [%o2], %o2
39         cmp     %o2, 0
40 #else
41         .weak   pthread_create
42         sethi   %hi(pthread_create), %o0
43         orcc    %o0, %lo(pthread_create), %o0
44 #endif
45 #if defined SHARED && !defined BROKEN_SPARC_WDISP22
46         bne     HIDDEN_JUMPTARGET(__fork)
47 #else
48         bne     1f
49 #endif
50          mov    __NR_vfork, %g1
51         ta      0x10
52         bcs     __syscall_error_handler
53          nop
54         sub     %o1, 1, %o1
55         retl
56          and    %o0, %o1, %o0
57 #if !defined SHARED || defined BROKEN_SPARC_WDISP22
58 1:      mov     %o7, %g1
59         call    HIDDEN_JUMPTARGET(__fork)
60          mov    %g1, %o7
61 #endif
62         SYSCALL_ERROR_HANDLER
63 PSEUDO_END (__vfork)
64 libc_hidden_def (__vfork)
65 weak_alias (__vfork, vfork)