blob: 11d596b85ff51b10df7d5b5503d32ab5567b5daf [file] [log] [blame]
Raghu Gandham405b8022012-07-25 18:16:42 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughes56d161b2013-03-21 22:52:25 -070028
Elliott Hughes851e68a2014-02-19 16:53:20 -080029#include <private/bionic_asm.h>
Raghu Gandham405b8022012-07-25 18:16:42 -070030#include <linux/errno.h>
Elliott Hughes56d161b2013-03-21 22:52:25 -070031#include <linux/sched.h>
Elliott Hughes40eabe22013-02-14 18:59:37 -080032
Elliott Hughes70b24b12013-11-15 11:51:07 -080033// pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
Elliott Hughes851e68a2014-02-19 16:53:20 -080034ENTRY(__bionic_clone)
Raghu Gandham405b8022012-07-25 18:16:42 -070035 .set noreorder
Elliott Hughes851e68a2014-02-19 16:53:20 -080036 .cpload t9
Raghu Gandham405b8022012-07-25 18:16:42 -070037 .set reorder
38
39 # set up child stack
Elliott Hughes851e68a2014-02-19 16:53:20 -080040 subu a1,16
41 lw t0,20(sp) # fn
42 lw t1,24(sp) # arg
43 sw t0,0(a1) # fn
44 sw t1,4(a1) # arg
Raghu Gandham405b8022012-07-25 18:16:42 -070045
46 # remainder of arguments are correct for clone system call
Elliott Hughes851e68a2014-02-19 16:53:20 -080047 li v0,__NR_clone
Raghu Gandham405b8022012-07-25 18:16:42 -070048 syscall
49
Elliott Hughes851e68a2014-02-19 16:53:20 -080050 bnez a3,.L__error_bc
Raghu Gandham405b8022012-07-25 18:16:42 -070051
Elliott Hughes851e68a2014-02-19 16:53:20 -080052 beqz v0,.L__thread_start_bc
Elliott Hughes40eabe22013-02-14 18:59:37 -080053
Elliott Hughes851e68a2014-02-19 16:53:20 -080054 j ra
Raghu Gandham405b8022012-07-25 18:16:42 -070055
56.L__thread_start_bc:
Elliott Hughes851e68a2014-02-19 16:53:20 -080057 lw a0,0(sp) # fn
58 lw a1,4(sp) # arg
Raghu Gandham405b8022012-07-25 18:16:42 -070059
60 # void __bionic_clone_entry(int (*func)(void*), void *arg)
Elliott Hughes851e68a2014-02-19 16:53:20 -080061 la t9,__bionic_clone_entry
62 j t9
Raghu Gandham405b8022012-07-25 18:16:42 -070063
64.L__error_bc:
Elliott Hughes851e68a2014-02-19 16:53:20 -080065 move a0,v0
66 la t9,__set_errno
67 j t9
68END(__bionic_clone)
Elliott Hughes954cf0d2014-05-08 19:00:23 -070069.hidden __bionic_clone