public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Thiemo Seufer <ths@networkno.de>
To: Ian Lance Taylor <iant@google.com>
Cc: "Maciej W. Rozycki" <macro@mips.com>,
	binutils@sources.redhat.com,
		"Maciej W. Rozycki" <macro@linux-mips.org>
Subject: Re: [RFD] MIPS/gas: Optimisation cannot be set to 0
Date: Wed, 14 Nov 2007 17:57:00 -0000	[thread overview]
Message-ID: <20071114175714.GR8363@networkno.de> (raw)
In-Reply-To: <m3y7d7jt8z.fsf@localhost.localdomain>

Ian Lance Taylor wrote:
> "Maciej W. Rozycki" <macro@mips.com> writes:
> 
> > Wed Feb 12 14:36:29 1997  Ian Lance Taylor  <ian@cygnus.com>
> > 
> > 	* config/tc-mips.c (md_parse_option): When debugging, set
> > 	mips_optimize to 1, not 0.
> 
> My vague recollection of the problem is that at least at that time gcc
> would always pass a -O option to the assembler.  When not optimizing,
> it would pass -O0.  However, inserting NOPs for MIPS variants which do
> not need them does not help debugging.
> 
> Clearly failing to provide a way to set mips_optimize to 0 was an
> oversight.
> 
> >  I have no strong preference, but I think gas should have a mode where its 
> > input is assembled intact.  And swapping branches may produce surprising 
> > interactions with debugging information.  I am therefore in favour to the 
> > first proposal above, but I would like to hear from the others.
> 
> I'm not sure I see the relevance of "assembled intact."  The source is
> assembled just as the user specified with -O1.  -O1 simply inhibits
> adding additional unnecessary nop instructions--nop instructions that
> were required for MIPS ISA I but not for later ISAs.
> 
> At -O1 branches are not swapped, so debugging is not impaired.
> 
> I agree there should be a way to set mips_optimize to 0, but we should
> ensure that gcc -O0 does not set mips_optimize to 0 when assembling.

I plan to commit the appended patch to fix this. Comments?


Thiemo


2007-11-14  Thiemo Seufer  <ths@mips.com>

	* config/tc-mips.c (md_parse_option): Match mips_optimize to the -O
	option supplied, but still keep mips_optimize == 2 as default value.

Index: head/gas/config/tc-mips.c
===================================================================
--- head.orig/gas/config/tc-mips.c	2007-11-14 17:41:58.000000000 +0000
+++ head/gas/config/tc-mips.c	2007-11-14 17:51:43.000000000 +0000
@@ -11013,7 +11013,11 @@
       break;
 
     case 'O':
-      if (arg && arg[0] == '0')
+      if (arg == NULL)
+	mips_optimize = 1;
+      else if (arg[0] == '0')
+	mips_optimize = 0;
+      else if (arg[0] == '1')
 	mips_optimize = 1;
       else
 	mips_optimize = 2;

      parent reply	other threads:[~2007-11-14 17:57 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-09 13:52 Maciej W. Rozycki
2007-11-09 15:56 ` Thiemo Seufer
2007-11-09 16:10 ` Ian Lance Taylor
2007-11-09 17:35   ` Maciej W. Rozycki
2007-11-09 17:56   ` Paul Koning
2007-11-09 18:31     ` Maciej W. Rozycki
2007-11-11 11:24       ` Richard Sandiford
2007-11-12 18:07         ` Maciej W. Rozycki
2007-11-12 19:39           ` Richard Sandiford
2007-11-14 17:57   ` Thiemo Seufer [this message]

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=20071114175714.GR8363@networkno.de \
    --to=ths@networkno.de \
    --cc=binutils@sources.redhat.com \
    --cc=iant@google.com \
    --cc=macro@linux-mips.org \
    --cc=macro@mips.com \
    /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).