public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/32048]  New: max / min and NaN
@ 2007-05-22 19:58 tkoenig at gcc dot gnu dot org
  2007-05-22 21:07 ` [Bug fortran/32048] " pinskia at gcc dot gnu dot org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2007-05-22 19:58 UTC (permalink / raw)
  To: gcc-bugs

The test program should consistently return
either 2.1 or NaN:

$ cat foo.f90
program main
  real :: nan
  nan = 0.0
  nan = nan / nan
  print *,max(2.1, nan)
  print *,max(nan, 2.1)
end program main
$ gfortran foo.f90
$ ./a.out
   2.100000
            NaN

A lot of compilers seem to get this wrong, as well.
Marking it as an enhancement.


-- 
           Summary: max / min and NaN
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: tkoenig at gcc dot gnu dot org
OtherBugsDependingO 30694
             nThis:


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
@ 2007-05-22 21:07 ` pinskia at gcc dot gnu dot org
  2007-05-22 21:42 ` dfranke at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-22 21:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2007-05-22 22:07 -------
NaN is not defined in Fortran's real so I am thinking about closing this as
invalid.  Only the IEEE types in Fortran 2003 is where NaN are defined.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
  2007-05-22 21:07 ` [Bug fortran/32048] " pinskia at gcc dot gnu dot org
@ 2007-05-22 21:42 ` dfranke at gcc dot gnu dot org
  2007-05-22 21:51 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-05-22 21:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from dfranke at gcc dot gnu dot org  2007-05-22 22:41 -------
Regardless whether NaN is defined, in an ordered set MAX(a, b) should always
equal MAX(b, a).

For the record:
$> ifort pr32048.f90 && ./a.out
   2.100000
   2.100000

$> sunf95 -w4 pr32048.f90 && ./a.out
Floating point exception


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dfranke at gcc dot gnu dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
  2007-05-22 21:07 ` [Bug fortran/32048] " pinskia at gcc dot gnu dot org
  2007-05-22 21:42 ` dfranke at gcc dot gnu dot org
@ 2007-05-22 21:51 ` pinskia at gcc dot gnu dot org
  2007-05-22 22:02 ` burnus at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-22 21:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2007-05-22 22:50 -------
And NaN is unordered which causes the results to become undefined unless you
have a defined value for min/max in the standard (fmin/fmax in C99 have a
defined value of having NaN being a missing value).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-05-22 21:51 ` pinskia at gcc dot gnu dot org
@ 2007-05-22 22:02 ` burnus at gcc dot gnu dot org
  2007-05-23 10:21 ` rguenth at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-05-22 22:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from burnus at gcc dot gnu dot org  2007-05-22 23:02 -------
Fortran has no concept of NaN except in Fortran 2003 IEEE module. To say it in
the words of Dick Hendrickson (cf. PR 30694): "A program is prohibited from
invoking an intrinsic procedure under circumstances where a value to be
returned in a subroutine argument or function result is outside the range of
values representable by objects of the specified type and type parameters,
unless the intrinsic module IEEE_ARITHMETIC (section 14) is accessible and
there is support
for an infinite or a NaN result, as appropriate."

If NaN is supported, then the compiler should follow IEEE which defines:
http://754r.ucbtest.org/drafts/754r.pdf

"minNum(x,y) is the canonical floating-point number x if x < y, y if y < x, the
canonicalized floating-point number if one operand is a floating-point number
and the other a NaN. Otherwise it is either x or y.
maxNum(x,y) is the canonical floating-point number y if x < y, x if y < x, the
canonicalized floating-point number if one operand is a floating-point number
and the other a NaN. Otherwise it is either x or y."

Thus the example program should be 2.100000 in both cases.

Other compilers:
- g95: NaN, NaN -> not IEEE conform
- NAG f95: NaN, 2.0999999 -> not consistent, not IEEE conform
- gfortran: 2.100000, NaN -> not consistent, not IEEE conform
- ifort 9.1: NaN, 2.100000 -> not consistent, not IEEE conform
- sunf95: -NaN, 2.1 -> not consistent, not IEEE conform

> And NaN is unordered which causes the results to become undefined unless you
> have a defined value for min/max in the standard
Fortran has - albeit only indirectly via the IEEE support.


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burnus at gcc dot gnu dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-05-22 22:02 ` burnus at gcc dot gnu dot org
@ 2007-05-23 10:21 ` rguenth at gcc dot gnu dot org
  2007-05-25 20:37 ` tkoenig at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-05-23 10:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from rguenth at gcc dot gnu dot org  2007-05-23 11:21 -------
Of course people are complaining that min/max as of IEEE does not propagate
NaNs
as other operations do.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2007-05-23 10:21 ` rguenth at gcc dot gnu dot org
@ 2007-05-25 20:37 ` tkoenig at gcc dot gnu dot org
  2007-07-28 13:49 ` fxcoudert at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2007-05-25 20:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from tkoenig at gcc dot gnu dot org  2007-05-25 20:36 -------
(In reply to comment #5)
> Of course people are complaining that min/max as of IEEE does not propagate
> NaNs
> as other operations do.

We could add flags like -fpropagate-nan, -fno-propagate-nan
and -fdontcare-propagate-nan (no, I'm not serious
about the last option).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max / min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2007-05-25 20:37 ` tkoenig at gcc dot gnu dot org
@ 2007-07-28 13:49 ` fxcoudert at gcc dot gnu dot org
  2007-07-28 13:50 ` [Bug fortran/32048] max/min " fxcoudert at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-07-28 13:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from fxcoudert at gcc dot gnu dot org  2007-07-28 13:49 -------
Here's a patch that yields results according to IEEE:

Index: f95-lang.c
===================================================================
--- f95-lang.c  (revision 126997)
+++ f95-lang.c  (working copy)
@@ -1004,6 +1004,11 @@ gfc_init_builtin_functions (void)
                      "malloc", false);
   DECL_IS_MALLOC (built_in_decls[BUILT_IN_MALLOC]) = 1;

+  tmp = tree_cons (NULL_TREE, void_type_node, void_list_node);
+  ftype = build_function_type (integer_type_node, tmp);
+  gfc_define_builtin ("__builtin_isnan", ftype, BUILT_IN_ISNAN,
+                     "__builtin_isnan", true);
+
 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
   builtin_types[(int) ENUM] = VALUE;
 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN)              \
Index: trans-intrinsic.c
===================================================================
--- trans-intrinsic.c   (revision 126997)
+++ trans-intrinsic.c   (working copy)
@@ -1407,11 +1407,11 @@ gfc_conv_intrinsic_ttynam (gfc_se * se, 
 /* Get the minimum/maximum value of all the parameters.
     minmax (a1, a2, a3, ...)
     {
-      if (a2 .op. a1)
+      if (a2 .op. a1 || isnan(a1))
         mvar = a2;
       else
         mvar = a1;
-      if (a3 .op. mvar)
+      if (a3 .op. mvar || isnan(mvar))
         mvar = a3;
       ...
       return mvar
@@ -1487,7 +1487,7 @@ gfc_conv_intrinsic_minmax (gfc_se * se, 
   elsecase = build2_v (MODIFY_EXPR, mvar, limit);
   for (i = 1, argexpr = argexpr->next; i < nargs; i++)
     {
-      tree cond;
+      tree cond, isnan;

       val = args[i]; 

@@ -1509,6 +1509,11 @@ gfc_conv_intrinsic_minmax (gfc_se * se, 
       thencase = build2_v (MODIFY_EXPR, mvar, convert (type, val));

       tmp = build2 (op, boolean_type_node, convert (type, val), limit);
+      if (FLOAT_TYPE_P (TREE_TYPE (limit)))
+       {
+         isnan = build_call_expr (built_in_decls[BUILT_IN_ISNAN], 1, limit);
+         tmp = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, tmp, isnan);
+       }
       tmp = build3_v (COND_EXPR, tmp, thencase, elsecase);

       if (cond != NULL_TREE)


With this, we generate calls to __builtin_isnan, which probably means slower
code is generated. Thus, we might want to make this dependent on whether
IEEE_ARITHMETIC is loaded or not, when we have this module implemented.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |wrong-code
   Last reconfirmed|0000-00-00 00:00:00         |2007-07-28 13:49:41
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max/min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2007-07-28 13:49 ` fxcoudert at gcc dot gnu dot org
@ 2007-07-28 13:50 ` fxcoudert at gcc dot gnu dot org
  2007-07-28 15:23 ` fxcoudert at gcc dot gnu dot org
  2007-07-28 15:24 ` fxcoudert at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-07-28 13:50 UTC (permalink / raw)
  To: gcc-bugs



-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |fxcoudert at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-07-28 13:49:41         |2007-07-28 13:50:30
               date|                            |
            Summary|max / min and NaN           |max/min and NaN


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max/min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2007-07-28 13:50 ` [Bug fortran/32048] max/min " fxcoudert at gcc dot gnu dot org
@ 2007-07-28 15:23 ` fxcoudert at gcc dot gnu dot org
  2007-07-28 15:24 ` fxcoudert at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-07-28 15:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from fxcoudert at gcc dot gnu dot org  2007-07-28 15:23 -------
Subject: Bug 32048

Author: fxcoudert
Date: Sat Jul 28 15:23:11 2007
New Revision: 127019

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127019
Log:
        PR fortran/32048

        * f95-lang.c (gfc_init_builtin_functions): Add declaration for
        __builtin_isnan.
        * trans-intrinsic.c (gfc_conv_intrinsic_minmax): Handled NaNs.

        * gfortran.dg/nan_1.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/nan_1.f90
Modified:
    trunk/gcc/fortran/f95-lang.c
    trunk/gcc/fortran/trans-intrinsic.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug fortran/32048] max/min and NaN
  2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2007-07-28 15:23 ` fxcoudert at gcc dot gnu dot org
@ 2007-07-28 15:24 ` fxcoudert at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-07-28 15:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from fxcoudert at gcc dot gnu dot org  2007-07-28 15:23 -------
Fixed.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.3.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32048


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2007-07-28 15:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-22 19:58 [Bug fortran/32048] New: max / min and NaN tkoenig at gcc dot gnu dot org
2007-05-22 21:07 ` [Bug fortran/32048] " pinskia at gcc dot gnu dot org
2007-05-22 21:42 ` dfranke at gcc dot gnu dot org
2007-05-22 21:51 ` pinskia at gcc dot gnu dot org
2007-05-22 22:02 ` burnus at gcc dot gnu dot org
2007-05-23 10:21 ` rguenth at gcc dot gnu dot org
2007-05-25 20:37 ` tkoenig at gcc dot gnu dot org
2007-07-28 13:49 ` fxcoudert at gcc dot gnu dot org
2007-07-28 13:50 ` [Bug fortran/32048] max/min " fxcoudert at gcc dot gnu dot org
2007-07-28 15:23 ` fxcoudert at gcc dot gnu dot org
2007-07-28 15:24 ` fxcoudert at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).