Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Orjan Friberg <orjan.friberg@axis.com>
To: Andrew Cagney <cagney@gnu.org>
Cc: gdb-patches@sources.redhat.com
Subject: Re: Multiplexed registers and invalidating the register cache
Date: Fri, 23 Apr 2004 11:25:00 -0000	[thread overview]
Message-ID: <4088FD0F.7050501@axis.com> (raw)
In-Reply-To: <4087D794.10209@gnu.org>

Andrew Cagney wrote:
> 
> Oops, yes, pass the current_target (I ment that it shouldn't have a 
> parameter trying to tell the observers anything beyond the fact that the 
> target has changed).  (the sed script generates () instead of (void)).

Ok.

> There are architectures where registers live in memory so the 
> information is simply misleading.

Ok, I'm convinced.  (Thanks for clarifying.)

> Eventually, yes.  The two can co-habitate for a bit, first just:
> 
> - add the observer

Ok.  observer.texi gets the following lines added:

   @deftypefun void target_changed (struct target_ops *@var{current_target})
   The target's register contents has changed.
   @end deftypefun

(Proper patch delayed until I've got all the pieces in place.)

> - add code to frame.c and regcache.c to register themselves

I'm sorry; this is the part I don't get - my skull must be getting really thick. 
  Are you saying that frame.c and regcache.c should register an observer each 
for the target_changed event, like this (frame.c):

   void
   frame_observer_target_changed (struct target_ops *current_target)
   {
     flush_cached_frames ();
   }
   observer_attach_target_changed (frame_observer_target_changed);

and (regcache.c):

   void
   regcache_observer_target_changed (struct target_ops *current_target)
   {
     registers_changed ();
   }
   observer_attach_target_changed (regcache_observer_target_changed);

> - add code to the problem area to trigger the observer

Ok; something like (example from valops.c):

         if (deprecated_register_changed_hook)
           deprecated_register_changed_hook (-1);
         target_changed_event ();
+       observer_notify_target_changed (current_target);
         break;
        }

-- 
Orjan Friberg
Axis Communications


  reply	other threads:[~2004-04-23 11:25 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-04-14 11:44 Orjan Friberg
2004-04-14 14:46 ` Daniel Jacobowitz
2004-04-14 16:01   ` Andrew Cagney
2004-04-15 10:46   ` Orjan Friberg
2004-04-15 11:25     ` Orjan Friberg
2004-04-15 15:29       ` Andrew Cagney
2004-04-16 12:51         ` Orjan Friberg
2004-04-16 14:13           ` Daniel Jacobowitz
2004-04-16 14:54             ` Orjan Friberg
2004-04-16 19:15           ` Andrew Cagney
2004-04-19 14:13             ` Orjan Friberg
2004-04-21 16:48               ` Andrew Cagney
2004-04-22 13:58                 ` Orjan Friberg
2004-04-22 14:33                   ` Andrew Cagney
2004-04-23 11:25                     ` Orjan Friberg [this message]
2004-04-24  0:03                       ` Andrew Cagney
2004-04-23 15:20                         ` Orjan Friberg
2004-04-23 17:58                           ` Eli Zaretskii
2004-04-26  9:41                             ` Orjan Friberg
2004-04-24  0:03                           ` Andrew Cagney
2004-04-24  8:30                             ` Eli Zaretskii
2004-04-28 16:43                               ` Andrew Cagney
2004-04-28 17:40                                 ` Eli Zaretskii
2004-04-29  8:09                                   ` Orjan Friberg
2004-04-29 17:56                                     ` Eli Zaretskii
2004-04-30  7:39                                       ` Orjan Friberg
2004-04-26  9:50                             ` Orjan Friberg

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=4088FD0F.7050501@axis.com \
    --to=orjan.friberg@axis.com \
    --cc=cagney@gnu.org \
    --cc=gdb-patches@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