From: Andy Chiu via Gdb-patches <gdb-patches@sourceware.org>
To: "Maciej W. Rozycki" <macro@orcam.me.uk>
Cc: Greg Savin <greg.savin@sifive.com>,
Greentime Hu <greentime.hu@sifive.com>,
Oleg Nesterov <oleg@redhat.com>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
linux-riscv@lists.infradead.org, gdb-patches@sourceware.org,
Andrew Burgess <andrew.burgess@embecosm.com>
Subject: Re: [PATCH] RISC-V: support for vector register accesses via ptrace() in RISC-V Linux native
Date: Fri, 11 Aug 2023 19:28:30 +0800 [thread overview]
Message-ID: <CABgGipVELGquM=bQhDYQj-z9tN3s1jS_fygfZGriodEmOGP+iA@mail.gmail.com> (raw)
In-Reply-To: <alpine.DEB.2.21.2308102151450.8596@angie.orcam.me.uk>
On Fri, Aug 11, 2023 at 5:21 AM Maciej W. Rozycki <macro@orcam.me.uk> wrote:
>
> On Fri, 11 Aug 2023, Andy Chiu wrote:
>
> > > > No, how do you expect it to work with a core dump (that can be examined
> > > > on a different system, or with a cross-debugger)? You need to change the
> > > > API I'm afraid; it's unusable anyway. It's a pity the toolchain community
> > > > wasn't consulted if you weren't sure how to design the interface. Better
> > > > yet it would have been to implement the GDB side before the kernel part
> > > > has been committed.
> >
> > I just took some look into the code and here is what I came up with.
> > Actually, you know VLENB in a core dump file. The size of
> > NT_RISCV_VECTOR in a core dump file just equals sizeof(struct
> > __riscv_v_ext_state), which is 40B, plus VLENB * 32. So, the debugger
> > can actually calculate VLENB and resolve placement of V registers by
> > subtracting 40 from the size of NT_RISCV_VECTOR in a core dump file.
>
> Fair enough, I didn't dive into Linux code deeply enough to figure out
> that the size of an NT_RISCV_VECTOR core file note is indeed dynamically
> calculated. Most notes are of a fixed size, but we also have generic
> support for variable-size ones in GDB, so handling this case should be
> reasonably straightforward.
>
> OTOH VLENB is a program-visible register, so I think it will best be
> provided explicitly regardless rather than having to be reconstructed from
> the size of the note; I would find that awkward.
Agreed.
>
> NB I have been a bit concerned about the unusually huge allocation size
> of 256KiB+ for the register buffer required for ptrace(2), but I guess
> we'll have to live with it, because any solution that makes it dynamic
> would also complicate the interface. At least we won't waste filesystem
> space for any extraneous allocation in core dumps.
It is possible to mitigate this consideration with the proposed
solution[1], by calling the ptrace twice. First we make a ptrace call
to obtain VLENB in struct __riscv_v_ext_state by setting the argument
iov.len = sizeof(struct __riscv_v_ext_state). Then, we can allocate a
buffer based on the result of the previous ptrace to get the full
Vector registers dump.
>
> Maciej
[1]: https://sourceware.org/pipermail/gdb-patches/2023-August/201507.html
Andy
next prev parent reply other threads:[~2023-08-11 11:29 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-03 23:01 Greg Savin via Gdb-patches
2023-08-04 0:21 ` John Baldwin
2023-08-08 22:50 ` [PATCH v2] " Greg Savin via Gdb-patches
2023-08-11 14:27 ` Andrew Burgess via Gdb-patches
2023-08-11 16:41 ` Greg Savin via Gdb-patches
2023-08-09 9:21 ` [PATCH] " Maciej W. Rozycki
2023-08-09 18:11 ` Greg Savin via Gdb-patches
2023-08-09 23:09 ` Maciej W. Rozycki
2023-08-10 10:35 ` Andy Chiu via Gdb-patches
2023-08-10 11:40 ` Maciej W. Rozycki
2023-08-10 13:55 ` Maciej W. Rozycki
2023-08-10 17:23 ` Andy Chiu via Gdb-patches
2023-08-10 21:08 ` Palmer Dabbelt
2023-08-10 21:21 ` Maciej W. Rozycki
2023-08-11 11:28 ` Andy Chiu via Gdb-patches [this message]
2023-08-10 14:05 ` Andy Chiu via Gdb-patches
2023-08-10 20:51 ` Maciej W. Rozycki
2025-07-30 10:52 Sameer Natu
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='CABgGipVELGquM=bQhDYQj-z9tN3s1jS_fygfZGriodEmOGP+iA@mail.gmail.com' \
--to=gdb-patches@sourceware.org \
--cc=andrew.burgess@embecosm.com \
--cc=andy.chiu@sifive.com \
--cc=aou@eecs.berkeley.edu \
--cc=greentime.hu@sifive.com \
--cc=greg.savin@sifive.com \
--cc=linux-riscv@lists.infradead.org \
--cc=macro@orcam.me.uk \
--cc=oleg@redhat.com \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
/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