From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53890 invoked by alias); 18 May 2015 21:33: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 53823 invoked by uid 89); 18 May 2015 21:33:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.0 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 18 May 2015 21:33:37 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id E1E3696C6; Mon, 18 May 2015 21:33:35 +0000 (UTC) Received: from localhost.localdomain (ovpn-113-21.phx2.redhat.com [10.3.113.21]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t4ILXZ5L005068; Mon, 18 May 2015 17:33:35 -0400 Message-ID: <555A5AAF.9070304@redhat.com> Date: Mon, 18 May 2015 21:34:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org, richard.sandiford@arm.com Subject: Re: [8/9] Remove END_HARD_REGNO References: <87oalhu59s.fsf@e105548-lin.cambridge.arm.com> <87oalhspxs.fsf@e105548-lin.cambridge.arm.com> In-Reply-To: <87oalhspxs.fsf@e105548-lin.cambridge.arm.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg01626.txt.bz2 On 05/18/2015 12:25 PM, Richard Sandiford wrote: > This patch replaces calls to END_HARD_REGNO with calls to END_REGNO and > moves END_REGNO to rtl.h (since it's now just a REG access). > > > gcc/ > * regs.h (END_HARD_REGNO): Delete. > (END_REGNO): Move to... > * rtl.h: ...here. > * bt-load.c (note_btr_set): Use END_REGNO instead of END_HARD_REGNO. > * caller-save.c (mark_set_regs): Likewise. > * combine.c (move_deaths, distribute_notes): Likewise. > * cse.c (invalidate, invalidate_for_call): Likewise. > * df-scan.c (df_ref_record): Likewise. > * postreload-gcse.c (reg_changed_after_insn_p): Likewise. > (record_last_reg_set_info): Likewise. > * reg-stack.c (convert_regs_exit): Likewise. > * reload.c (reg_overlap_mentioned_for_reload_p): Likewise. > * resource.c (update_live_status): Likewise. > * rtlanal.c (find_reg_fusage, find_regno_fusage): Likewise. OK. jeff