]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
PowerPC: Consolidate NPTL/non versions of clone
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc64 / clone.S
CommitLineData
cfc91acd 1/* Wrapper around clone system call. PowerPC64 version.
d4697bc9 2 Copyright (C) 1997-2014 Free Software Foundation, Inc.
cfc91acd
RM
3 This file is part of the GNU C Library.
4
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.
9
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.
14
15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
cfc91acd
RM
18
19#include <sysdep.h>
20#define _ERRNO_H 1
21#include <bits/errno.h>
cfc91acd 22
1f9d7c27
UD
23#define CLONE_VM 0x00000100
24#define CLONE_THREAD 0x00010000
25
cfc91acd
RM
26/* This is the only really unusual system call in PPC linux, but not
27 because of any weirdness in the system call itself; because of
28 all the freaky stuff we have to do to make the call useful. */
29
30/* int [r3] clone(int (*fn)(void *arg) [r3], void *child_stack [r4],
4fba8a3b
RM
31 int flags [r5], void *arg [r6], void *parent_tid [r7],
32 void *tls [r8], void *child_tid [r9]); */
cfc91acd 33
2d67d91a 34ENTRY (__clone)
865d953f 35 CALL_MCOUNT 7
cfc91acd
RM
36
37 /* Check for child_stack == NULL || fn == NULL. */
38 cmpdi cr0,r4,0
a2eae4cc 39 cmpdi cr1,r3,0
cfc91acd
RM
40 cror cr0*4+eq,cr1*4+eq,cr0*4+eq
41 beq- cr0,L(badargs)
42
8b8a692c 43 /* Save some regs in the "red zone". */
8b8a692c 44 std r29,-24(r1)
8b8a692c
UW
45 std r30,-16(r1)
46 std r31,-8(r1)
8b8a692c 47 cfi_offset(r29,-24)
8b8a692c
UW
48 cfi_offset(r30,-16)
49 cfi_offset(r31,-8)
cfc91acd
RM
50
51 /* Set up stack frame for child. */
52 clrrdi r4,r4,4
53 li r0,0
8b8a692c 54 stdu r0,-FRAME_MIN_SIZE_PARM(r4)
cfc91acd
RM
55
56 /* Save fn, args, stack across syscall. */
bebff237 57 mr r30,r3 /* Function in r30. */
bebff237 58 mr r29,r5 /* Flags in r29. */
cfc91acd
RM
59 mr r31,r6 /* Argument in r31. */
60
bebff237
AM
61 /* 'flags' argument is first parameter to clone syscall.
62 Second is the stack pointer, already in r4. */
cfc91acd 63 mr r3,r5
8464c2a1 64 /* Move the parent_tid, child_tid and tls arguments. */
4fba8a3b
RM
65 mr r5,r7
66 mr r6,r8
67 mr r7,r9
cfc91acd 68
97d901a6
RM
69 /* End FDE now, because in the child the unwind info will be
70 wrong. */
71 cfi_endproc
72
cfc91acd
RM
73 /* Do the call. */
74 DO_CALL(SYS_ify(clone))
75
76 /* Check for child process. */
77 cmpdi cr1,r3,0
78 crandc cr1*4+eq,cr1*4+eq,cr0*4+so
79 bne- cr1,L(parent) /* The '-' is to minimise the race. */
80
bebff237 81 andis. r0,r29,CLONE_THREAD>>16
a2eae4cc 82 bne+ cr0,L(oldpid)
bebff237 83 andi. r0,r29,CLONE_VM
1f9d7c27 84 li r3,-1
a2eae4cc 85 bne- cr0,L(nomoregetpid)
1f9d7c27
UD
86 DO_CALL(SYS_ify(getpid))
87L(nomoregetpid):
88 stw r3,TID(r13)
89 stw r3,PID(r13)
90L(oldpid):
1f9d7c27 91
8b8a692c 92 std r2,FRAME_TOC_SAVE(r1)
cfc91acd 93 /* Call procedure. */
d31beafa 94 PPC64_LOAD_FUNCPTR r30
cfc91acd
RM
95 mr r3,r31
96 bctrl
8b8a692c 97 ld r2,FRAME_TOC_SAVE(r1)
cfc91acd 98 /* Call _exit with result from procedure. */
7062ca8f
UD
99#ifdef SHARED
100 b JUMPTARGET(__GI__exit)
101#else
cfc91acd 102 b JUMPTARGET(_exit)
bebff237
AM
103 /* We won't ever get here but provide a nop so that the linker
104 will insert a toc adjusting stub if necessary. */
105 nop
7062ca8f 106#endif
cfc91acd 107
bebff237
AM
108L(badargs):
109 cfi_startproc
110 li r3,EINVAL
111 TAIL_CALL_SYSCALL_ERROR
112
cfc91acd
RM
113L(parent):
114 /* Parent. Restore registers & return. */
8b8a692c 115 cfi_offset(r29,-24)
8b8a692c
UW
116 cfi_offset(r30,-16)
117 cfi_offset(r31,-8)
8b8a692c 118 ld r29,-24(r1)
8b8a692c
UW
119 ld r30,-16(r1)
120 ld r31,-8(r1)
bebff237 121 cfi_restore(r29)
bebff237
AM
122 cfi_restore(r30)
123 cfi_restore(r31)
8464c2a1 124
bebff237 125 PSEUDO_RET
97d901a6 126
2d67d91a 127END (__clone)
cfc91acd 128
2d67d91a 129weak_alias (__clone, clone)