From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id uI1gHWezvV93eQAAWB0awg (envelope-from ) for ; Tue, 24 Nov 2020 20:29:11 -0500 Received: by simark.ca (Postfix, from userid 112) id 75FEC1F0AB; Tue, 24 Nov 2020 20:29:11 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.3 required=5.0 tests=MAILING_LIST_MULTI,RDNS_NONE autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (unknown [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 2B0611E58E for ; Tue, 24 Nov 2020 20:29:11 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id CF00939540A3; Wed, 25 Nov 2020 01:29:10 +0000 (GMT) Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by sourceware.org (Postfix) with ESMTPS id 1C9CB39540BF for ; Wed, 25 Nov 2020 01:29:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1C9CB39540BF Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=alves.ped@gmail.com Received: by mail-wr1-f68.google.com with SMTP id m6so298329wrg.7 for ; Tue, 24 Nov 2020 17:29:08 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=9l5GA1+5PpUE/BYKBuGihhfIbKdvfIWY7YjyKfHFhCA=; b=ILuGMVnmYC1FLF8cMH8T0IXxe1bikeuF46t1dNrR62BBK5960nOQpcfx6lsOzjnuFV zxNz/adA2M70ngy7WkDtUux6fAqieyenDqdzj6UjONcf4V2n3lfW7AxKtOu4MIKyErwN c75I/3ld6UxDIO4EbNfbOxnhNg4bm2FM0p22rlqrOGzPNKlm9TKJ0L0qqZWLSgmt0QZm nYtsD1SzBbTU0pd9T/9tn7GXCJ0CQI1ogryJW1M3NNTAy6+C5W0H3icexysKyRViREfQ V8zMCw9TAXh6AZ2UO3Xx4oyRIaXCzhJ/4I/DtbMkyWYvs2WSh0zSiQVzvbnfZxQPG5ZA VnGA== X-Gm-Message-State: AOAM531jT3KFVaCAdkvr6WtUmjIM5RHeAISHAUf/PH14VhWxs/EpOtRX BYHACMC9YlKWh9y91ZOhw4JZKBVUOiSECg== X-Google-Smtp-Source: ABdhPJxuZWhjKHmMs2Yev2yNcPielrCTRjWcYqhjCbXp0A3RQtSAUUjfCAiYVGylxQyWGJe4HU1wjQ== X-Received: by 2002:adf:8169:: with SMTP id 96mr1241110wrm.418.1606267746518; Tue, 24 Nov 2020 17:29:06 -0800 (PST) Received: from ?IPv6:2001:8a0:f91f:e900:1d90:d745:3c32:c159? ([2001:8a0:f91f:e900:1d90:d745:3c32:c159]) by smtp.gmail.com with ESMTPSA id y18sm1333784wrr.67.2020.11.24.17.29.05 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 24 Nov 2020 17:29:05 -0800 (PST) Subject: Re: [PATCH 04/12] gdb: rename displaced_step_closure to displaced_step_copy_insn_closure To: Simon Marchi , gdb-patches@sourceware.org References: <20201110214614.2842615-1-simon.marchi@efficios.com> <20201110214614.2842615-5-simon.marchi@efficios.com> From: Pedro Alves Message-ID: Date: Wed, 25 Nov 2020 01:29:04 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <20201110214614.2842615-5-simon.marchi@efficios.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 11/10/20 9:46 PM, Simon Marchi via Gdb-patches wrote: > Since we're going to introduce other "displaced step" functions and > another kind of displaced step closure, make it clear that this is the > return type of the gdbarch_displaced_step_copy_insn function. > > gdb/ChangeLog: > > * infrun.h (get_displaced_step_closure_by_addr): Rename to... > (get_displaced_step_copy_insn_closure_by_addr): ... this. > Update all users. > (displaced_step_closure): Rename to... > (displaced_step_copy_insn_closure): ... this. Update all users. > (displaced_step_closure_up): Rename to... > (displaced_step_copy_insn_closure_up). ... this. Update all > users. > (buf_displaced_step_closure): Rename to... > (buf_displaced_step_copy_insn_closure): ... this. Update all > users. > * infrun.c (get_displaced_step_closure_by_addr): Rename to... > (get_displaced_step_copy_insn_closure_by_addr): ... this. > Update all users. > * aarch64-tdep.c (aarch64_displaced_step_closure): Rename to... > (aarch64_displaced_step_copy_insn_closure): ... this. Update > all users. > * amd64-tdep.c (amd64_displaced_step_closure): Rename to... > (amd64_displaced_step_copy_insn_closure): ... this. Update all > users. > * arm-tdep.h (arm_displaced_step_closure): Rename to... > (arm_displaced_step_copy_insn_closure): ... this. Update all > users. > * i386-tdep.h (i386_displaced_step_closure): Rename to... > (i386_displaced_step_copy_insn_closure): ... this. Update all > users. > * rs6000-tdep.c (ppc_displaced_step_closure): Rename to... > (ppc_displaced_step_copy_insn_closure): ... this. Update all > users. > * s390-tdep.c (s390_displaced_step_closure): Rename to... > (s390_displaced_step_copy_insn_closure): ... this. Update all > users. > * gdbarch.h: Re-generate. > * gdbarch.c: Re-generate. OK.