* arch-utils.c (set_architecture, set_architecture_from_arch_mach,

set_gdbarch_from_file): Fix spelling error.
* v850-tdep.c (v850_target_architecture_hook): Likewise.
* gdbarch.sh: Fix spelling errors in comment.
* gdbarch.c, gdbarch.h: Regenerate.

* ppcnbsd-nat.c (fetch_core_registers, fetch_inferior_registers,
store_inferior_registers): Support older NetBSD/powerpc systems
from before fp reg support was added.  Adapt to register number
changes caused when powerpc target was multi-arched.
This commit is contained in:
J.T. Conklin 2000-10-27 19:17:57 +00:00
parent 6f6ef0faed
commit ec3d358c9f
7 changed files with 47 additions and 21 deletions

View File

@ -1,3 +1,16 @@
2000-10-27 J.T. Conklin <jtc@redback.com>
* arch-utils.c (set_architecture, set_architecture_from_arch_mach,
set_gdbarch_from_file): Fix spelling error.
* v850-tdep.c (v850_target_architecture_hook): Likewise.
* gdbarch.sh: Fix spelling errors in comment.
* gdbarch.c, gdbarch.h: Regenerate.
* ppcnbsd-nat.c (fetch_core_registers, fetch_inferior_registers,
store_inferior_registers): Support older NetBSD/powerpc systems
from before fp reg support was added. Adapt to register number
changes caused when powerpc target was multi-arched.
2000-10-26 David B. Anderson <davea@sgi.com> 2000-10-26 David B. Anderson <davea@sgi.com>
* breakpoint.c breakpoint.h hppab-nat.c infrun.c * breakpoint.c breakpoint.h hppab-nat.c infrun.c

View File

