From patchwork Thu Sep 30 18:01:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Pop X-Patchwork-Id: 66214 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 036F5B70A9 for ; Fri, 1 Oct 2010 04:05:37 +1000 (EST) Received: (qmail 11932 invoked by alias); 30 Sep 2010 18:03:27 -0000 Received: (qmail 11063 invoked by uid 22791); 30 Sep 2010 18:03:14 -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, RCVD_IN_DNSWL_NONE, 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; Thu, 30 Sep 2010 18:03:09 +0000 Received: by mail-gy0-f175.google.com with SMTP id 8so110434gyg.20 for ; Thu, 30 Sep 2010 11:03:09 -0700 (PDT) Received: by 10.101.168.7 with SMTP id v7mr4443936ano.244.1285869789205; Thu, 30 Sep 2010 11:03:09 -0700 (PDT) Received: from napoca ([163.181.251.115]) by mx.google.com with ESMTPS id l7sm158510ane.19.2010.09.30.11.03.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 30 Sep 2010 11:03:08 -0700 (PDT) Received: by napoca (sSMTP sendmail emulation); Thu, 30 Sep 2010 13:03:06 -0500 From: Sebastian Pop To: gcc-patches@gcc.gnu.org Cc: gcc-graphite@googlegroups.com Subject: [PATCH 27/44] New SCoPDetection detects first SCoPs. Date: Thu, 30 Sep 2010 13:01:19 -0500 Message-Id: <1285869696-10915-28-git-send-email-sebpop@gmail.com> In-Reply-To: <1285869696-10915-1-git-send-email-sebpop@gmail.com> References: <1285869696-10915-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-09-02 Vladimir Kargov * graphite-scop-detection.c (is_valid_expr_p, is_valid_loop_p): New. (is_valid_stmt_p): Add data reference and operation-specific checks. (is_valid_bb_p): Change structure, add loop validity check. (is_scop_p): Move the TODO list (find_scops_new): New. (build_scops_new): Move part of functionality to find_scops_new and build_scops. Add necessary steps for successful SCoP construction. (build_scops): Compute SCoP sets for both detection algorithms, choose the resulting one depending on static condition. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@163791 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog.graphite | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 0ffb943..82a67a1 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,15 @@ +2010-09-02 Vladimir Kargov + + * graphite-scop-detection.c (is_valid_expr_p, is_valid_loop_p): New. + (is_valid_stmt_p): Add data reference and operation-specific checks. + (is_valid_bb_p): Change structure, add loop validity check. + (is_scop_p): Move the TODO list + (find_scops_new): New. + (build_scops_new): Move part of functionality to find_scops_new and + build_scops. Add necessary steps for successful SCoP construction. + (build_scops): Compute SCoP sets for both detection algorithms, choose + the resulting one depending on static condition. + 2010-08-24 Sebastian Pop * graphite-poly.c (graphite_read_scop_file): Fix uninitialize warning.