From: Pedro Alves <palves@redhat.com>
To: Andreas Arnez <arnez@linux.vnet.ibm.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH 2/3] Fix copy_bitwise()
Date: Thu, 17 Nov 2016 20:30:00 -0000 [thread overview]
Message-ID: <a5eee71c-6249-1b5d-00ea-330468e8b01c@redhat.com> (raw)
In-Reply-To: <m3oa1dvqzj.fsf@oc1027705133.ibm.com>
On 11/17/2016 07:36 PM, Andreas Arnez wrote:
> On Tue, Nov 15 2016, Pedro Alves wrote:
>
>> Looks like the sort of function that should be possible to
>> cover all sorts of inputs/outputs with unit tests. Aligned, misaligned,
>> big/little endian, etc., that sort of thing. That'd help
>> a lot with ensuring rewrites behave as intended. Would you feel like
>> including some?
>
> Sure. See the patch below, which I'd insert after the one that fixes
> copy_bitwise.
Thanks!
> With that added, is the series OK to apply?
I'm feeling dense and I can't make sense of the new test. :-/
Can you add some more comments? Is there some logic behind the
numbers of the data1/data2 arrays? Some pattern between them?
E.g., it'd be nice to explain the logic between the steps
check_copy_bitwise is doing.
A couple other minor comments:
> +#if GDB_SELF_TEST
> +
Please add:
namespace selftests {
like utils-selftests.c does.
>
> + a[len] = b[len] = '\0';
> + if (strcmp (a, b))
strcmp (...) != 0
> + error (_("copy_bitwise %s != %s (%u+%u -> %u)"),
> + a, b, source_offset, nbits, dest_offset);
> +}
> +
> + enum { max_nbits = 24, max_offs = 8 };
IN C++11 we can express a compile-time integer directly with
constexpr, not need for enum hacks any longer:
constexpr int max_nbits = 24;
Thanks,
Pedro Alves
next prev parent reply other threads:[~2016-11-17 20:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-14 15:03 [PATCH 0/3] Support DW_AT_data_bit_offset Andreas Arnez
2016-11-14 15:04 ` [PATCH 1/3] Fix PR12616 - gdb does not implement DW_AT_data_bit_offset Andreas Arnez
2016-11-14 15:38 ` Luis Machado
2016-11-14 15:04 ` [PATCH 2/3] Fix copy_bitwise() Andreas Arnez
2016-11-14 15:38 ` Luis Machado
2016-11-14 17:54 ` Andreas Arnez
2016-11-14 17:58 ` Luis Machado
2016-11-15 18:58 ` Andreas Arnez
2016-11-15 19:42 ` Pedro Alves
2016-11-17 19:36 ` Andreas Arnez
2016-11-17 20:30 ` Pedro Alves [this message]
2016-11-18 15:06 ` Andreas Arnez
2016-11-22 23:18 ` Pedro Alves
2016-11-24 16:15 ` Andreas Arnez
2016-11-24 16:32 ` Pedro Alves
2016-11-24 16:55 ` Andreas Arnez
2016-11-14 15:05 ` [PATCH 3/3] Optimize byte-aligned copies in copy_bitwise() Andreas Arnez
2016-11-14 15:38 ` Luis Machado
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=a5eee71c-6249-1b5d-00ea-330468e8b01c@redhat.com \
--to=palves@redhat.com \
--cc=arnez@linux.vnet.ibm.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