[RFC/RFA] add struct parse_context to all command functions

Tom Tromey tromey@redhat.com
Wed Oct 22 18:54:00 GMT 2008


Ulrich> However, (some of) the places where you now have to reference
Ulrich> members of user_print_options seems to indicate either that
Ulrich> something is really weird (why should evaluate_subexp_standard
Ulrich> *evaluate* an expression differently depending on
Ulrich> "objectprint" ??), or that some routines maybe need to get
Ulrich> print options passed as arguments (print_formatted?  address
Ulrich> printing?  the breakpoint print routines?).

Yeah, there's some weird stuff.  In most cases I did not want to
change behavior, so I just added a reference to the global.

For evaluate_subexp_standard, there was a patch recently in this
area:

    http://sourceware.org/ml/gdb-patches/2008-08/msg00525.html

AFAIK this has not been reviewed.

For breakpoint print routines, I don't know.  I consider this part of
the patch a kind of technicality -- only needed because I chose to
remove the globals entirely, which I only did to ensure that I caught
all uses in the call hierarchy I really cared about.

This sort of thing can easily be addressed later, if necessary.  The
reason I'm not sure it is necessary is that it seems to me that the
user would really want breakpoint-printing to use the current globals.
So, capturing the state somewhere would not be correct.  At that
point... well, I'd rather have Joel solve this problem ;)

Ulrich> In fact, I'm wondering if it wouldn't be nicer to also have something
Ulrich> like a get_default_print_options function instead of refering to the
Ulrich> user_print_options global in the top-level printing routines ...

No problem.  Do you want it to make a copy?  Or just return a pointer
to the global?

Ulrich> However, with your code it would appear "inspect" is now a no-op:

Whoops.

Well, I did say it was untested :-)

I'll fix this by fixing print_formatted as you suggested.

Ulrich> There's still two globals used in various places throughout the
Ulrich> print routines: current_language and current_gdbarch.  Ideally,
Ulrich> these should be replaced by passing arguments as well ... I'm
Ulrich> not sure if the value_print_options structure is the correct
Ulrich> place to put language and gdbarch pointer, though.  Do you have
Ulrich> and opinions how to handle those?

I don't really mind putting these into that structure.  In the context
of this call hierarchy, these are immutable arguments to a particular
call, modifying that call's behavior.  For me that is enough to
qualify them.

But, we could take other approaches.  We could pass in a structure
that contains a struct value_print_options and a struct something_else.

FWIW I'd like to keep just a single "options" argument -- many of
these functions already have too many arguments.

Tom



More information about the Gdb-patches mailing list