Loading...
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | #ifndef _ASM_SEGMENT_H #define _ASM_SEGMENT_H static inline unsigned char get_user_byte(const char * addr) { register unsigned char _v; __asm__ ("movb %%fs:%1,%0":"=q" (_v):"m" (*addr)); return _v; } #define get_fs_byte(addr) get_user_byte((char *)(addr)) static inline unsigned short get_user_word(const short *addr) { unsigned short _v; __asm__ ("movw %%fs:%1,%0":"=r" (_v):"m" (*addr)); return _v; } #define get_fs_word(addr) get_user_word((short *)(addr)) static inline unsigned long get_user_long(const int *addr) { unsigned long _v; __asm__ ("movl %%fs:%1,%0":"=r" (_v):"m" (*addr)); \ return _v; } #define get_fs_long(addr) get_user_long((int *)(addr)) static inline void put_user_byte(char val,char *addr) { __asm__ ("movb %0,%%fs:%1": /* no outputs */ :"iq" (val),"m" (*addr)); } #define put_fs_byte(x,addr) put_user_byte((x),(char *)(addr)) static inline void put_user_word(short val,short * addr) { __asm__ ("movw %0,%%fs:%1": /* no outputs */ :"ir" (val),"m" (*addr)); } #define put_fs_word(x,addr) put_user_word((x),(short *)(addr)) static inline void put_user_long(unsigned long val,int * addr) { __asm__ ("movl %0,%%fs:%1": /* no outputs */ :"ir" (val),"m" (*addr)); } #define put_fs_long(x,addr) put_user_long((x),(int *)(addr)) static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) { __asm__("cld\n\t" "push %%es\n\t" "push %%fs\n\t" "pop %%es\n\t" "testb $1,%%cl\n\t" "je 1f\n\t" "movsb\n" "1:\ttestb $2,%%cl\n\t" "je 2f\n\t" "movsw\n" "2:\tshrl $2,%%ecx\n\t" "rep ; movsl\n\t" "pop %%es" : /* no outputs */ :"c" (n),"D" ((long) to),"S" ((long) from) :"cx","di","si"); } static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) { switch (n) { case 0: return; case 1: put_user_byte(*(const char *) from, (char *) to); return; case 2: put_user_word(*(const short *) from, (short *) to); return; case 3: put_user_word(*(const short *) from, (short *) to); put_user_byte(*(2+(const char *) from), 2+(char *) to); return; case 4: put_user_long(*(const int *) from, (int *) to); return; } #define COMMON(x) \ __asm__("cld\n\t" \ "push %%es\n\t" \ "push %%fs\n\t" \ "pop %%es\n\t" \ "rep ; movsl\n\t" \ x \ "pop %%es" \ : /* no outputs */ \ :"c" (n/4),"D" ((long) to),"S" ((long) from) \ :"cx","di","si") switch (n % 4) { case 0: COMMON(""); return; case 1: COMMON("movsb\n\t"); return; case 2: COMMON("movsw\n\t"); return; case 3: COMMON("movsw\n\tmovsb\n\t"); return; } #undef COMMON } static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) { __asm__("cld\n\t" "testb $1,%%cl\n\t" "je 1f\n\t" "fs ; movsb\n" "1:\ttestb $2,%%cl\n\t" "je 2f\n\t" "fs ; movsw\n" "2:\tshrl $2,%%ecx\n\t" "rep ; fs ; movsl" : /* no outputs */ :"c" (n),"D" ((long) to),"S" ((long) from) :"cx","di","si","memory"); } static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) { switch (n) { case 0: return; case 1: *(char *)to = get_user_byte((const char *) from); return; case 2: *(short *)to = get_user_word((const short *) from); return; case 3: *(short *) to = get_user_word((const short *) from); *((char *) to + 2) = get_user_byte(2+(const char *) from); return; case 4: *(int *) to = get_user_long((const int *) from); return; } #define COMMON(x) \ __asm__("cld\n\t" \ "rep ; fs ; movsl\n\t" \ x \ : /* no outputs */ \ :"c" (n/4),"D" ((long) to),"S" ((long) from) \ :"cx","di","si","memory") switch (n % 4) { case 0: COMMON(""); return; case 1: COMMON("fs ; movsb"); return; case 2: COMMON("fs ; movsw"); return; case 3: COMMON("fs ; movsw\n\tfs ; movsb"); return; } #undef COMMON } #define memcpy_fromfs(to, from, n) \ (__builtin_constant_p(n) ? \ __constant_memcpy_fromfs((to),(from),(n)) : \ __generic_memcpy_fromfs((to),(from),(n))) #define memcpy_tofs(to, from, n) \ (__builtin_constant_p(n) ? \ __constant_memcpy_tofs((to),(from),(n)) : \ __generic_memcpy_tofs((to),(from),(n))) /* * Someone who knows GNU asm better than I should double check the following. * It seems to work, but I don't know if I'm doing something subtly wrong. * --- TYT, 11/24/91 * [ nothing wrong here, Linus: I just changed the ax to be any reg ] */ static inline unsigned long get_fs(void) { unsigned long _v; __asm__("mov %%fs,%w0":"=r" (_v):"0" (0)); return _v; } static inline unsigned long get_ds(void) { unsigned long _v; __asm__("mov %%ds,%w0":"=r" (_v):"0" (0)); return _v; } static inline void set_fs(unsigned long val) { __asm__ __volatile__("mov %w0,%%fs": /* no output */ :"r" (val)); } #endif /* _ASM_SEGMENT_H */ |