From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95981 invoked by alias); 8 Jun 2015 14:54:47 -0000 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 Received: (qmail 95970 invoked by uid 89); 8 Jun 2015 14:54:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_05,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx2.suse.de Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Mon, 08 Jun 2015 14:54:45 +0000 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id E832BABB1 for ; Mon, 8 Jun 2015 14:54:41 +0000 (UTC) Date: Mon, 08 Jun 2015 14:59:00 -0000 From: Richard Biener To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix PR66419 Message-ID: User-Agent: Alpine 2.11 (LSU 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2015-06/txt/msg00579.txt.bz2 This fixes PR66419. Bootstrap / regtest running on x86_64-unknown-linux-gnu. Richard. 2015-06-08 Richard Biener PR tree-optimization/66419 * tree-vect-slp.c (vect_supported_load_permutation_p): Properly consider GROUP_GAP when detecting a perfect subchain. * gcc.dg/vect/bb-slp-37.c: New testcase. Index: gcc/tree-vect-slp.c =================================================================== --- gcc/tree-vect-slp.c (revision 224221) +++ gcc/tree-vect-slp.c (working copy) @@ -1444,7 +1459,9 @@ vect_supported_load_permutation_p (slp_i next_load = NULL; FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load) { - if (j != 0 && next_load != load) + if (j != 0 + && (next_load != load + || GROUP_GAP (vinfo_for_stmt (load)) != 0)) { subchain_p = false; break; Index: gcc/testsuite/gcc.dg/vect/bb-slp-37.c =================================================================== --- gcc/testsuite/gcc.dg/vect/bb-slp-37.c (revision 0) +++ gcc/testsuite/gcc.dg/vect/bb-slp-37.c (working copy) @@ -0,0 +1,32 @@ +/* { dg-require-effective-target vect_int } */ + +#include "tree-vect.h" + +extern void abort (void); + +int a[16]; +int b[4]; + +void __attribute__((noinline)) +foo (void) +{ + b[0] = a[0]; + b[1] = a[4]; + b[2] = a[8]; + b[3] = a[12]; +} + +int main() +{ + int i; + check_vect (); + for (i = 0; i < 16; ++i) + { + a[i] = i; + __asm__ volatile (""); + } + foo (); + if (b[0] != 0 || b[1] != 4 || b[2] != 8 || b[3] != 12) + abort (); + return 0; +}