2009-10-19 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / mips-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
bf64bfd6 2
6aba47ca 3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
0fb0cc75 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
47a35522 5 Free Software Foundation, Inc.
bf64bfd6 6
c906108c
SS
7 Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
8 and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
9
c5aa993b 10 This file is part of GDB.
c906108c 11
c5aa993b
JM
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
a9762ec7 14 the Free Software Foundation; either version 3 of the License, or
c5aa993b 15 (at your option) any later version.
c906108c 16
c5aa993b
JM
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.
c906108c 21
c5aa993b 22 You should have received a copy of the GNU General Public License
a9762ec7 23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
24
25#include "defs.h"
26#include "gdb_string.h"
5e2e9765 27#include "gdb_assert.h"
c906108c
SS
28#include "frame.h"
29#include "inferior.h"
30#include "symtab.h"
31#include "value.h"
32#include "gdbcmd.h"
33#include "language.h"
34#include "gdbcore.h"
35#include "symfile.h"
36#include "objfiles.h"
37#include "gdbtypes.h"
38#include "target.h"
28d069e6 39#include "arch-utils.h"
4e052eda 40#include "regcache.h"
70f80edf 41#include "osabi.h"
d1973055 42#include "mips-tdep.h"
fe898f56 43#include "block.h"
a4b8ebc8 44#include "reggroups.h"
c906108c 45#include "opcode/mips.h"
c2d11a7d
JM
46#include "elf/mips.h"
47#include "elf-bfd.h"
2475bac3 48#include "symcat.h"
a4b8ebc8 49#include "sim-regno.h"
a89aa300 50#include "dis-asm.h"
edfae063
AC
51#include "frame-unwind.h"
52#include "frame-base.h"
53#include "trad-frame.h"
7d9b040b 54#include "infcall.h"
fed7ba43 55#include "floatformat.h"
29709017
DJ
56#include "remote.h"
57#include "target-descriptions.h"
2bd0c3d7 58#include "dwarf2-frame.h"
f8b73d13 59#include "user-regs.h"
79a45b7d 60#include "valprint.h"
c906108c 61
8d5f9dcb
DJ
62static const struct objfile_data *mips_pdr_data;
63
5bbcb741 64static struct type *mips_register_type (struct gdbarch *gdbarch, int regnum);
e0f7ec59 65
24e05951 66/* A useful bit in the CP0 status register (MIPS_PS_REGNUM). */
dd824b04
DJ
67/* This bit is set if we are emulating 32-bit FPRs on a 64-bit chip. */
68#define ST0_FR (1 << 26)
69
b0069a17
AC
70/* The sizes of floating point registers. */
71
72enum
73{
74 MIPS_FPU_SINGLE_REGSIZE = 4,
75 MIPS_FPU_DOUBLE_REGSIZE = 8
76};
77
1a69e1e4
DJ
78enum
79{
80 MIPS32_REGSIZE = 4,
81 MIPS64_REGSIZE = 8
82};
0dadbba0 83
2e4ebe70
DJ
84static const char *mips_abi_string;
85
86static const char *mips_abi_strings[] = {
87 "auto",
88 "n32",
89 "o32",
28d169de 90 "n64",
2e4ebe70
DJ
91 "o64",
92 "eabi32",
93 "eabi64",
94 NULL
95};
96
f8b73d13
DJ
97/* The standard register names, and all the valid aliases for them. */
98struct register_alias
99{
100 const char *name;
101 int regnum;
102};
103
104/* Aliases for o32 and most other ABIs. */
105const struct register_alias mips_o32_aliases[] = {
106 { "ta0", 12 },
107 { "ta1", 13 },
108 { "ta2", 14 },
109 { "ta3", 15 }
110};
111
112/* Aliases for n32 and n64. */
113const struct register_alias mips_n32_n64_aliases[] = {
114 { "ta0", 8 },
115 { "ta1", 9 },
116 { "ta2", 10 },
117 { "ta3", 11 }
118};
119
120/* Aliases for ABI-independent registers. */
121const struct register_alias mips_register_aliases[] = {
122 /* The architecture manuals specify these ABI-independent names for
123 the GPRs. */
124#define R(n) { "r" #n, n }
125 R(0), R(1), R(2), R(3), R(4), R(5), R(6), R(7),
126 R(8), R(9), R(10), R(11), R(12), R(13), R(14), R(15),
127 R(16), R(17), R(18), R(19), R(20), R(21), R(22), R(23),
128 R(24), R(25), R(26), R(27), R(28), R(29), R(30), R(31),
129#undef R
130
131 /* k0 and k1 are sometimes called these instead (for "kernel
132 temp"). */
133 { "kt0", 26 },
134 { "kt1", 27 },
135
136 /* This is the traditional GDB name for the CP0 status register. */
137 { "sr", MIPS_PS_REGNUM },
138
139 /* This is the traditional GDB name for the CP0 BadVAddr register. */
140 { "bad", MIPS_EMBED_BADVADDR_REGNUM },
141
142 /* This is the traditional GDB name for the FCSR. */
143 { "fsr", MIPS_EMBED_FP0_REGNUM + 32 }
144};
145
865093a3
AR
146const struct register_alias mips_numeric_register_aliases[] = {
147#define R(n) { #n, n }
148 R(0), R(1), R(2), R(3), R(4), R(5), R(6), R(7),
149 R(8), R(9), R(10), R(11), R(12), R(13), R(14), R(15),
150 R(16), R(17), R(18), R(19), R(20), R(21), R(22), R(23),
151 R(24), R(25), R(26), R(27), R(28), R(29), R(30), R(31),
152#undef R
153};
154
c906108c
SS
155#ifndef MIPS_DEFAULT_FPU_TYPE
156#define MIPS_DEFAULT_FPU_TYPE MIPS_FPU_DOUBLE
157#endif
158static int mips_fpu_type_auto = 1;
159static enum mips_fpu_type mips_fpu_type = MIPS_DEFAULT_FPU_TYPE;
7a292a7a 160
9ace0497 161static int mips_debug = 0;
7a292a7a 162
29709017
DJ
163/* Properties (for struct target_desc) describing the g/G packet
164 layout. */
165#define PROPERTY_GP32 "internal: transfers-32bit-registers"
166#define PROPERTY_GP64 "internal: transfers-64bit-registers"
167
4eb0ad19
DJ
168struct target_desc *mips_tdesc_gp32;
169struct target_desc *mips_tdesc_gp64;
170
56cea623
AC
171const struct mips_regnum *
172mips_regnum (struct gdbarch *gdbarch)
173{
174 return gdbarch_tdep (gdbarch)->regnum;
175}
176
177static int
178mips_fpa0_regnum (struct gdbarch *gdbarch)
179{
180 return mips_regnum (gdbarch)->fp0 + 12;
181}
182
74ed0bb4
MD
183#define MIPS_EABI(gdbarch) (gdbarch_tdep (gdbarch)->mips_abi \
184 == MIPS_ABI_EABI32 \
185 || gdbarch_tdep (gdbarch)->mips_abi == MIPS_ABI_EABI64)
c2d11a7d 186
74ed0bb4 187#define MIPS_LAST_FP_ARG_REGNUM(gdbarch) (gdbarch_tdep (gdbarch)->mips_last_fp_arg_regnum)
c2d11a7d 188
74ed0bb4 189#define MIPS_LAST_ARG_REGNUM(gdbarch) (gdbarch_tdep (gdbarch)->mips_last_arg_regnum)
c2d11a7d 190
74ed0bb4 191#define MIPS_FPU_TYPE(gdbarch) (gdbarch_tdep (gdbarch)->mips_fpu_type)
c2d11a7d 192
95404a3e
AC
193/* MIPS16 function addresses are odd (bit 0 is set). Here are some
194 functions to test, set, or clear bit 0 of addresses. */
195
196static CORE_ADDR
197is_mips16_addr (CORE_ADDR addr)
198{
199 return ((addr) & 1);
200}
201
95404a3e
AC
202static CORE_ADDR
203unmake_mips16_addr (CORE_ADDR addr)
204{
5b652102 205 return ((addr) & ~(CORE_ADDR) 1);
95404a3e
AC
206}
207
d1973055
KB
208/* Return the MIPS ABI associated with GDBARCH. */
209enum mips_abi
210mips_abi (struct gdbarch *gdbarch)
211{
212 return gdbarch_tdep (gdbarch)->mips_abi;
213}
214
4246e332 215int
1b13c4f6 216mips_isa_regsize (struct gdbarch *gdbarch)
4246e332 217{
29709017
DJ
218 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
219
220 /* If we know how big the registers are, use that size. */
221 if (tdep->register_size_valid_p)
222 return tdep->register_size;
223
224 /* Fall back to the previous behavior. */
4246e332
AC
225 return (gdbarch_bfd_arch_info (gdbarch)->bits_per_word
226 / gdbarch_bfd_arch_info (gdbarch)->bits_per_byte);
227}
228
480d3dd2
AC
229/* Return the currently configured (or set) saved register size. */
230
e6bc2e8a 231unsigned int
13326b4e 232mips_abi_regsize (struct gdbarch *gdbarch)
d929b26f 233{
1a69e1e4
DJ
234 switch (mips_abi (gdbarch))
235 {
236 case MIPS_ABI_EABI32:
237 case MIPS_ABI_O32:
238 return 4;
239 case MIPS_ABI_N32:
240 case MIPS_ABI_N64:
241 case MIPS_ABI_O64:
242 case MIPS_ABI_EABI64:
243 return 8;
244 case MIPS_ABI_UNKNOWN:
245 case MIPS_ABI_LAST:
246 default:
247 internal_error (__FILE__, __LINE__, _("bad switch"));
248 }
d929b26f
AC
249}
250
71b8ef93 251/* Functions for setting and testing a bit in a minimal symbol that
5a89d8aa 252 marks it as 16-bit function. The MSB of the minimal symbol's
f594e5e9 253 "info" field is used for this purpose.
5a89d8aa 254
95f1da47 255 gdbarch_elf_make_msymbol_special tests whether an ELF symbol is "special",
5a89d8aa
MS
256 i.e. refers to a 16-bit function, and sets a "special" bit in a
257 minimal symbol to mark it as a 16-bit function
258
f594e5e9 259 MSYMBOL_IS_SPECIAL tests the "special" bit in a minimal symbol */
5a89d8aa 260
5a89d8aa 261static void
6d82d43b
AC
262mips_elf_make_msymbol_special (asymbol * sym, struct minimal_symbol *msym)
263{
264 if (((elf_symbol_type *) (sym))->internal_elf_sym.st_other == STO_MIPS16)
265 {
b887350f 266 MSYMBOL_TARGET_FLAG_1 (msym) = 1;
6d82d43b
AC
267 SYMBOL_VALUE_ADDRESS (msym) |= 1;
268 }
5a89d8aa
MS
269}
270
71b8ef93
MS
271static int
272msymbol_is_special (struct minimal_symbol *msym)
273{
b887350f 274 return MSYMBOL_TARGET_FLAG_1 (msym);
71b8ef93
MS
275}
276
88658117
AC
277/* XFER a value from the big/little/left end of the register.
278 Depending on the size of the value it might occupy the entire
279 register or just part of it. Make an allowance for this, aligning
280 things accordingly. */
281
282static void
ba32f989
DJ
283mips_xfer_register (struct gdbarch *gdbarch, struct regcache *regcache,
284 int reg_num, int length,
870cd05e
MK
285 enum bfd_endian endian, gdb_byte *in,
286 const gdb_byte *out, int buf_offset)
88658117 287{
88658117 288 int reg_offset = 0;
72a155b4
UW
289
290 gdb_assert (reg_num >= gdbarch_num_regs (gdbarch));
cb1d2653
AC
291 /* Need to transfer the left or right part of the register, based on
292 the targets byte order. */
88658117
AC
293 switch (endian)
294 {
295 case BFD_ENDIAN_BIG:
72a155b4 296 reg_offset = register_size (gdbarch, reg_num) - length;
88658117
AC
297 break;
298 case BFD_ENDIAN_LITTLE:
299 reg_offset = 0;
300 break;
6d82d43b 301 case BFD_ENDIAN_UNKNOWN: /* Indicates no alignment. */
88658117
AC
302 reg_offset = 0;
303 break;
304 default:
e2e0b3e5 305 internal_error (__FILE__, __LINE__, _("bad switch"));
88658117
AC
306 }
307 if (mips_debug)
cb1d2653
AC
308 fprintf_unfiltered (gdb_stderr,
309 "xfer $%d, reg offset %d, buf offset %d, length %d, ",
310 reg_num, reg_offset, buf_offset, length);
88658117
AC
311 if (mips_debug && out != NULL)
312 {
313 int i;
cb1d2653 314 fprintf_unfiltered (gdb_stdlog, "out ");
88658117 315 for (i = 0; i < length; i++)
cb1d2653 316 fprintf_unfiltered (gdb_stdlog, "%02x", out[buf_offset + i]);
88658117
AC
317 }
318 if (in != NULL)
6d82d43b
AC
319 regcache_cooked_read_part (regcache, reg_num, reg_offset, length,
320 in + buf_offset);
88658117 321 if (out != NULL)
6d82d43b
AC
322 regcache_cooked_write_part (regcache, reg_num, reg_offset, length,
323 out + buf_offset);
88658117
AC
324 if (mips_debug && in != NULL)
325 {
326 int i;
cb1d2653 327 fprintf_unfiltered (gdb_stdlog, "in ");
88658117 328 for (i = 0; i < length; i++)
cb1d2653 329 fprintf_unfiltered (gdb_stdlog, "%02x", in[buf_offset + i]);
88658117
AC
330 }
331 if (mips_debug)
332 fprintf_unfiltered (gdb_stdlog, "\n");
333}
334
dd824b04
DJ
335/* Determine if a MIPS3 or later cpu is operating in MIPS{1,2} FPU
336 compatiblity mode. A return value of 1 means that we have
337 physical 64-bit registers, but should treat them as 32-bit registers. */
338
339static int
9c9acae0 340mips2_fp_compat (struct frame_info *frame)
dd824b04 341{
72a155b4 342 struct gdbarch *gdbarch = get_frame_arch (frame);
dd824b04
DJ
343 /* MIPS1 and MIPS2 have only 32 bit FPRs, and the FR bit is not
344 meaningful. */
72a155b4 345 if (register_size (gdbarch, mips_regnum (gdbarch)->fp0) == 4)
dd824b04
DJ
346 return 0;
347
348#if 0
349 /* FIXME drow 2002-03-10: This is disabled until we can do it consistently,
350 in all the places we deal with FP registers. PR gdb/413. */
351 /* Otherwise check the FR bit in the status register - it controls
352 the FP compatiblity mode. If it is clear we are in compatibility
353 mode. */
9c9acae0 354 if ((get_frame_register_unsigned (frame, MIPS_PS_REGNUM) & ST0_FR) == 0)
dd824b04
DJ
355 return 1;
356#endif
361d1df0 357
dd824b04
DJ
358 return 0;
359}
360
7a292a7a 361#define VM_MIN_ADDRESS (CORE_ADDR)0x400000
c906108c 362
74ed0bb4 363static CORE_ADDR heuristic_proc_start (struct gdbarch *, CORE_ADDR);
c906108c 364
a14ed312 365static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element *);
c906108c 366
acdb74a0
AC
367/* The list of available "set mips " and "show mips " commands */
368
369static struct cmd_list_element *setmipscmdlist = NULL;
370static struct cmd_list_element *showmipscmdlist = NULL;
371
5e2e9765
KB
372/* Integer registers 0 thru 31 are handled explicitly by
373 mips_register_name(). Processor specific registers 32 and above
8a9fc081 374 are listed in the following tables. */
691c0433 375
6d82d43b
AC
376enum
377{ NUM_MIPS_PROCESSOR_REGS = (90 - 32) };
691c0433
AC
378
379/* Generic MIPS. */
380
381static const char *mips_generic_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
6d82d43b
AC
382 "sr", "lo", "hi", "bad", "cause", "pc",
383 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
384 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
385 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
386 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
387 "fsr", "fir", "" /*"fp" */ , "",
388 "", "", "", "", "", "", "", "",
389 "", "", "", "", "", "", "", "",
691c0433
AC
390};
391
392/* Names of IDT R3041 registers. */
393
394static const char *mips_r3041_reg_names[] = {
6d82d43b
AC
395 "sr", "lo", "hi", "bad", "cause", "pc",
396 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
397 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
398 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
399 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
400 "fsr", "fir", "", /*"fp" */ "",
401 "", "", "bus", "ccfg", "", "", "", "",
402 "", "", "port", "cmp", "", "", "epc", "prid",
691c0433
AC
403};
404
405/* Names of tx39 registers. */
406
407static const char *mips_tx39_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
6d82d43b
AC
408 "sr", "lo", "hi", "bad", "cause", "pc",
409 "", "", "", "", "", "", "", "",
410 "", "", "", "", "", "", "", "",
411 "", "", "", "", "", "", "", "",
412 "", "", "", "", "", "", "", "",
413 "", "", "", "",
414 "", "", "", "", "", "", "", "",
415 "", "", "config", "cache", "debug", "depc", "epc", ""
691c0433
AC
416};
417
418/* Names of IRIX registers. */
419static const char *mips_irix_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
6d82d43b
AC
420 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
421 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
422 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
423 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
424 "pc", "cause", "bad", "hi", "lo", "fsr", "fir"
691c0433
AC
425};
426
cce74817 427
5e2e9765 428/* Return the name of the register corresponding to REGNO. */
5a89d8aa 429static const char *
d93859e2 430mips_register_name (struct gdbarch *gdbarch, int regno)
cce74817 431{
d93859e2 432 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
5e2e9765
KB
433 /* GPR names for all ABIs other than n32/n64. */
434 static char *mips_gpr_names[] = {
6d82d43b
AC
435 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
436 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
437 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
438 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
5e2e9765
KB
439 };
440
441 /* GPR names for n32 and n64 ABIs. */
442 static char *mips_n32_n64_gpr_names[] = {
6d82d43b
AC
443 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
444 "a4", "a5", "a6", "a7", "t0", "t1", "t2", "t3",
445 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
446 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra"
5e2e9765
KB
447 };
448
d93859e2 449 enum mips_abi abi = mips_abi (gdbarch);
5e2e9765 450
f57d151a
UW
451 /* Map [gdbarch_num_regs .. 2*gdbarch_num_regs) onto the raw registers,
452 but then don't make the raw register names visible. */
d93859e2
UW
453 int rawnum = regno % gdbarch_num_regs (gdbarch);
454 if (regno < gdbarch_num_regs (gdbarch))
a4b8ebc8
AC
455 return "";
456
5e2e9765
KB
457 /* The MIPS integer registers are always mapped from 0 to 31. The
458 names of the registers (which reflects the conventions regarding
459 register use) vary depending on the ABI. */
a4b8ebc8 460 if (0 <= rawnum && rawnum < 32)
5e2e9765
KB
461 {
462 if (abi == MIPS_ABI_N32 || abi == MIPS_ABI_N64)
a4b8ebc8 463 return mips_n32_n64_gpr_names[rawnum];
5e2e9765 464 else
a4b8ebc8 465 return mips_gpr_names[rawnum];
5e2e9765 466 }
d93859e2
UW
467 else if (tdesc_has_registers (gdbarch_target_desc (gdbarch)))
468 return tdesc_register_name (gdbarch, rawnum);
469 else if (32 <= rawnum && rawnum < gdbarch_num_regs (gdbarch))
691c0433
AC
470 {
471 gdb_assert (rawnum - 32 < NUM_MIPS_PROCESSOR_REGS);
472 return tdep->mips_processor_reg_names[rawnum - 32];
473 }
5e2e9765
KB
474 else
475 internal_error (__FILE__, __LINE__,
e2e0b3e5 476 _("mips_register_name: bad register number %d"), rawnum);
cce74817 477}
5e2e9765 478
a4b8ebc8 479/* Return the groups that a MIPS register can be categorised into. */
c5aa993b 480
a4b8ebc8
AC
481static int
482mips_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
483 struct reggroup *reggroup)
484{
485 int vector_p;
486 int float_p;
487 int raw_p;
72a155b4
UW
488 int rawnum = regnum % gdbarch_num_regs (gdbarch);
489 int pseudo = regnum / gdbarch_num_regs (gdbarch);
a4b8ebc8
AC
490 if (reggroup == all_reggroup)
491 return pseudo;
492 vector_p = TYPE_VECTOR (register_type (gdbarch, regnum));
493 float_p = TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT;
494 /* FIXME: cagney/2003-04-13: Can't yet use gdbarch_num_regs
495 (gdbarch), as not all architectures are multi-arch. */
72a155b4
UW
496 raw_p = rawnum < gdbarch_num_regs (gdbarch);
497 if (gdbarch_register_name (gdbarch, regnum) == NULL
498 || gdbarch_register_name (gdbarch, regnum)[0] == '\0')
a4b8ebc8
AC
499 return 0;
500 if (reggroup == float_reggroup)
501 return float_p && pseudo;
502 if (reggroup == vector_reggroup)
503 return vector_p && pseudo;
504 if (reggroup == general_reggroup)
505 return (!vector_p && !float_p) && pseudo;
506 /* Save the pseudo registers. Need to make certain that any code
507 extracting register values from a saved register cache also uses
508 pseudo registers. */
509 if (reggroup == save_reggroup)
510 return raw_p && pseudo;
511 /* Restore the same pseudo register. */
512 if (reggroup == restore_reggroup)
513 return raw_p && pseudo;
6d82d43b 514 return 0;
a4b8ebc8
AC
515}
516
f8b73d13
DJ
517/* Return the groups that a MIPS register can be categorised into.
518 This version is only used if we have a target description which
519 describes real registers (and their groups). */
520
521static int
522mips_tdesc_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
523 struct reggroup *reggroup)
524{
525 int rawnum = regnum % gdbarch_num_regs (gdbarch);
526 int pseudo = regnum / gdbarch_num_regs (gdbarch);
527 int ret;
528
529 /* Only save, restore, and display the pseudo registers. Need to
530 make certain that any code extracting register values from a
531 saved register cache also uses pseudo registers.
532
533 Note: saving and restoring the pseudo registers is slightly
534 strange; if we have 64 bits, we should save and restore all
535 64 bits. But this is hard and has little benefit. */
536 if (!pseudo)
537 return 0;
538
539 ret = tdesc_register_in_reggroup_p (gdbarch, rawnum, reggroup);
540 if (ret != -1)
541 return ret;
542
543 return mips_register_reggroup_p (gdbarch, regnum, reggroup);
544}
545
a4b8ebc8 546/* Map the symbol table registers which live in the range [1 *
f57d151a 547 gdbarch_num_regs .. 2 * gdbarch_num_regs) back onto the corresponding raw
47ebcfbe 548 registers. Take care of alignment and size problems. */
c5aa993b 549
a4b8ebc8
AC
550static void
551mips_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
47a35522 552 int cookednum, gdb_byte *buf)
a4b8ebc8 553{
72a155b4
UW
554 int rawnum = cookednum % gdbarch_num_regs (gdbarch);
555 gdb_assert (cookednum >= gdbarch_num_regs (gdbarch)
556 && cookednum < 2 * gdbarch_num_regs (gdbarch));
47ebcfbe 557 if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum))
de38af99 558 regcache_raw_read (regcache, rawnum, buf);
6d82d43b
AC
559 else if (register_size (gdbarch, rawnum) >
560 register_size (gdbarch, cookednum))
47ebcfbe
AC
561 {
562 if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p
72a155b4 563 || gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE)
47ebcfbe
AC
564 regcache_raw_read_part (regcache, rawnum, 0, 4, buf);
565 else
566 regcache_raw_read_part (regcache, rawnum, 4, 4, buf);
567 }
568 else
e2e0b3e5 569 internal_error (__FILE__, __LINE__, _("bad register size"));
a4b8ebc8
AC
570}
571
572static void
6d82d43b
AC
573mips_pseudo_register_write (struct gdbarch *gdbarch,
574 struct regcache *regcache, int cookednum,
47a35522 575 const gdb_byte *buf)
a4b8ebc8 576{
72a155b4
UW
577 int rawnum = cookednum % gdbarch_num_regs (gdbarch);
578 gdb_assert (cookednum >= gdbarch_num_regs (gdbarch)
579 && cookednum < 2 * gdbarch_num_regs (gdbarch));
47ebcfbe 580 if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum))
de38af99 581 regcache_raw_write (regcache, rawnum, buf);
6d82d43b
AC
582 else if (register_size (gdbarch, rawnum) >
583 register_size (gdbarch, cookednum))
47ebcfbe
AC
584 {
585 if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p
72a155b4 586 || gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE)
47ebcfbe
AC
587 regcache_raw_write_part (regcache, rawnum, 0, 4, buf);
588 else
589 regcache_raw_write_part (regcache, rawnum, 4, 4, buf);
590 }
591 else
e2e0b3e5 592 internal_error (__FILE__, __LINE__, _("bad register size"));
a4b8ebc8 593}
c5aa993b 594
c906108c 595/* Table to translate MIPS16 register field to actual register number. */
6d82d43b 596static int mips16_to_32_reg[8] = { 16, 17, 2, 3, 4, 5, 6, 7 };
c906108c
SS
597
598/* Heuristic_proc_start may hunt through the text section for a long
599 time across a 2400 baud serial line. Allows the user to limit this
600 search. */
601
602static unsigned int heuristic_fence_post = 0;
603
46cd78fb 604/* Number of bytes of storage in the actual machine representation for
719ec221
AC
605 register N. NOTE: This defines the pseudo register type so need to
606 rebuild the architecture vector. */
43e526b9
JM
607
608static int mips64_transfers_32bit_regs_p = 0;
609
719ec221
AC
610static void
611set_mips64_transfers_32bit_regs (char *args, int from_tty,
612 struct cmd_list_element *c)
43e526b9 613{
719ec221
AC
614 struct gdbarch_info info;
615 gdbarch_info_init (&info);
616 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
617 instead of relying on globals. Doing that would let generic code
618 handle the search for this specific architecture. */
619 if (!gdbarch_update_p (info))
a4b8ebc8 620 {
719ec221 621 mips64_transfers_32bit_regs_p = 0;
8a3fe4f8 622 error (_("32-bit compatibility mode not supported"));
a4b8ebc8 623 }
a4b8ebc8
AC
624}
625
47ebcfbe 626/* Convert to/from a register and the corresponding memory value. */
43e526b9 627
ff2e87ac 628static int
0abe36f5 629mips_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
ff2e87ac 630{
0abe36f5
MD
631 return (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
632 && register_size (gdbarch, regnum) == 4
633 && (regnum % gdbarch_num_regs (gdbarch))
634 >= mips_regnum (gdbarch)->fp0
635 && (regnum % gdbarch_num_regs (gdbarch))
636 < mips_regnum (gdbarch)->fp0 + 32
6d82d43b 637 && TYPE_CODE (type) == TYPE_CODE_FLT && TYPE_LENGTH (type) == 8);
ff2e87ac
AC
638}
639
42c466d7 640static void
ff2e87ac 641mips_register_to_value (struct frame_info *frame, int regnum,
47a35522 642 struct type *type, gdb_byte *to)
102182a9 643{
47a35522
MK
644 get_frame_register (frame, regnum + 0, to + 4);
645 get_frame_register (frame, regnum + 1, to + 0);
102182a9
MS
646}
647
42c466d7 648static void
ff2e87ac 649mips_value_to_register (struct frame_info *frame, int regnum,
47a35522 650 struct type *type, const gdb_byte *from)
102182a9 651{
47a35522
MK
652 put_frame_register (frame, regnum + 0, from + 4);
653 put_frame_register (frame, regnum + 1, from + 0);
102182a9
MS
654}
655
a4b8ebc8
AC
656/* Return the GDB type object for the "standard" data type of data in
657 register REG. */
78fde5f8
KB
658
659static struct type *
a4b8ebc8
AC
660mips_register_type (struct gdbarch *gdbarch, int regnum)
661{
72a155b4
UW
662 gdb_assert (regnum >= 0 && regnum < 2 * gdbarch_num_regs (gdbarch));
663 if ((regnum % gdbarch_num_regs (gdbarch)) >= mips_regnum (gdbarch)->fp0
664 && (regnum % gdbarch_num_regs (gdbarch))
665 < mips_regnum (gdbarch)->fp0 + 32)
a6425924 666 {
5ef80fb0 667 /* The floating-point registers raw, or cooked, always match
1b13c4f6 668 mips_isa_regsize(), and also map 1:1, byte for byte. */
8da61cc4 669 if (mips_isa_regsize (gdbarch) == 4)
27067745 670 return builtin_type (gdbarch)->builtin_float;
8da61cc4 671 else
27067745 672 return builtin_type (gdbarch)->builtin_double;
a6425924 673 }
72a155b4 674 else if (regnum < gdbarch_num_regs (gdbarch))
d5ac5a39
AC
675 {
676 /* The raw or ISA registers. These are all sized according to
677 the ISA regsize. */
678 if (mips_isa_regsize (gdbarch) == 4)
df4df182 679 return builtin_type (gdbarch)->builtin_int32;
d5ac5a39 680 else
df4df182 681 return builtin_type (gdbarch)->builtin_int64;
d5ac5a39 682 }
78fde5f8 683 else
d5ac5a39
AC
684 {
685 /* The cooked or ABI registers. These are sized according to
686 the ABI (with a few complications). */
72a155b4
UW
687 if (regnum >= (gdbarch_num_regs (gdbarch)
688 + mips_regnum (gdbarch)->fp_control_status)
689 && regnum <= gdbarch_num_regs (gdbarch) + MIPS_LAST_EMBED_REGNUM)
d5ac5a39
AC
690 /* The pseudo/cooked view of the embedded registers is always
691 32-bit. The raw view is handled below. */
df4df182 692 return builtin_type (gdbarch)->builtin_int32;
d5ac5a39
AC
693 else if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p)
694 /* The target, while possibly using a 64-bit register buffer,
695 is only transfering 32-bits of each integer register.
696 Reflect this in the cooked/pseudo (ABI) register value. */
df4df182 697 return builtin_type (gdbarch)->builtin_int32;
d5ac5a39
AC
698 else if (mips_abi_regsize (gdbarch) == 4)
699 /* The ABI is restricted to 32-bit registers (the ISA could be
700 32- or 64-bit). */
df4df182 701 return builtin_type (gdbarch)->builtin_int32;
d5ac5a39
AC
702 else
703 /* 64-bit ABI. */
df4df182 704 return builtin_type (gdbarch)->builtin_int64;
d5ac5a39 705 }
78fde5f8
KB
706}
707
f8b73d13
DJ
708/* Return the GDB type for the pseudo register REGNUM, which is the
709 ABI-level view. This function is only called if there is a target
710 description which includes registers, so we know precisely the
711 types of hardware registers. */
712
713static struct type *
714mips_pseudo_register_type (struct gdbarch *gdbarch, int regnum)
715{
716 const int num_regs = gdbarch_num_regs (gdbarch);
717 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
718 int rawnum = regnum % num_regs;
719 struct type *rawtype;
720
721 gdb_assert (regnum >= num_regs && regnum < 2 * num_regs);
722
723 /* Absent registers are still absent. */
724 rawtype = gdbarch_register_type (gdbarch, rawnum);
725 if (TYPE_LENGTH (rawtype) == 0)
726 return rawtype;
727
728 if (rawnum >= MIPS_EMBED_FP0_REGNUM && rawnum < MIPS_EMBED_FP0_REGNUM + 32)
729 /* Present the floating point registers however the hardware did;
730 do not try to convert between FPU layouts. */
731 return rawtype;
732
733 if (rawnum >= MIPS_EMBED_FP0_REGNUM + 32 && rawnum <= MIPS_LAST_EMBED_REGNUM)
734 {
735 /* The pseudo/cooked view of embedded registers is always
736 32-bit, even if the target transfers 64-bit values for them.
737 New targets relying on XML descriptions should only transfer
738 the necessary 32 bits, but older versions of GDB expected 64,
739 so allow the target to provide 64 bits without interfering
740 with the displayed type. */
df4df182 741 return builtin_type (gdbarch)->builtin_int32;
f8b73d13
DJ
742 }
743
744 /* Use pointer types for registers if we can. For n32 we can not,
745 since we do not have a 64-bit pointer type. */
0dfff4cb
UW
746 if (mips_abi_regsize (gdbarch)
747 == TYPE_LENGTH (builtin_type (gdbarch)->builtin_data_ptr))
f8b73d13
DJ
748 {
749 if (rawnum == MIPS_SP_REGNUM || rawnum == MIPS_EMBED_BADVADDR_REGNUM)
0dfff4cb 750 return builtin_type (gdbarch)->builtin_data_ptr;
f8b73d13 751 else if (rawnum == MIPS_EMBED_PC_REGNUM)
0dfff4cb 752 return builtin_type (gdbarch)->builtin_func_ptr;
f8b73d13
DJ
753 }
754
755 if (mips_abi_regsize (gdbarch) == 4 && TYPE_LENGTH (rawtype) == 8
756 && rawnum >= MIPS_ZERO_REGNUM && rawnum <= MIPS_EMBED_PC_REGNUM)
df4df182 757 return builtin_type (gdbarch)->builtin_int32;
f8b73d13
DJ
758
759 /* For all other registers, pass through the hardware type. */
760 return rawtype;
761}
bcb0cc15 762
c906108c 763/* Should the upper word of 64-bit addresses be zeroed? */
7f19b9a2 764enum auto_boolean mask_address_var = AUTO_BOOLEAN_AUTO;
4014092b
AC
765
766static int
480d3dd2 767mips_mask_address_p (struct gdbarch_tdep *tdep)
4014092b
AC
768{
769 switch (mask_address_var)
770 {
7f19b9a2 771 case AUTO_BOOLEAN_TRUE:
4014092b 772 return 1;
7f19b9a2 773 case AUTO_BOOLEAN_FALSE:
4014092b
AC
774 return 0;
775 break;
7f19b9a2 776 case AUTO_BOOLEAN_AUTO:
480d3dd2 777 return tdep->default_mask_address_p;
4014092b 778 default:
e2e0b3e5 779 internal_error (__FILE__, __LINE__, _("mips_mask_address_p: bad switch"));
4014092b 780 return -1;
361d1df0 781 }
4014092b
AC
782}
783
784static void
08546159
AC
785show_mask_address (struct ui_file *file, int from_tty,
786 struct cmd_list_element *c, const char *value)
4014092b 787{
1cf3db46 788 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch);
08546159
AC
789
790 deprecated_show_value_hack (file, from_tty, c, value);
4014092b
AC
791 switch (mask_address_var)
792 {
7f19b9a2 793 case AUTO_BOOLEAN_TRUE:
4014092b
AC
794 printf_filtered ("The 32 bit mips address mask is enabled\n");
795 break;
7f19b9a2 796 case AUTO_BOOLEAN_FALSE:
4014092b
AC
797 printf_filtered ("The 32 bit mips address mask is disabled\n");
798 break;
7f19b9a2 799 case AUTO_BOOLEAN_AUTO:
6d82d43b
AC
800 printf_filtered
801 ("The 32 bit address mask is set automatically. Currently %s\n",
802 mips_mask_address_p (tdep) ? "enabled" : "disabled");
4014092b
AC
803 break;
804 default:
e2e0b3e5 805 internal_error (__FILE__, __LINE__, _("show_mask_address: bad switch"));
4014092b 806 break;
361d1df0 807 }
4014092b 808}
c906108c 809
c906108c
SS
810/* Tell if the program counter value in MEMADDR is in a MIPS16 function. */
811
0fe7e7c8
AC
812int
813mips_pc_is_mips16 (CORE_ADDR memaddr)
c906108c
SS
814{
815 struct minimal_symbol *sym;
816
817 /* If bit 0 of the address is set, assume this is a MIPS16 address. */
95404a3e 818 if (is_mips16_addr (memaddr))
c906108c
SS
819 return 1;
820
821 /* A flag indicating that this is a MIPS16 function is stored by elfread.c in
822 the high bit of the info field. Use this to decide if the function is
823 MIPS16 or normal MIPS. */
824 sym = lookup_minimal_symbol_by_pc (memaddr);
825 if (sym)
71b8ef93 826 return msymbol_is_special (sym);
c906108c
SS
827 else
828 return 0;
829}
830
b2fa5097 831/* MIPS believes that the PC has a sign extended value. Perhaps the
6c997a34
AC
832 all registers should be sign extended for simplicity? */
833
834static CORE_ADDR
61a1198a 835mips_read_pc (struct regcache *regcache)
6c997a34 836{
61a1198a
UW
837 ULONGEST pc;
838 int regnum = mips_regnum (get_regcache_arch (regcache))->pc;
839 regcache_cooked_read_signed (regcache, regnum, &pc);
840 return pc;
b6cb9035
AC
841}
842
58dfe9ff
AC
843static CORE_ADDR
844mips_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
845{
72a155b4
UW
846 return frame_unwind_register_signed
847 (next_frame, gdbarch_num_regs (gdbarch) + mips_regnum (gdbarch)->pc);
edfae063
AC
848}
849
30244cd8
UW
850static CORE_ADDR
851mips_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
852{
72a155b4
UW
853 return frame_unwind_register_signed
854 (next_frame, gdbarch_num_regs (gdbarch) + MIPS_SP_REGNUM);
30244cd8
UW
855}
856
b8a22b94 857/* Assuming THIS_FRAME is a dummy, return the frame ID of that
edfae063
AC
858 dummy frame. The frame ID's base needs to match the TOS value
859 saved by save_dummy_frame_tos(), and the PC match the dummy frame's
860 breakpoint. */
861
862static struct frame_id
b8a22b94 863mips_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
edfae063 864{
f57d151a 865 return frame_id_build
b8a22b94
DJ
866 (get_frame_register_signed (this_frame,
867 gdbarch_num_regs (gdbarch)
868 + MIPS_SP_REGNUM),
869 get_frame_pc (this_frame));
58dfe9ff
AC
870}
871
b6cb9035 872static void
61a1198a 873mips_write_pc (struct regcache *regcache, CORE_ADDR pc)
b6cb9035 874{
61a1198a
UW
875 int regnum = mips_regnum (get_regcache_arch (regcache))->pc;
876 regcache_cooked_write_unsigned (regcache, regnum, pc);
6c997a34 877}
c906108c 878
c906108c
SS
879/* Fetch and return instruction from the specified location. If the PC
880 is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
881
d37cca3d 882static ULONGEST
e17a4113 883mips_fetch_instruction (struct gdbarch *gdbarch, CORE_ADDR addr)
c906108c 884{
e17a4113 885 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
47a35522 886 gdb_byte buf[MIPS_INSN32_SIZE];
c906108c
SS
887 int instlen;
888 int status;
889
0fe7e7c8 890 if (mips_pc_is_mips16 (addr))
c906108c 891 {
95ac2dcf 892 instlen = MIPS_INSN16_SIZE;
95404a3e 893 addr = unmake_mips16_addr (addr);
c906108c
SS
894 }
895 else
95ac2dcf 896 instlen = MIPS_INSN32_SIZE;
8defab1a 897 status = target_read_memory (addr, buf, instlen);
c906108c
SS
898 if (status)
899 memory_error (status, addr);
e17a4113 900 return extract_unsigned_integer (buf, instlen, byte_order);
c906108c
SS
901}
902
c906108c 903/* These the fields of 32 bit mips instructions */
e135b889
DJ
904#define mips32_op(x) (x >> 26)
905#define itype_op(x) (x >> 26)
906#define itype_rs(x) ((x >> 21) & 0x1f)
c906108c 907#define itype_rt(x) ((x >> 16) & 0x1f)
e135b889 908#define itype_immediate(x) (x & 0xffff)
c906108c 909
e135b889
DJ
910#define jtype_op(x) (x >> 26)
911#define jtype_target(x) (x & 0x03ffffff)
c906108c 912
e135b889
DJ
913#define rtype_op(x) (x >> 26)
914#define rtype_rs(x) ((x >> 21) & 0x1f)
915#define rtype_rt(x) ((x >> 16) & 0x1f)
916#define rtype_rd(x) ((x >> 11) & 0x1f)
917#define rtype_shamt(x) ((x >> 6) & 0x1f)
918#define rtype_funct(x) (x & 0x3f)
c906108c 919
06987e64
MK
920static LONGEST
921mips32_relative_offset (ULONGEST inst)
c5aa993b 922{
06987e64 923 return ((itype_immediate (inst) ^ 0x8000) - 0x8000) << 2;
c906108c
SS
924}
925
f49e4e6d
MS
926/* Determine where to set a single step breakpoint while considering
927 branch prediction. */
5a89d8aa 928static CORE_ADDR
0b1b3e42 929mips32_next_pc (struct frame_info *frame, CORE_ADDR pc)
c5aa993b 930{
e17a4113 931 struct gdbarch *gdbarch = get_frame_arch (frame);
c5aa993b
JM
932 unsigned long inst;
933 int op;
e17a4113 934 inst = mips_fetch_instruction (gdbarch, pc);
e135b889 935 if ((inst & 0xe0000000) != 0) /* Not a special, jump or branch instruction */
c5aa993b 936 {
e135b889 937 if (itype_op (inst) >> 2 == 5)
6d82d43b 938 /* BEQL, BNEL, BLEZL, BGTZL: bits 0101xx */
c5aa993b 939 {
e135b889 940 op = (itype_op (inst) & 0x03);
c906108c
SS
941 switch (op)
942 {
e135b889
DJ
943 case 0: /* BEQL */
944 goto equal_branch;
945 case 1: /* BNEL */
946 goto neq_branch;
947 case 2: /* BLEZL */
948 goto less_branch;
313628cc 949 case 3: /* BGTZL */
e135b889 950 goto greater_branch;
c5aa993b
JM
951 default:
952 pc += 4;
c906108c
SS
953 }
954 }
e135b889 955 else if (itype_op (inst) == 17 && itype_rs (inst) == 8)
6d82d43b 956 /* BC1F, BC1FL, BC1T, BC1TL: 010001 01000 */
e135b889
DJ
957 {
958 int tf = itype_rt (inst) & 0x01;
959 int cnum = itype_rt (inst) >> 2;
6d82d43b 960 int fcrcs =
72a155b4
UW
961 get_frame_register_signed (frame,
962 mips_regnum (get_frame_arch (frame))->
0b1b3e42 963 fp_control_status);
e135b889
DJ
964 int cond = ((fcrcs >> 24) & 0x0e) | ((fcrcs >> 23) & 0x01);
965
966 if (((cond >> cnum) & 0x01) == tf)
967 pc += mips32_relative_offset (inst) + 4;
968 else
969 pc += 8;
970 }
c5aa993b
JM
971 else
972 pc += 4; /* Not a branch, next instruction is easy */
c906108c
SS
973 }
974 else
c5aa993b
JM
975 { /* This gets way messy */
976
c906108c 977 /* Further subdivide into SPECIAL, REGIMM and other */
e135b889 978 switch (op = itype_op (inst) & 0x07) /* extract bits 28,27,26 */
c906108c 979 {
c5aa993b
JM
980 case 0: /* SPECIAL */
981 op = rtype_funct (inst);
982 switch (op)
983 {
984 case 8: /* JR */
985 case 9: /* JALR */
6c997a34 986 /* Set PC to that address */
0b1b3e42 987 pc = get_frame_register_signed (frame, rtype_rs (inst));
c5aa993b 988 break;
e38d4e1a
DJ
989 case 12: /* SYSCALL */
990 {
991 struct gdbarch_tdep *tdep;
992
993 tdep = gdbarch_tdep (get_frame_arch (frame));
994 if (tdep->syscall_next_pc != NULL)
995 pc = tdep->syscall_next_pc (frame);
996 else
997 pc += 4;
998 }
999 break;
c5aa993b
JM
1000 default:
1001 pc += 4;
1002 }
1003
6d82d43b 1004 break; /* end SPECIAL */
c5aa993b 1005 case 1: /* REGIMM */
c906108c 1006 {
e135b889
DJ
1007 op = itype_rt (inst); /* branch condition */
1008 switch (op)
c906108c 1009 {
c5aa993b 1010 case 0: /* BLTZ */
e135b889
DJ
1011 case 2: /* BLTZL */
1012 case 16: /* BLTZAL */
c5aa993b 1013 case 18: /* BLTZALL */
c906108c 1014 less_branch:
0b1b3e42 1015 if (get_frame_register_signed (frame, itype_rs (inst)) < 0)
c5aa993b
JM
1016 pc += mips32_relative_offset (inst) + 4;
1017 else
1018 pc += 8; /* after the delay slot */
1019 break;
e135b889 1020 case 1: /* BGEZ */
c5aa993b
JM
1021 case 3: /* BGEZL */
1022 case 17: /* BGEZAL */
1023 case 19: /* BGEZALL */
0b1b3e42 1024 if (get_frame_register_signed (frame, itype_rs (inst)) >= 0)
c5aa993b
JM
1025 pc += mips32_relative_offset (inst) + 4;
1026 else
1027 pc += 8; /* after the delay slot */
1028 break;
e135b889 1029 /* All of the other instructions in the REGIMM category */
c5aa993b
JM
1030 default:
1031 pc += 4;
c906108c
SS
1032 }
1033 }
6d82d43b 1034 break; /* end REGIMM */
c5aa993b
JM
1035 case 2: /* J */
1036 case 3: /* JAL */
1037 {
1038 unsigned long reg;
1039 reg = jtype_target (inst) << 2;
e135b889 1040 /* Upper four bits get never changed... */
5b652102 1041 pc = reg + ((pc + 4) & ~(CORE_ADDR) 0x0fffffff);
c906108c 1042 }
c5aa993b
JM
1043 break;
1044 /* FIXME case JALX : */
1045 {
1046 unsigned long reg;
1047 reg = jtype_target (inst) << 2;
5b652102 1048 pc = reg + ((pc + 4) & ~(CORE_ADDR) 0x0fffffff) + 1; /* yes, +1 */
c906108c
SS
1049 /* Add 1 to indicate 16 bit mode - Invert ISA mode */
1050 }
c5aa993b 1051 break; /* The new PC will be alternate mode */
e135b889 1052 case 4: /* BEQ, BEQL */
c5aa993b 1053 equal_branch:
0b1b3e42
UW
1054 if (get_frame_register_signed (frame, itype_rs (inst)) ==
1055 get_frame_register_signed (frame, itype_rt (inst)))
c5aa993b
JM
1056 pc += mips32_relative_offset (inst) + 4;
1057 else
1058 pc += 8;
1059 break;
e135b889 1060 case 5: /* BNE, BNEL */
c5aa993b 1061 neq_branch:
0b1b3e42
UW
1062 if (get_frame_register_signed (frame, itype_rs (inst)) !=
1063 get_frame_register_signed (frame, itype_rt (inst)))
c5aa993b
JM
1064 pc += mips32_relative_offset (inst) + 4;
1065 else
1066 pc += 8;
1067 break;
e135b889 1068 case 6: /* BLEZ, BLEZL */
0b1b3e42 1069 if (get_frame_register_signed (frame, itype_rs (inst)) <= 0)
c5aa993b
JM
1070 pc += mips32_relative_offset (inst) + 4;
1071 else
1072 pc += 8;
1073 break;
1074 case 7:
e135b889
DJ
1075 default:
1076 greater_branch: /* BGTZ, BGTZL */
0b1b3e42 1077 if (get_frame_register_signed (frame, itype_rs (inst)) > 0)
c5aa993b
JM
1078 pc += mips32_relative_offset (inst) + 4;
1079 else
1080 pc += 8;
1081 break;
c5aa993b
JM
1082 } /* switch */
1083 } /* else */
1084 return pc;
1085} /* mips32_next_pc */
c906108c
SS
1086
1087/* Decoding the next place to set a breakpoint is irregular for the
e26cc349 1088 mips 16 variant, but fortunately, there fewer instructions. We have to cope
c906108c
SS
1089 ith extensions for 16 bit instructions and a pair of actual 32 bit instructions.
1090 We dont want to set a single step instruction on the extend instruction
1091 either.
c5aa993b 1092 */
c906108c
SS
1093
1094/* Lots of mips16 instruction formats */
1095/* Predicting jumps requires itype,ritype,i8type
1096 and their extensions extItype,extritype,extI8type
c5aa993b 1097 */
c906108c
SS
1098enum mips16_inst_fmts
1099{
c5aa993b
JM
1100 itype, /* 0 immediate 5,10 */
1101 ritype, /* 1 5,3,8 */
1102 rrtype, /* 2 5,3,3,5 */
1103 rritype, /* 3 5,3,3,5 */
1104 rrrtype, /* 4 5,3,3,3,2 */
1105 rriatype, /* 5 5,3,3,1,4 */
1106 shifttype, /* 6 5,3,3,3,2 */
1107 i8type, /* 7 5,3,8 */
1108 i8movtype, /* 8 5,3,3,5 */
1109 i8mov32rtype, /* 9 5,3,5,3 */
1110 i64type, /* 10 5,3,8 */
1111 ri64type, /* 11 5,3,3,5 */
1112 jalxtype, /* 12 5,1,5,5,16 - a 32 bit instruction */
1113 exiItype, /* 13 5,6,5,5,1,1,1,1,1,1,5 */
1114 extRitype, /* 14 5,6,5,5,3,1,1,1,5 */
1115 extRRItype, /* 15 5,5,5,5,3,3,5 */
1116 extRRIAtype, /* 16 5,7,4,5,3,3,1,4 */
1117 EXTshifttype, /* 17 5,5,1,1,1,1,1,1,5,3,3,1,1,1,2 */
1118 extI8type, /* 18 5,6,5,5,3,1,1,1,5 */
1119 extI64type, /* 19 5,6,5,5,3,1,1,1,5 */
1120 extRi64type, /* 20 5,6,5,5,3,3,5 */
1121 extshift64type /* 21 5,5,1,1,1,1,1,1,5,1,1,1,3,5 */
1122};
12f02c2a
AC
1123/* I am heaping all the fields of the formats into one structure and
1124 then, only the fields which are involved in instruction extension */
c906108c 1125struct upk_mips16
6d82d43b
AC
1126{
1127 CORE_ADDR offset;
1128 unsigned int regx; /* Function in i8 type */
1129 unsigned int regy;
1130};
c906108c
SS
1131
1132
12f02c2a 1133/* The EXT-I, EXT-ri nad EXT-I8 instructions all have the same format
c68cf8ad 1134 for the bits which make up the immediate extension. */
c906108c 1135
12f02c2a
AC
1136static CORE_ADDR
1137extended_offset (unsigned int extension)
c906108c 1138{
12f02c2a 1139 CORE_ADDR value;
c5aa993b
JM
1140 value = (extension >> 21) & 0x3f; /* * extract 15:11 */
1141 value = value << 6;
1142 value |= (extension >> 16) & 0x1f; /* extrace 10:5 */
1143 value = value << 5;
1144 value |= extension & 0x01f; /* extract 4:0 */
1145 return value;
c906108c
SS
1146}
1147
1148/* Only call this function if you know that this is an extendable
bcf1ea1e
MR
1149 instruction. It won't malfunction, but why make excess remote memory
1150 references? If the immediate operands get sign extended or something,
1151 do it after the extension is performed. */
c906108c 1152/* FIXME: Every one of these cases needs to worry about sign extension
bcf1ea1e 1153 when the offset is to be used in relative addressing. */
c906108c 1154
12f02c2a 1155static unsigned int
e17a4113 1156fetch_mips_16 (struct gdbarch *gdbarch, CORE_ADDR pc)
c906108c 1157{
e17a4113 1158 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
47a35522 1159 gdb_byte buf[8];
c5aa993b
JM
1160 pc &= 0xfffffffe; /* clear the low order bit */
1161 target_read_memory (pc, buf, 2);
e17a4113 1162 return extract_unsigned_integer (buf, 2, byte_order);
c906108c
SS
1163}
1164
1165static void
e17a4113 1166unpack_mips16 (struct gdbarch *gdbarch, CORE_ADDR pc,
12f02c2a
AC
1167 unsigned int extension,
1168 unsigned int inst,
6d82d43b 1169 enum mips16_inst_fmts insn_format, struct upk_mips16 *upk)
c906108c 1170{
12f02c2a
AC
1171 CORE_ADDR offset;
1172 int regx;
1173 int regy;
1174 switch (insn_format)
c906108c 1175 {
c5aa993b 1176 case itype:
c906108c 1177 {
12f02c2a
AC
1178 CORE_ADDR value;
1179 if (extension)
c5aa993b
JM
1180 {
1181 value = extended_offset (extension);
1182 value = value << 11; /* rom for the original value */
6d82d43b 1183 value |= inst & 0x7ff; /* eleven bits from instruction */
c906108c
SS
1184 }
1185 else
c5aa993b 1186 {
12f02c2a 1187 value = inst & 0x7ff;
c5aa993b 1188 /* FIXME : Consider sign extension */
c906108c 1189 }
12f02c2a
AC
1190 offset = value;
1191 regx = -1;
1192 regy = -1;
c906108c 1193 }
c5aa993b
JM
1194 break;
1195 case ritype:
1196 case i8type:
1197 { /* A register identifier and an offset */
c906108c
SS
1198 /* Most of the fields are the same as I type but the
1199 immediate value is of a different length */
12f02c2a
AC
1200 CORE_ADDR value;
1201 if (extension)
c906108c 1202 {
c5aa993b
JM
1203 value = extended_offset (extension);
1204 value = value << 8; /* from the original instruction */
12f02c2a
AC
1205 value |= inst & 0xff; /* eleven bits from instruction */
1206 regx = (extension >> 8) & 0x07; /* or i8 funct */
c5aa993b
JM
1207 if (value & 0x4000) /* test the sign bit , bit 26 */
1208 {
1209 value &= ~0x3fff; /* remove the sign bit */
1210 value = -value;
c906108c
SS
1211 }
1212 }
c5aa993b
JM
1213 else
1214 {
12f02c2a
AC
1215 value = inst & 0xff; /* 8 bits */
1216 regx = (inst >> 8) & 0x07; /* or i8 funct */
c5aa993b
JM
1217 /* FIXME: Do sign extension , this format needs it */
1218 if (value & 0x80) /* THIS CONFUSES ME */
1219 {
1220 value &= 0xef; /* remove the sign bit */
1221 value = -value;
1222 }
c5aa993b 1223 }
12f02c2a
AC
1224 offset = value;
1225 regy = -1;
c5aa993b 1226 break;
c906108c 1227 }
c5aa993b 1228 case jalxtype:
c906108c 1229 {
c5aa993b 1230 unsigned long value;
12f02c2a
AC
1231 unsigned int nexthalf;
1232 value = ((inst & 0x1f) << 5) | ((inst >> 5) & 0x1f);
c5aa993b 1233 value = value << 16;
e17a4113 1234 nexthalf = mips_fetch_instruction (gdbarch, pc + 2); /* low bit still set */
c5aa993b 1235 value |= nexthalf;
12f02c2a
AC
1236 offset = value;
1237 regx = -1;
1238 regy = -1;
c5aa993b 1239 break;
c906108c
SS
1240 }
1241 default:
e2e0b3e5 1242 internal_error (__FILE__, __LINE__, _("bad switch"));
c906108c 1243 }
12f02c2a
AC
1244 upk->offset = offset;
1245 upk->regx = regx;
1246 upk->regy = regy;
c906108c
SS
1247}
1248
1249
c5aa993b
JM
1250static CORE_ADDR
1251add_offset_16 (CORE_ADDR pc, int offset)
c906108c 1252{
5b652102 1253 return ((offset << 2) | ((pc + 2) & (~(CORE_ADDR) 0x0fffffff)));
c906108c
SS
1254}
1255
12f02c2a 1256static CORE_ADDR
0b1b3e42 1257extended_mips16_next_pc (struct frame_info *frame, CORE_ADDR pc,
6d82d43b 1258 unsigned int extension, unsigned int insn)
c906108c 1259{
e17a4113 1260 struct gdbarch *gdbarch = get_frame_arch (frame);
12f02c2a
AC
1261 int op = (insn >> 11);
1262 switch (op)
c906108c 1263 {
6d82d43b 1264 case 2: /* Branch */
12f02c2a
AC
1265 {
1266 CORE_ADDR offset;
1267 struct upk_mips16 upk;
e17a4113 1268 unpack_mips16 (gdbarch, pc, extension, insn, itype, &upk);
12f02c2a
AC
1269 offset = upk.offset;
1270 if (offset & 0x800)
1271 {
1272 offset &= 0xeff;
1273 offset = -offset;
1274 }
1275 pc += (offset << 1) + 2;
1276 break;
1277 }
6d82d43b 1278 case 3: /* JAL , JALX - Watch out, these are 32 bit instruction */
12f02c2a
AC
1279 {
1280 struct upk_mips16 upk;
e17a4113 1281 unpack_mips16 (gdbarch, pc, extension, insn, jalxtype, &upk);
12f02c2a
AC
1282 pc = add_offset_16 (pc, upk.offset);
1283 if ((insn >> 10) & 0x01) /* Exchange mode */
1284 pc = pc & ~0x01; /* Clear low bit, indicate 32 bit mode */
1285 else
1286 pc |= 0x01;
1287 break;
1288 }
6d82d43b 1289 case 4: /* beqz */
12f02c2a
AC
1290 {
1291 struct upk_mips16 upk;
1292 int reg;
e17a4113 1293 unpack_mips16 (gdbarch, pc, extension, insn, ritype, &upk);
0b1b3e42 1294 reg = get_frame_register_signed (frame, upk.regx);
12f02c2a
AC
1295 if (reg == 0)
1296 pc += (upk.offset << 1) + 2;
1297 else
1298 pc += 2;
1299 break;
1300 }
6d82d43b 1301 case 5: /* bnez */
12f02c2a
AC
1302 {
1303 struct upk_mips16 upk;
1304 int reg;
e17a4113 1305 unpack_mips16 (gdbarch, pc, extension, insn, ritype, &upk);
0b1b3e42 1306 reg = get_frame_register_signed (frame, upk.regx);
12f02c2a
AC
1307 if (reg != 0)
1308 pc += (upk.offset << 1) + 2;
1309 else
1310 pc += 2;
1311 break;
1312 }
6d82d43b 1313 case 12: /* I8 Formats btez btnez */
12f02c2a
AC
1314 {
1315 struct upk_mips16 upk;
1316 int reg;
e17a4113 1317 unpack_mips16 (gdbarch, pc, extension, insn, i8type, &upk);
12f02c2a 1318 /* upk.regx contains the opcode */
0b1b3e42 1319 reg = get_frame_register_signed (frame, 24); /* Test register is 24 */
12f02c2a
AC
1320 if (((upk.regx == 0) && (reg == 0)) /* BTEZ */
1321 || ((upk.regx == 1) && (reg != 0))) /* BTNEZ */
1322 /* pc = add_offset_16(pc,upk.offset) ; */
1323 pc += (upk.offset << 1) + 2;
1324 else
1325 pc += 2;
1326 break;
1327 }
6d82d43b 1328 case 29: /* RR Formats JR, JALR, JALR-RA */
12f02c2a
AC
1329 {
1330 struct upk_mips16 upk;
1331 /* upk.fmt = rrtype; */
1332 op = insn & 0x1f;
1333 if (op == 0)
c5aa993b 1334 {
12f02c2a
AC
1335 int reg;
1336 upk.regx = (insn >> 8) & 0x07;
1337 upk.regy = (insn >> 5) & 0x07;
1338 switch (upk.regy)
c5aa993b 1339 {
12f02c2a
AC
1340 case 0:
1341 reg = upk.regx;
1342 break;
1343 case 1:
1344 reg = 31;
6d82d43b 1345 break; /* Function return instruction */
12f02c2a
AC
1346 case 2:
1347 reg = upk.regx;
1348 break;
1349 default:
1350 reg = 31;
6d82d43b 1351 break; /* BOGUS Guess */
c906108c 1352 }
0b1b3e42 1353 pc = get_frame_register_signed (frame, reg);
c906108c 1354 }
12f02c2a 1355 else
c5aa993b 1356 pc += 2;
12f02c2a
AC
1357 break;
1358 }
1359 case 30:
1360 /* This is an instruction extension. Fetch the real instruction
1361 (which follows the extension) and decode things based on
1362 that. */
1363 {
1364 pc += 2;
e17a4113
UW
1365 pc = extended_mips16_next_pc (frame, pc, insn,
1366 fetch_mips_16 (gdbarch, pc));
12f02c2a
AC
1367 break;
1368 }
1369 default:
1370 {
1371 pc += 2;
1372 break;
1373 }
c906108c 1374 }
c5aa993b 1375 return pc;
12f02c2a 1376}
c906108c 1377
5a89d8aa 1378static CORE_ADDR
0b1b3e42 1379mips16_next_pc (struct frame_info *frame, CORE_ADDR pc)
12f02c2a 1380{
e17a4113
UW
1381 struct gdbarch *gdbarch = get_frame_arch (frame);
1382 unsigned int insn = fetch_mips_16 (gdbarch, pc);
0b1b3e42 1383 return extended_mips16_next_pc (frame, pc, 0, insn);
12f02c2a
AC
1384}
1385
1386/* The mips_next_pc function supports single_step when the remote
7e73cedf 1387 target monitor or stub is not developed enough to do a single_step.
12f02c2a
AC
1388 It works by decoding the current instruction and predicting where a
1389 branch will go. This isnt hard because all the data is available.
ce1f96de 1390 The MIPS32 and MIPS16 variants are quite different. */
ad527d2e 1391static CORE_ADDR
0b1b3e42 1392mips_next_pc (struct frame_info *frame, CORE_ADDR pc)
c906108c 1393{
ce1f96de 1394 if (is_mips16_addr (pc))
0b1b3e42 1395 return mips16_next_pc (frame, pc);
c5aa993b 1396 else
0b1b3e42 1397 return mips32_next_pc (frame, pc);
12f02c2a 1398}
c906108c 1399
edfae063
AC
1400struct mips_frame_cache
1401{
1402 CORE_ADDR base;
1403 struct trad_frame_saved_reg *saved_regs;
1404};
1405
29639122
JB
1406/* Set a register's saved stack address in temp_saved_regs. If an
1407 address has already been set for this register, do nothing; this
1408 way we will only recognize the first save of a given register in a
1409 function prologue.
eec63939 1410
f57d151a
UW
1411 For simplicity, save the address in both [0 .. gdbarch_num_regs) and
1412 [gdbarch_num_regs .. 2*gdbarch_num_regs).
1413 Strictly speaking, only the second range is used as it is only second
1414 range (the ABI instead of ISA registers) that comes into play when finding
1415 saved registers in a frame. */
eec63939
AC
1416
1417static void
74ed0bb4
MD
1418set_reg_offset (struct gdbarch *gdbarch, struct mips_frame_cache *this_cache,
1419 int regnum, CORE_ADDR offset)
eec63939 1420{
29639122
JB
1421 if (this_cache != NULL
1422 && this_cache->saved_regs[regnum].addr == -1)
1423 {
74ed0bb4
MD
1424 this_cache->saved_regs[regnum + 0 * gdbarch_num_regs (gdbarch)].addr
1425 = offset;
1426 this_cache->saved_regs[regnum + 1 * gdbarch_num_regs (gdbarch)].addr
1427 = offset;
29639122 1428 }
eec63939
AC
1429}
1430
eec63939 1431
29639122
JB
1432/* Fetch the immediate value from a MIPS16 instruction.
1433 If the previous instruction was an EXTEND, use it to extend
1434 the upper bits of the immediate value. This is a helper function
1435 for mips16_scan_prologue. */
eec63939 1436
29639122
JB
1437static int
1438mips16_get_imm (unsigned short prev_inst, /* previous instruction */
1439 unsigned short inst, /* current instruction */
1440 int nbits, /* number of bits in imm field */
1441 int scale, /* scale factor to be applied to imm */
1442 int is_signed) /* is the imm field signed? */
eec63939 1443{
29639122 1444 int offset;
eec63939 1445
29639122
JB
1446 if ((prev_inst & 0xf800) == 0xf000) /* prev instruction was EXTEND? */
1447 {
1448 offset = ((prev_inst & 0x1f) << 11) | (prev_inst & 0x7e0);
1449 if (offset & 0x8000) /* check for negative extend */
1450 offset = 0 - (0x10000 - (offset & 0xffff));
1451 return offset | (inst & 0x1f);
1452 }
eec63939 1453 else
29639122
JB
1454 {
1455 int max_imm = 1 << nbits;
1456 int mask = max_imm - 1;
1457 int sign_bit = max_imm >> 1;
45c9dd44 1458
29639122
JB
1459 offset = inst & mask;
1460 if (is_signed && (offset & sign_bit))
1461 offset = 0 - (max_imm - offset);
1462 return offset * scale;
1463 }
1464}
eec63939 1465
65596487 1466
29639122
JB
1467/* Analyze the function prologue from START_PC to LIMIT_PC. Builds
1468 the associated FRAME_CACHE if not null.
1469 Return the address of the first instruction past the prologue. */
eec63939 1470
29639122 1471static CORE_ADDR
e17a4113
UW
1472mips16_scan_prologue (struct gdbarch *gdbarch,
1473 CORE_ADDR start_pc, CORE_ADDR limit_pc,
b8a22b94 1474 struct frame_info *this_frame,
29639122
JB
1475 struct mips_frame_cache *this_cache)
1476{
1477 CORE_ADDR cur_pc;
1478 CORE_ADDR frame_addr = 0; /* Value of $r17, used as frame pointer */
1479 CORE_ADDR sp;
1480 long frame_offset = 0; /* Size of stack frame. */
1481 long frame_adjust = 0; /* Offset of FP from SP. */
1482 int frame_reg = MIPS_SP_REGNUM;
1483 unsigned short prev_inst = 0; /* saved copy of previous instruction */
1484 unsigned inst = 0; /* current instruction */
1485 unsigned entry_inst = 0; /* the entry instruction */
2207132d 1486 unsigned save_inst = 0; /* the save instruction */
29639122 1487 int reg, offset;
a343eb3c 1488
29639122
JB
1489 int extend_bytes = 0;
1490 int prev_extend_bytes;
1491 CORE_ADDR end_prologue_addr = 0;
a343eb3c 1492
29639122 1493 /* Can be called when there's no process, and hence when there's no
b8a22b94
DJ
1494 THIS_FRAME. */
1495 if (this_frame != NULL)
1496 sp = get_frame_register_signed (this_frame,
1497 gdbarch_num_regs (gdbarch)
1498 + MIPS_SP_REGNUM);
29639122
JB
1499 else
1500 sp = 0;
eec63939 1501
29639122
JB
1502 if (limit_pc > start_pc + 200)
1503 limit_pc = start_pc + 200;
eec63939 1504
95ac2dcf 1505 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSN16_SIZE)
29639122
JB
1506 {
1507 /* Save the previous instruction. If it's an EXTEND, we'll extract
1508 the immediate offset extension from it in mips16_get_imm. */
1509 prev_inst = inst;
eec63939 1510
29639122 1511 /* Fetch and decode the instruction. */
e17a4113 1512 inst = (unsigned short) mips_fetch_instruction (gdbarch, cur_pc);
eec63939 1513
29639122
JB
1514 /* Normally we ignore extend instructions. However, if it is
1515 not followed by a valid prologue instruction, then this
1516 instruction is not part of the prologue either. We must
1517 remember in this case to adjust the end_prologue_addr back
1518 over the extend. */
1519 if ((inst & 0xf800) == 0xf000) /* extend */
1520 {
95ac2dcf 1521 extend_bytes = MIPS_INSN16_SIZE;
29639122
JB
1522 continue;
1523 }
eec63939 1524
29639122
JB
1525 prev_extend_bytes = extend_bytes;
1526 extend_bytes = 0;
eec63939 1527
29639122
JB
1528 if ((inst & 0xff00) == 0x6300 /* addiu sp */
1529 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1530 {
1531 offset = mips16_get_imm (prev_inst, inst, 8, 8, 1);
1532 if (offset < 0) /* negative stack adjustment? */
1533 frame_offset -= offset;
1534 else
1535 /* Exit loop if a positive stack adjustment is found, which
1536 usually means that the stack cleanup code in the function
1537 epilogue is reached. */
1538 break;
1539 }
1540 else if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
1541 {
1542 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1543 reg = mips16_to_32_reg[(inst & 0x700) >> 8];
74ed0bb4 1544 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
29639122
JB
1545 }
1546 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
1547 {
1548 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1549 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
74ed0bb4 1550 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
29639122
JB
1551 }
1552 else if ((inst & 0xff00) == 0x6200) /* sw $ra,n($sp) */
1553 {
1554 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
74ed0bb4 1555 set_reg_offset (gdbarch, this_cache, MIPS_RA_REGNUM, sp + offset);
29639122
JB
1556 }
1557 else if ((inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
1558 {
1559 offset = mips16_get_imm (prev_inst, inst, 8, 8, 0);
74ed0bb4 1560 set_reg_offset (gdbarch, this_cache, MIPS_RA_REGNUM, sp + offset);
29639122
JB
1561 }
1562 else if (inst == 0x673d) /* move $s1, $sp */
1563 {
1564 frame_addr = sp;
1565 frame_reg = 17;
1566 }
1567 else if ((inst & 0xff00) == 0x0100) /* addiu $s1,sp,n */
1568 {
1569 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1570 frame_addr = sp + offset;
1571 frame_reg = 17;
1572 frame_adjust = offset;
1573 }
1574 else if ((inst & 0xFF00) == 0xd900) /* sw reg,offset($s1) */
1575 {
1576 offset = mips16_get_imm (prev_inst, inst, 5, 4, 0);
1577 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
74ed0bb4 1578 set_reg_offset (gdbarch, this_cache, reg, frame_addr + offset);
29639122
JB
1579 }
1580 else if ((inst & 0xFF00) == 0x7900) /* sd reg,offset($s1) */
1581 {
1582 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1583 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
74ed0bb4 1584 set_reg_offset (gdbarch, this_cache, reg, frame_addr + offset);
29639122
JB
1585 }
1586 else if ((inst & 0xf81f) == 0xe809
1587 && (inst & 0x700) != 0x700) /* entry */
1588 entry_inst = inst; /* save for later processing */
2207132d
MR
1589 else if ((inst & 0xff80) == 0x6480) /* save */
1590 {
1591 save_inst = inst; /* save for later processing */
1592 if (prev_extend_bytes) /* extend */
1593 save_inst |= prev_inst << 16;
1594 }
29639122 1595 else if ((inst & 0xf800) == 0x1800) /* jal(x) */
95ac2dcf 1596 cur_pc += MIPS_INSN16_SIZE; /* 32-bit instruction */
29639122
JB
1597 else if ((inst & 0xff1c) == 0x6704) /* move reg,$a0-$a3 */
1598 {
1599 /* This instruction is part of the prologue, but we don't
1600 need to do anything special to handle it. */
1601 }
1602 else
1603 {
1604 /* This instruction is not an instruction typically found
1605 in a prologue, so we must have reached the end of the
1606 prologue. */
1607 if (end_prologue_addr == 0)
1608 end_prologue_addr = cur_pc - prev_extend_bytes;
1609 }
1610 }
eec63939 1611
29639122
JB
1612 /* The entry instruction is typically the first instruction in a function,
1613 and it stores registers at offsets relative to the value of the old SP
1614 (before the prologue). But the value of the sp parameter to this
1615 function is the new SP (after the prologue has been executed). So we
1616 can't calculate those offsets until we've seen the entire prologue,
1617 and can calculate what the old SP must have been. */
1618 if (entry_inst != 0)
1619 {
1620 int areg_count = (entry_inst >> 8) & 7;
1621 int sreg_count = (entry_inst >> 6) & 3;
eec63939 1622
29639122
JB
1623 /* The entry instruction always subtracts 32 from the SP. */
1624 frame_offset += 32;
1625
1626 /* Now we can calculate what the SP must have been at the
1627 start of the function prologue. */
1628 sp += frame_offset;
1629
1630 /* Check if a0-a3 were saved in the caller's argument save area. */
1631 for (reg = 4, offset = 0; reg < areg_count + 4; reg++)
1632 {
74ed0bb4 1633 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
72a155b4 1634 offset += mips_abi_regsize (gdbarch);
29639122
JB
1635 }
1636
1637 /* Check if the ra register was pushed on the stack. */
1638 offset = -4;
1639 if (entry_inst & 0x20)
1640 {
74ed0bb4 1641 set_reg_offset (gdbarch, this_cache, MIPS_RA_REGNUM, sp + offset);
72a155b4 1642 offset -= mips_abi_regsize (gdbarch);
29639122
JB
1643 }
1644
1645 /* Check if the s0 and s1 registers were pushed on the stack. */
1646 for (reg = 16; reg < sreg_count + 16; reg++)
1647 {
74ed0bb4 1648 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
72a155b4 1649 offset -= mips_abi_regsize (gdbarch);
29639122
JB
1650 }
1651 }
1652
2207132d
MR
1653 /* The SAVE instruction is similar to ENTRY, except that defined by the
1654 MIPS16e ASE of the MIPS Architecture. Unlike with ENTRY though, the
1655 size of the frame is specified as an immediate field of instruction
1656 and an extended variation exists which lets additional registers and
1657 frame space to be specified. The instruction always treats registers
1658 as 32-bit so its usefulness for 64-bit ABIs is questionable. */
1659 if (save_inst != 0 && mips_abi_regsize (gdbarch) == 4)
1660 {
1661 static int args_table[16] = {
1662 0, 0, 0, 0, 1, 1, 1, 1,
1663 2, 2, 2, 0, 3, 3, 4, -1,
1664 };
1665 static int astatic_table[16] = {
1666 0, 1, 2, 3, 0, 1, 2, 3,
1667 0, 1, 2, 4, 0, 1, 0, -1,
1668 };
1669 int aregs = (save_inst >> 16) & 0xf;
1670 int xsregs = (save_inst >> 24) & 0x7;
1671 int args = args_table[aregs];
1672 int astatic = astatic_table[aregs];
1673 long frame_size;
1674
1675 if (args < 0)
1676 {
1677 warning (_("Invalid number of argument registers encoded in SAVE."));
1678 args = 0;
1679 }
1680 if (astatic < 0)
1681 {
1682 warning (_("Invalid number of static registers encoded in SAVE."));
1683 astatic = 0;
1684 }
1685
1686 /* For standard SAVE the frame size of 0 means 128. */
1687 frame_size = ((save_inst >> 16) & 0xf0) | (save_inst & 0xf);
1688 if (frame_size == 0 && (save_inst >> 16) == 0)
1689 frame_size = 16;
1690 frame_size *= 8;
1691 frame_offset += frame_size;
1692
1693 /* Now we can calculate what the SP must have been at the
1694 start of the function prologue. */
1695 sp += frame_offset;
1696
1697 /* Check if A0-A3 were saved in the caller's argument save area. */
1698 for (reg = MIPS_A0_REGNUM, offset = 0; reg < args + 4; reg++)
1699 {
74ed0bb4 1700 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
2207132d
MR
1701 offset += mips_abi_regsize (gdbarch);
1702 }
1703
1704 offset = -4;
1705
1706 /* Check if the RA register was pushed on the stack. */
1707 if (save_inst & 0x40)
1708 {
74ed0bb4 1709 set_reg_offset (gdbarch, this_cache, MIPS_RA_REGNUM, sp + offset);
2207132d
MR
1710 offset -= mips_abi_regsize (gdbarch);
1711 }
1712
1713 /* Check if the S8 register was pushed on the stack. */
1714 if (xsregs > 6)
1715 {
74ed0bb4 1716 set_reg_offset (gdbarch, this_cache, 30, sp + offset);
2207132d
MR
1717 offset -= mips_abi_regsize (gdbarch);
1718 xsregs--;
1719 }
1720 /* Check if S2-S7 were pushed on the stack. */
1721 for (reg = 18 + xsregs - 1; reg > 18 - 1; reg--)
1722 {
74ed0bb4 1723 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
2207132d
MR
1724 offset -= mips_abi_regsize (gdbarch);
1725 }
1726
1727 /* Check if the S1 register was pushed on the stack. */
1728 if (save_inst & 0x10)
1729 {
74ed0bb4 1730 set_reg_offset (gdbarch, this_cache, 17, sp + offset);
2207132d
MR
1731 offset -= mips_abi_regsize (gdbarch);
1732 }
1733 /* Check if the S0 register was pushed on the stack. */
1734 if (save_inst & 0x20)
1735 {
74ed0bb4 1736 set_reg_offset (gdbarch, this_cache, 16, sp + offset);
2207132d
MR
1737 offset -= mips_abi_regsize (gdbarch);
1738 }
1739
1740 /* Check if A0-A3 were pushed on the stack. */
1741 for (reg = MIPS_A0_REGNUM + 3; reg > MIPS_A0_REGNUM + 3 - astatic; reg--)
1742 {
74ed0bb4 1743 set_reg_offset (gdbarch, this_cache, reg, sp + offset);
2207132d
MR
1744 offset -= mips_abi_regsize (gdbarch);
1745 }
1746 }
1747
29639122
JB
1748 if (this_cache != NULL)
1749 {
1750 this_cache->base =
b8a22b94
DJ
1751 (get_frame_register_signed (this_frame,
1752 gdbarch_num_regs (gdbarch) + frame_reg)
29639122
JB
1753 + frame_offset - frame_adjust);
1754 /* FIXME: brobecker/2004-10-10: Just as in the mips32 case, we should
1755 be able to get rid of the assignment below, evetually. But it's
1756 still needed for now. */
72a155b4
UW
1757 this_cache->saved_regs[gdbarch_num_regs (gdbarch)
1758 + mips_regnum (gdbarch)->pc]
1759 = this_cache->saved_regs[gdbarch_num_regs (gdbarch) + MIPS_RA_REGNUM];
29639122
JB
1760 }
1761
1762 /* If we didn't reach the end of the prologue when scanning the function
1763 instructions, then set end_prologue_addr to the address of the
1764 instruction immediately after the last one we scanned. */
1765 if (end_prologue_addr == 0)
1766 end_prologue_addr = cur_pc;
1767
1768 return end_prologue_addr;
eec63939
AC
1769}
1770
29639122
JB
1771/* Heuristic unwinder for 16-bit MIPS instruction set (aka MIPS16).
1772 Procedures that use the 32-bit instruction set are handled by the
1773 mips_insn32 unwinder. */
1774
1775static struct mips_frame_cache *
b8a22b94 1776mips_insn16_frame_cache (struct frame_info *this_frame, void **this_cache)
eec63939 1777{
e17a4113 1778 struct gdbarch *gdbarch = get_frame_arch (this_frame);
29639122 1779 struct mips_frame_cache *cache;
eec63939
AC
1780
1781 if ((*this_cache) != NULL)
1782 return (*this_cache);
29639122
JB
1783 cache = FRAME_OBSTACK_ZALLOC (struct mips_frame_cache);
1784 (*this_cache) = cache;
b8a22b94 1785 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
eec63939 1786
29639122
JB
1787 /* Analyze the function prologue. */
1788 {
b8a22b94 1789 const CORE_ADDR pc = get_frame_address_in_block (this_frame);
29639122 1790 CORE_ADDR start_addr;
eec63939 1791
29639122
JB
1792 find_pc_partial_function (pc, NULL, &start_addr, NULL);
1793 if (start_addr == 0)
e17a4113 1794 start_addr = heuristic_proc_start (gdbarch, pc);
29639122
JB
1795 /* We can't analyze the prologue if we couldn't find the begining
1796 of the function. */
1797 if (start_addr == 0)
1798 return cache;
eec63939 1799
e17a4113 1800 mips16_scan_prologue (gdbarch, start_addr, pc, this_frame, *this_cache);
29639122
JB
1801 }
1802
3e8c568d 1803 /* gdbarch_sp_regnum contains the value and not the address. */
72a155b4 1804 trad_frame_set_value (cache->saved_regs,
e17a4113 1805 gdbarch_num_regs (gdbarch) + MIPS_SP_REGNUM,
72a155b4 1806 cache->base);
eec63939 1807
29639122 1808 return (*this_cache);
eec63939
AC
1809}
1810
1811static void
b8a22b94 1812mips_insn16_frame_this_id (struct frame_info *this_frame, void **this_cache,
29639122 1813 struct frame_id *this_id)
eec63939 1814{
b8a22b94 1815 struct mips_frame_cache *info = mips_insn16_frame_cache (this_frame,
29639122 1816 this_cache);
b8a22b94 1817 (*this_id) = frame_id_build (info->base, get_frame_func (this_frame));
eec63939
AC
1818}
1819
b8a22b94
DJ
1820static struct value *
1821mips_insn16_frame_prev_register (struct frame_info *this_frame,
1822 void **this_cache, int regnum)
eec63939 1823{
b8a22b94 1824 struct mips_frame_cache *info = mips_insn16_frame_cache (this_frame,
29639122 1825 this_cache);
b8a22b94
DJ
1826 return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
1827}
1828
1829static int
1830mips_insn16_frame_sniffer (const struct frame_unwind *self,
1831 struct frame_info *this_frame, void **this_cache)
1832{
1833 CORE_ADDR pc = get_frame_pc (this_frame);
1834 if (mips_pc_is_mips16 (pc))
1835 return 1;
1836 return 0;
eec63939
AC
1837}
1838
29639122 1839static const struct frame_unwind mips_insn16_frame_unwind =
eec63939
AC
1840{
1841 NORMAL_FRAME,
29639122 1842 mips_insn16_frame_this_id,
b8a22b94
DJ
1843 mips_insn16_frame_prev_register,
1844 NULL,
1845 mips_insn16_frame_sniffer
eec63939
AC
1846};
1847
eec63939 1848static CORE_ADDR
b8a22b94 1849mips_insn16_frame_base_address (struct frame_info *this_frame,
29639122 1850 void **this_cache)
eec63939 1851{
b8a22b94 1852 struct mips_frame_cache *info = mips_insn16_frame_cache (this_frame,
29639122
JB
1853 this_cache);
1854 return info->base;
eec63939
AC
1855}
1856
29639122 1857static const struct frame_base mips_insn16_frame_base =
eec63939 1858{
29639122
JB
1859 &mips_insn16_frame_unwind,
1860 mips_insn16_frame_base_address,
1861 mips_insn16_frame_base_address,
1862 mips_insn16_frame_base_address
eec63939
AC
1863};
1864
1865static const struct frame_base *
b8a22b94 1866mips_insn16_frame_base_sniffer (struct frame_info *this_frame)
eec63939 1867{
b8a22b94
DJ
1868 CORE_ADDR pc = get_frame_pc (this_frame);
1869 if (mips_pc_is_mips16 (pc))
29639122 1870 return &mips_insn16_frame_base;
eec63939
AC
1871 else
1872 return NULL;
edfae063
AC
1873}
1874
29639122
JB
1875/* Mark all the registers as unset in the saved_regs array
1876 of THIS_CACHE. Do nothing if THIS_CACHE is null. */
1877
74ed0bb4
MD
1878static void
1879reset_saved_regs (struct gdbarch *gdbarch, struct mips_frame_cache *this_cache)
c906108c 1880{
29639122
JB
1881 if (this_cache == NULL || this_cache->saved_regs == NULL)
1882 return;
1883
1884 {
74ed0bb4 1885 const int num_regs = gdbarch_num_regs (gdbarch);
29639122 1886 int i;
64159455 1887
29639122
JB
1888 for (i = 0; i < num_regs; i++)
1889 {
1890 this_cache->saved_regs[i].addr = -1;
1891 }
1892 }
c906108c
SS
1893}
1894
29639122
JB
1895/* Analyze the function prologue from START_PC to LIMIT_PC. Builds
1896 the associated FRAME_CACHE if not null.
1897 Return the address of the first instruction past the prologue. */
c906108c 1898
875e1767 1899static CORE_ADDR
e17a4113
UW
1900mips32_scan_prologue (struct gdbarch *gdbarch,
1901 CORE_ADDR start_pc, CORE_ADDR limit_pc,
b8a22b94 1902 struct frame_info *this_frame,
29639122 1903 struct mips_frame_cache *this_cache)
c906108c 1904{
29639122
JB
1905 CORE_ADDR cur_pc;
1906 CORE_ADDR frame_addr = 0; /* Value of $r30. Used by gcc for frame-pointer */
1907 CORE_ADDR sp;
1908 long frame_offset;
1909 int frame_reg = MIPS_SP_REGNUM;
8fa9cfa1 1910
29639122
JB
1911 CORE_ADDR end_prologue_addr = 0;
1912 int seen_sp_adjust = 0;
1913 int load_immediate_bytes = 0;
db5f024e 1914 int in_delay_slot = 0;
7d1e6fb8 1915 int regsize_is_64_bits = (mips_abi_regsize (gdbarch) == 8);
8fa9cfa1 1916
29639122 1917 /* Can be called when there's no process, and hence when there's no
b8a22b94
DJ
1918 THIS_FRAME. */
1919 if (this_frame != NULL)
1920 sp = get_frame_register_signed (this_frame,
1921 gdbarch_num_regs (gdbarch)
1922 + MIPS_SP_REGNUM);
8fa9cfa1 1923 else
29639122 1924 sp = 0;
9022177c 1925
29639122
JB
1926 if (limit_pc > start_pc + 200)
1927 limit_pc = start_pc + 200;
9022177c 1928
29639122 1929restart:
9022177c 1930
29639122 1931 frame_offset = 0;
95ac2dcf 1932 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSN32_SIZE)
9022177c 1933 {
29639122
JB
1934 unsigned long inst, high_word, low_word;
1935 int reg;
9022177c 1936
29639122 1937 /* Fetch the instruction. */
e17a4113 1938 inst = (unsigned long) mips_fetch_instruction (gdbarch, cur_pc);
9022177c 1939
29639122
JB
1940 /* Save some code by pre-extracting some useful fields. */
1941 high_word = (inst >> 16) & 0xffff;
1942 low_word = inst & 0xffff;
1943 reg = high_word & 0x1f;
fe29b929 1944
29639122
JB
1945 if (high_word == 0x27bd /* addiu $sp,$sp,-i */
1946 || high_word == 0x23bd /* addi $sp,$sp,-i */
1947 || high_word == 0x67bd) /* daddiu $sp,$sp,-i */
1948 {
1949 if (low_word & 0x8000) /* negative stack adjustment? */
1950 frame_offset += 0x10000 - low_word;
1951 else
1952 /* Exit loop if a positive stack adjustment is found, which
1953 usually means that the stack cleanup code in the function
1954 epilogue is reached. */
1955 break;
1956 seen_sp_adjust = 1;
1957 }
7d1e6fb8
KB
1958 else if (((high_word & 0xFFE0) == 0xafa0) /* sw reg,offset($sp) */
1959 && !regsize_is_64_bits)
29639122 1960 {
74ed0bb4 1961 set_reg_offset (gdbarch, this_cache, reg, sp + low_word);
29639122 1962 }
7d1e6fb8
KB
1963 else if (((high_word & 0xFFE0) == 0xffa0) /* sd reg,offset($sp) */
1964 && regsize_is_64_bits)
29639122
JB
1965 {
1966 /* Irix 6.2 N32 ABI uses sd instructions for saving $gp and $ra. */
74ed0bb4 1967 set_reg_offset (gdbarch, this_cache, reg, sp + low_word);
29639122
JB
1968 }
1969 else if (high_word == 0x27be) /* addiu $30,$sp,size */
1970 {
1971 /* Old gcc frame, r30 is virtual frame pointer. */
1972 if ((long) low_word != frame_offset)
1973 frame_addr = sp + low_word;
b8a22b94 1974 else if (this_frame && frame_reg == MIPS_SP_REGNUM)
29639122
JB
1975 {
1976 unsigned alloca_adjust;
a4b8ebc8 1977
29639122 1978 frame_reg = 30;
b8a22b94
DJ
1979 frame_addr = get_frame_register_signed
1980 (this_frame, gdbarch_num_regs (gdbarch) + 30);
d2ca4222 1981
29639122
JB
1982 alloca_adjust = (unsigned) (frame_addr - (sp + low_word));
1983 if (alloca_adjust > 0)
1984 {
1985 /* FP > SP + frame_size. This may be because of
1986 an alloca or somethings similar. Fix sp to
1987 "pre-alloca" value, and try again. */
1988 sp += alloca_adjust;
1989 /* Need to reset the status of all registers. Otherwise,
1990 we will hit a guard that prevents the new address
1991 for each register to be recomputed during the second
1992 pass. */
74ed0bb4 1993 reset_saved_regs (gdbarch, this_cache);
29639122
JB
1994 goto restart;
1995 }
1996 }
1997 }
1998 /* move $30,$sp. With different versions of gas this will be either
1999 `addu $30,$sp,$zero' or `or $30,$sp,$zero' or `daddu 30,sp,$0'.
2000 Accept any one of these. */
2001 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
2002 {
2003 /* New gcc frame, virtual frame pointer is at r30 + frame_size. */
b8a22b94 2004 if (this_frame && frame_reg == MIPS_SP_REGNUM)
29639122
JB
2005 {
2006 unsigned alloca_adjust;
c906108c 2007
29639122 2008 frame_reg = 30;
b8a22b94
DJ
2009 frame_addr = get_frame_register_signed
2010 (this_frame, gdbarch_num_regs (gdbarch) + 30);
d2ca4222 2011
29639122
JB
2012 alloca_adjust = (unsigned) (frame_addr - sp);
2013 if (alloca_adjust > 0)
2014 {
2015 /* FP > SP + frame_size. This may be because of
2016 an alloca or somethings similar. Fix sp to
2017 "pre-alloca" value, and try again. */
2018 sp = frame_addr;
2019 /* Need to reset the status of all registers. Otherwise,
2020 we will hit a guard that prevents the new address
2021 for each register to be recomputed during the second
2022 pass. */
74ed0bb4 2023 reset_saved_regs (gdbarch, this_cache);
29639122
JB
2024 goto restart;
2025 }
2026 }
2027 }
7d1e6fb8
KB
2028 else if ((high_word & 0xFFE0) == 0xafc0 /* sw reg,offset($30) */
2029 && !regsize_is_64_bits)
29639122 2030 {
74ed0bb4 2031 set_reg_offset (gdbarch, this_cache, reg, frame_addr + low_word);
29639122
JB
2032 }
2033 else if ((high_word & 0xFFE0) == 0xE7A0 /* swc1 freg,n($sp) */
2034 || (high_word & 0xF3E0) == 0xA3C0 /* sx reg,n($s8) */
2035 || (inst & 0xFF9F07FF) == 0x00800021 /* move reg,$a0-$a3 */
2036 || high_word == 0x3c1c /* lui $gp,n */
2037 || high_word == 0x279c /* addiu $gp,$gp,n */
2038 || inst == 0x0399e021 /* addu $gp,$gp,$t9 */
2039 || inst == 0x033ce021 /* addu $gp,$t9,$gp */
2040 )
2041 {
2042 /* These instructions are part of the prologue, but we don't
2043 need to do anything special to handle them. */
2044 }
2045 /* The instructions below load $at or $t0 with an immediate
2046 value in preparation for a stack adjustment via
2047 subu $sp,$sp,[$at,$t0]. These instructions could also
2048 initialize a local variable, so we accept them only before
2049 a stack adjustment instruction was seen. */
2050 else if (!seen_sp_adjust
2051 && (high_word == 0x3c01 /* lui $at,n */
2052 || high_word == 0x3c08 /* lui $t0,n */
2053 || high_word == 0x3421 /* ori $at,$at,n */
2054 || high_word == 0x3508 /* ori $t0,$t0,n */
2055 || high_word == 0x3401 /* ori $at,$zero,n */
2056 || high_word == 0x3408 /* ori $t0,$zero,n */
2057 ))
2058 {
95ac2dcf 2059 load_immediate_bytes += MIPS_INSN32_SIZE; /* FIXME! */
29639122
JB
2060 }
2061 else
2062 {
2063 /* This instruction is not an instruction typically found
2064 in a prologue, so we must have reached the end of the
2065 prologue. */
2066 /* FIXME: brobecker/2004-10-10: Can't we just break out of this
2067 loop now? Why would we need to continue scanning the function
2068 instructions? */
2069 if (end_prologue_addr == 0)
2070 end_prologue_addr = cur_pc;
db5f024e
DJ
2071
2072 /* Check for branches and jumps. For now, only jump to
2073 register are caught (i.e. returns). */
2074 if ((itype_op (inst) & 0x07) == 0 && rtype_funct (inst) == 8)
2075 in_delay_slot = 1;
29639122 2076 }
db5f024e
DJ
2077
2078 /* If the previous instruction was a jump, we must have reached
2079 the end of the prologue by now. Stop scanning so that we do
2080 not go past the function return. */
2081 if (in_delay_slot)
2082 break;
a4b8ebc8 2083 }
c906108c 2084
29639122
JB
2085 if (this_cache != NULL)
2086 {
2087 this_cache->base =
b8a22b94
DJ
2088 (get_frame_register_signed (this_frame,
2089 gdbarch_num_regs (gdbarch) + frame_reg)
29639122
JB
2090 + frame_offset);
2091 /* FIXME: brobecker/2004-09-15: We should be able to get rid of
2092 this assignment below, eventually. But it's still needed
2093 for now. */
72a155b4
UW
2094 this_cache->saved_regs[gdbarch_num_regs (gdbarch)
2095 + mips_regnum (gdbarch)->pc]
2096 = this_cache->saved_regs[gdbarch_num_regs (gdbarch)
f57d151a 2097 + MIPS_RA_REGNUM];
29639122 2098 }
c906108c 2099
29639122
JB
2100 /* If we didn't reach the end of the prologue when scanning the function
2101 instructions, then set end_prologue_addr to the address of the
2102 instruction immediately after the last one we scanned. */
2103 /* brobecker/2004-10-10: I don't think this would ever happen, but
2104 we may as well be careful and do our best if we have a null
2105 end_prologue_addr. */
2106 if (end_prologue_addr == 0)
2107 end_prologue_addr = cur_pc;
2108
2109 /* In a frameless function, we might have incorrectly
2110 skipped some load immediate instructions. Undo the skipping
2111 if the load immediate was not followed by a stack adjustment. */
2112 if (load_immediate_bytes && !seen_sp_adjust)
2113 end_prologue_addr -= load_immediate_bytes;
c906108c 2114
29639122 2115 return end_prologue_addr;
c906108c
SS
2116}
2117
29639122
JB
2118/* Heuristic unwinder for procedures using 32-bit instructions (covers
2119 both 32-bit and 64-bit MIPS ISAs). Procedures using 16-bit
2120 instructions (a.k.a. MIPS16) are handled by the mips_insn16
2121 unwinder. */
c906108c 2122
29639122 2123static struct mips_frame_cache *
b8a22b94 2124mips_insn32_frame_cache (struct frame_info *this_frame, void **this_cache)
c906108c 2125{
e17a4113 2126 struct gdbarch *gdbarch = get_frame_arch (this_frame);
29639122 2127 struct mips_frame_cache *cache;
c906108c 2128
29639122
JB
2129 if ((*this_cache) != NULL)
2130 return (*this_cache);
c5aa993b 2131
29639122
JB
2132 cache = FRAME_OBSTACK_ZALLOC (struct mips_frame_cache);
2133 (*this_cache) = cache;
b8a22b94 2134 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
c5aa993b 2135
29639122
JB
2136 /* Analyze the function prologue. */
2137 {
b8a22b94 2138 const CORE_ADDR pc = get_frame_address_in_block (this_frame);
29639122 2139 CORE_ADDR start_addr;
c906108c 2140
29639122
JB
2141 find_pc_partial_function (pc, NULL, &start_addr, NULL);
2142 if (start_addr == 0)
e17a4113 2143 start_addr = heuristic_proc_start (gdbarch, pc);
29639122
JB
2144 /* We can't analyze the prologue if we couldn't find the begining
2145 of the function. */
2146 if (start_addr == 0)
2147 return cache;
c5aa993b 2148
e17a4113 2149 mips32_scan_prologue (gdbarch, start_addr, pc, this_frame, *this_cache);
29639122
JB
2150 }
2151
3e8c568d 2152 /* gdbarch_sp_regnum contains the value and not the address. */
f57d151a 2153 trad_frame_set_value (cache->saved_regs,
e17a4113 2154 gdbarch_num_regs (gdbarch) + MIPS_SP_REGNUM,
f57d151a 2155 cache->base);
c5aa993b 2156
29639122 2157 return (*this_cache);
c906108c
SS
2158}
2159
29639122 2160static void
b8a22b94 2161mips_insn32_frame_this_id (struct frame_info *this_frame, void **this_cache,
29639122 2162 struct frame_id *this_id)
c906108c 2163{
b8a22b94 2164 struct mips_frame_cache *info = mips_insn32_frame_cache (this_frame,
29639122 2165 this_cache);
b8a22b94 2166 (*this_id) = frame_id_build (info->base, get_frame_func (this_frame));
29639122 2167}
c906108c 2168
b8a22b94
DJ
2169static struct value *
2170mips_insn32_frame_prev_register (struct frame_info *this_frame,
2171 void **this_cache, int regnum)
29639122 2172{
b8a22b94 2173 struct mips_frame_cache *info = mips_insn32_frame_cache (this_frame,
29639122 2174 this_cache);
b8a22b94
DJ
2175 return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
2176}
2177
2178static int
2179mips_insn32_frame_sniffer (const struct frame_unwind *self,
2180 struct frame_info *this_frame, void **this_cache)
2181{
2182 CORE_ADDR pc = get_frame_pc (this_frame);
2183 if (! mips_pc_is_mips16 (pc))
2184 return 1;
2185 return 0;
c906108c
SS
2186}
2187
29639122
JB
2188static const struct frame_unwind mips_insn32_frame_unwind =
2189{
2190 NORMAL_FRAME,
2191 mips_insn32_frame_this_id,
b8a22b94
DJ
2192 mips_insn32_frame_prev_register,
2193 NULL,
2194 mips_insn32_frame_sniffer
29639122 2195};
c906108c 2196
1c645fec 2197static CORE_ADDR
b8a22b94 2198mips_insn32_frame_base_address (struct frame_info *this_frame,
29639122 2199 void **this_cache)
c906108c 2200{
b8a22b94 2201 struct mips_frame_cache *info = mips_insn32_frame_cache (this_frame,
29639122
JB
2202 this_cache);
2203 return info->base;
2204}
c906108c 2205
29639122
JB
2206static const struct frame_base mips_insn32_frame_base =
2207{
2208 &mips_insn32_frame_unwind,
2209 mips_insn32_frame_base_address,
2210 mips_insn32_frame_base_address,
2211 mips_insn32_frame_base_address
2212};
1c645fec 2213
29639122 2214static const struct frame_base *
b8a22b94 2215mips_insn32_frame_base_sniffer (struct frame_info *this_frame)
29639122 2216{
b8a22b94
DJ
2217 CORE_ADDR pc = get_frame_pc (this_frame);
2218 if (! mips_pc_is_mips16 (pc))
29639122 2219 return &mips_insn32_frame_base;
a65bbe44 2220 else
29639122
JB
2221 return NULL;
2222}
a65bbe44 2223
29639122 2224static struct trad_frame_cache *
b8a22b94 2225mips_stub_frame_cache (struct frame_info *this_frame, void **this_cache)
29639122
JB
2226{
2227 CORE_ADDR pc;
2228 CORE_ADDR start_addr;
2229 CORE_ADDR stack_addr;
2230 struct trad_frame_cache *this_trad_cache;
b8a22b94
DJ
2231 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2232 int num_regs = gdbarch_num_regs (gdbarch);
c906108c 2233
29639122
JB
2234 if ((*this_cache) != NULL)
2235 return (*this_cache);
b8a22b94 2236 this_trad_cache = trad_frame_cache_zalloc (this_frame);
29639122 2237 (*this_cache) = this_trad_cache;
1c645fec 2238
29639122 2239 /* The return address is in the link register. */
3e8c568d 2240 trad_frame_set_reg_realreg (this_trad_cache,
72a155b4 2241 gdbarch_pc_regnum (gdbarch),
b8a22b94 2242 num_regs + MIPS_RA_REGNUM);
1c645fec 2243
29639122
JB
2244 /* Frame ID, since it's a frameless / stackless function, no stack
2245 space is allocated and SP on entry is the current SP. */
b8a22b94 2246 pc = get_frame_pc (this_frame);
29639122 2247 find_pc_partial_function (pc, NULL, &start_addr, NULL);
b8a22b94
DJ
2248 stack_addr = get_frame_register_signed (this_frame,
2249 num_regs + MIPS_SP_REGNUM);
aa6c981f 2250 trad_frame_set_id (this_trad_cache, frame_id_build (stack_addr, start_addr));
1c645fec 2251
29639122
JB
2252 /* Assume that the frame's base is the same as the
2253 stack-pointer. */
2254 trad_frame_set_this_base (this_trad_cache, stack_addr);
c906108c 2255
29639122
JB
2256 return this_trad_cache;
2257}
c906108c 2258
29639122 2259static void
b8a22b94 2260mips_stub_frame_this_id (struct frame_info *this_frame, void **this_cache,
29639122
JB
2261 struct frame_id *this_id)
2262{
2263 struct trad_frame_cache *this_trad_cache
b8a22b94 2264 = mips_stub_frame_cache (this_frame, this_cache);
29639122
JB
2265 trad_frame_get_id (this_trad_cache, this_id);
2266}
c906108c 2267
b8a22b94
DJ
2268static struct value *
2269mips_stub_frame_prev_register (struct frame_info *this_frame,
2270 void **this_cache, int regnum)
29639122
JB
2271{
2272 struct trad_frame_cache *this_trad_cache
b8a22b94
DJ
2273 = mips_stub_frame_cache (this_frame, this_cache);
2274 return trad_frame_get_register (this_trad_cache, this_frame, regnum);
29639122 2275}
c906108c 2276
b8a22b94
DJ
2277static int
2278mips_stub_frame_sniffer (const struct frame_unwind *self,
2279 struct frame_info *this_frame, void **this_cache)
29639122 2280{
aa6c981f 2281 gdb_byte dummy[4];
979b38e0 2282 struct obj_section *s;
b8a22b94 2283 CORE_ADDR pc = get_frame_address_in_block (this_frame);
db5f024e 2284 struct minimal_symbol *msym;
979b38e0 2285
aa6c981f 2286 /* Use the stub unwinder for unreadable code. */
b8a22b94
DJ
2287 if (target_read_memory (get_frame_pc (this_frame), dummy, 4) != 0)
2288 return 1;
aa6c981f 2289
29639122 2290 if (in_plt_section (pc, NULL))
b8a22b94 2291 return 1;
979b38e0
DJ
2292
2293 /* Binutils for MIPS puts lazy resolution stubs into .MIPS.stubs. */
2294 s = find_pc_section (pc);
2295
2296 if (s != NULL
2297 && strcmp (bfd_get_section_name (s->objfile->obfd, s->the_bfd_section),
2298 ".MIPS.stubs") == 0)
b8a22b94 2299 return 1;
979b38e0 2300
db5f024e
DJ
2301 /* Calling a PIC function from a non-PIC function passes through a
2302 stub. The stub for foo is named ".pic.foo". */
2303 msym = lookup_minimal_symbol_by_pc (pc);
2304 if (msym != NULL
2305 && SYMBOL_LINKAGE_NAME (msym) != NULL
2306 && strncmp (SYMBOL_LINKAGE_NAME (msym), ".pic.", 5) == 0)
2307 return 1;
2308
b8a22b94 2309 return 0;
29639122 2310}
c906108c 2311
b8a22b94
DJ
2312static const struct frame_unwind mips_stub_frame_unwind =
2313{
2314 NORMAL_FRAME,
2315 mips_stub_frame_this_id,
2316 mips_stub_frame_prev_register,
2317 NULL,
2318 mips_stub_frame_sniffer
2319};
2320
29639122 2321static CORE_ADDR
b8a22b94 2322mips_stub_frame_base_address (struct frame_info *this_frame,
29639122
JB
2323 void **this_cache)
2324{
2325 struct trad_frame_cache *this_trad_cache
b8a22b94 2326 = mips_stub_frame_cache (this_frame, this_cache);
29639122
JB
2327 return trad_frame_get_this_base (this_trad_cache);
2328}
0fce0821 2329
29639122
JB
2330static const struct frame_base mips_stub_frame_base =
2331{
2332 &mips_stub_frame_unwind,
2333 mips_stub_frame_base_address,
2334 mips_stub_frame_base_address,
2335 mips_stub_frame_base_address
2336};
2337
2338static const struct frame_base *
b8a22b94 2339mips_stub_frame_base_sniffer (struct frame_info *this_frame)
29639122 2340{
b8a22b94 2341 if (mips_stub_frame_sniffer (&mips_stub_frame_unwind, this_frame, NULL))
29639122
JB
2342 return &mips_stub_frame_base;
2343 else
2344 return NULL;
2345}
2346
29639122 2347/* mips_addr_bits_remove - remove useless address bits */
65596487 2348
29639122 2349static CORE_ADDR
24568a2c 2350mips_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
65596487 2351{
24568a2c 2352 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
29639122
JB
2353 if (mips_mask_address_p (tdep) && (((ULONGEST) addr) >> 32 == 0xffffffffUL))
2354 /* This hack is a work-around for existing boards using PMON, the
2355 simulator, and any other 64-bit targets that doesn't have true
2356 64-bit addressing. On these targets, the upper 32 bits of
2357 addresses are ignored by the hardware. Thus, the PC or SP are
2358 likely to have been sign extended to all 1s by instruction
2359 sequences that load 32-bit addresses. For example, a typical
2360 piece of code that loads an address is this:
65596487 2361
29639122
JB
2362 lui $r2, <upper 16 bits>
2363 ori $r2, <lower 16 bits>
65596487 2364
29639122
JB
2365 But the lui sign-extends the value such that the upper 32 bits
2366 may be all 1s. The workaround is simply to mask off these
2367 bits. In the future, gcc may be changed to support true 64-bit
2368 addressing, and this masking will have to be disabled. */
2369 return addr &= 0xffffffffUL;
2370 else
2371 return addr;
65596487
JB
2372}
2373
3d5f6d12
DJ
2374/* Instructions used during single-stepping of atomic sequences. */
2375#define LL_OPCODE 0x30
2376#define LLD_OPCODE 0x34
2377#define SC_OPCODE 0x38
2378#define SCD_OPCODE 0x3c
2379
2380/* Checks for an atomic sequence of instructions beginning with a LL/LLD
2381 instruction and ending with a SC/SCD instruction. If such a sequence
2382 is found, attempt to step through it. A breakpoint is placed at the end of
2383 the sequence. */
2384
2385static int
6c95b8df
PA
2386deal_with_atomic_sequence (struct gdbarch *gdbarch,
2387 struct address_space *aspace, CORE_ADDR pc)
3d5f6d12
DJ
2388{
2389 CORE_ADDR breaks[2] = {-1, -1};
2390 CORE_ADDR loc = pc;
2391 CORE_ADDR branch_bp; /* Breakpoint at branch instruction's destination. */
2392 unsigned long insn;
2393 int insn_count;
2394 int index;
2395 int last_breakpoint = 0; /* Defaults to 0 (no breakpoints placed). */
2396 const int atomic_sequence_length = 16; /* Instruction sequence length. */
2397
2398 if (pc & 0x01)
2399 return 0;
2400
e17a4113 2401 insn = mips_fetch_instruction (gdbarch, loc);
3d5f6d12
DJ
2402 /* Assume all atomic sequences start with a ll/lld instruction. */
2403 if (itype_op (insn) != LL_OPCODE && itype_op (insn) != LLD_OPCODE)
2404 return 0;
2405
2406 /* Assume that no atomic sequence is longer than "atomic_sequence_length"
2407 instructions. */
2408 for (insn_count = 0; insn_count < atomic_sequence_length; ++insn_count)
2409 {
2410 int is_branch = 0;
2411 loc += MIPS_INSN32_SIZE;
e17a4113 2412 insn = mips_fetch_instruction (gdbarch, loc);
3d5f6d12
DJ
2413
2414 /* Assume that there is at most one branch in the atomic
2415 sequence. If a branch is found, put a breakpoint in its
2416 destination address. */
2417 switch (itype_op (insn))
2418 {
2419 case 0: /* SPECIAL */
2420 if (rtype_funct (insn) >> 1 == 4) /* JR, JALR */
2421 return 0; /* fallback to the standard single-step code. */
2422 break;
2423 case 1: /* REGIMM */
2424 is_branch = ((itype_rt (insn) & 0xc0) == 0); /* B{LT,GE}Z* */
2425 break;
2426 case 2: /* J */
2427 case 3: /* JAL */
2428 return 0; /* fallback to the standard single-step code. */
2429 case 4: /* BEQ */
2430 case 5: /* BNE */
2431 case 6: /* BLEZ */
2432 case 7: /* BGTZ */
2433 case 20: /* BEQL */
2434 case 21: /* BNEL */
2435 case 22: /* BLEZL */
2436 case 23: /* BGTTL */
2437 is_branch = 1;
2438 break;
2439 case 17: /* COP1 */
2440 case 18: /* COP2 */
2441 case 19: /* COP3 */
2442 is_branch = (itype_rs (insn) == 8); /* BCzF, BCzFL, BCzT, BCzTL */
2443 break;
2444 }
2445 if (is_branch)
2446 {
2447 branch_bp = loc + mips32_relative_offset (insn) + 4;
2448 if (last_breakpoint >= 1)
2449 return 0; /* More than one branch found, fallback to the
2450 standard single-step code. */
2451 breaks[1] = branch_bp;
2452 last_breakpoint++;
2453 }
2454
2455 if (itype_op (insn) == SC_OPCODE || itype_op (insn) == SCD_OPCODE)
2456 break;
2457 }
2458
2459 /* Assume that the atomic sequence ends with a sc/scd instruction. */
2460 if (itype_op (insn) != SC_OPCODE && itype_op (insn) != SCD_OPCODE)
2461 return 0;
2462
2463 loc += MIPS_INSN32_SIZE;
2464
2465 /* Insert a breakpoint right after the end of the atomic sequence. */
2466 breaks[0] = loc;
2467
2468 /* Check for duplicated breakpoints. Check also for a breakpoint
2469 placed (branch instruction's destination) in the atomic sequence */
2470 if (last_breakpoint && pc <= breaks[1] && breaks[1] <= breaks[0])
2471 last_breakpoint = 0;
2472
2473 /* Effectively inserts the breakpoints. */
2474 for (index = 0; index <= last_breakpoint; index++)
6c95b8df 2475 insert_single_step_breakpoint (gdbarch, aspace, breaks[index]);
3d5f6d12
DJ
2476
2477 return 1;
2478}
2479
29639122
JB
2480/* mips_software_single_step() is called just before we want to resume
2481 the inferior, if we want to single-step it but there is no hardware
2482 or kernel single-step support (MIPS on GNU/Linux for example). We find
e0cd558a 2483 the target of the coming instruction and breakpoint it. */
29639122 2484
e6590a1b 2485int
0b1b3e42 2486mips_software_single_step (struct frame_info *frame)
c906108c 2487{
a6d9a66e 2488 struct gdbarch *gdbarch = get_frame_arch (frame);
6c95b8df 2489 struct address_space *aspace = get_frame_address_space (frame);
8181d85f 2490 CORE_ADDR pc, next_pc;
65596487 2491
0b1b3e42 2492 pc = get_frame_pc (frame);
6c95b8df 2493 if (deal_with_atomic_sequence (gdbarch, aspace, pc))
3d5f6d12
DJ
2494 return 1;
2495
0b1b3e42 2496 next_pc = mips_next_pc (frame, pc);
e6590a1b 2497
6c95b8df 2498 insert_single_step_breakpoint (gdbarch, aspace, next_pc);
e6590a1b 2499 return 1;
29639122 2500}
a65bbe44 2501
29639122
JB
2502/* Test whether the PC points to the return instruction at the
2503 end of a function. */
65596487 2504
29639122 2505static int
e17a4113 2506mips_about_to_return (struct gdbarch *gdbarch, CORE_ADDR pc)
29639122 2507{
0fe7e7c8 2508 if (mips_pc_is_mips16 (pc))
29639122
JB
2509 /* This mips16 case isn't necessarily reliable. Sometimes the compiler
2510 generates a "jr $ra"; other times it generates code to load
2511 the return address from the stack to an accessible register (such
2512 as $a3), then a "jr" using that register. This second case
2513 is almost impossible to distinguish from an indirect jump
2514 used for switch statements, so we don't even try. */
e17a4113 2515 return mips_fetch_instruction (gdbarch, pc) == 0xe820; /* jr $ra */
29639122 2516 else
e17a4113 2517 return mips_fetch_instruction (gdbarch, pc) == 0x3e00008; /* jr $ra */
29639122 2518}
c906108c 2519
c906108c 2520
29639122
JB
2521/* This fencepost looks highly suspicious to me. Removing it also
2522 seems suspicious as it could affect remote debugging across serial
2523 lines. */
c906108c 2524
29639122 2525static CORE_ADDR
74ed0bb4 2526heuristic_proc_start (struct gdbarch *gdbarch, CORE_ADDR pc)
29639122
JB
2527{
2528 CORE_ADDR start_pc;
2529 CORE_ADDR fence;
2530 int instlen;
2531 int seen_adjsp = 0;
d6b48e9c 2532 struct inferior *inf;
65596487 2533
74ed0bb4 2534 pc = gdbarch_addr_bits_remove (gdbarch, pc);
29639122
JB
2535 start_pc = pc;
2536 fence = start_pc - heuristic_fence_post;
2537 if (start_pc == 0)
2538 return 0;
65596487 2539
29639122
JB
2540 if (heuristic_fence_post == UINT_MAX || fence < VM_MIN_ADDRESS)
2541 fence = VM_MIN_ADDRESS;
65596487 2542
95ac2dcf 2543 instlen = mips_pc_is_mips16 (pc) ? MIPS_INSN16_SIZE : MIPS_INSN32_SIZE;
98b4dd94 2544
d6b48e9c
PA
2545 inf = current_inferior ();
2546
29639122
JB
2547 /* search back for previous return */
2548 for (start_pc -= instlen;; start_pc -= instlen)
2549 if (start_pc < fence)
2550 {
2551 /* It's not clear to me why we reach this point when
2552 stop_soon, but with this test, at least we
2553 don't print out warnings for every child forked (eg, on
2554 decstation). 22apr93 rich@cygnus.com. */
d6b48e9c 2555 if (inf->stop_soon == NO_STOP_QUIETLY)
29639122
JB
2556 {
2557 static int blurb_printed = 0;
98b4dd94 2558
5af949e3
UW
2559 warning (_("GDB can't find the start of the function at %s."),
2560 paddress (gdbarch, pc));
29639122
JB
2561
2562 if (!blurb_printed)
2563 {
2564 /* This actually happens frequently in embedded
2565 development, when you first connect to a board
2566 and your stack pointer and pc are nowhere in
2567 particular. This message needs to give people
2568 in that situation enough information to
2569 determine that it's no big deal. */
2570 printf_filtered ("\n\
5af949e3 2571 GDB is unable to find the start of the function at %s\n\
29639122
JB
2572and thus can't determine the size of that function's stack frame.\n\
2573This means that GDB may be unable to access that stack frame, or\n\
2574the frames below it.\n\
2575 This problem is most likely caused by an invalid program counter or\n\
2576stack pointer.\n\
2577 However, if you think GDB should simply search farther back\n\
5af949e3 2578from %s for code which looks like the beginning of a\n\
29639122 2579function, you can increase the range of the search using the `set\n\
5af949e3
UW
2580heuristic-fence-post' command.\n",
2581 paddress (gdbarch, pc), paddress (gdbarch, pc));
29639122
JB
2582 blurb_printed = 1;
2583 }
2584 }
2585
2586 return 0;
2587 }
0fe7e7c8 2588 else if (mips_pc_is_mips16 (start_pc))
29639122
JB
2589 {
2590 unsigned short inst;
2591
2592 /* On MIPS16, any one of the following is likely to be the
2593 start of a function:
193774b3
MR
2594 extend save
2595 save
29639122
JB
2596 entry
2597 addiu sp,-n
2598 daddiu sp,-n
2599 extend -n followed by 'addiu sp,+n' or 'daddiu sp,+n' */
e17a4113 2600 inst = mips_fetch_instruction (gdbarch, start_pc);
193774b3
MR
2601 if ((inst & 0xff80) == 0x6480) /* save */
2602 {
2603 if (start_pc - instlen >= fence)
2604 {
e17a4113 2605 inst = mips_fetch_instruction (gdbarch, start_pc - instlen);
193774b3
MR
2606 if ((inst & 0xf800) == 0xf000) /* extend */
2607 start_pc -= instlen;
2608 }
2609 break;
2610 }
2611 else if (((inst & 0xf81f) == 0xe809
2612 && (inst & 0x700) != 0x700) /* entry */
2613 || (inst & 0xff80) == 0x6380 /* addiu sp,-n */
2614 || (inst & 0xff80) == 0xfb80 /* daddiu sp,-n */
2615 || ((inst & 0xf810) == 0xf010 && seen_adjsp)) /* extend -n */
29639122
JB
2616 break;
2617 else if ((inst & 0xff00) == 0x6300 /* addiu sp */
2618 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
2619 seen_adjsp = 1;
2620 else
2621 seen_adjsp = 0;
2622 }
e17a4113 2623 else if (mips_about_to_return (gdbarch, start_pc))
29639122 2624 {
4c7d22cb 2625 /* Skip return and its delay slot. */
95ac2dcf 2626 start_pc += 2 * MIPS_INSN32_SIZE;
29639122
JB
2627 break;
2628 }
2629
2630 return start_pc;
c906108c
SS
2631}
2632
6c0d6680
DJ
2633struct mips_objfile_private
2634{
2635 bfd_size_type size;
2636 char *contents;
2637};
2638
f09ded24
AC
2639/* According to the current ABI, should the type be passed in a
2640 floating-point register (assuming that there is space)? When there
a1f5b845 2641 is no FPU, FP are not even considered as possible candidates for
f09ded24
AC
2642 FP registers and, consequently this returns false - forces FP
2643 arguments into integer registers. */
2644
2645static int
74ed0bb4
MD
2646fp_register_arg_p (struct gdbarch *gdbarch, enum type_code typecode,
2647 struct type *arg_type)
f09ded24
AC
2648{
2649 return ((typecode == TYPE_CODE_FLT
74ed0bb4 2650 || (MIPS_EABI (gdbarch)
6d82d43b
AC
2651 && (typecode == TYPE_CODE_STRUCT
2652 || typecode == TYPE_CODE_UNION)
f09ded24 2653 && TYPE_NFIELDS (arg_type) == 1
b2d6f210
MS
2654 && TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (arg_type, 0)))
2655 == TYPE_CODE_FLT))
74ed0bb4 2656 && MIPS_FPU_TYPE(gdbarch) != MIPS_FPU_NONE);
f09ded24
AC
2657}
2658
49e790b0
DJ
2659/* On o32, argument passing in GPRs depends on the alignment of the type being
2660 passed. Return 1 if this type must be aligned to a doubleword boundary. */
2661
2662static int
2663mips_type_needs_double_align (struct type *type)
2664{
2665 enum type_code typecode = TYPE_CODE (type);
361d1df0 2666
49e790b0
DJ
2667 if (typecode == TYPE_CODE_FLT && TYPE_LENGTH (type) == 8)
2668 return 1;
2669 else if (typecode == TYPE_CODE_STRUCT)
2670 {
2671 if (TYPE_NFIELDS (type) < 1)
2672 return 0;
2673 return mips_type_needs_double_align (TYPE_FIELD_TYPE (type, 0));
2674 }
2675 else if (typecode == TYPE_CODE_UNION)
2676 {
361d1df0 2677 int i, n;
49e790b0
DJ
2678
2679 n = TYPE_NFIELDS (type);
2680 for (i = 0; i < n; i++)
2681 if (mips_type_needs_double_align (TYPE_FIELD_TYPE (type, i)))
2682 return 1;
2683 return 0;
2684 }
2685 return 0;
2686}
2687
dc604539
AC
2688/* Adjust the address downward (direction of stack growth) so that it
2689 is correctly aligned for a new stack frame. */
2690static CORE_ADDR
2691mips_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
2692{
5b03f266 2693 return align_down (addr, 16);
dc604539
AC
2694}
2695
f7ab6ec6 2696static CORE_ADDR
7d9b040b 2697mips_eabi_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6d82d43b
AC
2698 struct regcache *regcache, CORE_ADDR bp_addr,
2699 int nargs, struct value **args, CORE_ADDR sp,
2700 int struct_return, CORE_ADDR struct_addr)
c906108c
SS
2701{
2702 int argreg;
2703 int float_argreg;
2704 int argnum;
2705 int len = 0;
2706 int stack_offset = 0;
480d3dd2 2707 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
e17a4113 2708 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7d9b040b 2709 CORE_ADDR func_addr = find_function_addr (function, NULL);
1a69e1e4 2710 int regsize = mips_abi_regsize (gdbarch);
c906108c 2711
25ab4790
AC
2712 /* For shared libraries, "t9" needs to point at the function
2713 address. */
4c7d22cb 2714 regcache_cooked_write_signed (regcache, MIPS_T9_REGNUM, func_addr);
25ab4790
AC
2715
2716 /* Set the return address register to point to the entry point of
2717 the program, where a breakpoint lies in wait. */
4c7d22cb 2718 regcache_cooked_write_signed (regcache, MIPS_RA_REGNUM, bp_addr);
25ab4790 2719
c906108c 2720 /* First ensure that the stack and structure return address (if any)
cb3d25d1
MS
2721 are properly aligned. The stack has to be at least 64-bit
2722 aligned even on 32-bit machines, because doubles must be 64-bit
2723 aligned. For n32 and n64, stack frames need to be 128-bit
2724 aligned, so we round to this widest known alignment. */
2725
5b03f266
AC
2726 sp = align_down (sp, 16);
2727 struct_addr = align_down (struct_addr, 16);
c5aa993b 2728
46e0f506 2729 /* Now make space on the stack for the args. We allocate more
c906108c 2730 than necessary for EABI, because the first few arguments are
46e0f506 2731 passed in registers, but that's OK. */
c906108c 2732 for (argnum = 0; argnum < nargs; argnum++)
1a69e1e4 2733 len += align_up (TYPE_LENGTH (value_type (args[argnum])), regsize);
5b03f266 2734 sp -= align_up (len, 16);
c906108c 2735
9ace0497 2736 if (mips_debug)
6d82d43b 2737 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
2738 "mips_eabi_push_dummy_call: sp=%s allocated %ld\n",
2739 paddress (gdbarch, sp), (long) align_up (len, 16));
9ace0497 2740
c906108c 2741 /* Initialize the integer and float register pointers. */
4c7d22cb 2742 argreg = MIPS_A0_REGNUM;
72a155b4 2743 float_argreg = mips_fpa0_regnum (gdbarch);
c906108c 2744
46e0f506 2745 /* The struct_return pointer occupies the first parameter-passing reg. */
c906108c 2746 if (struct_return)
9ace0497
AC
2747 {
2748 if (mips_debug)
2749 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
2750 "mips_eabi_push_dummy_call: struct_return reg=%d %s\n",
2751 argreg, paddress (gdbarch, struct_addr));
9c9acae0 2752 regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
9ace0497 2753 }
c906108c
SS
2754
2755 /* Now load as many as possible of the first arguments into
2756 registers, and push the rest onto the stack. Loop thru args
2757 from first to last. */
2758 for (argnum = 0; argnum < nargs; argnum++)
2759 {
47a35522
MK
2760 const gdb_byte *val;
2761 gdb_byte valbuf[MAX_REGISTER_SIZE];
ea7c478f 2762 struct value *arg = args[argnum];
4991999e 2763 struct type *arg_type = check_typedef (value_type (arg));
c906108c
SS
2764 int len = TYPE_LENGTH (arg_type);
2765 enum type_code typecode = TYPE_CODE (arg_type);
2766
9ace0497
AC
2767 if (mips_debug)
2768 fprintf_unfiltered (gdb_stdlog,
25ab4790 2769 "mips_eabi_push_dummy_call: %d len=%d type=%d",
acdb74a0 2770 argnum + 1, len, (int) typecode);
9ace0497 2771
c906108c 2772 /* The EABI passes structures that do not fit in a register by
46e0f506 2773 reference. */
1a69e1e4 2774 if (len > regsize
9ace0497 2775 && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
c906108c 2776 {
e17a4113
UW
2777 store_unsigned_integer (valbuf, regsize, byte_order,
2778 value_address (arg));
c906108c 2779 typecode = TYPE_CODE_PTR;
1a69e1e4 2780 len = regsize;
c906108c 2781 val = valbuf;
9ace0497
AC
2782 if (mips_debug)
2783 fprintf_unfiltered (gdb_stdlog, " push");
c906108c
SS
2784 }
2785 else
47a35522 2786 val = value_contents (arg);
c906108c
SS
2787
2788 /* 32-bit ABIs always start floating point arguments in an
acdb74a0
AC
2789 even-numbered floating point register. Round the FP register
2790 up before the check to see if there are any FP registers
46e0f506
MS
2791 left. Non MIPS_EABI targets also pass the FP in the integer
2792 registers so also round up normal registers. */
74ed0bb4 2793 if (regsize < 8 && fp_register_arg_p (gdbarch, typecode, arg_type))
acdb74a0
AC
2794 {
2795 if ((float_argreg & 1))
2796 float_argreg++;
2797 }
c906108c
SS
2798
2799 /* Floating point arguments passed in registers have to be
2800 treated specially. On 32-bit architectures, doubles
c5aa993b
JM
2801 are passed in register pairs; the even register gets
2802 the low word, and the odd register gets the high word.
2803 On non-EABI processors, the first two floating point arguments are
2804 also copied to general registers, because MIPS16 functions
2805 don't use float registers for arguments. This duplication of
2806 arguments in general registers can't hurt non-MIPS16 functions
2807 because those registers are normally skipped. */
1012bd0e
EZ
2808 /* MIPS_EABI squeezes a struct that contains a single floating
2809 point value into an FP register instead of pushing it onto the
46e0f506 2810 stack. */
74ed0bb4
MD
2811 if (fp_register_arg_p (gdbarch, typecode, arg_type)
2812 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM (gdbarch))
c906108c 2813 {
6da397e0
KB
2814 /* EABI32 will pass doubles in consecutive registers, even on
2815 64-bit cores. At one time, we used to check the size of
2816 `float_argreg' to determine whether or not to pass doubles
2817 in consecutive registers, but this is not sufficient for
2818 making the ABI determination. */
2819 if (len == 8 && mips_abi (gdbarch) == MIPS_ABI_EABI32)
c906108c 2820 {
72a155b4 2821 int low_offset = gdbarch_byte_order (gdbarch)
4c6b5505 2822 == BFD_ENDIAN_BIG ? 4 : 0;
c906108c
SS
2823 unsigned long regval;
2824
2825 /* Write the low word of the double to the even register(s). */
e17a4113
UW
2826 regval = extract_unsigned_integer (val + low_offset,
2827 4, byte_order);
9ace0497 2828 if (mips_debug)
acdb74a0 2829 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2830 float_argreg, phex (regval, 4));
9c9acae0 2831 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
c906108c
SS
2832
2833 /* Write the high word of the double to the odd register(s). */
e17a4113
UW
2834 regval = extract_unsigned_integer (val + 4 - low_offset,
2835 4, byte_order);
9ace0497 2836 if (mips_debug)
acdb74a0 2837 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2838 float_argreg, phex (regval, 4));
9c9acae0 2839 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
c906108c
SS
2840 }
2841 else
2842 {
2843 /* This is a floating point value that fits entirely
2844 in a single register. */
53a5351d 2845 /* On 32 bit ABI's the float_argreg is further adjusted
6d82d43b 2846 above to ensure that it is even register aligned. */
e17a4113 2847 LONGEST regval = extract_unsigned_integer (val, len, byte_order);
9ace0497 2848 if (mips_debug)
acdb74a0 2849 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2850 float_argreg, phex (regval, len));
9c9acae0 2851 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
c906108c
SS
2852 }
2853 }
2854 else
2855 {
2856 /* Copy the argument to general registers or the stack in
2857 register-sized pieces. Large arguments are split between
2858 registers and stack. */
1a69e1e4
DJ
2859 /* Note: structs whose size is not a multiple of regsize
2860 are treated specially: Irix cc passes
d5ac5a39
AC
2861 them in registers where gcc sometimes puts them on the
2862 stack. For maximum compatibility, we will put them in
2863 both places. */
1a69e1e4 2864 int odd_sized_struct = (len > regsize && len % regsize != 0);
46e0f506 2865
f09ded24 2866 /* Note: Floating-point values that didn't fit into an FP
6d82d43b 2867 register are only written to memory. */
c906108c
SS
2868 while (len > 0)
2869 {
ebafbe83 2870 /* Remember if the argument was written to the stack. */
566f0f7a 2871 int stack_used_p = 0;
1a69e1e4 2872 int partial_len = (len < regsize ? len : regsize);
c906108c 2873
acdb74a0
AC
2874 if (mips_debug)
2875 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
2876 partial_len);
2877
566f0f7a 2878 /* Write this portion of the argument to the stack. */
74ed0bb4 2879 if (argreg > MIPS_LAST_ARG_REGNUM (gdbarch)
f09ded24 2880 || odd_sized_struct
74ed0bb4 2881 || fp_register_arg_p (gdbarch, typecode, arg_type))
c906108c 2882 {
c906108c
SS
2883 /* Should shorter than int integer values be
2884 promoted to int before being stored? */
c906108c 2885 int longword_offset = 0;
9ace0497 2886 CORE_ADDR addr;
566f0f7a 2887 stack_used_p = 1;
72a155b4 2888 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
7a292a7a 2889 {
1a69e1e4 2890 if (regsize == 8
480d3dd2
AC
2891 && (typecode == TYPE_CODE_INT
2892 || typecode == TYPE_CODE_PTR
6d82d43b 2893 || typecode == TYPE_CODE_FLT) && len <= 4)
1a69e1e4 2894 longword_offset = regsize - len;
480d3dd2
AC
2895 else if ((typecode == TYPE_CODE_STRUCT
2896 || typecode == TYPE_CODE_UNION)
1a69e1e4
DJ
2897 && TYPE_LENGTH (arg_type) < regsize)
2898 longword_offset = regsize - len;
7a292a7a 2899 }
c5aa993b 2900
9ace0497
AC
2901 if (mips_debug)
2902 {
5af949e3
UW
2903 fprintf_unfiltered (gdb_stdlog, " - stack_offset=%s",
2904 paddress (gdbarch, stack_offset));
2905 fprintf_unfiltered (gdb_stdlog, " longword_offset=%s",
2906 paddress (gdbarch, longword_offset));
9ace0497 2907 }
361d1df0 2908
9ace0497
AC
2909 addr = sp + stack_offset + longword_offset;
2910
2911 if (mips_debug)
2912 {
2913 int i;
5af949e3
UW
2914 fprintf_unfiltered (gdb_stdlog, " @%s ",
2915 paddress (gdbarch, addr));
9ace0497
AC
2916 for (i = 0; i < partial_len; i++)
2917 {
6d82d43b 2918 fprintf_unfiltered (gdb_stdlog, "%02x",
cb3d25d1 2919 val[i] & 0xff);
9ace0497
AC
2920 }
2921 }
2922 write_memory (addr, val, partial_len);
c906108c
SS
2923 }
2924
f09ded24
AC
2925 /* Note!!! This is NOT an else clause. Odd sized
2926 structs may go thru BOTH paths. Floating point
46e0f506 2927 arguments will not. */
566f0f7a 2928 /* Write this portion of the argument to a general
6d82d43b 2929 purpose register. */
74ed0bb4
MD
2930 if (argreg <= MIPS_LAST_ARG_REGNUM (gdbarch)
2931 && !fp_register_arg_p (gdbarch, typecode, arg_type))
c906108c 2932 {
6d82d43b 2933 LONGEST regval =
e17a4113 2934 extract_unsigned_integer (val, partial_len, byte_order);
c906108c 2935
9ace0497 2936 if (mips_debug)
acdb74a0 2937 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
9ace0497 2938 argreg,
1a69e1e4 2939 phex (regval, regsize));
9c9acae0 2940 regcache_cooked_write_unsigned (regcache, argreg, regval);
c906108c 2941 argreg++;
c906108c 2942 }
c5aa993b 2943
c906108c
SS
2944 len -= partial_len;
2945 val += partial_len;
2946
566f0f7a 2947 /* Compute the the offset into the stack at which we
6d82d43b 2948 will copy the next parameter.
566f0f7a 2949
566f0f7a 2950 In the new EABI (and the NABI32), the stack_offset
46e0f506 2951 only needs to be adjusted when it has been used. */
c906108c 2952
46e0f506 2953 if (stack_used_p)
1a69e1e4 2954 stack_offset += align_up (partial_len, regsize);
c906108c
SS
2955 }
2956 }
9ace0497
AC
2957 if (mips_debug)
2958 fprintf_unfiltered (gdb_stdlog, "\n");
c906108c
SS
2959 }
2960
f10683bb 2961 regcache_cooked_write_signed (regcache, MIPS_SP_REGNUM, sp);
310e9b6a 2962
0f71a2f6
JM
2963 /* Return adjusted stack pointer. */
2964 return sp;
2965}
2966
a1f5b845 2967/* Determine the return value convention being used. */
6d82d43b 2968
9c8fdbfa 2969static enum return_value_convention
c055b101 2970mips_eabi_return_value (struct gdbarch *gdbarch, struct type *func_type,
9c8fdbfa 2971 struct type *type, struct regcache *regcache,
47a35522 2972 gdb_byte *readbuf, const gdb_byte *writebuf)
6d82d43b 2973{
609ba780
JM
2974 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2975 int fp_return_type = 0;
2976 int offset, regnum, xfer;
2977
9c8fdbfa
AC
2978 if (TYPE_LENGTH (type) > 2 * mips_abi_regsize (gdbarch))
2979 return RETURN_VALUE_STRUCT_CONVENTION;
609ba780
JM
2980
2981 /* Floating point type? */
2982 if (tdep->mips_fpu_type != MIPS_FPU_NONE)
2983 {
2984 if (TYPE_CODE (type) == TYPE_CODE_FLT)
2985 fp_return_type = 1;
2986 /* Structs with a single field of float type
2987 are returned in a floating point register. */
2988 if ((TYPE_CODE (type) == TYPE_CODE_STRUCT
2989 || TYPE_CODE (type) == TYPE_CODE_UNION)
2990 && TYPE_NFIELDS (type) == 1)
2991 {
2992 struct type *fieldtype = TYPE_FIELD_TYPE (type, 0);
2993
2994 if (TYPE_CODE (check_typedef (fieldtype)) == TYPE_CODE_FLT)
2995 fp_return_type = 1;
2996 }
2997 }
2998
2999 if (fp_return_type)
3000 {
3001 /* A floating-point value belongs in the least significant part
3002 of FP0/FP1. */
3003 if (mips_debug)
3004 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
3005 regnum = mips_regnum (gdbarch)->fp0;
3006 }
3007 else
3008 {
3009 /* An integer value goes in V0/V1. */
3010 if (mips_debug)
3011 fprintf_unfiltered (gdb_stderr, "Return scalar in $v0\n");
3012 regnum = MIPS_V0_REGNUM;
3013 }
3014 for (offset = 0;
3015 offset < TYPE_LENGTH (type);
3016 offset += mips_abi_regsize (gdbarch), regnum++)
3017 {
3018 xfer = mips_abi_regsize (gdbarch);
3019 if (offset + xfer > TYPE_LENGTH (type))
3020 xfer = TYPE_LENGTH (type) - offset;
3021 mips_xfer_register (gdbarch, regcache,
3022 gdbarch_num_regs (gdbarch) + regnum, xfer,
3023 gdbarch_byte_order (gdbarch), readbuf, writebuf,
3024 offset);
3025 }
3026
9c8fdbfa 3027 return RETURN_VALUE_REGISTER_CONVENTION;
6d82d43b
AC
3028}
3029
6d82d43b
AC
3030
3031/* N32/N64 ABI stuff. */
ebafbe83 3032
8d26208a
DJ
3033/* Search for a naturally aligned double at OFFSET inside a struct
3034 ARG_TYPE. The N32 / N64 ABIs pass these in floating point
3035 registers. */
3036
3037static int
74ed0bb4
MD
3038mips_n32n64_fp_arg_chunk_p (struct gdbarch *gdbarch, struct type *arg_type,
3039 int offset)
8d26208a
DJ
3040{
3041 int i;
3042
3043 if (TYPE_CODE (arg_type) != TYPE_CODE_STRUCT)
3044 return 0;
3045
74ed0bb4 3046 if (MIPS_FPU_TYPE (gdbarch) != MIPS_FPU_DOUBLE)
8d26208a
DJ
3047 return 0;
3048
3049 if (TYPE_LENGTH (arg_type) < offset + MIPS64_REGSIZE)
3050 return 0;
3051
3052 for (i = 0; i < TYPE_NFIELDS (arg_type); i++)
3053 {
3054 int pos;
3055 struct type *field_type;
3056
3057 /* We're only looking at normal fields. */
5bc60cfb 3058 if (field_is_static (&TYPE_FIELD (arg_type, i))
8d26208a
DJ
3059 || (TYPE_FIELD_BITPOS (arg_type, i) % 8) != 0)
3060 continue;
3061
3062 /* If we have gone past the offset, there is no double to pass. */
3063 pos = TYPE_FIELD_BITPOS (arg_type, i) / 8;
3064 if (pos > offset)
3065 return 0;
3066
3067 field_type = check_typedef (TYPE_FIELD_TYPE (arg_type, i));
3068
3069 /* If this field is entirely before the requested offset, go
3070 on to the next one. */
3071 if (pos + TYPE_LENGTH (field_type) <= offset)
3072 continue;
3073
3074 /* If this is our special aligned double, we can stop. */
3075 if (TYPE_CODE (field_type) == TYPE_CODE_FLT
3076 && TYPE_LENGTH (field_type) == MIPS64_REGSIZE)
3077 return 1;
3078
3079 /* This field starts at or before the requested offset, and
3080 overlaps it. If it is a structure, recurse inwards. */
74ed0bb4 3081 return mips_n32n64_fp_arg_chunk_p (gdbarch, field_type, offset - pos);
8d26208a
DJ
3082 }
3083
3084 return 0;
3085}
3086
f7ab6ec6 3087static CORE_ADDR
7d9b040b 3088mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6d82d43b
AC
3089 struct regcache *regcache, CORE_ADDR bp_addr,
3090 int nargs, struct value **args, CORE_ADDR sp,
3091 int struct_return, CORE_ADDR struct_addr)
cb3d25d1
MS
3092{
3093 int argreg;
3094 int float_argreg;
3095 int argnum;
3096 int len = 0;
3097 int stack_offset = 0;
480d3dd2 3098 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
e17a4113 3099 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7d9b040b 3100 CORE_ADDR func_addr = find_function_addr (function, NULL);
cb3d25d1 3101
25ab4790
AC
3102 /* For shared libraries, "t9" needs to point at the function
3103 address. */
4c7d22cb 3104 regcache_cooked_write_signed (regcache, MIPS_T9_REGNUM, func_addr);
25ab4790
AC
3105
3106 /* Set the return address register to point to the entry point of
3107 the program, where a breakpoint lies in wait. */
4c7d22cb 3108 regcache_cooked_write_signed (regcache, MIPS_RA_REGNUM, bp_addr);
25ab4790 3109
cb3d25d1
MS
3110 /* First ensure that the stack and structure return address (if any)
3111 are properly aligned. The stack has to be at least 64-bit
3112 aligned even on 32-bit machines, because doubles must be 64-bit
3113 aligned. For n32 and n64, stack frames need to be 128-bit
3114 aligned, so we round to this widest known alignment. */
3115
5b03f266
AC
3116 sp = align_down (sp, 16);
3117 struct_addr = align_down (struct_addr, 16);
cb3d25d1
MS
3118
3119 /* Now make space on the stack for the args. */
3120 for (argnum = 0; argnum < nargs; argnum++)
1a69e1e4 3121 len += align_up (TYPE_LENGTH (value_type (args[argnum])), MIPS64_REGSIZE);
5b03f266 3122 sp -= align_up (len, 16);
cb3d25d1
MS
3123
3124 if (mips_debug)
6d82d43b 3125 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
3126 "mips_n32n64_push_dummy_call: sp=%s allocated %ld\n",
3127 paddress (gdbarch, sp), (long) align_up (len, 16));
cb3d25d1
MS
3128
3129 /* Initialize the integer and float register pointers. */
4c7d22cb 3130 argreg = MIPS_A0_REGNUM;
72a155b4 3131 float_argreg = mips_fpa0_regnum (gdbarch);
cb3d25d1 3132
46e0f506 3133 /* The struct_return pointer occupies the first parameter-passing reg. */
cb3d25d1
MS
3134 if (struct_return)
3135 {
3136 if (mips_debug)
3137 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
3138 "mips_n32n64_push_dummy_call: struct_return reg=%d %s\n",
3139 argreg, paddress (gdbarch, struct_addr));
9c9acae0 3140 regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
cb3d25d1
MS
3141 }
3142
3143 /* Now load as many as possible of the first arguments into
3144 registers, and push the rest onto the stack. Loop thru args
3145 from first to last. */
3146 for (argnum = 0; argnum < nargs; argnum++)
3147 {
47a35522 3148 const gdb_byte *val;
cb3d25d1 3149 struct value *arg = args[argnum];
4991999e 3150 struct type *arg_type = check_typedef (value_type (arg));
cb3d25d1
MS
3151 int len = TYPE_LENGTH (arg_type);
3152 enum type_code typecode = TYPE_CODE (arg_type);
3153
3154 if (mips_debug)
3155 fprintf_unfiltered (gdb_stdlog,
25ab4790 3156 "mips_n32n64_push_dummy_call: %d len=%d type=%d",
cb3d25d1
MS
3157 argnum + 1, len, (int) typecode);
3158
47a35522 3159 val = value_contents (arg);
cb3d25d1 3160
5b68030f
JM
3161 /* A 128-bit long double value requires an even-odd pair of
3162 floating-point registers. */
3163 if (len == 16
3164 && fp_register_arg_p (gdbarch, typecode, arg_type)
3165 && (float_argreg & 1))
3166 {
3167 float_argreg++;
3168 argreg++;
3169 }
3170
74ed0bb4
MD
3171 if (fp_register_arg_p (gdbarch, typecode, arg_type)
3172 && argreg <= MIPS_LAST_ARG_REGNUM (gdbarch))
cb3d25d1
MS
3173 {
3174 /* This is a floating point value that fits entirely
5b68030f
JM
3175 in a single register or a pair of registers. */
3176 int reglen = (len <= MIPS64_REGSIZE ? len : MIPS64_REGSIZE);
e17a4113 3177 LONGEST regval = extract_unsigned_integer (val, reglen, byte_order);
cb3d25d1
MS
3178 if (mips_debug)
3179 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
5b68030f 3180 float_argreg, phex (regval, reglen));
8d26208a 3181 regcache_cooked_write_unsigned (regcache, float_argreg, regval);
cb3d25d1
MS
3182
3183 if (mips_debug)
3184 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
5b68030f 3185 argreg, phex (regval, reglen));
9c9acae0 3186 regcache_cooked_write_unsigned (regcache, argreg, regval);
8d26208a
DJ
3187 float_argreg++;
3188 argreg++;
5b68030f
JM
3189 if (len == 16)
3190 {
e17a4113
UW
3191 regval = extract_unsigned_integer (val + reglen,
3192 reglen, byte_order);
5b68030f
JM
3193 if (mips_debug)
3194 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3195 float_argreg, phex (regval, reglen));
3196 regcache_cooked_write_unsigned (regcache, float_argreg, regval);
3197
3198 if (mips_debug)
3199 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3200 argreg, phex (regval, reglen));
3201 regcache_cooked_write_unsigned (regcache, argreg, regval);
3202 float_argreg++;
3203 argreg++;
3204 }
cb3d25d1
MS
3205 }
3206 else
3207 {
3208 /* Copy the argument to general registers or the stack in
3209 register-sized pieces. Large arguments are split between
3210 registers and stack. */
ab2e1992
MR
3211 /* For N32/N64, structs, unions, or other composite types are
3212 treated as a sequence of doublewords, and are passed in integer
3213 or floating point registers as though they were simple scalar
3214 parameters to the extent that they fit, with any excess on the
3215 stack packed according to the normal memory layout of the
3216 object.
3217 The caller does not reserve space for the register arguments;
3218 the callee is responsible for reserving it if required. */
cb3d25d1 3219 /* Note: Floating-point values that didn't fit into an FP
6d82d43b 3220 register are only written to memory. */
cb3d25d1
MS
3221 while (len > 0)
3222 {
ad018eee 3223 /* Remember if the argument was written to the stack. */
cb3d25d1 3224 int stack_used_p = 0;
1a69e1e4 3225 int partial_len = (len < MIPS64_REGSIZE ? len : MIPS64_REGSIZE);
cb3d25d1
MS
3226
3227 if (mips_debug)
3228 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
3229 partial_len);
3230
74ed0bb4
MD
3231 if (fp_register_arg_p (gdbarch, typecode, arg_type))
3232 gdb_assert (argreg > MIPS_LAST_ARG_REGNUM (gdbarch));
8d26208a 3233
cb3d25d1 3234 /* Write this portion of the argument to the stack. */
74ed0bb4 3235 if (argreg > MIPS_LAST_ARG_REGNUM (gdbarch))
cb3d25d1
MS
3236 {
3237 /* Should shorter than int integer values be
3238 promoted to int before being stored? */
3239 int longword_offset = 0;
3240 CORE_ADDR addr;
3241 stack_used_p = 1;
72a155b4 3242 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
cb3d25d1 3243 {
1a69e1e4 3244 if ((typecode == TYPE_CODE_INT
5b68030f 3245 || typecode == TYPE_CODE_PTR)
1a69e1e4
DJ
3246 && len <= 4)
3247 longword_offset = MIPS64_REGSIZE - len;
cb3d25d1
MS
3248 }
3249
3250 if (mips_debug)
3251 {
5af949e3
UW
3252 fprintf_unfiltered (gdb_stdlog, " - stack_offset=%s",
3253 paddress (gdbarch, stack_offset));
3254 fprintf_unfiltered (gdb_stdlog, " longword_offset=%s",
3255 paddress (gdbarch, longword_offset));
cb3d25d1
MS
3256 }
3257
3258 addr = sp + stack_offset + longword_offset;
3259
3260 if (mips_debug)
3261 {
3262 int i;
5af949e3
UW
3263 fprintf_unfiltered (gdb_stdlog, " @%s ",
3264 paddress (gdbarch, addr));
cb3d25d1
MS
3265 for (i = 0; i < partial_len; i++)
3266 {
6d82d43b 3267 fprintf_unfiltered (gdb_stdlog, "%02x",
cb3d25d1
MS
3268 val[i] & 0xff);
3269 }
3270 }
3271 write_memory (addr, val, partial_len);
3272 }
3273
3274 /* Note!!! This is NOT an else clause. Odd sized
8d26208a 3275 structs may go thru BOTH paths. */
cb3d25d1 3276 /* Write this portion of the argument to a general
6d82d43b 3277 purpose register. */
74ed0bb4 3278 if (argreg <= MIPS_LAST_ARG_REGNUM (gdbarch))
cb3d25d1 3279 {
5863b5d5
MR
3280 LONGEST regval;
3281
3282 /* Sign extend pointers, 32-bit integers and signed
3283 16-bit and 8-bit integers; everything else is taken
3284 as is. */
3285
3286 if ((partial_len == 4
3287 && (typecode == TYPE_CODE_PTR
3288 || typecode == TYPE_CODE_INT))
3289 || (partial_len < 4
3290 && typecode == TYPE_CODE_INT
3291 && !TYPE_UNSIGNED (arg_type)))
e17a4113
UW
3292 regval = extract_signed_integer (val, partial_len,
3293 byte_order);
5863b5d5 3294 else
e17a4113
UW
3295 regval = extract_unsigned_integer (val, partial_len,
3296 byte_order);
cb3d25d1
MS
3297
3298 /* A non-floating-point argument being passed in a
3299 general register. If a struct or union, and if
3300 the remaining length is smaller than the register
3301 size, we have to adjust the register value on
3302 big endian targets.
3303
3304 It does not seem to be necessary to do the
1a69e1e4 3305 same for integral types. */
cb3d25d1 3306
72a155b4 3307 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
1a69e1e4 3308 && partial_len < MIPS64_REGSIZE
06f9a1af
MR
3309 && (typecode == TYPE_CODE_STRUCT
3310 || typecode == TYPE_CODE_UNION))
1a69e1e4 3311 regval <<= ((MIPS64_REGSIZE - partial_len)
9ecf7166 3312 * TARGET_CHAR_BIT);
cb3d25d1
MS
3313
3314 if (mips_debug)
3315 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
3316 argreg,
1a69e1e4 3317 phex (regval, MIPS64_REGSIZE));
9c9acae0 3318 regcache_cooked_write_unsigned (regcache, argreg, regval);
8d26208a 3319
74ed0bb4 3320 if (mips_n32n64_fp_arg_chunk_p (gdbarch, arg_type,
8d26208a
DJ
3321 TYPE_LENGTH (arg_type) - len))
3322 {
3323 if (mips_debug)
3324 fprintf_filtered (gdb_stdlog, " - fpreg=%d val=%s",
3325 float_argreg,
3326 phex (regval, MIPS64_REGSIZE));
3327 regcache_cooked_write_unsigned (regcache, float_argreg,
3328 regval);
3329 }
3330
3331 float_argreg++;
cb3d25d1
MS
3332 argreg++;
3333 }
3334
3335 len -= partial_len;
3336 val += partial_len;
3337
3338 /* Compute the the offset into the stack at which we
6d82d43b 3339 will copy the next parameter.
cb3d25d1
MS
3340
3341 In N32 (N64?), the stack_offset only needs to be
3342 adjusted when it has been used. */
3343
3344 if (stack_used_p)
1a69e1e4 3345 stack_offset += align_up (partial_len, MIPS64_REGSIZE);
cb3d25d1
MS
3346 }
3347 }
3348 if (mips_debug)
3349 fprintf_unfiltered (gdb_stdlog, "\n");
3350 }
3351
f10683bb 3352 regcache_cooked_write_signed (regcache, MIPS_SP_REGNUM, sp);
310e9b6a 3353
cb3d25d1
MS
3354 /* Return adjusted stack pointer. */
3355 return sp;
3356}
3357
6d82d43b 3358static enum return_value_convention
c055b101 3359mips_n32n64_return_value (struct gdbarch *gdbarch, struct type *func_type,
6d82d43b 3360 struct type *type, struct regcache *regcache,
47a35522 3361 gdb_byte *readbuf, const gdb_byte *writebuf)
ebafbe83 3362{
72a155b4 3363 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
b18bb924
MR
3364
3365 /* From MIPSpro N32 ABI Handbook, Document Number: 007-2816-004
3366
3367 Function results are returned in $2 (and $3 if needed), or $f0 (and $f2
3368 if needed), as appropriate for the type. Composite results (struct,
3369 union, or array) are returned in $2/$f0 and $3/$f2 according to the
3370 following rules:
3371
3372 * A struct with only one or two floating point fields is returned in $f0
3373 (and $f2 if necessary). This is a generalization of the Fortran COMPLEX
3374 case.
3375
3376 * Any other struct or union results of at most 128 bits are returned in
3377 $2 (first 64 bits) and $3 (remainder, if necessary).
3378
3379 * Larger composite results are handled by converting the function to a
3380 procedure with an implicit first parameter, which is a pointer to an area
3381 reserved by the caller to receive the result. [The o32-bit ABI requires
3382 that all composite results be handled by conversion to implicit first
3383 parameters. The MIPS/SGI Fortran implementation has always made a
3384 specific exception to return COMPLEX results in the floating point
3385 registers.] */
3386
3387 if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1a69e1e4 3388 || TYPE_LENGTH (type) > 2 * MIPS64_REGSIZE)
6d82d43b 3389 return RETURN_VALUE_STRUCT_CONVENTION;
d05f6826
DJ
3390 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3391 && TYPE_LENGTH (type) == 16
3392 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3393 {
3394 /* A 128-bit floating-point value fills both $f0 and $f2. The
3395 two registers are used in the same as memory order, so the
3396 eight bytes with the lower memory address are in $f0. */
3397 if (mips_debug)
3398 fprintf_unfiltered (gdb_stderr, "Return float in $f0 and $f2\n");
ba32f989 3399 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3400 gdbarch_num_regs (gdbarch)
3401 + mips_regnum (gdbarch)->fp0,
3402 8, gdbarch_byte_order (gdbarch),
4c6b5505 3403 readbuf, writebuf, 0);
ba32f989 3404 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3405 gdbarch_num_regs (gdbarch)
3406 + mips_regnum (gdbarch)->fp0 + 2,
3407 8, gdbarch_byte_order (gdbarch),
4c6b5505 3408 readbuf ? readbuf + 8 : readbuf,
d05f6826
DJ
3409 writebuf ? writebuf + 8 : writebuf, 0);
3410 return RETURN_VALUE_REGISTER_CONVENTION;
3411 }
6d82d43b
AC
3412 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3413 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3414 {
59aa1faa 3415 /* A single or double floating-point value that fits in FP0. */
6d82d43b
AC
3416 if (mips_debug)
3417 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
ba32f989 3418 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3419 gdbarch_num_regs (gdbarch)
3420 + mips_regnum (gdbarch)->fp0,
6d82d43b 3421 TYPE_LENGTH (type),
72a155b4 3422 gdbarch_byte_order (gdbarch),
4c6b5505 3423 readbuf, writebuf, 0);
6d82d43b
AC
3424 return RETURN_VALUE_REGISTER_CONVENTION;
3425 }
3426 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3427 && TYPE_NFIELDS (type) <= 2
3428 && TYPE_NFIELDS (type) >= 1
3429 && ((TYPE_NFIELDS (type) == 1
b18bb924 3430 && (TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type, 0)))
6d82d43b
AC
3431 == TYPE_CODE_FLT))
3432 || (TYPE_NFIELDS (type) == 2
b18bb924 3433 && (TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type, 0)))
6d82d43b 3434 == TYPE_CODE_FLT)
b18bb924 3435 && (TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type, 1)))
5b68030f 3436 == TYPE_CODE_FLT))))
6d82d43b
AC
3437 {
3438 /* A struct that contains one or two floats. Each value is part
3439 in the least significant part of their floating point
5b68030f 3440 register (or GPR, for soft float). */
6d82d43b
AC
3441 int regnum;
3442 int field;
5b68030f
JM
3443 for (field = 0, regnum = (tdep->mips_fpu_type != MIPS_FPU_NONE
3444 ? mips_regnum (gdbarch)->fp0
3445 : MIPS_V0_REGNUM);
6d82d43b
AC
3446 field < TYPE_NFIELDS (type); field++, regnum += 2)
3447 {
3448 int offset = (FIELD_BITPOS (TYPE_FIELDS (type)[field])
3449 / TARGET_CHAR_BIT);
3450 if (mips_debug)
3451 fprintf_unfiltered (gdb_stderr, "Return float struct+%d\n",
3452 offset);
5b68030f
JM
3453 if (TYPE_LENGTH (TYPE_FIELD_TYPE (type, field)) == 16)
3454 {
3455 /* A 16-byte long double field goes in two consecutive
3456 registers. */
3457 mips_xfer_register (gdbarch, regcache,
3458 gdbarch_num_regs (gdbarch) + regnum,
3459 8,
3460 gdbarch_byte_order (gdbarch),
3461 readbuf, writebuf, offset);
3462 mips_xfer_register (gdbarch, regcache,
3463 gdbarch_num_regs (gdbarch) + regnum + 1,
3464 8,
3465 gdbarch_byte_order (gdbarch),
3466 readbuf, writebuf, offset + 8);
3467 }
3468 else
3469 mips_xfer_register (gdbarch, regcache,
3470 gdbarch_num_regs (gdbarch) + regnum,
3471 TYPE_LENGTH (TYPE_FIELD_TYPE (type, field)),
3472 gdbarch_byte_order (gdbarch),
3473 readbuf, writebuf, offset);
6d82d43b
AC
3474 }
3475 return RETURN_VALUE_REGISTER_CONVENTION;
3476 }
3477 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3478 || TYPE_CODE (type) == TYPE_CODE_UNION)
3479 {
3480 /* A structure or union. Extract the left justified value,
3481 regardless of the byte order. I.e. DO NOT USE
3482 mips_xfer_lower. */
3483 int offset;
3484 int regnum;
4c7d22cb 3485 for (offset = 0, regnum = MIPS_V0_REGNUM;
6d82d43b 3486 offset < TYPE_LENGTH (type);
72a155b4 3487 offset += register_size (gdbarch, regnum), regnum++)
6d82d43b 3488 {
72a155b4 3489 int xfer = register_size (gdbarch, regnum);
6d82d43b
AC
3490 if (offset + xfer > TYPE_LENGTH (type))
3491 xfer = TYPE_LENGTH (type) - offset;
3492 if (mips_debug)
3493 fprintf_unfiltered (gdb_stderr, "Return struct+%d:%d in $%d\n",
3494 offset, xfer, regnum);
ba32f989
DJ
3495 mips_xfer_register (gdbarch, regcache,
3496 gdbarch_num_regs (gdbarch) + regnum,
72a155b4
UW
3497 xfer, BFD_ENDIAN_UNKNOWN, readbuf, writebuf,
3498 offset);
6d82d43b
AC
3499 }
3500 return RETURN_VALUE_REGISTER_CONVENTION;
3501 }
3502 else
3503 {
3504 /* A scalar extract each part but least-significant-byte
3505 justified. */
3506 int offset;
3507 int regnum;
4c7d22cb 3508 for (offset = 0, regnum = MIPS_V0_REGNUM;
6d82d43b 3509 offset < TYPE_LENGTH (type);
72a155b4 3510 offset += register_size (gdbarch, regnum), regnum++)
6d82d43b 3511 {
72a155b4 3512 int xfer = register_size (gdbarch, regnum);
6d82d43b
AC
3513 if (offset + xfer > TYPE_LENGTH (type))
3514 xfer = TYPE_LENGTH (type) - offset;
3515 if (mips_debug)
3516 fprintf_unfiltered (gdb_stderr, "Return scalar+%d:%d in $%d\n",
3517 offset, xfer, regnum);
ba32f989
DJ
3518 mips_xfer_register (gdbarch, regcache,
3519 gdbarch_num_regs (gdbarch) + regnum,
72a155b4 3520 xfer, gdbarch_byte_order (gdbarch),
4c6b5505 3521 readbuf, writebuf, offset);
6d82d43b
AC
3522 }
3523 return RETURN_VALUE_REGISTER_CONVENTION;
3524 }
3525}
3526
3527/* O32 ABI stuff. */
3528
3529static CORE_ADDR
7d9b040b 3530mips_o32_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6d82d43b
AC
3531 struct regcache *regcache, CORE_ADDR bp_addr,
3532 int nargs, struct value **args, CORE_ADDR sp,
3533 int struct_return, CORE_ADDR struct_addr)
3534{
3535 int argreg;
3536 int float_argreg;
3537 int argnum;
3538 int len = 0;
3539 int stack_offset = 0;
3540 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
e17a4113 3541 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7d9b040b 3542 CORE_ADDR func_addr = find_function_addr (function, NULL);
6d82d43b
AC
3543
3544 /* For shared libraries, "t9" needs to point at the function
3545 address. */
4c7d22cb 3546 regcache_cooked_write_signed (regcache, MIPS_T9_REGNUM, func_addr);
6d82d43b
AC
3547
3548 /* Set the return address register to point to the entry point of
3549 the program, where a breakpoint lies in wait. */
4c7d22cb 3550 regcache_cooked_write_signed (regcache, MIPS_RA_REGNUM, bp_addr);
6d82d43b
AC
3551
3552 /* First ensure that the stack and structure return address (if any)
3553 are properly aligned. The stack has to be at least 64-bit
3554 aligned even on 32-bit machines, because doubles must be 64-bit
ebafbe83
MS
3555 aligned. For n32 and n64, stack frames need to be 128-bit
3556 aligned, so we round to this widest known alignment. */
3557
5b03f266
AC
3558 sp = align_down (sp, 16);
3559 struct_addr = align_down (struct_addr, 16);
ebafbe83
MS
3560
3561 /* Now make space on the stack for the args. */
3562 for (argnum = 0; argnum < nargs; argnum++)
968b5391
MR
3563 {
3564 struct type *arg_type = check_typedef (value_type (args[argnum]));
3565 int arglen = TYPE_LENGTH (arg_type);
3566
3567 /* Align to double-word if necessary. */
2afd3f0a 3568 if (mips_type_needs_double_align (arg_type))
1a69e1e4 3569 len = align_up (len, MIPS32_REGSIZE * 2);
968b5391 3570 /* Allocate space on the stack. */
1a69e1e4 3571 len += align_up (arglen, MIPS32_REGSIZE);
968b5391 3572 }
5b03f266 3573 sp -= align_up (len, 16);
ebafbe83
MS
3574
3575 if (mips_debug)
6d82d43b 3576 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
3577 "mips_o32_push_dummy_call: sp=%s allocated %ld\n",
3578 paddress (gdbarch, sp), (long) align_up (len, 16));
ebafbe83
MS
3579
3580 /* Initialize the integer and float register pointers. */
4c7d22cb 3581 argreg = MIPS_A0_REGNUM;
72a155b4 3582 float_argreg = mips_fpa0_regnum (gdbarch);
ebafbe83 3583
bcb0cc15 3584 /* The struct_return pointer occupies the first parameter-passing reg. */
ebafbe83
MS
3585 if (struct_return)
3586 {
3587 if (mips_debug)
3588 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
3589 "mips_o32_push_dummy_call: struct_return reg=%d %s\n",
3590 argreg, paddress (gdbarch, struct_addr));
9c9acae0 3591 regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
1a69e1e4 3592 stack_offset += MIPS32_REGSIZE;
ebafbe83
MS
3593 }
3594
3595 /* Now load as many as possible of the first arguments into
3596 registers, and push the rest onto the stack. Loop thru args
3597 from first to last. */
3598 for (argnum = 0; argnum < nargs; argnum++)
3599 {
47a35522 3600 const gdb_byte *val;
ebafbe83 3601 struct value *arg = args[argnum];
4991999e 3602 struct type *arg_type = check_typedef (value_type (arg));
ebafbe83
MS
3603 int len = TYPE_LENGTH (arg_type);
3604 enum type_code typecode = TYPE_CODE (arg_type);
3605
3606 if (mips_debug)
3607 fprintf_unfiltered (gdb_stdlog,
25ab4790 3608 "mips_o32_push_dummy_call: %d len=%d type=%d",
46cac009
AC
3609 argnum + 1, len, (int) typecode);
3610
47a35522 3611 val = value_contents (arg);
46cac009
AC
3612
3613 /* 32-bit ABIs always start floating point arguments in an
3614 even-numbered floating point register. Round the FP register
3615 up before the check to see if there are any FP registers
3616 left. O32/O64 targets also pass the FP in the integer
3617 registers so also round up normal registers. */
74ed0bb4 3618 if (fp_register_arg_p (gdbarch, typecode, arg_type))
46cac009
AC
3619 {
3620 if ((float_argreg & 1))
3621 float_argreg++;
3622 }
3623
3624 /* Floating point arguments passed in registers have to be
3625 treated specially. On 32-bit architectures, doubles
3626 are passed in register pairs; the even register gets
3627 the low word, and the odd register gets the high word.
3628 On O32/O64, the first two floating point arguments are
3629 also copied to general registers, because MIPS16 functions
3630 don't use float registers for arguments. This duplication of
3631 arguments in general registers can't hurt non-MIPS16 functions
3632 because those registers are normally skipped. */
3633
74ed0bb4
MD
3634 if (fp_register_arg_p (gdbarch, typecode, arg_type)
3635 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM (gdbarch))
46cac009 3636 {
8b07f6d8 3637 if (register_size (gdbarch, float_argreg) < 8 && len == 8)
46cac009 3638 {
72a155b4 3639 int low_offset = gdbarch_byte_order (gdbarch)
4c6b5505 3640 == BFD_ENDIAN_BIG ? 4 : 0;
46cac009
AC
3641 unsigned long regval;
3642
3643 /* Write the low word of the double to the even register(s). */
e17a4113
UW
3644 regval = extract_unsigned_integer (val + low_offset,
3645 4, byte_order);
46cac009
AC
3646 if (mips_debug)
3647 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3648 float_argreg, phex (regval, 4));
9c9acae0 3649 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
46cac009
AC
3650 if (mips_debug)
3651 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3652 argreg, phex (regval, 4));
9c9acae0 3653 regcache_cooked_write_unsigned (regcache, argreg++, regval);
46cac009
AC
3654
3655 /* Write the high word of the double to the odd register(s). */
e17a4113
UW
3656 regval = extract_unsigned_integer (val + 4 - low_offset,
3657 4, byte_order);
46cac009
AC
3658 if (mips_debug)
3659 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3660 float_argreg, phex (regval, 4));
9c9acae0 3661 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
46cac009
AC
3662
3663 if (mips_debug)
3664 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3665 argreg, phex (regval, 4));
9c9acae0 3666 regcache_cooked_write_unsigned (regcache, argreg++, regval);
46cac009
AC
3667 }
3668 else
3669 {
3670 /* This is a floating point value that fits entirely
3671 in a single register. */
3672 /* On 32 bit ABI's the float_argreg is further adjusted
6d82d43b 3673 above to ensure that it is even register aligned. */
e17a4113 3674 LONGEST regval = extract_unsigned_integer (val, len, byte_order);
46cac009
AC
3675 if (mips_debug)
3676 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3677 float_argreg, phex (regval, len));
9c9acae0 3678 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
5b68030f
JM
3679 /* Although two FP registers are reserved for each
3680 argument, only one corresponding integer register is
3681 reserved. */
46cac009
AC
3682 if (mips_debug)
3683 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3684 argreg, phex (regval, len));
5b68030f 3685 regcache_cooked_write_unsigned (regcache, argreg++, regval);
46cac009
AC
3686 }
3687 /* Reserve space for the FP register. */
1a69e1e4 3688 stack_offset += align_up (len, MIPS32_REGSIZE);
46cac009
AC
3689 }
3690 else
3691 {
3692 /* Copy the argument to general registers or the stack in
3693 register-sized pieces. Large arguments are split between
3694 registers and stack. */
1a69e1e4
DJ
3695 /* Note: structs whose size is not a multiple of MIPS32_REGSIZE
3696 are treated specially: Irix cc passes
d5ac5a39
AC
3697 them in registers where gcc sometimes puts them on the
3698 stack. For maximum compatibility, we will put them in
3699 both places. */
1a69e1e4
DJ
3700 int odd_sized_struct = (len > MIPS32_REGSIZE
3701 && len % MIPS32_REGSIZE != 0);
46cac009
AC
3702 /* Structures should be aligned to eight bytes (even arg registers)
3703 on MIPS_ABI_O32, if their first member has double precision. */
2afd3f0a 3704 if (mips_type_needs_double_align (arg_type))
46cac009
AC
3705 {
3706 if ((argreg & 1))
968b5391
MR
3707 {
3708 argreg++;
1a69e1e4 3709 stack_offset += MIPS32_REGSIZE;
968b5391 3710 }
46cac009 3711 }
46cac009
AC
3712 while (len > 0)
3713 {
3714 /* Remember if the argument was written to the stack. */
3715 int stack_used_p = 0;
1a69e1e4 3716 int partial_len = (len < MIPS32_REGSIZE ? len : MIPS32_REGSIZE);
46cac009
AC
3717
3718 if (mips_debug)
3719 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
3720 partial_len);
3721
3722 /* Write this portion of the argument to the stack. */
74ed0bb4 3723 if (argreg > MIPS_LAST_ARG_REGNUM (gdbarch)
968b5391 3724 || odd_sized_struct)
46cac009
AC
3725 {
3726 /* Should shorter than int integer values be
3727 promoted to int before being stored? */
3728 int longword_offset = 0;
3729 CORE_ADDR addr;
3730 stack_used_p = 1;
46cac009
AC
3731
3732 if (mips_debug)
3733 {
5af949e3
UW
3734 fprintf_unfiltered (gdb_stdlog, " - stack_offset=%s",
3735 paddress (gdbarch, stack_offset));
3736 fprintf_unfiltered (gdb_stdlog, " longword_offset=%s",
3737 paddress (gdbarch, longword_offset));
46cac009
AC
3738 }
3739
3740 addr = sp + stack_offset + longword_offset;
3741
3742 if (mips_debug)
3743 {
3744 int i;
5af949e3
UW
3745 fprintf_unfiltered (gdb_stdlog, " @%s ",
3746 paddress (gdbarch, addr));
46cac009
AC
3747 for (i = 0; i < partial_len; i++)
3748 {
6d82d43b 3749 fprintf_unfiltered (gdb_stdlog, "%02x",
46cac009
AC
3750 val[i] & 0xff);
3751 }
3752 }
3753 write_memory (addr, val, partial_len);
3754 }
3755
3756 /* Note!!! This is NOT an else clause. Odd sized
968b5391 3757 structs may go thru BOTH paths. */
46cac009 3758 /* Write this portion of the argument to a general
6d82d43b 3759 purpose register. */
74ed0bb4 3760 if (argreg <= MIPS_LAST_ARG_REGNUM (gdbarch))
46cac009 3761 {
e17a4113
UW
3762 LONGEST regval = extract_signed_integer (val, partial_len,
3763 byte_order);
4246e332 3764 /* Value may need to be sign extended, because
1b13c4f6 3765 mips_isa_regsize() != mips_abi_regsize(). */
46cac009
AC
3766
3767 /* A non-floating-point argument being passed in a
3768 general register. If a struct or union, and if
3769 the remaining length is smaller than the register
3770 size, we have to adjust the register value on
3771 big endian targets.
3772
3773 It does not seem to be necessary to do the
3774 same for integral types.
3775
3776 Also don't do this adjustment on O64 binaries.
3777
3778 cagney/2001-07-23: gdb/179: Also, GCC, when
3779 outputting LE O32 with sizeof (struct) <
e914cb17
MR
3780 mips_abi_regsize(), generates a left shift
3781 as part of storing the argument in a register
3782 (the left shift isn't generated when
1b13c4f6 3783 sizeof (struct) >= mips_abi_regsize()). Since
480d3dd2
AC
3784 it is quite possible that this is GCC
3785 contradicting the LE/O32 ABI, GDB has not been
3786 adjusted to accommodate this. Either someone
3787 needs to demonstrate that the LE/O32 ABI
3788 specifies such a left shift OR this new ABI gets
3789 identified as such and GDB gets tweaked
3790 accordingly. */
3791
72a155b4 3792 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
1a69e1e4 3793 && partial_len < MIPS32_REGSIZE
06f9a1af
MR
3794 && (typecode == TYPE_CODE_STRUCT
3795 || typecode == TYPE_CODE_UNION))
1a69e1e4 3796 regval <<= ((MIPS32_REGSIZE - partial_len)
9ecf7166 3797 * TARGET_CHAR_BIT);
46cac009
AC
3798
3799 if (mips_debug)
3800 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
3801 argreg,
1a69e1e4 3802 phex (regval, MIPS32_REGSIZE));
9c9acae0 3803 regcache_cooked_write_unsigned (regcache, argreg, regval);
46cac009
AC
3804 argreg++;
3805
3806 /* Prevent subsequent floating point arguments from
3807 being passed in floating point registers. */
74ed0bb4 3808 float_argreg = MIPS_LAST_FP_ARG_REGNUM (gdbarch) + 1;
46cac009
AC
3809 }
3810
3811 len -= partial_len;
3812 val += partial_len;
3813
3814 /* Compute the the offset into the stack at which we
6d82d43b 3815 will copy the next parameter.
46cac009 3816
6d82d43b
AC
3817 In older ABIs, the caller reserved space for
3818 registers that contained arguments. This was loosely
3819 refered to as their "home". Consequently, space is
3820 always allocated. */
46cac009 3821
1a69e1e4 3822 stack_offset += align_up (partial_len, MIPS32_REGSIZE);
46cac009
AC
3823 }
3824 }
3825 if (mips_debug)
3826 fprintf_unfiltered (gdb_stdlog, "\n");
3827 }
3828
f10683bb 3829 regcache_cooked_write_signed (regcache, MIPS_SP_REGNUM, sp);
310e9b6a 3830
46cac009
AC
3831 /* Return adjusted stack pointer. */
3832 return sp;
3833}
3834
6d82d43b 3835static enum return_value_convention
c055b101
CV
3836mips_o32_return_value (struct gdbarch *gdbarch, struct type *func_type,
3837 struct type *type, struct regcache *regcache,
47a35522 3838 gdb_byte *readbuf, const gdb_byte *writebuf)
6d82d43b 3839{
72a155b4 3840 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
6d82d43b
AC
3841
3842 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3843 || TYPE_CODE (type) == TYPE_CODE_UNION
3844 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
3845 return RETURN_VALUE_STRUCT_CONVENTION;
3846 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3847 && TYPE_LENGTH (type) == 4 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3848 {
3849 /* A single-precision floating-point value. It fits in the
3850 least significant part of FP0. */
3851 if (mips_debug)
3852 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
ba32f989 3853 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3854 gdbarch_num_regs (gdbarch)
3855 + mips_regnum (gdbarch)->fp0,
6d82d43b 3856 TYPE_LENGTH (type),
72a155b4 3857 gdbarch_byte_order (gdbarch),
4c6b5505 3858 readbuf, writebuf, 0);
6d82d43b
AC
3859 return RETURN_VALUE_REGISTER_CONVENTION;
3860 }
3861 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3862 && TYPE_LENGTH (type) == 8 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3863 {
3864 /* A double-precision floating-point value. The most
3865 significant part goes in FP1, and the least significant in
3866 FP0. */
3867 if (mips_debug)
3868 fprintf_unfiltered (gdb_stderr, "Return float in $fp1/$fp0\n");
72a155b4 3869 switch (gdbarch_byte_order (gdbarch))
6d82d43b
AC
3870 {
3871 case BFD_ENDIAN_LITTLE:
ba32f989 3872 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3873 gdbarch_num_regs (gdbarch)
3874 + mips_regnum (gdbarch)->fp0 +
3875 0, 4, gdbarch_byte_order (gdbarch),
4c6b5505 3876 readbuf, writebuf, 0);
ba32f989 3877 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3878 gdbarch_num_regs (gdbarch)
3879 + mips_regnum (gdbarch)->fp0 + 1,
3880 4, gdbarch_byte_order (gdbarch),
4c6b5505 3881 readbuf, writebuf, 4);
6d82d43b
AC
3882 break;
3883 case BFD_ENDIAN_BIG:
ba32f989 3884 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3885 gdbarch_num_regs (gdbarch)
3886 + mips_regnum (gdbarch)->fp0 + 1,
3887 4, gdbarch_byte_order (gdbarch),
4c6b5505 3888 readbuf, writebuf, 0);
ba32f989 3889 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
3890 gdbarch_num_regs (gdbarch)
3891 + mips_regnum (gdbarch)->fp0 + 0,
3892 4, gdbarch_byte_order (gdbarch),
4c6b5505 3893 readbuf, writebuf, 4);
6d82d43b
AC
3894 break;
3895 default:
e2e0b3e5 3896 internal_error (__FILE__, __LINE__, _("bad switch"));
6d82d43b
AC
3897 }
3898 return RETURN_VALUE_REGISTER_CONVENTION;
3899 }
3900#if 0
3901 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3902 && TYPE_NFIELDS (type) <= 2
3903 && TYPE_NFIELDS (type) >= 1
3904 && ((TYPE_NFIELDS (type) == 1
3905 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3906 == TYPE_CODE_FLT))
3907 || (TYPE_NFIELDS (type) == 2
3908 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3909 == TYPE_CODE_FLT)
3910 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 1))
3911 == TYPE_CODE_FLT)))
3912 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3913 {
3914 /* A struct that contains one or two floats. Each value is part
3915 in the least significant part of their floating point
3916 register.. */
870cd05e 3917 gdb_byte reg[MAX_REGISTER_SIZE];
6d82d43b
AC
3918 int regnum;
3919 int field;
72a155b4 3920 for (field = 0, regnum = mips_regnum (gdbarch)->fp0;
6d82d43b
AC
3921 field < TYPE_NFIELDS (type); field++, regnum += 2)
3922 {
3923 int offset = (FIELD_BITPOS (TYPE_FIELDS (type)[field])
3924 / TARGET_CHAR_BIT);
3925 if (mips_debug)
3926 fprintf_unfiltered (gdb_stderr, "Return float struct+%d\n",
3927 offset);
ba32f989
DJ
3928 mips_xfer_register (gdbarch, regcache,
3929 gdbarch_num_regs (gdbarch) + regnum,
6d82d43b 3930 TYPE_LENGTH (TYPE_FIELD_TYPE (type, field)),
72a155b4 3931 gdbarch_byte_order (gdbarch),
4c6b5505 3932 readbuf, writebuf, offset);
6d82d43b
AC
3933 }
3934 return RETURN_VALUE_REGISTER_CONVENTION;
3935 }
3936#endif
3937#if 0
3938 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3939 || TYPE_CODE (type) == TYPE_CODE_UNION)
3940 {
3941 /* A structure or union. Extract the left justified value,
3942 regardless of the byte order. I.e. DO NOT USE
3943 mips_xfer_lower. */
3944 int offset;
3945 int regnum;
4c7d22cb 3946 for (offset = 0, regnum = MIPS_V0_REGNUM;
6d82d43b 3947 offset < TYPE_LENGTH (type);
72a155b4 3948 offset += register_size (gdbarch, regnum), regnum++)
6d82d43b 3949 {
72a155b4 3950 int xfer = register_size (gdbarch, regnum);
6d82d43b
AC
3951 if (offset + xfer > TYPE_LENGTH (type))
3952 xfer = TYPE_LENGTH (type) - offset;
3953 if (mips_debug)
3954 fprintf_unfiltered (gdb_stderr, "Return struct+%d:%d in $%d\n",
3955 offset, xfer, regnum);
ba32f989
DJ
3956 mips_xfer_register (gdbarch, regcache,
3957 gdbarch_num_regs (gdbarch) + regnum, xfer,
6d82d43b
AC
3958 BFD_ENDIAN_UNKNOWN, readbuf, writebuf, offset);
3959 }
3960 return RETURN_VALUE_REGISTER_CONVENTION;
3961 }
3962#endif
3963 else
3964 {
3965 /* A scalar extract each part but least-significant-byte
3966 justified. o32 thinks registers are 4 byte, regardless of
1a69e1e4 3967 the ISA. */
6d82d43b
AC
3968 int offset;
3969 int regnum;
4c7d22cb 3970 for (offset = 0, regnum = MIPS_V0_REGNUM;
6d82d43b 3971 offset < TYPE_LENGTH (type);
1a69e1e4 3972 offset += MIPS32_REGSIZE, regnum++)
6d82d43b 3973 {
1a69e1e4 3974 int xfer = MIPS32_REGSIZE;
6d82d43b
AC
3975 if (offset + xfer > TYPE_LENGTH (type))
3976 xfer = TYPE_LENGTH (type) - offset;
3977 if (mips_debug)
3978 fprintf_unfiltered (gdb_stderr, "Return scalar+%d:%d in $%d\n",
3979 offset, xfer, regnum);
ba32f989
DJ
3980 mips_xfer_register (gdbarch, regcache,
3981 gdbarch_num_regs (gdbarch) + regnum, xfer,
72a155b4 3982 gdbarch_byte_order (gdbarch),
4c6b5505 3983 readbuf, writebuf, offset);
6d82d43b
AC
3984 }
3985 return RETURN_VALUE_REGISTER_CONVENTION;
3986 }
3987}
3988
3989/* O64 ABI. This is a hacked up kind of 64-bit version of the o32
3990 ABI. */
46cac009
AC
3991
3992static CORE_ADDR
7d9b040b 3993mips_o64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6d82d43b
AC
3994 struct regcache *regcache, CORE_ADDR bp_addr,
3995 int nargs,
3996 struct value **args, CORE_ADDR sp,
3997 int struct_return, CORE_ADDR struct_addr)
46cac009
AC
3998{
3999 int argreg;
4000 int float_argreg;
4001 int argnum;
4002 int len = 0;
4003 int stack_offset = 0;
480d3dd2 4004 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
e17a4113 4005 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7d9b040b 4006 CORE_ADDR func_addr = find_function_addr (function, NULL);
46cac009 4007
25ab4790
AC
4008 /* For shared libraries, "t9" needs to point at the function
4009 address. */
4c7d22cb 4010 regcache_cooked_write_signed (regcache, MIPS_T9_REGNUM, func_addr);
25ab4790
AC
4011
4012 /* Set the return address register to point to the entry point of
4013 the program, where a breakpoint lies in wait. */
4c7d22cb 4014 regcache_cooked_write_signed (regcache, MIPS_RA_REGNUM, bp_addr);
25ab4790 4015
46cac009
AC
4016 /* First ensure that the stack and structure return address (if any)
4017 are properly aligned. The stack has to be at least 64-bit
4018 aligned even on 32-bit machines, because doubles must be 64-bit
4019 aligned. For n32 and n64, stack frames need to be 128-bit
4020 aligned, so we round to this widest known alignment. */
4021
5b03f266
AC
4022 sp = align_down (sp, 16);
4023 struct_addr = align_down (struct_addr, 16);
46cac009
AC
4024
4025 /* Now make space on the stack for the args. */
4026 for (argnum = 0; argnum < nargs; argnum++)
968b5391
MR
4027 {
4028 struct type *arg_type = check_typedef (value_type (args[argnum]));
4029 int arglen = TYPE_LENGTH (arg_type);
4030
968b5391 4031 /* Allocate space on the stack. */
1a69e1e4 4032 len += align_up (arglen, MIPS64_REGSIZE);
968b5391 4033 }
5b03f266 4034 sp -= align_up (len, 16);
46cac009
AC
4035
4036 if (mips_debug)
6d82d43b 4037 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
4038 "mips_o64_push_dummy_call: sp=%s allocated %ld\n",
4039 paddress (gdbarch, sp), (long) align_up (len, 16));
46cac009
AC
4040
4041 /* Initialize the integer and float register pointers. */
4c7d22cb 4042 argreg = MIPS_A0_REGNUM;
72a155b4 4043 float_argreg = mips_fpa0_regnum (gdbarch);
46cac009
AC
4044
4045 /* The struct_return pointer occupies the first parameter-passing reg. */
4046 if (struct_return)
4047 {
4048 if (mips_debug)
4049 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
4050 "mips_o64_push_dummy_call: struct_return reg=%d %s\n",
4051 argreg, paddress (gdbarch, struct_addr));
9c9acae0 4052 regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
1a69e1e4 4053 stack_offset += MIPS64_REGSIZE;
46cac009
AC
4054 }
4055
4056 /* Now load as many as possible of the first arguments into
4057 registers, and push the rest onto the stack. Loop thru args
4058 from first to last. */
4059 for (argnum = 0; argnum < nargs; argnum++)
4060 {
47a35522 4061 const gdb_byte *val;
46cac009 4062 struct value *arg = args[argnum];
4991999e 4063 struct type *arg_type = check_typedef (value_type (arg));
46cac009
AC
4064 int len = TYPE_LENGTH (arg_type);
4065 enum type_code typecode = TYPE_CODE (arg_type);
4066
4067 if (mips_debug)
4068 fprintf_unfiltered (gdb_stdlog,
25ab4790 4069 "mips_o64_push_dummy_call: %d len=%d type=%d",
ebafbe83
MS
4070 argnum + 1, len, (int) typecode);
4071
47a35522 4072 val = value_contents (arg);
ebafbe83 4073
ebafbe83
MS
4074 /* Floating point arguments passed in registers have to be
4075 treated specially. On 32-bit architectures, doubles
4076 are passed in register pairs; the even register gets
4077 the low word, and the odd register gets the high word.
4078 On O32/O64, the first two floating point arguments are
4079 also copied to general registers, because MIPS16 functions
4080 don't use float registers for arguments. This duplication of
4081 arguments in general registers can't hurt non-MIPS16 functions
4082 because those registers are normally skipped. */
4083
74ed0bb4
MD
4084 if (fp_register_arg_p (gdbarch, typecode, arg_type)
4085 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM (gdbarch))
ebafbe83 4086 {
e17a4113 4087 LONGEST regval = extract_unsigned_integer (val, len, byte_order);
2afd3f0a
MR
4088 if (mips_debug)
4089 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
4090 float_argreg, phex (regval, len));
9c9acae0 4091 regcache_cooked_write_unsigned (regcache, float_argreg++, regval);
2afd3f0a
MR
4092 if (mips_debug)
4093 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
4094 argreg, phex (regval, len));
9c9acae0 4095 regcache_cooked_write_unsigned (regcache, argreg, regval);
2afd3f0a 4096 argreg++;
ebafbe83 4097 /* Reserve space for the FP register. */
1a69e1e4 4098 stack_offset += align_up (len, MIPS64_REGSIZE);
ebafbe83
MS
4099 }
4100 else
4101 {
4102 /* Copy the argument to general registers or the stack in
4103 register-sized pieces. Large arguments are split between
4104 registers and stack. */
1a69e1e4 4105 /* Note: structs whose size is not a multiple of MIPS64_REGSIZE
436aafc4
MR
4106 are treated specially: Irix cc passes them in registers
4107 where gcc sometimes puts them on the stack. For maximum
4108 compatibility, we will put them in both places. */
1a69e1e4
DJ
4109 int odd_sized_struct = (len > MIPS64_REGSIZE
4110 && len % MIPS64_REGSIZE != 0);
ebafbe83
MS
4111 while (len > 0)
4112 {
4113 /* Remember if the argument was written to the stack. */
4114 int stack_used_p = 0;
1a69e1e4 4115 int partial_len = (len < MIPS64_REGSIZE ? len : MIPS64_REGSIZE);
ebafbe83
MS
4116
4117 if (mips_debug)
4118 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
4119 partial_len);
4120
4121 /* Write this portion of the argument to the stack. */
74ed0bb4 4122 if (argreg > MIPS_LAST_ARG_REGNUM (gdbarch)
968b5391 4123 || odd_sized_struct)
ebafbe83
MS
4124 {
4125 /* Should shorter than int integer values be
4126 promoted to int before being stored? */
4127 int longword_offset = 0;
4128 CORE_ADDR addr;
4129 stack_used_p = 1;
72a155b4 4130 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ebafbe83 4131 {
1a69e1e4
DJ
4132 if ((typecode == TYPE_CODE_INT
4133 || typecode == TYPE_CODE_PTR
4134 || typecode == TYPE_CODE_FLT)
4135 && len <= 4)
4136 longword_offset = MIPS64_REGSIZE - len;
ebafbe83
MS
4137 }
4138
4139 if (mips_debug)
4140 {
5af949e3
UW
4141 fprintf_unfiltered (gdb_stdlog, " - stack_offset=%s",
4142 paddress (gdbarch, stack_offset));
4143 fprintf_unfiltered (gdb_stdlog, " longword_offset=%s",
4144 paddress (gdbarch, longword_offset));
ebafbe83
MS
4145 }
4146
4147 addr = sp + stack_offset + longword_offset;
4148
4149 if (mips_debug)
4150 {
4151 int i;
5af949e3
UW
4152 fprintf_unfiltered (gdb_stdlog, " @%s ",
4153 paddress (gdbarch, addr));
ebafbe83
MS
4154 for (i = 0; i < partial_len; i++)
4155 {
6d82d43b 4156 fprintf_unfiltered (gdb_stdlog, "%02x",
ebafbe83
MS
4157 val[i] & 0xff);
4158 }
4159 }
4160 write_memory (addr, val, partial_len);
4161 }
4162
4163 /* Note!!! This is NOT an else clause. Odd sized
968b5391 4164 structs may go thru BOTH paths. */
ebafbe83 4165 /* Write this portion of the argument to a general
6d82d43b 4166 purpose register. */
74ed0bb4 4167 if (argreg <= MIPS_LAST_ARG_REGNUM (gdbarch))
ebafbe83 4168 {
e17a4113
UW
4169 LONGEST regval = extract_signed_integer (val, partial_len,
4170 byte_order);
4246e332 4171 /* Value may need to be sign extended, because
1b13c4f6 4172 mips_isa_regsize() != mips_abi_regsize(). */
ebafbe83
MS
4173
4174 /* A non-floating-point argument being passed in a
4175 general register. If a struct or union, and if
4176 the remaining length is smaller than the register
4177 size, we have to adjust the register value on
4178 big endian targets.
4179
4180 It does not seem to be necessary to do the
401835eb 4181 same for integral types. */
480d3dd2 4182
72a155b4 4183 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
1a69e1e4 4184 && partial_len < MIPS64_REGSIZE
06f9a1af
MR
4185 && (typecode == TYPE_CODE_STRUCT
4186 || typecode == TYPE_CODE_UNION))
1a69e1e4 4187 regval <<= ((MIPS64_REGSIZE - partial_len)
9ecf7166 4188 * TARGET_CHAR_BIT);
ebafbe83
MS
4189
4190 if (mips_debug)
4191 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
4192 argreg,
1a69e1e4 4193 phex (regval, MIPS64_REGSIZE));
9c9acae0 4194 regcache_cooked_write_unsigned (regcache, argreg, regval);
ebafbe83
MS
4195 argreg++;
4196
4197 /* Prevent subsequent floating point arguments from
4198 being passed in floating point registers. */
74ed0bb4 4199 float_argreg = MIPS_LAST_FP_ARG_REGNUM (gdbarch) + 1;
ebafbe83
MS
4200 }
4201
4202 len -= partial_len;
4203 val += partial_len;
4204
4205 /* Compute the the offset into the stack at which we
6d82d43b 4206 will copy the next parameter.
ebafbe83 4207
6d82d43b
AC
4208 In older ABIs, the caller reserved space for
4209 registers that contained arguments. This was loosely
4210 refered to as their "home". Consequently, space is
4211 always allocated. */
ebafbe83 4212
1a69e1e4 4213 stack_offset += align_up (partial_len, MIPS64_REGSIZE);
ebafbe83
MS
4214 }
4215 }
4216 if (mips_debug)
4217 fprintf_unfiltered (gdb_stdlog, "\n");
4218 }
4219
f10683bb 4220 regcache_cooked_write_signed (regcache, MIPS_SP_REGNUM, sp);
310e9b6a 4221
ebafbe83
MS
4222 /* Return adjusted stack pointer. */
4223 return sp;
4224}
4225
9c8fdbfa 4226static enum return_value_convention
c055b101 4227mips_o64_return_value (struct gdbarch *gdbarch, struct type *func_type,
9c8fdbfa 4228 struct type *type, struct regcache *regcache,
47a35522 4229 gdb_byte *readbuf, const gdb_byte *writebuf)
6d82d43b 4230{
72a155b4 4231 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
7a076fd2
FF
4232
4233 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
4234 || TYPE_CODE (type) == TYPE_CODE_UNION
4235 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
4236 return RETURN_VALUE_STRUCT_CONVENTION;
74ed0bb4 4237 else if (fp_register_arg_p (gdbarch, TYPE_CODE (type), type))
7a076fd2
FF
4238 {
4239 /* A floating-point value. It fits in the least significant
4240 part of FP0. */
4241 if (mips_debug)
4242 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
ba32f989 4243 mips_xfer_register (gdbarch, regcache,
72a155b4
UW
4244 gdbarch_num_regs (gdbarch)
4245 + mips_regnum (gdbarch)->fp0,
7a076fd2 4246 TYPE_LENGTH (type),
72a155b4 4247 gdbarch_byte_order (gdbarch),
4c6b5505 4248 readbuf, writebuf, 0);
7a076fd2
FF
4249 return RETURN_VALUE_REGISTER_CONVENTION;
4250 }
4251 else
4252 {
4253 /* A scalar extract each part but least-significant-byte
4254 justified. */
4255 int offset;
4256 int regnum;
4257 for (offset = 0, regnum = MIPS_V0_REGNUM;
4258 offset < TYPE_LENGTH (type);
1a69e1e4 4259 offset += MIPS64_REGSIZE, regnum++)
7a076fd2 4260 {
1a69e1e4 4261 int xfer = MIPS64_REGSIZE;
7a076fd2
FF
4262 if (offset + xfer > TYPE_LENGTH (type))
4263 xfer = TYPE_LENGTH (type) - offset;
4264 if (mips_debug)
4265 fprintf_unfiltered (gdb_stderr, "Return scalar+%d:%d in $%d\n",
4266 offset, xfer, regnum);
ba32f989
DJ
4267 mips_xfer_register (gdbarch, regcache,
4268 gdbarch_num_regs (gdbarch) + regnum,
72a155b4 4269 xfer, gdbarch_byte_order (gdbarch),
4c6b5505 4270 readbuf, writebuf, offset);
7a076fd2
FF
4271 }
4272 return RETURN_VALUE_REGISTER_CONVENTION;
4273 }
6d82d43b
AC
4274}
4275
dd824b04
DJ
4276/* Floating point register management.
4277
4278 Background: MIPS1 & 2 fp registers are 32 bits wide. To support
4279 64bit operations, these early MIPS cpus treat fp register pairs
4280 (f0,f1) as a single register (d0). Later MIPS cpu's have 64 bit fp
4281 registers and offer a compatibility mode that emulates the MIPS2 fp
4282 model. When operating in MIPS2 fp compat mode, later cpu's split
4283 double precision floats into two 32-bit chunks and store them in
4284 consecutive fp regs. To display 64-bit floats stored in this
4285 fashion, we have to combine 32 bits from f0 and 32 bits from f1.
4286 Throw in user-configurable endianness and you have a real mess.
4287
4288 The way this works is:
4289 - If we are in 32-bit mode or on a 32-bit processor, then a 64-bit
4290 double-precision value will be split across two logical registers.
4291 The lower-numbered logical register will hold the low-order bits,
4292 regardless of the processor's endianness.
4293 - If we are on a 64-bit processor, and we are looking for a
4294 single-precision value, it will be in the low ordered bits
4295 of a 64-bit GPR (after mfc1, for example) or a 64-bit register
4296 save slot in memory.
4297 - If we are in 64-bit mode, everything is straightforward.
4298
4299 Note that this code only deals with "live" registers at the top of the
4300 stack. We will attempt to deal with saved registers later, when
4301 the raw/cooked register interface is in place. (We need a general
4302 interface that can deal with dynamic saved register sizes -- fp
4303 regs could be 32 bits wide in one frame and 64 on the frame above
4304 and below). */
4305
4306/* Copy a 32-bit single-precision value from the current frame
4307 into rare_buffer. */
4308
4309static void
e11c53d2 4310mips_read_fp_register_single (struct frame_info *frame, int regno,
47a35522 4311 gdb_byte *rare_buffer)
dd824b04 4312{
72a155b4
UW
4313 struct gdbarch *gdbarch = get_frame_arch (frame);
4314 int raw_size = register_size (gdbarch, regno);
47a35522 4315 gdb_byte *raw_buffer = alloca (raw_size);
dd824b04 4316
e11c53d2 4317 if (!frame_register_read (frame, regno, raw_buffer))
c9f4d572 4318 error (_("can't read register %d (%s)"),
72a155b4 4319 regno, gdbarch_register_name (gdbarch, regno));
dd824b04
DJ
4320 if (raw_size == 8)
4321 {
4322 /* We have a 64-bit value for this register. Find the low-order
6d82d43b 4323 32 bits. */
dd824b04
DJ
4324 int offset;
4325
72a155b4 4326 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
dd824b04
DJ
4327 offset = 4;
4328 else
4329 offset = 0;
4330
4331 memcpy (rare_buffer, raw_buffer + offset, 4);
4332 }
4333 else
4334 {
4335 memcpy (rare_buffer, raw_buffer, 4);
4336 }
4337}
4338
4339/* Copy a 64-bit double-precision value from the current frame into
4340 rare_buffer. This may include getting half of it from the next
4341 register. */
4342
4343static void
e11c53d2 4344mips_read_fp_register_double (struct frame_info *frame, int regno,
47a35522 4345 gdb_byte *rare_buffer)
dd824b04 4346{
72a155b4
UW
4347 struct gdbarch *gdbarch = get_frame_arch (frame);
4348 int raw_size = register_size (gdbarch, regno);
dd824b04 4349
9c9acae0 4350 if (raw_size == 8 && !mips2_fp_compat (frame))
dd824b04
DJ
4351 {
4352 /* We have a 64-bit value for this register, and we should use
6d82d43b 4353 all 64 bits. */
e11c53d2 4354 if (!frame_register_read (frame, regno, rare_buffer))
c9f4d572 4355 error (_("can't read register %d (%s)"),
72a155b4 4356 regno, gdbarch_register_name (gdbarch, regno));
dd824b04
DJ
4357 }
4358 else
4359 {
72a155b4 4360 int rawnum = regno % gdbarch_num_regs (gdbarch);
82e91389 4361
72a155b4 4362 if ((rawnum - mips_regnum (gdbarch)->fp0) & 1)
dd824b04 4363 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
4364 _("mips_read_fp_register_double: bad access to "
4365 "odd-numbered FP register"));
dd824b04
DJ
4366
4367 /* mips_read_fp_register_single will find the correct 32 bits from
6d82d43b 4368 each register. */
72a155b4 4369 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
dd824b04 4370 {
e11c53d2
AC
4371 mips_read_fp_register_single (frame, regno, rare_buffer + 4);
4372 mips_read_fp_register_single (frame, regno + 1, rare_buffer);
dd824b04 4373 }
361d1df0 4374 else
dd824b04 4375 {
e11c53d2
AC
4376 mips_read_fp_register_single (frame, regno, rare_buffer);
4377 mips_read_fp_register_single (frame, regno + 1, rare_buffer + 4);
dd824b04
DJ
4378 }
4379 }
4380}
4381
c906108c 4382static void
e11c53d2
AC
4383mips_print_fp_register (struct ui_file *file, struct frame_info *frame,
4384 int regnum)
c5aa993b 4385{ /* do values for FP (float) regs */
72a155b4 4386 struct gdbarch *gdbarch = get_frame_arch (frame);
47a35522 4387 gdb_byte *raw_buffer;
3903d437
AC
4388 double doub, flt1; /* doubles extracted from raw hex data */
4389 int inv1, inv2;
c5aa993b 4390
72a155b4 4391 raw_buffer = alloca (2 * register_size (gdbarch, mips_regnum (gdbarch)->fp0));
c906108c 4392
72a155b4 4393 fprintf_filtered (file, "%s:", gdbarch_register_name (gdbarch, regnum));
c9f4d572 4394 fprintf_filtered (file, "%*s",
72a155b4 4395 4 - (int) strlen (gdbarch_register_name (gdbarch, regnum)),
e11c53d2 4396 "");
f0ef6b29 4397
72a155b4 4398 if (register_size (gdbarch, regnum) == 4 || mips2_fp_compat (frame))
c906108c 4399 {
79a45b7d
TT
4400 struct value_print_options opts;
4401
f0ef6b29
KB
4402 /* 4-byte registers: Print hex and floating. Also print even
4403 numbered registers as doubles. */
e11c53d2 4404 mips_read_fp_register_single (frame, regnum, raw_buffer);
27067745 4405 flt1 = unpack_double (builtin_type (gdbarch)->builtin_float, raw_buffer, &inv1);
c5aa993b 4406
79a45b7d 4407 get_formatted_print_options (&opts, 'x');
df4df182
UW
4408 print_scalar_formatted (raw_buffer,
4409 builtin_type (gdbarch)->builtin_uint32,
4410 &opts, 'w', file);
dd824b04 4411
e11c53d2 4412 fprintf_filtered (file, " flt: ");
1adad886 4413 if (inv1)
e11c53d2 4414 fprintf_filtered (file, " <invalid float> ");
1adad886 4415 else
e11c53d2 4416 fprintf_filtered (file, "%-17.9g", flt1);
1adad886 4417
72a155b4 4418 if ((regnum - gdbarch_num_regs (gdbarch)) % 2 == 0)
f0ef6b29 4419 {
e11c53d2 4420 mips_read_fp_register_double (frame, regnum, raw_buffer);
27067745
UW
4421 doub = unpack_double (builtin_type (gdbarch)->builtin_double,
4422 raw_buffer, &inv2);
1adad886 4423
e11c53d2 4424 fprintf_filtered (file, " dbl: ");
f0ef6b29 4425 if (inv2)
e11c53d2 4426 fprintf_filtered (file, "<invalid double>");
f0ef6b29 4427 else
e11c53d2 4428 fprintf_filtered (file, "%-24.17g", doub);
f0ef6b29 4429 }
c906108c
SS
4430 }
4431 else
dd824b04 4432 {
79a45b7d
TT
4433 struct value_print_options opts;
4434
f0ef6b29 4435 /* Eight byte registers: print each one as hex, float and double. */
e11c53d2 4436 mips_read_fp_register_single (frame, regnum, raw_buffer);
27067745
UW
4437 flt1 = unpack_double (builtin_type (gdbarch)->builtin_float,
4438 raw_buffer, &inv1);
c906108c 4439
e11c53d2 4440 mips_read_fp_register_double (frame, regnum, raw_buffer);
27067745
UW
4441 doub = unpack_double (builtin_type (gdbarch)->builtin_double,
4442 raw_buffer, &inv2);
f0ef6b29 4443
79a45b7d 4444 get_formatted_print_options (&opts, 'x');
df4df182
UW
4445 print_scalar_formatted (raw_buffer,
4446 builtin_type (gdbarch)->builtin_uint64,
4447 &opts, 'g', file);
f0ef6b29 4448
e11c53d2 4449 fprintf_filtered (file, " flt: ");
1adad886 4450 if (inv1)
e11c53d2 4451 fprintf_filtered (file, "<invalid float>");
1adad886 4452 else
e11c53d2 4453 fprintf_filtered (file, "%-17.9g", flt1);
1adad886 4454
e11c53d2 4455 fprintf_filtered (file, " dbl: ");
f0ef6b29 4456 if (inv2)
e11c53d2 4457 fprintf_filtered (file, "<invalid double>");
1adad886 4458 else
e11c53d2 4459 fprintf_filtered (file, "%-24.17g", doub);
f0ef6b29
KB
4460 }
4461}
4462
4463static void
e11c53d2 4464mips_print_register (struct ui_file *file, struct frame_info *frame,
0cc93a06 4465 int regnum)
f0ef6b29 4466{
a4b8ebc8 4467 struct gdbarch *gdbarch = get_frame_arch (frame);
47a35522 4468 gdb_byte raw_buffer[MAX_REGISTER_SIZE];
f0ef6b29 4469 int offset;
79a45b7d 4470 struct value_print_options opts;
1adad886 4471
7b9ee6a8 4472 if (TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT)
f0ef6b29 4473 {
e11c53d2 4474 mips_print_fp_register (file, frame, regnum);
f0ef6b29
KB
4475 return;
4476 }
4477
4478 /* Get the data in raw format. */
e11c53d2 4479 if (!frame_register_read (frame, regnum, raw_buffer))
f0ef6b29 4480 {
c9f4d572 4481 fprintf_filtered (file, "%s: [Invalid]",
72a155b4 4482 gdbarch_register_name (gdbarch, regnum));
f0ef6b29 4483 return;
c906108c 4484 }
f0ef6b29 4485
72a155b4 4486 fputs_filtered (gdbarch_register_name (gdbarch, regnum), file);
f0ef6b29
KB
4487
4488 /* The problem with printing numeric register names (r26, etc.) is that
4489 the user can't use them on input. Probably the best solution is to
4490 fix it so that either the numeric or the funky (a2, etc.) names
4491 are accepted on input. */
4492 if (regnum < MIPS_NUMREGS)
e11c53d2 4493 fprintf_filtered (file, "(r%d): ", regnum);
f0ef6b29 4494 else
e11c53d2 4495 fprintf_filtered (file, ": ");
f0ef6b29 4496
72a155b4 4497 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
6d82d43b 4498 offset =
72a155b4 4499 register_size (gdbarch, regnum) - register_size (gdbarch, regnum);
f0ef6b29
KB
4500 else
4501 offset = 0;
4502
79a45b7d 4503 get_formatted_print_options (&opts, 'x');
6d82d43b 4504 print_scalar_formatted (raw_buffer + offset,
79a45b7d 4505 register_type (gdbarch, regnum), &opts, 0,
6d82d43b 4506 file);
c906108c
SS
4507}
4508
f0ef6b29
KB
4509/* Replacement for generic do_registers_info.
4510 Print regs in pretty columns. */
4511
4512static int
e11c53d2
AC
4513print_fp_register_row (struct ui_file *file, struct frame_info *frame,
4514 int regnum)
f0ef6b29 4515{
e11c53d2
AC
4516 fprintf_filtered (file, " ");
4517 mips_print_fp_register (file, frame, regnum);
4518 fprintf_filtered (file, "\n");
f0ef6b29
KB
4519 return regnum + 1;
4520}
4521
4522
c906108c
SS
4523/* Print a row's worth of GP (int) registers, with name labels above */
4524
4525static int
e11c53d2 4526print_gp_register_row (struct ui_file *file, struct frame_info *frame,
a4b8ebc8 4527 int start_regnum)
c906108c 4528{
a4b8ebc8 4529 struct gdbarch *gdbarch = get_frame_arch (frame);
c906108c 4530 /* do values for GP (int) regs */
47a35522 4531 gdb_byte raw_buffer[MAX_REGISTER_SIZE];
d5ac5a39 4532 int ncols = (mips_abi_regsize (gdbarch) == 8 ? 4 : 8); /* display cols per row */
c906108c 4533 int col, byte;
a4b8ebc8 4534 int regnum;
c906108c
SS
4535
4536 /* For GP registers, we print a separate row of names above the vals */
a4b8ebc8 4537 for (col = 0, regnum = start_regnum;
72a155b4
UW
4538 col < ncols && regnum < gdbarch_num_regs (gdbarch)
4539 + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 4540 regnum++)
c906108c 4541 {
72a155b4 4542 if (*gdbarch_register_name (gdbarch, regnum) == '\0')
c5aa993b 4543 continue; /* unused register */
7b9ee6a8 4544 if (TYPE_CODE (register_type (gdbarch, regnum)) ==
6d82d43b 4545 TYPE_CODE_FLT)
c5aa993b 4546 break; /* end the row: reached FP register */
0cc93a06 4547 /* Large registers are handled separately. */
72a155b4 4548 if (register_size (gdbarch, regnum) > mips_abi_regsize (gdbarch))
0cc93a06
DJ
4549 {
4550 if (col > 0)
4551 break; /* End the row before this register. */
4552
4553 /* Print this register on a row by itself. */
4554 mips_print_register (file, frame, regnum);
4555 fprintf_filtered (file, "\n");
4556 return regnum + 1;
4557 }
d05f6826
DJ
4558 if (col == 0)
4559 fprintf_filtered (file, " ");
6d82d43b 4560 fprintf_filtered (file,
72a155b4
UW
4561 mips_abi_regsize (gdbarch) == 8 ? "%17s" : "%9s",
4562 gdbarch_register_name (gdbarch, regnum));
c906108c
SS
4563 col++;
4564 }
d05f6826
DJ
4565
4566 if (col == 0)
4567 return regnum;
4568
a4b8ebc8 4569 /* print the R0 to R31 names */
72a155b4 4570 if ((start_regnum % gdbarch_num_regs (gdbarch)) < MIPS_NUMREGS)
f57d151a 4571 fprintf_filtered (file, "\n R%-4d",
72a155b4 4572 start_regnum % gdbarch_num_regs (gdbarch));
20e6603c
AC
4573 else
4574 fprintf_filtered (file, "\n ");
c906108c 4575
c906108c 4576 /* now print the values in hex, 4 or 8 to the row */
a4b8ebc8 4577 for (col = 0, regnum = start_regnum;
72a155b4
UW
4578 col < ncols && regnum < gdbarch_num_regs (gdbarch)
4579 + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 4580 regnum++)
c906108c 4581 {
72a155b4 4582 if (*gdbarch_register_name (gdbarch, regnum) == '\0')
c5aa993b 4583 continue; /* unused register */
7b9ee6a8 4584 if (TYPE_CODE (register_type (gdbarch, regnum)) ==
6d82d43b 4585 TYPE_CODE_FLT)
c5aa993b 4586 break; /* end row: reached FP register */
72a155b4 4587 if (register_size (gdbarch, regnum) > mips_abi_regsize (gdbarch))
0cc93a06
DJ
4588 break; /* End row: large register. */
4589
c906108c 4590 /* OK: get the data in raw format. */
e11c53d2 4591 if (!frame_register_read (frame, regnum, raw_buffer))
c9f4d572 4592 error (_("can't read register %d (%s)"),
72a155b4 4593 regnum, gdbarch_register_name (gdbarch, regnum));
c906108c 4594 /* pad small registers */
4246e332 4595 for (byte = 0;
72a155b4
UW
4596 byte < (mips_abi_regsize (gdbarch)
4597 - register_size (gdbarch, regnum)); byte++)
c906108c
SS
4598 printf_filtered (" ");
4599 /* Now print the register value in hex, endian order. */
72a155b4 4600 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
6d82d43b 4601 for (byte =
72a155b4
UW
4602 register_size (gdbarch, regnum) - register_size (gdbarch, regnum);
4603 byte < register_size (gdbarch, regnum); byte++)
47a35522 4604 fprintf_filtered (file, "%02x", raw_buffer[byte]);
c906108c 4605 else
72a155b4 4606 for (byte = register_size (gdbarch, regnum) - 1;
6d82d43b 4607 byte >= 0; byte--)
47a35522 4608 fprintf_filtered (file, "%02x", raw_buffer[byte]);
e11c53d2 4609 fprintf_filtered (file, " ");
c906108c
SS
4610 col++;
4611 }
c5aa993b 4612 if (col > 0) /* ie. if we actually printed anything... */
e11c53d2 4613 fprintf_filtered (file, "\n");
c906108c
SS
4614
4615 return regnum;
4616}
4617
4618/* MIPS_DO_REGISTERS_INFO(): called by "info register" command */
4619
bf1f5b4c 4620static void
e11c53d2
AC
4621mips_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file,
4622 struct frame_info *frame, int regnum, int all)
c906108c 4623{
c5aa993b 4624 if (regnum != -1) /* do one specified register */
c906108c 4625 {
72a155b4
UW
4626 gdb_assert (regnum >= gdbarch_num_regs (gdbarch));
4627 if (*(gdbarch_register_name (gdbarch, regnum)) == '\0')
8a3fe4f8 4628 error (_("Not a valid register for the current processor type"));
c906108c 4629
0cc93a06 4630 mips_print_register (file, frame, regnum);
e11c53d2 4631 fprintf_filtered (file, "\n");
c906108c 4632 }
c5aa993b
JM
4633 else
4634 /* do all (or most) registers */
c906108c 4635 {
72a155b4
UW
4636 regnum = gdbarch_num_regs (gdbarch);
4637 while (regnum < gdbarch_num_regs (gdbarch)
4638 + gdbarch_num_pseudo_regs (gdbarch))
c906108c 4639 {
7b9ee6a8 4640 if (TYPE_CODE (register_type (gdbarch, regnum)) ==
6d82d43b 4641 TYPE_CODE_FLT)
e11c53d2
AC
4642 {
4643 if (all) /* true for "INFO ALL-REGISTERS" command */
4644 regnum = print_fp_register_row (file, frame, regnum);
4645 else
4646 regnum += MIPS_NUMREGS; /* skip floating point regs */
4647 }
c906108c 4648 else
e11c53d2 4649 regnum = print_gp_register_row (file, frame, regnum);
c906108c
SS
4650 }
4651 }
4652}
4653
c906108c
SS
4654/* Is this a branch with a delay slot? */
4655
c906108c 4656static int
acdb74a0 4657is_delayed (unsigned long insn)
c906108c
SS
4658{
4659 int i;
4660 for (i = 0; i < NUMOPCODES; ++i)
4661 if (mips_opcodes[i].pinfo != INSN_MACRO
4662 && (insn & mips_opcodes[i].mask) == mips_opcodes[i].match)
4663 break;
4664 return (i < NUMOPCODES
4665 && (mips_opcodes[i].pinfo & (INSN_UNCOND_BRANCH_DELAY
4666 | INSN_COND_BRANCH_DELAY
4667 | INSN_COND_BRANCH_LIKELY)));
4668}
4669
63807e1d 4670static int
3352ef37
AC
4671mips_single_step_through_delay (struct gdbarch *gdbarch,
4672 struct frame_info *frame)
c906108c 4673{
e17a4113 4674 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3352ef37 4675 CORE_ADDR pc = get_frame_pc (frame);
47a35522 4676 gdb_byte buf[MIPS_INSN32_SIZE];
c906108c
SS
4677
4678 /* There is no branch delay slot on MIPS16. */
0fe7e7c8 4679 if (mips_pc_is_mips16 (pc))
c906108c
SS
4680 return 0;
4681
6c95b8df 4682 if (!breakpoint_here_p (get_frame_address_space (frame), pc + 4))
06648491
MK
4683 return 0;
4684
3352ef37
AC
4685 if (!safe_frame_unwind_memory (frame, pc, buf, sizeof buf))
4686 /* If error reading memory, guess that it is not a delayed
4687 branch. */
c906108c 4688 return 0;
e17a4113 4689 return is_delayed (extract_unsigned_integer (buf, sizeof buf, byte_order));
c906108c
SS
4690}
4691
6d82d43b
AC
4692/* To skip prologues, I use this predicate. Returns either PC itself
4693 if the code at PC does not look like a function prologue; otherwise
4694 returns an address that (if we're lucky) follows the prologue. If
4695 LENIENT, then we must skip everything which is involved in setting
4696 up the frame (it's OK to skip more, just so long as we don't skip
4697 anything which might clobber the registers which are being saved.
4698 We must skip more in the case where part of the prologue is in the
4699 delay slot of a non-prologue instruction). */
4700
4701static CORE_ADDR
6093d2eb 4702mips_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
6d82d43b 4703{
8b622e6a
AC
4704 CORE_ADDR limit_pc;
4705 CORE_ADDR func_addr;
4706
6d82d43b
AC
4707 /* See if we can determine the end of the prologue via the symbol table.
4708 If so, then return either PC, or the PC after the prologue, whichever
4709 is greater. */
8b622e6a
AC
4710 if (find_pc_partial_function (pc, NULL, &func_addr, NULL))
4711 {
d80b854b
UW
4712 CORE_ADDR post_prologue_pc
4713 = skip_prologue_using_sal (gdbarch, func_addr);
8b622e6a
AC
4714 if (post_prologue_pc != 0)
4715 return max (pc, post_prologue_pc);
4716 }
6d82d43b
AC
4717
4718 /* Can't determine prologue from the symbol table, need to examine
4719 instructions. */
4720
98b4dd94
JB
4721 /* Find an upper limit on the function prologue using the debug
4722 information. If the debug information could not be used to provide
4723 that bound, then use an arbitrary large number as the upper bound. */
d80b854b 4724 limit_pc = skip_prologue_using_sal (gdbarch, pc);
98b4dd94
JB
4725 if (limit_pc == 0)
4726 limit_pc = pc + 100; /* Magic. */
4727
0fe7e7c8 4728 if (mips_pc_is_mips16 (pc))
e17a4113 4729 return mips16_scan_prologue (gdbarch, pc, limit_pc, NULL, NULL);
6d82d43b 4730 else
e17a4113 4731 return mips32_scan_prologue (gdbarch, pc, limit_pc, NULL, NULL);
88658117
AC
4732}
4733
97ab0fdd
MR
4734/* Check whether the PC is in a function epilogue (32-bit version).
4735 This is a helper function for mips_in_function_epilogue_p. */
4736static int
e17a4113 4737mips32_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
97ab0fdd
MR
4738{
4739 CORE_ADDR func_addr = 0, func_end = 0;
4740
4741 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
4742 {
4743 /* The MIPS epilogue is max. 12 bytes long. */
4744 CORE_ADDR addr = func_end - 12;
4745
4746 if (addr < func_addr + 4)
4747 addr = func_addr + 4;
4748 if (pc < addr)
4749 return 0;
4750
4751 for (; pc < func_end; pc += MIPS_INSN32_SIZE)
4752 {
4753 unsigned long high_word;
4754 unsigned long inst;
4755
e17a4113 4756 inst = mips_fetch_instruction (gdbarch, pc);
97ab0fdd
MR
4757 high_word = (inst >> 16) & 0xffff;
4758
4759 if (high_word != 0x27bd /* addiu $sp,$sp,offset */
4760 && high_word != 0x67bd /* daddiu $sp,$sp,offset */
4761 && inst != 0x03e00008 /* jr $ra */
4762 && inst != 0x00000000) /* nop */
4763 return 0;
4764 }
4765
4766 return 1;
4767 }
4768
4769 return 0;
4770}
4771
4772/* Check whether the PC is in a function epilogue (16-bit version).
4773 This is a helper function for mips_in_function_epilogue_p. */
4774static int
e17a4113 4775mips16_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
97ab0fdd
MR
4776{
4777 CORE_ADDR func_addr = 0, func_end = 0;
4778
4779 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
4780 {
4781 /* The MIPS epilogue is max. 12 bytes long. */
4782 CORE_ADDR addr = func_end - 12;
4783
4784 if (addr < func_addr + 4)
4785 addr = func_addr + 4;
4786 if (pc < addr)
4787 return 0;
4788
4789 for (; pc < func_end; pc += MIPS_INSN16_SIZE)
4790 {
4791 unsigned short inst;
4792
e17a4113 4793 inst = mips_fetch_instruction (gdbarch, pc);
97ab0fdd
MR
4794
4795 if ((inst & 0xf800) == 0xf000) /* extend */
4796 continue;
4797
4798 if (inst != 0x6300 /* addiu $sp,offset */
4799 && inst != 0xfb00 /* daddiu $sp,$sp,offset */
4800 && inst != 0xe820 /* jr $ra */
4801 && inst != 0xe8a0 /* jrc $ra */
4802 && inst != 0x6500) /* nop */
4803 return 0;
4804 }
4805
4806 return 1;
4807 }
4808
4809 return 0;
4810}
4811
4812/* The epilogue is defined here as the area at the end of a function,
4813 after an instruction which destroys the function's stack frame. */
4814static int
4815mips_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
4816{
4817 if (mips_pc_is_mips16 (pc))
e17a4113 4818 return mips16_in_function_epilogue_p (gdbarch, pc);
97ab0fdd 4819 else
e17a4113 4820 return mips32_in_function_epilogue_p (gdbarch, pc);
97ab0fdd
MR
4821}
4822
a5ea2558
AC
4823/* Root of all "set mips "/"show mips " commands. This will eventually be
4824 used for all MIPS-specific commands. */
4825
a5ea2558 4826static void
acdb74a0 4827show_mips_command (char *args, int from_tty)
a5ea2558
AC
4828{
4829 help_list (showmipscmdlist, "show mips ", all_commands, gdb_stdout);
4830}
4831
a5ea2558 4832static void
acdb74a0 4833set_mips_command (char *args, int from_tty)
a5ea2558 4834{
6d82d43b
AC
4835 printf_unfiltered
4836 ("\"set mips\" must be followed by an appropriate subcommand.\n");
a5ea2558
AC
4837 help_list (setmipscmdlist, "set mips ", all_commands, gdb_stdout);
4838}
4839
c906108c
SS
4840/* Commands to show/set the MIPS FPU type. */
4841
c906108c 4842static void
acdb74a0 4843show_mipsfpu_command (char *args, int from_tty)
c906108c 4844{
c906108c 4845 char *fpu;
6ca0852e 4846
1cf3db46 4847 if (gdbarch_bfd_arch_info (target_gdbarch)->arch != bfd_arch_mips)
6ca0852e
UW
4848 {
4849 printf_unfiltered
4850 ("The MIPS floating-point coprocessor is unknown "
4851 "because the current architecture is not MIPS.\n");
4852 return;
4853 }
4854
1cf3db46 4855 switch (MIPS_FPU_TYPE (target_gdbarch))
c906108c
SS
4856 {
4857 case MIPS_FPU_SINGLE:
4858 fpu = "single-precision";
4859 break;
4860 case MIPS_FPU_DOUBLE:
4861 fpu = "double-precision";
4862 break;
4863 case MIPS_FPU_NONE:
4864 fpu = "absent (none)";
4865 break;
93d56215 4866 default:
e2e0b3e5 4867 internal_error (__FILE__, __LINE__, _("bad switch"));
c906108c
SS
4868 }
4869 if (mips_fpu_type_auto)
6d82d43b
AC
4870 printf_unfiltered
4871 ("The MIPS floating-point coprocessor is set automatically (currently %s)\n",
4872 fpu);
c906108c 4873 else
6d82d43b
AC
4874 printf_unfiltered
4875 ("The MIPS floating-point coprocessor is assumed to be %s\n", fpu);
c906108c
SS
4876}
4877
4878
c906108c 4879static void
acdb74a0 4880set_mipsfpu_command (char *args, int from_tty)
c906108c 4881{
6d82d43b
AC
4882 printf_unfiltered
4883 ("\"set mipsfpu\" must be followed by \"double\", \"single\",\"none\" or \"auto\".\n");
c906108c
SS
4884 show_mipsfpu_command (args, from_tty);
4885}
4886
c906108c 4887static void
acdb74a0 4888set_mipsfpu_single_command (char *args, int from_tty)
c906108c 4889{
8d5838b5
AC
4890 struct gdbarch_info info;
4891 gdbarch_info_init (&info);
c906108c
SS
4892 mips_fpu_type = MIPS_FPU_SINGLE;
4893 mips_fpu_type_auto = 0;
8d5838b5
AC
4894 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4895 instead of relying on globals. Doing that would let generic code
4896 handle the search for this specific architecture. */
4897 if (!gdbarch_update_p (info))
e2e0b3e5 4898 internal_error (__FILE__, __LINE__, _("set mipsfpu failed"));
c906108c
SS
4899}
4900
c906108c 4901static void
acdb74a0 4902set_mipsfpu_double_command (char *args, int from_tty)
c906108c 4903{
8d5838b5
AC
4904 struct gdbarch_info info;
4905 gdbarch_info_init (&info);
c906108c
SS
4906 mips_fpu_type = MIPS_FPU_DOUBLE;
4907 mips_fpu_type_auto = 0;
8d5838b5
AC
4908 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4909 instead of relying on globals. Doing that would let generic code
4910 handle the search for this specific architecture. */
4911 if (!gdbarch_update_p (info))
e2e0b3e5 4912 internal_error (__FILE__, __LINE__, _("set mipsfpu failed"));
c906108c
SS
4913}
4914
c906108c 4915static void
acdb74a0 4916set_mipsfpu_none_command (char *args, int from_tty)
c906108c 4917{
8d5838b5
AC
4918 struct gdbarch_info info;
4919 gdbarch_info_init (&info);
c906108c
SS
4920 mips_fpu_type = MIPS_FPU_NONE;
4921 mips_fpu_type_auto = 0;
8d5838b5
AC
4922 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4923 instead of relying on globals. Doing that would let generic code
4924 handle the search for this specific architecture. */
4925 if (!gdbarch_update_p (info))
e2e0b3e5 4926 internal_error (__FILE__, __LINE__, _("set mipsfpu failed"));
c906108c
SS
4927}
4928
c906108c 4929static void
acdb74a0 4930set_mipsfpu_auto_command (char *args, int from_tty)
c906108c
SS
4931{
4932 mips_fpu_type_auto = 1;
4933}
4934
c906108c 4935/* Attempt to identify the particular processor model by reading the
691c0433
AC
4936 processor id. NOTE: cagney/2003-11-15: Firstly it isn't clear that
4937 the relevant processor still exists (it dates back to '94) and
4938 secondly this is not the way to do this. The processor type should
4939 be set by forcing an architecture change. */
c906108c 4940
691c0433
AC
4941void
4942deprecated_mips_set_processor_regs_hack (void)
c906108c 4943{
bb486190
UW
4944 struct regcache *regcache = get_current_regcache ();
4945 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4946 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
a9614958 4947 ULONGEST prid;
c906108c 4948
bb486190 4949 regcache_cooked_read_unsigned (regcache, MIPS_PRID_REGNUM, &prid);
c906108c 4950 if ((prid & ~0xf) == 0x700)
691c0433 4951 tdep->mips_processor_reg_names = mips_r3041_reg_names;
c906108c
SS
4952}
4953
4954/* Just like reinit_frame_cache, but with the right arguments to be
4955 callable as an sfunc. */
4956
4957static void
acdb74a0
AC
4958reinit_frame_cache_sfunc (char *args, int from_tty,
4959 struct cmd_list_element *c)
c906108c
SS
4960{
4961 reinit_frame_cache ();
4962}
4963
a89aa300
AC
4964static int
4965gdb_print_insn_mips (bfd_vma memaddr, struct disassemble_info *info)
c906108c 4966{
d31431ed
AC
4967 /* FIXME: cagney/2003-06-26: Is this even necessary? The
4968 disassembler needs to be able to locally determine the ISA, and
4969 not rely on GDB. Otherwize the stand-alone 'objdump -d' will not
4970 work. */
ec4045ea
AC
4971 if (mips_pc_is_mips16 (memaddr))
4972 info->mach = bfd_mach_mips16;
c906108c
SS
4973
4974 /* Round down the instruction address to the appropriate boundary. */
65c11066 4975 memaddr &= (info->mach == bfd_mach_mips16 ? ~1 : ~3);
c5aa993b 4976
e5ab0dce 4977 /* Set the disassembler options. */
9dae60cc 4978 if (!info->disassembler_options)
e5ab0dce
AC
4979 /* This string is not recognized explicitly by the disassembler,
4980 but it tells the disassembler to not try to guess the ABI from
4981 the bfd elf headers, such that, if the user overrides the ABI
4982 of a program linked as NewABI, the disassembly will follow the
4983 register naming conventions specified by the user. */
4984 info->disassembler_options = "gpr-names=32";
4985
c906108c 4986 /* Call the appropriate disassembler based on the target endian-ness. */
40887e1a 4987 if (info->endian == BFD_ENDIAN_BIG)
c906108c
SS
4988 return print_insn_big_mips (memaddr, info);
4989 else
4990 return print_insn_little_mips (memaddr, info);
4991}
4992
9dae60cc
UW
4993static int
4994gdb_print_insn_mips_n32 (bfd_vma memaddr, struct disassemble_info *info)
4995{
4996 /* Set up the disassembler info, so that we get the right
4997 register names from libopcodes. */
4998 info->disassembler_options = "gpr-names=n32";
4999 info->flavour = bfd_target_elf_flavour;
5000
5001 return gdb_print_insn_mips (memaddr, info);
5002}
5003
5004static int
5005gdb_print_insn_mips_n64 (bfd_vma memaddr, struct disassemble_info *info)
5006{
5007 /* Set up the disassembler info, so that we get the right
5008 register names from libopcodes. */
5009 info->disassembler_options = "gpr-names=64";
5010 info->flavour = bfd_target_elf_flavour;
5011
5012 return gdb_print_insn_mips (memaddr, info);
5013}
5014
3b3b875c
UW
5015/* This function implements gdbarch_breakpoint_from_pc. It uses the program
5016 counter value to determine whether a 16- or 32-bit breakpoint should be used.
5017 It returns a pointer to a string of bytes that encode a breakpoint
5018 instruction, stores the length of the string to *lenptr, and adjusts pc (if
5019 necessary) to point to the actual memory location where the breakpoint
5020 should be inserted. */
c906108c 5021
47a35522 5022static const gdb_byte *
67d57894 5023mips_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
c906108c 5024{
67d57894 5025 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
c906108c 5026 {
0fe7e7c8 5027 if (mips_pc_is_mips16 (*pcptr))
c906108c 5028 {
47a35522 5029 static gdb_byte mips16_big_breakpoint[] = { 0xe8, 0xa5 };
95404a3e 5030 *pcptr = unmake_mips16_addr (*pcptr);
c5aa993b 5031 *lenptr = sizeof (mips16_big_breakpoint);
c906108c
SS
5032 return mips16_big_breakpoint;
5033 }
5034 else
5035 {
aaab4dba
AC
5036 /* The IDT board uses an unusual breakpoint value, and
5037 sometimes gets confused when it sees the usual MIPS
5038 breakpoint instruction. */
47a35522
MK
5039 static gdb_byte big_breakpoint[] = { 0, 0x5, 0, 0xd };
5040 static gdb_byte pmon_big_breakpoint[] = { 0, 0, 0, 0xd };
5041 static gdb_byte idt_big_breakpoint[] = { 0, 0, 0x0a, 0xd };
c906108c 5042
c5aa993b 5043 *lenptr = sizeof (big_breakpoint);
c906108c
SS
5044
5045 if (strcmp (target_shortname, "mips") == 0)
5046 return idt_big_breakpoint;
5047 else if (strcmp (target_shortname, "ddb") == 0
5048 || strcmp (target_shortname, "pmon") == 0
5049 || strcmp (target_shortname, "lsi") == 0)
5050 return pmon_big_breakpoint;
5051 else
5052 return big_breakpoint;
5053 }
5054 }
5055 else
5056 {
0fe7e7c8 5057 if (mips_pc_is_mips16 (*pcptr))
c906108c 5058 {
47a35522 5059 static gdb_byte mips16_little_breakpoint[] = { 0xa5, 0xe8 };
95404a3e 5060 *pcptr = unmake_mips16_addr (*pcptr);
c5aa993b 5061 *lenptr = sizeof (mips16_little_breakpoint);
c906108c
SS
5062 return mips16_little_breakpoint;
5063 }
5064 else
5065 {
47a35522
MK
5066 static gdb_byte little_breakpoint[] = { 0xd, 0, 0x5, 0 };
5067 static gdb_byte pmon_little_breakpoint[] = { 0xd, 0, 0, 0 };
5068 static gdb_byte idt_little_breakpoint[] = { 0xd, 0x0a, 0, 0 };
c906108c 5069
c5aa993b 5070 *lenptr = sizeof (little_breakpoint);
c906108c
SS
5071
5072 if (strcmp (target_shortname, "mips") == 0)
5073 return idt_little_breakpoint;
5074 else if (strcmp (target_shortname, "ddb") == 0
5075 || strcmp (target_shortname, "pmon") == 0
5076 || strcmp (target_shortname, "lsi") == 0)
5077 return pmon_little_breakpoint;
5078 else
5079 return little_breakpoint;
5080 }
5081 }
5082}
5083
5084/* If PC is in a mips16 call or return stub, return the address of the target
5085 PC, which is either the callee or the caller. There are several
5086 cases which must be handled:
5087
5088 * If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
c5aa993b 5089 target PC is in $31 ($ra).
c906108c 5090 * If the PC is in __mips16_call_stub_{1..10}, this is a call stub
c5aa993b 5091 and the target PC is in $2.
c906108c 5092 * If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
c5aa993b
JM
5093 before the jal instruction, this is effectively a call stub
5094 and the the target PC is in $2. Otherwise this is effectively
5095 a return stub and the target PC is in $18.
c906108c
SS
5096
5097 See the source code for the stubs in gcc/config/mips/mips16.S for
e7d6a6d2 5098 gory details. */
c906108c 5099
757a7cc6 5100static CORE_ADDR
db5f024e 5101mips_skip_mips16_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
c906108c 5102{
e17a4113 5103 struct gdbarch *gdbarch = get_frame_arch (frame);
c906108c
SS
5104 char *name;
5105 CORE_ADDR start_addr;
5106
5107 /* Find the starting address and name of the function containing the PC. */
5108 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
5109 return 0;
5110
5111 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
5112 target PC is in $31 ($ra). */
5113 if (strcmp (name, "__mips16_ret_sf") == 0
5114 || strcmp (name, "__mips16_ret_df") == 0)
52f729a7 5115 return get_frame_register_signed (frame, MIPS_RA_REGNUM);
c906108c
SS
5116
5117 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
5118 {
5119 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub
5120 and the target PC is in $2. */
5121 if (name[19] >= '0' && name[19] <= '9')
52f729a7 5122 return get_frame_register_signed (frame, 2);
c906108c
SS
5123
5124 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
c5aa993b
JM
5125 before the jal instruction, this is effectively a call stub
5126 and the the target PC is in $2. Otherwise this is effectively
5127 a return stub and the target PC is in $18. */
c906108c
SS
5128 else if (name[19] == 's' || name[19] == 'd')
5129 {
5130 if (pc == start_addr)
5131 {
5132 /* Check if the target of the stub is a compiler-generated
c5aa993b
JM
5133 stub. Such a stub for a function bar might have a name
5134 like __fn_stub_bar, and might look like this:
5135 mfc1 $4,$f13
5136 mfc1 $5,$f12
5137 mfc1 $6,$f15
5138 mfc1 $7,$f14
5139 la $1,bar (becomes a lui/addiu pair)
5140 jr $1
5141 So scan down to the lui/addi and extract the target
5142 address from those two instructions. */
c906108c 5143
52f729a7 5144 CORE_ADDR target_pc = get_frame_register_signed (frame, 2);
d37cca3d 5145 ULONGEST inst;
c906108c
SS
5146 int i;
5147
5148 /* See if the name of the target function is __fn_stub_*. */
6d82d43b
AC
5149 if (find_pc_partial_function (target_pc, &name, NULL, NULL) ==
5150 0)
c906108c
SS
5151 return target_pc;
5152 if (strncmp (name, "__fn_stub_", 10) != 0
5153 && strcmp (name, "etext") != 0
5154 && strcmp (name, "_etext") != 0)
5155 return target_pc;
5156
5157 /* Scan through this _fn_stub_ code for the lui/addiu pair.
c5aa993b
JM
5158 The limit on the search is arbitrarily set to 20
5159 instructions. FIXME. */
95ac2dcf 5160 for (i = 0, pc = 0; i < 20; i++, target_pc += MIPS_INSN32_SIZE)
c906108c 5161 {
e17a4113 5162 inst = mips_fetch_instruction (gdbarch, target_pc);
c5aa993b
JM
5163 if ((inst & 0xffff0000) == 0x3c010000) /* lui $at */
5164 pc = (inst << 16) & 0xffff0000; /* high word */
5165 else if ((inst & 0xffff0000) == 0x24210000) /* addiu $at */
5166 return pc | (inst & 0xffff); /* low word */
c906108c
SS
5167 }
5168
5169 /* Couldn't find the lui/addui pair, so return stub address. */
5170 return target_pc;
5171 }
5172 else
5173 /* This is the 'return' part of a call stub. The return
5174 address is in $r18. */
52f729a7 5175 return get_frame_register_signed (frame, 18);
c906108c
SS
5176 }
5177 }
c5aa993b 5178 return 0; /* not a stub */
c906108c
SS
5179}
5180
db5f024e
DJ
5181/* If the current PC is the start of a non-PIC-to-PIC stub, return the
5182 PC of the stub target. The stub just loads $t9 and jumps to it,
5183 so that $t9 has the correct value at function entry. */
5184
5185static CORE_ADDR
5186mips_skip_pic_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
5187{
e17a4113
UW
5188 struct gdbarch *gdbarch = get_frame_arch (frame);
5189 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
db5f024e
DJ
5190 struct minimal_symbol *msym;
5191 int i;
5192 gdb_byte stub_code[16];
5193 int32_t stub_words[4];
5194
5195 /* The stub for foo is named ".pic.foo", and is either two
5196 instructions inserted before foo or a three instruction sequence
5197 which jumps to foo. */
5198 msym = lookup_minimal_symbol_by_pc (pc);
5199 if (msym == NULL
5200 || SYMBOL_VALUE_ADDRESS (msym) != pc
5201 || SYMBOL_LINKAGE_NAME (msym) == NULL
5202 || strncmp (SYMBOL_LINKAGE_NAME (msym), ".pic.", 5) != 0)
5203 return 0;
5204
5205 /* A two-instruction header. */
5206 if (MSYMBOL_SIZE (msym) == 8)
5207 return pc + 8;
5208
5209 /* A three-instruction (plus delay slot) trampoline. */
5210 if (MSYMBOL_SIZE (msym) == 16)
5211 {
5212 if (target_read_memory (pc, stub_code, 16) != 0)
5213 return 0;
5214 for (i = 0; i < 4; i++)
e17a4113
UW
5215 stub_words[i] = extract_unsigned_integer (stub_code + i * 4,
5216 4, byte_order);
db5f024e
DJ
5217
5218 /* A stub contains these instructions:
5219 lui t9, %hi(target)
5220 j target
5221 addiu t9, t9, %lo(target)
5222 nop
5223
5224 This works even for N64, since stubs are only generated with
5225 -msym32. */
5226 if ((stub_words[0] & 0xffff0000U) == 0x3c190000
5227 && (stub_words[1] & 0xfc000000U) == 0x08000000
5228 && (stub_words[2] & 0xffff0000U) == 0x27390000
5229 && stub_words[3] == 0x00000000)
5230 return (((stub_words[0] & 0x0000ffff) << 16)
5231 + (stub_words[2] & 0x0000ffff));
5232 }
5233
5234 /* Not a recognized stub. */
5235 return 0;
5236}
5237
5238static CORE_ADDR
5239mips_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
5240{
5241 CORE_ADDR target_pc;
5242
5243 target_pc = mips_skip_mips16_trampoline_code (frame, pc);
5244 if (target_pc)
5245 return target_pc;
5246
5247 target_pc = find_solib_trampoline_target (frame, pc);
5248 if (target_pc)
5249 return target_pc;
5250
5251 target_pc = mips_skip_pic_trampoline_code (frame, pc);
5252 if (target_pc)
5253 return target_pc;
5254
5255 return 0;
5256}
5257
a4b8ebc8 5258/* Convert a dbx stab register number (from `r' declaration) to a GDB
f57d151a 5259 [1 * gdbarch_num_regs .. 2 * gdbarch_num_regs) REGNUM. */
88c72b7d
AC
5260
5261static int
d3f73121 5262mips_stab_reg_to_regnum (struct gdbarch *gdbarch, int num)
88c72b7d 5263{
a4b8ebc8 5264 int regnum;
2f38ef89 5265 if (num >= 0 && num < 32)
a4b8ebc8 5266 regnum = num;
2f38ef89 5267 else if (num >= 38 && num < 70)
d3f73121 5268 regnum = num + mips_regnum (gdbarch)->fp0 - 38;
040b99fd 5269 else if (num == 70)
d3f73121 5270 regnum = mips_regnum (gdbarch)->hi;
040b99fd 5271 else if (num == 71)
d3f73121 5272 regnum = mips_regnum (gdbarch)->lo;
2f38ef89 5273 else
a4b8ebc8
AC
5274 /* This will hopefully (eventually) provoke a warning. Should
5275 we be calling complaint() here? */
d3f73121
MD
5276 return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
5277 return gdbarch_num_regs (gdbarch) + regnum;
88c72b7d
AC
5278}
5279
2f38ef89 5280
a4b8ebc8 5281/* Convert a dwarf, dwarf2, or ecoff register number to a GDB [1 *
f57d151a 5282 gdbarch_num_regs .. 2 * gdbarch_num_regs) REGNUM. */
88c72b7d
AC
5283
5284static int
d3f73121 5285mips_dwarf_dwarf2_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int num)
88c72b7d 5286{
a4b8ebc8 5287 int regnum;
2f38ef89 5288 if (num >= 0 && num < 32)
a4b8ebc8 5289 regnum = num;
2f38ef89 5290 else if (num >= 32 && num < 64)
d3f73121 5291 regnum = num + mips_regnum (gdbarch)->fp0 - 32;
040b99fd 5292 else if (num == 64)
d3f73121 5293 regnum = mips_regnum (gdbarch)->hi;
040b99fd 5294 else if (num == 65)
d3f73121 5295 regnum = mips_regnum (gdbarch)->lo;
2f38ef89 5296 else
a4b8ebc8
AC
5297 /* This will hopefully (eventually) provoke a warning. Should we
5298 be calling complaint() here? */
d3f73121
MD
5299 return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
5300 return gdbarch_num_regs (gdbarch) + regnum;
a4b8ebc8
AC
5301}
5302
5303static int
e7faf938 5304mips_register_sim_regno (struct gdbarch *gdbarch, int regnum)
a4b8ebc8
AC
5305{
5306 /* Only makes sense to supply raw registers. */
e7faf938 5307 gdb_assert (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch));
a4b8ebc8
AC
5308 /* FIXME: cagney/2002-05-13: Need to look at the pseudo register to
5309 decide if it is valid. Should instead define a standard sim/gdb
5310 register numbering scheme. */
e7faf938
MD
5311 if (gdbarch_register_name (gdbarch,
5312 gdbarch_num_regs (gdbarch) + regnum) != NULL
5313 && gdbarch_register_name (gdbarch,
5314 gdbarch_num_regs (gdbarch) + regnum)[0] != '\0')
a4b8ebc8
AC
5315 return regnum;
5316 else
6d82d43b 5317 return LEGACY_SIM_REGNO_IGNORE;
88c72b7d
AC
5318}
5319
2f38ef89 5320
4844f454
CV
5321/* Convert an integer into an address. Extracting the value signed
5322 guarantees a correctly sign extended address. */
fc0c74b1
AC
5323
5324static CORE_ADDR
79dd2d24 5325mips_integer_to_address (struct gdbarch *gdbarch,
870cd05e 5326 struct type *type, const gdb_byte *buf)
fc0c74b1 5327{
e17a4113
UW
5328 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5329 return extract_signed_integer (buf, TYPE_LENGTH (type), byte_order);
fc0c74b1
AC
5330}
5331
82e91389
DJ
5332/* Dummy virtual frame pointer method. This is no more or less accurate
5333 than most other architectures; we just need to be explicit about it,
5334 because the pseudo-register gdbarch_sp_regnum will otherwise lead to
5335 an assertion failure. */
5336
5337static void
a54fba4c
MD
5338mips_virtual_frame_pointer (struct gdbarch *gdbarch,
5339 CORE_ADDR pc, int *reg, LONGEST *offset)
82e91389
DJ
5340{
5341 *reg = MIPS_SP_REGNUM;
5342 *offset = 0;
5343}
5344
caaa3122
DJ
5345static void
5346mips_find_abi_section (bfd *abfd, asection *sect, void *obj)
5347{
5348 enum mips_abi *abip = (enum mips_abi *) obj;
5349 const char *name = bfd_get_section_name (abfd, sect);
5350
5351 if (*abip != MIPS_ABI_UNKNOWN)
5352 return;
5353
5354 if (strncmp (name, ".mdebug.", 8) != 0)
5355 return;
5356
5357 if (strcmp (name, ".mdebug.abi32") == 0)
5358 *abip = MIPS_ABI_O32;
5359 else if (strcmp (name, ".mdebug.abiN32") == 0)
5360 *abip = MIPS_ABI_N32;
62a49b2c 5361 else if (strcmp (name, ".mdebug.abi64") == 0)
e3bddbfa 5362 *abip = MIPS_ABI_N64;
caaa3122
DJ
5363 else if (strcmp (name, ".mdebug.abiO64") == 0)
5364 *abip = MIPS_ABI_O64;
5365 else if (strcmp (name, ".mdebug.eabi32") == 0)
5366 *abip = MIPS_ABI_EABI32;
5367 else if (strcmp (name, ".mdebug.eabi64") == 0)
5368 *abip = MIPS_ABI_EABI64;
5369 else
8a3fe4f8 5370 warning (_("unsupported ABI %s."), name + 8);
caaa3122
DJ
5371}
5372
22e47e37
FF
5373static void
5374mips_find_long_section (bfd *abfd, asection *sect, void *obj)
5375{
5376 int *lbp = (int *) obj;
5377 const char *name = bfd_get_section_name (abfd, sect);
5378
5379 if (strncmp (name, ".gcc_compiled_long32", 20) == 0)
5380 *lbp = 32;
5381 else if (strncmp (name, ".gcc_compiled_long64", 20) == 0)
5382 *lbp = 64;
5383 else if (strncmp (name, ".gcc_compiled_long", 18) == 0)
5384 warning (_("unrecognized .gcc_compiled_longXX"));
5385}
5386
2e4ebe70
DJ
5387static enum mips_abi
5388global_mips_abi (void)
5389{
5390 int i;
5391
5392 for (i = 0; mips_abi_strings[i] != NULL; i++)
5393 if (mips_abi_strings[i] == mips_abi_string)
5394 return (enum mips_abi) i;
5395
e2e0b3e5 5396 internal_error (__FILE__, __LINE__, _("unknown ABI string"));
2e4ebe70
DJ
5397}
5398
29709017
DJ
5399static void
5400mips_register_g_packet_guesses (struct gdbarch *gdbarch)
5401{
29709017
DJ
5402 /* If the size matches the set of 32-bit or 64-bit integer registers,
5403 assume that's what we've got. */
4eb0ad19
DJ
5404 register_remote_g_packet_guess (gdbarch, 38 * 4, mips_tdesc_gp32);
5405 register_remote_g_packet_guess (gdbarch, 38 * 8, mips_tdesc_gp64);
29709017
DJ
5406
5407 /* If the size matches the full set of registers GDB traditionally
5408 knows about, including floating point, for either 32-bit or
5409 64-bit, assume that's what we've got. */
4eb0ad19
DJ
5410 register_remote_g_packet_guess (gdbarch, 90 * 4, mips_tdesc_gp32);
5411 register_remote_g_packet_guess (gdbarch, 90 * 8, mips_tdesc_gp64);
29709017
DJ
5412
5413 /* Otherwise we don't have a useful guess. */
5414}
5415
f8b73d13
DJ
5416static struct value *
5417value_of_mips_user_reg (struct frame_info *frame, const void *baton)
5418{
5419 const int *reg_p = baton;
5420 return value_of_register (*reg_p, frame);
5421}
5422
c2d11a7d 5423static struct gdbarch *
6d82d43b 5424mips_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
c2d11a7d 5425{
c2d11a7d
JM
5426 struct gdbarch *gdbarch;
5427 struct gdbarch_tdep *tdep;
5428 int elf_flags;
2e4ebe70 5429 enum mips_abi mips_abi, found_abi, wanted_abi;
f8b73d13 5430 int i, num_regs;
8d5838b5 5431 enum mips_fpu_type fpu_type;
f8b73d13 5432 struct tdesc_arch_data *tdesc_data = NULL;
609ca2b9 5433 int elf_fpu_type = 0;
f8b73d13
DJ
5434
5435 /* Check any target description for validity. */
5436 if (tdesc_has_registers (info.target_desc))
5437 {
5438 static const char *const mips_gprs[] = {
5439 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
5440 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
5441 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
5442 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
5443 };
5444 static const char *const mips_fprs[] = {
5445 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
5446 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
5447 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
5448 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
5449 };
5450
5451 const struct tdesc_feature *feature;
5452 int valid_p;
5453
5454 feature = tdesc_find_feature (info.target_desc,
5455 "org.gnu.gdb.mips.cpu");
5456 if (feature == NULL)
5457 return NULL;
5458
5459 tdesc_data = tdesc_data_alloc ();
5460
5461 valid_p = 1;
5462 for (i = MIPS_ZERO_REGNUM; i <= MIPS_RA_REGNUM; i++)
5463 valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
5464 mips_gprs[i]);
5465
5466
5467 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5468 MIPS_EMBED_LO_REGNUM, "lo");
5469 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5470 MIPS_EMBED_HI_REGNUM, "hi");
5471 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5472 MIPS_EMBED_PC_REGNUM, "pc");
5473
5474 if (!valid_p)
5475 {
5476 tdesc_data_cleanup (tdesc_data);
5477 return NULL;
5478 }
5479
5480 feature = tdesc_find_feature (info.target_desc,
5481 "org.gnu.gdb.mips.cp0");
5482 if (feature == NULL)
5483 {
5484 tdesc_data_cleanup (tdesc_data);
5485 return NULL;
5486 }
5487
5488 valid_p = 1;
5489 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5490 MIPS_EMBED_BADVADDR_REGNUM,
5491 "badvaddr");
5492 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5493 MIPS_PS_REGNUM, "status");
5494 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5495 MIPS_EMBED_CAUSE_REGNUM, "cause");
5496
5497 if (!valid_p)
5498 {
5499 tdesc_data_cleanup (tdesc_data);
5500 return NULL;
5501 }
5502
5503 /* FIXME drow/2007-05-17: The FPU should be optional. The MIPS
5504 backend is not prepared for that, though. */
5505 feature = tdesc_find_feature (info.target_desc,
5506 "org.gnu.gdb.mips.fpu");
5507 if (feature == NULL)
5508 {
5509 tdesc_data_cleanup (tdesc_data);
5510 return NULL;
5511 }
5512
5513 valid_p = 1;
5514 for (i = 0; i < 32; i++)
5515 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5516 i + MIPS_EMBED_FP0_REGNUM,
5517 mips_fprs[i]);
5518
5519 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5520 MIPS_EMBED_FP0_REGNUM + 32, "fcsr");
5521 valid_p &= tdesc_numbered_register (feature, tdesc_data,
5522 MIPS_EMBED_FP0_REGNUM + 33, "fir");
5523
5524 if (!valid_p)
5525 {
5526 tdesc_data_cleanup (tdesc_data);
5527 return NULL;
5528 }
5529
5530 /* It would be nice to detect an attempt to use a 64-bit ABI
5531 when only 32-bit registers are provided. */
5532 }
c2d11a7d 5533
ec03c1ac
AC
5534 /* First of all, extract the elf_flags, if available. */
5535 if (info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
5536 elf_flags = elf_elfheader (info.abfd)->e_flags;
6214a8a1
AC
5537 else if (arches != NULL)
5538 elf_flags = gdbarch_tdep (arches->gdbarch)->elf_flags;
ec03c1ac
AC
5539 else
5540 elf_flags = 0;
5541 if (gdbarch_debug)
5542 fprintf_unfiltered (gdb_stdlog,
6d82d43b 5543 "mips_gdbarch_init: elf_flags = 0x%08x\n", elf_flags);
c2d11a7d 5544
102182a9 5545 /* Check ELF_FLAGS to see if it specifies the ABI being used. */
0dadbba0
AC
5546 switch ((elf_flags & EF_MIPS_ABI))
5547 {
5548 case E_MIPS_ABI_O32:
ec03c1ac 5549 found_abi = MIPS_ABI_O32;
0dadbba0
AC
5550 break;
5551 case E_MIPS_ABI_O64:
ec03c1ac 5552 found_abi = MIPS_ABI_O64;
0dadbba0
AC
5553 break;
5554 case E_MIPS_ABI_EABI32:
ec03c1ac 5555 found_abi = MIPS_ABI_EABI32;
0dadbba0
AC
5556 break;
5557 case E_MIPS_ABI_EABI64:
ec03c1ac 5558 found_abi = MIPS_ABI_EABI64;
0dadbba0
AC
5559 break;
5560 default:
acdb74a0 5561 if ((elf_flags & EF_MIPS_ABI2))
ec03c1ac 5562 found_abi = MIPS_ABI_N32;
acdb74a0 5563 else
ec03c1ac 5564 found_abi = MIPS_ABI_UNKNOWN;
0dadbba0
AC
5565 break;
5566 }
acdb74a0 5567
caaa3122 5568 /* GCC creates a pseudo-section whose name describes the ABI. */
ec03c1ac
AC
5569 if (found_abi == MIPS_ABI_UNKNOWN && info.abfd != NULL)
5570 bfd_map_over_sections (info.abfd, mips_find_abi_section, &found_abi);
caaa3122 5571
dc305454 5572 /* If we have no useful BFD information, use the ABI from the last
ec03c1ac
AC
5573 MIPS architecture (if there is one). */
5574 if (found_abi == MIPS_ABI_UNKNOWN && info.abfd == NULL && arches != NULL)
5575 found_abi = gdbarch_tdep (arches->gdbarch)->found_abi;
2e4ebe70 5576
32a6503c 5577 /* Try the architecture for any hint of the correct ABI. */
ec03c1ac 5578 if (found_abi == MIPS_ABI_UNKNOWN
bf64bfd6
AC
5579 && info.bfd_arch_info != NULL
5580 && info.bfd_arch_info->arch == bfd_arch_mips)
5581 {
5582 switch (info.bfd_arch_info->mach)
5583 {
5584 case bfd_mach_mips3900:
ec03c1ac 5585 found_abi = MIPS_ABI_EABI32;
bf64bfd6
AC
5586 break;
5587 case bfd_mach_mips4100:
5588 case bfd_mach_mips5000:
ec03c1ac 5589 found_abi = MIPS_ABI_EABI64;
bf64bfd6 5590 break;
1d06468c
EZ
5591 case bfd_mach_mips8000:
5592 case bfd_mach_mips10000:
32a6503c
KB
5593 /* On Irix, ELF64 executables use the N64 ABI. The
5594 pseudo-sections which describe the ABI aren't present
5595 on IRIX. (Even for executables created by gcc.) */
28d169de
KB
5596 if (bfd_get_flavour (info.abfd) == bfd_target_elf_flavour
5597 && elf_elfheader (info.abfd)->e_ident[EI_CLASS] == ELFCLASS64)
ec03c1ac 5598 found_abi = MIPS_ABI_N64;
28d169de 5599 else
ec03c1ac 5600 found_abi = MIPS_ABI_N32;
1d06468c 5601 break;
bf64bfd6
AC
5602 }
5603 }
2e4ebe70 5604
26c53e50
DJ
5605 /* Default 64-bit objects to N64 instead of O32. */
5606 if (found_abi == MIPS_ABI_UNKNOWN
5607 && info.abfd != NULL
5608 && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour
5609 && elf_elfheader (info.abfd)->e_ident[EI_CLASS] == ELFCLASS64)
5610 found_abi = MIPS_ABI_N64;
5611
ec03c1ac
AC
5612 if (gdbarch_debug)
5613 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: found_abi = %d\n",
5614 found_abi);
5615
5616 /* What has the user specified from the command line? */
5617 wanted_abi = global_mips_abi ();
5618 if (gdbarch_debug)
5619 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: wanted_abi = %d\n",
5620 wanted_abi);
2e4ebe70
DJ
5621
5622 /* Now that we have found what the ABI for this binary would be,
5623 check whether the user is overriding it. */
2e4ebe70
DJ
5624 if (wanted_abi != MIPS_ABI_UNKNOWN)
5625 mips_abi = wanted_abi;
ec03c1ac
AC
5626 else if (found_abi != MIPS_ABI_UNKNOWN)
5627 mips_abi = found_abi;
5628 else
5629 mips_abi = MIPS_ABI_O32;
5630 if (gdbarch_debug)
5631 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: mips_abi = %d\n",
5632 mips_abi);
2e4ebe70 5633
ec03c1ac 5634 /* Also used when doing an architecture lookup. */
4b9b3959 5635 if (gdbarch_debug)
ec03c1ac
AC
5636 fprintf_unfiltered (gdb_stdlog,
5637 "mips_gdbarch_init: mips64_transfers_32bit_regs_p = %d\n",
5638 mips64_transfers_32bit_regs_p);
0dadbba0 5639
8d5838b5 5640 /* Determine the MIPS FPU type. */
609ca2b9
DJ
5641#ifdef HAVE_ELF
5642 if (info.abfd
5643 && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
5644 elf_fpu_type = bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_GNU,
5645 Tag_GNU_MIPS_ABI_FP);
5646#endif /* HAVE_ELF */
5647
8d5838b5
AC
5648 if (!mips_fpu_type_auto)
5649 fpu_type = mips_fpu_type;
609ca2b9
DJ
5650 else if (elf_fpu_type != 0)
5651 {
5652 switch (elf_fpu_type)
5653 {
5654 case 1:
5655 fpu_type = MIPS_FPU_DOUBLE;
5656 break;
5657 case 2:
5658 fpu_type = MIPS_FPU_SINGLE;
5659 break;
5660 case 3:
5661 default:
5662 /* Soft float or unknown. */
5663 fpu_type = MIPS_FPU_NONE;
5664 break;
5665 }
5666 }
8d5838b5
AC
5667 else if (info.bfd_arch_info != NULL
5668 && info.bfd_arch_info->arch == bfd_arch_mips)
5669 switch (info.bfd_arch_info->mach)
5670 {
5671 case bfd_mach_mips3900:
5672 case bfd_mach_mips4100:
5673 case bfd_mach_mips4111:
a9d61c86 5674 case bfd_mach_mips4120:
8d5838b5
AC
5675 fpu_type = MIPS_FPU_NONE;
5676 break;
5677 case bfd_mach_mips4650:
5678 fpu_type = MIPS_FPU_SINGLE;
5679 break;
5680 default:
5681 fpu_type = MIPS_FPU_DOUBLE;
5682 break;
5683 }
5684 else if (arches != NULL)
5685 fpu_type = gdbarch_tdep (arches->gdbarch)->mips_fpu_type;
5686 else
5687 fpu_type = MIPS_FPU_DOUBLE;
5688 if (gdbarch_debug)
5689 fprintf_unfiltered (gdb_stdlog,
6d82d43b 5690 "mips_gdbarch_init: fpu_type = %d\n", fpu_type);
8d5838b5 5691
29709017
DJ
5692 /* Check for blatant incompatibilities. */
5693
5694 /* If we have only 32-bit registers, then we can't debug a 64-bit
5695 ABI. */
5696 if (info.target_desc
5697 && tdesc_property (info.target_desc, PROPERTY_GP32) != NULL
5698 && mips_abi != MIPS_ABI_EABI32
5699 && mips_abi != MIPS_ABI_O32)
f8b73d13
DJ
5700 {
5701 if (tdesc_data != NULL)
5702 tdesc_data_cleanup (tdesc_data);
5703 return NULL;
5704 }
29709017 5705
c2d11a7d
JM
5706 /* try to find a pre-existing architecture */
5707 for (arches = gdbarch_list_lookup_by_info (arches, &info);
5708 arches != NULL;
5709 arches = gdbarch_list_lookup_by_info (arches->next, &info))
5710 {
5711 /* MIPS needs to be pedantic about which ABI the object is
102182a9 5712 using. */
9103eae0 5713 if (gdbarch_tdep (arches->gdbarch)->elf_flags != elf_flags)
c2d11a7d 5714 continue;
9103eae0 5715 if (gdbarch_tdep (arches->gdbarch)->mips_abi != mips_abi)
0dadbba0 5716 continue;
719ec221
AC
5717 /* Need to be pedantic about which register virtual size is
5718 used. */
5719 if (gdbarch_tdep (arches->gdbarch)->mips64_transfers_32bit_regs_p
5720 != mips64_transfers_32bit_regs_p)
5721 continue;
8d5838b5
AC
5722 /* Be pedantic about which FPU is selected. */
5723 if (gdbarch_tdep (arches->gdbarch)->mips_fpu_type != fpu_type)
5724 continue;
f8b73d13
DJ
5725
5726 if (tdesc_data != NULL)
5727 tdesc_data_cleanup (tdesc_data);
4be87837 5728 return arches->gdbarch;
c2d11a7d
JM
5729 }
5730
102182a9 5731 /* Need a new architecture. Fill in a target specific vector. */
c2d11a7d
JM
5732 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
5733 gdbarch = gdbarch_alloc (&info, tdep);
5734 tdep->elf_flags = elf_flags;
719ec221 5735 tdep->mips64_transfers_32bit_regs_p = mips64_transfers_32bit_regs_p;
ec03c1ac
AC
5736 tdep->found_abi = found_abi;
5737 tdep->mips_abi = mips_abi;
8d5838b5 5738 tdep->mips_fpu_type = fpu_type;
29709017
DJ
5739 tdep->register_size_valid_p = 0;
5740 tdep->register_size = 0;
5741
5742 if (info.target_desc)
5743 {
5744 /* Some useful properties can be inferred from the target. */
5745 if (tdesc_property (info.target_desc, PROPERTY_GP32) != NULL)
5746 {
5747 tdep->register_size_valid_p = 1;
5748 tdep->register_size = 4;
5749 }
5750 else if (tdesc_property (info.target_desc, PROPERTY_GP64) != NULL)
5751 {
5752 tdep->register_size_valid_p = 1;
5753 tdep->register_size = 8;
5754 }
5755 }
c2d11a7d 5756
102182a9 5757 /* Initially set everything according to the default ABI/ISA. */
c2d11a7d
JM
5758 set_gdbarch_short_bit (gdbarch, 16);
5759 set_gdbarch_int_bit (gdbarch, 32);
5760 set_gdbarch_float_bit (gdbarch, 32);
5761 set_gdbarch_double_bit (gdbarch, 64);
5762 set_gdbarch_long_double_bit (gdbarch, 64);
a4b8ebc8
AC
5763 set_gdbarch_register_reggroup_p (gdbarch, mips_register_reggroup_p);
5764 set_gdbarch_pseudo_register_read (gdbarch, mips_pseudo_register_read);
5765 set_gdbarch_pseudo_register_write (gdbarch, mips_pseudo_register_write);
1d06468c 5766
6d82d43b 5767 set_gdbarch_elf_make_msymbol_special (gdbarch,
f7ab6ec6
MS
5768 mips_elf_make_msymbol_special);
5769
16e109ca 5770 /* Fill in the OS dependant register numbers and names. */
56cea623 5771 {
16e109ca 5772 const char **reg_names;
56cea623
AC
5773 struct mips_regnum *regnum = GDBARCH_OBSTACK_ZALLOC (gdbarch,
5774 struct mips_regnum);
f8b73d13
DJ
5775 if (tdesc_has_registers (info.target_desc))
5776 {
5777 regnum->lo = MIPS_EMBED_LO_REGNUM;
5778 regnum->hi = MIPS_EMBED_HI_REGNUM;
5779 regnum->badvaddr = MIPS_EMBED_BADVADDR_REGNUM;
5780 regnum->cause = MIPS_EMBED_CAUSE_REGNUM;
5781 regnum->pc = MIPS_EMBED_PC_REGNUM;
5782 regnum->fp0 = MIPS_EMBED_FP0_REGNUM;
5783 regnum->fp_control_status = 70;
5784 regnum->fp_implementation_revision = 71;
5785 num_regs = MIPS_LAST_EMBED_REGNUM + 1;
5786 reg_names = NULL;
5787 }
5788 else if (info.osabi == GDB_OSABI_IRIX)
56cea623
AC
5789 {
5790 regnum->fp0 = 32;
5791 regnum->pc = 64;
5792 regnum->cause = 65;
5793 regnum->badvaddr = 66;
5794 regnum->hi = 67;
5795 regnum->lo = 68;
5796 regnum->fp_control_status = 69;
5797 regnum->fp_implementation_revision = 70;
5798 num_regs = 71;
16e109ca 5799 reg_names = mips_irix_reg_names;
56cea623
AC
5800 }
5801 else
5802 {
5803 regnum->lo = MIPS_EMBED_LO_REGNUM;
5804 regnum->hi = MIPS_EMBED_HI_REGNUM;
5805 regnum->badvaddr = MIPS_EMBED_BADVADDR_REGNUM;
5806 regnum->cause = MIPS_EMBED_CAUSE_REGNUM;
5807 regnum->pc = MIPS_EMBED_PC_REGNUM;
5808 regnum->fp0 = MIPS_EMBED_FP0_REGNUM;
5809 regnum->fp_control_status = 70;
5810 regnum->fp_implementation_revision = 71;
5811 num_regs = 90;
16e109ca
AC
5812 if (info.bfd_arch_info != NULL
5813 && info.bfd_arch_info->mach == bfd_mach_mips3900)
5814 reg_names = mips_tx39_reg_names;
5815 else
5816 reg_names = mips_generic_reg_names;
56cea623 5817 }
3e8c568d 5818 /* FIXME: cagney/2003-11-15: For MIPS, hasn't gdbarch_pc_regnum been
fb14de7b 5819 replaced by gdbarch_read_pc? */
f10683bb
MH
5820 set_gdbarch_pc_regnum (gdbarch, regnum->pc + num_regs);
5821 set_gdbarch_sp_regnum (gdbarch, MIPS_SP_REGNUM + num_regs);
56cea623
AC
5822 set_gdbarch_fp0_regnum (gdbarch, regnum->fp0);
5823 set_gdbarch_num_regs (gdbarch, num_regs);
5824 set_gdbarch_num_pseudo_regs (gdbarch, num_regs);
16e109ca 5825 set_gdbarch_register_name (gdbarch, mips_register_name);
82e91389 5826 set_gdbarch_virtual_frame_pointer (gdbarch, mips_virtual_frame_pointer);
16e109ca
AC
5827 tdep->mips_processor_reg_names = reg_names;
5828 tdep->regnum = regnum;
56cea623 5829 }
fe29b929 5830
0dadbba0 5831 switch (mips_abi)
c2d11a7d 5832 {
0dadbba0 5833 case MIPS_ABI_O32:
25ab4790 5834 set_gdbarch_push_dummy_call (gdbarch, mips_o32_push_dummy_call);
29dfb2ac 5835 set_gdbarch_return_value (gdbarch, mips_o32_return_value);
4c7d22cb 5836 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 4 - 1;
56cea623 5837 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 4 - 1;
4014092b 5838 tdep->default_mask_address_p = 0;
c2d11a7d
JM
5839 set_gdbarch_long_bit (gdbarch, 32);
5840 set_gdbarch_ptr_bit (gdbarch, 32);
5841 set_gdbarch_long_long_bit (gdbarch, 64);
5842 break;
0dadbba0 5843 case MIPS_ABI_O64:
25ab4790 5844 set_gdbarch_push_dummy_call (gdbarch, mips_o64_push_dummy_call);
9c8fdbfa 5845 set_gdbarch_return_value (gdbarch, mips_o64_return_value);
4c7d22cb 5846 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 4 - 1;
56cea623 5847 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 4 - 1;
361d1df0 5848 tdep->default_mask_address_p = 0;
c2d11a7d
JM
5849 set_gdbarch_long_bit (gdbarch, 32);
5850 set_gdbarch_ptr_bit (gdbarch, 32);
5851 set_gdbarch_long_long_bit (gdbarch, 64);
5852 break;
0dadbba0 5853 case MIPS_ABI_EABI32:
25ab4790 5854 set_gdbarch_push_dummy_call (gdbarch, mips_eabi_push_dummy_call);
9c8fdbfa 5855 set_gdbarch_return_value (gdbarch, mips_eabi_return_value);
4c7d22cb 5856 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 8 - 1;
56cea623 5857 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
4014092b 5858 tdep->default_mask_address_p = 0;
c2d11a7d
JM
5859 set_gdbarch_long_bit (gdbarch, 32);
5860 set_gdbarch_ptr_bit (gdbarch, 32);
5861 set_gdbarch_long_long_bit (gdbarch, 64);
5862 break;
0dadbba0 5863 case MIPS_ABI_EABI64:
25ab4790 5864 set_gdbarch_push_dummy_call (gdbarch, mips_eabi_push_dummy_call);
9c8fdbfa 5865 set_gdbarch_return_value (gdbarch, mips_eabi_return_value);
4c7d22cb 5866 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 8 - 1;
56cea623 5867 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
4014092b 5868 tdep->default_mask_address_p = 0;
c2d11a7d
JM
5869 set_gdbarch_long_bit (gdbarch, 64);
5870 set_gdbarch_ptr_bit (gdbarch, 64);
5871 set_gdbarch_long_long_bit (gdbarch, 64);
5872 break;
0dadbba0 5873 case MIPS_ABI_N32:
25ab4790 5874 set_gdbarch_push_dummy_call (gdbarch, mips_n32n64_push_dummy_call);
29dfb2ac 5875 set_gdbarch_return_value (gdbarch, mips_n32n64_return_value);
4c7d22cb 5876 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 8 - 1;
56cea623 5877 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
4014092b 5878 tdep->default_mask_address_p = 0;
0dadbba0
AC
5879 set_gdbarch_long_bit (gdbarch, 32);
5880 set_gdbarch_ptr_bit (gdbarch, 32);
5881 set_gdbarch_long_long_bit (gdbarch, 64);
fed7ba43 5882 set_gdbarch_long_double_bit (gdbarch, 128);
b14d30e1 5883 set_gdbarch_long_double_format (gdbarch, floatformats_ibm_long_double);
28d169de
KB
5884 break;
5885 case MIPS_ABI_N64:
25ab4790 5886 set_gdbarch_push_dummy_call (gdbarch, mips_n32n64_push_dummy_call);
29dfb2ac 5887 set_gdbarch_return_value (gdbarch, mips_n32n64_return_value);
4c7d22cb 5888 tdep->mips_last_arg_regnum = MIPS_A0_REGNUM + 8 - 1;
56cea623 5889 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
28d169de
KB
5890 tdep->default_mask_address_p = 0;
5891 set_gdbarch_long_bit (gdbarch, 64);
5892 set_gdbarch_ptr_bit (gdbarch, 64);
5893 set_gdbarch_long_long_bit (gdbarch, 64);
fed7ba43 5894 set_gdbarch_long_double_bit (gdbarch, 128);
b14d30e1 5895 set_gdbarch_long_double_format (gdbarch, floatformats_ibm_long_double);
0dadbba0 5896 break;
c2d11a7d 5897 default:
e2e0b3e5 5898 internal_error (__FILE__, __LINE__, _("unknown ABI in switch"));
c2d11a7d
JM
5899 }
5900
22e47e37
FF
5901 /* GCC creates a pseudo-section whose name specifies the size of
5902 longs, since -mlong32 or -mlong64 may be used independent of
5903 other options. How those options affect pointer sizes is ABI and
5904 architecture dependent, so use them to override the default sizes
5905 set by the ABI. This table shows the relationship between ABI,
5906 -mlongXX, and size of pointers:
5907
5908 ABI -mlongXX ptr bits
5909 --- -------- --------
5910 o32 32 32
5911 o32 64 32
5912 n32 32 32
5913 n32 64 64
5914 o64 32 32
5915 o64 64 64
5916 n64 32 32
5917 n64 64 64
5918 eabi32 32 32
5919 eabi32 64 32
5920 eabi64 32 32
5921 eabi64 64 64
5922
5923 Note that for o32 and eabi32, pointers are always 32 bits
5924 regardless of any -mlongXX option. For all others, pointers and
5925 longs are the same, as set by -mlongXX or set by defaults.
5926 */
5927
5928 if (info.abfd != NULL)
5929 {
5930 int long_bit = 0;
5931
5932 bfd_map_over_sections (info.abfd, mips_find_long_section, &long_bit);
5933 if (long_bit)
5934 {
5935 set_gdbarch_long_bit (gdbarch, long_bit);
5936 switch (mips_abi)
5937 {
5938 case MIPS_ABI_O32:
5939 case MIPS_ABI_EABI32:
5940 break;
5941 case MIPS_ABI_N32:
5942 case MIPS_ABI_O64:
5943 case MIPS_ABI_N64:
5944 case MIPS_ABI_EABI64:
5945 set_gdbarch_ptr_bit (gdbarch, long_bit);
5946 break;
5947 default:
5948 internal_error (__FILE__, __LINE__, _("unknown ABI in switch"));
5949 }
5950 }
5951 }
5952
a5ea2558
AC
5953 /* FIXME: jlarmour/2000-04-07: There *is* a flag EF_MIPS_32BIT_MODE
5954 that could indicate -gp32 BUT gas/config/tc-mips.c contains the
5955 comment:
5956
5957 ``We deliberately don't allow "-gp32" to set the MIPS_32BITMODE
5958 flag in object files because to do so would make it impossible to
102182a9 5959 link with libraries compiled without "-gp32". This is
a5ea2558 5960 unnecessarily restrictive.
361d1df0 5961
a5ea2558
AC
5962 We could solve this problem by adding "-gp32" multilibs to gcc,
5963 but to set this flag before gcc is built with such multilibs will
5964 break too many systems.''
5965
5966 But even more unhelpfully, the default linker output target for
5967 mips64-elf is elf32-bigmips, and has EF_MIPS_32BIT_MODE set, even
5968 for 64-bit programs - you need to change the ABI to change this,
102182a9 5969 and not all gcc targets support that currently. Therefore using
a5ea2558
AC
5970 this flag to detect 32-bit mode would do the wrong thing given
5971 the current gcc - it would make GDB treat these 64-bit programs
102182a9 5972 as 32-bit programs by default. */
a5ea2558 5973
6c997a34 5974 set_gdbarch_read_pc (gdbarch, mips_read_pc);
b6cb9035 5975 set_gdbarch_write_pc (gdbarch, mips_write_pc);
c2d11a7d 5976
102182a9
MS
5977 /* Add/remove bits from an address. The MIPS needs be careful to
5978 ensure that all 32 bit addresses are sign extended to 64 bits. */
875e1767
AC
5979 set_gdbarch_addr_bits_remove (gdbarch, mips_addr_bits_remove);
5980
58dfe9ff
AC
5981 /* Unwind the frame. */
5982 set_gdbarch_unwind_pc (gdbarch, mips_unwind_pc);
30244cd8 5983 set_gdbarch_unwind_sp (gdbarch, mips_unwind_sp);
b8a22b94 5984 set_gdbarch_dummy_id (gdbarch, mips_dummy_id);
10312cc4 5985
102182a9 5986 /* Map debug register numbers onto internal register numbers. */
88c72b7d 5987 set_gdbarch_stab_reg_to_regnum (gdbarch, mips_stab_reg_to_regnum);
6d82d43b
AC
5988 set_gdbarch_ecoff_reg_to_regnum (gdbarch,
5989 mips_dwarf_dwarf2_ecoff_reg_to_regnum);
6d82d43b
AC
5990 set_gdbarch_dwarf2_reg_to_regnum (gdbarch,
5991 mips_dwarf_dwarf2_ecoff_reg_to_regnum);
a4b8ebc8 5992 set_gdbarch_register_sim_regno (gdbarch, mips_register_sim_regno);
88c72b7d 5993
c2d11a7d
JM
5994 /* MIPS version of CALL_DUMMY */
5995
9710e734
AC
5996 /* NOTE: cagney/2003-08-05: Eventually call dummy location will be
5997 replaced by a command, and all targets will default to on stack
5998 (regardless of the stack's execute status). */
5999 set_gdbarch_call_dummy_location (gdbarch, AT_SYMBOL);
dc604539 6000 set_gdbarch_frame_align (gdbarch, mips_frame_align);
d05285fa 6001
87783b8b
AC
6002 set_gdbarch_convert_register_p (gdbarch, mips_convert_register_p);
6003 set_gdbarch_register_to_value (gdbarch, mips_register_to_value);
6004 set_gdbarch_value_to_register (gdbarch, mips_value_to_register);
6005
f7b9e9fc
AC
6006 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
6007 set_gdbarch_breakpoint_from_pc (gdbarch, mips_breakpoint_from_pc);
f7b9e9fc
AC
6008
6009 set_gdbarch_skip_prologue (gdbarch, mips_skip_prologue);
f7b9e9fc 6010
97ab0fdd
MR
6011 set_gdbarch_in_function_epilogue_p (gdbarch, mips_in_function_epilogue_p);
6012
fc0c74b1
AC
6013 set_gdbarch_pointer_to_address (gdbarch, signed_pointer_to_address);
6014 set_gdbarch_address_to_pointer (gdbarch, address_to_signed_pointer);
6015 set_gdbarch_integer_to_address (gdbarch, mips_integer_to_address);
70f80edf 6016
a4b8ebc8 6017 set_gdbarch_register_type (gdbarch, mips_register_type);
78fde5f8 6018
e11c53d2 6019 set_gdbarch_print_registers_info (gdbarch, mips_print_registers_info);
bf1f5b4c 6020
9dae60cc
UW
6021 if (mips_abi == MIPS_ABI_N32)
6022 set_gdbarch_print_insn (gdbarch, gdb_print_insn_mips_n32);
6023 else if (mips_abi == MIPS_ABI_N64)
6024 set_gdbarch_print_insn (gdbarch, gdb_print_insn_mips_n64);
6025 else
6026 set_gdbarch_print_insn (gdbarch, gdb_print_insn_mips);
e5ab0dce 6027
d92524f1
PM
6028 /* FIXME: cagney/2003-08-29: The macros target_have_steppable_watchpoint,
6029 HAVE_NONSTEPPABLE_WATCHPOINT, and target_have_continuable_watchpoint
3a3bc038 6030 need to all be folded into the target vector. Since they are
d92524f1
PM
6031 being used as guards for target_stopped_by_watchpoint, why not have
6032 target_stopped_by_watchpoint return the type of watchpoint that the code
3a3bc038
AC
6033 is sitting on? */
6034 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
6035
e7d6a6d2 6036 set_gdbarch_skip_trampoline_code (gdbarch, mips_skip_trampoline_code);
757a7cc6 6037
3352ef37
AC
6038 set_gdbarch_single_step_through_delay (gdbarch, mips_single_step_through_delay);
6039
0d5de010
DJ
6040 /* Virtual tables. */
6041 set_gdbarch_vbit_in_delta (gdbarch, 1);
6042
29709017
DJ
6043 mips_register_g_packet_guesses (gdbarch);
6044
6de918a6 6045 /* Hook in OS ABI-specific overrides, if they have been registered. */
822b6570 6046 info.tdep_info = (void *) tdesc_data;
6de918a6 6047 gdbarch_init_osabi (info, gdbarch);
757a7cc6 6048
5792a79b 6049 /* Unwind the frame. */
b8a22b94
DJ
6050 dwarf2_append_unwinders (gdbarch);
6051 frame_unwind_append_unwinder (gdbarch, &mips_stub_frame_unwind);
6052 frame_unwind_append_unwinder (gdbarch, &mips_insn16_frame_unwind);
6053 frame_unwind_append_unwinder (gdbarch, &mips_insn32_frame_unwind);
2bd0c3d7 6054 frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
eec63939 6055 frame_base_append_sniffer (gdbarch, mips_stub_frame_base_sniffer);
45c9dd44
AC
6056 frame_base_append_sniffer (gdbarch, mips_insn16_frame_base_sniffer);
6057 frame_base_append_sniffer (gdbarch, mips_insn32_frame_base_sniffer);
5792a79b 6058
f8b73d13
DJ
6059 if (tdesc_data)
6060 {
6061 set_tdesc_pseudo_register_type (gdbarch, mips_pseudo_register_type);
7cc46491 6062 tdesc_use_registers (gdbarch, info.target_desc, tdesc_data);
f8b73d13
DJ
6063
6064 /* Override the normal target description methods to handle our
6065 dual real and pseudo registers. */
6066 set_gdbarch_register_name (gdbarch, mips_register_name);
6067 set_gdbarch_register_reggroup_p (gdbarch, mips_tdesc_register_reggroup_p);
6068
6069 num_regs = gdbarch_num_regs (gdbarch);
6070 set_gdbarch_num_pseudo_regs (gdbarch, num_regs);
6071 set_gdbarch_pc_regnum (gdbarch, tdep->regnum->pc + num_regs);
6072 set_gdbarch_sp_regnum (gdbarch, MIPS_SP_REGNUM + num_regs);
6073 }
6074
6075 /* Add ABI-specific aliases for the registers. */
6076 if (mips_abi == MIPS_ABI_N32 || mips_abi == MIPS_ABI_N64)
6077 for (i = 0; i < ARRAY_SIZE (mips_n32_n64_aliases); i++)
6078 user_reg_add (gdbarch, mips_n32_n64_aliases[i].name,
6079 value_of_mips_user_reg, &mips_n32_n64_aliases[i].regnum);
6080 else
6081 for (i = 0; i < ARRAY_SIZE (mips_o32_aliases); i++)
6082 user_reg_add (gdbarch, mips_o32_aliases[i].name,
6083 value_of_mips_user_reg, &mips_o32_aliases[i].regnum);
6084
6085 /* Add some other standard aliases. */
6086 for (i = 0; i < ARRAY_SIZE (mips_register_aliases); i++)
6087 user_reg_add (gdbarch, mips_register_aliases[i].name,
6088 value_of_mips_user_reg, &mips_register_aliases[i].regnum);
6089
865093a3
AR
6090 for (i = 0; i < ARRAY_SIZE (mips_numeric_register_aliases); i++)
6091 user_reg_add (gdbarch, mips_numeric_register_aliases[i].name,
6092 value_of_mips_user_reg,
6093 &mips_numeric_register_aliases[i].regnum);
6094
4b9b3959
AC
6095 return gdbarch;
6096}
6097
2e4ebe70 6098static void
6d82d43b 6099mips_abi_update (char *ignore_args, int from_tty, struct cmd_list_element *c)
2e4ebe70
DJ
6100{
6101 struct gdbarch_info info;
6102
6103 /* Force the architecture to update, and (if it's a MIPS architecture)
6104 mips_gdbarch_init will take care of the rest. */
6105 gdbarch_info_init (&info);
6106 gdbarch_update_p (info);
6107}
6108
ad188201
KB
6109/* Print out which MIPS ABI is in use. */
6110
6111static void
1f8ca57c
JB
6112show_mips_abi (struct ui_file *file,
6113 int from_tty,
6114 struct cmd_list_element *ignored_cmd,
6115 const char *ignored_value)
ad188201 6116{
1cf3db46 6117 if (gdbarch_bfd_arch_info (target_gdbarch)->arch != bfd_arch_mips)
1f8ca57c
JB
6118 fprintf_filtered
6119 (file,
6120 "The MIPS ABI is unknown because the current architecture "
6121 "is not MIPS.\n");
ad188201
KB
6122 else
6123 {
6124 enum mips_abi global_abi = global_mips_abi ();
1cf3db46 6125 enum mips_abi actual_abi = mips_abi (target_gdbarch);
ad188201
KB
6126 const char *actual_abi_str = mips_abi_strings[actual_abi];
6127
6128 if (global_abi == MIPS_ABI_UNKNOWN)
1f8ca57c
JB
6129 fprintf_filtered
6130 (file,
6131 "The MIPS ABI is set automatically (currently \"%s\").\n",
6d82d43b 6132 actual_abi_str);
ad188201 6133 else if (global_abi == actual_abi)
1f8ca57c
JB
6134 fprintf_filtered
6135 (file,
6136 "The MIPS ABI is assumed to be \"%s\" (due to user setting).\n",
6d82d43b 6137 actual_abi_str);
ad188201
KB
6138 else
6139 {
6140 /* Probably shouldn't happen... */
1f8ca57c
JB
6141 fprintf_filtered
6142 (file,
6143 "The (auto detected) MIPS ABI \"%s\" is in use even though the user setting was \"%s\".\n",
6d82d43b 6144 actual_abi_str, mips_abi_strings[global_abi]);
ad188201
KB
6145 }
6146 }
6147}
6148
4b9b3959 6149static void
72a155b4 6150mips_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
4b9b3959 6151{
72a155b4 6152 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
4b9b3959 6153 if (tdep != NULL)
c2d11a7d 6154 {
acdb74a0
AC
6155 int ef_mips_arch;
6156 int ef_mips_32bitmode;
f49e4e6d 6157 /* Determine the ISA. */
acdb74a0
AC
6158 switch (tdep->elf_flags & EF_MIPS_ARCH)
6159 {
6160 case E_MIPS_ARCH_1:
6161 ef_mips_arch = 1;
6162 break;
6163 case E_MIPS_ARCH_2:
6164 ef_mips_arch = 2;
6165 break;
6166 case E_MIPS_ARCH_3:
6167 ef_mips_arch = 3;
6168 break;
6169 case E_MIPS_ARCH_4:
93d56215 6170 ef_mips_arch = 4;
acdb74a0
AC
6171 break;
6172 default:
93d56215 6173 ef_mips_arch = 0;
acdb74a0
AC
6174 break;
6175 }
f49e4e6d 6176 /* Determine the size of a pointer. */
acdb74a0 6177 ef_mips_32bitmode = (tdep->elf_flags & EF_MIPS_32BITMODE);
4b9b3959
AC
6178 fprintf_unfiltered (file,
6179 "mips_dump_tdep: tdep->elf_flags = 0x%x\n",
0dadbba0 6180 tdep->elf_flags);
4b9b3959 6181 fprintf_unfiltered (file,
acdb74a0
AC
6182 "mips_dump_tdep: ef_mips_32bitmode = %d\n",
6183 ef_mips_32bitmode);
6184 fprintf_unfiltered (file,
6185 "mips_dump_tdep: ef_mips_arch = %d\n",
6186 ef_mips_arch);
6187 fprintf_unfiltered (file,
6188 "mips_dump_tdep: tdep->mips_abi = %d (%s)\n",
6d82d43b 6189 tdep->mips_abi, mips_abi_strings[tdep->mips_abi]);
4014092b
AC
6190 fprintf_unfiltered (file,
6191 "mips_dump_tdep: mips_mask_address_p() %d (default %d)\n",
480d3dd2 6192 mips_mask_address_p (tdep),
4014092b 6193 tdep->default_mask_address_p);
c2d11a7d 6194 }
4b9b3959
AC
6195 fprintf_unfiltered (file,
6196 "mips_dump_tdep: MIPS_DEFAULT_FPU_TYPE = %d (%s)\n",
6197 MIPS_DEFAULT_FPU_TYPE,
6198 (MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_NONE ? "none"
6199 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_SINGLE ? "single"
6200 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_DOUBLE ? "double"
6201 : "???"));
74ed0bb4
MD
6202 fprintf_unfiltered (file, "mips_dump_tdep: MIPS_EABI = %d\n",
6203 MIPS_EABI (gdbarch));
4b9b3959
AC
6204 fprintf_unfiltered (file,
6205 "mips_dump_tdep: MIPS_FPU_TYPE = %d (%s)\n",
74ed0bb4
MD
6206 MIPS_FPU_TYPE (gdbarch),
6207 (MIPS_FPU_TYPE (gdbarch) == MIPS_FPU_NONE ? "none"
6208 : MIPS_FPU_TYPE (gdbarch) == MIPS_FPU_SINGLE ? "single"
6209 : MIPS_FPU_TYPE (gdbarch) == MIPS_FPU_DOUBLE ? "double"
4b9b3959 6210 : "???"));
c2d11a7d
JM
6211}
6212
6d82d43b 6213extern initialize_file_ftype _initialize_mips_tdep; /* -Wmissing-prototypes */
a78f21af 6214
c906108c 6215void
acdb74a0 6216_initialize_mips_tdep (void)
c906108c
SS
6217{
6218 static struct cmd_list_element *mipsfpulist = NULL;
6219 struct cmd_list_element *c;
6220
6d82d43b 6221 mips_abi_string = mips_abi_strings[MIPS_ABI_UNKNOWN];
2e4ebe70
DJ
6222 if (MIPS_ABI_LAST + 1
6223 != sizeof (mips_abi_strings) / sizeof (mips_abi_strings[0]))
e2e0b3e5 6224 internal_error (__FILE__, __LINE__, _("mips_abi_strings out of sync"));
2e4ebe70 6225
4b9b3959 6226 gdbarch_register (bfd_arch_mips, mips_gdbarch_init, mips_dump_tdep);
c906108c 6227
8d5f9dcb
DJ
6228 mips_pdr_data = register_objfile_data ();
6229
4eb0ad19
DJ
6230 /* Create feature sets with the appropriate properties. The values
6231 are not important. */
6232 mips_tdesc_gp32 = allocate_target_description ();
6233 set_tdesc_property (mips_tdesc_gp32, PROPERTY_GP32, "");
6234
6235 mips_tdesc_gp64 = allocate_target_description ();
6236 set_tdesc_property (mips_tdesc_gp64, PROPERTY_GP64, "");
6237
a5ea2558
AC
6238 /* Add root prefix command for all "set mips"/"show mips" commands */
6239 add_prefix_cmd ("mips", no_class, set_mips_command,
1bedd215 6240 _("Various MIPS specific commands."),
a5ea2558
AC
6241 &setmipscmdlist, "set mips ", 0, &setlist);
6242
6243 add_prefix_cmd ("mips", no_class, show_mips_command,
1bedd215 6244 _("Various MIPS specific commands."),
a5ea2558
AC
6245 &showmipscmdlist, "show mips ", 0, &showlist);
6246
2e4ebe70 6247 /* Allow the user to override the ABI. */
7ab04401
AC
6248 add_setshow_enum_cmd ("abi", class_obscure, mips_abi_strings,
6249 &mips_abi_string, _("\
6250Set the MIPS ABI used by this program."), _("\
6251Show the MIPS ABI used by this program."), _("\
6252This option can be set to one of:\n\
6253 auto - the default ABI associated with the current binary\n\
6254 o32\n\
6255 o64\n\
6256 n32\n\
6257 n64\n\
6258 eabi32\n\
6259 eabi64"),
6260 mips_abi_update,
6261 show_mips_abi,
6262 &setmipscmdlist, &showmipscmdlist);
2e4ebe70 6263
c906108c
SS
6264 /* Let the user turn off floating point and set the fence post for
6265 heuristic_proc_start. */
6266
6267 add_prefix_cmd ("mipsfpu", class_support, set_mipsfpu_command,
1bedd215 6268 _("Set use of MIPS floating-point coprocessor."),
c906108c
SS
6269 &mipsfpulist, "set mipsfpu ", 0, &setlist);
6270 add_cmd ("single", class_support, set_mipsfpu_single_command,
1a966eab 6271 _("Select single-precision MIPS floating-point coprocessor."),
c906108c
SS
6272 &mipsfpulist);
6273 add_cmd ("double", class_support, set_mipsfpu_double_command,
1a966eab 6274 _("Select double-precision MIPS floating-point coprocessor."),
c906108c
SS
6275 &mipsfpulist);
6276 add_alias_cmd ("on", "double", class_support, 1, &mipsfpulist);
6277 add_alias_cmd ("yes", "double", class_support, 1, &mipsfpulist);
6278 add_alias_cmd ("1", "double", class_support, 1, &mipsfpulist);
6279 add_cmd ("none", class_support, set_mipsfpu_none_command,
1a966eab 6280 _("Select no MIPS floating-point coprocessor."), &mipsfpulist);
c906108c
SS
6281 add_alias_cmd ("off", "none", class_support, 1, &mipsfpulist);
6282 add_alias_cmd ("no", "none", class_support, 1, &mipsfpulist);
6283 add_alias_cmd ("0", "none", class_support, 1, &mipsfpulist);
6284 add_cmd ("auto", class_support, set_mipsfpu_auto_command,
1a966eab 6285 _("Select MIPS floating-point coprocessor automatically."),
c906108c
SS
6286 &mipsfpulist);
6287 add_cmd ("mipsfpu", class_support, show_mipsfpu_command,
1a966eab 6288 _("Show current use of MIPS floating-point coprocessor target."),
c906108c
SS
6289 &showlist);
6290
c906108c
SS
6291 /* We really would like to have both "0" and "unlimited" work, but
6292 command.c doesn't deal with that. So make it a var_zinteger
6293 because the user can always use "999999" or some such for unlimited. */
6bcadd06 6294 add_setshow_zinteger_cmd ("heuristic-fence-post", class_support,
7915a72c
AC
6295 &heuristic_fence_post, _("\
6296Set the distance searched for the start of a function."), _("\
6297Show the distance searched for the start of a function."), _("\
c906108c
SS
6298If you are debugging a stripped executable, GDB needs to search through the\n\
6299program for the start of a function. This command sets the distance of the\n\
7915a72c 6300search. The only need to set it is when debugging a stripped executable."),
2c5b56ce 6301 reinit_frame_cache_sfunc,
7915a72c 6302 NULL, /* FIXME: i18n: The distance searched for the start of a function is %s. */
6bcadd06 6303 &setlist, &showlist);
c906108c
SS
6304
6305 /* Allow the user to control whether the upper bits of 64-bit
6306 addresses should be zeroed. */
7915a72c
AC
6307 add_setshow_auto_boolean_cmd ("mask-address", no_class,
6308 &mask_address_var, _("\
6309Set zeroing of upper 32 bits of 64-bit addresses."), _("\
6310Show zeroing of upper 32 bits of 64-bit addresses."), _("\
e9e68a56 6311Use \"on\" to enable the masking, \"off\" to disable it and \"auto\" to \n\
7915a72c 6312allow GDB to determine the correct value."),
08546159
AC
6313 NULL, show_mask_address,
6314 &setmipscmdlist, &showmipscmdlist);
43e526b9
JM
6315
6316 /* Allow the user to control the size of 32 bit registers within the
6317 raw remote packet. */
b3f42336 6318 add_setshow_boolean_cmd ("remote-mips64-transfers-32bit-regs", class_obscure,
7915a72c
AC
6319 &mips64_transfers_32bit_regs_p, _("\
6320Set compatibility with 64-bit MIPS target that transfers 32-bit quantities."),
6321 _("\
6322Show compatibility with 64-bit MIPS target that transfers 32-bit quantities."),
6323 _("\
719ec221
AC
6324Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\
6325that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
7915a72c 632664 bits for others. Use \"off\" to disable compatibility mode"),
2c5b56ce 6327 set_mips64_transfers_32bit_regs,
7915a72c 6328 NULL, /* FIXME: i18n: Compatibility with 64-bit MIPS target that transfers 32-bit quantities is %s. */
7915a72c 6329 &setlist, &showlist);
9ace0497
AC
6330
6331 /* Debug this files internals. */
6bcadd06 6332 add_setshow_zinteger_cmd ("mips", class_maintenance,
7915a72c
AC
6333 &mips_debug, _("\
6334Set mips debugging."), _("\
6335Show mips debugging."), _("\
6336When non-zero, mips specific debugging is enabled."),
2c5b56ce 6337 NULL,
7915a72c 6338 NULL, /* FIXME: i18n: Mips debugging is currently %s. */
6bcadd06 6339 &setdebuglist, &showdebuglist);
c906108c 6340}
This page took 1.625793 seconds and 4 git commands to generate.