From: Jim Blandy <jimb@codesourcery.com>
To: Caroline Tice <ctice@apple.com>
Cc: gdb-patches@sourceware.org
Subject: Re: Ping! [PATCH]: Tracking and reporting uninitialized variables
Date: Wed, 16 May 2007 23:35:00 -0000 [thread overview]
Message-ID: <m3wsz8tk8x.fsf@codesourcery.com> (raw)
In-Reply-To: <BA62B3AC-EED3-44CF-8DEE-759DFFCAF0E0@apple.com> (Caroline Tice's message of "Wed, 9 May 2007 14:04:07 -0700")
Caroline Tice <ctice@apple.com> writes:
> I tested it by running it on a small test case I have
> (with DW_OP_GNU_uninit ops in it), as well as running the
> dejagnu testsuite with no regressions. Is this modified patch okay
> to commit to FSF GDB?
Thanks for the revisions! They look good. I have a few more
comments, mostly just details.
> Index: gdb/c-valprint.c
> ===================================================================
> RCS file: /cvs/src/src/gdb/c-valprint.c,v
> retrieving revision 1.42
> diff -c -3 -p -r1.42 c-valprint.c
> *** gdb/c-valprint.c 26 Jan 2007 20:54:16 -0000 1.42
> --- gdb/c-valprint.c 9 May 2007 20:53:21 -0000
> *************** c_value_print (struct value *val, struct
> *** 556,561 ****
> --- 556,564 ----
> }
> }
>
> + if (value_initialized (val) == 0)
> + fprintf_filtered (stream, " [uninitialized] ");
> +
> if (objectprint && (TYPE_CODE (type) == TYPE_CODE_CLASS))
> {
> /* Attempt to determine real type of object */
Nit-picky suggestion: wouldn't it be nicer to say "if (!
value_initialized (val)) ..."?
> *************** execute_stack_op (struct dwarf_expr_cont
> *** 731,736 ****
> --- 734,748 ----
> }
> goto no_push;
>
> + case DW_OP_GNU_uninit:
> + if (op_ptr != op_end
> + && *op_ptr != DW_OP_piece)
> + error (_("DWARF-2 expression error: DW_OP_reg operations must be "
> + "used either alone or in conjuction with DW_OP_piece."));
> +
> + ctx->initialized = 0;
> + goto no_push;
> +
> default:
> error (_("Unhandled dwarf expression opcode 0x%x"), op);
> }
You said DW_OP_GNU_uninit doesn't apply to individual pieces. So
shouldn't this code report an error whenever DW_OP_GNU_uninit isn't
the last opcode in the whole expression --- that is, even when it's
followed by DW_OP_piece?
> Index: gdb/dwarf2expr.h
> ===================================================================
> RCS file: /cvs/src/src/gdb/dwarf2expr.h,v
> retrieving revision 1.9
> diff -c -3 -p -r1.9 dwarf2expr.h
> *** gdb/dwarf2expr.h 9 Jan 2007 17:58:50 -0000 1.9
> --- gdb/dwarf2expr.h 9 May 2007 20:53:21 -0000
> *************** struct dwarf_expr_context
> *** 76,81 ****
> --- 76,84 ----
> will be on the expression stack. */
> int in_reg;
>
> + /* Initialization status of variable. */
> + int initialized;
> +
Another nit-pick: the comment should actually explain the
interpretation of the value: "Non-zero if variable has been
initialized; zero otherwise."
> Index: gdb/value.h
> ===================================================================
> RCS file: /cvs/src/src/gdb/value.h,v
> retrieving revision 1.96
> diff -c -3 -p -r1.96 value.h
> *** gdb/value.h 9 Jan 2007 17:58:59 -0000 1.96
> --- gdb/value.h 9 May 2007 20:53:21 -0000
> *************** extern int value_contents_equal (struct
> *** 193,198 ****
> --- 193,204 ----
> extern int value_optimized_out (struct value *value);
> extern void set_value_optimized_out (struct value *value, int val);
>
> + /* Set or return field indicating whether a variable is initialized or
> + not, based on DWARF location information supplied by the compiler.
> + 1 = initialized; 0 = uninitialized. */
> + extern int value_initialized (struct value *);
> + extern void set_value_initialized (struct value *, int);
> +
> /* While the following fields are per- VALUE .CONTENT .PIECE (i.e., a
> single value might have multiple LVALs), this hacked interface is
> limited to just the first PIECE. Expect further change. */
A final nit-pick: value.h, value.c, and so on are meant to be
independent of any particular debugging format. There should never be
DWARF dependencies here. Your code does this right --- a generic
mechanism to be used by DWARF-specific code in the appropriate way ---
but the comment should also not suggest that it's DWARF-specific.
Thus, "... based on debugging information supplied by the compiler".
next prev parent reply other threads:[~2007-05-16 23:35 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-02 0:14 Caroline Tice
2007-05-02 3:10 ` Eli Zaretskii
[not found] ` <233FDE1A-ABAF-40E9-9799-0B6938D8BE2E@apple.com>
2007-05-03 3:06 ` Eli Zaretskii
2007-05-08 16:26 ` Ping! " Caroline Tice
2007-05-09 0:33 ` Jim Blandy
2007-05-09 0:38 ` Jim Ingham
2007-05-09 1:09 ` Jim Blandy
2007-05-09 17:36 ` Caroline Tice
2007-05-09 21:04 ` Caroline Tice
2007-05-16 23:35 ` Jim Blandy [this message]
2007-05-17 17:18 ` Caroline Tice
2007-05-18 0:00 ` Jim Blandy
2007-05-18 16:38 ` Caroline Tice
2007-05-18 17:05 ` Jim Blandy
2007-05-18 17:14 ` Daniel Jacobowitz
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=m3wsz8tk8x.fsf@codesourcery.com \
--to=jimb@codesourcery.com \
--cc=ctice@apple.com \
--cc=gdb-patches@sourceware.org \
/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