Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Simon Marchi <simark@simark.ca>
To: Shahab Vahedi <shahab.vahedi@gmail.com>, gdb-patches@sourceware.org
Cc: Shahab Vahedi <shahab@synopsys.com>,
	Anton Kolesov <Anton.Kolesov@synopsys.com>,
	Francois Bedard <fbedard@synopsys.com>
Subject: Re: [PATCH] arc: Add support for Linux coredump files
Date: Wed, 16 Sep 2020 16:21:43 -0400	[thread overview]
Message-ID: <18b98a56-e3cf-e05b-49a7-bd6e1f61aefb@simark.ca> (raw)
In-Reply-To: <20200827112728.4275-1-shahab.vahedi@gmail.com>

On 2020-08-27 7:27 a.m., Shahab Vahedi via Gdb-patches wrote:
> From: Anton Kolesov <Anton.Kolesov@synopsys.com>
>
> With the implemenations in this patch, ARC gdb can handle
> coredump related matters.  The binutils counter part of
> this patch has already been pushed [1].
>
> [1] arc: Add support for ARC HS extra registers in core files
> https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=2745674244d6aecddcf636475034bdb9c0a6b4a0

Hi Shahab,

I noted a few comments, the patch is OK to push with these fixed.  I
think this would be relatively safe to push to the gdb-10-branch branch
as well if you want, it's all new features, it doesn't touch existing
features.

> @@ -227,6 +281,142 @@ arc_linux_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
>      }
>  }
>
> +void
> +arc_linux_supply_gregset (const struct regset *regset,
> +			  struct regcache *regcache,
> +			  int regnum, const void *gregs, size_t size)
> +{
> +  gdb_static_assert (ARC_LAST_REGNUM
> +		     <= ARRAY_SIZE (arc_linux_core_reg_offsets));

Can you explain why this is <= and not < ?  I'm not saying it's wrong,
but it looks unusual.  If ARC_LAST_REGNUM was 2 (meaning there are 3
registers: 0, 1 and 2), then having an offsets array with size 2 would
be bad, would it?  Or maybe I'm just confused.


> +
> +  const bfd_byte *buf = (const bfd_byte *) gregs;
> +
> +  for (int reg = 0; reg <= ARC_LAST_REGNUM; reg++)
> +    {
> +      if (arc_linux_core_reg_offsets[reg] != ARC_OFFSET_NO_REGISTER)
> +	regcache->raw_supply (reg, buf + arc_linux_core_reg_offsets[reg]);
> +    }
> +}
> +
> +void
> +arc_linux_supply_v2_regset (const struct regset *regset,
> +			    struct regcache *regcache, int regnum,
> +			    const void *v2_regs, size_t size)
> +{
> +  const bfd_byte *buf = (const bfd_byte *) v2_regs;
> +
> +  /* user_regs_arcv2 is defined in linux arch/arc/include/uapi/asm/ptrace.h.  */
> +  regcache->raw_supply (ARC_R30_REGNUM, buf);
> +  regcache->raw_supply (ARC_R58_REGNUM, buf + REGOFF (1));
> +  regcache->raw_supply (ARC_R59_REGNUM, buf + REGOFF (2));
> +}
> +
> +/* Populate BUF with register REGNUM from the REGCACHE.  */
> +
> +static void
> +collect_register(const struct regcache *regcache, struct gdbarch *gdbarch,

Space before parenthesis.

> +		 int regnum, gdb_byte *buf)
> +{
> +  /* Skip non-existing registers.  */
> +  if ((arc_linux_core_reg_offsets[regnum] == ARC_OFFSET_NO_REGISTER))
> +    return;
> +
> +  /* The Address where the execution has stopped is in pseudo-register

Address -> address

> +     STOP_PC.  However, when kernel code is returning from the exception,
> +     it uses the value from ERET register.  Since, TRAP_S (the breakpoint
> +     instruction) commits, the ERET points to the next instruction.  In
> +     other words: ERET != STOP_PC.  To jump back from the kernel code to
> +     the correct address, ERET must be overwritten by GDB's STOP_PC.  Else,
> +     the program will continue at the address after the current instruction.
> +     */
> +  if (regnum == gdbarch_pc_regnum (gdbarch))
> +    {
> +      int eret_offset = REGOFF (6);

That REGOFF (6) looks a bit magical.  Defining a constant would be
clearer.

> +/* Implement the `core_read_description` gdbarch method.  */
> +
> +static const struct target_desc *
> +arc_linux_core_read_description (struct gdbarch *gdbarch,
> +				 struct target_ops *target,
> +				 bfd *abfd)
> +{
> +  arc_gdbarch_features features
> +    = arc_gdbarch_features_create (abfd,
> +			           gdbarch_bfd_arch_info (gdbarch)->mach);

8 spaces -> tab

Simon


  parent reply	other threads:[~2020-09-16 20:21 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-27 11:27 Shahab Vahedi
2020-09-07  9:14 ` Shahab Vahedi
2020-09-16  2:31 ` [PING^2][PATCH] " Shahab Vahedi
2020-09-16 20:21 ` Simon Marchi [this message]
2020-09-17 11:55   ` [PATCH] " Aktemur, Tankut Baris
2020-09-28 13:47     ` Shahab Vahedi via Gdb-patches
2020-09-28 14:08       ` Aktemur, Tankut Baris via Gdb-patches
2020-09-28 19:10         ` Simon Marchi
2020-09-29  8:24           ` Shahab Vahedi via Gdb-patches
2020-09-29  9:02             ` Shahab Vahedi via Gdb-patches
2020-09-29 14:22             ` Simon Marchi
2020-09-29 15:42               ` Shahab Vahedi via Gdb-patches
2020-10-01 13:30   ` Shahab Vahedi via Gdb-patches
2020-09-29 16:15 ` [PATCH v2] " Shahab Vahedi via Gdb-patches
2020-10-05  2:13   ` Simon Marchi
2020-10-07 16:11 ` [PUSHED master] " Shahab Vahedi via Gdb-patches
2020-10-07 16:32 ` [PUSHED gdb-10-branch] " Shahab Vahedi 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=18b98a56-e3cf-e05b-49a7-bd6e1f61aefb@simark.ca \
    --to=simark@simark.ca \
    --cc=Anton.Kolesov@synopsys.com \
    --cc=fbedard@synopsys.com \
    --cc=gdb-patches@sourceware.org \
    --cc=shahab.vahedi@gmail.com \
    --cc=shahab@synopsys.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