Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Nick Roberts <nickrob@snap.net.nz>
To: Vladimir Prus <ghost@cs.msu.su>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [PATCH] MI: Free values when updating
Date: Tue, 23 Jan 2007 08:56:00 -0000	[thread overview]
Message-ID: <17845.52624.949137.508231@kahikatea.snap.net.nz> (raw)
In-Reply-To: <E1H9GUf-0004ji-UA@zigzag.lvk.cs.msu.su>

 > I don't understand this change at all. It means that if you have 
 > a reference variable then:
 > 
 >         1. For initial value, dereferenced value will be saved
 >         2. For second and subsequent values, the value of reference itself will
 >         be saved. 
 > 
 > This is exactly what the code block in question tries to prevent --
 > it tries to make sure we always store dereferenced value.
 >
 > When I try to run tests with this patch applied, I get:
 > 
 > Running ../.././gdb/testsuite/gdb.mi/mi-var-cmd.exp ...
 > ERROR: Couldn't send -var-create i  * i to GDB.
 > ERROR: Couldn't send -var-create l * l to GDB.
 > ERROR: Couldn't send -var-create linteger * linteger to GDB.
 > 
 > and many more errors like this. Did you run the testsuite after change?

OK, it's not the right patch but I do think that release_values shouldn't be
called when updating; it's just that this patch stops calling it at other times
when it's needed.  Without any change, do enable timings (if you have that
patch), create a variable object of a large array and all its children then
repeatedly do "-var-update *".  It should take longer and longer to execute.

Then try the patch below which does pass all the tests (just intended for
illustration not approval).

 > Can you explain where the memory leak comes from. At the end of the function I see:
 > 
 >     if (var->value != NULL)
 >        value_free (var->value);
 > 
 > and the value passed to function itself does not have release_value called on it,
 > so should be freed automatically.

I've not said it's a memory leak but it's computationally wasteful to
call release_value for each variable object when updating.


-- 
Nick                                           http://www.inet.net.nz/~nickrob


*** varobj.c	16 Jan 2007 18:34:59 +1300	1.79
--- varobj.c	23 Jan 2007 21:24:17 +1300	
*************** install_new_value (struct varobj *var, s
*** 917,923 ****
    /* We are not interested in the address of references, and given
       that in C++ a reference is not rebindable, it cannot
       meaningfully change.  So, get hold of the real value.  */
!   if (value)
      {
        value = coerce_ref (value);
        release_value (value);
--- 917,927 ----
    /* We are not interested in the address of references, and given
       that in C++ a reference is not rebindable, it cannot
       meaningfully change.  So, get hold of the real value.  */
!   if (initial == 2)
!     {
!       initial = 0;
!     }
!   else if (value)
      {
        value = coerce_ref (value);
        release_value (value);
*************** varobj_update (struct varobj **varp, str
*** 1117,1123 ****
        if (v != *varp)
  	{	  
  	  new = value_of_child (v->parent, v->index);
! 	  if (install_new_value (v, new, 0 /* type not changed */))
  	    {
  	      /* Note that it's changed */
  	      VEC_safe_push (varobj_p, result, v);
--- 1121,1127 ----
        if (v != *varp)
  	{	  
  	  new = value_of_child (v->parent, v->index);
! 	  if (install_new_value (v, new, 2 /* type not changed */))
  	    {
  	      /* Note that it's changed */
  	      VEC_safe_push (varobj_p, result, v);


  reply	other threads:[~2007-01-23  8:56 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-23  7:45 Nick Roberts
2007-01-23  7:55 ` Vladimir Prus
2007-01-23  8:56   ` Nick Roberts [this message]
2007-01-23  9:15     ` Vladimir Prus
2007-01-23 11:02       ` Nick Roberts
2007-01-23 12:12         ` Daniel Jacobowitz
2007-01-23 21:19           ` Nick Roberts
2007-01-23 21:35             ` Vladimir Prus
2007-01-24  8:00         ` Vladimir Prus
2007-01-24  9:14           ` Nick Roberts
2007-01-24  9:21             ` Vladimir Prus

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=17845.52624.949137.508231@kahikatea.snap.net.nz \
    --to=nickrob@snap.net.nz \
    --cc=gdb-patches@sources.redhat.com \
    --cc=ghost@cs.msu.su \
    /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