1 /* Native support for the SGI Iris running IRIX version 5, for GDB.
3 Copyright (C) 1988-2013 Free Software Foundation, Inc.
5 Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
6 and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
7 Implemented for Irix 4.x by Garrett A. Wollman.
8 Modified for Irix 5.x by Ian Lance Taylor.
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
32 #include "gdb_string.h"
34 #include <sys/procfs.h>
35 #include <setjmp.h> /* For JB_XXX. */
37 /* Prototypes for supply_gregset etc. */
39 #include "mips-tdep.h"
41 static void fetch_core_registers (struct regcache *, char *,
42 unsigned int, int, CORE_ADDR);
46 * See the comment in m68k-tdep.c regarding the utility of these functions.
48 * These definitions are from the MIPS SVR4 ABI, so they may work for
49 * any MIPS SVR4 target.
53 supply_gregset (struct regcache *regcache, const gregset_t *gregsetp)
56 const greg_t *regp = &(*gregsetp)[0];
57 struct gdbarch *gdbarch = get_regcache_arch (regcache);
58 int gregoff = sizeof (greg_t) - mips_isa_regsize (gdbarch);
59 static char zerobuf[32] = {0};
61 for (regi = 0; regi <= CTX_RA; regi++)
62 regcache_raw_supply (regcache, regi,
63 (const char *) (regp + regi) + gregoff);
65 regcache_raw_supply (regcache, mips_regnum (gdbarch)->pc,
66 (const char *) (regp + CTX_EPC) + gregoff);
67 regcache_raw_supply (regcache, mips_regnum (gdbarch)->hi,
68 (const char *) (regp + CTX_MDHI) + gregoff);
69 regcache_raw_supply (regcache, mips_regnum (gdbarch)->lo,
70 (const char *) (regp + CTX_MDLO) + gregoff);
71 regcache_raw_supply (regcache, mips_regnum (gdbarch)->cause,
72 (const char *) (regp + CTX_CAUSE) + gregoff);
74 /* Fill inaccessible registers with zero. */
75 regcache_raw_supply (regcache, mips_regnum (gdbarch)->badvaddr, zerobuf);
79 fill_gregset (const struct regcache *regcache, gregset_t *gregsetp, int regno)
82 greg_t *regp = &(*gregsetp)[0];
83 gdb_byte buf[MAX_REGISTER_SIZE];
84 struct gdbarch *gdbarch = get_regcache_arch (regcache);
85 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
87 /* Under Irix6, if GDB is built with N32 ABI and is debugging an O32
88 executable, we have to sign extend the registers to 64 bits before
89 filling in the gregset structure. */
91 for (regi = 0; regi <= CTX_RA; regi++)
92 if ((regno == -1) || (regno == regi))
94 size = register_size (gdbarch, regi);
95 regcache_raw_collect (regcache, regi, buf);
96 *(regp + regi) = extract_signed_integer (buf, size, byte_order);
99 if ((regno == -1) || (regno == mips_regnum (gdbarch)->pc))
101 regi = mips_regnum (gdbarch)->pc;
102 size = register_size (gdbarch, regi);
103 regcache_raw_collect (regcache, regi, buf);
104 *(regp + CTX_EPC) = extract_signed_integer (buf, size, byte_order);
107 if ((regno == -1) || (regno == mips_regnum (gdbarch)->cause))
109 regi = mips_regnum (gdbarch)->cause;
110 size = register_size (gdbarch, regi);
111 regcache_raw_collect (regcache, regi, buf);
112 *(regp + CTX_CAUSE) = extract_signed_integer (buf, size, byte_order);
115 if ((regno == -1) || (regno == mips_regnum (gdbarch)->hi))
117 regi = mips_regnum (gdbarch)->hi;
118 size = register_size (gdbarch, regi);
119 regcache_raw_collect (regcache, regi, buf);
120 *(regp + CTX_MDHI) = extract_signed_integer (buf, size, byte_order);
123 if ((regno == -1) || (regno == mips_regnum (gdbarch)->lo))
125 regi = mips_regnum (gdbarch)->lo;
126 size = register_size (gdbarch, regi);
127 regcache_raw_collect (regcache, regi, buf);
128 *(regp + CTX_MDLO) = extract_signed_integer (buf, size, byte_order);
133 * Now we do the same thing for floating-point registers.
134 * We don't bother to condition on gdbarch_fp0_regnum since any
135 * reasonable MIPS configuration has an R3010 in it.
137 * Again, see the comments in m68k-tdep.c.
141 supply_fpregset (struct regcache *regcache, const fpregset_t *fpregsetp)
144 static char zerobuf[32] = {0};
146 struct gdbarch *gdbarch = get_regcache_arch (regcache);
148 /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
150 for (regi = 0; regi < 32; regi++)
151 regcache_raw_supply (regcache, gdbarch_fp0_regnum (gdbarch) + regi,
152 (const char *) &fpregsetp->__fp_r.__fp_regs[regi]);
154 /* We can't supply the FSR register directly to the regcache,
155 because there is a size issue: On one hand, fpregsetp->fp_csr
156 is 32bits long, while the regcache expects a 64bits long value.
157 So we use a buffer of the correct size and copy into it the register
158 value at the proper location. */
159 memset (fsrbuf, 0, 4);
160 memcpy (fsrbuf + 4, &fpregsetp->__fp_csr, 4);
162 regcache_raw_supply (regcache,
163 mips_regnum (gdbarch)->fp_control_status, fsrbuf);
165 /* FIXME: how can we supply FCRIR? SGI doesn't tell us. */
166 regcache_raw_supply (regcache,
167 mips_regnum (gdbarch)->fp_implementation_revision,
172 fill_fpregset (const struct regcache *regcache,
173 fpregset_t *fpregsetp, int regno)
177 struct gdbarch *gdbarch = get_regcache_arch (regcache);
179 /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
181 for (regi = gdbarch_fp0_regnum (gdbarch);
182 regi < gdbarch_fp0_regnum (gdbarch) + 32; regi++)
184 if ((regno == -1) || (regno == regi))
186 const int fp0_regnum = gdbarch_fp0_regnum (gdbarch);
188 to = (char *) &(fpregsetp->__fp_r.__fp_regs[regi - fp0_regnum]);
189 regcache_raw_collect (regcache, regi, to);
194 || regno == mips_regnum (gdbarch)->fp_control_status)
198 /* We can't fill the FSR register directly from the regcache,
199 because there is a size issue: On one hand, fpregsetp->fp_csr
200 is 32bits long, while the regcache expects a 64bits long buffer.
201 So we use a buffer of the correct size and copy the register
202 value from that buffer. */
203 regcache_raw_collect (regcache,
204 mips_regnum (gdbarch)->fp_control_status, fsrbuf);
206 memcpy (&fpregsetp->__fp_csr, fsrbuf + 4, 4);
211 /* Provide registers to GDB from a core file.
213 CORE_REG_SECT points to an array of bytes, which were obtained from
214 a core file which BFD thinks might contain register contents.
215 CORE_REG_SIZE is its size.
217 Normally, WHICH says which register set corelow suspects this is:
218 0 --- the general-purpose register set
219 2 --- the floating-point register set
220 However, for Irix 5, WHICH isn't used.
222 REG_ADDR is also unused. */
225 fetch_core_registers (struct regcache *regcache,
226 char *core_reg_sect, unsigned core_reg_size,
227 int which, CORE_ADDR reg_addr)
229 char *srcp = core_reg_sect;
230 struct gdbarch *gdbarch = get_regcache_arch (regcache);
231 int regsize = mips_isa_regsize (gdbarch);
234 /* If regsize is 8, this is a N32 or N64 core file.
235 If regsize is 4, this is an O32 core file. */
236 if (core_reg_size != regsize * gdbarch_num_regs (gdbarch))
238 warning (_("wrong size gregset struct in core file"));
242 for (regno = 0; regno < gdbarch_num_regs (gdbarch); regno++)
244 regcache_raw_supply (regcache, regno, srcp);
249 /* Register that we are able to handle irix5 core file formats.
250 This really is bfd_target_unknown_flavour. */
252 static struct core_fns irix5_core_fns =
254 bfd_target_unknown_flavour, /* core_flavour */
255 default_check_format, /* check_format */
256 default_core_sniffer, /* core_sniffer */
257 fetch_core_registers, /* core_read_registers */
261 /* Provide a prototype to silence -Wmissing-prototypes. */
262 extern initialize_file_ftype _initialize_irix5_nat;
265 _initialize_irix5_nat (void)
267 struct target_ops *t;
269 t = procfs_target ();
270 procfs_use_watchpoints (t);
273 deprecated_add_core_fns (&irix5_core_fns);