public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: wlp@ll.mit.edu
To: gcc-gnats@gcc.gnu.org
Subject: optimization/9794: Problem with -O2 on solaris causing variables to be overwritten
Date: Fri, 21 Feb 2003 21:36:00 -0000	[thread overview]
Message-ID: <20030221213438.22723.qmail@sources.redhat.com> (raw)


>Number:         9794
>Category:       optimization
>Synopsis:       Problem with -O2 on solaris causing variables to be overwritten
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Fri Feb 21 21:36:01 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     Will Pughe
>Release:        Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/3.2/specs
>Organization:
>Environment:
SunOS 5.8 Generic_108528-12 sun4u sparc SUNW,Sun-Fire-280R
>Description:
We have a library that packs a float into a character array,
then unpacks it later.  The values of the float were coming
out wrong when compiled with -O2.  If a value of 999.9 is
packed in, a value of 0 comes out.  This code worked on
all previous versions of g++, and works on g++3.2 for linux,
redhat 8.0.

The command line used is:
g++ -O2 prog.C -o prog -Wall
No warnings are reported.  The output is
fval 999.9
fval 0

The output should be
fval 999.9
fval 999.9
>How-To-Repeat:
#include <iostream>

using namespace std;

static char *buf;
static char *bufPtr;

void pack( float fval )
{
  // Following are volatile to prevent optimizers from reusing the 
  // allocated stack space for other purposes following the last 
  // direct reference to the address of the float value. (The g++ 3.2
  // optimizer apparently gets faked out by the cast of the float address
  // to an int address, and thinks the float address is free for reuse
  // prior to the underlying bits actually being packed into the buffer)
  //  volatile float fvalTmp = fval;
  
  //  volatile int *ival = (volatile int *)&fvalTmp;
  int *ival = (int *)&fval;

  *bufPtr++ = (*ival >> 24) & 0xff;
  *bufPtr++ = (*ival >> 16) & 0xff;
  *bufPtr++ = (*ival >> 8) & 0xff;
  *bufPtr++ = *ival & 0xff;
}

void unpack( float& val )
{
  int ival ;

  ival = *bufPtr++ << 24 ;
  ival |= (*bufPtr++ << 16) & 0x00ff0000;
  ival |= (*bufPtr++ << 8) & 0x0000ff00;
  ival |= (*bufPtr++ & 0xff);
  val = *((float *)&ival);
}

int main(int argc, char **argv )
{
  buf = new char[4];
  bufPtr = buf;

  float fval( 999.9 );
  cerr << "fval " << fval << endl;
  pack( fval );
  bufPtr = buf;
  unpack( fval );
  cerr << "fval " << fval << endl;
}
>Fix:
To fix the problem, uncomment the two volatile declarations
in the pack function, and comment out the next int
declaration.
>Release-Note:
>Audit-Trail:
>Unformatted:
 Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/ld --disable-nls
 Thread model: posix
 gcc version 3.2
 


             reply	other threads:[~2003-02-21 21:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-21 21:36 wlp [this message]
2003-02-22 10:24 ebotcazou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030221213438.22723.qmail@sources.redhat.com \
    --to=wlp@ll.mit.edu \
    --cc=gcc-gnats@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).