From: Luis Machado via Gdb-patches <gdb-patches@sourceware.org>
To: Tom de Vries <tdevries@suse.de>, gdb-patches@sourceware.org
Cc: mark@klomp.org
Subject: Re: [PATCH] [Arm] Fix endianness handling for arm record self tests
Date: Mon, 15 Aug 2022 13:13:10 +0100 [thread overview]
Message-ID: <2b88a4ec-7986-d8b7-8327-069e984350c8@arm.com> (raw)
In-Reply-To: <54574882-62aa-ee50-f878-7aaff48d9efb@suse.de>
On 8/9/22 10:57, Tom de Vries wrote:
> On 8/9/22 11:43, Tom de Vries wrote:
>> On 8/8/22 12:12, Luis Machado wrote:
>>> The arm record tests handle 16-bit and 32-bit thumb instructions, but the
>>> code is laid out in a way that handles the 32-bit thumb instructions as
>>> two 16-bit parts.
>>>
>>> This is fine, but it is prone to host-endianness issues given how the two
>>> 16-bit parts are stored and how they are accessed later on. Arm is
>>> little-endian by default, so running this test with a GDB built with
>>> --enable-targets=all and on a big endian host will run into the following:
>>>
>>> Running selftest arm-record.
>>> Process record and replay target doesn't support syscall number -2036195
>>> Process record does not support instruction 0x7f70ee1d at address 0x0.
>>> Self test failed: self-test failed at ../../binutils-gdb/gdb/arm-tdep.c:14482
>>>
>>> Investigating this a bit further, there seems to be a chance to do a simple
>>> fix through a type template, using uint16_t for 16-bit thumb instructions
>>> and uint32_t for 32-bit thumb instructions.
>>>
>>> This patch implements this.
>>>
>>
>> Hi Luis,
>>
>> LGTM.
>>
>> I noticed btw that this:
>> ...
>> diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
>> index 57b865a0819..1e6d9ba65be 100644
>> --- a/gdb/arm-tdep.c
>> +++ b/gdb/arm-tdep.c
>> @@ -14489,6 +14489,29 @@ arm_record_test (void)
>> SELF_CHECK (arm_record.reg_rec_count == 1);
>> SELF_CHECK (arm_record.arm_regs[0] == 7);
>> }
>> +
>> +
>> + /* 32-bit instructions. */
>> + {
>> + arm_insn_decode_record arm_record;
>> +
>> + memset (&arm_record, 0, sizeof (arm_insn_decode_record));
>> + arm_record.gdbarch = gdbarch;
>> +
>> + /* Use the endian-free representation of the instruction here. The test
>> + will handle endianness conversions. */
>> + static const uint32_t insns[] = {
>> + /* mov r5, r0 */
>> + 0xe1a05000,
>> + };
>> +
>> + enum bfd_endian endian = gdbarch_byte_order_for_code (arm_record.gdbarch);
>> + instruction_reader_thumb<uint32_t> reader (endian, insns);
>> + int ret = decode_insn (reader, &arm_record, ARM_RECORD,
>> + ARM_INSN_SIZE_BYTES);
>> +
>> + SELF_CHECK (ret == 0);
>> + }
>> }
>>
>> /* Instruction reader from manually cooked instruction sequences. */
>> ...
>> works fine, so I wonder if instruction_reader_thumb is a misnomer, perhaps we call it instruction_reader_selftest or some such, and add the arm32 insn to cover that case?
I suppose the code was originally made to test thumb 16-bit instructions. I've incorporated this change in the patch. Thanks!
>>
>> Also I wondered if these checks
>> ...
>> SELF_CHECK (len == 4 || len == 2);
>> SELF_CHECK (memaddr % 2 == 0);
>> SELF_CHECK ((memaddr / 2) < m_insns_size);
>> ...
>> can be made more specific based on the template argument T.
Indeed.
>
> Also, I think this is more clear:
> ...
> -store_unsigned_integer (buf, sizeof (T), m_endian,
> m_insns[memaddr / 2]);
> +store_unsigned_integer (buf, sizeof (T), m_endian,
> m_insns[memaddr / sizeof (T)]);
> ...
>
> Thanks,
> - Tom
next prev parent reply other threads:[~2022-08-15 12:13 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-08 10:12 Luis Machado via Gdb-patches
2022-08-08 12:30 ` Andrew Burgess via Gdb-patches
2022-08-10 8:47 ` Andrew Burgess via Gdb-patches
2022-08-09 9:43 ` Tom de Vries via Gdb-patches
2022-08-09 9:57 ` Tom de Vries via Gdb-patches
2022-08-15 12:13 ` Luis Machado via Gdb-patches [this message]
2022-08-09 11:31 ` Luis Machado via Gdb-patches
2022-08-09 11:48 ` Tom de Vries via Gdb-patches
2022-08-09 12:08 ` Tom de Vries via Gdb-patches
2022-08-09 12:09 ` Luis Machado via Gdb-patches
2022-08-09 12:13 ` Tom de Vries via Gdb-patches
2022-08-09 15:24 ` Mark Wielaard
2022-08-15 12:10 ` Luis Machado via Gdb-patches
2022-08-23 20:32 ` [PATCH,v2] " Luis Machado via Gdb-patches
2022-09-01 9:29 ` [PING][PATCH,v2] " Luis Machado via Gdb-patches
2022-09-06 10:39 ` Tom de Vries via Gdb-patches
2022-09-07 8:19 ` Luis Machado via Gdb-patches
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=2b88a4ec-7986-d8b7-8327-069e984350c8@arm.com \
--to=gdb-patches@sourceware.org \
--cc=luis.machado@arm.com \
--cc=mark@klomp.org \
--cc=tdevries@suse.de \
/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