From patchwork Sun Jan 9 14:07:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jack Howarth X-Patchwork-Id: 78020 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 0D2DEB70CD for ; Mon, 10 Jan 2011 01:07:29 +1100 (EST) Received: (qmail 23409 invoked by alias); 9 Jan 2011 14:07:28 -0000 Received: (qmail 23401 invoked by uid 22791); 9 Jan 2011 14:07:27 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from bromo.med.uc.edu (HELO bromo.med.uc.edu) (129.137.3.146) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Sun, 09 Jan 2011 14:07:23 +0000 Received: from bromo.med.uc.edu (localhost.localdomain [127.0.0.1]) by bromo.med.uc.edu (Postfix) with ESMTP id A5516B005C; Sun, 9 Jan 2011 09:07:21 -0500 (EST) Received: (from howarth@localhost) by bromo.med.uc.edu (8.14.3/8.14.3/Submit) id p09E7KLu027593; Sun, 9 Jan 2011 09:07:20 -0500 Date: Sun, 9 Jan 2011 09:07:20 -0500 From: Jack Howarth To: Sven Verdoolaege Cc: Tobias Grosser , gcc-graphite@googlegroups.com, Gerald Pfeifer , gcc-patches@gcc.gnu.org, Sebastian Pop Subject: Re: [PATCH] * doc/install.texi: Document availability of cloog-0.16 Message-ID: <20110109140720.GA27542@bromo.med.uc.edu> References: <1294250132-30205-1-git-send-email-grosser@fim.uni-passau.de> <4D269405.5080409@fim.uni-passau.de> <4D288676.1@fim.uni-passau.de> <20110108203549.GA32618@bromo.med.uc.edu> <20110108233301.GI4376MdfPADPa@purples> <20110108235254.GA1052@bromo.med.uc.edu> <20110109091311.GK4376MdfPADPa@purples> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20110109091311.GK4376MdfPADPa@purples> User-Agent: Mutt/1.5.18 (2008-05-17) Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org On Sun, Jan 09, 2011 at 10:13:11AM +0100, Sven Verdoolaege wrote: > On Sat, Jan 08, 2011 at 06:52:54PM -0500, Jack Howarth wrote: > > Skimo, > > Is the isl testsuite contained within cloog? When build entirely at -O3 > > That would depend on whether you are using the "bundled" isl or a "system" isl. > > > with Apple gcc 4.2.1 on x86_64-apple-darwin10, I get... > > > > make check > > Making check in isl > > Making check in . > > make check-TESTS > > PASS: isl_test > > OK. Looks good. > > skimo Sven, FYI, I rebuilt gcc trunk with... against cloog-0.16.1 with the isl built at -O3... http://gcc.gnu.org/ml/gcc-testresults/2011-01/msg00716.html and the results are identical to those with isl built at -O1... http://gcc.gnu.org/ml/gcc-testresults/2010-12/msg02090.html Jack Index: opts.c =================================================================== --- opts.c (revision 167318) +++ opts.c (working copy) @@ -462,6 +462,9 @@ { OPT_LEVELS_1_PLUS, OPT_fcombine_stack_adjustments, NULL, 1 }, /* -O2 optimizations. */ +#ifdef HAVE_cloog + { OPT_LEVELS_2_PLUS, OPT_fgraphite_identity, NULL, 1 }, +#endif { OPT_LEVELS_2_PLUS, OPT_finline_small_functions, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_findirect_inlining, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_fpartial_inlining, NULL, 1 },