fpu32.c 4.5 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4
 * Copyright 2002 Andi Kleen, SuSE Labs.
 * FXSAVE<->i387 conversion support. Based on code by Gareth Hughes.
 * This is used for ptrace, signals and coredumps in 32bit emulation.
5
 */
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15

#include <linux/sched.h>
#include <asm/sigcontext32.h>
#include <asm/processor.h>
#include <asm/uaccess.h>
#include <asm/i387.h>

static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
{
	unsigned int tmp; /* to avoid 16 bit prefixes in the code */
16

L
Linus Torvalds 已提交
17
	/* Transform each pair of bits into 01 (valid) or 00 (empty) */
18 19 20 21 22 23 24
	tmp = ~twd;
	tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
	/* and move the valid bits to the lower byte. */
	tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
	tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
	tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
	return tmp;
L
Linus Torvalds 已提交
25 26
}

27 28 29 30 31 32
#define FPREG_ADDR(f, n)	((void *)&(f)->st_space + (n) * 16);
#define FP_EXP_TAG_VALID	0
#define FP_EXP_TAG_ZERO		1
#define FP_EXP_TAG_SPECIAL	2
#define FP_EXP_TAG_EMPTY	3

L
Linus Torvalds 已提交
33 34
static inline unsigned long twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
{
35
	struct _fpxreg *st;
L
Linus Torvalds 已提交
36 37 38 39 40 41
	unsigned long tos = (fxsave->swd >> 11) & 7;
	unsigned long twd = (unsigned long) fxsave->twd;
	unsigned long tag;
	unsigned long ret = 0xffff0000;
	int i;

42
	for (i = 0; i < 8; i++, twd >>= 1) {
L
Linus Torvalds 已提交
43
		if (twd & 0x1) {
44
			st = FPREG_ADDR(fxsave, (i - tos) & 7);
L
Linus Torvalds 已提交
45 46 47

			switch (st->exponent & 0x7fff) {
			case 0x7fff:
48
				tag = FP_EXP_TAG_SPECIAL;
L
Linus Torvalds 已提交
49 50
				break;
			case 0x0000:
51 52 53 54 55 56 57
				if (!st->significand[0] &&
				    !st->significand[1] &&
				    !st->significand[2] &&
				    !st->significand[3])
					tag = FP_EXP_TAG_ZERO;
				else
					tag = FP_EXP_TAG_SPECIAL;
L
Linus Torvalds 已提交
58 59
				break;
			default:
60 61 62 63
				if (st->significand[3] & 0x8000)
					tag = FP_EXP_TAG_VALID;
				else
					tag = FP_EXP_TAG_SPECIAL;
L
Linus Torvalds 已提交
64 65 66
				break;
			}
		} else {
67
			tag = FP_EXP_TAG_EMPTY;
L
Linus Torvalds 已提交
68
		}
69
		ret |= tag << (2 * i);
L
Linus Torvalds 已提交
70 71 72 73
	}
	return ret;
}

74
#define G(num, val) err |= __get_user(val, num + (u32 __user *)buf)
L
Linus Torvalds 已提交
75 76 77 78 79 80

static inline int convert_fxsr_from_user(struct i387_fxsave_struct *fxsave,
					 struct _fpstate_ia32 __user *buf)
{
	struct _fpxreg *to;
	struct _fpreg __user *from;
81
	int i, err = 0;
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89
	u32 v;

	G(0, fxsave->cwd);
	G(1, fxsave->swd);
	G(2, fxsave->twd);
	fxsave->twd = twd_i387_to_fxsr(fxsave->twd);
	G(3, fxsave->rip);
	G(4, v);
90 91
	/* cs ignored */
	fxsave->fop = v>>16;
L
Linus Torvalds 已提交
92 93
	G(5, fxsave->rdp);
	/* 6: ds ignored */
94 95
	if (err)
		return -1;
L
Linus Torvalds 已提交
96 97 98

