This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] add -s option to make -break-insert support dprintf
- From: Pedro Alves <palves at redhat dot com>
- To: Hui Zhu <teawater at gmail dot com>
- Cc: Tom Tromey <tromey at redhat dot com>, Eli Zaretskii <eliz at gnu dot org>, Hui Zhu <hui_zhu at mentor dot com>, gdb-patches ml <gdb-patches at sourceware dot org>, Marc Khouzam <marc dot khouzam at ericsson dot com>
- Date: Mon, 15 Apr 2013 17:05:29 +0100
- Subject: Re: [PATCH] add -s option to make -break-insert support dprintf
- References: <515451EA dot 1000200 at mentor dot com> <83y5d7wpvq dot fsf at gnu dot org> <CANFwon23qn_SVjcUWUZ2Z2Y5Euqg8efiwMvXkxTRtA9-2Ttk3Q at mail dot gmail dot com> <516454DA dot 9040109 at redhat dot com> <CANFwon1aDoyCYrsNeUpkmh6ARFJmT8B4JdFqYcc6GLdo=cgqig at mail dot gmail dot com> <87ppxzhfqy dot fsf at fleche dot redhat dot com> <CANFwon2_yT4SOpK7=Rq=91nFcvk2Rn3_wAkCMmsfgP-6iynGig at mail dot gmail dot com>
On 04/15/2013 02:33 PM, Hui Zhu wrote:
> On Sat, Apr 13, 2013 at 12:32 AM, Tom Tromey <tromey@redhat.com> wrote:
>>>>>>> "Hui" == Hui Zhu <teawater@gmail.com> writes:
>>
>> Hui> + [ -s "@var{template},@var{expression}[,@var{expression}@dots{}]" ]
>> Hui> + [ @var{location} ]
>>
>> Hui> +@item -s "@var{template},@var{expression}[,@var{expression}@dots{}]"
>> Hui> +Set a dynamic printf breakpoint, described in @ref{Dynamic Printf}.
>> Hui> +The @var{template} and @var{expression} should be within double
>> Hui> +quotes and be escaped by being preceded with a backslash.
>>
>> MI already defines a quoting approach and allows multiple arguments.
>> In fact one of its selling points is that it doesn't have to be as
>> free-form as the CLI -- it can be more predictable for programs to use.
>>
>> So, I think the above approach is not that great.
>> It adds a second layer of parsing to MI, I guess just to work around
>> internal deficiencies in gdb.
>>
>> It seems like you could use positional arguments instead:
>>
>> -break-insert -s FORMAT LOCATION ARG ARG ARG ...
>>
>>
>> I don't really understand the part about how the expressions should be
>> in double quotes. The test suite doesn't do that:
>>
>> +mi_gdb_test "5-break-insert -s \"\\\"arg=%d, g=%d\\\\n\\\", arg, g\" $dp_location1" \
>>
>> I suggest just dropping that text. I think it probably means that the
>> argument should be properly quoted for MI, but that is redundant.
I stopped for this as well before while reviewing the patches. I ended
up not say anything as after trying things out, I realized that unlike
with other arguments, which only require quoting if the argument itself
contains spaces or quotes, etc., in this case, the quotes really are
necessary (as in, GDB complains if you don't add the quotes). I didn't
think about the split arguments idea though. That's a good question.
>>
>> Tom
>
> This design is because the MI inferior will auto convert the format
> string of argument of mi command. But dprintf need format sting keep
> the original of the format string. So I use the current format.
I have a bit of trouble understanding exactly what you meant. :-( I see
that with "target-printf" (what dprintf uses as command when the dprintf
runs on the target/agent side), the whole format string plus the expressions are
passed down to the target as a single chunk, unanalyzed and unmodified.
E.g., even 'dprintf foo, "foo" "bar"' or 'agent-printf "foo" "bar"' is
accepted, and passed down to the target as is (whatever that might mean).
Is that what you were referring to? What did you mean by "MI inferior"
and "auto convert" ?
--
Pedro Alves