public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-16  7:56 toon
  0 siblings, 0 replies; 8+ messages in thread
From: toon @ 2002-03-16  7:56 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, jakobus, toon

Synopsis: Infinite loop when compiling with optimisation on of z_log.c of libf2c

State-Changed-From-To: feedback->closed
State-Changed-By: toon
State-Changed-When: Sat Mar 16 07:56:48 2002
State-Changed-Why:
    Code can be compiled correctly with -ffloat-store for all
    versions of the compiler mentioned in this bug-report.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=5914


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c  of libf2c
@ 2002-03-13 14:06 Toon Moene
  0 siblings, 0 replies; 8+ messages in thread
From: Toon Moene @ 2002-03-13 14:06 UTC (permalink / raw)
  To: toon; +Cc: gcc-prs

The following reply was made to PR c/5914; it has been noted by GNATS.

From: Toon Moene <toon@moene.indiv.nluug.nl>
To: Ulrich Jakobus <jakobus@emss.co.za>
Cc: "gcc-bugs@gcc.gnu.org" <gcc-bugs@gcc.gnu.org>,
 	"gcc-gnats@gcc.gnu.org" <gcc-gnats@gcc.gnu.org>,
 	"gcc-prs@gcc.gnu.org" <gcc-prs@gcc.gnu.org>,
 	"nobody@gcc.gnu.org" <nobody@gcc.gnu.org>,
 	"toon@gcc.gnu.org" <toon@gcc.gnu.org>
Subject: Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c 
 of libf2c
Date: Wed, 13 Mar 2002 21:04:38 +0100

 Ulrich Jakobus wrote:
 
 > I wrote:
 
 > >Ah, now I see - you really meant this a *C* bug report :-)
 
 > Yes, I meant this to be a *C* bug of the optimiser (and I
 > submitted it as a C bug). Obviously the created code with
 > -O2 or -O3 is not correct, resulting in an infinite loop.
 > Compiling exactly the same code with -O works, and also
 > using e.g. gcc-2.95.2 with -O2 or -O3 works fine.
 
 Oh, perhaps you think that this is a regression w.r.t. 2.95.2 - it
 isn't.  The fact that 2.95.2 happened to compile this "correctly" is
 purely by chance.  In general, if you code a floating point
 fixed-point-finder by comparing one estimate with the other for
 equality, you'll lose on such targets as the x86, because it keeps
 variables in registers with a different precision than the corresponding
 memory location.
 
 -ffloat-store is the flag to use to circumvent this problem.
 
 -- 
 Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
 Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
 Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
 Join GNU Fortran 95: http://g95.sourceforge.net/ (under construction)


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-12 21:06 Ulrich Jakobus
  0 siblings, 0 replies; 8+ messages in thread
From: Ulrich Jakobus @ 2002-03-12 21:06 UTC (permalink / raw)
  To: toon; +Cc: gcc-prs

The following reply was made to PR c/5914; it has been noted by GNATS.

From: "Ulrich Jakobus" <jakobus@emss.co.za>
To: "Toon Moene" <toon@moene.indiv.nluug.nl>
Cc: "gcc-bugs@gcc.gnu.org" <gcc-bugs@gcc.gnu.org>,
	"gcc-gnats@gcc.gnu.org" <gcc-gnats@gcc.gnu.org>,
	"gcc-prs@gcc.gnu.org" <gcc-prs@gcc.gnu.org>,
	"nobody@gcc.gnu.org" <nobody@gcc.gnu.org>,
	"toon@gcc.gnu.org" <toon@gcc.gnu.org>
Subject: Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
Date: Wed, 13 Mar 2002 06:59:50 +0200

 >
 >Ah, now I see - you really meant this a *C* bug report :-)
 >
 Yes, I meant this to be a *C* bug of the optimiser (and I
 submitted it as a C bug). Obviously the created code with
 -O2 or -O3 is not correct, resulting in an infinite loop.
 Compiling exactly the same code with -O works, and also 
 using e.g. gcc-2.95.2 with -O2 or -O3 works fine.
 
 >Now that you know how to work around the problem, can I close the report?
 
 Well, I already knew before submitting the issue that if I 
 use just -O it works. If you think it is not important that
 also gcc-3.0.4 gives correct code (as gcc-2.95.2 did for in-
 stance) when using -O2 or -O3 you are welcome to close the issue.
 
 Thanks,
 
 Ulrich
 
 
 


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c  of libf2c
@ 2002-03-12 13:06 Toon Moene
  0 siblings, 0 replies; 8+ messages in thread
