Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Jim Blandy <jimb@redhat.com>
To: gdb-patches@sources.redhat.com
Subject: RFA: Don't assume PPC regs are numbered contiguously
Date: Fri, 23 Apr 2004 04:45:00 -0000	[thread overview]
Message-ID: <vt23c6v8fw4.fsf@zenia.home> (raw)


This is a step towards tolerating PPC variants lacking floating-point
registers.

Tested with no regressions on powerpc-unknown-linux-gnu (Fedora Core 2).

2004-04-20  Jim Blandy  <jimb@redhat.com>

	* ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
	Don't assume that the gprs, fprs, and UISA sprs are
	contiguous, start at register number zero, and end with fpscr.
	Instead, use the numbers from the tdep structure, FP0_REGNUM,
	and FPLAST_REGNUM.

Index: gdb/ppc-linux-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/ppc-linux-nat.c,v
retrieving revision 1.29
diff -c -r1.29 ppc-linux-nat.c
*** gdb/ppc-linux-nat.c	15 Mar 2004 21:35:25 -0000	1.29
--- gdb/ppc-linux-nat.c	21 Apr 2004 15:58:41 -0000
***************
*** 310,319 ****
    int i;
    struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
  
!   for (i = 0; i <= tdep->ppc_fpscr_regnum; i++)
      fetch_register (tid, i);
    if (tdep->ppc_mq_regnum != -1)
      fetch_register (tid, tdep->ppc_mq_regnum);
    if (have_ptrace_getvrregs)
      if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
        fetch_altivec_registers (tid);
--- 310,335 ----
    int i;
    struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
  
!   for (i = tdep->ppc_gp0_regnum; i <= tdep->ppc_gplast_regnum; i++)
      fetch_register (tid, i);
+   if (tdep->ppc_fpscr_regnum != -1)
+     for (i = FP0_REGNUM; i < FPLAST_REGNUM; i++)
+       fetch_register (tid, i);
+   fetch_register (tid, PC_REGNUM);
+   if (tdep->ppc_ps_regnum != -1)
+     fetch_register (tid, tdep->ppc_ps_regnum);
+   if (tdep->ppc_cr_regnum != -1)
+     fetch_register (tid, tdep->ppc_cr_regnum);
+   if (tdep->ppc_lr_regnum != -1)
+     fetch_register (tid, tdep->ppc_lr_regnum);
+   if (tdep->ppc_ctr_regnum != -1)
+     fetch_register (tid, tdep->ppc_ctr_regnum);
+   if (tdep->ppc_xer_regnum != -1)
+     fetch_register (tid, tdep->ppc_xer_regnum);
    if (tdep->ppc_mq_regnum != -1)
      fetch_register (tid, tdep->ppc_mq_regnum);
+   if (tdep->ppc_fpscr_regnum != -1)
+     fetch_register (tid, tdep->ppc_fpscr_regnum);
    if (have_ptrace_getvrregs)
      if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
        fetch_altivec_registers (tid);
***************
*** 479,488 ****
    int i;
    struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
    
!   for (i = 0; i <= tdep->ppc_fpscr_regnum; i++)
      store_register (tid, i);
    if (tdep->ppc_mq_regnum != -1)
      store_register (tid, tdep->ppc_mq_regnum);
    if (have_ptrace_getvrregs)
      if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
        store_altivec_registers (tid);
--- 495,520 ----
    int i;
    struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
    
!   for (i = tdep->ppc_gp0_regnum; i <= tdep->ppc_gplast_regnum; i++)
      store_register (tid, i);
+   if (tdep->ppc_fpscr_regnum != -1)
+     for (i = FP0_REGNUM; i < FPLAST_REGNUM; i++)
+       store_register (tid, i);
+   store_register (tid, PC_REGNUM);
+   if (tdep->ppc_ps_regnum != -1)
+     store_register (tid, tdep->ppc_ps_regnum);
+   if (tdep->ppc_cr_regnum != -1)
+     store_register (tid, tdep->ppc_cr_regnum);
+   if (tdep->ppc_lr_regnum != -1)
+     store_register (tid, tdep->ppc_lr_regnum);
+   if (tdep->ppc_ctr_regnum != -1)
+     store_register (tid, tdep->ppc_ctr_regnum);
+   if (tdep->ppc_xer_regnum != -1)
+     store_register (tid, tdep->ppc_xer_regnum);
    if (tdep->ppc_mq_regnum != -1)
      store_register (tid, tdep->ppc_mq_regnum);
+   if (tdep->ppc_fpscr_regnum != -1)
+     store_register (tid, tdep->ppc_fpscr_regnum);
    if (have_ptrace_getvrregs)
      if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
        store_altivec_registers (tid);


                 reply	other threads:[~2004-04-23  4:45 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=vt23c6v8fw4.fsf@zenia.home \
    --to=jimb@redhat.com \
    --cc=gdb-patches@sources.redhat.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