From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 89961 invoked by alias); 9 Sep 2019 17:41:26 -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 89951 invoked by uid 89); 9 Sep 2019 17:41:26 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:782, H*i:sk:mptzhjd, H*f:sk:mptzhjd X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 09 Sep 2019 17:41:25 +0000 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 10D57800DFC; Mon, 9 Sep 2019 17:41:24 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-3.rdu2.redhat.com [10.10.112.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id 401306012C; Mon, 9 Sep 2019 17:41:23 +0000 (UTC) Subject: Re: [7/9] Remove IOR_COMPL_HARD_REG_SET To: gcc-patches@gcc.gnu.org, richard.sandiford@arm.com References: From: Jeff Law Openpgp: preference=signencrypt Message-ID: Date: Mon, 09 Sep 2019 17:41:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00591.txt.bz2 On 9/9/19 10:01 AM, Richard Sandiford wrote: > Use "x |= ~y" instead of "IOR_COMPL_HARD_REG_SET (x, y)", or just > "x | ~y" if the result is a temporary. > > > 2019-09-09 Richard Sandiford > > gcc/ > * hard-reg-set.h (IOR_COMPL_HARD_REG_SET): Delete. > * config/aarch64/cortex-a57-fma-steering.c (rename_single_chain): > Use "|~" instead of IOR_COMPL_HARD_REG_SET. > * config/aarch64/falkor-tag-collision-avoidance.c (init_unavailable): > Likewise. > * ira-build.c (ira_create_object, ira_set_allocno_class): Likewise. > * ira.c (setup_reg_renumber): Likewise. > * lra-assigns.c (find_hard_regno_for_1): Likewise. > * regrename.c (regrename_find_superclass): Likewise. > * reload1.c (find_reg): Likewise. OK jeff