From: Toon Moene @ 2002-03-12 13:06 UTC (permalink / raw)
  To: toon; +Cc: gcc-prs

The following reply was made to PR c/5914; it has been noted by GNATS.

From: Toon Moene <toon@moene.indiv.nluug.nl>
To: Ulrich Jakobus <jakobus@emss.co.za>
Cc: "gcc-bugs@gcc.gnu.org" <gcc-bugs@gcc.gnu.org>,
 	"gcc-gnats@gcc.gnu.org" <gcc-gnats@gcc.gnu.org>,
 	"gcc-prs@gcc.gnu.org" <gcc-prs@gcc.gnu.org>,
 	"nobody@gcc.gnu.org" <nobody@gcc.gnu.org>,
 	"toon@gcc.gnu.org" <toon@gcc.gnu.org>
Subject: Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c 
 of libf2c
Date: Tue, 12 Mar 2002 21:15:36 +0100

 Ulrich Jakobus wrote:
 
 > I wrote:
 
 > >    Why are you submitting this ?
 
 > OK, now I know that I should probably use "-O2 -ffloat-store" for
 > the compilation, and not "-O3" or just "-O2" (which I have always
 > done for previous releases of gcc).
 
 Ah, now I see - you really meant this a *C* bug report :-)
 
 Now that you know how to work around the problem, can I close the report
 ?
 
 Thanks in advance,
 
 -- 
 Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
 Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
 Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
 Join GNU Fortran 95: http://g95.sourceforge.net/ (under construction)


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-11 21:16 Ulrich Jakobus
  0 siblings, 0 replies; 8+ messages in thread
From: Ulrich Jakobus @ 2002-03-11 21:16 UTC (permalink / raw)
  To: toon; +Cc: gcc-prs

The following reply was made to PR c/5914; it has been noted by GNATS.

From: "Ulrich Jakobus" <jakobus@emss.co.za>
To: "gcc-bugs@gcc.gnu.org" <gcc-bugs@gcc.gnu.org>,
	"gcc-gnats@gcc.gnu.org" <gcc-gnats@gcc.gnu.org>,
	"gcc-prs@gcc.gnu.org" <gcc-prs@gcc.gnu.org>,
	"jakobus@emss.co.za" <jakobus@emss.co.za>,
	"nobody@gcc.gnu.org" <nobody@gcc.gnu.org>,
	"toon@gcc.gnu.org" <toon@gcc.gnu.org>
Cc:  
Subject: Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
Date: Tue, 12 Mar 2002 07:13:05 +0200

 >    
 >    Why are you submitting this ?
 >
 Sorry, may be a misunderstanding: I am using gcc-3.0.4 to compile
 the file z_log.c of libf2c myself, I am not referring to g77 and
 libf2c that comes with g77. I need my own version of libf2c for
 several reasons (modified variable mappings in the header file f2c.h
 and certain other defines in the makefiles deviating from the standard).
 
 OK, now I know that I should probably use "-O2 -ffloat-store" for
 the compilation, and not "-O3" or just "-O2" (which I have always
 done for previous releases of gcc).
 
 Thanks,
 
 Ulrich
 
 
 


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-11 13:59 toon
  0 siblings, 0 replies; 8+ messages in thread
From: toon @ 2002-03-11 13:59 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, jakobus, nobody, toon

Synopsis: Infinite loop when compiling with optimisation on of z_log.c of libf2c

Responsible-Changed-From-To: unassigned->toon
Responsible-Changed-By: toon
Responsible-Changed-When: Mon Mar 11 13:59:52 2002
Responsible-Changed-Why:
    Fortran run time library - my job.
