From: Jim Blandy <jimb@redhat.com>
To: gdb@sources.redhat.com
Subject: Supplying regsets containing pseudoregisters
Date: Tue, 08 Jun 2004 23:46:00 -0000 [thread overview]
Message-ID: <vt2k6yh8vgi.fsf@zenia.home> (raw)
I think I've run into a design problem in the interaction between the
"supply" functions that move data from target-specific sources like
ptrace and core files to the regcache, and the pseudoregister support.
The job of a regset's "supply" function is to (essentially) call
regcache_raw_supply on the selected register from the regset, or on
all the registers in the regset if the register number is -1.
regcache_raw_supply drops the register's bits into the regcache.
regcache_raw_supply only allows its callers to supply values of raw
registers. So there's an assumption that regset contains raw register
values.
But sometimes the values in a regset correspond to pseudoregisters.
For example, on the PowerPC E500, the general-purpose registers are 64
bits wide, but the E500 doesn't implement the normal PPC 64-bit
integer instructions; the only instructions which access the upper 32
bits are special SIMD vector instructions. GDB represents E500 gprs
as pseudoregisters stored in the lower halves of the ev0--ev31
registers, which are raw registers each 64 bits long. On E500 Linux,
a gregset_t (as found in a core file, or as handled by libthread_db)
contains the values of the 32-bit GPRs, not the 64-bit EV registers.
So the 'supply' function for such a regset has pseudoregister values,
but because of regcache_raw_supply's interface, it needs to supply raw
register values.
The supply function can certainly do the cooked->raw form conversion
itself, but that would be a duplication of the code in the existing
pseudo_register_write function. Unfortunately, pseudo_register_write
functions are defined work by writing to the underlying raw registers
with regcache_raw_write and friends, which ends up calling
target_store_registers, which isn't the sort of behavior a supply
function wants.
Ideally, the definition raw/pseudo relationship could be localized to
one set of functions. But it looks to me as if regset supply
functions need to implement it too.
I can certainly break out the PPC pseudo/raw correspondence into
functions that take the raw read/write functions as parameters, and
pass regcache_raw_supply when I'm supplying a regcache, and
regcache_raw_write when I'm writing a pseudoregister. That would keep
the correspondence localized to one set of functions, but it feels to
me like begging the question: there's no intrinsic reason to assume
that what GDB developers decide to call raw registers will always
match what OS developers decide to put in gregset_t and fpregset_t.
What's the thinking on this?
next reply other threads:[~2004-06-08 23:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-08 23:46 Jim Blandy [this message]
2004-06-09 15:43 ` Andrew Cagney
2004-06-09 17:29 ` Jim Blandy
2004-06-09 21:03 ` Jim Blandy
2004-06-10 16:28 ` Andrew Cagney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=vt2k6yh8vgi.fsf@zenia.home \
--to=jimb@redhat.com \
--cc=gdb@sources.redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox