From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Duffek To: kettenis@wins.uva.nl Cc: eliz@delorie.com, gdb@sources.redhat.com Subject: Re: Register cache Date: Sun, 11 Feb 2001 12:07:00 -0000 Message-id: <200102112013.f1BKDpM11302@rtl.cygnus.com> References: <200102102237.f1AMbnJ00230@delius.kettenis.local> X-SW-Source: 2001-02/msg00114.html On 10-Feb-2001, Mark Kettenis wrote: >Therefore I propose to make this "official" and change >the comment on target_fetch_registers() to: > > /* Fetch at least register REGNO, or all regs if REGNO == -1. */ I think that's a great idea. >Another question is whether we should make this behaviour (I mean >having target_fetch_registers() supply all registers it managed to get >in one go) recommended practice. I don't agree with that. There are times when GDB just needs one register, and it may be much more efficient on some targets to fetch one register than to fetch all of them. I think there might be places in GDB that fetch all registers by calling target_fetch_registers(REGNUM) for each REGNUM. If so, then I vote for changing those places to call target_fetch_registers(-1) instead of recommending against the target_fetch_registers(REGNUM) interface. Nick