State-Changed-From-To: open->feedback
State-Changed-By: toon
State-Changed-When: Mon Mar 11 13:59:52 2002
State-Changed-Why:
    While this is true, as of gcc/g77-3.0.3 this file is
    compiled with -O2 -ffloat-store, which solves the problem.
    
    Why are you submitting this ?

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=5914


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

* Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-11 13:16 Tim Prince
  0 siblings, 0 replies; 8+ messages in thread
From: Tim Prince @ 2002-03-11 13:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c/5914; it has been noted by GNATS.

From: Tim Prince <tprince@computer.org>
To: jakobus@emss.co.za, gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
Date: Mon, 11 Mar 2002 13:10:26 -0800

 On Monday 11 March 2002 07:46, jakobus@emss.co.za wrote:
 > >Number:         5914
 > >Category:       c
 > >Synopsis:       Infinite loop when compiling with optimisation on of
 > > z_log.c of libf2c Confidential:   no
 > >Severity:       serious
 > >Priority:       medium
 > >Responsible:    unassigned
 > >State:          open
 > >Class:          wrong-code
 > >Submitter-Id:   net
 > >Arrival-Date:   Mon Mar 11 07:56:01 PST 2002
 > >Closed-Date:
 > >Last-Modified:
 > >Originator:     Ulrich Jakobus
 > >Release:        3.0.4
 > >Organization:
 > >Environment:
 >
 > System: Linux uj-emss 2.2.16 #1 Wed Aug 2 20:22:26 GMT 2000 i686 unknown
 > Architecture: i686
 >
 >
 > host: i686-pc-linux-gnu
 > build: i686-pc-linux-gnu
 > target: i686-pc-linux-gnu
 > configured with: ../gcc-3.0.4/configure
 >
 > >Description:
 >
 >     	Compiling the attached simple and short example file z_log.c (taken
 > from libf2c with specific input parameters) works fine for gcc-2.95.2 with
 > all levels of optimisation. For gcc-3.0.4 it also works for -O, but for -O2
 > or higher we end up in an infinite loop.
 >
 > >How-To-Repeat:
 >
 > 	gcc -O2 z_log.c
 >
 > >Fix:
 >
 Didn't Toon Moene already work on this?  Isn't this a loop at execution 
 time?
 -- 
 Tim Prince


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

* c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c
@ 2002-03-11  7:56 jakobus
  0 siblings, 0 replies; 8+ messages in thread
From: jakobus @ 2002-03-11  7:56 UTC (permalink / raw)
  To: gcc-gnats


>Number:         5914
>Category:       c
>Synopsis:       Infinite loop when compiling with optimisation on of z_log.c of libf2c
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          wrong-code
>Submitter-Id:   net
>Arrival-Date:   Mon Mar 11 07:56:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Ulrich Jakobus
>Release:        3.0.4
>Organization:
>Environment:
System: Linux uj-emss 2.2.16 #1 Wed Aug 2 20:22:26 GMT 2000 i686 unknown
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../gcc-3.0.4/configure 
>Description:
    	Compiling the attached simple and short example file z_log.c (taken from
        libf2c with specific input parameters) works fine for gcc-2.95.2 with all
        levels of optimisation. For gcc-3.0.4 it also works for -O, but for -O2 or
        higher we end up in an infinite loop.
>How-To-Repeat:
	gcc -O2 z_log.c
>Fix:
	


begin 644 z_log.zip
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
D=%54!0`#(,N,/%5X``!02P4&``````4`!0!2`0``]1\`````
`
end
>Release-Note:
>Audit-Trail:
>Unformatted:


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

end of thread, other threads:[~2002-03-16 15:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-16  7:56 c/5914: Infinite loop when compiling with optimisation on of z_log.c of libf2c toon
  -- strict thread matches above, loose matches on Subject: below --
2002-03-13 14:06 Toon Moene
2002-03-12 21:06 Ulrich Jakobus
2002-03-12 13:06 Toon Moene
2002-03-11 21:16 Ulrich Jakobus
2002-03-11 13:59 toon
2002-03-11 13:16 Tim Prince
2002-03-11  7:56 jakobus

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).