From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 3D8743943429; Fri, 14 May 2021 14:57:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3D8743943429 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/redhat/heads/gcc-8-branch)] tree-optimization/98786 - fix issue with phiopt and abnormals X-Act-Checkin: gcc X-Git-Author: Richard Biener X-Git-Refname: refs/vendors/redhat/heads/gcc-8-branch X-Git-Oldrev: 65c5624fe5853138183064e554a301512a0764df X-Git-Newrev: 8f9f9d6065d1906b37a0dc1f2407124dcb09ee27 Message-Id: <20210514145713.3D8743943429@sourceware.org> Date: Fri, 14 May 2021 14:57:13 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 May 2021 14:57:13 -0000 https://gcc.gnu.org/g:8f9f9d6065d1906b37a0dc1f2407124dcb09ee27 commit 8f9f9d6065d1906b37a0dc1f2407124dcb09ee27 Author: Richard Biener Date: Fri Jan 22 10:34:42 2021 +0100 tree-optimization/98786 - fix issue with phiopt and abnormals This fixes factor_out_conditional_conversion to avoid creating overlapping lifetimes for abnormals. 2021-01-22 Richard Biener PR tree-optimization/98786 * tree-ssa-phiopt.c (factor_out_conditional_conversion): Avoid adding new uses of abnormals. * gcc.dg/torture/pr98786.c: New testcase. (cherry picked from commit 329f730fd1daa7cdae4a637244d4e215f9bb9a8c) Diff: --- gcc/testsuite/gcc.dg/torture/pr98786.c | 23 +++++++++++++++++++++++ gcc/tree-ssa-phiopt.c | 6 ++++++ 2 files changed, 29 insertions(+) diff --git a/gcc/testsuite/gcc.dg/torture/pr98786.c b/gcc/testsuite/gcc.dg/torture/pr98786.c new file mode 100644 index 00000000000..ea364717af2 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr98786.c @@ -0,0 +1,23 @@ +/* { dg-do compile } */ +/* { dg-additional-options "-fno-tree-dce" } */ + +void +func_30 (void); + +int __attribute__ ((pure, returns_twice)) +func_38 (int g_15, int p_39) +{ + return !!g_15 ? p_39 : 0; +} + +void +func_26 (int func_26___trans_tmp_1) +{ + long int l_37 = 0; + int __trans_tmp_1; + + func_26___trans_tmp_1 = func_38 (func_26___trans_tmp_1, 1); + __trans_tmp_1 = func_38 (func_26___trans_tmp_1, l_37); + l_37 = 1; + func_30 (); +} diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index c6826cb87a2..96c43eab937 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -451,6 +451,9 @@ factor_out_conditional_conversion (edge e0, edge e1, gphi *phi, if (!is_gimple_reg_type (TREE_TYPE (new_arg0))) return NULL; } + if (TREE_CODE (new_arg0) == SSA_NAME + && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_arg0)) + return NULL; if (TREE_CODE (arg1) == SSA_NAME) { @@ -465,6 +468,9 @@ factor_out_conditional_conversion (edge e0, edge e1, gphi *phi, new_arg1 = gimple_assign_rhs1 (arg1_def_stmt); if (convert_code == VIEW_CONVERT_EXPR) new_arg1 = TREE_OPERAND (new_arg1, 0); + if (TREE_CODE (new_arg1) == SSA_NAME + && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_arg1)) + return NULL; } else {