@ -441,7 +441,7 @@ set_architecture_from_arch_mach (enum bfd_architecture arch,
if (wanted != NULL) if (wanted != NULL)
set_arch (wanted, set_arch_manual); set_arch (wanted, set_arch_manual);
else else
internal_error ("gdbarch: hardwired architecture/machine not reconized"); internal_error ("gdbarch: hardwired architecture/machine not recognized");
} }
/* Set the architecture from a BFD (deprecated) */ /* Set the architecture from a BFD (deprecated) */
@ -500,7 +500,7 @@ set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
if (gdbarch_update_p (info)) if (gdbarch_update_p (info))
target_architecture_auto = 0; target_architecture_auto = 0;
else else
printf_unfiltered ("Architecture `%s' not reconized.\n", printf_unfiltered ("Architecture `%s' not recognized.\n",
set_architecture_string); set_architecture_string);
} }
else else
@ -560,7 +560,7 @@ set_gdbarch_from_file (bfd *abfd)
memset (&info, 0, sizeof info); memset (&info, 0, sizeof info);
info.abfd = abfd; info.abfd = abfd;
if (! gdbarch_update_p (info)) if (! gdbarch_update_p (info))
error ("Architecture of file not reconized.\n"); error ("Architecture of file not recognized.\n");
} }
else else
{ {

View File

@ -3998,7 +3998,7 @@ gdbarch_register (enum bfd_architecture bfd_architecture,
{ {
struct gdbarch_registration **curr; struct gdbarch_registration **curr;
const struct bfd_arch_info *bfd_arch_info; const struct bfd_arch_info *bfd_arch_info;
/* Check that BFD reconizes this architecture */ /* Check that BFD recognizes this architecture */
bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0); bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
if (bfd_arch_info == NULL) if (bfd_arch_info == NULL)
{ {

View File

@ -1398,7 +1398,7 @@ extern struct gdbarch_tdep *gdbarch_tdep (struct gdbarch *gdbarch);
that the INFO.BYTE_ORDER is non-zero. that the INFO.BYTE_ORDER is non-zero.
The INIT function shall return any of: NULL - indicating that it The INIT function shall return any of: NULL - indicating that it
doesn't reconize the selected architecture; an existing ``struct doesn't recognize the selected architecture; an existing ``struct
gdbarch'' from the ARCHES list - indicating that the new gdbarch'' from the ARCHES list - indicating that the new
architecture is just a synonym for an earlier architecture (see architecture is just a synonym for an earlier architecture (see
gdbarch_list_lookup_by_info()); a newly created ``struct gdbarch'' gdbarch_list_lookup_by_info()); a newly created ``struct gdbarch''

View File

@ -747,7 +747,7 @@ extern struct gdbarch_tdep *gdbarch_tdep (struct gdbarch *gdbarch);
that the INFO.BYTE_ORDER is non-zero. that the INFO.BYTE_ORDER is non-zero.
The INIT function shall return any of: NULL - indicating that it The INIT function shall return any of: NULL - indicating that it
doesn't reconize the selected architecture; an existing \`\`struct doesn't recognize the selected architecture; an existing \`\`struct
gdbarch'' from the ARCHES list - indicating that the new gdbarch'' from the ARCHES list - indicating that the new
architecture is just a synonym for an earlier architecture (see architecture is just a synonym for an earlier architecture (see
gdbarch_list_lookup_by_info()); a newly created \`\`struct gdbarch'' gdbarch_list_lookup_by_info()); a newly created \`\`struct gdbarch''
@ -1696,7 +1696,7 @@ gdbarch_register (enum bfd_architecture bfd_architecture,
{ {
struct gdbarch_registration **curr; struct gdbarch_registration **curr;
const struct bfd_arch_info *bfd_arch_info; const struct bfd_arch_info *bfd_arch_info;
/* Check that BFD reconizes this architecture */ /* Check that BFD recognizes this architecture */
bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0); bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
if (bfd_arch_info == NULL) if (bfd_arch_info == NULL)
{ {

View File

@ -26,6 +26,7 @@
#include "defs.h" #include "defs.h"
#include "inferior.h" #include "inferior.h"
#include "gdbcore.h" #include "gdbcore.h"
#include "ppc-tdep.h"
#define RF(dst, src) \ #define RF(dst, src) \
memcpy(&registers[REGISTER_BYTE(dst)], &src, sizeof(src)) memcpy(&registers[REGISTER_BYTE(dst)], &src, sizeof(src))
@ -37,23 +38,27 @@ void
fetch_inferior_registers (int regno) fetch_inferior_registers (int regno)
{ {
struct reg inferior_registers; struct reg inferior_registers;
#ifdef PT_GETFPREGS
struct fpreg inferior_fp_registers; struct fpreg inferior_fp_registers;
#endif
int i; int i;
ptrace (PT_GETREGS, inferior_pid, ptrace (PT_GETREGS, inferior_pid,
(PTRACE_ARG3_TYPE) & inferior_registers, 0); (PTRACE_ARG3_TYPE) & inferior_registers, 0);
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RF (i, inferior_registers.fixreg[i]); RF (i, inferior_registers.fixreg[i]);
RF (LR_REGNUM, inferior_registers.lr); RF (PPC_LR_REGNUM, inferior_registers.lr);
RF (CR_REGNUM, inferior_registers.cr); RF (PPC_CR_REGNUM, inferior_registers.cr);
RF (XER_REGNUM, inferior_registers.xer); RF (PPC_XER_REGNUM, inferior_registers.xer);
RF (CTR_REGNUM, inferior_registers.ctr); RF (PPC_CTR_REGNUM, inferior_registers.ctr);
RF (PC_REGNUM, inferior_registers.pc); RF (PC_REGNUM, inferior_registers.pc);
#ifdef PT_GETFPREGS
ptrace (PT_GETFPREGS, inferior_pid, ptrace (PT_GETFPREGS, inferior_pid,
(PTRACE_ARG3_TYPE) & inferior_fp_registers, 0); (PTRACE_ARG3_TYPE) &inferior_fp_registers, 0);
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RF (FP0_REGNUM + i, inferior_fp_registers.r_regs[i]); RF (FP0_REGNUM + i, inferior_fp_registers.r_regs[i]);
#endif
registers_fetched (); registers_fetched ();
} }
@ -62,30 +67,36 @@ void
store_inferior_registers (int regno) store_inferior_registers (int regno)
{ {
struct reg inferior_registers; struct reg inferior_registers;
#ifdef PT_SETFPREGS
struct fpreg inferior_fp_registers; struct fpreg inferior_fp_registers;
#endif
int i; int i;
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RS (i, inferior_registers.fixreg[i]); RS (i, inferior_registers.fixreg[i]);
RS (LR_REGNUM, inferior_registers.lr); RS (PPC_LR_REGNUM, inferior_registers.lr);
RS (CR_REGNUM, inferior_registers.cr); RS (PPC_CR_REGNUM, inferior_registers.cr);
RS (XER_REGNUM, inferior_registers.xer); RS (PPC_XER_REGNUM, inferior_registers.xer);
RS (CTR_REGNUM, inferior_registers.ctr); RS (PPC_CTR_REGNUM, inferior_registers.ctr);
RS (PC_REGNUM, inferior_registers.pc); RS (PC_REGNUM, inferior_registers.pc);
ptrace (PT_SETREGS, inferior_pid, ptrace (PT_SETREGS, inferior_pid,
(PTRACE_ARG3_TYPE) & inferior_registers, 0); (PTRACE_ARG3_TYPE) & inferior_registers, 0);
#ifdef PT_SETFPREGS
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RS (FP0_REGNUM + i, inferior_fp_registers.r_regs[i]); RS (FP0_REGNUM + i, inferior_fp_registers.r_regs[i]);
ptrace (PT_SETFPREGS, inferior_pid, ptrace (PT_SETFPREGS, inferior_pid,
(PTRACE_ARG3_TYPE) & inferior_fp_registers, 0); (PTRACE_ARG3_TYPE) & inferior_fp_registers, 0);
#endif
} }
struct md_core struct md_core
{ {
struct reg intreg; struct reg intreg;
#ifdef PT_GETFPREGS
struct fpreg freg; struct fpreg freg;
#endif
}; };
void void
@ -98,15 +109,17 @@ fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
/* Integer registers */ /* Integer registers */
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RF (i, core_reg->intreg.fixreg[i]); RF (i, core_reg->intreg.fixreg[i]);
RF (LR_REGNUM, core_reg->intreg.lr); RF (PPC_LR_REGNUM, core_reg->intreg.lr);
RF (CR_REGNUM, core_reg->intreg.cr); RF (PPC_CR_REGNUM, core_reg->intreg.cr);
RF (XER_REGNUM, core_reg->intreg.xer); RF (PPC_XER_REGNUM, core_reg->intreg.xer);
RF (CTR_REGNUM, core_reg->intreg.ctr); RF (PPC_CTR_REGNUM, core_reg->intreg.ctr);
RF (PC_REGNUM, core_reg->intreg.pc); RF (PC_REGNUM, core_reg->intreg.pc);
#ifdef PT_FPGETREGS
/* Floating point registers */ /* Floating point registers */
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
RF (FP0_REGNUM + i, core_reg->freg.r_regs[i]); RF (FP0_REGNUM + i, core_reg->freg.r_regs[i]);
#endif
registers_fetched (); registers_fetched ();
} }

View File

@ -850,7 +850,7 @@ v850_target_architecture_hook (const bfd_arch_info_type *ap)
} }
} }
internal_error ("Architecture `%s' unreconized", ap->printable_name); internal_error ("Architecture `%s' unrecognized", ap->printable_name);
} }
void void