dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/arch/ppc/math-emu
David Gibson 25c8a78b1e [PATCH] powerpc: Fix handling of fpscr on 64-bit
The recent merge of fpu.S broken the handling of fpscr for
ARCH=powerpc and CONFIG_PPC64=y.  FP registers could be corrupted,
leading to strange random application crashes.

The confusion arises, because the thread_struct has (and requires) a
64-bit area to save the fpscr, because we use load/store double
instructions to get it in to/out of the FPU.  However, only the low
32-bits are actually used, so we want to treat it as a 32-bit quantity
when manipulating its bits to avoid extra load/stores on 32-bit.  This
patch replaces the current definition with a structure of two 32-bit
quantities (pad and val), to clarify things as much as is possible.
The 'val' field is used when manipulating bits, the structure itself
is used when obtaining the address for loading/unloading the value
from the FPU.

While we're at it, consolidate the 4 (!) almost identical versions of
cvt_fd() and cvt_df() (arch/ppc/kernel/misc.S,
arch/ppc64/kernel/misc.S, arch/powerpc/kernel/misc_32.S,
arch/powerpc/kernel/misc_64.S) into a single version in fpu.S.  The
new version takes a pointer to thread_struct and applies the correct
offset itself, rather than a pointer to the fpscr field itself, again
to avoid confusion as to which is the correct field to use.

Finally, this patch makes ARCH=ppc64 also use the consolidated fpu.S
code, which it previously did not.

Built for G5 (ARCH=ppc64 and ARCH=powerpc), 32-bit powermac (ARCH=ppc
and ARCH=powerpc) and Walnut (ARCH=ppc, CONFIG_MATH_EMULATION=y).
Booted on G5 (ARCH=powerpc) and things which previously fell over no
longer do.

Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-10-27 20:48:50 +10:00
..
Makefile Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
double.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fabs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fadd.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fadds.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fcmpo.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fcmpu.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fctiw.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fctiwz.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fdiv.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fdivs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmadd.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmadds.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmr.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmsub.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmsubs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmul.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fmuls.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fnabs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fneg.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fnmadd.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fnmadds.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fnmsub.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fnmsubs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fres.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
frsp.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
frsqrte.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fsel.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fsqrt.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fsqrts.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fsub.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fsubs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lfd.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lfs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
math.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mcrfs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mffs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mtfsb0.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mtfsb1.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mtfsf.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mtfsfi.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
op-1.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
op-2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
op-4.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
op-common.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sfp-machine.h [PATCH] powerpc: Fix handling of fpscr on 64-bit 2005-10-27 20:48:50 +10:00
single.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
soft-fp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stfd.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stfiwx.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stfs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
types.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
udivmodti4.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00