[Mesa-dev] [Bug 66806] [softpipe] glxgears floating point exception
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Wed Jul 10 23:48:16 PDT 2013
https://bugs.freedesktop.org/show_bug.cgi?id=66806
--- Comment #2 from José Fonseca <jfonseca at vmware.com> ---
Indeed
http://software.intel.com/en-us/articles/x87-and-sse-floating-point-assists-in-ia-32-flush-to-zero-ftz-and-denormals-are-zero-daz
suggests to mask certain exceptions together with the FTZ/DAZ bits:
// UNDERFLOWS
set_mxcsr_on(FTZ_BIT);
set_mxcsr_off(UNDERFLOW_EXCEPTION_MASK);
make_denormal();
clear_flags();
// DENORMALS
set_mxcsr_off(DAZ_BIT);
set_mxcsr_on(DENORMAL_EXCEPTION_MASK);
make_denormal();
clear_flags();
So we should probably do the same.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20130711/3a8bddd8/attachment.html>
More information about the mesa-dev
mailing list