summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/bfin/clone.c
blob: 6392fd66444fad7c0dc377f55489d8812a33f5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * libc/sysdeps/linux/bfin/clone.c -- `clone' syscall for linux/blackfin
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sched.h>
#include <sys/syscall.h>

int
clone (int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...)
{
	register long rval = -1;

	if (fn && child_stack) {

#ifdef __BFIN_FDPIC__
	__asm__ __volatile__ (
			"r1 = %2;"
			"r0 = %3;"
			"P0 = %1;"
			"excpt 0;"	 /*Call sys_clone*/
			"%0  = r0;"
			"cc = r0 == 0;"
			"if !cc jump .Lxxx;"	/* if (rval != 0) skip to parent */
			"r0 = %4;"
			"p0 = %5;"
			"fp = 0;"
			"p1 = [p0];"
			"p3 = [p0 + 4];"
			"call (p1);"	/* Call cloned function */
			"p0 = %6;"
			"excpt 0;"	/* Call sys_exit */
			".Lxxx: nop;"
			: "=d" (rval)
			: "i" (__NR_clone), "a" (child_stack), "a" (flags), "a" (arg), "a" (fn), "i" (__NR_exit)
			: "CC", "R0", "R1", "P0");
#else
	__asm__ __volatile__ (
			"r1 = %2;"
			"r0 = %3;"
			"P0 = %1;"
			"excpt 0;"	 /*Call sys_clone*/
			"%0  = r0;"
			"cc = r0 == 0;"
			"if !cc jump .Lxxx;"	/* if (rval != 0) skip to parent */
			"r0 = %4;"
			"p0 = %5;"
			"fp = 0;"
			"call (p0);"	/* Call cloned function */
			"p0 = %6;"
			"excpt 0;"	/* Call sys_exit */
			".Lxxx: nop;"
			: "=d" (rval)
			: "i" (__NR_clone), "a" (child_stack), "a" (flags), "a" (arg), "a" (fn), "i" (__NR_exit)
			: "CC", "R0", "R1", "P0");
#endif
	}
	return rval;
}