From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by oss.sgi.com (8.11.3/8.11.3) id f56JFqn17093 for linux-mips-outgoing; Wed, 6 Jun 2001 12:15:52 -0700 Received: from geoffk.org (desire.geoffk.org [64.2.60.52]) by oss.sgi.com (8.11.3/8.11.3) with SMTP id f56JFlh17075 for ; Wed, 6 Jun 2001 12:15:51 -0700 Received: (from geoffk@localhost) by geoffk.org (8.9.3/8.9.3) id MAA01399; Wed, 6 Jun 2001 12:32:15 -0700 Date: Wed, 6 Jun 2001 12:32:15 -0700 Message-Id: <200106061932.MAA01399@geoffk.org> X-Authentication-Warning: localhost.geoffk.org: geoffk set sender to geoffk@geoffk.org using -f From: Geoff Keating To: hjl@lucon.org CC: binutils@sourceware.cygnus.com, linux-mips@oss.sgi.com In-reply-to: <20010606091846.A21652@lucon.org> (hjl@lucon.org) Subject: Re: mips gas is horribly broken Reply-to: Geoff Keating References: <20010606091846.A21652@lucon.org> Sender: owner-linux-mips@oss.sgi.com Precedence: bulk > Date: Wed, 6 Jun 2001 09:18:46 -0700 > From: "H . J . Lu" > Cc: linux-mips@oss.sgi.com > Content-Disposition: inline > User-Agent: Mutt/1.2.5i > > Around line 9544 in gas/config/tc-mips.c, there are > > if (value != 0 && ! fixP->fx_pcrel) > { > /* In this case, the bfd_install_relocation routine will > incorrectly add the symbol value back in. We just want > the addend to appear in the object file. > FIXME: If this makes VALUE zero, we're toast. */ > value -= S_GET_VALUE (fixP->fx_addsy); > } > > I spent several days trying to figure out why libstdc++ was miscompiled > on Linux/mipsel. That was because value was zero. That is totally > unacceptable for gas to knowingly generate incorrect binaries. At > least, we should do > > value -= S_GET_VALUE (fixP->fx_addsy); > assert (value != 0); > > But I'd like to fix it once for all. Does anyone have any suggestions? There is no easy fix. This has been a longstanding problem, but any change to bfd_install_relocation would require modifying every port in a corresponding way, see for instance the FIXME at line 4816 or so in tc-ppc.c. -- - Geoffrey Keating