From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7422 invoked by alias); 31 Oct 2012 12:36:57 -0000 Received: (qmail 7331 invoked by uid 22791); 31 Oct 2012 12:36:56 -0000 X-SWARE-Spam-Status: No, hits=-6.5 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 31 Oct 2012 12:36:43 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 1B5F2A4479; Wed, 31 Oct 2012 13:36:42 +0100 (CET) Date: Wed, 31 Oct 2012 12:45:00 -0000 From: Richard Biener To: Jakub Jelinek Cc: Jan Hubicka , gcc-patches@gcc.gnu.org Subject: Re: Non-dominating loop bounds in tree-ssa-loop-niter 3/4 In-Reply-To: <20121031123408.GH1752@tucnak.redhat.com> Message-ID: References: <20121031103949.GD19020@kam.mff.cuni.cz> <20121031120359.GA13132@kam.mff.cuni.cz> <20121031122234.GA15866@kam.mff.cuni.cz> <20121031123408.GH1752@tucnak.redhat.com> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-10/txt/msg02913.txt.bz2 On Wed, 31 Oct 2012, Jakub Jelinek wrote: > On Wed, Oct 31, 2012 at 01:30:02PM +0100, Richard Biener wrote: > > On Wed, 31 Oct 2012, Jan Hubicka wrote: > > > > unroll you mean. Because unrolling mutates the CFG too much. > > > > Well - it was just a starting point, populating -Og with as little > > > > as possible and 100% profitable transforms (in both debug and speed > > > > metric). In late opts we only do (early opt queue is shared): > > > > > > Well, and what about early cunrolli? > > > > It's not there (and I would disable it for -Og). > > Generally, most of the loop transforms are undesirable for -Og. Maybe with the exception of un-looping once rolling loops. But yes, even loop header copying is undesirable in general. Richard.