summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/nds32/syscall.S
blob: 032c643fdd9143568d53d6d21d9273c23259a616 (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
/*
 * Copyright (C) 2016 Andes Technology, Inc.
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

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

	.text
#ifdef PIC
	.pic
#endif
	.align 2


#ifdef PIC
#ifdef __NDS32_N1213_43U1H__
1:
	ret
99:
	addi 	$r2, $lp, 0
	jal 	1b
	sethi 	$r1, hi20(_GLOBAL_OFFSET_TABLE_)
	ori 	$r1, $r1, lo12(_GLOBAL_OFFSET_TABLE_+4)
	add 	$r1, $lp, $r1
	addi 	$lp, $r2, 0
#else		/* !__NDS32_N1213_43U1H__ */
99:
	mfusr 	$r15, $PC
	sethi 	$r1, hi20(_GLOBAL_OFFSET_TABLE_ + 4)
	ori 	$r1, $r1, lo12(_GLOBAL_OFFSET_TABLE_ + 8)
	add 	$r1, $r15, $r1
#endif		/* end of __NDS32_N1213_43U1H__ */
	sethi 	$r15, hi20(__syscall_error@PLT)
	ori 	$r15, $r15, lo12(__syscall_error@PLT)
	add 	$r15, $r15, $r1
	jr 		$r15
#else		/* !PIC	*/
99:
	j __syscall_error
#endif		/* end of PIC */

#ifdef PIC	
	.pic 
#endif

	.align 2
	.globl syscall
	.func syscall
	.type syscall, @function

syscall:
	syscall __NR_syscall
	bgez $r0, 2f
	sltsi $r1, $r0, -4096; 
	beqz $r1, 99b; 
2:
	ret
	.endfunc 
	.size syscall, .-syscall