This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug math/15479] ceil, floor and round and trunc raise inexact exception


https://sourceware.org/bugzilla/show_bug.cgi?id=15479

--- Comment #8 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  30dcf959d2ab76f0bc8b5bc147c35319a6a2ba08 (commit)
       via  623629de066dc2f404470e76ff074fc5ba643c6c (commit)
       via  26b0bf96000a825ad3381be52ebd8adf2afc785f (commit)
      from  b87c1ec3fa398646f042a68f0ce0f7d09c1348c7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=30dcf959d2ab76f0bc8b5bc147c35319a6a2ba08

commit 30dcf959d2ab76f0bc8b5bc147c35319a6a2ba08
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Jun 27 17:26:52 2016 +0000

    Avoid "inexact" exceptions in i386/x86_64 trunc functions (bug 15479).

    As discussed in
    <https://sourceware.org/ml/libc-alpha/2016-05/msg00577.html>, TS
    18661-1 disallows ceil, floor, round and trunc functions from raising
    the "inexact" exception, in accordance with general IEEE 754 semantics
    for when that exception is raised.  Fixing this for x87 floating point
    is more complicated than for the other versions of these functions,
    because they use the frndint instruction that raises "inexact" and
    this can only be avoided by saving and restoring the whole
    floating-point environment.

    As I noted in
    <https://sourceware.org/ml/libc-alpha/2016-06/msg00128.html>, I have
    now implemented a GCC option -fno-fp-int-builtin-inexact for GCC 7,
    such that GCC will inline these functions on x86, without caring about
    "inexact", when the default -ffp-int-builtin-inexact is in effect.
    This allows users to get optimized code depending on the options they
    pass to the compiler, while making the out-of-line functions follow TS
    18661-1 semantics and avoid "inexact".

    This patch duly fixes the out-of-line trunc function implementations
    to avoid "inexact", in the same way as the nearbyint implementations.

    I do not know how the performance of implementations such as these
    based on saving the environment and changing the rounding mode
    temporarily compares to that of the C versions or SSE 4.1 versions (of
    course, for 32-bit x86 SSE implementations still need to get the
    return value in an x87 register); it's entirely possible other
    implementations could be faster in some cases.

    Tested for x86_64 and x86.

        [BZ #15479]
        * sysdeps/i386/fpu/s_trunc.S (__trunc): Save and restore
        floating-point environment rather than just control word.
        * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
        * sysdeps/i386/fpu/s_truncl.S (__truncl): Save and restore
        floating-point environment, with "invalid" exceptions merged in,
        rather than just control word.
        * sysdeps/x86_64/fpu/s_truncl.S (__truncl): Likewise.
        * math/libm-test.inc (trunc_test_data): Do not allow spurious
        "inexact" exceptions.

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=623629de066dc2f404470e76ff074fc5ba643c6c

commit 623629de066dc2f404470e76ff074fc5ba643c6c
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Jun 27 17:25:47 2016 +0000

    Avoid "inexact" exceptions in i386/x86_64 floor functions (bug 15479).

    As discussed in
    <https://sourceware.org/ml/libc-alpha/2016-05/msg00577.html>, TS
    18661-1 disallows ceil, floor, round and trunc functions from raising
    the "inexact" exception, in accordance with general IEEE 754 semantics
    for when that exception is raised.  Fixing this for x87 floating point
    is more complicated than for the other versions of these functions,
    because they use the frndint instruction that raises "inexact" and
    this can only be avoided by saving and restoring the whole
    floating-point environment.

    As I noted in
    <https://sourceware.org/ml/libc-alpha/2016-06/msg00128.html>, I have
    now implemented a GCC option -fno-fp-int-builtin-inexact for GCC 7,
    such that GCC will inline these functions on x86, without caring about
    "inexact", when the default -ffp-int-builtin-inexact is in effect.
    This allows users to get optimized code depending on the options they
    pass to the compiler, while making the out-of-line functions follow TS
    18661-1 semantics and avoid "inexact".

    This patch duly fixes the out-of-line floor function implementations
    to avoid "inexact", in the same way as the nearbyint implementations.

    I do not know how the performance of implementations such as these
    based on saving the environment and changing the rounding mode
    temporarily compares to that of the C versions or SSE 4.1 versions (of
    course, for 32-bit x86 SSE implementations still need to get the
    return value in an x87 register); it's entirely possible other
    implementations could be faster in some cases.

    Tested for x86_64 and x86.

        [BZ #15479]
        * sysdeps/i386/fpu/s_floor.S (__floor): Save and restore
        floating-point environment rather than just control word.
        * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
        * sysdeps/i386/fpu/s_floorl.S (__floorl): Save and restore
        floating-point environment, with "invalid" exceptions merged in,
        rather than just control word.
        * sysdeps/x86_64/fpu/s_floorl.S (__floorl): Likewise.
        * math/libm-test.inc (floor_test_data): Do not allow spurious
        "inexact" exceptions.

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=26b0bf96000a825ad3381be52ebd8adf2afc785f

commit 26b0bf96000a825ad3381be52ebd8adf2afc785f
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Jun 27 17:23:19 2016 +0000

    Avoid "inexact" exceptions in i386/x86_64 ceil functions (bug 15479).

    As discussed in
    <https://sourceware.org/ml/libc-alpha/2016-05/msg00577.html>, TS
    18661-1 disallows ceil, floor, round and trunc functions from raising
    the "inexact" exception, in accordance with general IEEE 754 semantics
    for when that exception is raised.  Fixing this for x87 floating point
    is more complicated than for the other versions of these functions,
    because they use the frndint instruction that raises "inexact" and
    this can only be avoided by saving and restoring the whole
    floating-point environment.

    As I noted in
    <https://sourceware.org/ml/libc-alpha/2016-06/msg00128.html>, I have
    now implemented a GCC option -fno-fp-int-builtin-inexact for GCC 7,
    such that GCC will inline these functions on x86, without caring about
    "inexact", when the default -ffp-int-builtin-inexact is in effect.
    This allows users to get optimized code depending on the options they
    pass to the compiler, while making the out-of-line functions follow TS
    18661-1 semantics and avoid "inexact".

    This patch duly fixes the out-of-line ceil function implementations to
    avoid "inexact", in the same way as the nearbyint implementations.

    I do not know how the performance of implementations such as these
    based on saving the environment and changing the rounding mode
    temporarily compares to that of the C versions or SSE 4.1 versions (of
    course, for 32-bit x86 SSE implementations still need to get the
    return value in an x87 register); it's entirely possible other
    implementations could be faster in some cases.

    Tested for x86_64 and x86.

        [BZ #15479]
        * sysdeps/i386/fpu/s_ceil.S (__ceil): Save and restore
        floating-point environment rather than just control word.
        * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
        * sysdeps/i386/fpu/s_ceill.S (__ceill): Save and restore
        floating-point environment, with "invalid" exceptions merged in,
        rather than just control word.
        * sysdeps/x86_64/fpu/s_ceill.S (__ceill): Likewise.
        * math/libm-test.inc (ceil_test_data): Do not allow spurious
        "inexact" exceptions.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                     |   35 ++++
 math/libm-test.inc            |  429 ++++++++++++++++++++---------------------
 sysdeps/i386/fpu/s_ceil.S     |   12 +-
 sysdeps/i386/fpu/s_ceilf.S    |   12 +-
 sysdeps/i386/fpu/s_ceill.S    |   17 +-
 sysdeps/i386/fpu/s_floor.S    |   12 +-
 sysdeps/i386/fpu/s_floorf.S   |   12 +-
 sysdeps/i386/fpu/s_floorl.S   |   17 +-
 sysdeps/i386/fpu/s_trunc.S    |   12 +-
 sysdeps/i386/fpu/s_truncf.S   |   12 +-
 sysdeps/i386/fpu/s_truncl.S   |   15 +-
 sysdeps/x86_64/fpu/s_ceill.S  |   15 +-
 sysdeps/x86_64/fpu/s_floorl.S |   15 +-
 sysdeps/x86_64/fpu/s_truncl.S |   13 +-
 14 files changed, 343 insertions(+), 285 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]