public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH][Revised] Fix PR46037
@ 2011-01-12  6:41 Jack Howarth
  2011-01-12 12:01 ` Mike Stump
  0 siblings, 1 reply; 3+ messages in thread
From: Jack Howarth @ 2011-01-12  6:41 UTC (permalink / raw)
  To: gcc-patches; +Cc: jh, mikestump, iains

   Current gcc trunk is unable to lto-bootstrap on darwin due to a
bug in darwin_override_options() where debug_hooks->var_location is
tested prematurely for setting flag_var_tracking_uninit. This can be
solved by switching the test for setting flag_var_tracking_uninit to
check write_symbols instead. The existing check on debug_info_level
also has to be enhanced to honor the current setting of flag_gtoggle.
Bootstrap and regression tested with a normal and lto-bootstrap on
x86_64-apple-darwin10. Okay for gcc trunk?
                Jack
ps I also removed the unnecessary parentheses from the test
on generating_for_darwin_version for consistent formatting. These
changes also appear to eliminate the regression...

XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times optimized "link_error" 0

at -m32/-m64 on x86_64-apple-darwin10.



2011-01-12  Jan Hubicka  <jh@suse.cz>
            Jack Howarth <howarth@bromo.med.uc.edu>

	PR target/46037
	* config/darwin.c (darwin_override_options): Honor flag_gtoggle
	when checking debug_info_level. Test write_symbols instead of
	debug_hooks->var_location when setting flag_var_tracking_uninit.

Index: gcc/config/darwin.c
===================================================================
--- gcc/config/darwin.c	(revision 168683)
+++ gcc/config/darwin.c	(working copy)
@@ -2616,9 +2616,10 @@ darwin_override_options (void)
     }
 
   if (flag_var_tracking
-      && (generating_for_darwin_version >= 9)
-      && debug_info_level >= DINFO_LEVEL_NORMAL
-      && debug_hooks->var_location != do_nothing_debug_hooks.var_location)
+      && generating_for_darwin_version >= 9
+      && (flag_gtoggle ? (debug_info_level == DINFO_LEVEL_NONE)
+      : (debug_info_level >= DINFO_LEVEL_NORMAL))
+      && write_symbols == DWARF2_DEBUG)
     flag_var_tracking_uninit = 1;
 
   if (MACHO_DYNAMIC_NO_PIC_P)

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

* Re: [PATCH][Revised] Fix PR46037
  2011-01-12  6:41 [PATCH][Revised] Fix PR46037 Jack Howarth
@ 2011-01-12 12:01 ` Mike Stump
  2011-01-13 15:52   ` Jack Howarth
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Stump @ 2011-01-12 12:01 UTC (permalink / raw)
  To: Jack Howarth; +Cc: gcc-patches, jh, iains

On Jan 11, 2011, at 10:20 PM, Jack Howarth <howarth@bromo.med.uc.edu> wrote:
>   Current gcc trunk is unable to lto-bootstrap on darwin due to a
> bug in darwin_override_options() where debug_hooks->var_location is
> tested prematurely for setting flag_var_tracking_uninit.

> Okay for gcc trunk?

Ok.

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

* Re: [PATCH][Revised] Fix PR46037
  2011-01-12 12:01 ` Mike Stump
@ 2011-01-13 15:52   ` Jack Howarth
  0 siblings, 0 replies; 3+ messages in thread
From: Jack Howarth @ 2011-01-13 15:52 UTC (permalink / raw)
  To: Mike Stump; +Cc: gcc-patches, jh, iains

On Wed, Jan 12, 2011 at 03:10:13AM -0800, Mike Stump wrote:
> On Jan 11, 2011, at 10:20 PM, Jack Howarth <howarth@bromo.med.uc.edu> wrote:
> >   Current gcc trunk is unable to lto-bootstrap on darwin due to a
> > bug in darwin_override_options() where debug_hooks->var_location is
> > tested prematurely for setting flag_var_tracking_uninit.
> 
> > Okay for gcc trunk?
> 
> Ok.

Testresults for the revised patch using a lto-bootstrap with...

profiledbootstrap BOOT_CFLAGS="-g -O3" with --enable-build-with-cxx

on x86_64-apple-darwin10 at http://gcc.gnu.org/ml/gcc-testresults/2011-01/msg01087.html
with no regressions as well with revised patch applied. Likewise a lto-bootstrap
on powerpc-apple-darwin9 works. Can one of you commit this into gcc trunk? Thanks.
         Jack

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

end of thread, other threads:[~2011-01-13 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-12  6:41 [PATCH][Revised] Fix PR46037 Jack Howarth
2011-01-12 12:01 ` Mike Stump
2011-01-13 15:52   ` Jack Howarth

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