getuser_32.S 1.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * __get_user functions.
 *
 * (C) Copyright 1998 Linus Torvalds
 *
 * These functions have a non-standard call interface
 * to make them more efficient, especially as they
 * return an error value in addition to the "real"
 * return value.
 */
11 12
#include <linux/linkage.h>
#include <asm/dwarf2.h>
L
Linus Torvalds 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#include <asm/thread_info.h>


/*
 * __get_user_X
 *
 * Inputs:	%eax contains the address
 *
 * Outputs:	%eax is error code (0 or -EFAULT)
 *		%edx contains zero-extended value
 *
 * These functions should not modify any other registers,
 * as they get called from within inline assembly.
 */

.text
29 30
ENTRY(__get_user_1)
	CFI_STARTPROC
L
Linus Torvalds 已提交
31 32 33 34 35 36
	GET_THREAD_INFO(%edx)
	cmpl TI_addr_limit(%edx),%eax
	jae bad_get_user
1:	movzbl (%eax),%edx
	xorl %eax,%eax
	ret
37 38
	CFI_ENDPROC
ENDPROC(__get_user_1)
L
Linus Torvalds 已提交
39

40 41
ENTRY(__get_user_2)
	CFI_STARTPROC
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49
	addl $1,%eax
	jc bad_get_user
	GET_THREAD_INFO(%edx)
	cmpl TI_addr_limit(%edx),%eax
	jae bad_get_user
2:	movzwl -1(%eax),%edx
	xorl %eax,%eax
	ret
50 51
	CFI_ENDPROC
ENDPROC(__get_user_2)
L
Linus Torvalds 已提交
52

53 54
ENTRY(__get_user_4)
	CFI_STARTPROC
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62
	addl $3,%eax
	jc bad_get_user
	GET_THREAD_INFO(%edx)
	cmpl TI_addr_limit(%edx),%eax
	jae bad_get_user
3:	movl -3(%eax),%edx
	xorl %eax,%eax
	ret
63 64
	CFI_ENDPROC
ENDPROC(__get_user_4)
L
Linus Torvalds 已提交
65 66

bad_get_user:
67
	CFI_STARTPROC
L
Linus Torvalds 已提交
68 69 70
	xorl %edx,%edx
	movl $-14,%eax
	ret
71 72
	CFI_ENDPROC
END(bad_get_user)
L
Linus Torvalds 已提交
73 74 75 76 77 78

.section __ex_table,"a"
	.long 1b,bad_get_user
	.long 2b,bad_get_user
	.long 3b,bad_get_user
.previous
新手
引导
客服 返回
顶部