public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
To: Christophe Lyon <christophe.lyon@linaro.org>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH 1/5] gdb/aarch64: Implement software single stepping for MOPS instructions
Date: Mon, 06 May 2024 21:56:06 -0300	[thread overview]
Message-ID: <87bk5ih23d.fsf@linaro.org> (raw)
In-Reply-To: <CAPS5khbR9jJngxSkGipXpPbzOSwNErwE9LgkK1Q+yCpAnGyWZQ@mail.gmail.com> (Christophe Lyon's message of "Mon, 6 May 2024 11:29:50 +0200")


Hello Christophe,

Thanks for the patch review!

Christophe Lyon <christophe.lyon@linaro.org> writes:

> On Sat, 4 May 2024 at 02:05, Thiago Jung Bauermann
> <thiago.bauermann@linaro.org> wrote:
>>
>> @@ -3808,8 +3909,10 @@ aarch64_displaced_step_copy_insn (struct gdbarch *gdbarch,
>>    if (aarch64_decode_insn (insn, &inst, 1, NULL) != 0)
>>      return NULL;
>>
>> -  /* Look for a Load Exclusive instruction which begins the sequence.  */
>> -  if (inst.opcode->iclass == ldstexcl && bit (insn, 22))
>> +  /* Look for a Load Exclusive instruction which begins the sequence,
>> +     or for a MOPS instruction.  */
>> +  if ((inst.opcode->iclass == ldstexcl && bit (insn, 22))
>> +      || AARCH64_CPU_HAS_FEATURE (*inst.opcode->avariant, MOPS))
>
> Sorry for the naive question: doesn't this check that the CPU supports
> MOPS, rather than the instruction sequence is a MOPS one?

It's an interesting question actually, at least for me because it's my
first time calling opcode functions.  You're right that
AARCH64_CPU_HAS_FEATURE checks whether the given CPU supports the given
feature.  But the call above uses the inst.opcode->avariant "CPU":

  /* Which architecture variant provides this instruction.  */
  const aarch64_feature_set *avariant;

For MOPS instructions that field points to aarch64_feature_mops, defined
in opcodes/aarch64-tbl.h as:

static const aarch64_feature_set aarch64_feature_mops =
  AARCH64_FEATURE (MOPS);

Which defines a CPU containing only the MOPS feature.

I also checked — just to be sure — that whether or not the VM's CPU
support the MOPS feature, the above description holds and the check
returns true for a MOPS instruction and false otherwise.

>>      {
>>        /* We can't displaced step atomic sequences.  */
>>        return NULL;

-- 
Thiago

  reply	other threads:[~2024-05-07  0:56 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-04  0:05 [PATCH 0/5] Add support for AArch64 " Thiago Jung Bauermann
2024-05-04  0:05 ` [PATCH 1/5] gdb/aarch64: Implement software single stepping for " Thiago Jung Bauermann
2024-05-06  9:29   ` Christophe Lyon
2024-05-07  0:56     ` Thiago Jung Bauermann [this message]
2024-05-04  0:05 ` [PATCH 2/5] gdb/aarch64: Add record support " Thiago Jung Bauermann
2024-05-04  0:05 ` [PATCH 3/5] gdb/testsuite: Add gdb.arch/aarch64-mops-watchpoint.exp Thiago Jung Bauermann
2024-05-04  0:05 ` [PATCH 4/5] gdb/testsuite: Add gdb.arch/aarch64-mops-atomic-inst.exp Thiago Jung Bauermann
2024-05-06  9:42   ` Christophe Lyon
2024-05-07  2:10     ` Thiago Jung Bauermann
2024-05-04  0:05 ` [PATCH 5/5] gdb/testsuite: Add gdb.reverse/aarch64-mops.exp Thiago Jung Bauermann

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=87bk5ih23d.fsf@linaro.org \
    --to=thiago.bauermann@linaro.org \
    --cc=christophe.lyon@linaro.org \
    --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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).