2 * __put_user functions.
4 * (C) Copyright 2005 Linus Torvalds
5 * (C) Copyright 2005 Andi Kleen
6 * (C) Copyright 2008 Glauber Costa
8 * These functions have a non-standard call interface
9 * to make them more efficient, especially as they
10 * return an error value in addition to the "real"
13 #include <linux/linkage.h>
14 #include <asm/dwarf2.h>
15 #include <asm/thread_info.h>
16 #include <asm/errno.h>
24 * Inputs: %eax[:%edx] contains the data
25 * %ecx contains the address
27 * Outputs: %eax is error code (0 or -EFAULT)
29 * These functions should not modify any other registers,
30 * as they get called from within inline assembly.
33 #define ENTER CFI_STARTPROC ; \
34 GET_THREAD_INFO(%_ASM_BX)
35 #define EXIT ASM_CLAC ; \
42 cmp TI_addr_limit(%_ASM_BX),%_ASM_CX
45 1: movb %al,(%_ASM_CX)
52 mov TI_addr_limit(%_ASM_BX),%_ASM_BX
57 2: movw %ax,(%_ASM_CX)
64 mov TI_addr_limit(%_ASM_BX),%_ASM_BX
69 3: movl %eax,(%_ASM_CX)
76 mov TI_addr_limit(%_ASM_BX),%_ASM_BX
81 4: mov %_ASM_AX,(%_ASM_CX)
83 5: movl %edx,4(%_ASM_CX)
95 _ASM_EXTABLE(1b,bad_put_user)
96 _ASM_EXTABLE(2b,bad_put_user)
97 _ASM_EXTABLE(3b,bad_put_user)
98 _ASM_EXTABLE(4b,bad_put_user)
100 _ASM_EXTABLE(5b,bad_put_user)