Blame view

arch/x86/math-emu/reg_ld_str.c 31.5 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  /*---------------------------------------------------------------------------+
   |  reg_ld_str.c                                                             |
   |                                                                           |
   | All of the functions which transfer data between user memory and FPU_REGs.|
   |                                                                           |
   | Copyright (C) 1992,1993,1994,1996,1997                                    |
   |                  W. Metzenthen, 22 Parker St, Ormond, Vic 3163, Australia |
   |                  E-mail   billm@suburbia.net                              |
   |                                                                           |
   |                                                                           |
   +---------------------------------------------------------------------------*/
  
  /*---------------------------------------------------------------------------+
   | Note:                                                                     |
   |    The file contains code which accesses user memory.                     |
   |    Emulator static data may change when user memory is accessed, due to   |
   |    other processes using the emulator while swapping is in progress.      |
   +---------------------------------------------------------------------------*/
  
  #include "fpu_emu.h"
  
  #include <asm/uaccess.h>
  
  #include "fpu_system.h"
  #include "exception.h"
  #include "reg_constant.h"
  #include "control_w.h"
  #include "status_w.h"
3d0d14f98   Ingo Molnar   x86: lindent arch...
29
  #define DOUBLE_Emax 1023	/* largest valid exponent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
  #define DOUBLE_Ebias 1023
3d0d14f98   Ingo Molnar   x86: lindent arch...
31
  #define DOUBLE_Emin (-1022)	/* smallest valid exponent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

3d0d14f98   Ingo Molnar   x86: lindent arch...
33
  #define SINGLE_Emax 127		/* largest valid exponent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
  #define SINGLE_Ebias 127
3d0d14f98   Ingo Molnar   x86: lindent arch...
35
  #define SINGLE_Emin (-126)	/* smallest valid exponent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36

e8d591dc7   Ingo Molnar   x86: lindent arch...
37
  static u_char normalize_no_excep(FPU_REG *r, int exp, int sign)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
39
  	u_char tag;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40

3d0d14f98   Ingo Molnar   x86: lindent arch...
41
  	setexponent16(r, exp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42

3d0d14f98   Ingo Molnar   x86: lindent arch...
43
44
45
46
  	tag = FPU_normalize_nuo(r);
  	stdexp(r);
  	if (sign)
  		setnegative(r);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47

3d0d14f98   Ingo Molnar   x86: lindent arch...
48
  	return tag;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
  }
