From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19302 invoked by alias); 3 Dec 2004 22:52:11 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 19275 invoked from network); 3 Dec 2004 22:52:07 -0000 Received: from unknown (HELO rwcrmhc11.comcast.net) (204.127.198.35) by sourceware.org with SMTP; 3 Dec 2004 22:52:07 -0000 Received: from [10.0.1.2] (h000393256f12.ne.client2.attbi.com[24.61.199.96]) by comcast.net (rwcrmhc11) with SMTP id <2004120322520501300ik4roe>; Fri, 3 Dec 2004 22:52:06 +0000 User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Fri, 03 Dec 2004 22:53:00 -0000 Subject: Re: RFA: Recognize 'x' in response to 'p' packet From: Paul Schlie To: Michael Snyder CC: Message-ID: In-Reply-To: <41B0DE38.1010107@redhat.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-SW-Source: 2004-12/txt/msg00095.txt.bz2 > From: Michael Snyder >> Paul Schlie wrote: >>> Jim Blandy >>> * remote.c (fetch_register_using_p): Recognize 'x's for the value >>> of the register as indicating that the register's value is not >>> available. >> >> Out of curiosity, under what practical circumstances would the value of a >> register not be accessible? (and if not, shouldn't an error be returned, as >> opposed to an 'x' which is converted to a 0 anyway? Which I've noticed "g" >> packets also assume?) > > Post-mortem debugging. See tracepoint.c. In a nutshell, you set up a > tracing experiment wherein a debugging agent on the target (like an > enhanced version of gdbserver) will collect data for you on the fly, > saving it to be retrieved later. Data can include register values > and memory values. During the post-mortem data examination stage, > the target agent enters a mode where, whenever GDB requests a register > or memory value, the agent supplies it from the collected cache rather > than from the 'live' target. It lets GDB look at a saved machine state, > but you can only examine those registers that were saved. Those that > weren't saved are not available, hence we need an idiom for reporting > this to gdb. We can't use any legitimate integer value because a saved > register might actually have had that value. Thanks, that makes a little more sense; but as xxxx values aren't represent- able within GDB, hence transformed upon receipt to 0; what's the point of transmit x's as opposed to 0's to begin with as an idiom until GDB is capable of differentiating valid from unknown values, which it's far from being capable of today, as it would imply that all logical values within GDB would need to be either maintained as text strings, or utilize structures containing it's value along with a tag indicating it's validity, and all expression corresponding evaluation routines would need to be updated. (so although the proposal tries to solve a problem, it can't until GDB is capable of differentiation between valid and unknown values. If the objective is to determine for the purposes of information only which register value are valid independent of their value; therefore wonder if it may make sense to simply define a new server/target message function which requests the list of the validity of the register values, analogously it's request for their values, as today it's incapable of differentiation between valid and invalid ones if encoded into the value representation itself.)