* irix5-nat.c (JB_ELEMENT_SIZE, get_longjmp_target): Remove.
[deliverable/binutils-gdb.git] / gdb / mips-linux-tdep.c
CommitLineData
75c9abc6 1/* Target-dependent code for GNU/Linux on MIPS processors.
a094c6fb 2
6aba47ca 3 Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007
76a9d10f 4 Free Software Foundation, Inc.
2aa830e4
DJ
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
197e01b6
EZ
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
2aa830e4
DJ
22
23#include "defs.h"
24#include "gdbcore.h"
25#include "target.h"
26#include "solib-svr4.h"
19ed69dd 27#include "osabi.h"
96f026fc 28#include "mips-tdep.h"
19ed69dd 29#include "gdb_string.h"
96f026fc 30#include "gdb_assert.h"
6de918a6 31#include "frame.h"
2fdf551c 32#include "regcache.h"
5792a79b
DJ
33#include "trad-frame.h"
34#include "tramp-frame.h"
e6bb342a 35#include "gdbtypes.h"
5ea03926 36#include "solib.h"
7d522c90
DJ
37#include "solib-svr4.h"
38#include "solist.h"
982e9687 39#include "symtab.h"
d37eb719 40#include "mips-linux-tdep.h"
2aa830e4 41
7d522c90
DJ
42static struct target_so_ops mips_svr4_so_ops;
43
2aa830e4 44/* Figure out where the longjmp will land.
295093a4
MS
45 We expect the first arg to be a pointer to the jmp_buf structure
46 from which we extract the pc (MIPS_LINUX_JB_PC) that we will land
47 at. The pc is copied into PC. This routine returns 1 on
48 success. */
2aa830e4 49
19ed69dd
KB
50#define MIPS_LINUX_JB_ELEMENT_SIZE 4
51#define MIPS_LINUX_JB_PC 0
52
53static int
2aa830e4
DJ
54mips_linux_get_longjmp_target (CORE_ADDR *pc)
55{
56 CORE_ADDR jb_addr;
57 char buf[TARGET_PTR_BIT / TARGET_CHAR_BIT];
58
613e114f 59 jb_addr = read_register (MIPS_A0_REGNUM);
2aa830e4 60
bf072999
DJ
61 if (target_read_memory (jb_addr
62 + MIPS_LINUX_JB_PC * MIPS_LINUX_JB_ELEMENT_SIZE,
63 buf, TARGET_PTR_BIT / TARGET_CHAR_BIT))
2aa830e4
DJ
64 return 0;
65
7c0b4a20 66 *pc = extract_unsigned_integer (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);
2aa830e4
DJ
67
68 return 1;
69}
70
4246e332 71/* Transform the bits comprising a 32-bit register to the right size
23a6d369
AC
72 for regcache_raw_supply(). This is needed when mips_isa_regsize()
73 is 8. */
96f026fc
KB
74
75static void
28f5035f 76supply_32bit_reg (struct regcache *regcache, int regnum, const void *addr)
96f026fc 77{
d37eb719 78 gdb_byte buf[MAX_REGISTER_SIZE];
3acba339 79 store_signed_integer (buf, register_size (current_gdbarch, regnum),
96f026fc 80 extract_signed_integer (addr, 4));
28f5035f 81 regcache_raw_supply (regcache, regnum, buf);
96f026fc
KB
82}
83
2aa830e4
DJ
84/* Unpack an elf_gregset_t into GDB's register cache. */
85
d37eb719 86void
28f5035f
UW
87mips_supply_gregset (struct regcache *regcache,
88 const mips_elf_gregset_t *gregsetp)
2aa830e4
DJ
89{
90 int regi;
28f5035f 91 const mips_elf_greg_t *regp = *gregsetp;
d9d9c31f 92 char zerobuf[MAX_REGISTER_SIZE];
bf072999 93
d9d9c31f 94 memset (zerobuf, 0, MAX_REGISTER_SIZE);
2aa830e4
DJ
95
96 for (regi = EF_REG0; regi <= EF_REG31; regi++)
28f5035f 97 supply_32bit_reg (regcache, regi - EF_REG0, regp + regi);
2aa830e4 98
28f5035f
UW
99 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->lo,
100 regp + EF_LO);
101 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->hi,
102 regp + EF_HI);
56cea623 103
28f5035f
UW
104 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->pc,
105 regp + EF_CP0_EPC);
106 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->badvaddr,
107 regp + EF_CP0_BADVADDR);
108 supply_32bit_reg (regcache, MIPS_PS_REGNUM, regp + EF_CP0_STATUS);
109 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->cause,
110 regp + EF_CP0_CAUSE);
2aa830e4
DJ
111
112 /* Fill inaccessible registers with zero. */
28f5035f 113 regcache_raw_supply (regcache, MIPS_UNUSED_REGNUM, zerobuf);
295093a4
MS
114 for (regi = MIPS_FIRST_EMBED_REGNUM;
115 regi < MIPS_LAST_EMBED_REGNUM;
116 regi++)
28f5035f 117 regcache_raw_supply (regcache, regi, zerobuf);
2aa830e4
DJ
118}
119
120/* Pack our registers (or one register) into an elf_gregset_t. */
121
d37eb719 122void
28f5035f
UW
123mips_fill_gregset (const struct regcache *regcache,
124 mips_elf_gregset_t *gregsetp, int regno)
2aa830e4
DJ
125{
126 int regaddr, regi;
d37eb719 127 mips_elf_greg_t *regp = *gregsetp;
96f026fc 128 void *dst;
2aa830e4
DJ
129
130 if (regno == -1)
131 {
d37eb719 132 memset (regp, 0, sizeof (mips_elf_gregset_t));
2aa830e4 133 for (regi = 0; regi < 32; regi++)
28f5035f
UW
134 mips_fill_gregset (regcache, gregsetp, regi);
135 mips_fill_gregset (regcache, gregsetp,
136 mips_regnum (current_gdbarch)->lo);
137 mips_fill_gregset (regcache, gregsetp,
138 mips_regnum (current_gdbarch)->hi);
139 mips_fill_gregset (regcache, gregsetp,
140 mips_regnum (current_gdbarch)->pc);
141 mips_fill_gregset (regcache, gregsetp,
142 mips_regnum (current_gdbarch)->badvaddr);
143 mips_fill_gregset (regcache, gregsetp, MIPS_PS_REGNUM);
144 mips_fill_gregset (regcache, gregsetp,
145 mips_regnum (current_gdbarch)->cause);
2aa830e4
DJ
146 return;
147 }
148
149 if (regno < 32)
150 {
2aa830e4 151 dst = regp + regno + EF_REG0;
28f5035f 152 regcache_raw_collect (regcache, regno, dst);
2aa830e4
DJ
153 return;
154 }
155
56cea623
AC
156 if (regno == mips_regnum (current_gdbarch)->lo)
157 regaddr = EF_LO;
158 else if (regno == mips_regnum (current_gdbarch)->hi)
159 regaddr = EF_HI;
160 else if (regno == mips_regnum (current_gdbarch)->pc)
161 regaddr = EF_CP0_EPC;
162 else if (regno == mips_regnum (current_gdbarch)->badvaddr)
163 regaddr = EF_CP0_BADVADDR;
24e05951 164 else if (regno == MIPS_PS_REGNUM)
56cea623
AC
165 regaddr = EF_CP0_STATUS;
166 else if (regno == mips_regnum (current_gdbarch)->cause)
167 regaddr = EF_CP0_CAUSE;
168 else
169 regaddr = -1;
2aa830e4
DJ
170
171 if (regaddr != -1)
172 {
2aa830e4 173 dst = regp + regaddr;
28f5035f 174 regcache_raw_collect (regcache, regno, dst);
2aa830e4
DJ
175 }
176}
177
178/* Likewise, unpack an elf_fpregset_t. */
179
d37eb719 180void
28f5035f
UW
181mips_supply_fpregset (struct regcache *regcache,
182 const mips_elf_fpregset_t *fpregsetp)
2aa830e4 183{
52f0bd74 184 int regi;
d9d9c31f 185 char zerobuf[MAX_REGISTER_SIZE];
bf072999 186
d9d9c31f 187 memset (zerobuf, 0, MAX_REGISTER_SIZE);
2aa830e4
DJ
188
189 for (regi = 0; regi < 32; regi++)
28f5035f 190 regcache_raw_supply (regcache, FP0_REGNUM + regi, *fpregsetp + regi);
2aa830e4 191
28f5035f 192 regcache_raw_supply (regcache,
23a6d369 193 mips_regnum (current_gdbarch)->fp_control_status,
28f5035f 194 *fpregsetp + 32);
2aa830e4 195
295093a4 196 /* FIXME: how can we supply FCRIR? The ABI doesn't tell us. */
28f5035f 197 regcache_raw_supply (regcache,
23a6d369
AC
198 mips_regnum (current_gdbarch)->fp_implementation_revision,
199 zerobuf);
2aa830e4
DJ
200}
201
202/* Likewise, pack one or all floating point registers into an
203 elf_fpregset_t. */
204
d37eb719 205void
28f5035f
UW
206mips_fill_fpregset (const struct regcache *regcache,
207 mips_elf_fpregset_t *fpregsetp, int regno)
2aa830e4
DJ
208{
209 char *from, *to;
210
211 if ((regno >= FP0_REGNUM) && (regno < FP0_REGNUM + 32))
212 {
2aa830e4 213 to = (char *) (*fpregsetp + regno - FP0_REGNUM);
28f5035f 214 regcache_raw_collect (regcache, regno, to);
2aa830e4 215 }
56cea623 216 else if (regno == mips_regnum (current_gdbarch)->fp_control_status)
2aa830e4 217 {
2aa830e4 218 to = (char *) (*fpregsetp + 32);
28f5035f 219 regcache_raw_collect (regcache, regno, to);
2aa830e4
DJ
220 }
221 else if (regno == -1)
222 {
223 int regi;
224
225 for (regi = 0; regi < 32; regi++)
28f5035f
UW
226 mips_fill_fpregset (regcache, fpregsetp, FP0_REGNUM + regi);
227 mips_fill_fpregset (regcache, fpregsetp,
9f62d0e2 228 mips_regnum (current_gdbarch)->fp_control_status);
2aa830e4
DJ
229 }
230}
231
96f026fc
KB
232/* Support for 64-bit ABIs. */
233
96f026fc 234/* Figure out where the longjmp will land.
295093a4
MS
235 We expect the first arg to be a pointer to the jmp_buf structure
236 from which we extract the pc (MIPS_LINUX_JB_PC) that we will land
237 at. The pc is copied into PC. This routine returns 1 on
238 success. */
96f026fc
KB
239
240/* Details about jmp_buf. */
241
242#define MIPS64_LINUX_JB_PC 0
243
244static int
245mips64_linux_get_longjmp_target (CORE_ADDR *pc)
246{
247 CORE_ADDR jb_addr;
248 void *buf = alloca (TARGET_PTR_BIT / TARGET_CHAR_BIT);
249 int element_size = TARGET_PTR_BIT == 32 ? 4 : 8;
250
613e114f 251 jb_addr = read_register (MIPS_A0_REGNUM);
96f026fc
KB
252
253 if (target_read_memory (jb_addr + MIPS64_LINUX_JB_PC * element_size,
254 buf, TARGET_PTR_BIT / TARGET_CHAR_BIT))
255 return 0;
256
7c0b4a20 257 *pc = extract_unsigned_integer (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);
96f026fc
KB
258
259 return 1;
260}
261
d37eb719
DJ
262/* Register set support functions. These operate on standard 64-bit
263 regsets, but work whether the target is 32-bit or 64-bit. A 32-bit
264 target will still use the 64-bit format for PTRACE_GETREGS. */
265
266/* Supply a 64-bit register. */
96f026fc 267
d37eb719 268void
28f5035f
UW
269supply_64bit_reg (struct regcache *regcache, int regnum,
270 const gdb_byte *buf)
d37eb719
DJ
271{
272 if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG
273 && register_size (current_gdbarch, regnum) == 4)
28f5035f 274 regcache_raw_supply (regcache, regnum, buf + 4);
d37eb719 275 else
28f5035f 276 regcache_raw_supply (regcache, regnum, buf);
d37eb719
DJ
277}
278
279/* Unpack a 64-bit elf_gregset_t into GDB's register cache. */
280
281void
28f5035f
UW
282mips64_supply_gregset (struct regcache *regcache,
283 const mips64_elf_gregset_t *gregsetp)
96f026fc
KB
284{
285 int regi;
28f5035f 286 const mips64_elf_greg_t *regp = *gregsetp;
d37eb719 287 gdb_byte zerobuf[MAX_REGISTER_SIZE];
96f026fc 288
d9d9c31f 289 memset (zerobuf, 0, MAX_REGISTER_SIZE);
96f026fc
KB
290
291 for (regi = MIPS64_EF_REG0; regi <= MIPS64_EF_REG31; regi++)
28f5035f
UW
292 supply_64bit_reg (regcache, regi - MIPS64_EF_REG0,
293 (const gdb_byte *)(regp + regi));
294
295 supply_64bit_reg (regcache, mips_regnum (current_gdbarch)->lo,
296 (const gdb_byte *) (regp + MIPS64_EF_LO));
297 supply_64bit_reg (regcache, mips_regnum (current_gdbarch)->hi,
298 (const gdb_byte *) (regp + MIPS64_EF_HI));
299
300 supply_64bit_reg (regcache, mips_regnum (current_gdbarch)->pc,
301 (const gdb_byte *) (regp + MIPS64_EF_CP0_EPC));
302 supply_64bit_reg (regcache, mips_regnum (current_gdbarch)->badvaddr,
303 (const gdb_byte *) (regp + MIPS64_EF_CP0_BADVADDR));
304 supply_64bit_reg (regcache, MIPS_PS_REGNUM,
305 (const gdb_byte *) (regp + MIPS64_EF_CP0_STATUS));
306 supply_64bit_reg (regcache, mips_regnum (current_gdbarch)->cause,
307 (const gdb_byte *) (regp + MIPS64_EF_CP0_CAUSE));
96f026fc
KB
308
309 /* Fill inaccessible registers with zero. */
28f5035f 310 regcache_raw_supply (regcache, MIPS_UNUSED_REGNUM, zerobuf);
295093a4
MS
311 for (regi = MIPS_FIRST_EMBED_REGNUM;
312 regi < MIPS_LAST_EMBED_REGNUM;
313 regi++)
28f5035f 314 regcache_raw_supply (regcache, regi, zerobuf);
96f026fc
KB
315}
316
d37eb719 317/* Pack our registers (or one register) into a 64-bit elf_gregset_t. */
96f026fc 318
d37eb719 319void
28f5035f
UW
320mips64_fill_gregset (const struct regcache *regcache,
321 mips64_elf_gregset_t *gregsetp, int regno)
96f026fc
KB
322{
323 int regaddr, regi;
324 mips64_elf_greg_t *regp = *gregsetp;
325 void *src, *dst;
326
327 if (regno == -1)
328 {
329 memset (regp, 0, sizeof (mips64_elf_gregset_t));
330 for (regi = 0; regi < 32; regi++)
28f5035f
UW
331 mips64_fill_gregset (regcache, gregsetp, regi);
332 mips64_fill_gregset (regcache, gregsetp,
333 mips_regnum (current_gdbarch)->lo);
334 mips64_fill_gregset (regcache, gregsetp,
335 mips_regnum (current_gdbarch)->hi);
336 mips64_fill_gregset (regcache, gregsetp,
337 mips_regnum (current_gdbarch)->pc);
338 mips64_fill_gregset (regcache, gregsetp,
295093a4 339 mips_regnum (current_gdbarch)->badvaddr);
28f5035f
UW
340 mips64_fill_gregset (regcache, gregsetp, MIPS_PS_REGNUM);
341 mips64_fill_gregset (regcache, gregsetp,
295093a4 342 mips_regnum (current_gdbarch)->cause);
96f026fc
KB
343 return;
344 }
345
346 if (regno < 32)
d37eb719
DJ
347 regaddr = regno + MIPS64_EF_REG0;
348 else if (regno == mips_regnum (current_gdbarch)->lo)
56cea623
AC
349 regaddr = MIPS64_EF_LO;
350 else if (regno == mips_regnum (current_gdbarch)->hi)
351 regaddr = MIPS64_EF_HI;
352 else if (regno == mips_regnum (current_gdbarch)->pc)
353 regaddr = MIPS64_EF_CP0_EPC;
354 else if (regno == mips_regnum (current_gdbarch)->badvaddr)
355 regaddr = MIPS64_EF_CP0_BADVADDR;
24e05951 356 else if (regno == MIPS_PS_REGNUM)
56cea623
AC
357 regaddr = MIPS64_EF_CP0_STATUS;
358 else if (regno == mips_regnum (current_gdbarch)->cause)
359 regaddr = MIPS64_EF_CP0_CAUSE;
360 else
361 regaddr = -1;
96f026fc
KB
362
363 if (regaddr != -1)
364 {
d37eb719
DJ
365 gdb_byte buf[MAX_REGISTER_SIZE];
366 LONGEST val;
367
28f5035f 368 regcache_raw_collect (regcache, regno, buf);
d37eb719
DJ
369 val = extract_signed_integer (buf,
370 register_size (current_gdbarch, regno));
96f026fc 371 dst = regp + regaddr;
d37eb719 372 store_signed_integer (dst, 8, val);
96f026fc
KB
373 }
374}
375
376/* Likewise, unpack an elf_fpregset_t. */
377
d37eb719 378void
28f5035f
UW
379mips64_supply_fpregset (struct regcache *regcache,
380 const mips64_elf_fpregset_t *fpregsetp)
96f026fc 381{
52f0bd74 382 int regi;
96f026fc 383
d37eb719
DJ
384 /* See mips_linux_o32_sigframe_init for a description of the
385 peculiar FP register layout. */
386 if (register_size (current_gdbarch, FP0_REGNUM) == 4)
387 for (regi = 0; regi < 32; regi++)
388 {
28f5035f 389 const gdb_byte *reg_ptr = (const gdb_byte *)(*fpregsetp + (regi & ~1));
4c6b5505
UW
390 if ((gdbarch_byte_order (current_gdbarch)
391 == BFD_ENDIAN_BIG) != (regi & 1))
d37eb719 392 reg_ptr += 4;
28f5035f 393 regcache_raw_supply (regcache, FP0_REGNUM + regi, reg_ptr);
d37eb719
DJ
394 }
395 else
396 for (regi = 0; regi < 32; regi++)
28f5035f
UW
397 regcache_raw_supply (regcache, FP0_REGNUM + regi,
398 (const char *)(*fpregsetp + regi));
d37eb719 399
28f5035f
UW
400 supply_32bit_reg (regcache, mips_regnum (current_gdbarch)->fp_control_status,
401 (const gdb_byte *)(*fpregsetp + 32));
d37eb719
DJ
402
403 /* The ABI doesn't tell us how to supply FCRIR, and core dumps don't
404 include it - but the result of PTRACE_GETFPREGS does. The best we
405 can do is to assume that its value is present. */
28f5035f
UW
406 supply_32bit_reg (regcache,
407 mips_regnum (current_gdbarch)->fp_implementation_revision,
408 (const gdb_byte *)(*fpregsetp + 32) + 4);
96f026fc
KB
409}
410
411/* Likewise, pack one or all floating point registers into an
412 elf_fpregset_t. */
413
d37eb719 414void
28f5035f
UW
415mips64_fill_fpregset (const struct regcache *regcache,
416 mips64_elf_fpregset_t *fpregsetp, int regno)
96f026fc 417{
d37eb719 418 gdb_byte *to;
96f026fc
KB
419
420 if ((regno >= FP0_REGNUM) && (regno < FP0_REGNUM + 32))
421 {
d37eb719
DJ
422 /* See mips_linux_o32_sigframe_init for a description of the
423 peculiar FP register layout. */
424 if (register_size (current_gdbarch, regno) == 4)
425 {
426 int regi = regno - FP0_REGNUM;
427
428 to = (gdb_byte *) (*fpregsetp + (regi & ~1));
4c6b5505
UW
429 if ((gdbarch_byte_order (current_gdbarch)
430 == BFD_ENDIAN_BIG) != (regi & 1))
d37eb719 431 to += 4;
28f5035f 432 regcache_raw_collect (regcache, regno, to);
d37eb719
DJ
433 }
434 else
435 {
436 to = (gdb_byte *) (*fpregsetp + regno - FP0_REGNUM);
28f5035f 437 regcache_raw_collect (regcache, regno, to);
d37eb719 438 }
96f026fc 439 }
56cea623 440 else if (regno == mips_regnum (current_gdbarch)->fp_control_status)
96f026fc 441 {
d37eb719
DJ
442 gdb_byte buf[MAX_REGISTER_SIZE];
443 LONGEST val;
444
28f5035f 445 regcache_raw_collect (regcache, regno, buf);
d37eb719
DJ
446 val = extract_signed_integer (buf,
447 register_size (current_gdbarch, regno));
448 to = (gdb_byte *) (*fpregsetp + 32);
449 store_signed_integer (to, 4, val);
450 }
451 else if (regno == mips_regnum (current_gdbarch)->fp_implementation_revision)
452 {
453 gdb_byte buf[MAX_REGISTER_SIZE];
454 LONGEST val;
455
28f5035f 456 regcache_raw_collect (regcache, regno, buf);
d37eb719
DJ
457 val = extract_signed_integer (buf,
458 register_size (current_gdbarch, regno));
459 to = (gdb_byte *) (*fpregsetp + 32) + 4;
460 store_signed_integer (to, 4, val);
96f026fc
KB
461 }
462 else if (regno == -1)
463 {
464 int regi;
465
466 for (regi = 0; regi < 32; regi++)
28f5035f
UW
467 mips64_fill_fpregset (regcache, fpregsetp, FP0_REGNUM + regi);
468 mips64_fill_fpregset (regcache, fpregsetp,
d37eb719 469 mips_regnum (current_gdbarch)->fp_control_status);
28f5035f
UW
470 mips64_fill_fpregset (regcache, fpregsetp,
471 (mips_regnum (current_gdbarch)
472 ->fp_implementation_revision));
96f026fc
KB
473 }
474}
475
476
2aa830e4
DJ
477/* Use a local version of this function to get the correct types for
478 regsets, until multi-arch core support is ready. */
479
480static void
9eefc95f
UW
481fetch_core_registers (struct regcache *regcache,
482 char *core_reg_sect, unsigned core_reg_size,
2aa830e4
DJ
483 int which, CORE_ADDR reg_addr)
484{
d37eb719
DJ
485 mips_elf_gregset_t gregset;
486 mips_elf_fpregset_t fpregset;
96f026fc
KB
487 mips64_elf_gregset_t gregset64;
488 mips64_elf_fpregset_t fpregset64;
2aa830e4
DJ
489
490 if (which == 0)
491 {
96f026fc 492 if (core_reg_size == sizeof (gregset))
2aa830e4 493 {
96f026fc 494 memcpy ((char *) &gregset, core_reg_sect, sizeof (gregset));
9eefc95f 495 mips_supply_gregset (regcache,
28f5035f 496 (const mips_elf_gregset_t *) &gregset);
96f026fc
KB
497 }
498 else if (core_reg_size == sizeof (gregset64))
499 {
500 memcpy ((char *) &gregset64, core_reg_sect, sizeof (gregset64));
9eefc95f 501 mips64_supply_gregset (regcache,
28f5035f 502 (const mips64_elf_gregset_t *) &gregset64);
2aa830e4
DJ
503 }
504 else
505 {
8a3fe4f8 506 warning (_("wrong size gregset struct in core file"));
2aa830e4
DJ
507 }
508 }
509 else if (which == 2)
510 {
96f026fc 511 if (core_reg_size == sizeof (fpregset))
2aa830e4 512 {
96f026fc 513 memcpy ((char *) &fpregset, core_reg_sect, sizeof (fpregset));
9eefc95f 514 mips_supply_fpregset (regcache,
28f5035f 515 (const mips_elf_fpregset_t *) &fpregset);
96f026fc
KB
516 }
517 else if (core_reg_size == sizeof (fpregset64))
518 {
295093a4
MS
519 memcpy ((char *) &fpregset64, core_reg_sect,
520 sizeof (fpregset64));
9eefc95f 521 mips64_supply_fpregset (regcache,
28f5035f 522 (const mips64_elf_fpregset_t *) &fpregset64);
2aa830e4
DJ
523 }
524 else
525 {
8a3fe4f8 526 warning (_("wrong size fpregset struct in core file"));
2aa830e4
DJ
527 }
528 }
529}
530
531/* Register that we are able to handle ELF file formats using standard
532 procfs "regset" structures. */
533
534static struct core_fns regset_core_fns =
535{
536 bfd_target_elf_flavour, /* core_flavour */
537 default_check_format, /* check_format */
538 default_core_sniffer, /* core_sniffer */
539 fetch_core_registers, /* core_read_registers */
540 NULL /* next */
541};
542
96f026fc 543
295093a4
MS
544/* Check the code at PC for a dynamic linker lazy resolution stub.
545 Because they aren't in the .plt section, we pattern-match on the
546 code generated by GNU ld. They look like this:
6de918a6
DJ
547
548 lw t9,0x8010(gp)
549 addu t7,ra
550 jalr t9,ra
551 addiu t8,zero,INDEX
552
295093a4
MS
553 (with the appropriate doubleword instructions for N64). Also
554 return the dynamic symbol index used in the last instruction. */
6de918a6
DJ
555
556static int
557mips_linux_in_dynsym_stub (CORE_ADDR pc, char *name)
558{
559 unsigned char buf[28], *p;
560 ULONGEST insn, insn1;
561 int n64 = (mips_abi (current_gdbarch) == MIPS_ABI_N64);
562
563 read_memory (pc - 12, buf, 28);
564
565 if (n64)
566 {
567 /* ld t9,0x8010(gp) */
568 insn1 = 0xdf998010;
569 }
570 else
571 {
572 /* lw t9,0x8010(gp) */
573 insn1 = 0x8f998010;
574 }
575
576 p = buf + 12;
577 while (p >= buf)
578 {
579 insn = extract_unsigned_integer (p, 4);
580 if (insn == insn1)
581 break;
582 p -= 4;
583 }
584 if (p < buf)
585 return 0;
586
587 insn = extract_unsigned_integer (p + 4, 4);
588 if (n64)
589 {
590 /* daddu t7,ra */
591 if (insn != 0x03e0782d)
592 return 0;
593 }
594 else
595 {
596 /* addu t7,ra */
597 if (insn != 0x03e07821)
598 return 0;
599 }
295093a4 600
6de918a6
DJ
601 insn = extract_unsigned_integer (p + 8, 4);
602 /* jalr t9,ra */
603 if (insn != 0x0320f809)
604 return 0;
605
606 insn = extract_unsigned_integer (p + 12, 4);
607 if (n64)
608 {
609 /* daddiu t8,zero,0 */
610 if ((insn & 0xffff0000) != 0x64180000)
611 return 0;
612 }
613 else
614 {
615 /* addiu t8,zero,0 */
616 if ((insn & 0xffff0000) != 0x24180000)
617 return 0;
618 }
619
620 return (insn & 0xffff);
621}
622
295093a4
MS
623/* Return non-zero iff PC belongs to the dynamic linker resolution
624 code or to a stub. */
6de918a6 625
7d522c90 626static int
6de918a6
DJ
627mips_linux_in_dynsym_resolve_code (CORE_ADDR pc)
628{
295093a4
MS
629 /* Check whether PC is in the dynamic linker. This also checks
630 whether it is in the .plt section, which MIPS does not use. */
7d522c90 631 if (svr4_in_dynsym_resolve_code (pc))
6de918a6
DJ
632 return 1;
633
295093a4
MS
634 /* Pattern match for the stub. It would be nice if there were a
635 more efficient way to avoid this check. */
6de918a6
DJ
636 if (mips_linux_in_dynsym_stub (pc, NULL))
637 return 1;
638
639 return 0;
640}
641
642/* See the comments for SKIP_SOLIB_RESOLVER at the top of infrun.c,
643 and glibc_skip_solib_resolver in glibc-tdep.c. The normal glibc
644 implementation of this triggers at "fixup" from the same objfile as
c4c5b7ba
AC
645 "_dl_runtime_resolve"; MIPS GNU/Linux can trigger at
646 "__dl_runtime_resolve" directly. An unresolved PLT entry will
647 point to _dl_runtime_resolve, which will first call
648 __dl_runtime_resolve, and then pass control to the resolved
649 function. */
6de918a6
DJ
650
651static CORE_ADDR
652mips_linux_skip_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
653{
654 struct minimal_symbol *resolver;
655
656 resolver = lookup_minimal_symbol ("__dl_runtime_resolve", NULL, NULL);
657
658 if (resolver && SYMBOL_VALUE_ADDRESS (resolver) == pc)
295093a4 659 return frame_pc_unwind (get_current_frame ());
6de918a6
DJ
660
661 return 0;
295093a4 662}
6de918a6 663
5792a79b
DJ
664/* Signal trampoline support. There are four supported layouts for a
665 signal frame: o32 sigframe, o32 rt_sigframe, n32 rt_sigframe, and
666 n64 rt_sigframe. We handle them all independently; not the most
667 efficient way, but simplest. First, declare all the unwinders. */
668
669static void mips_linux_o32_sigframe_init (const struct tramp_frame *self,
670 struct frame_info *next_frame,
671 struct trad_frame_cache *this_cache,
672 CORE_ADDR func);
673
674static void mips_linux_n32n64_sigframe_init (const struct tramp_frame *self,
675 struct frame_info *next_frame,
676 struct trad_frame_cache *this_cache,
677 CORE_ADDR func);
678
679#define MIPS_NR_LINUX 4000
680#define MIPS_NR_N64_LINUX 5000
681#define MIPS_NR_N32_LINUX 6000
682
683#define MIPS_NR_sigreturn MIPS_NR_LINUX + 119
684#define MIPS_NR_rt_sigreturn MIPS_NR_LINUX + 193
685#define MIPS_NR_N64_rt_sigreturn MIPS_NR_N64_LINUX + 211
686#define MIPS_NR_N32_rt_sigreturn MIPS_NR_N32_LINUX + 211
687
688#define MIPS_INST_LI_V0_SIGRETURN 0x24020000 + MIPS_NR_sigreturn
689#define MIPS_INST_LI_V0_RT_SIGRETURN 0x24020000 + MIPS_NR_rt_sigreturn
690#define MIPS_INST_LI_V0_N64_RT_SIGRETURN 0x24020000 + MIPS_NR_N64_rt_sigreturn
691#define MIPS_INST_LI_V0_N32_RT_SIGRETURN 0x24020000 + MIPS_NR_N32_rt_sigreturn
692#define MIPS_INST_SYSCALL 0x0000000c
693
2cd8546d
AC
694static const struct tramp_frame mips_linux_o32_sigframe = {
695 SIGTRAMP_FRAME,
5792a79b 696 4,
2cd8546d
AC
697 {
698 { MIPS_INST_LI_V0_SIGRETURN, -1 },
699 { MIPS_INST_SYSCALL, -1 },
700 { TRAMP_SENTINEL_INSN, -1 }
701 },
5792a79b
DJ
702 mips_linux_o32_sigframe_init
703};
704
2cd8546d
AC
705static const struct tramp_frame mips_linux_o32_rt_sigframe = {
706 SIGTRAMP_FRAME,
5792a79b 707 4,
2cd8546d
AC
708 {
709 { MIPS_INST_LI_V0_RT_SIGRETURN, -1 },
710 { MIPS_INST_SYSCALL, -1 },
711 { TRAMP_SENTINEL_INSN, -1 } },
5792a79b
DJ
712 mips_linux_o32_sigframe_init
713};
714
2cd8546d
AC
715static const struct tramp_frame mips_linux_n32_rt_sigframe = {
716 SIGTRAMP_FRAME,
5792a79b 717 4,
2cd8546d
AC
718 {
719 { MIPS_INST_LI_V0_N32_RT_SIGRETURN, -1 },
720 { MIPS_INST_SYSCALL, -1 },
721 { TRAMP_SENTINEL_INSN, -1 }
722 },
5792a79b
DJ
723 mips_linux_n32n64_sigframe_init
724};
725
2cd8546d
AC
726static const struct tramp_frame mips_linux_n64_rt_sigframe = {
727 SIGTRAMP_FRAME,
5792a79b 728 4,
fcbd8a5c
TS
729 {
730 { MIPS_INST_LI_V0_N64_RT_SIGRETURN, -1 },
731 { MIPS_INST_SYSCALL, -1 },
732 { TRAMP_SENTINEL_INSN, -1 }
733 },
5792a79b
DJ
734 mips_linux_n32n64_sigframe_init
735};
736
737/* *INDENT-OFF* */
738/* The unwinder for o32 signal frames. The legacy structures look
739 like this:
740
741 struct sigframe {
742 u32 sf_ass[4]; [argument save space for o32]
743 u32 sf_code[2]; [signal trampoline]
744 struct sigcontext sf_sc;
745 sigset_t sf_mask;
746 };
747
748 struct sigcontext {
749 unsigned int sc_regmask; [Unused]
750 unsigned int sc_status;
751 unsigned long long sc_pc;
752 unsigned long long sc_regs[32];
753 unsigned long long sc_fpregs[32];
754 unsigned int sc_ownedfp;
755 unsigned int sc_fpc_csr;
756 unsigned int sc_fpc_eir; [Unused]
757 unsigned int sc_used_math;
758 unsigned int sc_ssflags; [Unused]
759 [Alignment hole of four bytes]
760 unsigned long long sc_mdhi;
761 unsigned long long sc_mdlo;
762
763 unsigned int sc_cause; [Unused]
764 unsigned int sc_badvaddr; [Unused]
765
766 unsigned long sc_sigset[4]; [kernel's sigset_t]
767 };
768
769 The RT signal frames look like this:
770
771 struct rt_sigframe {
772 u32 rs_ass[4]; [argument save space for o32]
773 u32 rs_code[2] [signal trampoline]
774 struct siginfo rs_info;
775 struct ucontext rs_uc;
776 };
777
778 struct ucontext {
779 unsigned long uc_flags;
780 struct ucontext *uc_link;
781 stack_t uc_stack;
782 [Alignment hole of four bytes]
783 struct sigcontext uc_mcontext;
784 sigset_t uc_sigmask;
785 }; */
786/* *INDENT-ON* */
787
788#define SIGFRAME_CODE_OFFSET (4 * 4)
789#define SIGFRAME_SIGCONTEXT_OFFSET (6 * 4)
790
791#define RTSIGFRAME_SIGINFO_SIZE 128
792#define STACK_T_SIZE (3 * 4)
793#define UCONTEXT_SIGCONTEXT_OFFSET (2 * 4 + STACK_T_SIZE + 4)
794#define RTSIGFRAME_SIGCONTEXT_OFFSET (SIGFRAME_SIGCONTEXT_OFFSET \
795 + RTSIGFRAME_SIGINFO_SIZE \
796 + UCONTEXT_SIGCONTEXT_OFFSET)
797
798#define SIGCONTEXT_PC (1 * 8)
799#define SIGCONTEXT_REGS (2 * 8)
800#define SIGCONTEXT_FPREGS (34 * 8)
801#define SIGCONTEXT_FPCSR (66 * 8 + 4)
802#define SIGCONTEXT_HI (69 * 8)
803#define SIGCONTEXT_LO (70 * 8)
804#define SIGCONTEXT_CAUSE (71 * 8 + 0)
805#define SIGCONTEXT_BADVADDR (71 * 8 + 4)
806
807#define SIGCONTEXT_REG_SIZE 8
808
809static void
810mips_linux_o32_sigframe_init (const struct tramp_frame *self,
811 struct frame_info *next_frame,
812 struct trad_frame_cache *this_cache,
813 CORE_ADDR func)
814{
815 int ireg, reg_position;
816 CORE_ADDR sigcontext_base = func - SIGFRAME_CODE_OFFSET;
817 const struct mips_regnum *regs = mips_regnum (current_gdbarch);
37c4d197 818 CORE_ADDR regs_base;
5792a79b
DJ
819
820 if (self == &mips_linux_o32_sigframe)
821 sigcontext_base += SIGFRAME_SIGCONTEXT_OFFSET;
822 else
823 sigcontext_base += RTSIGFRAME_SIGCONTEXT_OFFSET;
295093a4
MS
824
825 /* I'm not proud of this hack. Eventually we will have the
826 infrastructure to indicate the size of saved registers on a
827 per-frame basis, but right now we don't; the kernel saves eight
37c4d197
DJ
828 bytes but we only want four. Use regs_base to access any
829 64-bit fields. */
4c6b5505 830 if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
37c4d197
DJ
831 regs_base = sigcontext_base + 4;
832 else
833 regs_base = sigcontext_base;
5792a79b
DJ
834
835#if 0
f57d151a
UW
836 trad_frame_set_reg_addr (this_cache, ORIG_ZERO_REGNUM
837 + gdbarch_num_regs (current_gdbarch),
37c4d197 838 regs_base + SIGCONTEXT_REGS);
5792a79b
DJ
839#endif
840
841 for (ireg = 1; ireg < 32; ireg++)
295093a4 842 trad_frame_set_reg_addr (this_cache,
f57d151a
UW
843 ireg + MIPS_ZERO_REGNUM
844 + gdbarch_num_regs (current_gdbarch),
37c4d197 845 regs_base + SIGCONTEXT_REGS
5792a79b
DJ
846 + ireg * SIGCONTEXT_REG_SIZE);
847
37c4d197
DJ
848 /* The way that floating point registers are saved, unfortunately,
849 depends on the architecture the kernel is built for. For the r3000 and
850 tx39, four bytes of each register are at the beginning of each of the
851 32 eight byte slots. For everything else, the registers are saved
852 using double precision; only the even-numbered slots are initialized,
853 and the high bits are the odd-numbered register. Assume the latter
854 layout, since we can't tell, and it's much more common. Which bits are
855 the "high" bits depends on endianness. */
5792a79b 856 for (ireg = 0; ireg < 32; ireg++)
4c6b5505 857 if ((gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG) != (ireg & 1))
f57d151a
UW
858 trad_frame_set_reg_addr (this_cache,
859 ireg + regs->fp0 +
860 gdbarch_num_regs (current_gdbarch),
37c4d197
DJ
861 sigcontext_base + SIGCONTEXT_FPREGS + 4
862 + (ireg & ~1) * SIGCONTEXT_REG_SIZE);
863 else
f57d151a
UW
864 trad_frame_set_reg_addr (this_cache,
865 ireg + regs->fp0
866 + gdbarch_num_regs (current_gdbarch),
37c4d197
DJ
867 sigcontext_base + SIGCONTEXT_FPREGS
868 + (ireg & ~1) * SIGCONTEXT_REG_SIZE);
5792a79b 869
f57d151a
UW
870 trad_frame_set_reg_addr (this_cache,
871 regs->pc + gdbarch_num_regs (current_gdbarch),
37c4d197 872 regs_base + SIGCONTEXT_PC);
5792a79b 873
295093a4 874 trad_frame_set_reg_addr (this_cache,
f57d151a
UW
875 regs->fp_control_status
876 + gdbarch_num_regs (current_gdbarch),
5792a79b 877 sigcontext_base + SIGCONTEXT_FPCSR);
f57d151a
UW
878 trad_frame_set_reg_addr (this_cache,
879 regs->hi + gdbarch_num_regs (current_gdbarch),
37c4d197 880 regs_base + SIGCONTEXT_HI);
f57d151a
UW
881 trad_frame_set_reg_addr (this_cache,
882 regs->lo + gdbarch_num_regs (current_gdbarch),
37c4d197 883 regs_base + SIGCONTEXT_LO);
f57d151a
UW
884 trad_frame_set_reg_addr (this_cache,
885 regs->cause + gdbarch_num_regs (current_gdbarch),
5792a79b 886 sigcontext_base + SIGCONTEXT_CAUSE);
f57d151a
UW
887 trad_frame_set_reg_addr (this_cache,
888 regs->badvaddr + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
889 sigcontext_base + SIGCONTEXT_BADVADDR);
890
891 /* Choice of the bottom of the sigframe is somewhat arbitrary. */
892 trad_frame_set_id (this_cache,
295093a4
MS
893 frame_id_build (func - SIGFRAME_CODE_OFFSET,
894 func));
5792a79b
DJ
895}
896
897/* *INDENT-OFF* */
898/* For N32/N64 things look different. There is no non-rt signal frame.
899
900 struct rt_sigframe_n32 {
901 u32 rs_ass[4]; [ argument save space for o32 ]
902 u32 rs_code[2]; [ signal trampoline ]
903 struct siginfo rs_info;
904 struct ucontextn32 rs_uc;
905 };
906
907 struct ucontextn32 {
908 u32 uc_flags;
909 s32 uc_link;
910 stack32_t uc_stack;
911 struct sigcontext uc_mcontext;
912 sigset_t uc_sigmask; [ mask last for extensibility ]
913 };
295093a4 914
5792a79b
DJ
915 struct rt_sigframe_n32 {
916 u32 rs_ass[4]; [ argument save space for o32 ]
917 u32 rs_code[2]; [ signal trampoline ]
918 struct siginfo rs_info;
919 struct ucontext rs_uc;
920 };
921
922 struct ucontext {
923 unsigned long uc_flags;
924 struct ucontext *uc_link;
925 stack_t uc_stack;
926 struct sigcontext uc_mcontext;
927 sigset_t uc_sigmask; [ mask last for extensibility ]
928 };
929
930 And the sigcontext is different (this is for both n32 and n64):
931
932 struct sigcontext {
933 unsigned long long sc_regs[32];
934 unsigned long long sc_fpregs[32];
935 unsigned long long sc_mdhi;
936 unsigned long long sc_mdlo;
937 unsigned long long sc_pc;
938 unsigned int sc_status;
939 unsigned int sc_fpc_csr;
940 unsigned int sc_fpc_eir;
941 unsigned int sc_used_math;
942 unsigned int sc_cause;
943 unsigned int sc_badvaddr;
944 }; */
945/* *INDENT-ON* */
946
947#define N32_STACK_T_SIZE STACK_T_SIZE
948#define N64_STACK_T_SIZE (2 * 8 + 4)
949#define N32_UCONTEXT_SIGCONTEXT_OFFSET (2 * 4 + N32_STACK_T_SIZE + 4)
950#define N64_UCONTEXT_SIGCONTEXT_OFFSET (2 * 8 + N64_STACK_T_SIZE + 4)
951#define N32_SIGFRAME_SIGCONTEXT_OFFSET (SIGFRAME_SIGCONTEXT_OFFSET \
952 + RTSIGFRAME_SIGINFO_SIZE \
953 + N32_UCONTEXT_SIGCONTEXT_OFFSET)
954#define N64_SIGFRAME_SIGCONTEXT_OFFSET (SIGFRAME_SIGCONTEXT_OFFSET \
955 + RTSIGFRAME_SIGINFO_SIZE \
956 + N64_UCONTEXT_SIGCONTEXT_OFFSET)
957
958#define N64_SIGCONTEXT_REGS (0 * 8)
959#define N64_SIGCONTEXT_FPREGS (32 * 8)
960#define N64_SIGCONTEXT_HI (64 * 8)
961#define N64_SIGCONTEXT_LO (65 * 8)
962#define N64_SIGCONTEXT_PC (66 * 8)
963#define N64_SIGCONTEXT_FPCSR (67 * 8 + 1 * 4)
964#define N64_SIGCONTEXT_FIR (67 * 8 + 2 * 4)
965#define N64_SIGCONTEXT_CAUSE (67 * 8 + 4 * 4)
966#define N64_SIGCONTEXT_BADVADDR (67 * 8 + 5 * 4)
967
968#define N64_SIGCONTEXT_REG_SIZE 8
295093a4 969
5792a79b
DJ
970static void
971mips_linux_n32n64_sigframe_init (const struct tramp_frame *self,
972 struct frame_info *next_frame,
973 struct trad_frame_cache *this_cache,
974 CORE_ADDR func)
975{
976 int ireg, reg_position;
977 CORE_ADDR sigcontext_base = func - SIGFRAME_CODE_OFFSET;
978 const struct mips_regnum *regs = mips_regnum (current_gdbarch);
979
980 if (self == &mips_linux_n32_rt_sigframe)
981 sigcontext_base += N32_SIGFRAME_SIGCONTEXT_OFFSET;
982 else
983 sigcontext_base += N64_SIGFRAME_SIGCONTEXT_OFFSET;
295093a4 984
5792a79b 985#if 0
f57d151a
UW
986 trad_frame_set_reg_addr (this_cache,
987 ORIG_ZERO_REGNUM
988 + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
989 sigcontext_base + N64_SIGCONTEXT_REGS);
990#endif
991
992 for (ireg = 1; ireg < 32; ireg++)
295093a4 993 trad_frame_set_reg_addr (this_cache,
f57d151a
UW
994 ireg + MIPS_ZERO_REGNUM
995 + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
996 sigcontext_base + N64_SIGCONTEXT_REGS
997 + ireg * N64_SIGCONTEXT_REG_SIZE);
998
999 for (ireg = 0; ireg < 32; ireg++)
f57d151a
UW
1000 trad_frame_set_reg_addr (this_cache,
1001 ireg + regs->fp0
1002 + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
1003 sigcontext_base + N64_SIGCONTEXT_FPREGS
1004 + ireg * N64_SIGCONTEXT_REG_SIZE);
1005
f57d151a
UW
1006 trad_frame_set_reg_addr (this_cache,
1007 regs->pc + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
1008 sigcontext_base + N64_SIGCONTEXT_PC);
1009
295093a4 1010 trad_frame_set_reg_addr (this_cache,
f57d151a
UW
1011 regs->fp_control_status
1012 + gdbarch_num_regs (current_gdbarch),
5792a79b 1013 sigcontext_base + N64_SIGCONTEXT_FPCSR);
f57d151a
UW
1014 trad_frame_set_reg_addr (this_cache,
1015 regs->hi + gdbarch_num_regs (current_gdbarch),
5792a79b 1016 sigcontext_base + N64_SIGCONTEXT_HI);
f57d151a
UW
1017 trad_frame_set_reg_addr (this_cache,
1018 regs->lo + gdbarch_num_regs (current_gdbarch),
5792a79b 1019 sigcontext_base + N64_SIGCONTEXT_LO);
f57d151a
UW
1020 trad_frame_set_reg_addr (this_cache,
1021 regs->cause + gdbarch_num_regs (current_gdbarch),
5792a79b 1022 sigcontext_base + N64_SIGCONTEXT_CAUSE);
f57d151a
UW
1023 trad_frame_set_reg_addr (this_cache,
1024 regs->badvaddr + gdbarch_num_regs (current_gdbarch),
5792a79b
DJ
1025 sigcontext_base + N64_SIGCONTEXT_BADVADDR);
1026
1027 /* Choice of the bottom of the sigframe is somewhat arbitrary. */
1028 trad_frame_set_id (this_cache,
295093a4
MS
1029 frame_id_build (func - SIGFRAME_CODE_OFFSET,
1030 func));
5792a79b
DJ
1031}
1032
9f62d0e2 1033
5792a79b
DJ
1034/* Initialize one of the GNU/Linux OS ABIs. */
1035
19ed69dd 1036static void
295093a4
MS
1037mips_linux_init_abi (struct gdbarch_info info,
1038 struct gdbarch *gdbarch)
19ed69dd 1039{
96f026fc
KB
1040 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1041 enum mips_abi abi = mips_abi (gdbarch);
1042
1043 switch (abi)
1044 {
1045 case MIPS_ABI_O32:
1046 set_gdbarch_get_longjmp_target (gdbarch,
1047 mips_linux_get_longjmp_target);
1048 set_solib_svr4_fetch_link_map_offsets
76a9d10f 1049 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
fb2be677
AC
1050 tramp_frame_prepend_unwinder (gdbarch, &mips_linux_o32_sigframe);
1051 tramp_frame_prepend_unwinder (gdbarch, &mips_linux_o32_rt_sigframe);
96f026fc
KB
1052 break;
1053 case MIPS_ABI_N32:
1054 set_gdbarch_get_longjmp_target (gdbarch,
1055 mips_linux_get_longjmp_target);
1056 set_solib_svr4_fetch_link_map_offsets
76a9d10f 1057 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
d05f6826
DJ
1058 set_gdbarch_long_double_bit (gdbarch, 128);
1059 /* These floatformats should probably be renamed. MIPS uses
1060 the same 128-bit IEEE floating point format that IA-64 uses,
1061 except that the quiet/signalling NaN bit is reversed (GDB
1062 does not distinguish between quiet and signalling NaNs). */
8da61cc4 1063 set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
fb2be677 1064 tramp_frame_prepend_unwinder (gdbarch, &mips_linux_n32_rt_sigframe);
96f026fc
KB
1065 break;
1066 case MIPS_ABI_N64:
1067 set_gdbarch_get_longjmp_target (gdbarch,
1068 mips64_linux_get_longjmp_target);
1069 set_solib_svr4_fetch_link_map_offsets
76a9d10f 1070 (gdbarch, svr4_lp64_fetch_link_map_offsets);
d05f6826
DJ
1071 set_gdbarch_long_double_bit (gdbarch, 128);
1072 /* These floatformats should probably be renamed. MIPS uses
1073 the same 128-bit IEEE floating point format that IA-64 uses,
1074 except that the quiet/signalling NaN bit is reversed (GDB
1075 does not distinguish between quiet and signalling NaNs). */
8da61cc4 1076 set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
fb2be677 1077 tramp_frame_prepend_unwinder (gdbarch, &mips_linux_n64_rt_sigframe);
96f026fc
KB
1078 break;
1079 default:
e2e0b3e5 1080 internal_error (__FILE__, __LINE__, _("can't handle ABI"));
96f026fc
KB
1081 break;
1082 }
6de918a6 1083
982e9687 1084 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
6de918a6
DJ
1085 set_gdbarch_skip_solib_resolver (gdbarch, mips_linux_skip_resolver);
1086
0d0266c6 1087 set_gdbarch_software_single_step (gdbarch, mips_software_single_step);
b2756930
KB
1088
1089 /* Enable TLS support. */
1090 set_gdbarch_fetch_tls_load_module_address (gdbarch,
1091 svr4_fetch_objfile_link_map);
7d522c90
DJ
1092
1093 /* Initialize this lazily, to avoid an initialization order
1094 dependency on solib-svr4.c's _initialize routine. */
1095 if (mips_svr4_so_ops.in_dynsym_resolve_code == NULL)
1096 {
1097 mips_svr4_so_ops = svr4_so_ops;
1098 mips_svr4_so_ops.in_dynsym_resolve_code
1099 = mips_linux_in_dynsym_resolve_code;
1100 }
1101 set_solib_ops (gdbarch, &mips_svr4_so_ops);
19ed69dd
KB
1102}
1103
2aa830e4 1104void
d1bacddc 1105_initialize_mips_linux_tdep (void)
2aa830e4 1106{
96f026fc
KB
1107 const struct bfd_arch_info *arch_info;
1108
96f026fc
KB
1109 for (arch_info = bfd_lookup_arch (bfd_arch_mips, 0);
1110 arch_info != NULL;
1111 arch_info = arch_info->next)
1112 {
295093a4
MS
1113 gdbarch_register_osabi (bfd_arch_mips, arch_info->mach,
1114 GDB_OSABI_LINUX,
96f026fc
KB
1115 mips_linux_init_abi);
1116 }
1117
00e32a35 1118 deprecated_add_core_fns (&regset_core_fns);
2aa830e4 1119}
This page took 0.545354 seconds and 4 git commands to generate.