e8d591dc7   Ingo Molnar   x86: lindent arch...
50
  int FPU_tagof(FPU_REG *ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  	int exp;
  
  	exp = exponent16(ptr) & 0x7fff;
  	if (exp == 0) {
  		if (!(ptr->sigh | ptr->sigl)) {
  			return TAG_Zero;
  		}
  		/* The number is a de-normal or pseudodenormal. */
  		return TAG_Special;
  	}
  
  	if (exp == 0x7fff) {
  		/* Is an Infinity, a NaN, or an unsupported data type. */
  		return TAG_Special;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67

3d0d14f98   Ingo Molnar   x86: lindent arch...
68
69
70
71
72
73
74
75
76
  	if (!(ptr->sigh & 0x80000000)) {
  		/* Unsupported data type. */
  		/* Valid numbers have the ms bit set to 1. */
  		/* Unnormal. */
  		return TAG_Special;
  	}
  
  	return TAG_Valid;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
  
  /* Get a long double from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
79
  int FPU_load_extended(long double __user *s, int stnr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
81
  	FPU_REG *sti_ptr = &st(stnr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82

3d0d14f98   Ingo Molnar   x86: lindent arch...
83
84
85
86
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, s, 10);
  	__copy_from_user(sti_ptr, s, 10);
  	RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87

3d0d14f98   Ingo Molnar   x86: lindent arch...
88
  	return FPU_tagof(sti_ptr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
  /* Get a double from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
91
  int FPU_load_double(double __user *dfloat, FPU_REG *loaded_data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
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
  	int exp, tag, negative;
  	unsigned m64, l64;
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, dfloat, 8);
  	FPU_get_user(m64, 1 + (unsigned long __user *)dfloat);
  	FPU_get_user(l64, (unsigned long __user *)dfloat);
  	RE_ENTRANT_CHECK_ON;
  
  	negative = (m64 & 0x80000000) ? SIGN_Negative : SIGN_Positive;
  	exp = ((m64 & 0x7ff00000) >> 20) - DOUBLE_Ebias + EXTENDED_Ebias;
  	m64 &= 0xfffff;
  	if (exp > DOUBLE_Emax + EXTENDED_Ebias) {
  		/* Infinity or NaN */
  		if ((m64 == 0) && (l64 == 0)) {
  			/* +- infinity */
  			loaded_data->sigh = 0x80000000;
  			loaded_data->sigl = 0x00000000;
  			exp = EXP_Infinity + EXTENDED_Ebias;
  			tag = TAG_Special;
  		} else {
  			/* Must be a signaling or quiet NaN */
  			exp = EXP_NaN + EXTENDED_Ebias;
  			loaded_data->sigh = (m64 << 11) | 0x80000000;
  			loaded_data->sigh |= l64 >> 21;
  			loaded_data->sigl = l64 << 11;
  			tag = TAG_Special;	/* The calling function must look for NaNs */
  		}
  	} else if (exp < DOUBLE_Emin + EXTENDED_Ebias) {
  		/* Zero or de-normal */
  		if ((m64 == 0) && (l64 == 0)) {
  			/* Zero */
  			reg_copy(&CONST_Z, loaded_data);
  			exp = 0;
  			tag = TAG_Zero;
  		} else {
  			/* De-normal */
  			loaded_data->sigh = m64 << 11;
  			loaded_data->sigh |= l64 >> 21;
  			loaded_data->sigl = l64 << 11;
  
  			return normalize_no_excep(loaded_data, DOUBLE_Emin,
  						  negative)
  			    | (denormal_operand() < 0 ? FPU_Exception : 0);
  		}
  	} else {
  		loaded_data->sigh = (m64 << 11) | 0x80000000;
  		loaded_data->sigh |= l64 >> 21;
  		loaded_data->sigl = l64 << 11;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142

3d0d14f98   Ingo Molnar   x86: lindent arch...
143
144
  		tag = TAG_Valid;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145

3d0d14f98   Ingo Molnar   x86: lindent arch...
146
  	setexponent16(loaded_data, exp | negative);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
147

3d0d14f98   Ingo Molnar   x86: lindent arch...
148
  	return tag;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
149
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
150
  /* Get a float from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
151
  int FPU_load_single(float __user *single, FPU_REG *loaded_data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  	unsigned m32;
  	int exp, tag, negative;
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, single, 4);
  	FPU_get_user(m32, (unsigned long __user *)single);
  	RE_ENTRANT_CHECK_ON;
  
  	negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive;
  
  	if (!(m32 & 0x7fffffff)) {
  		/* Zero */
  		reg_copy(&CONST_Z, loaded_data);
  		addexponent(loaded_data, negative);
  		return TAG_Zero;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
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
  	exp = ((m32 & 0x7f800000) >> 23) - SINGLE_Ebias + EXTENDED_Ebias;
  	m32 = (m32 & 0x7fffff) << 8;
  	if (exp < SINGLE_Emin + EXTENDED_Ebias) {
  		/* De-normals */
  		loaded_data->sigh = m32;
  		loaded_data->sigl = 0;
  
  		return normalize_no_excep(loaded_data, SINGLE_Emin, negative)
  		    | (denormal_operand() < 0 ? FPU_Exception : 0);
  	} else if (exp > SINGLE_Emax + EXTENDED_Ebias) {
  		/* Infinity or NaN */
  		if (m32 == 0) {
  			/* +- infinity */
  			loaded_data->sigh = 0x80000000;
  			loaded_data->sigl = 0x00000000;
  			exp = EXP_Infinity + EXTENDED_Ebias;
  			tag = TAG_Special;
  		} else {
  			/* Must be a signaling or quiet NaN */
  			exp = EXP_NaN + EXTENDED_Ebias;
  			loaded_data->sigh = m32 | 0x80000000;
  			loaded_data->sigl = 0;
  			tag = TAG_Special;	/* The calling function must look for NaNs */
  		}
  	} else {
  		loaded_data->sigh = m32 | 0x80000000;
  		loaded_data->sigl = 0;
  		tag = TAG_Valid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
197
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198

3d0d14f98   Ingo Molnar   x86: lindent arch...
199
  	setexponent16(loaded_data, exp | negative);	/* Set the sign. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
200

3d0d14f98   Ingo Molnar   x86: lindent arch...
201
  	return tag;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
203
  /* Get a long long from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
204
  int FPU_load_int64(long long __user *_s)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
205
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  	long long s;
  	int sign;
  	FPU_REG *st0_ptr = &st(0);
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, _s, 8);
  	if (copy_from_user(&s, _s, 8))
  		FPU_abort;
  	RE_ENTRANT_CHECK_ON;
  
  	if (s == 0) {
  		reg_copy(&CONST_Z, st0_ptr);
  		return TAG_Zero;
  	}
  
  	if (s > 0)
  		sign = SIGN_Positive;
  	else {
  		s = -s;
  		sign = SIGN_Negative;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227

3d0d14f98   Ingo Molnar   x86: lindent arch...
228
229
230
231
  	significand(st0_ptr) = s;
  
  	return normalize_no_excep(st0_ptr, 63, sign);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
232
233
  
  /* Get a long from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
234
  int FPU_load_int32(long __user *_s, FPU_REG *loaded_data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
236
237
  	long s;
  	int negative;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
238

3d0d14f98   Ingo Molnar   x86: lindent arch...
239
240
241
242
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, _s, 4);
  	FPU_get_user(s, _s);
  	RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243

3d0d14f98   Ingo Molnar   x86: lindent arch...
244
245
246
247
  	if (s == 0) {
  		reg_copy(&CONST_Z, loaded_data);
  		return TAG_Zero;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
248

3d0d14f98   Ingo Molnar   x86: lindent arch...
249
250
251
252
253
254
  	if (s > 0)
  		negative = SIGN_Positive;
  	else {
  		s = -s;
  		negative = SIGN_Negative;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255

3d0d14f98   Ingo Molnar   x86: lindent arch...
256
257
  	loaded_data->sigh = s;
  	loaded_data->sigl = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
258

3d0d14f98   Ingo Molnar   x86: lindent arch...
259
  	return normalize_no_excep(loaded_data, 31, negative);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
  /* Get a short from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
262
  int FPU_load_int16(short __user *_s, FPU_REG *loaded_data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
264
  	int s, negative;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265

3d0d14f98   Ingo Molnar   x86: lindent arch...
266
267
268
269
270
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, _s, 2);
  	/* Cast as short to get the sign extended. */
  	FPU_get_user(s, _s);
  	RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271

3d0d14f98   Ingo Molnar   x86: lindent arch...
272
273
274
275
  	if (s == 0) {
  		reg_copy(&CONST_Z, loaded_data);
  		return TAG_Zero;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276

3d0d14f98   Ingo Molnar   x86: lindent arch...
277
278
279
280
281
282
  	if (s > 0)
  		negative = SIGN_Positive;
  	else {
  		s = -s;
  		negative = SIGN_Negative;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283

3d0d14f98   Ingo Molnar   x86: lindent arch...
284
285
  	loaded_data->sigh = s << 16;
  	loaded_data->sigl = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
286

3d0d14f98   Ingo Molnar   x86: lindent arch...
287
  	return normalize_no_excep(loaded_data, 15, negative);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
289
  /* Get a packed bcd array from user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
290
  int FPU_load_bcd(u_char __user *s)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
291
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
  	FPU_REG *st0_ptr = &st(0);
  	int pos;
  	u_char bcd;
  	long long l = 0;
  	int sign;
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, s, 10);
  	RE_ENTRANT_CHECK_ON;
  	for (pos = 8; pos >= 0; pos--) {
  		l *= 10;
  		RE_ENTRANT_CHECK_OFF;
  		FPU_get_user(bcd, s + pos);
  		RE_ENTRANT_CHECK_ON;
  		l += bcd >> 4;
  		l *= 10;
  		l += bcd & 0x0f;
  	}
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_get_user(sign, s + 9);
  	sign = sign & 0x80 ? SIGN_Negative : SIGN_Positive;
  	RE_ENTRANT_CHECK_ON;
  
  	if (l == 0) {
  		reg_copy(&CONST_Z, st0_ptr);
  		addexponent(st0_ptr, sign);	/* Set the sign. */
  		return TAG_Zero;
  	} else {
  		significand(st0_ptr) = l;
  		return normalize_no_excep(st0_ptr, 63, sign);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
324
325
326
327
328
  }
  
  /*===========================================================================*/
  
  /* Put a long double into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
329
  int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag,
3d0d14f98   Ingo Molnar   x86: lindent arch...
330
  		       long double __user * d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
  	/*
  	   The only exception raised by an attempt to store to an
  	   extended format is the Invalid Stack exception, i.e.
  	   attempting to store from an empty register.
  	 */
  
  	if (st0_tag != TAG_Empty) {
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_WRITE, d, 10);
  
  		FPU_put_user(st0_ptr->sigl, (unsigned long __user *)d);
  		FPU_put_user(st0_ptr->sigh,
  			     (unsigned long __user *)((u_char __user *) d + 4));
  		FPU_put_user(exponent16(st0_ptr),
  			     (unsigned short __user *)((u_char __user *) d +
  						       8));
  		RE_ENTRANT_CHECK_ON;
  
  		return 1;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
352

3d0d14f98   Ingo Molnar   x86: lindent arch...
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  	/* Empty register (stack underflow) */
  	EXCEPTION(EX_StackUnder);
  	if (control_word & CW_Invalid) {
  		/* The masked response */
  		/* Put out the QNaN indefinite */
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_WRITE, d, 10);
  		FPU_put_user(0, (unsigned long __user *)d);
  		FPU_put_user(0xc0000000, 1 + (unsigned long __user *)d);
  		FPU_put_user(0xffff, 4 + (short __user *)d);
  		RE_ENTRANT_CHECK_ON;
  		return 1;
  	} else
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
367

3d0d14f98   Ingo Molnar   x86: lindent arch...
368
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
369
370
  
  /* Put a double into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
371
  int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double __user *dfloat)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
372
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
373
374
375
376
377
  	unsigned long l[2];
  	unsigned long increment = 0;	/* avoid gcc warnings */
  	int precision_loss;
  	int exp;
  	FPU_REG tmp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
378

f2e576b81   Andrew Morton   i386: arch/x86/ma...
379
380
  	l[0] = 0;
  	l[1] = 0;
3d0d14f98   Ingo Molnar   x86: lindent arch...
381
382
383
  	if (st0_tag == TAG_Valid) {
  		reg_copy(st0_ptr, &tmp);
  		exp = exponent(&tmp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384

3d0d14f98   Ingo Molnar   x86: lindent arch...
385
386
  		if (exp < DOUBLE_Emin) {	/* It may be a denormal */
  			addexponent(&tmp, -DOUBLE_Emin + 52);	/* largest exp to be 51 */
f2e576b81   Andrew Morton   i386: arch/x86/ma...
387
  denormal_arg:
3d0d14f98   Ingo Molnar   x86: lindent arch...
388
  			if ((precision_loss = FPU_round_to_int(&tmp, st0_tag))) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
389
  #ifdef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
390
391
392
393
394
395
396
  				/* Did it round to a non-denormal ? */
  				/* This behaviour might be regarded as peculiar, it appears
  				   that the 80486 rounds to the dest precision, then
  				   converts to decide underflow. */
  				if (!
  				    ((tmp.sigh == 0x00100000) && (tmp.sigl == 0)
  				     && (st0_ptr->sigl & 0x000007ff)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
  #endif /* PECULIAR_486 */
3d0d14f98   Ingo Molnar   x86: lindent arch...
398
399
400
401
402
403
404
405
406
407
  				{
  					EXCEPTION(EX_Underflow);
  					/* This is a special case: see sec 16.2.5.1 of
  					   the 80486 book */
  					if (!(control_word & CW_Underflow))
  						return 0;
  				}
  				EXCEPTION(precision_loss);
  				if (!(control_word & CW_Precision))
  					return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
408
  			}
3d0d14f98   Ingo Molnar   x86: lindent arch...
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
  			l[0] = tmp.sigl;
  			l[1] = tmp.sigh;
  		} else {
  			if (tmp.sigl & 0x000007ff) {
  				precision_loss = 1;
  				switch (control_word & CW_RC) {
  				case RC_RND:
  					/* Rounding can get a little messy.. */
  					increment = ((tmp.sigl & 0x7ff) > 0x400) |	/* nearest */
  					    ((tmp.sigl & 0xc00) == 0xc00);	/* odd -> even */
  					break;
  				case RC_DOWN:	/* towards -infinity */
  					increment =
  					    signpositive(&tmp) ? 0 : tmp.
  					    sigl & 0x7ff;
  					break;
  				case RC_UP:	/* towards +infinity */
  					increment =
  					    signpositive(&tmp) ? tmp.
  					    sigl & 0x7ff : 0;
  					break;
  				case RC_CHOP:
  					increment = 0;
  					break;
  				}
  
  				/* Truncate the mantissa */
  				tmp.sigl &= 0xfffff800;
  
  				if (increment) {
  					if (tmp.sigl >= 0xfffff800) {
  						/* the sigl part overflows */
  						if (tmp.sigh == 0xffffffff) {
  							/* The sigh part overflows */
  							tmp.sigh = 0x80000000;
  							exp++;
  							if (exp >= EXP_OVER)
  								goto overflow;
  						} else {
  							tmp.sigh++;
  						}
  						tmp.sigl = 0x00000000;
  					} else {
  						/* We only need to increment sigl */
  						tmp.sigl += 0x00000800;
  					}
  				}
  			} else
  				precision_loss = 0;
  
  			l[0] = (tmp.sigl >> 11) | (tmp.sigh << 21);
  			l[1] = ((tmp.sigh >> 11) & 0xfffff);
  
  			if (exp > DOUBLE_Emax) {
  			      overflow:
  				EXCEPTION(EX_Overflow);
  				if (!(control_word & CW_Overflow))
  					return 0;
  				set_precision_flag_up();
  				if (!(control_word & CW_Precision))
  					return 0;
  
  				/* This is a special case: see sec 16.2.5.1 of the 80486 book */
  				/* Overflow to infinity */
f2e576b81   Andrew Morton   i386: arch/x86/ma...
473
  				l[1] = 0x7ff00000;	/* Set to + INF */
3d0d14f98   Ingo Molnar   x86: lindent arch...
474
475
476
477
478
479
480
481
482
  			} else {
  				if (precision_loss) {
  					if (increment)
  						set_precision_flag_up();
  					else
  						set_precision_flag_down();
  				}
  				/* Add the exponent */
  				l[1] |= (((exp + DOUBLE_Ebias) & 0x7ff) << 20);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
483
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
484
  		}
3d0d14f98   Ingo Molnar   x86: lindent arch...
485
486
  	} else if (st0_tag == TAG_Zero) {
  		/* Number is zero */
3d0d14f98   Ingo Molnar   x86: lindent arch...
487
488
489
490
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if (st0_tag == TW_Denormal) {
  			/* A denormal will always underflow. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
491
  #ifndef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
492
493
494
495
496
  			/* An 80486 is supposed to be able to generate
  			   a denormal exception here, but... */
  			/* Underflow has priority. */
  			if (control_word & CW_Underflow)
  				denormal_operand();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
497
  #endif /* PECULIAR_486 */
3d0d14f98   Ingo Molnar   x86: lindent arch...
498
499
500
  			reg_copy(st0_ptr, &tmp);
  			goto denormal_arg;
  		} else if (st0_tag == TW_Infinity) {
3d0d14f98   Ingo Molnar   x86: lindent arch...
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
  			l[1] = 0x7ff00000;
  		} else if (st0_tag == TW_NaN) {
  			/* Is it really a NaN ? */
  			if ((exponent(st0_ptr) == EXP_OVER)
  			    && (st0_ptr->sigh & 0x80000000)) {
  				/* See if we can get a valid NaN from the FPU_REG */
  				l[0] =
  				    (st0_ptr->sigl >> 11) | (st0_ptr->
  							     sigh << 21);
  				l[1] = ((st0_ptr->sigh >> 11) & 0xfffff);
  				if (!(st0_ptr->sigh & 0x40000000)) {
  					/* It is a signalling NaN */
  					EXCEPTION(EX_Invalid);
  					if (!(control_word & CW_Invalid))
  						return 0;
  					l[1] |= (0x40000000 >> 11);
  				}
  				l[1] |= 0x7ff00000;
  			} else {
  				/* It is an unsupported data type */
  				EXCEPTION(EX_Invalid);
  				if (!(control_word & CW_Invalid))
  					return 0;
3d0d14f98   Ingo Molnar   x86: lindent arch...
524
525
  				l[1] = 0xfff80000;
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
526
  		}
3d0d14f98   Ingo Molnar   x86: lindent arch...
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
  	} else if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		if (control_word & CW_Invalid) {
  			/* The masked response */
  			/* Put out the QNaN indefinite */
  			RE_ENTRANT_CHECK_OFF;
  			FPU_access_ok(VERIFY_WRITE, dfloat, 8);
  			FPU_put_user(0, (unsigned long __user *)dfloat);
  			FPU_put_user(0xfff80000,
  				     1 + (unsigned long __user *)dfloat);
  			RE_ENTRANT_CHECK_ON;
  			return 1;
  		} else
  			return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
542
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
543
544
  	if (getsign(st0_ptr))
  		l[1] |= 0x80000000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
545

3d0d14f98   Ingo Molnar   x86: lindent arch...
546
547
548
549
550
551
552
553
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, dfloat, 8);
  	FPU_put_user(l[0], (unsigned long __user *)dfloat);
  	FPU_put_user(l[1], 1 + (unsigned long __user *)dfloat);
  	RE_ENTRANT_CHECK_ON;
  
  	return 1;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
554
555
  
  /* Put a float into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
556
  int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float __user *single)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
557
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
558
559
560
561
562
  	long templ = 0;
  	unsigned long increment = 0;	/* avoid gcc warnings */
  	int precision_loss;
  	int exp;
  	FPU_REG tmp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
563

3d0d14f98   Ingo Molnar   x86: lindent arch...
564
  	if (st0_tag == TAG_Valid) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
565

3d0d14f98   Ingo Molnar   x86: lindent arch...
566
567
  		reg_copy(st0_ptr, &tmp);
  		exp = exponent(&tmp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
568

3d0d14f98   Ingo Molnar   x86: lindent arch...
569
570
  		if (exp < SINGLE_Emin) {
  			addexponent(&tmp, -SINGLE_Emin + 23);	/* largest exp to be 22 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
571

3d0d14f98   Ingo Molnar   x86: lindent arch...
572
  		      denormal_arg:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
573

3d0d14f98   Ingo Molnar   x86: lindent arch...
574
  			if ((precision_loss = FPU_round_to_int(&tmp, st0_tag))) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
575
  #ifdef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
576
577
578
579
580
581
582
  				/* Did it round to a non-denormal ? */
  				/* This behaviour might be regarded as peculiar, it appears
  				   that the 80486 rounds to the dest precision, then
  				   converts to decide underflow. */
  				if (!((tmp.sigl == 0x00800000) &&
  				      ((st0_ptr->sigh & 0x000000ff)
  				       || st0_ptr->sigl)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
583
  #endif /* PECULIAR_486 */
3d0d14f98   Ingo Molnar   x86: lindent arch...
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
  				{
  					EXCEPTION(EX_Underflow);
  					/* This is a special case: see sec 16.2.5.1 of
  					   the 80486 book */
  					if (!(control_word & CW_Underflow))
  						return 0;
  				}
  				EXCEPTION(precision_loss);
  				if (!(control_word & CW_Precision))
  					return 0;
  			}
  			templ = tmp.sigl;
  		} else {
  			if (tmp.sigl | (tmp.sigh & 0x000000ff)) {
  				unsigned long sigh = tmp.sigh;
  				unsigned long sigl = tmp.sigl;
  
  				precision_loss = 1;
  				switch (control_word & CW_RC) {
  				case RC_RND:
  					increment = ((sigh & 0xff) > 0x80)	/* more than half */
  					    ||(((sigh & 0xff) == 0x80) && sigl)	/* more than half */
  					    ||((sigh & 0x180) == 0x180);	/* round to even */
  					break;
  				case RC_DOWN:	/* towards -infinity */
  					increment = signpositive(&tmp)
  					    ? 0 : (sigl | (sigh & 0xff));
  					break;
  				case RC_UP:	/* towards +infinity */
  					increment = signpositive(&tmp)
  					    ? (sigl | (sigh & 0xff)) : 0;
  					break;
  				case RC_CHOP:
  					increment = 0;
  					break;
  				}
  
  				/* Truncate part of the mantissa */
  				tmp.sigl = 0;
  
  				if (increment) {
  					if (sigh >= 0xffffff00) {
  						/* The sigh part overflows */
  						tmp.sigh = 0x80000000;
  						exp++;
  						if (exp >= EXP_OVER)
  							goto overflow;
  					} else {
  						tmp.sigh &= 0xffffff00;
  						tmp.sigh += 0x100;
  					}
  				} else {
  					tmp.sigh &= 0xffffff00;	/* Finish the truncation */
  				}
  			} else
  				precision_loss = 0;
  
  			templ = (tmp.sigh >> 8) & 0x007fffff;
  
  			if (exp > SINGLE_Emax) {
  			      overflow:
  				EXCEPTION(EX_Overflow);
  				if (!(control_word & CW_Overflow))
  					return 0;
  				set_precision_flag_up();
  				if (!(control_word & CW_Precision))
  					return 0;
  
  				/* This is a special case: see sec 16.2.5.1 of the 80486 book. */
  				/* Masked response is overflow to infinity. */
  				templ = 0x7f800000;
  			} else {
  				if (precision_loss) {
  					if (increment)
  						set_precision_flag_up();
  					else
  						set_precision_flag_down();
  				}
  				/* Add the exponent */
  				templ |= ((exp + SINGLE_Ebias) & 0xff) << 23;
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
665
  		}
3d0d14f98   Ingo Molnar   x86: lindent arch...
666
667
668
669
670
671
672
673
  	} else if (st0_tag == TAG_Zero) {
  		templ = 0;
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if (st0_tag == TW_Denormal) {
  			reg_copy(st0_ptr, &tmp);
  
  			/* A denormal will always underflow. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
674
  #ifndef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
  			/* An 80486 is supposed to be able to generate
  			   a denormal exception here, but... */
  			/* Underflow has priority. */
  			if (control_word & CW_Underflow)
  				denormal_operand();
  #endif /* PECULIAR_486 */
  			goto denormal_arg;
  		} else if (st0_tag == TW_Infinity) {
  			templ = 0x7f800000;
  		} else if (st0_tag == TW_NaN) {
  			/* Is it really a NaN ? */
  			if ((exponent(st0_ptr) == EXP_OVER)
  			    && (st0_ptr->sigh & 0x80000000)) {
  				/* See if we can get a valid NaN from the FPU_REG */
  				templ = st0_ptr->sigh >> 8;
  				if (!(st0_ptr->sigh & 0x40000000)) {
  					/* It is a signalling NaN */
  					EXCEPTION(EX_Invalid);
  					if (!(control_word & CW_Invalid))
  						return 0;
  					templ |= (0x40000000 >> 8);
  				}
  				templ |= 0x7f800000;
  			} else {
  				/* It is an unsupported data type */
  				EXCEPTION(EX_Invalid);
  				if (!(control_word & CW_Invalid))
  					return 0;
  				templ = 0xffc00000;
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
705
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
706
  #ifdef PARANOID
3d0d14f98   Ingo Molnar   x86: lindent arch...
707
708
709
710
  		else {
  			EXCEPTION(EX_INTERNAL | 0x164);
  			return 0;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
711
  #endif
3d0d14f98   Ingo Molnar   x86: lindent arch...
712
713
714
715
716
717
718
719
720
721
722
723
724
725
  	} else if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		if (control_word & EX_Invalid) {
  			/* The masked response */
  			/* Put out the QNaN indefinite */
  			RE_ENTRANT_CHECK_OFF;
  			FPU_access_ok(VERIFY_WRITE, single, 4);
  			FPU_put_user(0xffc00000,
  				     (unsigned long __user *)single);
  			RE_ENTRANT_CHECK_ON;
  			return 1;
  		} else
  			return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
726
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
727
  #ifdef PARANOID
3d0d14f98   Ingo Molnar   x86: lindent arch...
728
729
730
731
  	else {
  		EXCEPTION(EX_INTERNAL | 0x163);
  		return 0;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
732
  #endif
3d0d14f98   Ingo Molnar   x86: lindent arch...
733
734
  	if (getsign(st0_ptr))
  		templ |= 0x80000000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
735

3d0d14f98   Ingo Molnar   x86: lindent arch...
736
737
738
739
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, single, 4);
  	FPU_put_user(templ, (unsigned long __user *)single);
  	RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
740

3d0d14f98   Ingo Molnar   x86: lindent arch...
741
  	return 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
742
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
743
  /* Put a long long into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
744
  int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, long long __user *d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
745
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
746
747
748
749
750
751
752
753
754
755
756
757
758
759
  	FPU_REG t;
  	long long tll;
  	int precision_loss;
  
  	if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		goto invalid_operand;
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
  			EXCEPTION(EX_Invalid);
  			goto invalid_operand;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
760
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
  
  	reg_copy(st0_ptr, &t);
  	precision_loss = FPU_round_to_int(&t, st0_tag);
  	((long *)&tll)[0] = t.sigl;
  	((long *)&tll)[1] = t.sigh;
  	if ((precision_loss == 1) ||
  	    ((t.sigh & 0x80000000) &&
  	     !((t.sigh == 0x80000000) && (t.sigl == 0) && signnegative(&t)))) {
  		EXCEPTION(EX_Invalid);
  		/* This is a special case: see sec 16.2.5.1 of the 80486 book */
  	      invalid_operand:
  		if (control_word & EX_Invalid) {
  			/* Produce something like QNaN "indefinite" */
  			tll = 0x8000000000000000LL;
  		} else
  			return 0;
  	} else {
  		if (precision_loss)
  			set_precision_flag(precision_loss);
  		if (signnegative(&t))
  			tll = -tll;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
782
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
783

3d0d14f98   Ingo Molnar   x86: lindent arch...
784
785
786
787
788
789
790
791
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, d, 8);
  	if (copy_to_user(d, &tll, 8))
  		FPU_abort;
  	RE_ENTRANT_CHECK_ON;
  
  	return 1;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
792
793
  
  /* Put a long into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
794
  int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, long __user *d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
795
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
796
797
798
799
800
801
802
803
804
805
806
807
808
  	FPU_REG t;
  	int precision_loss;
  
  	if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		goto invalid_operand;
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
  			EXCEPTION(EX_Invalid);
  			goto invalid_operand;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
809
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
  
  	reg_copy(st0_ptr, &t);
  	precision_loss = FPU_round_to_int(&t, st0_tag);
  	if (t.sigh ||
  	    ((t.sigl & 0x80000000) &&
  	     !((t.sigl == 0x80000000) && signnegative(&t)))) {
  		EXCEPTION(EX_Invalid);
  		/* This is a special case: see sec 16.2.5.1 of the 80486 book */
  	      invalid_operand:
  		if (control_word & EX_Invalid) {
  			/* Produce something like QNaN "indefinite" */
  			t.sigl = 0x80000000;
  		} else
  			return 0;
  	} else {
  		if (precision_loss)
  			set_precision_flag(precision_loss);
  		if (signnegative(&t))
  			t.sigl = -(long)t.sigl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
829
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
830

3d0d14f98   Ingo Molnar   x86: lindent arch...
831
832
833
834
835
836
837
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, d, 4);
  	FPU_put_user(t.sigl, (unsigned long __user *)d);
  	RE_ENTRANT_CHECK_ON;
  
  	return 1;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
838
839
  
  /* Put a short into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
840
  int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, short __user *d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
841
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
842
843
844
845
846
847
848
849
850
851
852
853
854
  	FPU_REG t;
  	int precision_loss;
  
  	if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		goto invalid_operand;
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
  			EXCEPTION(EX_Invalid);
  			goto invalid_operand;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
855
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
  
  	reg_copy(st0_ptr, &t);
  	precision_loss = FPU_round_to_int(&t, st0_tag);
  	if (t.sigh ||
  	    ((t.sigl & 0xffff8000) &&
  	     !((t.sigl == 0x8000) && signnegative(&t)))) {
  		EXCEPTION(EX_Invalid);
  		/* This is a special case: see sec 16.2.5.1 of the 80486 book */
  	      invalid_operand:
  		if (control_word & EX_Invalid) {
  			/* Produce something like QNaN "indefinite" */
  			t.sigl = 0x8000;
  		} else
  			return 0;
  	} else {
  		if (precision_loss)
  			set_precision_flag(precision_loss);
  		if (signnegative(&t))
  			t.sigl = -t.sigl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
875
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
876

3d0d14f98   Ingo Molnar   x86: lindent arch...
877
878
879
880
881
882
883
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, d, 2);
  	FPU_put_user((short)t.sigl, d);
  	RE_ENTRANT_CHECK_ON;
  
  	return 1;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
884
885
  
  /* Put a packed bcd array into user memory */
e8d591dc7   Ingo Molnar   x86: lindent arch...
886
  int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char __user *d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
887
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
  	FPU_REG t;
  	unsigned long long ll;
  	u_char b;
  	int i, precision_loss;
  	u_char sign = (getsign(st0_ptr) == SIGN_NEG) ? 0x80 : 0;
  
  	if (st0_tag == TAG_Empty) {
  		/* Empty register (stack underflow) */
  		EXCEPTION(EX_StackUnder);
  		goto invalid_operand;
  	} else if (st0_tag == TAG_Special) {
  		st0_tag = FPU_Special(st0_ptr);
  		if ((st0_tag == TW_Infinity) || (st0_tag == TW_NaN)) {
  			EXCEPTION(EX_Invalid);
  			goto invalid_operand;
  		}
  	}
  
  	reg_copy(st0_ptr, &t);
  	precision_loss = FPU_round_to_int(&t, st0_tag);
  	ll = significand(&t);
  
  	/* Check for overflow, by comparing with 999999999999999999 decimal. */
  	if ((t.sigh > 0x0de0b6b3) ||
  	    ((t.sigh == 0x0de0b6b3) && (t.sigl > 0xa763ffff))) {
  		EXCEPTION(EX_Invalid);
  		/* This is a special case: see sec 16.2.5.1 of the 80486 book */
  	      invalid_operand:
  		if (control_word & CW_Invalid) {
  			/* Produce the QNaN "indefinite" */
  			RE_ENTRANT_CHECK_OFF;
  			FPU_access_ok(VERIFY_WRITE, d, 10);
  			for (i = 0; i < 7; i++)
  				FPU_put_user(0, d + i);	/* These bytes "undefined" */
  			FPU_put_user(0xc0, d + 7);	/* This byte "undefined" */
  			FPU_put_user(0xff, d + 8);
  			FPU_put_user(0xff, d + 9);
  			RE_ENTRANT_CHECK_ON;
  			return 1;
  		} else
  			return 0;
  	} else if (precision_loss) {
  		/* Precision loss doesn't stop the data transfer */
  		set_precision_flag(precision_loss);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
932
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
933
934
935
936
937
938
939
940
941
942
  
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, d, 10);
  	RE_ENTRANT_CHECK_ON;
  	for (i = 0; i < 9; i++) {
  		b = FPU_div_small(&ll, 10);
  		b |= (FPU_div_small(&ll, 10)) << 4;
  		RE_ENTRANT_CHECK_OFF;
  		FPU_put_user(b, d + i);
  		RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
943
  	}
3d0d14f98   Ingo Molnar   x86: lindent arch...
944
945
946
947
948
  	RE_ENTRANT_CHECK_OFF;
  	FPU_put_user(sign, d + 9);
  	RE_ENTRANT_CHECK_ON;
  
  	return 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
949
950
951
952
953
954
955
956
957
958
959
960
  }
  
  /*===========================================================================*/
  
  /* r gets mangled such that sig is int, sign: 
     it is NOT normalized */
  /* The return value (in eax) is zero if the result is exact,
     if bits are changed due to rounding, truncation, etc, then
     a non-zero value is returned */
  /* Overflow is signalled by a non-zero return value (in eax).
     In the case of overflow, the returned significand always has the
     largest possible value */
e8d591dc7   Ingo Molnar   x86: lindent arch...
961
  int FPU_round_to_int(FPU_REG *r, u_char tag)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
962
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
  	u_char very_big;
  	unsigned eax;
  
  	if (tag == TAG_Zero) {
  		/* Make sure that zero is returned */
  		significand(r) = 0;
  		return 0;	/* o.k. */
  	}
  
  	if (exponent(r) > 63) {
  		r->sigl = r->sigh = ~0;	/* The largest representable number */
  		return 1;	/* overflow */
  	}
  
  	eax = FPU_shrxs(&r->sigl, 63 - exponent(r));
  	very_big = !(~(r->sigh) | ~(r->sigl));	/* test for 0xfff...fff */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
979
980
981
  #define	half_or_more	(eax & 0x80000000)
  #define	frac_part	(eax)
  #define more_than_half  ((eax & 0x80000001) == 0x80000001)
3d0d14f98   Ingo Molnar   x86: lindent arch...
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
  	switch (control_word & CW_RC) {
  	case RC_RND:
  		if (more_than_half	/* nearest */
  		    || (half_or_more && (r->sigl & 1))) {	/* odd -> even */
  			if (very_big)
  				return 1;	/* overflow */
  			significand(r)++;
  			return PRECISION_LOST_UP;
  		}
  		break;
  	case RC_DOWN:
  		if (frac_part && getsign(r)) {
  			if (very_big)
  				return 1;	/* overflow */
  			significand(r)++;
  			return PRECISION_LOST_UP;
  		}
  		break;
  	case RC_UP:
  		if (frac_part && !getsign(r)) {
  			if (very_big)
  				return 1;	/* overflow */
  			significand(r)++;
  			return PRECISION_LOST_UP;
  		}
  		break;
  	case RC_CHOP:
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1010
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1011

3d0d14f98   Ingo Molnar   x86: lindent arch...
1012
  	return eax ? PRECISION_LOST_DOWN : 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1013
1014
1015
1016
  
  }
  
  /*===========================================================================*/
e8d591dc7   Ingo Molnar   x86: lindent arch...
1017
  u_char __user *fldenv(fpu_addr_modes addr_modes, u_char __user *s)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1018
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
  	unsigned short tag_word = 0;
  	u_char tag;
  	int i;
  
  	if ((addr_modes.default_mode == VM86) ||
  	    ((addr_modes.default_mode == PM16)
  	     ^ (addr_modes.override.operand_size == OP_SIZE_PREFIX))) {
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_READ, s, 0x0e);
  		FPU_get_user(control_word, (unsigned short __user *)s);
  		FPU_get_user(partial_status, (unsigned short __user *)(s + 2));
  		FPU_get_user(tag_word, (unsigned short __user *)(s + 4));
  		FPU_get_user(instruction_address.offset,
  			     (unsigned short __user *)(s + 6));
  		FPU_get_user(instruction_address.selector,
  			     (unsigned short __user *)(s + 8));
  		FPU_get_user(operand_address.offset,
  			     (unsigned short __user *)(s + 0x0a));
  		FPU_get_user(operand_address.selector,
  			     (unsigned short __user *)(s + 0x0c));
  		RE_ENTRANT_CHECK_ON;
  		s += 0x0e;
  		if (addr_modes.default_mode == VM86) {
  			instruction_address.offset
  			    += (instruction_address.selector & 0xf000) << 4;
  			operand_address.offset +=
  			    (operand_address.selector & 0xf000) << 4;
  		}
  	} else {
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_READ, s, 0x1c);
  		FPU_get_user(control_word, (unsigned short __user *)s);
  		FPU_get_user(partial_status, (unsigned short __user *)(s + 4));
  		FPU_get_user(tag_word, (unsigned short __user *)(s + 8));
  		FPU_get_user(instruction_address.offset,
  			     (unsigned long __user *)(s + 0x0c));
  		FPU_get_user(instruction_address.selector,
  			     (unsigned short __user *)(s + 0x10));
  		FPU_get_user(instruction_address.opcode,
  			     (unsigned short __user *)(s + 0x12));
  		FPU_get_user(operand_address.offset,
  			     (unsigned long __user *)(s + 0x14));
  		FPU_get_user(operand_address.selector,
  			     (unsigned long __user *)(s + 0x18));
  		RE_ENTRANT_CHECK_ON;
  		s += 0x1c;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1065
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1066
1067
  
  #ifdef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
  	control_word &= ~0xe080;
  #endif /* PECULIAR_486 */
  
  	top = (partial_status >> SW_Top_Shift) & 7;
  
  	if (partial_status & ~control_word & CW_Exceptions)
  		partial_status |= (SW_Summary | SW_Backward);
  	else
  		partial_status &= ~(SW_Summary | SW_Backward);
  
  	for (i = 0; i < 8; i++) {
  		tag = tag_word & 3;
  		tag_word >>= 2;
  
  		if (tag == TAG_Empty)
  			/* New tag is empty.  Accept it */
  			FPU_settag(i, TAG_Empty);
  		else if (FPU_gettag(i) == TAG_Empty) {
  			/* Old tag is empty and new tag is not empty.  New tag is determined
  			   by old reg contents */
  			if (exponent(&fpu_register(i)) == -EXTENDED_Ebias) {
  				if (!
  				    (fpu_register(i).sigl | fpu_register(i).
  				     sigh))
  					FPU_settag(i, TAG_Zero);
  				else
  					FPU_settag(i, TAG_Special);
  			} else if (exponent(&fpu_register(i)) ==
  				   0x7fff - EXTENDED_Ebias) {
  				FPU_settag(i, TAG_Special);
  			} else if (fpu_register(i).sigh & 0x80000000)
  				FPU_settag(i, TAG_Valid);
  			else
  				FPU_settag(i, TAG_Special);	/* An Un-normal */
  		}
  		/* Else old tag is not empty and new tag is not empty.  Old tag
  		   remains correct */
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1106

3d0d14f98   Ingo Molnar   x86: lindent arch...
1107
1108
  	return s;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1109

e8d591dc7   Ingo Molnar   x86: lindent arch...
1110
  void frstor(fpu_addr_modes addr_modes, u_char __user *data_address)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1111
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
  	int i, regnr;
  	u_char __user *s = fldenv(addr_modes, data_address);
  	int offset = (top & 7) * 10, other = 80 - offset;
  
  	/* Copy all registers in stack order. */
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_READ, s, 80);
  	__copy_from_user(register_base + offset, s, other);
  	if (offset)
  		__copy_from_user(register_base, s + other, offset);
  	RE_ENTRANT_CHECK_ON;
  
  	for (i = 0; i < 8; i++) {
  		regnr = (i + top) & 7;
  		if (FPU_gettag(regnr) != TAG_Empty)
  			/* The loaded data over-rides all other cases. */
  			FPU_settag(regnr, FPU_tagof(&st(i)));
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1130
1131
  
  }
e8d591dc7   Ingo Molnar   x86: lindent arch...
1132
  u_char __user *fstenv(fpu_addr_modes addr_modes, u_char __user *d)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1133
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
1134
1135
1136
1137
1138
  	if ((addr_modes.default_mode == VM86) ||
  	    ((addr_modes.default_mode == PM16)
  	     ^ (addr_modes.override.operand_size == OP_SIZE_PREFIX))) {
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_WRITE, d, 14);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1139
  #ifdef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
1140
  		FPU_put_user(control_word & ~0xe080, (unsigned long __user *)d);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1141
  #else
3d0d14f98   Ingo Molnar   x86: lindent arch...
1142
  		FPU_put_user(control_word, (unsigned short __user *)d);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1143
  #endif /* PECULIAR_486 */
3d0d14f98   Ingo Molnar   x86: lindent arch...
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
  		FPU_put_user(status_word(), (unsigned short __user *)(d + 2));
  		FPU_put_user(fpu_tag_word, (unsigned short __user *)(d + 4));
  		FPU_put_user(instruction_address.offset,
  			     (unsigned short __user *)(d + 6));
  		FPU_put_user(operand_address.offset,
  			     (unsigned short __user *)(d + 0x0a));
  		if (addr_modes.default_mode == VM86) {
  			FPU_put_user((instruction_address.
  				      offset & 0xf0000) >> 4,
  				     (unsigned short __user *)(d + 8));
  			FPU_put_user((operand_address.offset & 0xf0000) >> 4,
  				     (unsigned short __user *)(d + 0x0c));
  		} else {
  			FPU_put_user(instruction_address.selector,
  				     (unsigned short __user *)(d + 8));
  			FPU_put_user(operand_address.selector,
  				     (unsigned short __user *)(d + 0x0c));
  		}
  		RE_ENTRANT_CHECK_ON;
  		d += 0x0e;
  	} else {
  		RE_ENTRANT_CHECK_OFF;
  		FPU_access_ok(VERIFY_WRITE, d, 7 * 4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1167
  #ifdef PECULIAR_486
3d0d14f98   Ingo Molnar   x86: lindent arch...
1168
1169
1170
1171
1172
  		control_word &= ~0xe080;
  		/* An 80486 sets nearly all of the reserved bits to 1. */
  		control_word |= 0xffff0040;
  		partial_status = status_word() | 0xffff0000;
  		fpu_tag_word |= 0xffff0000;
61c4628b5   Suresh Siddha   x86, fpu: split F...
1173
1174
  		I387->soft.fcs &= ~0xf8000000;
  		I387->soft.fos |= 0xffff0000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1175
  #endif /* PECULIAR_486 */
3d0d14f98   Ingo Molnar   x86: lindent arch...
1176
1177
1178
1179
1180
  		if (__copy_to_user(d, &control_word, 7 * 4))
  			FPU_abort;
  		RE_ENTRANT_CHECK_ON;
  		d += 0x1c;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1181

3d0d14f98   Ingo Molnar   x86: lindent arch...
1182
1183
1184
1185
1186
  	control_word |= CW_Exceptions;
  	partial_status &= ~(SW_Summary | SW_Backward);
  
  	return d;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1187

e8d591dc7   Ingo Molnar   x86: lindent arch...
1188
  void fsave(fpu_addr_modes addr_modes, u_char __user *data_address)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1189
  {
3d0d14f98   Ingo Molnar   x86: lindent arch...
1190
1191
  	u_char __user *d;
  	int offset = (top & 7) * 10, other = 80 - offset;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1192

3d0d14f98   Ingo Molnar   x86: lindent arch...
1193
  	d = fstenv(addr_modes, data_address);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1194

3d0d14f98   Ingo Molnar   x86: lindent arch...
1195
1196
  	RE_ENTRANT_CHECK_OFF;
  	FPU_access_ok(VERIFY_WRITE, d, 80);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1197

3d0d14f98   Ingo Molnar   x86: lindent arch...
1198
1199
1200
1201
1202
1203
1204
  	/* Copy all registers in stack order. */
  	if (__copy_to_user(d, register_base + offset, other))
  		FPU_abort;
  	if (offset)
  		if (__copy_to_user(d + other, register_base, offset))
  			FPU_abort;
  	RE_ENTRANT_CHECK_ON;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1205

3d0d14f98   Ingo Molnar   x86: lindent arch...
1206
  	finit();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1207
1208
1209
  }
  
  /*===========================================================================*/