From patchwork Sat Apr 14 19:09:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 26729 Received: (qmail 29850 invoked by alias); 14 Apr 2018 19:18:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 29815 invoked by uid 89); 14 Apr 2018 19:18:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3 autolearn=ham version=3.3.2 spammy=our X-HELO: mx1.redhat.com Received: from mx3-rdu2.redhat.com (HELO mx1.redhat.com) (66.187.233.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 14 Apr 2018 19:18:18 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 80DCA42CBFD1 for ; Sat, 14 Apr 2018 19:10:11 +0000 (UTC) Received: from localhost.localdomain (ovpn04.gateway.prod.ext.ams2.redhat.com [10.39.146.4]) by smtp.corp.redhat.com (Postfix) with ESMTP id 32C17215CDC8 for ; Sat, 14 Apr 2018 19:10:11 +0000 (UTC) From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH 25/40] target_ops/C++: m68k GNU/Linux Date: Sat, 14 Apr 2018 20:09:38 +0100 Message-Id: <20180414190953.24481-26-palves@redhat.com> In-Reply-To: <20180414190953.24481-1-palves@redhat.com> References: <20180414190953.24481-1-palves@redhat.com> Straighforward conversion. Not tested. --- gdb/m68k-linux-nat.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/gdb/m68k-linux-nat.c b/gdb/m68k-linux-nat.c index 754051bc4b..536361f60d 100644 --- a/gdb/m68k-linux-nat.c +++ b/gdb/m68k-linux-nat.c @@ -57,6 +57,17 @@ #define PTRACE_GET_THREAD_AREA 25 #endif + +class m68k_linux_nat_target final : public linux_nat_target +{ +public: + /* Add our register access methods. */ + void fetch_registers (struct regcache *, int) override; + void store_registers (struct regcache *, int) override; +}; + +static m68k_linux_nat_target the_m68k_linux_nat_target; + /* This table must line up with gdbarch_register_name in "m68k-tdep.c". */ static const int regmap[] = { @@ -392,9 +403,8 @@ static void store_fpregs (const struct regcache *regcache, int tid, int regno) this for all registers (including the floating point and SSE registers). */ -static void -m68k_linux_fetch_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +m68k_linux_nat_target::fetch_registers (struct regcache *regcache, int regno) { pid_t tid; @@ -446,9 +456,8 @@ m68k_linux_fetch_inferior_registers (struct target_ops *ops, /* Store register REGNO back into the child process. If REGNO is -1, do this for all registers (including the floating point and SSE registers). */ -static void -m68k_linux_store_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +m68k_linux_nat_target::store_registers (struct regcache *regcache, int regno) { pid_t tid; @@ -509,15 +518,6 @@ ps_get_thread_area (struct ps_prochandle *ph, void _initialize_m68k_linux_nat (void) { - struct target_ops *t; - - /* Fill in the generic GNU/Linux methods. */ - t = linux_target (); - - /* Add our register access methods. */ - t->to_fetch_registers = m68k_linux_fetch_inferior_registers; - t->to_store_registers = m68k_linux_store_inferior_registers; - /* Register the target. */ - linux_nat_add_target (t); + add_target (&the_m68k_linux_nat_target); }