From: Pedro Alves <palves@redhat.com>
To: Omair Javaid <omair.javaid@linaro.org>,
Will Newton <will.newton@linaro.org>
Cc: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: Re: [PATCH v3 1/6] Implements support for recording arm/thumb mode coprocessor instructions
Date: Wed, 27 Aug 2014 10:05:00 -0000 [thread overview]
Message-ID: <53FDAD63.9040306@redhat.com> (raw)
In-Reply-To: <CANW4E-14Ke6HT2Y9gEu0EWcdAi1ZfeL5aANqCQ=iuqXaUzgDig@mail.gmail.com>
Hi Omair,
On 08/27/2014 10:07 AM, Omair Javaid wrote:
> On 13 August 2014 19:10, Will Newton <will.newton@linaro.org> wrote:
>> On 13 August 2014 14:12, Omair Javaid <omair.javaid@linaro.org> wrote:
>>> gdb:
>>>
From the nit department:
>>> 2014-08-13 Omair Javaid <omair.javaid@linaro.org>
>>>
>>> * arm-tdep.c (arm_record_coproc_data_proc): Updated.
please use imperative, present tense in logs. Also in the $subject
line when that gets into the commit log: s/Implements/Implement/.
And, updated how? What changed? Please write something
like:
* arm-tdep.c (arm_record_coproc_data_proc): Handle foo instructions.
with 'foo' replaced, of course. :-)
>>> (arm_record_asimd_vfp_coproc): Added record handler for asimd, vfp
>>> and coprocessor insn.
'Add'.
>>> (thumb2_record_coproc_insn): New function.
>>> (thumb2_record_decode_insn_handler): Updated.
Likewise, updated how?
>>> (decode_insn): Updated.
Say something like:
(decode_insn): Install arm_record_asimd_vfp_coproc as handler for
opcode 110 insns.
>>> +/* Handling opcode 110 insns. */
>>> +
>>> +static int
>>> +arm_record_asimd_vfp_coproc (insn_decode_record *arm_insn_r)
>>> +{
>>> + uint32_t op, op1, op1_sbit, op1_ebit, coproc;
>>> +
>>> + coproc = bits (arm_insn_r->arm_insn, 8, 11);
>>> + op1 = bits (arm_insn_r->arm_insn, 20, 25);
>>> + op1_sbit = bit (arm_insn_r->arm_insn, 24);
>>> + op1_ebit = bit (arm_insn_r->arm_insn, 20);
>>> + op = bit (arm_insn_r->arm_insn, 4);
>>
>> op abd op1_sbit appear to be unused.
> Ping! Kindly provide your feedback and help me approve this patch series.
I didn't see a reply to Will's comment. Should op1_sbit haven been used?
This patch is OK once Will is happy with it.
Thanks,
Pedro Alves
next prev parent reply other threads:[~2014-08-27 10:05 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-13 13:13 [PATCH v3 0/6] ARM process record/replay improvements Omair Javaid
2014-08-13 13:13 ` [PATCH v3 5/6] Implement support for recording vector data transfer instructions Omair Javaid
2014-08-13 14:10 ` Will Newton
2014-08-27 9:09 ` Omair Javaid
2014-08-27 10:19 ` Pedro Alves
2014-08-28 13:07 ` Omair Javaid
2014-08-13 13:13 ` [PATCH v3 3/6] Implement support for recording VFP data processing instructions Omair Javaid
2014-08-13 14:10 ` Will Newton
2014-08-27 9:10 ` Omair Javaid
2014-08-27 10:11 ` Pedro Alves
2014-08-28 11:06 ` Omair Javaid
2014-08-13 13:13 ` [PATCH v3 4/6] Implement support for recording extension register ld/st insn Omair Javaid
2014-08-13 14:10 ` Will Newton
2014-08-27 9:21 ` Omair Javaid
2014-08-27 10:17 ` Pedro Alves
2014-08-28 12:56 ` Omair Javaid
2014-09-02 14:59 ` Will Newton
2014-09-10 11:29 ` Omair Javaid
2014-09-10 11:55 ` Will Newton
2014-08-13 13:13 ` [PATCH v3 2/6] Implements support for recording thumb2 ASIMD struct " Omair Javaid
2014-08-13 14:10 ` Will Newton
2014-08-27 9:08 ` Omair Javaid
2014-08-27 10:09 ` Pedro Alves
2014-08-28 10:56 ` [PATCH v3 2/6] Implement support for recording thumb2 ASIMD struct ld/st insns Omair Javaid
2014-09-02 14:55 ` Will Newton
2014-09-10 11:16 ` Omair Javaid
2014-09-10 11:54 ` Will Newton
2014-08-13 13:13 ` [PATCH v3 1/6] Implements support for recording arm/thumb mode coprocessor instructions Omair Javaid
2014-08-13 14:10 ` Will Newton
2014-08-27 9:07 ` Omair Javaid
2014-08-27 10:05 ` Pedro Alves [this message]
2014-08-28 9:50 ` [PATCH] Implement " Omair Javaid
2014-09-02 14:51 ` Will Newton
2014-08-13 13:13 ` [PATCH v3 6/6] Fix reverse-step and reverse-next over undebuggable solib code Omair Javaid
2014-08-27 9:09 ` Omair Javaid
2014-08-27 10:34 ` Pedro Alves
2014-08-27 9:05 ` [PATCH v3 0/6] ARM process record/replay improvements Omair Javaid
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=53FDAD63.9040306@redhat.com \
--to=palves@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=omair.javaid@linaro.org \
--cc=will.newton@linaro.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