1 /* Native support for MIPS running SVR4, for GDB.
2 Copyright 1994 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #include <sys/procfs.h>
27 #include <setjmp.h> /* For JB_XXX. */
29 /* Size of elements in jmpbuf */
31 #define JB_ELEMENT_SIZE 4
34 * See the comment in m68k-tdep.c regarding the utility of these functions.
36 * These definitions are from the MIPS SVR4 ABI, so they may work for
37 * any MIPS SVR4 target.
41 supply_gregset (gregsetp)
45 register greg_t *regp = &(*gregsetp)[0];
47 for(regi = 0; regi <= CXT_RA; regi++)
48 supply_register (regi, (char *)(regp + regi));
50 supply_register (PC_REGNUM, (char *)(regp + CXT_EPC));
51 supply_register (HI_REGNUM, (char *)(regp + CXT_MDHI));
52 supply_register (LO_REGNUM, (char *)(regp + CXT_MDLO));
53 supply_register (CAUSE_REGNUM, (char *)(regp + CXT_CAUSE));
57 fill_gregset (gregsetp, regno)
62 register greg_t *regp = &(*gregsetp)[0];
64 for (regi = 0; regi <= 32; regi++)
65 if ((regno == -1) || (regno == regi))
66 *(regp + regi) = *(greg_t *) ®isters[REGISTER_BYTE (regi)];
68 if ((regno == -1) || (regno == PC_REGNUM))
69 *(regp + CXT_EPC) = *(greg_t *) ®isters[REGISTER_BYTE (PC_REGNUM)];
71 if ((regno == -1) || (regno == CAUSE_REGNUM))
72 *(regp + CXT_CAUSE) = *(greg_t *) ®isters[REGISTER_BYTE (PS_REGNUM)];
74 if ((regno == -1) || (regno == HI_REGNUM))
75 *(regp + CXT_MDHI) = *(greg_t *) ®isters[REGISTER_BYTE (HI_REGNUM)];
77 if ((regno == -1) || (regno == LO_REGNUM))
78 *(regp + CXT_MDLO) = *(greg_t *) ®isters[REGISTER_BYTE (LO_REGNUM)];
82 * Now we do the same thing for floating-point registers.
83 * We don't bother to condition on FP0_REGNUM since any
84 * reasonable MIPS configuration has an R3010 in it.
86 * Again, see the comments in m68k-tdep.c.
90 supply_fpregset (fpregsetp)
91 fpregset_t *fpregsetp;
95 for (regi = 0; regi < 32; regi++)
96 supply_register (FP0_REGNUM + regi,
97 (char *)&fpregsetp->fp_r.fp_regs[regi]);
99 supply_register (FCRCS_REGNUM, (char *)&fpregsetp->fp_csr);
101 /* FIXME: how can we supply FCRIR_REGNUM? The ABI doesn't tell us. */
105 fill_fpregset (fpregsetp, regno)
106 fpregset_t *fpregsetp;
112 for (regi = FP0_REGNUM; regi < FP0_REGNUM + 32; regi++)
114 if ((regno == -1) || (regno == regi))
116 from = (char *) ®isters[REGISTER_BYTE (regi)];
117 to = (char *) &(fpregsetp->fp_r.fp_regs[regi - FP0_REGNUM]);
118 memcpy(to, from, REGISTER_RAW_SIZE (regi));
122 if ((regno == -1) || (regno == FCRCS_REGNUM))
123 fpregsetp->fp_csr = *(unsigned *) ®isters[REGISTER_BYTE(FCRCS_REGNUM)];
127 /* Figure out where the longjmp will land.
128 We expect the first arg to be a pointer to the jmp_buf structure from which
129 we extract the pc (_JB_PC) that we will land at. The pc is copied into PC.
130 This routine returns true on success. */
133 get_longjmp_target (pc)
136 char buf[TARGET_PTR_BIT / TARGET_CHAR_BIT];
139 jb_addr = read_register (A0_REGNUM);
141 if (target_read_memory (jb_addr + _JB_PC * JB_ELEMENT_SIZE, buf,
142 TARGET_PTR_BIT / TARGET_CHAR_BIT))
145 *pc = extract_address (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);