From patchwork Mon Aug 2 20:19:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Pop X-Patchwork-Id: 60602 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 E793CB70AA for ; Tue, 3 Aug 2010 06:22:05 +1000 (EST) Received: (qmail 22855 invoked by alias); 2 Aug 2010 20:21:48 -0000 Received: (qmail 22798 invoked by uid 22791); 2 Aug 2010 20:21:45 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, TW_SV, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-gy0-f175.google.com (HELO mail-gy0-f175.google.com) (209.85.160.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 02 Aug 2010 20:21:39 +0000 Received: by gyd8 with SMTP id 8so1550292gyd.20 for ; Mon, 02 Aug 2010 13:21:37 -0700 (PDT) Received: by 10.151.92.20 with SMTP id u20mr7609758ybl.58.1280780496926; Mon, 02 Aug 2010 13:21:36 -0700 (PDT) Received: from napoca (cpe-70-120-196-107.austin.res.rr.com [70.120.196.107]) by mx.google.com with ESMTPS id x3sm4387054ybl.22.2010.08.02.13.21.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 02 Aug 2010 13:21:36 -0700 (PDT) Received: by napoca (sSMTP sendmail emulation); Mon, 02 Aug 2010 15:21:33 -0500 From: Sebastian Pop To: gcc-patches@gcc.gnu.org Cc: Tobias Grosser , gcc-graphite Subject: [PATCH 05/65] Skeleton for the new SCoP detection. Date: Mon, 2 Aug 2010 15:19:38 -0500 Message-Id: <1280780438-17543-6-git-send-email-sebpop@gmail.com> In-Reply-To: <1280780438-17543-1-git-send-email-sebpop@gmail.com> References: <1280780438-17543-1-git-send-email-sebpop@gmail.com> X-IsSubscribed: yes 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 From: grosser 2010-06-02 Tobias Grosser * graphite-scop-detection.c (is_scop_p): New. (build_scops_new): New. A skeleton for the new scop detection. (build_scops_old): Renamed from build_scops. (build_scops): New version. Call the new and the old scop detection. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@160192 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog.graphite | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 5fe8322..a955dfe 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,11 @@ +2010-06-02 Tobias Grosser + + * graphite-scop-detection.c (is_scop_p): New. + (build_scops_new): New. A skeleton for the new scop detection. + (build_scops_old): Renamed from build_scops. + (build_scops): New version. Call the new and the old scop + detection. + 2010-05-27 Tobias Grosser Antoniu Pop