diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/x86_64/lib/getuser.S |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/x86_64/lib/getuser.S')
-rw-r--r-- | arch/x86_64/lib/getuser.S | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/arch/x86_64/lib/getuser.S b/arch/x86_64/lib/getuser.S new file mode 100644 index 000000000000..f94ea8a44051 --- /dev/null +++ b/arch/x86_64/lib/getuser.S | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * __get_user functions. | ||
3 | * | ||
4 | * (C) Copyright 1998 Linus Torvalds | ||
5 | * (C) Copyright 2005 Andi Kleen | ||
6 | * | ||
7 | * These functions have a non-standard call interface | ||
8 | * to make them more efficient, especially as they | ||
9 | * return an error value in addition to the "real" | ||
10 | * return value. | ||
11 | */ | ||
12 | |||
13 | /* | ||
14 | * __get_user_X | ||
15 | * | ||
16 | * Inputs: %rcx contains the address. | ||
17 | * The register is modified, but all changes are undone | ||
18 | * before returning because the C code doesn't know about it. | ||
19 | * | ||
20 | * Outputs: %rax is error code (0 or -EFAULT) | ||
21 | * %rdx contains zero-extended value | ||
22 | * | ||
23 | * %r8 is destroyed. | ||
24 | * | ||
25 | * These functions should not modify any other registers, | ||
26 | * as they get called from within inline assembly. | ||
27 | */ | ||
28 | |||
29 | #include <linux/linkage.h> | ||
30 | #include <asm/page.h> | ||
31 | #include <asm/errno.h> | ||
32 | #include <asm/offset.h> | ||
33 | #include <asm/thread_info.h> | ||
34 | |||
35 | .text | ||
36 | .p2align 4 | ||
37 | .globl __get_user_1 | ||
38 | __get_user_1: | ||
39 | GET_THREAD_INFO(%r8) | ||
40 | cmpq threadinfo_addr_limit(%r8),%rcx | ||
41 | jae bad_get_user | ||
42 | 1: movzb (%rcx),%edx | ||
43 | xorl %eax,%eax | ||
44 | ret | ||
45 | |||
46 | .p2align 4 | ||
47 | .globl __get_user_2 | ||
48 | __get_user_2: | ||
49 | GET_THREAD_INFO(%r8) | ||
50 | addq $1,%rcx | ||
51 | jc 20f | ||
52 | cmpq threadinfo_addr_limit(%r8),%rcx | ||
53 | jae 20f | ||
54 | decq %rcx | ||
55 | 2: movzwl (%rcx),%edx | ||
56 | xorl %eax,%eax | ||
57 | ret | ||
58 | 20: decq %rcx | ||
59 | jmp bad_get_user | ||
60 | |||
61 | .p2align 4 | ||
62 | .globl __get_user_4 | ||
63 | __get_user_4: | ||
64 | GET_THREAD_INFO(%r8) | ||
65 | addq $3,%rcx | ||
66 | jc 30f | ||
67 | cmpq threadinfo_addr_limit(%r8),%rcx | ||
68 | jae 30f | ||
69 | subq $3,%rcx | ||
70 | 3: movl (%rcx),%edx | ||
71 | xorl %eax,%eax | ||
72 | ret | ||
73 | 30: subq $3,%rcx | ||
74 | jmp bad_get_user | ||
75 | |||
76 | .p2align 4 | ||
77 | .globl __get_user_8 | ||
78 | __get_user_8: | ||
79 | GET_THREAD_INFO(%r8) | ||
80 | addq $7,%rcx | ||
81 | jc bad_get_user | ||
82 | cmpq threadinfo_addr_limit(%r8),%rcx | ||
83 | jae bad_get_user | ||
84 | subq $7,%rcx | ||
85 | 4: movq (%rcx),%rdx | ||
86 | xorl %eax,%eax | ||
87 | ret | ||
88 | 40: subq $7,%rcx | ||
89 | jmp bad_get_user | ||
90 | |||
91 | bad_get_user: | ||
92 | xorl %edx,%edx | ||
93 | movq $(-EFAULT),%rax | ||
94 | ret | ||
95 | |||
96 | .section __ex_table,"a" | ||
97 | .quad 1b,bad_get_user | ||
98 | .quad 2b,bad_get_user | ||
99 | .quad 3b,bad_get_user | ||
100 | .quad 4b,bad_get_user | ||
101 | .previous | ||