From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x52d.google.com (mail-ed1-x52d.google.com [IPv6:2a00:1450:4864:20::52d]) by sourceware.org (Postfix) with ESMTPS id 39738385840D for ; Wed, 1 Dec 2021 08:51:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 39738385840D Received: by mail-ed1-x52d.google.com with SMTP id x6so98124400edr.5 for ; Wed, 01 Dec 2021 00:51:03 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=wrhCSSHAf5s/lJdckS/3s8I1Gpftkj2TYm6izyBTNik=; b=pCFc/9IkF5rDScqECWZ+HRUQHqq6Owhsd6wNkRPNDBwnZx/7P72maMfxD3R++ZjpJH 4HOIOibkPDeyV6JoHTOc+8NQLJEIkk4khSewitRZejtcUj2rs9o6JNRp95t4RztaRcTv n9pM6qLchL0NgOeGbHsJYD1Eg1T3kURwMVBknc4nimQJM9diagul++bmqcZQhuoIvt13 M90tPi/xSgvWb0j/Q/iXC7795DlJLjoP6iRayX8fSDee2Ocd8dX5bg94c1+qxM5Ke0Zv gnvQu3zboKBxiHHx82uUgBMQTYYUsuYzCh++fjUqgH1gfm9GVg7rEym7kolBKcfFk8rD VX0Q== X-Gm-Message-State: AOAM530VwKKTiFkkUn9fpCmx8BmA09PYLubhutiYNEAW/b9FaZYiPKKM zkpLS6do16lImmAEZkNloWdCTt+mFQy3rxE10hA= X-Google-Smtp-Source: ABdhPJy0vLQbKO+idBqy4JydWio2La7rpBvNtLm1/ZiJ5sK1zPETbRkbQ2oSei/K8kPTtYkTM7Kvha9lRNZFGu/Vo1c= X-Received: by 2002:a17:906:d54c:: with SMTP id cr12mr5552614ejc.56.1638348662038; Wed, 01 Dec 2021 00:51:02 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Richard Biener Date: Wed, 1 Dec 2021 09:50:51 +0100 Message-ID: Subject: Re: [PATCH] tree-optimization/103464 - Also pre-process PHIs in range-of-stmt. To: Andrew MacLeod Cc: gcc-patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: , X-List-Received-Date: Wed, 01 Dec 2021 08:51:06 -0000 On Tue, Nov 30, 2021 at 3:35 PM Andrew MacLeod via Gcc-patches wrote: > > When I flatten the call stack for range_of_stmt in PR 103231 ( > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103231 ), I mention that I > was only flattening it for chains of statements with range handlers. If > it turned out that PHI chaining was also a problem, we could also do PHIs. > > The cost to do phis is quite nominal, and resolve this testcase... so > we might as well do PHIs as well. > > Bootstrapped on x86_64-pc-linux-gnu with no regressions. OK? OK. > Andrew