diff options
author | peter <peter@FreeBSD.org> | 2003-07-22 06:50:34 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-07-22 06:50:34 +0000 |
commit | d7566f1c0d0a3e620a90adeb7023959bf3b8324c (patch) | |
tree | 209622de6fd77eee9d8076b26c6a2360f56e6092 /sys/amd64/include/fpu.h | |
parent | fe3ce16f0fe94ba5f002c366432709542e11a77a (diff) | |
download | FreeBSD-src-d7566f1c0d0a3e620a90adeb7023959bf3b8324c.zip FreeBSD-src-d7566f1c0d0a3e620a90adeb7023959bf3b8324c.tar.gz |
Go back to 64 bit precision for fadd/fsub/fsqrt etc. This is because on
AMD64, gcc (and the ABI) expects the x87 unit to be running in 80/64
mode (not 64/53) so that it can use it for 'long double' operations. It
takes the expected precision differences into account when generating
code.
Diffstat (limited to 'sys/amd64/include/fpu.h')
-rw-r--r-- | sys/amd64/include/fpu.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sys/amd64/include/fpu.h b/sys/amd64/include/fpu.h index ae576de..81ef808 100644 --- a/sys/amd64/include/fpu.h +++ b/sys/amd64/include/fpu.h @@ -85,16 +85,17 @@ struct savefpu { * 64-bit precision * all exceptions masked. * - * We modify the affine mode bit and precision bits in this to give: + * FreeBSD/i386 uses 53 bit precision for things like fadd/fsub/fsqrt etc + * because of the difference between memory and fpu register stack arguments. + * If its using an intermediate fpu register, it has 80/64 bits to work + * with. If it uses memory, it has 64/53 bits to work with. However, + * gcc is aware of this and goes to a fair bit of trouble to make the + * best use of it. * - * affine mode for 287's (if they work at all) (1 in bitfield 1<<12) - * 53-bit precision (2 in bitfield 3<<8) - * - * 64-bit precision often gives bad results with high level languages - * because it makes the results of calculations depend on whether - * intermediate values are stored in memory or in FPU registers. + * This is mostly academic for AMD64, because the ABI prefers the use + * SSE2 based math. For FreeBSD/amd64, we go with the default settings. */ -#define __INITIAL_NPXCW__ 0x127F +#define __INITIAL_NPXCW__ 0x037F #define __INITIAL_MXCSR__ 0x1F80 #define __INITIAL_MXCSR_MASK__ 0xFFBF |