	to = (struct _fpxreg *)&fxsave->st_space[0];
	from = &buf->_st[0];
99
	for (i = 0; i < 8; i++, to++, from++) {
L
Linus Torvalds 已提交
100 101 102 103 104 105
		if (__copy_from_user(to, from, sizeof(*from)))
			return -1;
	}
	return 0;
}

106
#define P(num, val) err |= __put_user(val, num + (u32 __user *)buf)
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114

static inline int convert_fxsr_to_user(struct _fpstate_ia32 __user *buf,
				       struct i387_fxsave_struct *fxsave,
				       struct pt_regs *regs,
				       struct task_struct *tsk)
{
	struct _fpreg __user *to;
	struct _fpxreg *from;
115 116
	int i, err = 0;
	u16 cs, ds;
L
Linus Torvalds 已提交
117 118

	if (tsk == current) {
119 120 121 122 123 124 125 126
		/*
		 * should be actually ds/cs at fpu exception time, but
		 * that information is not available in 64bit mode.
		 */
		asm("movw %%ds,%0 " : "=r" (ds));
		asm("movw %%cs,%0 " : "=r" (cs));
	} else {
		 /* ptrace. task has stopped. */
L
Linus Torvalds 已提交
127 128
		ds = tsk->thread.ds;
		cs = regs->cs;
129
	}
L
Linus Torvalds 已提交
130 131 132 133 134

	P(0, (u32)fxsave->cwd | 0xffff0000);
	P(1, (u32)fxsave->swd | 0xffff0000);
	P(2, twd_fxsr_to_i387(fxsave));
	P(3, (u32)fxsave->rip);
135
	P(4,  cs | ((u32)fxsave->fop) << 16);
L
Linus Torvalds 已提交
136 137 138
	P(5, fxsave->rdp);
	P(6, 0xffff0000 | ds);

139 140
	if (err)
		return -1;
L
Linus Torvalds 已提交
141 142 143

	to = &buf->_st[0];
	from = (struct _fpxreg *) &fxsave->st_space[0];
144
	for (i = 0; i < 8; i++, to++, from++) {
L
Linus Torvalds 已提交
145 146 147 148 149 150
		if (__copy_to_user(to, from, sizeof(*to)))
			return -1;
	}
	return 0;
}

151 152 153
int restore_i387_ia32(struct task_struct *tsk,
		      struct _fpstate_ia32 __user *buf, int fsave)
{
L
Linus Torvalds 已提交
154
	clear_fpu(tsk);
155 156
	if (!fsave) {
		if (__copy_from_user(&tsk->thread.i387.fxsave,
L
Linus Torvalds 已提交
157 158 159 160 161
				     &buf->_fxsr_env[0],
				     sizeof(struct i387_fxsave_struct)))
			return -1;
		tsk->thread.i387.fxsave.mxcsr &= mxcsr_feature_mask;
		set_stopped_child_used_math(tsk);
162
	}
L
Linus Torvalds 已提交
163
	return convert_fxsr_from_user(&tsk->thread.i387.fxsave, buf);
164
}
L
Linus Torvalds 已提交
165

166 167
int save_i387_ia32(struct task_struct *tsk, struct _fpstate_ia32 __user *buf,
		   struct pt_regs *regs, int fsave)
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176
{
	int err = 0;

	init_fpu(tsk);
	if (convert_fxsr_to_user(buf, &tsk->thread.i387.fxsave, regs, tsk))
		return -1;
	if (fsave)
		return 0;
	err |= __put_user(tsk->thread.i387.fxsave.swd, &buf->status);
177 178
	if (fsave)
		return err ? -1 : 1;
L
Linus Torvalds 已提交
179 180 181 182 183
	err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
	err |= __copy_to_user(&buf->_fxsr_env[0], &tsk->thread.i387.fxsave,
			      sizeof(struct i387_fxsave_struct));
	return err ? -1 : 1;
}