Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Sergio Durigan Junior <sergiodj@redhat.com>
To: Jan Kratochvil <jan.kratochvil@redhat.com>
Cc: Joel Brobecker <brobecker@adacore.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH] Forbid watchpoint on a constant value
Date: Fri, 21 May 2010 21:43:00 -0000	[thread overview]
Message-ID: <201005211824.20290.sergiodj@redhat.com> (raw)
In-Reply-To: <20100521070500.GA30452@host0.dyn.jankratochvil.net>

On Friday 21 May 2010 04:05:00, Jan Kratochvil wrote:
> On Fri, 21 May 2010 01:13:08 +0200, Joel Brobecker wrote:
> > > 	(gdb) watch 5
> > > 	Cannot watch constant value 5.
> [...]
> > For myself, I can see how a warning might be useful, but forbidding it might
> > be viewed as a little excessive,
> 
> `watch 5' can never trigger.  I cannot agree with creating a watchpoint which
> will never trigger.

`watch var = 5' will never trigger as well, but we've decided to accept it
anyway.  But I understand your point.

> The more problematic is the part
> 	const i = 5;
> 	(gdb) watch i
> +       case OP_VAR_VALUE:
> +           if (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_FUNC
> +               && !TYPE_CONST (SYMBOL_TYPE (s)))
> +             return 0;
> as you are right that a symbol can be tagged by buggy compiler as
> DW_TAG_const_type despite its value changes in the compiler output.  Another
> possibility is a memory corruption. On both -O0 -g and -O2 -g output it can
> change during:
> 	$ echo 'const int v;main(){*(int*)&v=1;}'|gcc -o 1 -g -x c -;gdb -nx -ex 'watch v' -ex r ./1
> 	Hardware watchpoint 1: v
> 	Old value = 0
> 	New value = 1

I can make the function return a different code in the case of OP_VAR_VALUE,
so that watch_command_1 will know if we're dealing with a _possible_ constant
value (and then asks the user if she really wants to put a watchpoint in that
variable, as Eli suggested).  WDYT?

> This case
> 	$ echo 'main(){const int v;*(int*)&v=1;}'|gcc -o 1 -O2 -g -x c -;gdb -nx -ex start -ex 'watch v' -ex c ./1
> gets compiled as:
> 	 <2><4b>: Abbrev Number: 3 (DW_TAG_variable)
> 	    <4c>   DW_AT_name        : v        
> 	    <54>   DW_AT_const_value : 1        
> which would be a GDB internal error if it would ever trigger.
> 
> A safer patch would be to check SYMBOL_CLASS for LOC_CONST/etc. of the
> variable instead of relying on compiler's DW_TAG_const_type correctness.

Ok, I will change my patch to use SYMBOL_CLASS and will resubmit it.

Thanks,

-- 
Sergio Durigan Junior
Red Hat


  reply	other threads:[~2010-05-21 21:24 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-18 17:36 Sergio Durigan Junior
2010-05-18 17:49 ` Eli Zaretskii
2010-05-18 19:24   ` Sergio Durigan Junior
2010-05-18 23:08 ` Jan Kratochvil
2010-05-18 23:50   ` Sergio Durigan Junior
2010-05-19 20:26     ` Jan Kratochvil
2010-05-20  6:21       ` Sergio Durigan Junior
2010-05-20 15:50         ` Jan Kratochvil
2010-05-20 16:24           ` Sergio Durigan Junior
2010-05-20 17:03             ` Jan Kratochvil
2010-05-20 17:06               ` Sergio Durigan Junior
2010-05-27 21:54             ` Tom Tromey
2010-05-20 23:23 ` Joel Brobecker
2010-05-20 23:31   ` Sergio Durigan Junior
2010-05-20 23:55     ` Joel Brobecker
2010-05-21  0:09       ` Sergio Durigan Junior
2010-05-21  7:05         ` Eli Zaretskii
2010-05-21  8:44   ` Jan Kratochvil
2010-05-21 21:43     ` Sergio Durigan Junior [this message]
2010-05-21 22:20       ` Sergio Durigan Junior
2010-05-29  0:04         ` Joel Brobecker
2010-06-04 13:54           ` Jan Kratochvil
2010-06-04 16:49             ` Tom Tromey
2010-06-05  5:35           ` Sergio Durigan Junior
2010-06-05 14:38             ` Jan Kratochvil
2010-06-06  0:20               ` Sergio Durigan Junior
2010-06-15 17:30             ` Tom Tromey
2010-06-16 18:33               ` Sergio Durigan Junior
2010-06-16 18:36                 ` Jan Kratochvil
2010-05-28  5:12     ` Tom Tromey

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=201005211824.20290.sergiodj@redhat.com \
    --to=sergiodj@redhat.com \
    --cc=brobecker@adacore.com \
    --cc=gdb-patches@sourceware.org \
    --cc=jan.kratochvil@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