From patchwork Sat May 21 15:31:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roger Sayle X-Patchwork-Id: 54260 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E678D3825BDA for ; Sat, 21 May 2022 15:31:47 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from server.nextmovesoftware.com (server.nextmovesoftware.com [162.254.253.69]) by sourceware.org (Postfix) with ESMTPS id BB4573838034 for ; Sat, 21 May 2022 15:31:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BB4573838034 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=nextmovesoftware.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=nextmovesoftware.com DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=nextmovesoftware.com; s=default; h=Content-Type:MIME-Version:Message-ID: Date:Subject:To:From:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=rVKBwujWZ/WwiL7I69VbCAcQ5RsvEu7b68YkTaMjB5U=; b=GATsOW1dl2PXSxcP9A9uJs2W3O U3QUYB/BGFFnRrHkSCVdpiAZz+6wtrT2W8STdzPiRO68bUP5i5GNUmSWP6LdZatj5lUikReZUsTnh FmaNNfhtVCtxbYCuYiuND/Nzd9BaQ6HkGdKJsjGnIpiAE019j3tXQTf5Zd3Irg3mIY5dgINrJqJU/ 37f4sdlD/cgCVwfbtfYhjj4WySDk9l7eL/c0BmBBRiFLO/NZyPfLjsYbKy07WK07sHaszcHs0F3b7 YJoN90RUZtGZwaK/RCPg3xuakY5b7N7B7eft0b+OF8Jn6dkNWy84/kSFw5nimjxZLIIQDIAato6Yn P1oqeZuw==; Received: from host109-154-46-241.range109-154.btcentralplus.com ([109.154.46.241]:54446 helo=Dell) by server.nextmovesoftware.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nsR4j-0007hM-5T for gcc-patches@gcc.gnu.org; Sat, 21 May 2022 11:31:29 -0400 From: "Roger Sayle" To: Subject: [PATCH] Simplify vec_unpack of uniform_vector_p constructors in match.pd. Date: Sat, 21 May 2022 16:31:27 +0100 Message-ID: <008401d86d27$d74f9a20$85eece60$@nextmovesoftware.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AdhtJi3HiV8h5KyQQQWTwWMbPmTVmg== Content-Language: en-gb X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server.nextmovesoftware.com X-AntiAbuse: Original Domain - gcc.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - nextmovesoftware.com X-Get-Message-Sender-Via: server.nextmovesoftware.com: authenticated_id: roger@nextmovesoftware.com X-Authenticated-Sender: server.nextmovesoftware.com: roger@nextmovesoftware.com X-Source: X-Source-Args: X-Source-Dir: X-Spam-Status: No, score=-12.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" This patch simplifies vec_unpack_hi_expr/vec_unpack_lo_expr of a uniform constructor or vec_duplicate operand. The motivation is from PR 105621 where after optimization, we're left with: vect_cst__21 = {c_8(D), c_8(D), c_8(D), c_8(D)}; vect_iftmp.7_4 = [vec_unpack_hi_expr] vect_cst__21; It turns out that there are no constant folding/simplification patterns in match.pd, but the above can be simplified further to the equivalent: _20 = (long int) c_8(D); vect_iftmp.7_4 = [vec_duplicate_expr] _20; which on x86-64 results in one less instruction, replacing pshufd $0 then punpackhq, with punpcklqdq. This transformation is also useful for helping CSE to spot that unpack_hi and unpack_lo are equivalent. This patch has been tested on x86_64-pc-linux-gnu with make bootstrap and make -k check with no new failures. Ok for mainline? 2022-05-21 Roger Sayle gcc/ChangeLog * match.pd (simplify vec_unpack_hi): Simplify VEC_UNPACK_*_EXPR of uniform vector constructors and vec_duplicate. gcc/testsuite/ChangeLog * g++.dg/vect/pr105621.cc: New test case. Thanks in advance, Roger diff --git a/gcc/match.pd b/gcc/match.pd index c2fed9b..753c392 100644 --- a/gcc/match.pd +++ b/gcc/match.pd @@ -7800,6 +7800,22 @@ and, (if (TREE_CODE (@0) == SSA_NAME && num_imm_uses (@0) == 2) (minus (mult (vec_perm @1 @1 @3) @2) @4))) +/* VEC_UNPACK_LO_EXPR and friends. */ +(for unpack (vec_unpack_lo vec_unpack_float_lo vec_unpack_fix_trunc_lo + vec_unpack_hi vec_unpack_float_hi vec_unpack_fix_trunc_hi) + opcode (convert float fix_trunc convert float fix_trunc) + (simplify + (unpack CONSTRUCTOR@0) + (with { tree ctor = (TREE_CODE (@0) == SSA_NAME + ? gimple_assign_rhs1 (SSA_NAME_DEF_STMT (@0)) : @0); + tree elt = uniform_vector_p (ctor); + tree eltype = TREE_TYPE (type); } + (if (elt) + (vec_duplicate (opcode:eltype { elt; }))))) + (simplify + (unpack (vec_duplicate @0)) + (with { tree eltype = TREE_TYPE (type); } + (vec_duplicate (opcode:eltype @0))))) /* Match count trailing zeroes for simplify_count_trailing_zeroes in fwprop. The canonical form is array[((x & -x) * C) >> SHIFT] where C is a magic diff --git a/gcc/testsuite/g++.dg/vect/pr105621.cc b/gcc/testsuite/g++.dg/vect/pr105621.cc new file mode 100644 index 0000000..98e8fcd --- /dev/null +++ b/gcc/testsuite/g++.dg/vect/pr105621.cc @@ -0,0 +1,11 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -fdump-tree-optimized" } */ + +bool d; + +void test(unsigned short a, int b, unsigned c) { + for (int i = 2; i < 24; i += 3) + d = b ? a ? c : 2086607777901731118 : 0; +} + +/* { dg-final { scan-tree-dump-not "vec_unpack" "optimized" } } */