]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/sparc/sparc64/clone.S
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / clone.S
1 /* Copyright (C) 1997-2019 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Richard Henderson (rth@tamu.edu).
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
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
18
19 /* clone() is even more special than fork() as it mucks with stacks
20 and invokes a function in the right context after its all over. */
21
22 #include <asm/errno.h>
23 #include <asm/unistd.h>
24 #include <tcb-offsets.h>
25 #include <sysdep.h>
26
27 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
28 pid_t *ptid, void *tls, pid_t *ctid); */
29
30 .register %g2,#scratch
31 .register %g3,#scratch
32
33 .text
34
35 ENTRY (__clone)
36 save %sp, -192, %sp
37 cfi_def_cfa_register(%fp)
38 cfi_window_save
39 cfi_register(%o7, %i7)
40
41 /* sanity check arguments */
42 brz,pn %i0, 99f /* fn non-NULL? */
43 mov %i0, %g2
44 brz,pn %i1, 99f /* child_stack non-NULL? */
45 mov %i2, %o0 /* clone flags */
46
47 /* The child_stack is the top of the stack, allocate one
48 whole stack frame from that as this is what the kernel
49 expects. Also, subtract STACK_BIAS. */
50 sub %i1, 192 + 0x7ff, %o1
51 mov %i3, %g3
52
53 mov %i4,%o2 /* PTID */
54 mov %i5,%o3 /* TLS */
55 ldx [%fp+0x7ff+176],%o4 /* CTID */
56
57 /* Do the system call */
58 set __NR_clone, %g1
59 ta 0x6d
60 bcs,pn %xcc, 98f
61 nop
62 brnz,pn %o1, __thread_start
63 nop
64 jmpl %i7 + 8, %g0
65 restore %o0, %g0, %o0
66 99: mov EINVAL, %o0
67 98: call HIDDEN_JUMPTARGET(__errno_location)
68 mov %o0, %i0
69 st %i0, [%o0]
70 jmpl %i7 + 8, %g0
71 restore %g0,-1,%o0
72 END(__clone)
73
74 .type __thread_start,@function
75 __thread_start:
76 mov %g0, %fp /* terminate backtrace */
77 call %g2
78 mov %g3,%o0
79 set __NR_exit, %g1
80 ta 0x6d
81 nop
82
83 .size __thread_start, .-__thread_start
84
85 libc_hidden_def (__clone)
86 weak_alias (__clone, clone)