[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect
From: |
Daniil Troshkov |
Subject: |
[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect |
Date: |
Wed, 14 Dec 2011 15:37:51 -0000 |
Yes, but you patch is correct...
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/889053
Title:
x86: FPU_MAX, FPU_MIN incorrect
Status in QEMU:
New
Bug description:
Dear All,
Bug was found in qemu.git.
Now (0.15, 1.0) all fpu is softfpu.
See target-i386/ops_sse.h:
#define FPU_MIN(size, a, b) (a) < (b) ? (a) : (b)
#define FPU_MAX(size, a, b) (a) > (b) ? (a) : (b)
It is incorrect now, becouse float64 (or 32) is (typedef) uint64_t (or 32).
And if we have signed operands we get error...
There is a test with this error (spec shinx3 test data, results diffs
on machine and qemu (linux)) and fixed patch. See attach.
Daniil.
To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/889053/+subscriptions
- [Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect, Daniil Troshkov, 2011/12/14
- [Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect, Peter Maydell, 2011/12/14
- [Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect,
Daniil Troshkov <=
- [Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect, Daniil Troshkov, 2011/12/14
- [Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect, Daniil Troshkov, 2011/12/14