From patchwork Tue Mar 14 03:18:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 19563 Received: (qmail 58823 invoked by alias); 14 Mar 2017 03:19:49 -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 57320 invoked by uid 89); 14 Mar 2017 03:18:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy=Hx-languages-length:1633 X-HELO: barracuda.ebox.ca Received: from barracuda.ebox.ca (HELO barracuda.ebox.ca) (96.127.255.19) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 14 Mar 2017 03:18:46 +0000 X-ASG-Debug-ID: 1489461502-0c856e65d4188a2e0001-fS2M51 Received: from smtp.electronicbox.net (smtp.electronicbox.net [96.127.255.82]) by barracuda.ebox.ca with ESMTP id zpGC2eD4DVNlBh32 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 13 Mar 2017 23:18:22 -0400 (EDT) X-Barracuda-Envelope-From: simon.marchi@polymtl.ca X-Barracuda-RBL-Trusted-Forwarder: 96.127.255.82 Received: from simark.lan (173-246-11-162.qc.cable.ebox.net [173.246.11.162]) by smtp.electronicbox.net (Postfix) with ESMTP id 56497440E7E; Mon, 13 Mar 2017 23:18:22 -0400 (EDT) From: Simon Marchi X-Barracuda-Effective-Source-IP: 173-246-11-162.qc.cable.ebox.net[173.246.11.162] X-Barracuda-Apparent-Source-IP: 173.246.11.162 X-Barracuda-RBL-IP: 173.246.11.162 To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH 10/10] i386-gnu-nat: Use ptid from regcache instead of inferior_ptid Date: Mon, 13 Mar 2017 23:18:19 -0400 X-ASG-Orig-Subj: [PATCH 10/10] i386-gnu-nat: Use ptid from regcache instead of inferior_ptid Message-Id: <20170314031819.745-10-simon.marchi@polymtl.ca> In-Reply-To: <20170314031819.745-1-simon.marchi@polymtl.ca> References: <20170314031819.745-1-simon.marchi@polymtl.ca> X-Barracuda-Connect: smtp.electronicbox.net[96.127.255.82] X-Barracuda-Start-Time: 1489461502 X-Barracuda-Encrypted: DHE-RSA-AES256-SHA X-Barracuda-URL: https://96.127.255.19:443/cgi-mod/mark.cgi X-Barracuda-Scan-Msg-Size: 1715 X-Barracuda-BRTS-Status: 1 X-Barracuda-Spam-Score: 0.00 X-Barracuda-Spam-Status: No, SCORE=0.00 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=8.0 tests= X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.3.37208 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- X-IsSubscribed: yes gdb/ChangeLog: * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use ptid from regcache. --- gdb/i386-gnu-nat.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gdb/i386-gnu-nat.c b/gdb/i386-gnu-nat.c index 6953eeb78e..3bce88a206 100644 --- a/gdb/i386-gnu-nat.c +++ b/gdb/i386-gnu-nat.c @@ -91,15 +91,15 @@ gnu_fetch_registers (struct target_ops *ops, struct regcache *regcache, int regno) { struct proc *thread; + ptid_t ptid = regcache_get_ptid (regcache); /* Make sure we know about new threads. */ inf_update_procs (gnu_current_inf); - thread = inf_tid_to_thread (gnu_current_inf, - ptid_get_lwp (inferior_ptid)); + thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid)); if (!thread) error (_("Can't fetch registers from thread %s: No such thread"), - target_pid_to_str (inferior_ptid)); + target_pid_to_str (ptid)); if (regno < I386_NUM_GREGS || regno == -1) { @@ -184,15 +184,15 @@ gnu_store_registers (struct target_ops *ops, { struct proc *thread; struct gdbarch *gdbarch = get_regcache_arch (regcache); + ptid_t ptid = regcache_get_ptid (regcache); /* Make sure we know about new threads. */ inf_update_procs (gnu_current_inf); - thread = inf_tid_to_thread (gnu_current_inf, - ptid_get_lwp (inferior_ptid)); + thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid)); if (!thread) error (_("Couldn't store registers into thread %s: No such thread"), - target_pid_to_str (inferior_ptid)); + target_pid_to_str (ptid)); if (regno < I386_NUM_GREGS || regno == -1) {