1 /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
3 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. */
28 #include "gdb_string.h"
29 #include "gdb_assert.h"
41 #include "arch-utils.h"
44 #include "mips-tdep.h"
46 #include "reggroups.h"
47 #include "opcode/mips.h"
51 #include "sim-regno.h"
53 #include "frame-unwind.h"
54 #include "frame-base.h"
55 #include "trad-frame.h"
57 static void set_reg_offset (CORE_ADDR *saved_regs, int regnum, CORE_ADDR off);
58 static struct type *mips_register_type (struct gdbarch *gdbarch, int regnum);
60 /* A useful bit in the CP0 status register (PS_REGNUM). */
61 /* This bit is set if we are emulating 32-bit FPRs on a 64-bit chip. */
62 #define ST0_FR (1 << 26)
64 /* The sizes of floating point registers. */
68 MIPS_FPU_SINGLE_REGSIZE = 4,
69 MIPS_FPU_DOUBLE_REGSIZE = 8
73 static const char *mips_abi_string;
75 static const char *mips_abi_strings[] = {
86 struct frame_extra_info
88 mips_extra_func_info_t proc_desc;
92 /* Various MIPS ISA options (related to stack analysis) can be
93 overridden dynamically. Establish an enum/array for managing
96 static const char size_auto[] = "auto";
97 static const char size_32[] = "32";
98 static const char size_64[] = "64";
100 static const char *size_enums[] = {
107 /* Some MIPS boards don't support floating point while others only
108 support single-precision floating-point operations. See also
109 FP_REGISTER_DOUBLE. */
113 MIPS_FPU_DOUBLE, /* Full double precision floating point. */
114 MIPS_FPU_SINGLE, /* Single precision floating point (R4650). */
115 MIPS_FPU_NONE /* No floating point. */
118 #ifndef MIPS_DEFAULT_FPU_TYPE
119 #define MIPS_DEFAULT_FPU_TYPE MIPS_FPU_DOUBLE
121 static int mips_fpu_type_auto = 1;
122 static enum mips_fpu_type mips_fpu_type = MIPS_DEFAULT_FPU_TYPE;
124 static int mips_debug = 0;
126 /* MIPS specific per-architecture information */
129 /* from the elf header */
133 enum mips_abi mips_abi;
134 enum mips_abi found_abi;
135 enum mips_fpu_type mips_fpu_type;
136 int mips_last_arg_regnum;
137 int mips_last_fp_arg_regnum;
138 int mips_default_saved_regsize;
139 int mips_fp_register_double;
140 int mips_default_stack_argsize;
141 int default_mask_address_p;
142 /* Is the target using 64-bit raw integer registers but only
143 storing a left-aligned 32-bit value in each? */
144 int mips64_transfers_32bit_regs_p;
145 /* Indexes for various registers. IRIX and embedded have
146 different values. This contains the "public" fields. Don't
147 add any that do not need to be public. */
148 const struct mips_regnum *regnum;
149 /* Register names table for the current register set. */
150 const char **mips_processor_reg_names;
153 const struct mips_regnum *
154 mips_regnum (struct gdbarch *gdbarch)
156 return gdbarch_tdep (gdbarch)->regnum;
160 mips_fpa0_regnum (struct gdbarch *gdbarch)
162 return mips_regnum (gdbarch)->fp0 + 12;
165 #define MIPS_EABI (gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI32 \
166 || gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI64)
168 #define MIPS_LAST_FP_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_fp_arg_regnum)
170 #define MIPS_LAST_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_arg_regnum)
172 #define MIPS_FPU_TYPE (gdbarch_tdep (current_gdbarch)->mips_fpu_type)
174 /* MIPS16 function addresses are odd (bit 0 is set). Here are some
175 functions to test, set, or clear bit 0 of addresses. */
178 is_mips16_addr (CORE_ADDR addr)
184 make_mips16_addr (CORE_ADDR addr)
190 unmake_mips16_addr (CORE_ADDR addr)
192 return ((addr) & ~1);
195 /* Return the contents of register REGNUM as a signed integer. */
198 read_signed_register (int regnum)
200 void *buf = alloca (register_size (current_gdbarch, regnum));
201 deprecated_read_register_gen (regnum, buf);
202 return (extract_signed_integer
203 (buf, register_size (current_gdbarch, regnum)));
207 read_signed_register_pid (int regnum, ptid_t ptid)
212 if (ptid_equal (ptid, inferior_ptid))
213 return read_signed_register (regnum);
215 save_ptid = inferior_ptid;
217 inferior_ptid = ptid;
219 retval = read_signed_register (regnum);
221 inferior_ptid = save_ptid;
226 /* Return the MIPS ABI associated with GDBARCH. */
228 mips_abi (struct gdbarch *gdbarch)
230 return gdbarch_tdep (gdbarch)->mips_abi;
234 mips_regsize (struct gdbarch *gdbarch)
236 return (gdbarch_bfd_arch_info (gdbarch)->bits_per_word
237 / gdbarch_bfd_arch_info (gdbarch)->bits_per_byte);
240 /* Return the currently configured (or set) saved register size. */
242 static const char *mips_saved_regsize_string = size_auto;
245 mips_saved_regsize (struct gdbarch_tdep *tdep)
247 if (mips_saved_regsize_string == size_auto)
248 return tdep->mips_default_saved_regsize;
249 else if (mips_saved_regsize_string == size_64)
251 else /* if (mips_saved_regsize_string == size_32) */
255 /* Functions for setting and testing a bit in a minimal symbol that
256 marks it as 16-bit function. The MSB of the minimal symbol's
257 "info" field is used for this purpose.
259 ELF_MAKE_MSYMBOL_SPECIAL tests whether an ELF symbol is "special",
260 i.e. refers to a 16-bit function, and sets a "special" bit in a
261 minimal symbol to mark it as a 16-bit function
263 MSYMBOL_IS_SPECIAL tests the "special" bit in a minimal symbol */
266 mips_elf_make_msymbol_special (asymbol * sym, struct minimal_symbol *msym)
268 if (((elf_symbol_type *) (sym))->internal_elf_sym.st_other == STO_MIPS16)
270 MSYMBOL_INFO (msym) = (char *)
271 (((long) MSYMBOL_INFO (msym)) | 0x80000000);
272 SYMBOL_VALUE_ADDRESS (msym) |= 1;
277 msymbol_is_special (struct minimal_symbol *msym)
279 return (((long) MSYMBOL_INFO (msym) & 0x80000000) != 0);
282 /* XFER a value from the big/little/left end of the register.
283 Depending on the size of the value it might occupy the entire
284 register or just part of it. Make an allowance for this, aligning
285 things accordingly. */
288 mips_xfer_register (struct regcache *regcache, int reg_num, int length,
289 enum bfd_endian endian, bfd_byte * in,
290 const bfd_byte * out, int buf_offset)
293 gdb_assert (reg_num >= NUM_REGS);
294 /* Need to transfer the left or right part of the register, based on
295 the targets byte order. */
299 reg_offset = register_size (current_gdbarch, reg_num) - length;
301 case BFD_ENDIAN_LITTLE:
304 case BFD_ENDIAN_UNKNOWN: /* Indicates no alignment. */
308 internal_error (__FILE__, __LINE__, "bad switch");
311 fprintf_unfiltered (gdb_stderr,
312 "xfer $%d, reg offset %d, buf offset %d, length %d, ",
313 reg_num, reg_offset, buf_offset, length);
314 if (mips_debug && out != NULL)
317 fprintf_unfiltered (gdb_stdlog, "out ");
318 for (i = 0; i < length; i++)
319 fprintf_unfiltered (gdb_stdlog, "%02x", out[buf_offset + i]);
322 regcache_cooked_read_part (regcache, reg_num, reg_offset, length,
325 regcache_cooked_write_part (regcache, reg_num, reg_offset, length,
327 if (mips_debug && in != NULL)
330 fprintf_unfiltered (gdb_stdlog, "in ");
331 for (i = 0; i < length; i++)
332 fprintf_unfiltered (gdb_stdlog, "%02x", in[buf_offset + i]);
335 fprintf_unfiltered (gdb_stdlog, "\n");
338 /* Determine if a MIPS3 or later cpu is operating in MIPS{1,2} FPU
339 compatiblity mode. A return value of 1 means that we have
340 physical 64-bit registers, but should treat them as 32-bit registers. */
343 mips2_fp_compat (void)
345 /* MIPS1 and MIPS2 have only 32 bit FPRs, and the FR bit is not
347 if (register_size (current_gdbarch, mips_regnum (current_gdbarch)->fp0) ==
352 /* FIXME drow 2002-03-10: This is disabled until we can do it consistently,
353 in all the places we deal with FP registers. PR gdb/413. */
354 /* Otherwise check the FR bit in the status register - it controls
355 the FP compatiblity mode. If it is clear we are in compatibility
357 if ((read_register (PS_REGNUM) & ST0_FR) == 0)
364 /* Indicate that the ABI makes use of double-precision registers
365 provided by the FPU (rather than combining pairs of registers to
366 form double-precision values). See also MIPS_FPU_TYPE. */
367 #define FP_REGISTER_DOUBLE (gdbarch_tdep (current_gdbarch)->mips_fp_register_double)
369 /* The amount of space reserved on the stack for registers. This is
370 different to MIPS_SAVED_REGSIZE as it determines the alignment of
371 data allocated after the registers have run out. */
373 static const char *mips_stack_argsize_string = size_auto;
376 mips_stack_argsize (struct gdbarch_tdep *tdep)
378 if (mips_stack_argsize_string == size_auto)
379 return tdep->mips_default_stack_argsize;
380 else if (mips_stack_argsize_string == size_64)
382 else /* if (mips_stack_argsize_string == size_32) */
386 #define VM_MIN_ADDRESS (CORE_ADDR)0x400000
388 static mips_extra_func_info_t heuristic_proc_desc (CORE_ADDR, CORE_ADDR,
389 struct frame_info *, int);
391 static CORE_ADDR heuristic_proc_start (CORE_ADDR);
393 static CORE_ADDR read_next_frame_reg (struct frame_info *, int);
395 static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element *);
397 static mips_extra_func_info_t find_proc_desc (CORE_ADDR pc,
398 struct frame_info *next_frame,
401 static CORE_ADDR after_prologue (CORE_ADDR pc,
402 mips_extra_func_info_t proc_desc);
404 static struct type *mips_float_register_type (void);
405 static struct type *mips_double_register_type (void);
407 /* The list of available "set mips " and "show mips " commands */
409 static struct cmd_list_element *setmipscmdlist = NULL;
410 static struct cmd_list_element *showmipscmdlist = NULL;
412 /* Integer registers 0 thru 31 are handled explicitly by
413 mips_register_name(). Processor specific registers 32 and above
414 are listed in the followign tables. */
417 { NUM_MIPS_PROCESSOR_REGS = (90 - 32) };
421 static const char *mips_generic_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
422 "sr", "lo", "hi", "bad", "cause", "pc",
423 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
424 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
425 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
426 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
427 "fsr", "fir", "" /*"fp" */ , "",
428 "", "", "", "", "", "", "", "",
429 "", "", "", "", "", "", "", "",
432 /* Names of IDT R3041 registers. */
434 static const char *mips_r3041_reg_names[] = {
435 "sr", "lo", "hi", "bad", "cause", "pc",
436 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
437 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
438 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
439 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
440 "fsr", "fir", "", /*"fp" */ "",
441 "", "", "bus", "ccfg", "", "", "", "",
442 "", "", "port", "cmp", "", "", "epc", "prid",
445 /* Names of tx39 registers. */
447 static const char *mips_tx39_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
448 "sr", "lo", "hi", "bad", "cause", "pc",
449 "", "", "", "", "", "", "", "",
450 "", "", "", "", "", "", "", "",
451 "", "", "", "", "", "", "", "",
452 "", "", "", "", "", "", "", "",
454 "", "", "", "", "", "", "", "",
455 "", "", "config", "cache", "debug", "depc", "epc", ""
458 /* Names of IRIX registers. */
459 static const char *mips_irix_reg_names[NUM_MIPS_PROCESSOR_REGS] = {
460 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
461 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
462 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
463 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
464 "pc", "cause", "bad", "hi", "lo", "fsr", "fir"
468 /* Return the name of the register corresponding to REGNO. */
470 mips_register_name (int regno)
472 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
473 /* GPR names for all ABIs other than n32/n64. */
474 static char *mips_gpr_names[] = {
475 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
476 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
477 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
478 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
481 /* GPR names for n32 and n64 ABIs. */
482 static char *mips_n32_n64_gpr_names[] = {
483 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
484 "a4", "a5", "a6", "a7", "t0", "t1", "t2", "t3",
485 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
486 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra"
489 enum mips_abi abi = mips_abi (current_gdbarch);
491 /* Map [NUM_REGS .. 2*NUM_REGS) onto the raw registers, but then
492 don't make the raw register names visible. */
493 int rawnum = regno % NUM_REGS;
494 if (regno < NUM_REGS)
497 /* The MIPS integer registers are always mapped from 0 to 31. The
498 names of the registers (which reflects the conventions regarding
499 register use) vary depending on the ABI. */
500 if (0 <= rawnum && rawnum < 32)
502 if (abi == MIPS_ABI_N32 || abi == MIPS_ABI_N64)
503 return mips_n32_n64_gpr_names[rawnum];
505 return mips_gpr_names[rawnum];
507 else if (32 <= rawnum && rawnum < NUM_REGS)
509 gdb_assert (rawnum - 32 < NUM_MIPS_PROCESSOR_REGS);
510 return tdep->mips_processor_reg_names[rawnum - 32];
513 internal_error (__FILE__, __LINE__,
514 "mips_register_name: bad register number %d", rawnum);
517 /* Return the groups that a MIPS register can be categorised into. */
520 mips_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
521 struct reggroup *reggroup)
526 int rawnum = regnum % NUM_REGS;
527 int pseudo = regnum / NUM_REGS;
528 if (reggroup == all_reggroup)
530 vector_p = TYPE_VECTOR (register_type (gdbarch, regnum));
531 float_p = TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT;
532 /* FIXME: cagney/2003-04-13: Can't yet use gdbarch_num_regs
533 (gdbarch), as not all architectures are multi-arch. */
534 raw_p = rawnum < NUM_REGS;
535 if (REGISTER_NAME (regnum) == NULL || REGISTER_NAME (regnum)[0] == '\0')
537 if (reggroup == float_reggroup)
538 return float_p && pseudo;
539 if (reggroup == vector_reggroup)
540 return vector_p && pseudo;
541 if (reggroup == general_reggroup)
542 return (!vector_p && !float_p) && pseudo;
543 /* Save the pseudo registers. Need to make certain that any code
544 extracting register values from a saved register cache also uses
546 if (reggroup == save_reggroup)
547 return raw_p && pseudo;
548 /* Restore the same pseudo register. */
549 if (reggroup == restore_reggroup)
550 return raw_p && pseudo;
554 /* Map the symbol table registers which live in the range [1 *
555 NUM_REGS .. 2 * NUM_REGS) back onto the corresponding raw
556 registers. Take care of alignment and size problems. */
559 mips_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
560 int cookednum, void *buf)
562 int rawnum = cookednum % NUM_REGS;
563 gdb_assert (cookednum >= NUM_REGS && cookednum < 2 * NUM_REGS);
564 if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum))
565 regcache_raw_read (regcache, rawnum, buf);
566 else if (register_size (gdbarch, rawnum) >
567 register_size (gdbarch, cookednum))
569 if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p
570 || TARGET_BYTE_ORDER == BFD_ENDIAN_LITTLE)
571 regcache_raw_read_part (regcache, rawnum, 0, 4, buf);
573 regcache_raw_read_part (regcache, rawnum, 4, 4, buf);
576 internal_error (__FILE__, __LINE__, "bad register size");
580 mips_pseudo_register_write (struct gdbarch *gdbarch,
581 struct regcache *regcache, int cookednum,
584 int rawnum = cookednum % NUM_REGS;
585 gdb_assert (cookednum >= NUM_REGS && cookednum < 2 * NUM_REGS);
586 if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum))
587 regcache_raw_write (regcache, rawnum, buf);
588 else if (register_size (gdbarch, rawnum) >
589 register_size (gdbarch, cookednum))
591 if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p
592 || TARGET_BYTE_ORDER == BFD_ENDIAN_LITTLE)
593 regcache_raw_write_part (regcache, rawnum, 0, 4, buf);
595 regcache_raw_write_part (regcache, rawnum, 4, 4, buf);
598 internal_error (__FILE__, __LINE__, "bad register size");
601 /* Table to translate MIPS16 register field to actual register number. */
602 static int mips16_to_32_reg[8] = { 16, 17, 2, 3, 4, 5, 6, 7 };
604 /* Heuristic_proc_start may hunt through the text section for a long
605 time across a 2400 baud serial line. Allows the user to limit this
608 static unsigned int heuristic_fence_post = 0;
610 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
611 #define PROC_HIGH_ADDR(proc) ((proc)->high_addr) /* upper address bound */
612 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
613 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
614 #define PROC_FRAME_ADJUST(proc) ((proc)->frame_adjust)
615 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
616 #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
617 #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
618 #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
619 #define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
620 /* FIXME drow/2002-06-10: If a pointer on the host is bigger than a long,
621 this will corrupt pdr.iline. Fortunately we don't use it. */
622 #define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
623 #define _PROC_MAGIC_ 0x0F0F0F0F
624 #define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
625 #define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
627 struct linked_proc_info
629 struct mips_extra_func_info info;
630 struct linked_proc_info *next;
632 *linked_proc_desc_table = NULL;
634 /* Number of bytes of storage in the actual machine representation for
635 register N. NOTE: This defines the pseudo register type so need to
636 rebuild the architecture vector. */
638 static int mips64_transfers_32bit_regs_p = 0;
641 set_mips64_transfers_32bit_regs (char *args, int from_tty,
642 struct cmd_list_element *c)
644 struct gdbarch_info info;
645 gdbarch_info_init (&info);
646 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
647 instead of relying on globals. Doing that would let generic code
648 handle the search for this specific architecture. */
649 if (!gdbarch_update_p (info))
651 mips64_transfers_32bit_regs_p = 0;
652 error ("32-bit compatibility mode not supported");
656 /* Convert to/from a register and the corresponding memory value. */
659 mips_convert_register_p (int regnum, struct type *type)
661 return (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
662 && register_size (current_gdbarch, regnum) == 4
663 && (regnum % NUM_REGS) >= mips_regnum (current_gdbarch)->fp0
664 && (regnum % NUM_REGS) < mips_regnum (current_gdbarch)->fp0 + 32
665 && TYPE_CODE (type) == TYPE_CODE_FLT && TYPE_LENGTH (type) == 8);
669 mips_register_to_value (struct frame_info *frame, int regnum,
670 struct type *type, void *to)
672 get_frame_register (frame, regnum + 0, (char *) to + 4);
673 get_frame_register (frame, regnum + 1, (char *) to + 0);
677 mips_value_to_register (struct frame_info *frame, int regnum,
678 struct type *type, const void *from)
680 put_frame_register (frame, regnum + 0, (const char *) from + 4);
681 put_frame_register (frame, regnum + 1, (const char *) from + 0);
684 /* Return the GDB type object for the "standard" data type of data in
688 mips_register_type (struct gdbarch *gdbarch, int regnum)
690 gdb_assert (regnum >= 0 && regnum < 2 * NUM_REGS);
691 if ((regnum % NUM_REGS) >= mips_regnum (current_gdbarch)->fp0
692 && (regnum % NUM_REGS) < mips_regnum (current_gdbarch)->fp0 + 32)
694 /* The floating-point registers raw, or cooked, always match
695 mips_regsize(), and also map 1:1, byte for byte. */
696 switch (gdbarch_byte_order (gdbarch))
699 if (mips_regsize (gdbarch) == 4)
700 return builtin_type_ieee_single_big;
702 return builtin_type_ieee_double_big;
703 case BFD_ENDIAN_LITTLE:
704 if (mips_regsize (gdbarch) == 4)
705 return builtin_type_ieee_single_little;
707 return builtin_type_ieee_double_little;
708 case BFD_ENDIAN_UNKNOWN:
710 internal_error (__FILE__, __LINE__, "bad switch");
714 (NUM_REGS + mips_regnum (current_gdbarch)->fp_control_status)
715 && regnum <= NUM_REGS + LAST_EMBED_REGNUM)
716 /* The pseudo/cooked view of the embedded registers is always
717 32-bit. The raw view is handled below. */
718 return builtin_type_int32;
719 else if (regnum >= NUM_REGS && mips_regsize (gdbarch)
720 && gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p)
721 /* The target, while using a 64-bit register buffer, is only
722 transfering 32-bits of each integer register. Reflect this in
723 the cooked/pseudo register value. */
724 return builtin_type_int32;
725 else if (mips_regsize (gdbarch) == 8)
727 return builtin_type_int64;
730 return builtin_type_int32;
733 /* TARGET_READ_SP -- Remove useless bits from the stack pointer. */
738 return read_signed_register (SP_REGNUM);
741 /* Should the upper word of 64-bit addresses be zeroed? */
742 enum auto_boolean mask_address_var = AUTO_BOOLEAN_AUTO;
745 mips_mask_address_p (struct gdbarch_tdep *tdep)
747 switch (mask_address_var)
749 case AUTO_BOOLEAN_TRUE:
751 case AUTO_BOOLEAN_FALSE:
754 case AUTO_BOOLEAN_AUTO:
755 return tdep->default_mask_address_p;
757 internal_error (__FILE__, __LINE__, "mips_mask_address_p: bad switch");
763 show_mask_address (char *cmd, int from_tty, struct cmd_list_element *c)
765 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
766 switch (mask_address_var)
768 case AUTO_BOOLEAN_TRUE:
769 printf_filtered ("The 32 bit mips address mask is enabled\n");
771 case AUTO_BOOLEAN_FALSE:
772 printf_filtered ("The 32 bit mips address mask is disabled\n");
774 case AUTO_BOOLEAN_AUTO:
776 ("The 32 bit address mask is set automatically. Currently %s\n",
777 mips_mask_address_p (tdep) ? "enabled" : "disabled");
780 internal_error (__FILE__, __LINE__, "show_mask_address: bad switch");
785 /* Tell if the program counter value in MEMADDR is in a MIPS16 function. */
788 pc_is_mips16 (bfd_vma memaddr)
790 struct minimal_symbol *sym;
792 /* If bit 0 of the address is set, assume this is a MIPS16 address. */
793 if (is_mips16_addr (memaddr))
796 /* A flag indicating that this is a MIPS16 function is stored by elfread.c in
797 the high bit of the info field. Use this to decide if the function is
798 MIPS16 or normal MIPS. */
799 sym = lookup_minimal_symbol_by_pc (memaddr);
801 return msymbol_is_special (sym);
806 /* MIPS believes that the PC has a sign extended value. Perhaphs the
807 all registers should be sign extended for simplicity? */
810 mips_read_pc (ptid_t ptid)
812 return read_signed_register_pid (mips_regnum (current_gdbarch)->pc, ptid);
816 mips_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
818 return frame_unwind_register_signed (next_frame,
819 NUM_REGS + mips_regnum (gdbarch)->pc);
822 /* Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
823 dummy frame. The frame ID's base needs to match the TOS value
824 saved by save_dummy_frame_tos(), and the PC match the dummy frame's
827 static struct frame_id
828 mips_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
830 return frame_id_build (frame_unwind_register_signed (next_frame, NUM_REGS + SP_REGNUM),
831 frame_pc_unwind (next_frame));
835 mips_write_pc (CORE_ADDR pc, ptid_t ptid)
837 write_register_pid (mips_regnum (current_gdbarch)->pc, pc, ptid);
840 /* This returns the PC of the first inst after the prologue. If we can't
841 find the prologue, then return 0. */
844 after_prologue (CORE_ADDR pc, mips_extra_func_info_t proc_desc)
846 struct symtab_and_line sal;
847 CORE_ADDR func_addr, func_end;
849 /* Pass cur_frame == 0 to find_proc_desc. We should not attempt
850 to read the stack pointer from the current machine state, because
851 the current machine state has nothing to do with the information
852 we need from the proc_desc; and the process may or may not exist
855 proc_desc = find_proc_desc (pc, NULL, 0);
859 /* If function is frameless, then we need to do it the hard way. I
860 strongly suspect that frameless always means prologueless... */
861 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
862 && PROC_FRAME_OFFSET (proc_desc) == 0)
866 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
867 return 0; /* Unknown */
869 sal = find_pc_line (func_addr, 0);
871 if (sal.end < func_end)
874 /* The line after the prologue is after the end of the function. In this
875 case, tell the caller to find the prologue the hard way. */
880 /* Decode a MIPS32 instruction that saves a register in the stack, and
881 set the appropriate bit in the general register mask or float register mask
882 to indicate which register is saved. This is a helper function
883 for mips_find_saved_regs. */
886 mips32_decode_reg_save (t_inst inst, unsigned long *gen_mask,
887 unsigned long *float_mask)
891 if ((inst & 0xffe00000) == 0xafa00000 /* sw reg,n($sp) */
892 || (inst & 0xffe00000) == 0xafc00000 /* sw reg,n($r30) */
893 || (inst & 0xffe00000) == 0xffa00000) /* sd reg,n($sp) */
895 /* It might be possible to use the instruction to
896 find the offset, rather than the code below which
897 is based on things being in a certain order in the
898 frame, but figuring out what the instruction's offset
899 is relative to might be a little tricky. */
900 reg = (inst & 0x001f0000) >> 16;
901 *gen_mask |= (1 << reg);
903 else if ((inst & 0xffe00000) == 0xe7a00000 /* swc1 freg,n($sp) */
904 || (inst & 0xffe00000) == 0xe7c00000 /* swc1 freg,n($r30) */
905 || (inst & 0xffe00000) == 0xf7a00000) /* sdc1 freg,n($sp) */
908 reg = ((inst & 0x001f0000) >> 16);
909 *float_mask |= (1 << reg);
913 /* Decode a MIPS16 instruction that saves a register in the stack, and
914 set the appropriate bit in the general register or float register mask
915 to indicate which register is saved. This is a helper function
916 for mips_find_saved_regs. */
919 mips16_decode_reg_save (t_inst inst, unsigned long *gen_mask)
921 if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
923 int reg = mips16_to_32_reg[(inst & 0x700) >> 8];
924 *gen_mask |= (1 << reg);
926 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
928 int reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
929 *gen_mask |= (1 << reg);
931 else if ((inst & 0xff00) == 0x6200 /* sw $ra,n($sp) */
932 || (inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
933 *gen_mask |= (1 << RA_REGNUM);
937 /* Fetch and return instruction from the specified location. If the PC
938 is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
941 mips_fetch_instruction (CORE_ADDR addr)
943 char buf[MIPS_INSTLEN];
947 if (pc_is_mips16 (addr))
949 instlen = MIPS16_INSTLEN;
950 addr = unmake_mips16_addr (addr);
953 instlen = MIPS_INSTLEN;
954 status = read_memory_nobpt (addr, buf, instlen);
956 memory_error (status, addr);
957 return extract_unsigned_integer (buf, instlen);
961 mips16_fetch_instruction (CORE_ADDR addr)
963 char buf[MIPS_INSTLEN];
967 instlen = MIPS16_INSTLEN;
968 addr = unmake_mips16_addr (addr);
969 status = read_memory_nobpt (addr, buf, instlen);
971 memory_error (status, addr);
972 return extract_unsigned_integer (buf, instlen);
976 mips32_fetch_instruction (CORE_ADDR addr)
978 char buf[MIPS_INSTLEN];
981 instlen = MIPS_INSTLEN;
982 status = read_memory_nobpt (addr, buf, instlen);
984 memory_error (status, addr);
985 return extract_unsigned_integer (buf, instlen);
989 /* These the fields of 32 bit mips instructions */
990 #define mips32_op(x) (x >> 26)
991 #define itype_op(x) (x >> 26)
992 #define itype_rs(x) ((x >> 21) & 0x1f)
993 #define itype_rt(x) ((x >> 16) & 0x1f)
994 #define itype_immediate(x) (x & 0xffff)
996 #define jtype_op(x) (x >> 26)
997 #define jtype_target(x) (x & 0x03ffffff)
999 #define rtype_op(x) (x >> 26)
1000 #define rtype_rs(x) ((x >> 21) & 0x1f)
1001 #define rtype_rt(x) ((x >> 16) & 0x1f)
1002 #define rtype_rd(x) ((x >> 11) & 0x1f)
1003 #define rtype_shamt(x) ((x >> 6) & 0x1f)
1004 #define rtype_funct(x) (x & 0x3f)
1007 mips32_relative_offset (unsigned long inst)
1010 x = itype_immediate (inst);
1011 if (x & 0x8000) /* sign bit set */
1013 x |= 0xffff0000; /* sign extension */
1019 /* Determine whate to set a single step breakpoint while considering
1020 branch prediction */
1022 mips32_next_pc (CORE_ADDR pc)
1026 inst = mips_fetch_instruction (pc);
1027 if ((inst & 0xe0000000) != 0) /* Not a special, jump or branch instruction */
1029 if (itype_op (inst) >> 2 == 5)
1030 /* BEQL, BNEL, BLEZL, BGTZL: bits 0101xx */
1032 op = (itype_op (inst) & 0x03);
1042 goto greater_branch;
1047 else if (itype_op (inst) == 17 && itype_rs (inst) == 8)
1048 /* BC1F, BC1FL, BC1T, BC1TL: 010001 01000 */
1050 int tf = itype_rt (inst) & 0x01;
1051 int cnum = itype_rt (inst) >> 2;
1053 read_signed_register (mips_regnum (current_gdbarch)->
1055 int cond = ((fcrcs >> 24) & 0x0e) | ((fcrcs >> 23) & 0x01);
1057 if (((cond >> cnum) & 0x01) == tf)
1058 pc += mips32_relative_offset (inst) + 4;
1063 pc += 4; /* Not a branch, next instruction is easy */
1066 { /* This gets way messy */
1068 /* Further subdivide into SPECIAL, REGIMM and other */
1069 switch (op = itype_op (inst) & 0x07) /* extract bits 28,27,26 */
1071 case 0: /* SPECIAL */
1072 op = rtype_funct (inst);
1077 /* Set PC to that address */
1078 pc = read_signed_register (rtype_rs (inst));
1084 break; /* end SPECIAL */
1085 case 1: /* REGIMM */
1087 op = itype_rt (inst); /* branch condition */
1092 case 16: /* BLTZAL */
1093 case 18: /* BLTZALL */
1095 if (read_signed_register (itype_rs (inst)) < 0)
1096 pc += mips32_relative_offset (inst) + 4;
1098 pc += 8; /* after the delay slot */
1102 case 17: /* BGEZAL */
1103 case 19: /* BGEZALL */
1104 if (read_signed_register (itype_rs (inst)) >= 0)
1105 pc += mips32_relative_offset (inst) + 4;
1107 pc += 8; /* after the delay slot */
1109 /* All of the other instructions in the REGIMM category */
1114 break; /* end REGIMM */
1119 reg = jtype_target (inst) << 2;
1120 /* Upper four bits get never changed... */
1121 pc = reg + ((pc + 4) & 0xf0000000);
1124 /* FIXME case JALX : */
1127 reg = jtype_target (inst) << 2;
1128 pc = reg + ((pc + 4) & 0xf0000000) + 1; /* yes, +1 */
1129 /* Add 1 to indicate 16 bit mode - Invert ISA mode */
1131 break; /* The new PC will be alternate mode */
1132 case 4: /* BEQ, BEQL */
1134 if (read_signed_register (itype_rs (inst)) ==
1135 read_signed_register (itype_rt (inst)))
1136 pc += mips32_relative_offset (inst) + 4;
1140 case 5: /* BNE, BNEL */
1142 if (read_signed_register (itype_rs (inst)) !=
1143 read_signed_register (itype_rt (inst)))
1144 pc += mips32_relative_offset (inst) + 4;
1148 case 6: /* BLEZ, BLEZL */
1149 if (read_signed_register (itype_rs (inst) <= 0))
1150 pc += mips32_relative_offset (inst) + 4;
1156 greater_branch: /* BGTZ, BGTZL */
1157 if (read_signed_register (itype_rs (inst) > 0))
1158 pc += mips32_relative_offset (inst) + 4;
1165 } /* mips32_next_pc */
1167 /* Decoding the next place to set a breakpoint is irregular for the
1168 mips 16 variant, but fortunately, there fewer instructions. We have to cope
1169 ith extensions for 16 bit instructions and a pair of actual 32 bit instructions.
1170 We dont want to set a single step instruction on the extend instruction
1174 /* Lots of mips16 instruction formats */
1175 /* Predicting jumps requires itype,ritype,i8type
1176 and their extensions extItype,extritype,extI8type
1178 enum mips16_inst_fmts
1180 itype, /* 0 immediate 5,10 */
1181 ritype, /* 1 5,3,8 */
1182 rrtype, /* 2 5,3,3,5 */
1183 rritype, /* 3 5,3,3,5 */
1184 rrrtype, /* 4 5,3,3,3,2 */
1185 rriatype, /* 5 5,3,3,1,4 */
1186 shifttype, /* 6 5,3,3,3,2 */
1187 i8type, /* 7 5,3,8 */
1188 i8movtype, /* 8 5,3,3,5 */
1189 i8mov32rtype, /* 9 5,3,5,3 */
1190 i64type, /* 10 5,3,8 */
1191 ri64type, /* 11 5,3,3,5 */
1192 jalxtype, /* 12 5,1,5,5,16 - a 32 bit instruction */
1193 exiItype, /* 13 5,6,5,5,1,1,1,1,1,1,5 */
1194 extRitype, /* 14 5,6,5,5,3,1,1,1,5 */
1195 extRRItype, /* 15 5,5,5,5,3,3,5 */
1196 extRRIAtype, /* 16 5,7,4,5,3,3,1,4 */
1197 EXTshifttype, /* 17 5,5,1,1,1,1,1,1,5,3,3,1,1,1,2 */
1198 extI8type, /* 18 5,6,5,5,3,1,1,1,5 */
1199 extI64type, /* 19 5,6,5,5,3,1,1,1,5 */
1200 extRi64type, /* 20 5,6,5,5,3,3,5 */
1201 extshift64type /* 21 5,5,1,1,1,1,1,1,5,1,1,1,3,5 */
1203 /* I am heaping all the fields of the formats into one structure and
1204 then, only the fields which are involved in instruction extension */
1208 unsigned int regx; /* Function in i8 type */
1213 /* The EXT-I, EXT-ri nad EXT-I8 instructions all have the same format
1214 for the bits which make up the immediatate extension. */
1217 extended_offset (unsigned int extension)
1220 value = (extension >> 21) & 0x3f; /* * extract 15:11 */
1222 value |= (extension >> 16) & 0x1f; /* extrace 10:5 */
1224 value |= extension & 0x01f; /* extract 4:0 */
1228 /* Only call this function if you know that this is an extendable
1229 instruction, It wont malfunction, but why make excess remote memory references?
1230 If the immediate operands get sign extended or somthing, do it after
1231 the extension is performed.
1233 /* FIXME: Every one of these cases needs to worry about sign extension
1234 when the offset is to be used in relative addressing */
1238 fetch_mips_16 (CORE_ADDR pc)
1241 pc &= 0xfffffffe; /* clear the low order bit */
1242 target_read_memory (pc, buf, 2);
1243 return extract_unsigned_integer (buf, 2);
1247 unpack_mips16 (CORE_ADDR pc,
1248 unsigned int extension,
1250 enum mips16_inst_fmts insn_format, struct upk_mips16 *upk)
1255 switch (insn_format)
1262 value = extended_offset (extension);
1263 value = value << 11; /* rom for the original value */
1264 value |= inst & 0x7ff; /* eleven bits from instruction */
1268 value = inst & 0x7ff;
1269 /* FIXME : Consider sign extension */
1278 { /* A register identifier and an offset */
1279 /* Most of the fields are the same as I type but the
1280 immediate value is of a different length */
1284 value = extended_offset (extension);
1285 value = value << 8; /* from the original instruction */
1286 value |= inst & 0xff; /* eleven bits from instruction */
1287 regx = (extension >> 8) & 0x07; /* or i8 funct */
1288 if (value & 0x4000) /* test the sign bit , bit 26 */
1290 value &= ~0x3fff; /* remove the sign bit */
1296 value = inst & 0xff; /* 8 bits */
1297 regx = (inst >> 8) & 0x07; /* or i8 funct */
1298 /* FIXME: Do sign extension , this format needs it */
1299 if (value & 0x80) /* THIS CONFUSES ME */
1301 value &= 0xef; /* remove the sign bit */
1311 unsigned long value;
1312 unsigned int nexthalf;
1313 value = ((inst & 0x1f) << 5) | ((inst >> 5) & 0x1f);
1314 value = value << 16;
1315 nexthalf = mips_fetch_instruction (pc + 2); /* low bit still set */
1323 internal_error (__FILE__, __LINE__, "bad switch");
1325 upk->offset = offset;
1332 add_offset_16 (CORE_ADDR pc, int offset)
1334 return ((offset << 2) | ((pc + 2) & (0xf0000000)));
1338 extended_mips16_next_pc (CORE_ADDR pc,
1339 unsigned int extension, unsigned int insn)
1341 int op = (insn >> 11);
1344 case 2: /* Branch */
1347 struct upk_mips16 upk;
1348 unpack_mips16 (pc, extension, insn, itype, &upk);
1349 offset = upk.offset;
1355 pc += (offset << 1) + 2;
1358 case 3: /* JAL , JALX - Watch out, these are 32 bit instruction */
1360 struct upk_mips16 upk;
1361 unpack_mips16 (pc, extension, insn, jalxtype, &upk);
1362 pc = add_offset_16 (pc, upk.offset);
1363 if ((insn >> 10) & 0x01) /* Exchange mode */
1364 pc = pc & ~0x01; /* Clear low bit, indicate 32 bit mode */
1371 struct upk_mips16 upk;
1373 unpack_mips16 (pc, extension, insn, ritype, &upk);
1374 reg = read_signed_register (upk.regx);
1376 pc += (upk.offset << 1) + 2;
1383 struct upk_mips16 upk;
1385 unpack_mips16 (pc, extension, insn, ritype, &upk);
1386 reg = read_signed_register (upk.regx);
1388 pc += (upk.offset << 1) + 2;
1393 case 12: /* I8 Formats btez btnez */
1395 struct upk_mips16 upk;
1397 unpack_mips16 (pc, extension, insn, i8type, &upk);
1398 /* upk.regx contains the opcode */
1399 reg = read_signed_register (24); /* Test register is 24 */
1400 if (((upk.regx == 0) && (reg == 0)) /* BTEZ */
1401 || ((upk.regx == 1) && (reg != 0))) /* BTNEZ */
1402 /* pc = add_offset_16(pc,upk.offset) ; */
1403 pc += (upk.offset << 1) + 2;
1408 case 29: /* RR Formats JR, JALR, JALR-RA */
1410 struct upk_mips16 upk;
1411 /* upk.fmt = rrtype; */
1416 upk.regx = (insn >> 8) & 0x07;
1417 upk.regy = (insn >> 5) & 0x07;
1425 break; /* Function return instruction */
1431 break; /* BOGUS Guess */
1433 pc = read_signed_register (reg);
1440 /* This is an instruction extension. Fetch the real instruction
1441 (which follows the extension) and decode things based on
1445 pc = extended_mips16_next_pc (pc, insn, fetch_mips_16 (pc));
1458 mips16_next_pc (CORE_ADDR pc)
1460 unsigned int insn = fetch_mips_16 (pc);
1461 return extended_mips16_next_pc (pc, 0, insn);
1464 /* The mips_next_pc function supports single_step when the remote
1465 target monitor or stub is not developed enough to do a single_step.
1466 It works by decoding the current instruction and predicting where a
1467 branch will go. This isnt hard because all the data is available.
1468 The MIPS32 and MIPS16 variants are quite different */
1470 mips_next_pc (CORE_ADDR pc)
1473 return mips16_next_pc (pc);
1475 return mips32_next_pc (pc);
1478 struct mips_frame_cache
1481 struct trad_frame_saved_reg *saved_regs;
1485 static struct mips_frame_cache *
1486 mips_mdebug_frame_cache (struct frame_info *next_frame, void **this_cache)
1488 mips_extra_func_info_t proc_desc;
1489 struct mips_frame_cache *cache;
1490 struct gdbarch *gdbarch = get_frame_arch (next_frame);
1491 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1492 /* r0 bit means kernel trap */
1494 /* What registers have been saved? Bitmasks. */
1495 unsigned long gen_mask, float_mask;
1497 if ((*this_cache) != NULL)
1498 return (*this_cache);
1499 cache = FRAME_OBSTACK_ZALLOC (struct mips_frame_cache);
1500 (*this_cache) = cache;
1501 cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
1503 /* Get the mdebug proc descriptor. */
1504 proc_desc = find_proc_desc (frame_pc_unwind (next_frame), next_frame, 1);
1505 if (proc_desc == NULL)
1506 /* I'm not sure how/whether this can happen. Normally when we
1507 can't find a proc_desc, we "synthesize" one using
1508 heuristic_proc_desc and set the saved_regs right away. */
1511 /* Extract the frame's base. */
1512 cache->base = (frame_unwind_register_signed (next_frame, NUM_REGS + PROC_FRAME_REG (proc_desc))
1513 + PROC_FRAME_OFFSET (proc_desc) - PROC_FRAME_ADJUST (proc_desc));
1515 kernel_trap = PROC_REG_MASK (proc_desc) & 1;
1516 gen_mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK (proc_desc);
1517 float_mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK (proc_desc);
1519 /* In any frame other than the innermost or a frame interrupted by a
1520 signal, we assume that all registers have been saved. This
1521 assumes that all register saves in a function happen before the
1522 first function call. */
1523 if (in_prologue (frame_pc_unwind (next_frame), PROC_LOW_ADDR (proc_desc))
1524 /* Not sure exactly what kernel_trap means, but if it means the
1525 kernel saves the registers without a prologue doing it, we
1526 better not examine the prologue to see whether registers
1527 have been saved yet. */
1530 /* We need to figure out whether the registers that the
1531 proc_desc claims are saved have been saved yet. */
1535 /* Bitmasks; set if we have found a save for the register. */
1536 unsigned long gen_save_found = 0;
1537 unsigned long float_save_found = 0;
1540 /* If the address is odd, assume this is MIPS16 code. */
1541 addr = PROC_LOW_ADDR (proc_desc);
1542 mips16 = pc_is_mips16 (addr);
1544 /* Scan through this function's instructions preceding the
1545 current PC, and look for those that save registers. */
1546 while (addr < frame_pc_unwind (next_frame))
1550 mips16_decode_reg_save (mips16_fetch_instruction (addr),
1552 addr += MIPS16_INSTLEN;
1556 mips32_decode_reg_save (mips32_fetch_instruction (addr),
1557 &gen_save_found, &float_save_found);
1558 addr += MIPS_INSTLEN;
1561 gen_mask = gen_save_found;
1562 float_mask = float_save_found;
1565 /* Fill in the offsets for the registers which gen_mask says were
1568 CORE_ADDR reg_position = (cache->base
1569 + PROC_REG_OFFSET (proc_desc));
1571 for (ireg = MIPS_NUMREGS - 1; gen_mask; --ireg, gen_mask <<= 1)
1572 if (gen_mask & 0x80000000)
1574 cache->saved_regs[NUM_REGS + ireg].addr = reg_position;
1575 reg_position -= mips_saved_regsize (tdep);
1579 /* The MIPS16 entry instruction saves $s0 and $s1 in the reverse
1580 order of that normally used by gcc. Therefore, we have to fetch
1581 the first instruction of the function, and if it's an entry
1582 instruction that saves $s0 or $s1, correct their saved addresses. */
1583 if (pc_is_mips16 (PROC_LOW_ADDR (proc_desc)))
1585 ULONGEST inst = mips16_fetch_instruction (PROC_LOW_ADDR (proc_desc));
1586 if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700)
1590 int sreg_count = (inst >> 6) & 3;
1592 /* Check if the ra register was pushed on the stack. */
1593 CORE_ADDR reg_position = (cache->base
1594 + PROC_REG_OFFSET (proc_desc));
1596 reg_position -= mips_saved_regsize (tdep);
1598 /* Check if the s0 and s1 registers were pushed on the
1600 /* NOTE: cagney/2004-02-08: Huh? This is doing no such
1602 for (reg = 16; reg < sreg_count + 16; reg++)
1604 cache->saved_regs[NUM_REGS + reg].addr = reg_position;
1605 reg_position -= mips_saved_regsize (tdep);
1610 /* Fill in the offsets for the registers which float_mask says were
1613 CORE_ADDR reg_position = (cache->base
1614 + PROC_FREG_OFFSET (proc_desc));
1616 /* Fill in the offsets for the float registers which float_mask
1618 for (ireg = MIPS_NUMREGS - 1; float_mask; --ireg, float_mask <<= 1)
1619 if (float_mask & 0x80000000)
1621 if (mips_saved_regsize (tdep) == 4
1622 && TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1624 /* On a big endian 32 bit ABI, floating point registers
1625 are paired to form doubles such that the most
1626 significant part is in $f[N+1] and the least
1627 significant in $f[N] vis: $f[N+1] ||| $f[N]. The
1628 registers are also spilled as a pair and stored as a
1631 When little-endian the least significant part is
1632 stored first leading to the memory order $f[N] and
1635 Unfortunately, when big-endian the most significant
1636 part of the double is stored first, and the least
1637 significant is stored second. This leads to the
1638 registers being ordered in memory as firt $f[N+1] and
1641 For the big-endian case make certain that the
1642 addresses point at the correct (swapped) locations
1643 $f[N] and $f[N+1] pair (keep in mind that
1644 reg_position is decremented each time through the
1647 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg]
1648 .addr = reg_position - mips_saved_regsize (tdep);
1650 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg]
1651 .addr = reg_position + mips_saved_regsize (tdep);
1654 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg]
1655 .addr = reg_position;
1656 reg_position -= mips_saved_regsize (tdep);
1659 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->pc]
1660 = cache->saved_regs[NUM_REGS + RA_REGNUM];
1663 /* SP_REGNUM, contains the value and not the address. */
1664 trad_frame_set_value (cache->saved_regs, NUM_REGS + SP_REGNUM, cache->base);
1666 return (*this_cache);
1670 mips_mdebug_frame_this_id (struct frame_info *next_frame, void **this_cache,
1671 struct frame_id *this_id)
1673 struct mips_frame_cache *info = mips_mdebug_frame_cache (next_frame,
1675 (*this_id) = frame_id_build (info->base, frame_func_unwind (next_frame));
1679 mips_mdebug_frame_prev_register (struct frame_info *next_frame,
1681 int regnum, int *optimizedp,
1682 enum lval_type *lvalp, CORE_ADDR *addrp,
1683 int *realnump, void *valuep)
1685 struct mips_frame_cache *info = mips_mdebug_frame_cache (next_frame,
1687 trad_frame_prev_register (next_frame, info->saved_regs, regnum,
1688 optimizedp, lvalp, addrp, realnump, valuep);
1691 static const struct frame_unwind mips_mdebug_frame_unwind =
1694 mips_mdebug_frame_this_id,
1695 mips_mdebug_frame_prev_register
1698 static const struct frame_unwind *
1699 mips_mdebug_frame_sniffer (struct frame_info *next_frame)
1701 return &mips_mdebug_frame_unwind;
1705 mips_mdebug_frame_base_address (struct frame_info *next_frame,
1708 struct mips_frame_cache *info = mips_mdebug_frame_cache (next_frame,
1713 static const struct frame_base mips_mdebug_frame_base = {
1714 &mips_mdebug_frame_unwind,
1715 mips_mdebug_frame_base_address,
1716 mips_mdebug_frame_base_address,
1717 mips_mdebug_frame_base_address
1720 static const struct frame_base *
1721 mips_mdebug_frame_base_sniffer (struct frame_info *next_frame)
1723 return &mips_mdebug_frame_base;
1727 read_next_frame_reg (struct frame_info *fi, int regno)
1729 /* Always a pseudo. */
1730 gdb_assert (regno >= NUM_REGS);
1734 regcache_cooked_read_signed (current_regcache, regno, &val);
1737 else if ((regno % NUM_REGS) == SP_REGNUM)
1738 /* The SP_REGNUM is special, its value is stored in saved_regs.
1739 In fact, it is so special that it can even only be fetched
1740 using a raw register number! Once this code as been converted
1741 to frame-unwind the problem goes away. */
1742 return frame_unwind_register_signed (fi, regno % NUM_REGS);
1744 return frame_unwind_register_signed (fi, regno);
1748 /* mips_addr_bits_remove - remove useless address bits */
1751 mips_addr_bits_remove (CORE_ADDR addr)
1753 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1754 if (mips_mask_address_p (tdep) && (((ULONGEST) addr) >> 32 == 0xffffffffUL))
1755 /* This hack is a work-around for existing boards using PMON, the
1756 simulator, and any other 64-bit targets that doesn't have true
1757 64-bit addressing. On these targets, the upper 32 bits of
1758 addresses are ignored by the hardware. Thus, the PC or SP are
1759 likely to have been sign extended to all 1s by instruction
1760 sequences that load 32-bit addresses. For example, a typical
1761 piece of code that loads an address is this:
1763 lui $r2, <upper 16 bits>
1764 ori $r2, <lower 16 bits>
1766 But the lui sign-extends the value such that the upper 32 bits
1767 may be all 1s. The workaround is simply to mask off these
1768 bits. In the future, gcc may be changed to support true 64-bit
1769 addressing, and this masking will have to be disabled. */
1770 return addr &= 0xffffffffUL;
1775 /* mips_software_single_step() is called just before we want to resume
1776 the inferior, if we want to single-step it but there is no hardware
1777 or kernel single-step support (MIPS on GNU/Linux for example). We find
1778 the target of the coming instruction and breakpoint it.
1780 single_step is also called just after the inferior stops. If we had
1781 set up a simulated single-step, we undo our damage. */
1784 mips_software_single_step (enum target_signal sig, int insert_breakpoints_p)
1786 static CORE_ADDR next_pc;
1787 typedef char binsn_quantum[BREAKPOINT_MAX];
1788 static binsn_quantum break_mem;
1791 if (insert_breakpoints_p)
1793 pc = read_register (mips_regnum (current_gdbarch)->pc);
1794 next_pc = mips_next_pc (pc);
1796 target_insert_breakpoint (next_pc, break_mem);
1799 target_remove_breakpoint (next_pc, break_mem);
1802 static struct mips_extra_func_info temp_proc_desc;
1804 /* This hack will go away once the get_prev_frame() code has been
1805 modified to set the frame's type first. That is BEFORE init extra
1806 frame info et.al. is called. This is because it will become
1807 possible to skip the init extra info call for sigtramp and dummy
1809 static CORE_ADDR *temp_saved_regs;
1811 /* Set a register's saved stack address in temp_saved_regs. If an
1812 address has already been set for this register, do nothing; this
1813 way we will only recognize the first save of a given register in a
1816 For simplicity, save the address in both [0 .. NUM_REGS) and
1817 [NUM_REGS .. 2*NUM_REGS). Strictly speaking, only the second range
1818 is used as it is only second range (the ABI instead of ISA
1819 registers) that comes into play when finding saved registers in a
1823 set_reg_offset (CORE_ADDR *saved_regs, int regno, CORE_ADDR offset)
1825 if (saved_regs[regno] == 0)
1827 saved_regs[regno + 0 * NUM_REGS] = offset;
1828 saved_regs[regno + 1 * NUM_REGS] = offset;
1833 /* Test whether the PC points to the return instruction at the
1834 end of a function. */
1837 mips_about_to_return (CORE_ADDR pc)
1839 if (pc_is_mips16 (pc))
1840 /* This mips16 case isn't necessarily reliable. Sometimes the compiler
1841 generates a "jr $ra"; other times it generates code to load
1842 the return address from the stack to an accessible register (such
1843 as $a3), then a "jr" using that register. This second case
1844 is almost impossible to distinguish from an indirect jump
1845 used for switch statements, so we don't even try. */
1846 return mips_fetch_instruction (pc) == 0xe820; /* jr $ra */
1848 return mips_fetch_instruction (pc) == 0x3e00008; /* jr $ra */
1852 /* This fencepost looks highly suspicious to me. Removing it also
1853 seems suspicious as it could affect remote debugging across serial
1857 heuristic_proc_start (CORE_ADDR pc)
1864 pc = ADDR_BITS_REMOVE (pc);
1866 fence = start_pc - heuristic_fence_post;
1870 if (heuristic_fence_post == UINT_MAX || fence < VM_MIN_ADDRESS)
1871 fence = VM_MIN_ADDRESS;
1873 instlen = pc_is_mips16 (pc) ? MIPS16_INSTLEN : MIPS_INSTLEN;
1875 /* search back for previous return */
1876 for (start_pc -= instlen;; start_pc -= instlen)
1877 if (start_pc < fence)
1879 /* It's not clear to me why we reach this point when
1880 stop_soon, but with this test, at least we
1881 don't print out warnings for every child forked (eg, on
1883 if (stop_soon == NO_STOP_QUIETLY)
1885 static int blurb_printed = 0;
1888 ("Warning: GDB can't find the start of the function at 0x%s.",
1893 /* This actually happens frequently in embedded
1894 development, when you first connect to a board
1895 and your stack pointer and pc are nowhere in
1896 particular. This message needs to give people
1897 in that situation enough information to
1898 determine that it's no big deal. */
1899 printf_filtered ("\n\
1900 GDB is unable to find the start of the function at 0x%s\n\
1901 and thus can't determine the size of that function's stack frame.\n\
1902 This means that GDB may be unable to access that stack frame, or\n\
1903 the frames below it.\n\
1904 This problem is most likely caused by an invalid program counter or\n\
1906 However, if you think GDB should simply search farther back\n\
1907 from 0x%s for code which looks like the beginning of a\n\
1908 function, you can increase the range of the search using the `set\n\
1909 heuristic-fence-post' command.\n", paddr_nz (pc), paddr_nz (pc));
1916 else if (pc_is_mips16 (start_pc))
1918 unsigned short inst;
1920 /* On MIPS16, any one of the following is likely to be the
1921 start of a function:
1925 extend -n followed by 'addiu sp,+n' or 'daddiu sp,+n' */
1926 inst = mips_fetch_instruction (start_pc);
1927 if (((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
1928 || (inst & 0xff80) == 0x6380 /* addiu sp,-n */
1929 || (inst & 0xff80) == 0xfb80 /* daddiu sp,-n */
1930 || ((inst & 0xf810) == 0xf010 && seen_adjsp)) /* extend -n */
1932 else if ((inst & 0xff00) == 0x6300 /* addiu sp */
1933 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1938 else if (mips_about_to_return (start_pc))
1940 start_pc += 2 * MIPS_INSTLEN; /* skip return, and its delay slot */
1947 /* Fetch the immediate value from a MIPS16 instruction.
1948 If the previous instruction was an EXTEND, use it to extend
1949 the upper bits of the immediate value. This is a helper function
1950 for mips16_heuristic_proc_desc. */
1953 mips16_get_imm (unsigned short prev_inst, /* previous instruction */
1954 unsigned short inst, /* current instruction */
1955 int nbits, /* number of bits in imm field */
1956 int scale, /* scale factor to be applied to imm */
1957 int is_signed) /* is the imm field signed? */
1961 if ((prev_inst & 0xf800) == 0xf000) /* prev instruction was EXTEND? */
1963 offset = ((prev_inst & 0x1f) << 11) | (prev_inst & 0x7e0);
1964 if (offset & 0x8000) /* check for negative extend */
1965 offset = 0 - (0x10000 - (offset & 0xffff));
1966 return offset | (inst & 0x1f);
1970 int max_imm = 1 << nbits;
1971 int mask = max_imm - 1;
1972 int sign_bit = max_imm >> 1;
1974 offset = inst & mask;
1975 if (is_signed && (offset & sign_bit))
1976 offset = 0 - (max_imm - offset);
1977 return offset * scale;
1982 /* Fill in values in temp_proc_desc based on the MIPS16 instruction
1983 stream from start_pc to limit_pc. */
1986 mips16_heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
1987 struct frame_info *next_frame, CORE_ADDR sp)
1990 CORE_ADDR frame_addr = 0; /* Value of $r17, used as frame pointer */
1991 unsigned short prev_inst = 0; /* saved copy of previous instruction */
1992 unsigned inst = 0; /* current instruction */
1993 unsigned entry_inst = 0; /* the entry instruction */
1995 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1997 PROC_FRAME_OFFSET (&temp_proc_desc) = 0; /* size of stack frame */
1998 PROC_FRAME_ADJUST (&temp_proc_desc) = 0; /* offset of FP from SP */
2000 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS16_INSTLEN)
2002 /* Save the previous instruction. If it's an EXTEND, we'll extract
2003 the immediate offset extension from it in mips16_get_imm. */
2006 /* Fetch and decode the instruction. */
2007 inst = (unsigned short) mips_fetch_instruction (cur_pc);
2008 if ((inst & 0xff00) == 0x6300 /* addiu sp */
2009 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
2011 offset = mips16_get_imm (prev_inst, inst, 8, 8, 1);
2012 if (offset < 0) /* negative stack adjustment? */
2013 PROC_FRAME_OFFSET (&temp_proc_desc) -= offset;
2015 /* Exit loop if a positive stack adjustment is found, which
2016 usually means that the stack cleanup code in the function
2017 epilogue is reached. */
2020 else if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
2022 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
2023 reg = mips16_to_32_reg[(inst & 0x700) >> 8];
2024 PROC_REG_MASK (&temp_proc_desc) |= (1 << reg);
2025 set_reg_offset (temp_saved_regs, reg, sp + offset);
2027 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
2029 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
2030 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
2031 PROC_REG_MASK (&temp_proc_desc) |= (1 << reg);
2032 set_reg_offset (temp_saved_regs, reg, sp + offset);
2034 else if ((inst & 0xff00) == 0x6200) /* sw $ra,n($sp) */
2036 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
2037 PROC_REG_MASK (&temp_proc_desc) |= (1 << RA_REGNUM);
2038 set_reg_offset (temp_saved_regs, RA_REGNUM, sp + offset);
2040 else if ((inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
2042 offset = mips16_get_imm (prev_inst, inst, 8, 8, 0);
2043 PROC_REG_MASK (&temp_proc_desc) |= (1 << RA_REGNUM);
2044 set_reg_offset (temp_saved_regs, RA_REGNUM, sp + offset);
2046 else if (inst == 0x673d) /* move $s1, $sp */
2049 PROC_FRAME_REG (&temp_proc_desc) = 17;
2051 else if ((inst & 0xff00) == 0x0100) /* addiu $s1,sp,n */
2053 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
2054 frame_addr = sp + offset;
2055 PROC_FRAME_REG (&temp_proc_desc) = 17;
2056 PROC_FRAME_ADJUST (&temp_proc_desc) = offset;
2058 else if ((inst & 0xFF00) == 0xd900) /* sw reg,offset($s1) */
2060 offset = mips16_get_imm (prev_inst, inst, 5, 4, 0);
2061 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
2062 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2063 set_reg_offset (temp_saved_regs, reg, frame_addr + offset);
2065 else if ((inst & 0xFF00) == 0x7900) /* sd reg,offset($s1) */
2067 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
2068 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
2069 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2070 set_reg_offset (temp_saved_regs, reg, frame_addr + offset);
2072 else if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
2073 entry_inst = inst; /* save for later processing */
2074 else if ((inst & 0xf800) == 0x1800) /* jal(x) */
2075 cur_pc += MIPS16_INSTLEN; /* 32-bit instruction */
2078 /* The entry instruction is typically the first instruction in a function,
2079 and it stores registers at offsets relative to the value of the old SP
2080 (before the prologue). But the value of the sp parameter to this
2081 function is the new SP (after the prologue has been executed). So we
2082 can't calculate those offsets until we've seen the entire prologue,
2083 and can calculate what the old SP must have been. */
2084 if (entry_inst != 0)
2086 int areg_count = (entry_inst >> 8) & 7;
2087 int sreg_count = (entry_inst >> 6) & 3;
2089 /* The entry instruction always subtracts 32 from the SP. */
2090 PROC_FRAME_OFFSET (&temp_proc_desc) += 32;
2092 /* Now we can calculate what the SP must have been at the
2093 start of the function prologue. */
2094 sp += PROC_FRAME_OFFSET (&temp_proc_desc);
2096 /* Check if a0-a3 were saved in the caller's argument save area. */
2097 for (reg = 4, offset = 0; reg < areg_count + 4; reg++)
2099 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2100 set_reg_offset (temp_saved_regs, reg, sp + offset);
2101 offset += mips_saved_regsize (tdep);
2104 /* Check if the ra register was pushed on the stack. */
2106 if (entry_inst & 0x20)
2108 PROC_REG_MASK (&temp_proc_desc) |= 1 << RA_REGNUM;
2109 set_reg_offset (temp_saved_regs, RA_REGNUM, sp + offset);
2110 offset -= mips_saved_regsize (tdep);
2113 /* Check if the s0 and s1 registers were pushed on the stack. */
2114 for (reg = 16; reg < sreg_count + 16; reg++)
2116 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2117 set_reg_offset (temp_saved_regs, reg, sp + offset);
2118 offset -= mips_saved_regsize (tdep);
2124 mips32_heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
2125 struct frame_info *next_frame, CORE_ADDR sp)
2128 CORE_ADDR frame_addr = 0; /* Value of $r30. Used by gcc for frame-pointer */
2130 temp_saved_regs = xrealloc (temp_saved_regs, SIZEOF_FRAME_SAVED_REGS);
2131 memset (temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
2132 PROC_FRAME_OFFSET (&temp_proc_desc) = 0;
2133 PROC_FRAME_ADJUST (&temp_proc_desc) = 0; /* offset of FP from SP */
2134 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSTLEN)
2136 unsigned long inst, high_word, low_word;
2139 /* Fetch the instruction. */
2140 inst = (unsigned long) mips_fetch_instruction (cur_pc);
2142 /* Save some code by pre-extracting some useful fields. */
2143 high_word = (inst >> 16) & 0xffff;
2144 low_word = inst & 0xffff;
2145 reg = high_word & 0x1f;
2147 if (high_word == 0x27bd /* addiu $sp,$sp,-i */
2148 || high_word == 0x23bd /* addi $sp,$sp,-i */
2149 || high_word == 0x67bd) /* daddiu $sp,$sp,-i */
2151 if (low_word & 0x8000) /* negative stack adjustment? */
2152 PROC_FRAME_OFFSET (&temp_proc_desc) += 0x10000 - low_word;
2154 /* Exit loop if a positive stack adjustment is found, which
2155 usually means that the stack cleanup code in the function
2156 epilogue is reached. */
2159 else if ((high_word & 0xFFE0) == 0xafa0) /* sw reg,offset($sp) */
2161 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2162 set_reg_offset (temp_saved_regs, reg, sp + low_word);
2164 else if ((high_word & 0xFFE0) == 0xffa0) /* sd reg,offset($sp) */
2166 /* Irix 6.2 N32 ABI uses sd instructions for saving $gp and $ra,
2167 but the register size used is only 32 bits. Make the address
2168 for the saved register point to the lower 32 bits. */
2169 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2170 set_reg_offset (temp_saved_regs, reg,
2171 sp + low_word + 8 - mips_regsize (current_gdbarch));
2173 else if (high_word == 0x27be) /* addiu $30,$sp,size */
2175 /* Old gcc frame, r30 is virtual frame pointer. */
2176 if ((long) low_word != PROC_FRAME_OFFSET (&temp_proc_desc))
2177 frame_addr = sp + low_word;
2178 else if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
2180 unsigned alloca_adjust;
2181 PROC_FRAME_REG (&temp_proc_desc) = 30;
2182 frame_addr = read_next_frame_reg (next_frame, NUM_REGS + 30);
2183 alloca_adjust = (unsigned) (frame_addr - (sp + low_word));
2184 if (alloca_adjust > 0)
2186 /* FP > SP + frame_size. This may be because
2187 * of an alloca or somethings similar.
2188 * Fix sp to "pre-alloca" value, and try again.
2190 sp += alloca_adjust;
2195 /* move $30,$sp. With different versions of gas this will be either
2196 `addu $30,$sp,$zero' or `or $30,$sp,$zero' or `daddu 30,sp,$0'.
2197 Accept any one of these. */
2198 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
2200 /* New gcc frame, virtual frame pointer is at r30 + frame_size. */
2201 if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
2203 unsigned alloca_adjust;
2204 PROC_FRAME_REG (&temp_proc_desc) = 30;
2205 frame_addr = read_next_frame_reg (next_frame, NUM_REGS + 30);
2206 alloca_adjust = (unsigned) (frame_addr - sp);
2207 if (alloca_adjust > 0)
2209 /* FP > SP + frame_size. This may be because
2210 * of an alloca or somethings similar.
2211 * Fix sp to "pre-alloca" value, and try again.
2213 sp += alloca_adjust;
2218 else if ((high_word & 0xFFE0) == 0xafc0) /* sw reg,offset($30) */
2220 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
2221 set_reg_offset (temp_saved_regs, reg, frame_addr + low_word);
2226 static mips_extra_func_info_t
2227 heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
2228 struct frame_info *next_frame, int cur_frame)
2233 sp = read_next_frame_reg (next_frame, NUM_REGS + SP_REGNUM);
2239 memset (&temp_proc_desc, '\0', sizeof (temp_proc_desc));
2240 temp_saved_regs = xrealloc (temp_saved_regs, SIZEOF_FRAME_SAVED_REGS);
2241 memset (temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
2242 PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
2243 PROC_FRAME_REG (&temp_proc_desc) = SP_REGNUM;
2244 PROC_PC_REG (&temp_proc_desc) = RA_REGNUM;
2246 if (start_pc + 200 < limit_pc)
2247 limit_pc = start_pc + 200;
2248 if (pc_is_mips16 (start_pc))
2249 mips16_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
2251 mips32_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
2252 return &temp_proc_desc;
2255 struct mips_objfile_private
2261 /* Global used to communicate between non_heuristic_proc_desc and
2262 compare_pdr_entries within qsort (). */
2263 static bfd *the_bfd;
2266 compare_pdr_entries (const void *a, const void *b)
2268 CORE_ADDR lhs = bfd_get_32 (the_bfd, (bfd_byte *) a);
2269 CORE_ADDR rhs = bfd_get_32 (the_bfd, (bfd_byte *) b);
2273 else if (lhs == rhs)
2279 static mips_extra_func_info_t
2280 non_heuristic_proc_desc (CORE_ADDR pc, CORE_ADDR *addrptr)
2282 CORE_ADDR startaddr;
2283 mips_extra_func_info_t proc_desc;
2284 struct block *b = block_for_pc (pc);
2286 struct obj_section *sec;
2287 struct mips_objfile_private *priv;
2289 if (DEPRECATED_PC_IN_CALL_DUMMY (pc, 0, 0))
2292 find_pc_partial_function (pc, NULL, &startaddr, NULL);
2294 *addrptr = startaddr;
2298 sec = find_pc_section (pc);
2301 priv = (struct mips_objfile_private *) sec->objfile->obj_private;
2303 /* Search the ".pdr" section generated by GAS. This includes most of
2304 the information normally found in ECOFF PDRs. */
2306 the_bfd = sec->objfile->obfd;
2308 && (the_bfd->format == bfd_object
2309 && bfd_get_flavour (the_bfd) == bfd_target_elf_flavour
2310 && elf_elfheader (the_bfd)->e_ident[EI_CLASS] == ELFCLASS64))
2312 /* Right now GAS only outputs the address as a four-byte sequence.
2313 This means that we should not bother with this method on 64-bit
2314 targets (until that is fixed). */
2316 priv = obstack_alloc (&sec->objfile->objfile_obstack,
2317 sizeof (struct mips_objfile_private));
2319 sec->objfile->obj_private = priv;
2321 else if (priv == NULL)
2325 priv = obstack_alloc (&sec->objfile->objfile_obstack,
2326 sizeof (struct mips_objfile_private));
2328 bfdsec = bfd_get_section_by_name (sec->objfile->obfd, ".pdr");
2331 priv->size = bfd_section_size (sec->objfile->obfd, bfdsec);
2332 priv->contents = obstack_alloc (&sec->objfile->objfile_obstack,
2334 bfd_get_section_contents (sec->objfile->obfd, bfdsec,
2335 priv->contents, 0, priv->size);
2337 /* In general, the .pdr section is sorted. However, in the
2338 presence of multiple code sections (and other corner cases)
2339 it can become unsorted. Sort it so that we can use a faster
2341 qsort (priv->contents, priv->size / 32, 32,
2342 compare_pdr_entries);
2347 sec->objfile->obj_private = priv;
2351 if (priv->size != 0)
2358 high = priv->size / 32;
2360 /* We've found a .pdr section describing this objfile. We want to
2361 find the entry which describes this code address. The .pdr
2362 information is not very descriptive; we have only a function
2363 start address. We have to look for the closest entry, because
2364 the local symbol at the beginning of this function may have
2365 been stripped - so if we ask the symbol table for the start
2366 address we may get a preceding global function. */
2368 /* First, find the last .pdr entry starting at or before PC. */
2371 mid = (low + high) / 2;
2373 ptr = priv->contents + mid * 32;
2374 pdr_pc = bfd_get_signed_32 (sec->objfile->obfd, ptr);
2375 pdr_pc += ANOFFSET (sec->objfile->section_offsets,
2376 SECT_OFF_TEXT (sec->objfile));
2383 while (low != high);
2385 /* Both low and high point one past the PDR of interest. If
2386 both are zero, that means this PC is before any region
2387 covered by a PDR, i.e. pdr_pc for the first PDR entry is
2391 ptr = priv->contents + (low - 1) * 32;
2392 pdr_pc = bfd_get_signed_32 (sec->objfile->obfd, ptr);
2393 pdr_pc += ANOFFSET (sec->objfile->section_offsets,
2394 SECT_OFF_TEXT (sec->objfile));
2397 /* We don't have a range, so we have no way to know for sure
2398 whether we're in the correct PDR or a PDR for a preceding
2399 function and the current function was a stripped local
2400 symbol. But if the PDR's PC is at least as great as the
2401 best guess from the symbol table, assume that it does cover
2402 the right area; if a .pdr section is present at all then
2403 nearly every function will have an entry. The biggest exception
2404 will be the dynamic linker stubs; conveniently these are
2405 placed before .text instead of after. */
2407 if (pc >= pdr_pc && pdr_pc >= startaddr)
2409 struct symbol *sym = find_pc_function (pc);
2414 /* Fill in what we need of the proc_desc. */
2415 proc_desc = (mips_extra_func_info_t)
2416 obstack_alloc (&sec->objfile->objfile_obstack,
2417 sizeof (struct mips_extra_func_info));
2418 PROC_LOW_ADDR (proc_desc) = pdr_pc;
2420 /* Only used for dummy frames. */
2421 PROC_HIGH_ADDR (proc_desc) = 0;
2423 PROC_FRAME_OFFSET (proc_desc)
2424 = bfd_get_32 (sec->objfile->obfd, ptr + 20);
2425 PROC_FRAME_REG (proc_desc) = bfd_get_32 (sec->objfile->obfd,
2427 PROC_FRAME_ADJUST (proc_desc) = 0;
2428 PROC_REG_MASK (proc_desc) = bfd_get_32 (sec->objfile->obfd,
2430 PROC_FREG_MASK (proc_desc) = bfd_get_32 (sec->objfile->obfd,
2432 PROC_REG_OFFSET (proc_desc) = bfd_get_32 (sec->objfile->obfd,
2434 PROC_FREG_OFFSET (proc_desc)
2435 = bfd_get_32 (sec->objfile->obfd, ptr + 16);
2436 PROC_PC_REG (proc_desc) = bfd_get_32 (sec->objfile->obfd,
2438 proc_desc->pdr.isym = (long) sym;
2448 if (startaddr > BLOCK_START (b))
2450 /* This is the "pathological" case referred to in a comment in
2451 print_frame_info. It might be better to move this check into
2456 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_DOMAIN, 0, NULL);
2458 /* If we never found a PDR for this function in symbol reading, then
2459 examine prologues to find the information. */
2462 proc_desc = (mips_extra_func_info_t) SYMBOL_VALUE (sym);
2463 if (PROC_FRAME_REG (proc_desc) == -1)
2473 static mips_extra_func_info_t
2474 find_proc_desc (CORE_ADDR pc, struct frame_info *next_frame, int cur_frame)
2476 mips_extra_func_info_t proc_desc;
2477 CORE_ADDR startaddr = 0;
2479 proc_desc = non_heuristic_proc_desc (pc, &startaddr);
2483 /* IF this is the topmost frame AND
2484 * (this proc does not have debugging information OR
2485 * the PC is in the procedure prologue)
2486 * THEN create a "heuristic" proc_desc (by analyzing
2487 * the actual code) to replace the "official" proc_desc.
2489 if (next_frame == NULL)
2491 struct symtab_and_line val;
2492 struct symbol *proc_symbol =
2493 PROC_DESC_IS_DUMMY (proc_desc) ? 0 : PROC_SYMBOL (proc_desc);
2497 val = find_pc_line (BLOCK_START
2498 (SYMBOL_BLOCK_VALUE (proc_symbol)), 0);
2499 val.pc = val.end ? val.end : pc;
2501 if (!proc_symbol || pc < val.pc)
2503 mips_extra_func_info_t found_heuristic =
2504 heuristic_proc_desc (PROC_LOW_ADDR (proc_desc),
2505 pc, next_frame, cur_frame);
2506 if (found_heuristic)
2507 proc_desc = found_heuristic;
2513 /* Is linked_proc_desc_table really necessary? It only seems to be used
2514 by procedure call dummys. However, the procedures being called ought
2515 to have their own proc_descs, and even if they don't,
2516 heuristic_proc_desc knows how to create them! */
2518 struct linked_proc_info *link;
2520 for (link = linked_proc_desc_table; link; link = link->next)
2521 if (PROC_LOW_ADDR (&link->info) <= pc
2522 && PROC_HIGH_ADDR (&link->info) > pc)
2526 startaddr = heuristic_proc_start (pc);
2528 proc_desc = heuristic_proc_desc (startaddr, pc, next_frame, cur_frame);
2533 /* MIPS stack frames are almost impenetrable. When execution stops,
2534 we basically have to look at symbol information for the function
2535 that we stopped in, which tells us *which* register (if any) is
2536 the base of the frame pointer, and what offset from that register
2537 the frame itself is at.
2539 This presents a problem when trying to examine a stack in memory
2540 (that isn't executing at the moment), using the "frame" command. We
2541 don't have a PC, nor do we have any registers except SP.
2543 This routine takes two arguments, SP and PC, and tries to make the
2544 cached frames look as if these two arguments defined a frame on the
2545 cache. This allows the rest of info frame to extract the important
2546 arguments without difficulty. */
2549 setup_arbitrary_frame (int argc, CORE_ADDR *argv)
2552 error ("MIPS frame specifications require two arguments: sp and pc");
2554 return create_new_frame (argv[0], argv[1]);
2557 /* According to the current ABI, should the type be passed in a
2558 floating-point register (assuming that there is space)? When there
2559 is no FPU, FP are not even considered as possibile candidates for
2560 FP registers and, consequently this returns false - forces FP
2561 arguments into integer registers. */
2564 fp_register_arg_p (enum type_code typecode, struct type *arg_type)
2566 return ((typecode == TYPE_CODE_FLT
2568 && (typecode == TYPE_CODE_STRUCT
2569 || typecode == TYPE_CODE_UNION)
2570 && TYPE_NFIELDS (arg_type) == 1
2571 && TYPE_CODE (TYPE_FIELD_TYPE (arg_type, 0)) == TYPE_CODE_FLT))
2572 && MIPS_FPU_TYPE != MIPS_FPU_NONE);
2575 /* On o32, argument passing in GPRs depends on the alignment of the type being
2576 passed. Return 1 if this type must be aligned to a doubleword boundary. */
2579 mips_type_needs_double_align (struct type *type)
2581 enum type_code typecode = TYPE_CODE (type);
2583 if (typecode == TYPE_CODE_FLT && TYPE_LENGTH (type) == 8)
2585 else if (typecode == TYPE_CODE_STRUCT)
2587 if (TYPE_NFIELDS (type) < 1)
2589 return mips_type_needs_double_align (TYPE_FIELD_TYPE (type, 0));
2591 else if (typecode == TYPE_CODE_UNION)
2595 n = TYPE_NFIELDS (type);
2596 for (i = 0; i < n; i++)
2597 if (mips_type_needs_double_align (TYPE_FIELD_TYPE (type, i)))
2604 /* Adjust the address downward (direction of stack growth) so that it
2605 is correctly aligned for a new stack frame. */
2607 mips_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
2609 return align_down (addr, 16);
2612 /* Determine how a return value is stored within the MIPS register
2613 file, given the return type `valtype'. */
2615 struct return_value_word
2624 return_value_location (struct type *valtype,
2625 struct return_value_word *hi,
2626 struct return_value_word *lo)
2628 int len = TYPE_LENGTH (valtype);
2629 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2631 if (TYPE_CODE (valtype) == TYPE_CODE_FLT
2632 && ((MIPS_FPU_TYPE == MIPS_FPU_DOUBLE && (len == 4 || len == 8))
2633 || (MIPS_FPU_TYPE == MIPS_FPU_SINGLE && len == 4)))
2635 if (!FP_REGISTER_DOUBLE && len == 8)
2637 /* We need to break a 64bit float in two 32 bit halves and
2638 spread them across a floating-point register pair. */
2639 lo->buf_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0;
2640 hi->buf_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 0 : 4;
2641 lo->reg_offset = ((TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
2642 && register_size (current_gdbarch,
2643 mips_regnum (current_gdbarch)->
2644 fp0) == 8) ? 4 : 0);
2645 hi->reg_offset = lo->reg_offset;
2646 lo->reg = mips_regnum (current_gdbarch)->fp0 + 0;
2647 hi->reg = mips_regnum (current_gdbarch)->fp0 + 1;
2653 /* The floating point value fits in a single floating-point
2655 lo->reg_offset = ((TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
2656 && register_size (current_gdbarch,
2657 mips_regnum (current_gdbarch)->
2659 && len == 4) ? 4 : 0);
2660 lo->reg = mips_regnum (current_gdbarch)->fp0;
2671 /* Locate a result possibly spread across two registers. */
2673 lo->reg = regnum + 0;
2674 hi->reg = regnum + 1;
2675 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
2676 && len < mips_saved_regsize (tdep))
2678 /* "un-left-justify" the value in the low register */
2679 lo->reg_offset = mips_saved_regsize (tdep) - len;
2684 else if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG && len > mips_saved_regsize (tdep) /* odd-size structs */
2685 && len < mips_saved_regsize (tdep) * 2
2686 && (TYPE_CODE (valtype) == TYPE_CODE_STRUCT ||
2687 TYPE_CODE (valtype) == TYPE_CODE_UNION))
2689 /* "un-left-justify" the value spread across two registers. */
2690 lo->reg_offset = 2 * mips_saved_regsize (tdep) - len;
2691 lo->len = mips_saved_regsize (tdep) - lo->reg_offset;
2693 hi->len = len - lo->len;
2697 /* Only perform a partial copy of the second register. */
2700 if (len > mips_saved_regsize (tdep))
2702 lo->len = mips_saved_regsize (tdep);
2703 hi->len = len - mips_saved_regsize (tdep);
2711 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
2712 && register_size (current_gdbarch, regnum) == 8
2713 && mips_saved_regsize (tdep) == 4)
2715 /* Account for the fact that only the least-signficant part
2716 of the register is being used */
2717 lo->reg_offset += 4;
2718 hi->reg_offset += 4;
2721 hi->buf_offset = lo->len;
2725 /* Should call_function allocate stack space for a struct return? */
2728 mips_eabi_use_struct_convention (int gcc_p, struct type *type)
2730 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2731 return (TYPE_LENGTH (type) > 2 * mips_saved_regsize (tdep));
2734 /* Should call_function pass struct by reference?
2735 For each architecture, structs are passed either by
2736 value or by reference, depending on their size. */
2739 mips_eabi_reg_struct_has_addr (int gcc_p, struct type *type)
2741 enum type_code typecode = TYPE_CODE (check_typedef (type));
2742 int len = TYPE_LENGTH (check_typedef (type));
2743 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2745 if (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION)
2746 return (len > mips_saved_regsize (tdep));
2752 mips_eabi_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
2753 struct regcache *regcache, CORE_ADDR bp_addr,
2754 int nargs, struct value **args, CORE_ADDR sp,
2755 int struct_return, CORE_ADDR struct_addr)
2761 int stack_offset = 0;
2762 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2764 /* For shared libraries, "t9" needs to point at the function
2766 regcache_cooked_write_signed (regcache, T9_REGNUM, func_addr);
2768 /* Set the return address register to point to the entry point of
2769 the program, where a breakpoint lies in wait. */
2770 regcache_cooked_write_signed (regcache, RA_REGNUM, bp_addr);
2772 /* First ensure that the stack and structure return address (if any)
2773 are properly aligned. The stack has to be at least 64-bit
2774 aligned even on 32-bit machines, because doubles must be 64-bit
2775 aligned. For n32 and n64, stack frames need to be 128-bit
2776 aligned, so we round to this widest known alignment. */
2778 sp = align_down (sp, 16);
2779 struct_addr = align_down (struct_addr, 16);
2781 /* Now make space on the stack for the args. We allocate more
2782 than necessary for EABI, because the first few arguments are
2783 passed in registers, but that's OK. */
2784 for (argnum = 0; argnum < nargs; argnum++)
2785 len += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])),
2786 mips_stack_argsize (tdep));
2787 sp -= align_up (len, 16);
2790 fprintf_unfiltered (gdb_stdlog,
2791 "mips_eabi_push_dummy_call: sp=0x%s allocated %ld\n",
2792 paddr_nz (sp), (long) align_up (len, 16));
2794 /* Initialize the integer and float register pointers. */
2796 float_argreg = mips_fpa0_regnum (current_gdbarch);
2798 /* The struct_return pointer occupies the first parameter-passing reg. */
2802 fprintf_unfiltered (gdb_stdlog,
2803 "mips_eabi_push_dummy_call: struct_return reg=%d 0x%s\n",
2804 argreg, paddr_nz (struct_addr));
2805 write_register (argreg++, struct_addr);
2808 /* Now load as many as possible of the first arguments into
2809 registers, and push the rest onto the stack. Loop thru args
2810 from first to last. */
2811 for (argnum = 0; argnum < nargs; argnum++)
2814 char valbuf[MAX_REGISTER_SIZE];
2815 struct value *arg = args[argnum];
2816 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
2817 int len = TYPE_LENGTH (arg_type);
2818 enum type_code typecode = TYPE_CODE (arg_type);
2821 fprintf_unfiltered (gdb_stdlog,
2822 "mips_eabi_push_dummy_call: %d len=%d type=%d",
2823 argnum + 1, len, (int) typecode);
2825 /* The EABI passes structures that do not fit in a register by
2827 if (len > mips_saved_regsize (tdep)
2828 && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
2830 store_unsigned_integer (valbuf, mips_saved_regsize (tdep),
2831 VALUE_ADDRESS (arg));
2832 typecode = TYPE_CODE_PTR;
2833 len = mips_saved_regsize (tdep);
2836 fprintf_unfiltered (gdb_stdlog, " push");
2839 val = (char *) VALUE_CONTENTS (arg);
2841 /* 32-bit ABIs always start floating point arguments in an
2842 even-numbered floating point register. Round the FP register
2843 up before the check to see if there are any FP registers
2844 left. Non MIPS_EABI targets also pass the FP in the integer
2845 registers so also round up normal registers. */
2846 if (!FP_REGISTER_DOUBLE && fp_register_arg_p (typecode, arg_type))
2848 if ((float_argreg & 1))
2852 /* Floating point arguments passed in registers have to be
2853 treated specially. On 32-bit architectures, doubles
2854 are passed in register pairs; the even register gets
2855 the low word, and the odd register gets the high word.
2856 On non-EABI processors, the first two floating point arguments are
2857 also copied to general registers, because MIPS16 functions
2858 don't use float registers for arguments. This duplication of
2859 arguments in general registers can't hurt non-MIPS16 functions
2860 because those registers are normally skipped. */
2861 /* MIPS_EABI squeezes a struct that contains a single floating
2862 point value into an FP register instead of pushing it onto the
2864 if (fp_register_arg_p (typecode, arg_type)
2865 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM)
2867 if (!FP_REGISTER_DOUBLE && len == 8)
2869 int low_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0;
2870 unsigned long regval;
2872 /* Write the low word of the double to the even register(s). */
2873 regval = extract_unsigned_integer (val + low_offset, 4);
2875 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
2876 float_argreg, phex (regval, 4));
2877 write_register (float_argreg++, regval);
2879 /* Write the high word of the double to the odd register(s). */
2880 regval = extract_unsigned_integer (val + 4 - low_offset, 4);
2882 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
2883 float_argreg, phex (regval, 4));
2884 write_register (float_argreg++, regval);
2888 /* This is a floating point value that fits entirely
2889 in a single register. */
2890 /* On 32 bit ABI's the float_argreg is further adjusted
2891 above to ensure that it is even register aligned. */
2892 LONGEST regval = extract_unsigned_integer (val, len);
2894 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
2895 float_argreg, phex (regval, len));
2896 write_register (float_argreg++, regval);
2901 /* Copy the argument to general registers or the stack in
2902 register-sized pieces. Large arguments are split between
2903 registers and stack. */
2904 /* Note: structs whose size is not a multiple of
2905 mips_regsize() are treated specially: Irix cc passes them
2906 in registers where gcc sometimes puts them on the stack.
2907 For maximum compatibility, we will put them in both
2909 int odd_sized_struct = ((len > mips_saved_regsize (tdep))
2910 && (len % mips_saved_regsize (tdep) != 0));
2912 /* Note: Floating-point values that didn't fit into an FP
2913 register are only written to memory. */
2916 /* Remember if the argument was written to the stack. */
2917 int stack_used_p = 0;
2918 int partial_len = (len < mips_saved_regsize (tdep)
2919 ? len : mips_saved_regsize (tdep));
2922 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
2925 /* Write this portion of the argument to the stack. */
2926 if (argreg > MIPS_LAST_ARG_REGNUM
2928 || fp_register_arg_p (typecode, arg_type))
2930 /* Should shorter than int integer values be
2931 promoted to int before being stored? */
2932 int longword_offset = 0;
2935 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2937 if (mips_stack_argsize (tdep) == 8
2938 && (typecode == TYPE_CODE_INT
2939 || typecode == TYPE_CODE_PTR
2940 || typecode == TYPE_CODE_FLT) && len <= 4)
2941 longword_offset = mips_stack_argsize (tdep) - len;
2942 else if ((typecode == TYPE_CODE_STRUCT
2943 || typecode == TYPE_CODE_UNION)
2944 && (TYPE_LENGTH (arg_type)
2945 < mips_stack_argsize (tdep)))
2946 longword_offset = mips_stack_argsize (tdep) - len;
2951 fprintf_unfiltered (gdb_stdlog, " - stack_offset=0x%s",
2952 paddr_nz (stack_offset));
2953 fprintf_unfiltered (gdb_stdlog, " longword_offset=0x%s",
2954 paddr_nz (longword_offset));
2957 addr = sp + stack_offset + longword_offset;
2962 fprintf_unfiltered (gdb_stdlog, " @0x%s ",
2964 for (i = 0; i < partial_len; i++)
2966 fprintf_unfiltered (gdb_stdlog, "%02x",
2970 write_memory (addr, val, partial_len);
2973 /* Note!!! This is NOT an else clause. Odd sized
2974 structs may go thru BOTH paths. Floating point
2975 arguments will not. */
2976 /* Write this portion of the argument to a general
2977 purpose register. */
2978 if (argreg <= MIPS_LAST_ARG_REGNUM
2979 && !fp_register_arg_p (typecode, arg_type))
2982 extract_unsigned_integer (val, partial_len);
2985 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
2988 mips_saved_regsize (tdep)));
2989 write_register (argreg, regval);
2996 /* Compute the the offset into the stack at which we
2997 will copy the next parameter.
2999 In the new EABI (and the NABI32), the stack_offset
3000 only needs to be adjusted when it has been used. */
3003 stack_offset += align_up (partial_len,
3004 mips_stack_argsize (tdep));
3008 fprintf_unfiltered (gdb_stdlog, "\n");
3011 regcache_cooked_write_signed (regcache, SP_REGNUM, sp);
3013 /* Return adjusted stack pointer. */
3017 /* Given a return value in `regbuf' with a type `valtype', extract and
3018 copy its value into `valbuf'. */
3021 mips_eabi_extract_return_value (struct type *valtype,
3022 char regbuf[], char *valbuf)
3024 struct return_value_word lo;
3025 struct return_value_word hi;
3026 return_value_location (valtype, &hi, &lo);
3028 memcpy (valbuf + lo.buf_offset,
3029 regbuf + DEPRECATED_REGISTER_BYTE (NUM_REGS + lo.reg) +
3030 lo.reg_offset, lo.len);
3033 memcpy (valbuf + hi.buf_offset,
3034 regbuf + DEPRECATED_REGISTER_BYTE (NUM_REGS + hi.reg) +
3035 hi.reg_offset, hi.len);
3038 /* Given a return value in `valbuf' with a type `valtype', write it's
3039 value into the appropriate register. */
3042 mips_eabi_store_return_value (struct type *valtype, char *valbuf)
3044 char raw_buffer[MAX_REGISTER_SIZE];
3045 struct return_value_word lo;
3046 struct return_value_word hi;
3047 return_value_location (valtype, &hi, &lo);
3049 memset (raw_buffer, 0, sizeof (raw_buffer));
3050 memcpy (raw_buffer + lo.reg_offset, valbuf + lo.buf_offset, lo.len);
3051 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (lo.reg),
3052 raw_buffer, register_size (current_gdbarch,
3057 memset (raw_buffer, 0, sizeof (raw_buffer));
3058 memcpy (raw_buffer + hi.reg_offset, valbuf + hi.buf_offset, hi.len);
3059 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (hi.reg),
3061 register_size (current_gdbarch,
3066 /* N32/N64 ABI stuff. */
3069 mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
3070 struct regcache *regcache, CORE_ADDR bp_addr,
3071 int nargs, struct value **args, CORE_ADDR sp,
3072 int struct_return, CORE_ADDR struct_addr)
3078 int stack_offset = 0;
3079 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3081 /* For shared libraries, "t9" needs to point at the function
3083 regcache_cooked_write_signed (regcache, T9_REGNUM, func_addr);
3085 /* Set the return address register to point to the entry point of
3086 the program, where a breakpoint lies in wait. */
3087 regcache_cooked_write_signed (regcache, RA_REGNUM, bp_addr);
3089 /* First ensure that the stack and structure return address (if any)
3090 are properly aligned. The stack has to be at least 64-bit
3091 aligned even on 32-bit machines, because doubles must be 64-bit
3092 aligned. For n32 and n64, stack frames need to be 128-bit
3093 aligned, so we round to this widest known alignment. */
3095 sp = align_down (sp, 16);
3096 struct_addr = align_down (struct_addr, 16);
3098 /* Now make space on the stack for the args. */
3099 for (argnum = 0; argnum < nargs; argnum++)
3100 len += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])),
3101 mips_stack_argsize (tdep));
3102 sp -= align_up (len, 16);
3105 fprintf_unfiltered (gdb_stdlog,
3106 "mips_n32n64_push_dummy_call: sp=0x%s allocated %ld\n",
3107 paddr_nz (sp), (long) align_up (len, 16));
3109 /* Initialize the integer and float register pointers. */
3111 float_argreg = mips_fpa0_regnum (current_gdbarch);
3113 /* The struct_return pointer occupies the first parameter-passing reg. */
3117 fprintf_unfiltered (gdb_stdlog,
3118 "mips_n32n64_push_dummy_call: struct_return reg=%d 0x%s\n",
3119 argreg, paddr_nz (struct_addr));
3120 write_register (argreg++, struct_addr);
3123 /* Now load as many as possible of the first arguments into
3124 registers, and push the rest onto the stack. Loop thru args
3125 from first to last. */
3126 for (argnum = 0; argnum < nargs; argnum++)
3129 struct value *arg = args[argnum];
3130 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
3131 int len = TYPE_LENGTH (arg_type);
3132 enum type_code typecode = TYPE_CODE (arg_type);
3135 fprintf_unfiltered (gdb_stdlog,
3136 "mips_n32n64_push_dummy_call: %d len=%d type=%d",
3137 argnum + 1, len, (int) typecode);
3139 val = (char *) VALUE_CONTENTS (arg);
3141 if (fp_register_arg_p (typecode, arg_type)
3142 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM)
3144 /* This is a floating point value that fits entirely
3145 in a single register. */
3146 /* On 32 bit ABI's the float_argreg is further adjusted
3147 above to ensure that it is even register aligned. */
3148 LONGEST regval = extract_unsigned_integer (val, len);
3150 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3151 float_argreg, phex (regval, len));
3152 write_register (float_argreg++, regval);
3155 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3156 argreg, phex (regval, len));
3157 write_register (argreg, regval);
3162 /* Copy the argument to general registers or the stack in
3163 register-sized pieces. Large arguments are split between
3164 registers and stack. */
3165 /* Note: structs whose size is not a multiple of
3166 mips_regsize() are treated specially: Irix cc passes them
3167 in registers where gcc sometimes puts them on the stack.
3168 For maximum compatibility, we will put them in both
3170 int odd_sized_struct = ((len > mips_saved_regsize (tdep))
3171 && (len % mips_saved_regsize (tdep) != 0));
3172 /* Note: Floating-point values that didn't fit into an FP
3173 register are only written to memory. */
3176 /* Rememer if the argument was written to the stack. */
3177 int stack_used_p = 0;
3178 int partial_len = (len < mips_saved_regsize (tdep)
3179 ? len : mips_saved_regsize (tdep));
3182 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
3185 /* Write this portion of the argument to the stack. */
3186 if (argreg > MIPS_LAST_ARG_REGNUM
3188 || fp_register_arg_p (typecode, arg_type))
3190 /* Should shorter than int integer values be
3191 promoted to int before being stored? */
3192 int longword_offset = 0;
3195 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
3197 if (mips_stack_argsize (tdep) == 8
3198 && (typecode == TYPE_CODE_INT
3199 || typecode == TYPE_CODE_PTR
3200 || typecode == TYPE_CODE_FLT) && len <= 4)
3201 longword_offset = mips_stack_argsize (tdep) - len;
3206 fprintf_unfiltered (gdb_stdlog, " - stack_offset=0x%s",
3207 paddr_nz (stack_offset));
3208 fprintf_unfiltered (gdb_stdlog, " longword_offset=0x%s",
3209 paddr_nz (longword_offset));
3212 addr = sp + stack_offset + longword_offset;
3217 fprintf_unfiltered (gdb_stdlog, " @0x%s ",
3219 for (i = 0; i < partial_len; i++)
3221 fprintf_unfiltered (gdb_stdlog, "%02x",
3225 write_memory (addr, val, partial_len);
3228 /* Note!!! This is NOT an else clause. Odd sized
3229 structs may go thru BOTH paths. Floating point
3230 arguments will not. */
3231 /* Write this portion of the argument to a general
3232 purpose register. */
3233 if (argreg <= MIPS_LAST_ARG_REGNUM
3234 && !fp_register_arg_p (typecode, arg_type))
3237 extract_unsigned_integer (val, partial_len);
3239 /* A non-floating-point argument being passed in a
3240 general register. If a struct or union, and if
3241 the remaining length is smaller than the register
3242 size, we have to adjust the register value on
3245 It does not seem to be necessary to do the
3246 same for integral types.
3248 cagney/2001-07-23: gdb/179: Also, GCC, when
3249 outputting LE O32 with sizeof (struct) <
3250 mips_saved_regsize(), generates a left shift as
3251 part of storing the argument in a register a
3252 register (the left shift isn't generated when
3253 sizeof (struct) >= mips_saved_regsize()). Since
3254 it is quite possible that this is GCC
3255 contradicting the LE/O32 ABI, GDB has not been
3256 adjusted to accommodate this. Either someone
3257 needs to demonstrate that the LE/O32 ABI
3258 specifies such a left shift OR this new ABI gets
3259 identified as such and GDB gets tweaked
3262 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
3263 && partial_len < mips_saved_regsize (tdep)
3264 && (typecode == TYPE_CODE_STRUCT ||
3265 typecode == TYPE_CODE_UNION))
3266 regval <<= ((mips_saved_regsize (tdep) - partial_len) *
3270 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
3273 mips_saved_regsize (tdep)));
3274 write_register (argreg, regval);
3281 /* Compute the the offset into the stack at which we
3282 will copy the next parameter.
3284 In N32 (N64?), the stack_offset only needs to be
3285 adjusted when it has been used. */
3288 stack_offset += align_up (partial_len,
3289 mips_stack_argsize (tdep));
3293 fprintf_unfiltered (gdb_stdlog, "\n");
3296 regcache_cooked_write_signed (regcache, SP_REGNUM, sp);
3298 /* Return adjusted stack pointer. */
3302 static enum return_value_convention
3303 mips_n32n64_return_value (struct gdbarch *gdbarch,
3304 struct type *type, struct regcache *regcache,
3305 void *readbuf, const void *writebuf)
3307 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
3308 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3309 || TYPE_CODE (type) == TYPE_CODE_UNION
3310 || TYPE_CODE (type) == TYPE_CODE_ARRAY
3311 || TYPE_LENGTH (type) > 2 * mips_saved_regsize (tdep))
3312 return RETURN_VALUE_STRUCT_CONVENTION;
3313 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3314 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3316 /* A floating-point value belongs in the least significant part
3319 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
3320 mips_xfer_register (regcache,
3321 NUM_REGS + mips_regnum (current_gdbarch)->fp0,
3323 TARGET_BYTE_ORDER, readbuf, writebuf, 0);
3324 return RETURN_VALUE_REGISTER_CONVENTION;
3326 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3327 && TYPE_NFIELDS (type) <= 2
3328 && TYPE_NFIELDS (type) >= 1
3329 && ((TYPE_NFIELDS (type) == 1
3330 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3332 || (TYPE_NFIELDS (type) == 2
3333 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3335 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 1))
3337 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3339 /* A struct that contains one or two floats. Each value is part
3340 in the least significant part of their floating point
3344 for (field = 0, regnum = mips_regnum (current_gdbarch)->fp0;
3345 field < TYPE_NFIELDS (type); field++, regnum += 2)
3347 int offset = (FIELD_BITPOS (TYPE_FIELDS (type)[field])
3350 fprintf_unfiltered (gdb_stderr, "Return float struct+%d\n",
3352 mips_xfer_register (regcache, NUM_REGS + regnum,
3353 TYPE_LENGTH (TYPE_FIELD_TYPE (type, field)),
3354 TARGET_BYTE_ORDER, readbuf, writebuf, offset);
3356 return RETURN_VALUE_REGISTER_CONVENTION;
3358 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3359 || TYPE_CODE (type) == TYPE_CODE_UNION)
3361 /* A structure or union. Extract the left justified value,
3362 regardless of the byte order. I.e. DO NOT USE
3366 for (offset = 0, regnum = V0_REGNUM;
3367 offset < TYPE_LENGTH (type);
3368 offset += register_size (current_gdbarch, regnum), regnum++)
3370 int xfer = register_size (current_gdbarch, regnum);
3371 if (offset + xfer > TYPE_LENGTH (type))
3372 xfer = TYPE_LENGTH (type) - offset;
3374 fprintf_unfiltered (gdb_stderr, "Return struct+%d:%d in $%d\n",
3375 offset, xfer, regnum);
3376 mips_xfer_register (regcache, NUM_REGS + regnum, xfer,
3377 BFD_ENDIAN_UNKNOWN, readbuf, writebuf, offset);
3379 return RETURN_VALUE_REGISTER_CONVENTION;
3383 /* A scalar extract each part but least-significant-byte
3387 for (offset = 0, regnum = V0_REGNUM;
3388 offset < TYPE_LENGTH (type);
3389 offset += register_size (current_gdbarch, regnum), regnum++)
3391 int xfer = register_size (current_gdbarch, regnum);
3392 if (offset + xfer > TYPE_LENGTH (type))
3393 xfer = TYPE_LENGTH (type) - offset;
3395 fprintf_unfiltered (gdb_stderr, "Return scalar+%d:%d in $%d\n",
3396 offset, xfer, regnum);
3397 mips_xfer_register (regcache, NUM_REGS + regnum, xfer,
3398 TARGET_BYTE_ORDER, readbuf, writebuf, offset);
3400 return RETURN_VALUE_REGISTER_CONVENTION;
3404 /* O32 ABI stuff. */
3407 mips_o32_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
3408 struct regcache *regcache, CORE_ADDR bp_addr,
3409 int nargs, struct value **args, CORE_ADDR sp,
3410 int struct_return, CORE_ADDR struct_addr)
3416 int stack_offset = 0;
3417 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3419 /* For shared libraries, "t9" needs to point at the function
3421 regcache_cooked_write_signed (regcache, T9_REGNUM, func_addr);
3423 /* Set the return address register to point to the entry point of
3424 the program, where a breakpoint lies in wait. */
3425 regcache_cooked_write_signed (regcache, RA_REGNUM, bp_addr);
3427 /* First ensure that the stack and structure return address (if any)
3428 are properly aligned. The stack has to be at least 64-bit
3429 aligned even on 32-bit machines, because doubles must be 64-bit
3430 aligned. For n32 and n64, stack frames need to be 128-bit
3431 aligned, so we round to this widest known alignment. */
3433 sp = align_down (sp, 16);
3434 struct_addr = align_down (struct_addr, 16);
3436 /* Now make space on the stack for the args. */
3437 for (argnum = 0; argnum < nargs; argnum++)
3438 len += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])),
3439 mips_stack_argsize (tdep));
3440 sp -= align_up (len, 16);
3443 fprintf_unfiltered (gdb_stdlog,
3444 "mips_o32_push_dummy_call: sp=0x%s allocated %ld\n",
3445 paddr_nz (sp), (long) align_up (len, 16));
3447 /* Initialize the integer and float register pointers. */
3449 float_argreg = mips_fpa0_regnum (current_gdbarch);
3451 /* The struct_return pointer occupies the first parameter-passing reg. */
3455 fprintf_unfiltered (gdb_stdlog,
3456 "mips_o32_push_dummy_call: struct_return reg=%d 0x%s\n",
3457 argreg, paddr_nz (struct_addr));
3458 write_register (argreg++, struct_addr);
3459 stack_offset += mips_stack_argsize (tdep);
3462 /* Now load as many as possible of the first arguments into
3463 registers, and push the rest onto the stack. Loop thru args
3464 from first to last. */
3465 for (argnum = 0; argnum < nargs; argnum++)
3468 struct value *arg = args[argnum];
3469 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
3470 int len = TYPE_LENGTH (arg_type);
3471 enum type_code typecode = TYPE_CODE (arg_type);
3474 fprintf_unfiltered (gdb_stdlog,
3475 "mips_o32_push_dummy_call: %d len=%d type=%d",
3476 argnum + 1, len, (int) typecode);
3478 val = (char *) VALUE_CONTENTS (arg);
3480 /* 32-bit ABIs always start floating point arguments in an
3481 even-numbered floating point register. Round the FP register
3482 up before the check to see if there are any FP registers
3483 left. O32/O64 targets also pass the FP in the integer
3484 registers so also round up normal registers. */
3485 if (!FP_REGISTER_DOUBLE && fp_register_arg_p (typecode, arg_type))
3487 if ((float_argreg & 1))
3491 /* Floating point arguments passed in registers have to be
3492 treated specially. On 32-bit architectures, doubles
3493 are passed in register pairs; the even register gets
3494 the low word, and the odd register gets the high word.
3495 On O32/O64, the first two floating point arguments are
3496 also copied to general registers, because MIPS16 functions
3497 don't use float registers for arguments. This duplication of
3498 arguments in general registers can't hurt non-MIPS16 functions
3499 because those registers are normally skipped. */
3501 if (fp_register_arg_p (typecode, arg_type)
3502 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM)
3504 if (!FP_REGISTER_DOUBLE && len == 8)
3506 int low_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0;
3507 unsigned long regval;
3509 /* Write the low word of the double to the even register(s). */
3510 regval = extract_unsigned_integer (val + low_offset, 4);
3512 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3513 float_argreg, phex (regval, 4));
3514 write_register (float_argreg++, regval);
3516 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3517 argreg, phex (regval, 4));
3518 write_register (argreg++, regval);
3520 /* Write the high word of the double to the odd register(s). */
3521 regval = extract_unsigned_integer (val + 4 - low_offset, 4);
3523 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3524 float_argreg, phex (regval, 4));
3525 write_register (float_argreg++, regval);
3528 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3529 argreg, phex (regval, 4));
3530 write_register (argreg++, regval);
3534 /* This is a floating point value that fits entirely
3535 in a single register. */
3536 /* On 32 bit ABI's the float_argreg is further adjusted
3537 above to ensure that it is even register aligned. */
3538 LONGEST regval = extract_unsigned_integer (val, len);
3540 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3541 float_argreg, phex (regval, len));
3542 write_register (float_argreg++, regval);
3543 /* CAGNEY: 32 bit MIPS ABI's always reserve two FP
3544 registers for each argument. The below is (my
3545 guess) to ensure that the corresponding integer
3546 register has reserved the same space. */
3548 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3549 argreg, phex (regval, len));
3550 write_register (argreg, regval);
3551 argreg += FP_REGISTER_DOUBLE ? 1 : 2;
3553 /* Reserve space for the FP register. */
3554 stack_offset += align_up (len, mips_stack_argsize (tdep));
3558 /* Copy the argument to general registers or the stack in
3559 register-sized pieces. Large arguments are split between
3560 registers and stack. */
3561 /* Note: structs whose size is not a multiple of
3562 mips_regsize() are treated specially: Irix cc passes them
3563 in registers where gcc sometimes puts them on the stack.
3564 For maximum compatibility, we will put them in both
3566 int odd_sized_struct = ((len > mips_saved_regsize (tdep))
3567 && (len % mips_saved_regsize (tdep) != 0));
3568 /* Structures should be aligned to eight bytes (even arg registers)
3569 on MIPS_ABI_O32, if their first member has double precision. */
3570 if (mips_saved_regsize (tdep) < 8
3571 && mips_type_needs_double_align (arg_type))
3576 /* Note: Floating-point values that didn't fit into an FP
3577 register are only written to memory. */
3580 /* Remember if the argument was written to the stack. */
3581 int stack_used_p = 0;
3582 int partial_len = (len < mips_saved_regsize (tdep)
3583 ? len : mips_saved_regsize (tdep));
3586 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
3589 /* Write this portion of the argument to the stack. */
3590 if (argreg > MIPS_LAST_ARG_REGNUM
3592 || fp_register_arg_p (typecode, arg_type))
3594 /* Should shorter than int integer values be
3595 promoted to int before being stored? */
3596 int longword_offset = 0;
3599 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
3601 if (mips_stack_argsize (tdep) == 8
3602 && (typecode == TYPE_CODE_INT
3603 || typecode == TYPE_CODE_PTR
3604 || typecode == TYPE_CODE_FLT) && len <= 4)
3605 longword_offset = mips_stack_argsize (tdep) - len;
3610 fprintf_unfiltered (gdb_stdlog, " - stack_offset=0x%s",
3611 paddr_nz (stack_offset));
3612 fprintf_unfiltered (gdb_stdlog, " longword_offset=0x%s",
3613 paddr_nz (longword_offset));
3616 addr = sp + stack_offset + longword_offset;
3621 fprintf_unfiltered (gdb_stdlog, " @0x%s ",
3623 for (i = 0; i < partial_len; i++)
3625 fprintf_unfiltered (gdb_stdlog, "%02x",
3629 write_memory (addr, val, partial_len);
3632 /* Note!!! This is NOT an else clause. Odd sized
3633 structs may go thru BOTH paths. Floating point
3634 arguments will not. */
3635 /* Write this portion of the argument to a general
3636 purpose register. */
3637 if (argreg <= MIPS_LAST_ARG_REGNUM
3638 && !fp_register_arg_p (typecode, arg_type))
3640 LONGEST regval = extract_signed_integer (val, partial_len);
3641 /* Value may need to be sign extended, because
3642 mips_regsize() != mips_saved_regsize(). */
3644 /* A non-floating-point argument being passed in a
3645 general register. If a struct or union, and if
3646 the remaining length is smaller than the register
3647 size, we have to adjust the register value on
3650 It does not seem to be necessary to do the
3651 same for integral types.
3653 Also don't do this adjustment on O64 binaries.
3655 cagney/2001-07-23: gdb/179: Also, GCC, when
3656 outputting LE O32 with sizeof (struct) <
3657 mips_saved_regsize(), generates a left shift as
3658 part of storing the argument in a register a
3659 register (the left shift isn't generated when
3660 sizeof (struct) >= mips_saved_regsize()). Since
3661 it is quite possible that this is GCC
3662 contradicting the LE/O32 ABI, GDB has not been
3663 adjusted to accommodate this. Either someone
3664 needs to demonstrate that the LE/O32 ABI
3665 specifies such a left shift OR this new ABI gets
3666 identified as such and GDB gets tweaked
3669 if (mips_saved_regsize (tdep) < 8
3670 && TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
3671 && partial_len < mips_saved_regsize (tdep)
3672 && (typecode == TYPE_CODE_STRUCT ||
3673 typecode == TYPE_CODE_UNION))
3674 regval <<= ((mips_saved_regsize (tdep) - partial_len) *
3678 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
3681 mips_saved_regsize (tdep)));
3682 write_register (argreg, regval);
3685 /* Prevent subsequent floating point arguments from
3686 being passed in floating point registers. */
3687 float_argreg = MIPS_LAST_FP_ARG_REGNUM + 1;
3693 /* Compute the the offset into the stack at which we
3694 will copy the next parameter.
3696 In older ABIs, the caller reserved space for
3697 registers that contained arguments. This was loosely
3698 refered to as their "home". Consequently, space is
3699 always allocated. */
3701 stack_offset += align_up (partial_len,
3702 mips_stack_argsize (tdep));
3706 fprintf_unfiltered (gdb_stdlog, "\n");
3709 regcache_cooked_write_signed (regcache, SP_REGNUM, sp);
3711 /* Return adjusted stack pointer. */
3715 static enum return_value_convention
3716 mips_o32_return_value (struct gdbarch *gdbarch, struct type *type,
3717 struct regcache *regcache,
3718 void *readbuf, const void *writebuf)
3720 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
3722 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3723 || TYPE_CODE (type) == TYPE_CODE_UNION
3724 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
3725 return RETURN_VALUE_STRUCT_CONVENTION;
3726 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3727 && TYPE_LENGTH (type) == 4 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3729 /* A single-precision floating-point value. It fits in the
3730 least significant part of FP0. */
3732 fprintf_unfiltered (gdb_stderr, "Return float in $fp0\n");
3733 mips_xfer_register (regcache,
3734 NUM_REGS + mips_regnum (current_gdbarch)->fp0,
3736 TARGET_BYTE_ORDER, readbuf, writebuf, 0);
3737 return RETURN_VALUE_REGISTER_CONVENTION;
3739 else if (TYPE_CODE (type) == TYPE_CODE_FLT
3740 && TYPE_LENGTH (type) == 8 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3742 /* A double-precision floating-point value. The most
3743 significant part goes in FP1, and the least significant in
3746 fprintf_unfiltered (gdb_stderr, "Return float in $fp1/$fp0\n");
3747 switch (TARGET_BYTE_ORDER)
3749 case BFD_ENDIAN_LITTLE:
3750 mips_xfer_register (regcache,
3751 NUM_REGS + mips_regnum (current_gdbarch)->fp0 +
3752 0, 4, TARGET_BYTE_ORDER, readbuf, writebuf, 0);
3753 mips_xfer_register (regcache,
3754 NUM_REGS + mips_regnum (current_gdbarch)->fp0 +
3755 1, 4, TARGET_BYTE_ORDER, readbuf, writebuf, 4);
3757 case BFD_ENDIAN_BIG:
3758 mips_xfer_register (regcache,
3759 NUM_REGS + mips_regnum (current_gdbarch)->fp0 +
3760 1, 4, TARGET_BYTE_ORDER, readbuf, writebuf, 0);
3761 mips_xfer_register (regcache,
3762 NUM_REGS + mips_regnum (current_gdbarch)->fp0 +
3763 0, 4, TARGET_BYTE_ORDER, readbuf, writebuf, 4);
3766 internal_error (__FILE__, __LINE__, "bad switch");
3768 return RETURN_VALUE_REGISTER_CONVENTION;
3771 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3772 && TYPE_NFIELDS (type) <= 2
3773 && TYPE_NFIELDS (type) >= 1
3774 && ((TYPE_NFIELDS (type) == 1
3775 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3777 || (TYPE_NFIELDS (type) == 2
3778 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 0))
3780 && (TYPE_CODE (TYPE_FIELD_TYPE (type, 1))
3782 && tdep->mips_fpu_type != MIPS_FPU_NONE)
3784 /* A struct that contains one or two floats. Each value is part
3785 in the least significant part of their floating point
3787 bfd_byte reg[MAX_REGISTER_SIZE];
3790 for (field = 0, regnum = mips_regnum (current_gdbarch)->fp0;
3791 field < TYPE_NFIELDS (type); field++, regnum += 2)
3793 int offset = (FIELD_BITPOS (TYPE_FIELDS (type)[field])
3796 fprintf_unfiltered (gdb_stderr, "Return float struct+%d\n",
3798 mips_xfer_register (regcache, NUM_REGS + regnum,
3799 TYPE_LENGTH (TYPE_FIELD_TYPE (type, field)),
3800 TARGET_BYTE_ORDER, readbuf, writebuf, offset);
3802 return RETURN_VALUE_REGISTER_CONVENTION;
3806 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3807 || TYPE_CODE (type) == TYPE_CODE_UNION)
3809 /* A structure or union. Extract the left justified value,
3810 regardless of the byte order. I.e. DO NOT USE
3814 for (offset = 0, regnum = V0_REGNUM;
3815 offset < TYPE_LENGTH (type);
3816 offset += register_size (current_gdbarch, regnum), regnum++)
3818 int xfer = register_size (current_gdbarch, regnum);
3819 if (offset + xfer > TYPE_LENGTH (type))
3820 xfer = TYPE_LENGTH (type) - offset;
3822 fprintf_unfiltered (gdb_stderr, "Return struct+%d:%d in $%d\n",
3823 offset, xfer, regnum);
3824 mips_xfer_register (regcache, NUM_REGS + regnum, xfer,
3825 BFD_ENDIAN_UNKNOWN, readbuf, writebuf, offset);
3827 return RETURN_VALUE_REGISTER_CONVENTION;
3832 /* A scalar extract each part but least-significant-byte
3833 justified. o32 thinks registers are 4 byte, regardless of
3834 the ISA. mips_stack_argsize controls this. */
3837 for (offset = 0, regnum = V0_REGNUM;
3838 offset < TYPE_LENGTH (type);
3839 offset += mips_stack_argsize (tdep), regnum++)
3841 int xfer = mips_stack_argsize (tdep);
3842 if (offset + xfer > TYPE_LENGTH (type))
3843 xfer = TYPE_LENGTH (type) - offset;
3845 fprintf_unfiltered (gdb_stderr, "Return scalar+%d:%d in $%d\n",
3846 offset, xfer, regnum);
3847 mips_xfer_register (regcache, NUM_REGS + regnum, xfer,
3848 TARGET_BYTE_ORDER, readbuf, writebuf, offset);
3850 return RETURN_VALUE_REGISTER_CONVENTION;
3854 /* O64 ABI. This is a hacked up kind of 64-bit version of the o32
3858 mips_o64_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
3859 struct regcache *regcache, CORE_ADDR bp_addr,
3861 struct value **args, CORE_ADDR sp,
3862 int struct_return, CORE_ADDR struct_addr)
3868 int stack_offset = 0;
3869 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3871 /* For shared libraries, "t9" needs to point at the function
3873 regcache_cooked_write_signed (regcache, T9_REGNUM, func_addr);
3875 /* Set the return address register to point to the entry point of
3876 the program, where a breakpoint lies in wait. */
3877 regcache_cooked_write_signed (regcache, RA_REGNUM, bp_addr);
3879 /* First ensure that the stack and structure return address (if any)
3880 are properly aligned. The stack has to be at least 64-bit
3881 aligned even on 32-bit machines, because doubles must be 64-bit
3882 aligned. For n32 and n64, stack frames need to be 128-bit
3883 aligned, so we round to this widest known alignment. */
3885 sp = align_down (sp, 16);
3886 struct_addr = align_down (struct_addr, 16);
3888 /* Now make space on the stack for the args. */
3889 for (argnum = 0; argnum < nargs; argnum++)
3890 len += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])),
3891 mips_stack_argsize (tdep));
3892 sp -= align_up (len, 16);
3895 fprintf_unfiltered (gdb_stdlog,
3896 "mips_o64_push_dummy_call: sp=0x%s allocated %ld\n",
3897 paddr_nz (sp), (long) align_up (len, 16));
3899 /* Initialize the integer and float register pointers. */
3901 float_argreg = mips_fpa0_regnum (current_gdbarch);
3903 /* The struct_return pointer occupies the first parameter-passing reg. */
3907 fprintf_unfiltered (gdb_stdlog,
3908 "mips_o64_push_dummy_call: struct_return reg=%d 0x%s\n",
3909 argreg, paddr_nz (struct_addr));
3910 write_register (argreg++, struct_addr);
3911 stack_offset += mips_stack_argsize (tdep);
3914 /* Now load as many as possible of the first arguments into
3915 registers, and push the rest onto the stack. Loop thru args
3916 from first to last. */
3917 for (argnum = 0; argnum < nargs; argnum++)
3920 struct value *arg = args[argnum];
3921 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
3922 int len = TYPE_LENGTH (arg_type);
3923 enum type_code typecode = TYPE_CODE (arg_type);
3926 fprintf_unfiltered (gdb_stdlog,
3927 "mips_o64_push_dummy_call: %d len=%d type=%d",
3928 argnum + 1, len, (int) typecode);
3930 val = (char *) VALUE_CONTENTS (arg);
3932 /* 32-bit ABIs always start floating point arguments in an
3933 even-numbered floating point register. Round the FP register
3934 up before the check to see if there are any FP registers
3935 left. O32/O64 targets also pass the FP in the integer
3936 registers so also round up normal registers. */
3937 if (!FP_REGISTER_DOUBLE && fp_register_arg_p (typecode, arg_type))
3939 if ((float_argreg & 1))
3943 /* Floating point arguments passed in registers have to be
3944 treated specially. On 32-bit architectures, doubles
3945 are passed in register pairs; the even register gets
3946 the low word, and the odd register gets the high word.
3947 On O32/O64, the first two floating point arguments are
3948 also copied to general registers, because MIPS16 functions
3949 don't use float registers for arguments. This duplication of
3950 arguments in general registers can't hurt non-MIPS16 functions
3951 because those registers are normally skipped. */
3953 if (fp_register_arg_p (typecode, arg_type)
3954 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM)
3956 if (!FP_REGISTER_DOUBLE && len == 8)
3958 int low_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0;
3959 unsigned long regval;
3961 /* Write the low word of the double to the even register(s). */
3962 regval = extract_unsigned_integer (val + low_offset, 4);
3964 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3965 float_argreg, phex (regval, 4));
3966 write_register (float_argreg++, regval);
3968 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3969 argreg, phex (regval, 4));
3970 write_register (argreg++, regval);
3972 /* Write the high word of the double to the odd register(s). */
3973 regval = extract_unsigned_integer (val + 4 - low_offset, 4);
3975 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3976 float_argreg, phex (regval, 4));
3977 write_register (float_argreg++, regval);
3980 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
3981 argreg, phex (regval, 4));
3982 write_register (argreg++, regval);
3986 /* This is a floating point value that fits entirely
3987 in a single register. */
3988 /* On 32 bit ABI's the float_argreg is further adjusted
3989 above to ensure that it is even register aligned. */
3990 LONGEST regval = extract_unsigned_integer (val, len);
3992 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
3993 float_argreg, phex (regval, len));
3994 write_register (float_argreg++, regval);
3995 /* CAGNEY: 32 bit MIPS ABI's always reserve two FP
3996 registers for each argument. The below is (my
3997 guess) to ensure that the corresponding integer
3998 register has reserved the same space. */
4000 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
4001 argreg, phex (regval, len));
4002 write_register (argreg, regval);
4003 argreg += FP_REGISTER_DOUBLE ? 1 : 2;
4005 /* Reserve space for the FP register. */
4006 stack_offset += align_up (len, mips_stack_argsize (tdep));
4010 /* Copy the argument to general registers or the stack in
4011 register-sized pieces. Large arguments are split between
4012 registers and stack. */
4013 /* Note: structs whose size is not a multiple of
4014 mips_regsize() are treated specially: Irix cc passes them
4015 in registers where gcc sometimes puts them on the stack.
4016 For maximum compatibility, we will put them in both
4018 int odd_sized_struct = ((len > mips_saved_regsize (tdep))
4019 && (len % mips_saved_regsize (tdep) != 0));
4020 /* Structures should be aligned to eight bytes (even arg registers)
4021 on MIPS_ABI_O32, if their first member has double precision. */
4022 if (mips_saved_regsize (tdep) < 8
4023 && mips_type_needs_double_align (arg_type))
4028 /* Note: Floating-point values that didn't fit into an FP
4029 register are only written to memory. */
4032 /* Remember if the argument was written to the stack. */
4033 int stack_used_p = 0;
4034 int partial_len = (len < mips_saved_regsize (tdep)
4035 ? len : mips_saved_regsize (tdep));
4038 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
4041 /* Write this portion of the argument to the stack. */
4042 if (argreg > MIPS_LAST_ARG_REGNUM
4044 || fp_register_arg_p (typecode, arg_type))
4046 /* Should shorter than int integer values be
4047 promoted to int before being stored? */
4048 int longword_offset = 0;
4051 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4053 if (mips_stack_argsize (tdep) == 8
4054 && (typecode == TYPE_CODE_INT
4055 || typecode == TYPE_CODE_PTR
4056 || typecode == TYPE_CODE_FLT) && len <= 4)
4057 longword_offset = mips_stack_argsize (tdep) - len;
4062 fprintf_unfiltered (gdb_stdlog, " - stack_offset=0x%s",
4063 paddr_nz (stack_offset));
4064 fprintf_unfiltered (gdb_stdlog, " longword_offset=0x%s",
4065 paddr_nz (longword_offset));
4068 addr = sp + stack_offset + longword_offset;
4073 fprintf_unfiltered (gdb_stdlog, " @0x%s ",
4075 for (i = 0; i < partial_len; i++)
4077 fprintf_unfiltered (gdb_stdlog, "%02x",
4081 write_memory (addr, val, partial_len);
4084 /* Note!!! This is NOT an else clause. Odd sized
4085 structs may go thru BOTH paths. Floating point
4086 arguments will not. */
4087 /* Write this portion of the argument to a general
4088 purpose register. */
4089 if (argreg <= MIPS_LAST_ARG_REGNUM
4090 && !fp_register_arg_p (typecode, arg_type))
4092 LONGEST regval = extract_signed_integer (val, partial_len);
4093 /* Value may need to be sign extended, because
4094 mips_regsize() != mips_saved_regsize(). */
4096 /* A non-floating-point argument being passed in a
4097 general register. If a struct or union, and if
4098 the remaining length is smaller than the register
4099 size, we have to adjust the register value on
4102 It does not seem to be necessary to do the
4103 same for integral types.
4105 Also don't do this adjustment on O64 binaries.
4107 cagney/2001-07-23: gdb/179: Also, GCC, when
4108 outputting LE O32 with sizeof (struct) <
4109 mips_saved_regsize(), generates a left shift as
4110 part of storing the argument in a register a
4111 register (the left shift isn't generated when
4112 sizeof (struct) >= mips_saved_regsize()). Since
4113 it is quite possible that this is GCC
4114 contradicting the LE/O32 ABI, GDB has not been
4115 adjusted to accommodate this. Either someone
4116 needs to demonstrate that the LE/O32 ABI
4117 specifies such a left shift OR this new ABI gets
4118 identified as such and GDB gets tweaked
4121 if (mips_saved_regsize (tdep) < 8
4122 && TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
4123 && partial_len < mips_saved_regsize (tdep)
4124 && (typecode == TYPE_CODE_STRUCT ||
4125 typecode == TYPE_CODE_UNION))
4126 regval <<= ((mips_saved_regsize (tdep) - partial_len) *
4130 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
4133 mips_saved_regsize (tdep)));
4134 write_register (argreg, regval);
4137 /* Prevent subsequent floating point arguments from
4138 being passed in floating point registers. */
4139 float_argreg = MIPS_LAST_FP_ARG_REGNUM + 1;
4145 /* Compute the the offset into the stack at which we
4146 will copy the next parameter.
4148 In older ABIs, the caller reserved space for
4149 registers that contained arguments. This was loosely
4150 refered to as their "home". Consequently, space is
4151 always allocated. */
4153 stack_offset += align_up (partial_len,
4154 mips_stack_argsize (tdep));
4158 fprintf_unfiltered (gdb_stdlog, "\n");
4161 regcache_cooked_write_signed (regcache, SP_REGNUM, sp);
4163 /* Return adjusted stack pointer. */
4168 mips_o64_extract_return_value (struct type *valtype,
4169 char regbuf[], char *valbuf)
4171 struct return_value_word lo;
4172 struct return_value_word hi;
4173 return_value_location (valtype, &hi, &lo);
4175 memcpy (valbuf + lo.buf_offset,
4176 regbuf + DEPRECATED_REGISTER_BYTE (NUM_REGS + lo.reg) +
4177 lo.reg_offset, lo.len);
4180 memcpy (valbuf + hi.buf_offset,
4181 regbuf + DEPRECATED_REGISTER_BYTE (NUM_REGS + hi.reg) +
4182 hi.reg_offset, hi.len);
4186 mips_o64_store_return_value (struct type *valtype, char *valbuf)
4188 char raw_buffer[MAX_REGISTER_SIZE];
4189 struct return_value_word lo;
4190 struct return_value_word hi;
4191 return_value_location (valtype, &hi, &lo);
4193 memset (raw_buffer, 0, sizeof (raw_buffer));
4194 memcpy (raw_buffer + lo.reg_offset, valbuf + lo.buf_offset, lo.len);
4195 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (lo.reg),
4196 raw_buffer, register_size (current_gdbarch,
4201 memset (raw_buffer, 0, sizeof (raw_buffer));
4202 memcpy (raw_buffer + hi.reg_offset, valbuf + hi.buf_offset, hi.len);
4203 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (hi.reg),
4205 register_size (current_gdbarch,
4210 /* Floating point register management.
4212 Background: MIPS1 & 2 fp registers are 32 bits wide. To support
4213 64bit operations, these early MIPS cpus treat fp register pairs
4214 (f0,f1) as a single register (d0). Later MIPS cpu's have 64 bit fp
4215 registers and offer a compatibility mode that emulates the MIPS2 fp
4216 model. When operating in MIPS2 fp compat mode, later cpu's split
4217 double precision floats into two 32-bit chunks and store them in
4218 consecutive fp regs. To display 64-bit floats stored in this
4219 fashion, we have to combine 32 bits from f0 and 32 bits from f1.
4220 Throw in user-configurable endianness and you have a real mess.
4222 The way this works is:
4223 - If we are in 32-bit mode or on a 32-bit processor, then a 64-bit
4224 double-precision value will be split across two logical registers.
4225 The lower-numbered logical register will hold the low-order bits,
4226 regardless of the processor's endianness.
4227 - If we are on a 64-bit processor, and we are looking for a
4228 single-precision value, it will be in the low ordered bits
4229 of a 64-bit GPR (after mfc1, for example) or a 64-bit register
4230 save slot in memory.
4231 - If we are in 64-bit mode, everything is straightforward.
4233 Note that this code only deals with "live" registers at the top of the
4234 stack. We will attempt to deal with saved registers later, when
4235 the raw/cooked register interface is in place. (We need a general
4236 interface that can deal with dynamic saved register sizes -- fp
4237 regs could be 32 bits wide in one frame and 64 on the frame above
4240 static struct type *
4241 mips_float_register_type (void)
4243 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4244 return builtin_type_ieee_single_big;
4246 return builtin_type_ieee_single_little;
4249 static struct type *
4250 mips_double_register_type (void)
4252 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4253 return builtin_type_ieee_double_big;
4255 return builtin_type_ieee_double_little;
4258 /* Copy a 32-bit single-precision value from the current frame
4259 into rare_buffer. */
4262 mips_read_fp_register_single (struct frame_info *frame, int regno,
4265 int raw_size = register_size (current_gdbarch, regno);
4266 char *raw_buffer = alloca (raw_size);
4268 if (!frame_register_read (frame, regno, raw_buffer))
4269 error ("can't read register %d (%s)", regno, REGISTER_NAME (regno));
4272 /* We have a 64-bit value for this register. Find the low-order
4276 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4281 memcpy (rare_buffer, raw_buffer + offset, 4);
4285 memcpy (rare_buffer, raw_buffer, 4);
4289 /* Copy a 64-bit double-precision value from the current frame into
4290 rare_buffer. This may include getting half of it from the next
4294 mips_read_fp_register_double (struct frame_info *frame, int regno,
4297 int raw_size = register_size (current_gdbarch, regno);
4299 if (raw_size == 8 && !mips2_fp_compat ())
4301 /* We have a 64-bit value for this register, and we should use
4303 if (!frame_register_read (frame, regno, rare_buffer))
4304 error ("can't read register %d (%s)", regno, REGISTER_NAME (regno));
4308 if ((regno - mips_regnum (current_gdbarch)->fp0) & 1)
4309 internal_error (__FILE__, __LINE__,
4310 "mips_read_fp_register_double: bad access to "
4311 "odd-numbered FP register");
4313 /* mips_read_fp_register_single will find the correct 32 bits from
4315 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4317 mips_read_fp_register_single (frame, regno, rare_buffer + 4);
4318 mips_read_fp_register_single (frame, regno + 1, rare_buffer);
4322 mips_read_fp_register_single (frame, regno, rare_buffer);
4323 mips_read_fp_register_single (frame, regno + 1, rare_buffer + 4);
4329 mips_print_fp_register (struct ui_file *file, struct frame_info *frame,
4331 { /* do values for FP (float) regs */
4333 double doub, flt1; /* doubles extracted from raw hex data */
4337 (char *) alloca (2 *
4338 register_size (current_gdbarch,
4339 mips_regnum (current_gdbarch)->fp0));
4341 fprintf_filtered (file, "%s:", REGISTER_NAME (regnum));
4342 fprintf_filtered (file, "%*s", 4 - (int) strlen (REGISTER_NAME (regnum)),
4345 if (register_size (current_gdbarch, regnum) == 4 || mips2_fp_compat ())
4347 /* 4-byte registers: Print hex and floating. Also print even
4348 numbered registers as doubles. */
4349 mips_read_fp_register_single (frame, regnum, raw_buffer);
4350 flt1 = unpack_double (mips_float_register_type (), raw_buffer, &inv1);
4352 print_scalar_formatted (raw_buffer, builtin_type_uint32, 'x', 'w',
4355 fprintf_filtered (file, " flt: ");
4357 fprintf_filtered (file, " <invalid float> ");
4359 fprintf_filtered (file, "%-17.9g", flt1);
4361 if (regnum % 2 == 0)
4363 mips_read_fp_register_double (frame, regnum, raw_buffer);
4364 doub = unpack_double (mips_double_register_type (), raw_buffer,
4367 fprintf_filtered (file, " dbl: ");
4369 fprintf_filtered (file, "<invalid double>");
4371 fprintf_filtered (file, "%-24.17g", doub);
4376 /* Eight byte registers: print each one as hex, float and double. */
4377 mips_read_fp_register_single (frame, regnum, raw_buffer);
4378 flt1 = unpack_double (mips_float_register_type (), raw_buffer, &inv1);
4380 mips_read_fp_register_double (frame, regnum, raw_buffer);
4381 doub = unpack_double (mips_double_register_type (), raw_buffer, &inv2);
4384 print_scalar_formatted (raw_buffer, builtin_type_uint64, 'x', 'g',
4387 fprintf_filtered (file, " flt: ");
4389 fprintf_filtered (file, "<invalid float>");
4391 fprintf_filtered (file, "%-17.9g", flt1);
4393 fprintf_filtered (file, " dbl: ");
4395 fprintf_filtered (file, "<invalid double>");
4397 fprintf_filtered (file, "%-24.17g", doub);
4402 mips_print_register (struct ui_file *file, struct frame_info *frame,
4403 int regnum, int all)
4405 struct gdbarch *gdbarch = get_frame_arch (frame);
4406 char raw_buffer[MAX_REGISTER_SIZE];
4409 if (TYPE_CODE (gdbarch_register_type (gdbarch, regnum)) == TYPE_CODE_FLT)
4411 mips_print_fp_register (file, frame, regnum);
4415 /* Get the data in raw format. */
4416 if (!frame_register_read (frame, regnum, raw_buffer))
4418 fprintf_filtered (file, "%s: [Invalid]", REGISTER_NAME (regnum));
4422 fputs_filtered (REGISTER_NAME (regnum), file);
4424 /* The problem with printing numeric register names (r26, etc.) is that
4425 the user can't use them on input. Probably the best solution is to
4426 fix it so that either the numeric or the funky (a2, etc.) names
4427 are accepted on input. */
4428 if (regnum < MIPS_NUMREGS)
4429 fprintf_filtered (file, "(r%d): ", regnum);
4431 fprintf_filtered (file, ": ");
4433 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4435 register_size (current_gdbarch,
4436 regnum) - register_size (current_gdbarch, regnum);
4440 print_scalar_formatted (raw_buffer + offset,
4441 gdbarch_register_type (gdbarch, regnum), 'x', 0,
4445 /* Replacement for generic do_registers_info.
4446 Print regs in pretty columns. */
4449 print_fp_register_row (struct ui_file *file, struct frame_info *frame,
4452 fprintf_filtered (file, " ");
4453 mips_print_fp_register (file, frame, regnum);
4454 fprintf_filtered (file, "\n");
4459 /* Print a row's worth of GP (int) registers, with name labels above */
4462 print_gp_register_row (struct ui_file *file, struct frame_info *frame,
4465 struct gdbarch *gdbarch = get_frame_arch (frame);
4466 /* do values for GP (int) regs */
4467 char raw_buffer[MAX_REGISTER_SIZE];
4468 int ncols = (mips_regsize (gdbarch) == 8 ? 4 : 8); /* display cols per row */
4472 /* For GP registers, we print a separate row of names above the vals */
4473 fprintf_filtered (file, " ");
4474 for (col = 0, regnum = start_regnum;
4475 col < ncols && regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
4477 if (*REGISTER_NAME (regnum) == '\0')
4478 continue; /* unused register */
4479 if (TYPE_CODE (gdbarch_register_type (gdbarch, regnum)) ==
4481 break; /* end the row: reached FP register */
4482 fprintf_filtered (file,
4483 mips_regsize (current_gdbarch) == 8 ? "%17s" : "%9s",
4484 REGISTER_NAME (regnum));
4487 /* print the R0 to R31 names */
4488 if ((start_regnum % NUM_REGS) < MIPS_NUMREGS)
4489 fprintf_filtered (file, "\n R%-4d", start_regnum % NUM_REGS);
4491 fprintf_filtered (file, "\n ");
4493 /* now print the values in hex, 4 or 8 to the row */
4494 for (col = 0, regnum = start_regnum;
4495 col < ncols && regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
4497 if (*REGISTER_NAME (regnum) == '\0')
4498 continue; /* unused register */
4499 if (TYPE_CODE (gdbarch_register_type (gdbarch, regnum)) ==
4501 break; /* end row: reached FP register */
4502 /* OK: get the data in raw format. */
4503 if (!frame_register_read (frame, regnum, raw_buffer))
4504 error ("can't read register %d (%s)", regnum, REGISTER_NAME (regnum));
4505 /* pad small registers */
4507 byte < (mips_regsize (current_gdbarch)
4508 - register_size (current_gdbarch, regnum)); byte++)
4509 printf_filtered (" ");
4510 /* Now print the register value in hex, endian order. */
4511 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4513 register_size (current_gdbarch,
4514 regnum) - register_size (current_gdbarch, regnum);
4515 byte < register_size (current_gdbarch, regnum); byte++)
4516 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[byte]);
4518 for (byte = register_size (current_gdbarch, regnum) - 1;
4520 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[byte]);
4521 fprintf_filtered (file, " ");
4524 if (col > 0) /* ie. if we actually printed anything... */
4525 fprintf_filtered (file, "\n");
4530 /* MIPS_DO_REGISTERS_INFO(): called by "info register" command */
4533 mips_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file,
4534 struct frame_info *frame, int regnum, int all)
4536 if (regnum != -1) /* do one specified register */
4538 gdb_assert (regnum >= NUM_REGS);
4539 if (*(REGISTER_NAME (regnum)) == '\0')
4540 error ("Not a valid register for the current processor type");
4542 mips_print_register (file, frame, regnum, 0);
4543 fprintf_filtered (file, "\n");
4546 /* do all (or most) registers */
4549 while (regnum < NUM_REGS + NUM_PSEUDO_REGS)
4551 if (TYPE_CODE (gdbarch_register_type (gdbarch, regnum)) ==
4554 if (all) /* true for "INFO ALL-REGISTERS" command */
4555 regnum = print_fp_register_row (file, frame, regnum);
4557 regnum += MIPS_NUMREGS; /* skip floating point regs */
4560 regnum = print_gp_register_row (file, frame, regnum);
4565 /* Is this a branch with a delay slot? */
4567 static int is_delayed (unsigned long);
4570 is_delayed (unsigned long insn)
4573 for (i = 0; i < NUMOPCODES; ++i)
4574 if (mips_opcodes[i].pinfo != INSN_MACRO
4575 && (insn & mips_opcodes[i].mask) == mips_opcodes[i].match)
4577 return (i < NUMOPCODES
4578 && (mips_opcodes[i].pinfo & (INSN_UNCOND_BRANCH_DELAY
4579 | INSN_COND_BRANCH_DELAY
4580 | INSN_COND_BRANCH_LIKELY)));
4584 mips_step_skips_delay (CORE_ADDR pc)
4586 char buf[MIPS_INSTLEN];
4588 /* There is no branch delay slot on MIPS16. */
4589 if (pc_is_mips16 (pc))
4592 if (target_read_memory (pc, buf, MIPS_INSTLEN) != 0)
4593 /* If error reading memory, guess that it is not a delayed branch. */
4595 return is_delayed ((unsigned long)
4596 extract_unsigned_integer (buf, MIPS_INSTLEN));
4599 /* Skip the PC past function prologue instructions (32-bit version).
4600 This is a helper function for mips_skip_prologue. */
4603 mips32_skip_prologue (CORE_ADDR pc)
4607 int seen_sp_adjust = 0;
4608 int load_immediate_bytes = 0;
4610 /* Find an upper bound on the prologue. */
4611 end_pc = skip_prologue_using_sal (pc);
4613 end_pc = pc + 100; /* Magic. */
4615 /* Skip the typical prologue instructions. These are the stack adjustment
4616 instruction and the instructions that save registers on the stack
4617 or in the gcc frame. */
4618 for (; pc < end_pc; pc += MIPS_INSTLEN)
4620 unsigned long high_word;
4622 inst = mips_fetch_instruction (pc);
4623 high_word = (inst >> 16) & 0xffff;
4625 if (high_word == 0x27bd /* addiu $sp,$sp,offset */
4626 || high_word == 0x67bd) /* daddiu $sp,$sp,offset */
4628 else if (inst == 0x03a1e823 || /* subu $sp,$sp,$at */
4629 inst == 0x03a8e823) /* subu $sp,$sp,$t0 */
4631 else if (((inst & 0xFFE00000) == 0xAFA00000 /* sw reg,n($sp) */
4632 || (inst & 0xFFE00000) == 0xFFA00000) /* sd reg,n($sp) */
4633 && (inst & 0x001F0000)) /* reg != $zero */
4636 else if ((inst & 0xFFE00000) == 0xE7A00000) /* swc1 freg,n($sp) */
4638 else if ((inst & 0xF3E00000) == 0xA3C00000 && (inst & 0x001F0000))
4640 continue; /* reg != $zero */
4642 /* move $s8,$sp. With different versions of gas this will be either
4643 `addu $s8,$sp,$zero' or `or $s8,$sp,$zero' or `daddu s8,sp,$0'.
4644 Accept any one of these. */
4645 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
4648 else if ((inst & 0xFF9F07FF) == 0x00800021) /* move reg,$a0-$a3 */
4650 else if (high_word == 0x3c1c) /* lui $gp,n */
4652 else if (high_word == 0x279c) /* addiu $gp,$gp,n */
4654 else if (inst == 0x0399e021 /* addu $gp,$gp,$t9 */
4655 || inst == 0x033ce021) /* addu $gp,$t9,$gp */
4657 /* The following instructions load $at or $t0 with an immediate
4658 value in preparation for a stack adjustment via
4659 subu $sp,$sp,[$at,$t0]. These instructions could also initialize
4660 a local variable, so we accept them only before a stack adjustment
4661 instruction was seen. */
4662 else if (!seen_sp_adjust)
4664 if (high_word == 0x3c01 || /* lui $at,n */
4665 high_word == 0x3c08) /* lui $t0,n */
4667 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
4670 else if (high_word == 0x3421 || /* ori $at,$at,n */
4671 high_word == 0x3508 || /* ori $t0,$t0,n */
4672 high_word == 0x3401 || /* ori $at,$zero,n */
4673 high_word == 0x3408) /* ori $t0,$zero,n */
4675 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
4685 /* In a frameless function, we might have incorrectly
4686 skipped some load immediate instructions. Undo the skipping
4687 if the load immediate was not followed by a stack adjustment. */
4688 if (load_immediate_bytes && !seen_sp_adjust)
4689 pc -= load_immediate_bytes;
4693 /* Skip the PC past function prologue instructions (16-bit version).
4694 This is a helper function for mips_skip_prologue. */
4697 mips16_skip_prologue (CORE_ADDR pc)
4700 int extend_bytes = 0;
4701 int prev_extend_bytes;
4703 /* Table of instructions likely to be found in a function prologue. */
4706 unsigned short inst;
4707 unsigned short mask;
4713 , /* addiu $sp,offset */
4716 , /* daddiu $sp,offset */
4719 , /* sw reg,n($sp) */
4722 , /* sd reg,n($sp) */
4725 , /* sw $ra,n($sp) */
4728 , /* sd $ra,n($sp) */
4734 , /* sw $a0-$a3,n($s1) */
4737 , /* move reg,$a0-$a3 */
4740 , /* entry pseudo-op */
4743 , /* addiu $s1,$sp,n */
4745 0, 0} /* end of table marker */
4748 /* Find an upper bound on the prologue. */
4749 end_pc = skip_prologue_using_sal (pc);
4751 end_pc = pc + 100; /* Magic. */
4753 /* Skip the typical prologue instructions. These are the stack adjustment
4754 instruction and the instructions that save registers on the stack
4755 or in the gcc frame. */
4756 for (; pc < end_pc; pc += MIPS16_INSTLEN)
4758 unsigned short inst;
4761 inst = mips_fetch_instruction (pc);
4763 /* Normally we ignore an extend instruction. However, if it is
4764 not followed by a valid prologue instruction, we must adjust
4765 the pc back over the extend so that it won't be considered
4766 part of the prologue. */
4767 if ((inst & 0xf800) == 0xf000) /* extend */
4769 extend_bytes = MIPS16_INSTLEN;
4772 prev_extend_bytes = extend_bytes;
4775 /* Check for other valid prologue instructions besides extend. */
4776 for (i = 0; table[i].mask != 0; i++)
4777 if ((inst & table[i].mask) == table[i].inst) /* found, get out */
4779 if (table[i].mask != 0) /* it was in table? */
4780 continue; /* ignore it */
4784 /* Return the current pc, adjusted backwards by 2 if
4785 the previous instruction was an extend. */
4786 return pc - prev_extend_bytes;
4792 /* To skip prologues, I use this predicate. Returns either PC itself
4793 if the code at PC does not look like a function prologue; otherwise
4794 returns an address that (if we're lucky) follows the prologue. If
4795 LENIENT, then we must skip everything which is involved in setting
4796 up the frame (it's OK to skip more, just so long as we don't skip
4797 anything which might clobber the registers which are being saved.
4798 We must skip more in the case where part of the prologue is in the
4799 delay slot of a non-prologue instruction). */
4802 mips_skip_prologue (CORE_ADDR pc)
4804 /* See if we can determine the end of the prologue via the symbol table.
4805 If so, then return either PC, or the PC after the prologue, whichever
4808 CORE_ADDR post_prologue_pc = after_prologue (pc, NULL);
4810 if (post_prologue_pc != 0)
4811 return max (pc, post_prologue_pc);
4813 /* Can't determine prologue from the symbol table, need to examine
4816 if (pc_is_mips16 (pc))
4817 return mips16_skip_prologue (pc);
4819 return mips32_skip_prologue (pc);
4822 /* Exported procedure: Is PC in the signal trampoline code */
4825 mips_pc_in_sigtramp (CORE_ADDR pc, char *ignore)
4827 if (sigtramp_address == 0)
4829 return (pc >= sigtramp_address && pc < sigtramp_end);
4832 /* Root of all "set mips "/"show mips " commands. This will eventually be
4833 used for all MIPS-specific commands. */
4836 show_mips_command (char *args, int from_tty)
4838 help_list (showmipscmdlist, "show mips ", all_commands, gdb_stdout);
4842 set_mips_command (char *args, int from_tty)
4845 ("\"set mips\" must be followed by an appropriate subcommand.\n");
4846 help_list (setmipscmdlist, "set mips ", all_commands, gdb_stdout);
4849 /* Commands to show/set the MIPS FPU type. */
4852 show_mipsfpu_command (char *args, int from_tty)
4855 switch (MIPS_FPU_TYPE)
4857 case MIPS_FPU_SINGLE:
4858 fpu = "single-precision";
4860 case MIPS_FPU_DOUBLE:
4861 fpu = "double-precision";
4864 fpu = "absent (none)";
4867 internal_error (__FILE__, __LINE__, "bad switch");
4869 if (mips_fpu_type_auto)
4871 ("The MIPS floating-point coprocessor is set automatically (currently %s)\n",
4875 ("The MIPS floating-point coprocessor is assumed to be %s\n", fpu);
4880 set_mipsfpu_command (char *args, int from_tty)
4883 ("\"set mipsfpu\" must be followed by \"double\", \"single\",\"none\" or \"auto\".\n");
4884 show_mipsfpu_command (args, from_tty);
4888 set_mipsfpu_single_command (char *args, int from_tty)
4890 struct gdbarch_info info;
4891 gdbarch_info_init (&info);
4892 mips_fpu_type = MIPS_FPU_SINGLE;
4893 mips_fpu_type_auto = 0;
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))
4898 internal_error (__FILE__, __LINE__, "set mipsfpu failed");
4902 set_mipsfpu_double_command (char *args, int from_tty)
4904 struct gdbarch_info info;
4905 gdbarch_info_init (&info);
4906 mips_fpu_type = MIPS_FPU_DOUBLE;
4907 mips_fpu_type_auto = 0;
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))
4912 internal_error (__FILE__, __LINE__, "set mipsfpu failed");
4916 set_mipsfpu_none_command (char *args, int from_tty)
4918 struct gdbarch_info info;
4919 gdbarch_info_init (&info);
4920 mips_fpu_type = MIPS_FPU_NONE;
4921 mips_fpu_type_auto = 0;
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))
4926 internal_error (__FILE__, __LINE__, "set mipsfpu failed");
4930 set_mipsfpu_auto_command (char *args, int from_tty)
4932 mips_fpu_type_auto = 1;
4935 /* Attempt to identify the particular processor model by reading the
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. */
4942 deprecated_mips_set_processor_regs_hack (void)
4944 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
4947 prid = read_register (PRID_REGNUM);
4949 if ((prid & ~0xf) == 0x700)
4950 tdep->mips_processor_reg_names = mips_r3041_reg_names;
4953 /* Just like reinit_frame_cache, but with the right arguments to be
4954 callable as an sfunc. */
4957 reinit_frame_cache_sfunc (char *args, int from_tty,
4958 struct cmd_list_element *c)
4960 reinit_frame_cache ();
4964 gdb_print_insn_mips (bfd_vma memaddr, struct disassemble_info *info)
4966 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
4967 mips_extra_func_info_t proc_desc;
4969 /* Search for the function containing this address. Set the low bit
4970 of the address when searching, in case we were given an even address
4971 that is the start of a 16-bit function. If we didn't do this,
4972 the search would fail because the symbol table says the function
4973 starts at an odd address, i.e. 1 byte past the given address. */
4974 memaddr = ADDR_BITS_REMOVE (memaddr);
4975 proc_desc = non_heuristic_proc_desc (make_mips16_addr (memaddr), NULL);
4977 /* Make an attempt to determine if this is a 16-bit function. If
4978 the procedure descriptor exists and the address therein is odd,
4979 it's definitely a 16-bit function. Otherwise, we have to just
4980 guess that if the address passed in is odd, it's 16-bits. */
4981 /* FIXME: cagney/2003-06-26: Is this even necessary? The
4982 disassembler needs to be able to locally determine the ISA, and
4983 not rely on GDB. Otherwize the stand-alone 'objdump -d' will not
4987 if (pc_is_mips16 (PROC_LOW_ADDR (proc_desc)))
4988 info->mach = bfd_mach_mips16;
4992 if (pc_is_mips16 (memaddr))
4993 info->mach = bfd_mach_mips16;
4996 /* Round down the instruction address to the appropriate boundary. */
4997 memaddr &= (info->mach == bfd_mach_mips16 ? ~1 : ~3);
4999 /* Set the disassembler options. */
5000 if (tdep->mips_abi == MIPS_ABI_N32 || tdep->mips_abi == MIPS_ABI_N64)
5002 /* Set up the disassembler info, so that we get the right
5003 register names from libopcodes. */
5004 if (tdep->mips_abi == MIPS_ABI_N32)
5005 info->disassembler_options = "gpr-names=n32";
5007 info->disassembler_options = "gpr-names=64";
5008 info->flavour = bfd_target_elf_flavour;
5011 /* This string is not recognized explicitly by the disassembler,
5012 but it tells the disassembler to not try to guess the ABI from
5013 the bfd elf headers, such that, if the user overrides the ABI
5014 of a program linked as NewABI, the disassembly will follow the
5015 register naming conventions specified by the user. */
5016 info->disassembler_options = "gpr-names=32";
5018 /* Call the appropriate disassembler based on the target endian-ness. */
5019 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
5020 return print_insn_big_mips (memaddr, info);
5022 return print_insn_little_mips (memaddr, info);
5025 /* This function implements the BREAKPOINT_FROM_PC macro. It uses the program
5026 counter value to determine whether a 16- or 32-bit breakpoint should be
5027 used. It returns a pointer to a string of bytes that encode a breakpoint
5028 instruction, stores the length of the string to *lenptr, and adjusts pc
5029 (if necessary) to point to the actual memory location where the
5030 breakpoint should be inserted. */
5032 static const unsigned char *
5033 mips_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
5035 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
5037 if (pc_is_mips16 (*pcptr))
5039 static unsigned char mips16_big_breakpoint[] = { 0xe8, 0xa5 };
5040 *pcptr = unmake_mips16_addr (*pcptr);
5041 *lenptr = sizeof (mips16_big_breakpoint);
5042 return mips16_big_breakpoint;
5046 /* The IDT board uses an unusual breakpoint value, and
5047 sometimes gets confused when it sees the usual MIPS
5048 breakpoint instruction. */
5049 static unsigned char big_breakpoint[] = { 0, 0x5, 0, 0xd };
5050 static unsigned char pmon_big_breakpoint[] = { 0, 0, 0, 0xd };
5051 static unsigned char idt_big_breakpoint[] = { 0, 0, 0x0a, 0xd };
5053 *lenptr = sizeof (big_breakpoint);
5055 if (strcmp (target_shortname, "mips") == 0)
5056 return idt_big_breakpoint;
5057 else if (strcmp (target_shortname, "ddb") == 0
5058 || strcmp (target_shortname, "pmon") == 0
5059 || strcmp (target_shortname, "lsi") == 0)
5060 return pmon_big_breakpoint;
5062 return big_breakpoint;
5067 if (pc_is_mips16 (*pcptr))
5069 static unsigned char mips16_little_breakpoint[] = { 0xa5, 0xe8 };
5070 *pcptr = unmake_mips16_addr (*pcptr);
5071 *lenptr = sizeof (mips16_little_breakpoint);
5072 return mips16_little_breakpoint;
5076 static unsigned char little_breakpoint[] = { 0xd, 0, 0x5, 0 };
5077 static unsigned char pmon_little_breakpoint[] = { 0xd, 0, 0, 0 };
5078 static unsigned char idt_little_breakpoint[] = { 0xd, 0x0a, 0, 0 };
5080 *lenptr = sizeof (little_breakpoint);
5082 if (strcmp (target_shortname, "mips") == 0)
5083 return idt_little_breakpoint;
5084 else if (strcmp (target_shortname, "ddb") == 0
5085 || strcmp (target_shortname, "pmon") == 0
5086 || strcmp (target_shortname, "lsi") == 0)
5087 return pmon_little_breakpoint;
5089 return little_breakpoint;
5094 /* If PC is in a mips16 call or return stub, return the address of the target
5095 PC, which is either the callee or the caller. There are several
5096 cases which must be handled:
5098 * If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
5099 target PC is in $31 ($ra).
5100 * If the PC is in __mips16_call_stub_{1..10}, this is a call stub
5101 and the target PC is in $2.
5102 * If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
5103 before the jal instruction, this is effectively a call stub
5104 and the the target PC is in $2. Otherwise this is effectively
5105 a return stub and the target PC is in $18.
5107 See the source code for the stubs in gcc/config/mips/mips16.S for
5110 This function implements the SKIP_TRAMPOLINE_CODE macro.
5114 mips_skip_stub (CORE_ADDR pc)
5117 CORE_ADDR start_addr;
5119 /* Find the starting address and name of the function containing the PC. */
5120 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
5123 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
5124 target PC is in $31 ($ra). */
5125 if (strcmp (name, "__mips16_ret_sf") == 0
5126 || strcmp (name, "__mips16_ret_df") == 0)
5127 return read_signed_register (RA_REGNUM);
5129 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
5131 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub
5132 and the target PC is in $2. */
5133 if (name[19] >= '0' && name[19] <= '9')
5134 return read_signed_register (2);
5136 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
5137 before the jal instruction, this is effectively a call stub
5138 and the the target PC is in $2. Otherwise this is effectively
5139 a return stub and the target PC is in $18. */
5140 else if (name[19] == 's' || name[19] == 'd')
5142 if (pc == start_addr)
5144 /* Check if the target of the stub is a compiler-generated
5145 stub. Such a stub for a function bar might have a name
5146 like __fn_stub_bar, and might look like this:
5151 la $1,bar (becomes a lui/addiu pair)
5153 So scan down to the lui/addi and extract the target
5154 address from those two instructions. */
5156 CORE_ADDR target_pc = read_signed_register (2);
5160 /* See if the name of the target function is __fn_stub_*. */
5161 if (find_pc_partial_function (target_pc, &name, NULL, NULL) ==
5164 if (strncmp (name, "__fn_stub_", 10) != 0
5165 && strcmp (name, "etext") != 0
5166 && strcmp (name, "_etext") != 0)
5169 /* Scan through this _fn_stub_ code for the lui/addiu pair.
5170 The limit on the search is arbitrarily set to 20
5171 instructions. FIXME. */
5172 for (i = 0, pc = 0; i < 20; i++, target_pc += MIPS_INSTLEN)
5174 inst = mips_fetch_instruction (target_pc);
5175 if ((inst & 0xffff0000) == 0x3c010000) /* lui $at */
5176 pc = (inst << 16) & 0xffff0000; /* high word */
5177 else if ((inst & 0xffff0000) == 0x24210000) /* addiu $at */
5178 return pc | (inst & 0xffff); /* low word */
5181 /* Couldn't find the lui/addui pair, so return stub address. */
5185 /* This is the 'return' part of a call stub. The return
5186 address is in $r18. */
5187 return read_signed_register (18);
5190 return 0; /* not a stub */
5194 /* Return non-zero if the PC is inside a call thunk (aka stub or trampoline).
5195 This implements the IN_SOLIB_CALL_TRAMPOLINE macro. */
5198 mips_in_call_stub (CORE_ADDR pc, char *name)
5200 CORE_ADDR start_addr;
5202 /* Find the starting address of the function containing the PC. If the
5203 caller didn't give us a name, look it up at the same time. */
5204 if (find_pc_partial_function (pc, name ? NULL : &name, &start_addr, NULL) ==
5208 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
5210 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub. */
5211 if (name[19] >= '0' && name[19] <= '9')
5213 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
5214 before the jal instruction, this is effectively a call stub. */
5215 else if (name[19] == 's' || name[19] == 'd')
5216 return pc == start_addr;
5219 return 0; /* not a stub */
5223 /* Return non-zero if the PC is inside a return thunk (aka stub or trampoline).
5224 This implements the IN_SOLIB_RETURN_TRAMPOLINE macro. */
5227 mips_in_return_stub (CORE_ADDR pc, char *name)
5229 CORE_ADDR start_addr;
5231 /* Find the starting address of the function containing the PC. */
5232 if (find_pc_partial_function (pc, NULL, &start_addr, NULL) == 0)
5235 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub. */
5236 if (strcmp (name, "__mips16_ret_sf") == 0
5237 || strcmp (name, "__mips16_ret_df") == 0)
5240 /* If the PC is in __mips16_call_stub_{s,d}f_{0..10} but not at the start,
5241 i.e. after the jal instruction, this is effectively a return stub. */
5242 if (strncmp (name, "__mips16_call_stub_", 19) == 0
5243 && (name[19] == 's' || name[19] == 'd') && pc != start_addr)
5246 return 0; /* not a stub */
5250 /* Return non-zero if the PC is in a library helper function that should
5251 be ignored. This implements the IGNORE_HELPER_CALL macro. */
5254 mips_ignore_helper (CORE_ADDR pc)
5258 /* Find the starting address and name of the function containing the PC. */
5259 if (find_pc_partial_function (pc, &name, NULL, NULL) == 0)
5262 /* If the PC is in __mips16_ret_{d,s}f, this is a library helper function
5263 that we want to ignore. */
5264 return (strcmp (name, "__mips16_ret_sf") == 0
5265 || strcmp (name, "__mips16_ret_df") == 0);
5269 /* Convert a dbx stab register number (from `r' declaration) to a GDB
5270 [1 * NUM_REGS .. 2 * NUM_REGS) REGNUM. */
5273 mips_stab_reg_to_regnum (int num)
5276 if (num >= 0 && num < 32)
5278 else if (num >= 38 && num < 70)
5279 regnum = num + mips_regnum (current_gdbarch)->fp0 - 38;
5281 regnum = mips_regnum (current_gdbarch)->hi;
5283 regnum = mips_regnum (current_gdbarch)->lo;
5285 /* This will hopefully (eventually) provoke a warning. Should
5286 we be calling complaint() here? */
5287 return NUM_REGS + NUM_PSEUDO_REGS;
5288 return NUM_REGS + regnum;
5292 /* Convert a dwarf, dwarf2, or ecoff register number to a GDB [1 *
5293 NUM_REGS .. 2 * NUM_REGS) REGNUM. */
5296 mips_dwarf_dwarf2_ecoff_reg_to_regnum (int num)
5299 if (num >= 0 && num < 32)
5301 else if (num >= 32 && num < 64)
5302 regnum = num + mips_regnum (current_gdbarch)->fp0 - 32;
5304 regnum = mips_regnum (current_gdbarch)->hi;
5306 regnum = mips_regnum (current_gdbarch)->lo;
5308 /* This will hopefully (eventually) provoke a warning. Should we
5309 be calling complaint() here? */
5310 return NUM_REGS + NUM_PSEUDO_REGS;
5311 return NUM_REGS + regnum;
5315 mips_register_sim_regno (int regnum)
5317 /* Only makes sense to supply raw registers. */
5318 gdb_assert (regnum >= 0 && regnum < NUM_REGS);
5319 /* FIXME: cagney/2002-05-13: Need to look at the pseudo register to
5320 decide if it is valid. Should instead define a standard sim/gdb
5321 register numbering scheme. */
5322 if (REGISTER_NAME (NUM_REGS + regnum) != NULL
5323 && REGISTER_NAME (NUM_REGS + regnum)[0] != '\0')
5326 return LEGACY_SIM_REGNO_IGNORE;
5330 /* Convert an integer into an address. By first converting the value
5331 into a pointer and then extracting it signed, the address is
5332 guarenteed to be correctly sign extended. */
5335 mips_integer_to_address (struct type *type, void *buf)
5337 char *tmp = alloca (TYPE_LENGTH (builtin_type_void_data_ptr));
5338 LONGEST val = unpack_long (type, buf);
5339 store_signed_integer (tmp, TYPE_LENGTH (builtin_type_void_data_ptr), val);
5340 return extract_signed_integer (tmp,
5341 TYPE_LENGTH (builtin_type_void_data_ptr));
5345 mips_find_abi_section (bfd *abfd, asection *sect, void *obj)
5347 enum mips_abi *abip = (enum mips_abi *) obj;
5348 const char *name = bfd_get_section_name (abfd, sect);
5350 if (*abip != MIPS_ABI_UNKNOWN)
5353 if (strncmp (name, ".mdebug.", 8) != 0)
5356 if (strcmp (name, ".mdebug.abi32") == 0)
5357 *abip = MIPS_ABI_O32;
5358 else if (strcmp (name, ".mdebug.abiN32") == 0)
5359 *abip = MIPS_ABI_N32;
5360 else if (strcmp (name, ".mdebug.abi64") == 0)
5361 *abip = MIPS_ABI_N64;
5362 else if (strcmp (name, ".mdebug.abiO64") == 0)
5363 *abip = MIPS_ABI_O64;
5364 else if (strcmp (name, ".mdebug.eabi32") == 0)
5365 *abip = MIPS_ABI_EABI32;
5366 else if (strcmp (name, ".mdebug.eabi64") == 0)
5367 *abip = MIPS_ABI_EABI64;
5369 warning ("unsupported ABI %s.", name + 8);
5372 static enum mips_abi
5373 global_mips_abi (void)
5377 for (i = 0; mips_abi_strings[i] != NULL; i++)
5378 if (mips_abi_strings[i] == mips_abi_string)
5379 return (enum mips_abi) i;
5381 internal_error (__FILE__, __LINE__, "unknown ABI string");
5384 static struct gdbarch *
5385 mips_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
5387 struct gdbarch *gdbarch;
5388 struct gdbarch_tdep *tdep;
5390 enum mips_abi mips_abi, found_abi, wanted_abi;
5392 enum mips_fpu_type fpu_type;
5394 /* First of all, extract the elf_flags, if available. */
5395 if (info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
5396 elf_flags = elf_elfheader (info.abfd)->e_flags;
5397 else if (arches != NULL)
5398 elf_flags = gdbarch_tdep (arches->gdbarch)->elf_flags;
5402 fprintf_unfiltered (gdb_stdlog,
5403 "mips_gdbarch_init: elf_flags = 0x%08x\n", elf_flags);
5405 /* Check ELF_FLAGS to see if it specifies the ABI being used. */
5406 switch ((elf_flags & EF_MIPS_ABI))
5408 case E_MIPS_ABI_O32:
5409 found_abi = MIPS_ABI_O32;
5411 case E_MIPS_ABI_O64:
5412 found_abi = MIPS_ABI_O64;
5414 case E_MIPS_ABI_EABI32:
5415 found_abi = MIPS_ABI_EABI32;
5417 case E_MIPS_ABI_EABI64:
5418 found_abi = MIPS_ABI_EABI64;
5421 if ((elf_flags & EF_MIPS_ABI2))
5422 found_abi = MIPS_ABI_N32;
5424 found_abi = MIPS_ABI_UNKNOWN;
5428 /* GCC creates a pseudo-section whose name describes the ABI. */
5429 if (found_abi == MIPS_ABI_UNKNOWN && info.abfd != NULL)
5430 bfd_map_over_sections (info.abfd, mips_find_abi_section, &found_abi);
5432 /* If we have no usefu BFD information, use the ABI from the last
5433 MIPS architecture (if there is one). */
5434 if (found_abi == MIPS_ABI_UNKNOWN && info.abfd == NULL && arches != NULL)
5435 found_abi = gdbarch_tdep (arches->gdbarch)->found_abi;
5437 /* Try the architecture for any hint of the correct ABI. */
5438 if (found_abi == MIPS_ABI_UNKNOWN
5439 && info.bfd_arch_info != NULL
5440 && info.bfd_arch_info->arch == bfd_arch_mips)
5442 switch (info.bfd_arch_info->mach)
5444 case bfd_mach_mips3900:
5445 found_abi = MIPS_ABI_EABI32;
5447 case bfd_mach_mips4100:
5448 case bfd_mach_mips5000:
5449 found_abi = MIPS_ABI_EABI64;
5451 case bfd_mach_mips8000:
5452 case bfd_mach_mips10000:
5453 /* On Irix, ELF64 executables use the N64 ABI. The
5454 pseudo-sections which describe the ABI aren't present
5455 on IRIX. (Even for executables created by gcc.) */
5456 if (bfd_get_flavour (info.abfd) == bfd_target_elf_flavour
5457 && elf_elfheader (info.abfd)->e_ident[EI_CLASS] == ELFCLASS64)
5458 found_abi = MIPS_ABI_N64;
5460 found_abi = MIPS_ABI_N32;
5466 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: found_abi = %d\n",
5469 /* What has the user specified from the command line? */
5470 wanted_abi = global_mips_abi ();
5472 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: wanted_abi = %d\n",
5475 /* Now that we have found what the ABI for this binary would be,
5476 check whether the user is overriding it. */
5477 if (wanted_abi != MIPS_ABI_UNKNOWN)
5478 mips_abi = wanted_abi;
5479 else if (found_abi != MIPS_ABI_UNKNOWN)
5480 mips_abi = found_abi;
5482 mips_abi = MIPS_ABI_O32;
5484 fprintf_unfiltered (gdb_stdlog, "mips_gdbarch_init: mips_abi = %d\n",
5487 /* Also used when doing an architecture lookup. */
5489 fprintf_unfiltered (gdb_stdlog,
5490 "mips_gdbarch_init: mips64_transfers_32bit_regs_p = %d\n",
5491 mips64_transfers_32bit_regs_p);
5493 /* Determine the MIPS FPU type. */
5494 if (!mips_fpu_type_auto)
5495 fpu_type = mips_fpu_type;
5496 else if (info.bfd_arch_info != NULL
5497 && info.bfd_arch_info->arch == bfd_arch_mips)
5498 switch (info.bfd_arch_info->mach)
5500 case bfd_mach_mips3900:
5501 case bfd_mach_mips4100:
5502 case bfd_mach_mips4111:
5503 fpu_type = MIPS_FPU_NONE;
5505 case bfd_mach_mips4650:
5506 fpu_type = MIPS_FPU_SINGLE;
5509 fpu_type = MIPS_FPU_DOUBLE;
5512 else if (arches != NULL)
5513 fpu_type = gdbarch_tdep (arches->gdbarch)->mips_fpu_type;
5515 fpu_type = MIPS_FPU_DOUBLE;
5517 fprintf_unfiltered (gdb_stdlog,
5518 "mips_gdbarch_init: fpu_type = %d\n", fpu_type);
5520 /* try to find a pre-existing architecture */
5521 for (arches = gdbarch_list_lookup_by_info (arches, &info);
5523 arches = gdbarch_list_lookup_by_info (arches->next, &info))
5525 /* MIPS needs to be pedantic about which ABI the object is
5527 if (gdbarch_tdep (arches->gdbarch)->elf_flags != elf_flags)
5529 if (gdbarch_tdep (arches->gdbarch)->mips_abi != mips_abi)
5531 /* Need to be pedantic about which register virtual size is
5533 if (gdbarch_tdep (arches->gdbarch)->mips64_transfers_32bit_regs_p
5534 != mips64_transfers_32bit_regs_p)
5536 /* Be pedantic about which FPU is selected. */
5537 if (gdbarch_tdep (arches->gdbarch)->mips_fpu_type != fpu_type)
5539 return arches->gdbarch;
5542 /* Need a new architecture. Fill in a target specific vector. */
5543 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
5544 gdbarch = gdbarch_alloc (&info, tdep);
5545 tdep->elf_flags = elf_flags;
5546 tdep->mips64_transfers_32bit_regs_p = mips64_transfers_32bit_regs_p;
5547 tdep->found_abi = found_abi;
5548 tdep->mips_abi = mips_abi;
5549 tdep->mips_fpu_type = fpu_type;
5551 /* Initially set everything according to the default ABI/ISA. */
5552 set_gdbarch_short_bit (gdbarch, 16);
5553 set_gdbarch_int_bit (gdbarch, 32);
5554 set_gdbarch_float_bit (gdbarch, 32);
5555 set_gdbarch_double_bit (gdbarch, 64);
5556 set_gdbarch_long_double_bit (gdbarch, 64);
5557 set_gdbarch_register_reggroup_p (gdbarch, mips_register_reggroup_p);
5558 set_gdbarch_pseudo_register_read (gdbarch, mips_pseudo_register_read);
5559 set_gdbarch_pseudo_register_write (gdbarch, mips_pseudo_register_write);
5561 set_gdbarch_elf_make_msymbol_special (gdbarch,
5562 mips_elf_make_msymbol_special);
5564 /* Fill in the OS dependant register numbers and names. */
5566 const char **reg_names;
5567 struct mips_regnum *regnum = GDBARCH_OBSTACK_ZALLOC (gdbarch,
5568 struct mips_regnum);
5569 if (info.osabi == GDB_OSABI_IRIX)
5574 regnum->badvaddr = 66;
5577 regnum->fp_control_status = 69;
5578 regnum->fp_implementation_revision = 70;
5580 reg_names = mips_irix_reg_names;
5584 regnum->lo = MIPS_EMBED_LO_REGNUM;
5585 regnum->hi = MIPS_EMBED_HI_REGNUM;
5586 regnum->badvaddr = MIPS_EMBED_BADVADDR_REGNUM;
5587 regnum->cause = MIPS_EMBED_CAUSE_REGNUM;
5588 regnum->pc = MIPS_EMBED_PC_REGNUM;
5589 regnum->fp0 = MIPS_EMBED_FP0_REGNUM;
5590 regnum->fp_control_status = 70;
5591 regnum->fp_implementation_revision = 71;
5593 if (info.bfd_arch_info != NULL
5594 && info.bfd_arch_info->mach == bfd_mach_mips3900)
5595 reg_names = mips_tx39_reg_names;
5597 reg_names = mips_generic_reg_names;
5599 /* FIXME: cagney/2003-11-15: For MIPS, hasn't PC_REGNUM been
5600 replaced by read_pc? */
5601 set_gdbarch_pc_regnum (gdbarch, regnum->pc);
5602 set_gdbarch_fp0_regnum (gdbarch, regnum->fp0);
5603 set_gdbarch_num_regs (gdbarch, num_regs);
5604 set_gdbarch_num_pseudo_regs (gdbarch, num_regs);
5605 set_gdbarch_register_name (gdbarch, mips_register_name);
5606 tdep->mips_processor_reg_names = reg_names;
5607 tdep->regnum = regnum;
5613 set_gdbarch_push_dummy_call (gdbarch, mips_o32_push_dummy_call);
5614 set_gdbarch_return_value (gdbarch, mips_o32_return_value);
5615 tdep->mips_default_saved_regsize = 4;
5616 tdep->mips_default_stack_argsize = 4;
5617 tdep->mips_fp_register_double = 0;
5618 tdep->mips_last_arg_regnum = A0_REGNUM + 4 - 1;
5619 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 4 - 1;
5620 tdep->default_mask_address_p = 0;
5621 set_gdbarch_long_bit (gdbarch, 32);
5622 set_gdbarch_ptr_bit (gdbarch, 32);
5623 set_gdbarch_long_long_bit (gdbarch, 64);
5626 set_gdbarch_push_dummy_call (gdbarch, mips_o64_push_dummy_call);
5627 set_gdbarch_deprecated_store_return_value (gdbarch,
5628 mips_o64_store_return_value);
5629 set_gdbarch_deprecated_extract_return_value (gdbarch,
5630 mips_o64_extract_return_value);
5631 tdep->mips_default_saved_regsize = 8;
5632 tdep->mips_default_stack_argsize = 8;
5633 tdep->mips_fp_register_double = 1;
5634 tdep->mips_last_arg_regnum = A0_REGNUM + 4 - 1;
5635 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 4 - 1;
5636 tdep->default_mask_address_p = 0;
5637 set_gdbarch_long_bit (gdbarch, 32);
5638 set_gdbarch_ptr_bit (gdbarch, 32);
5639 set_gdbarch_long_long_bit (gdbarch, 64);
5640 set_gdbarch_use_struct_convention (gdbarch,
5641 always_use_struct_convention);
5643 case MIPS_ABI_EABI32:
5644 set_gdbarch_push_dummy_call (gdbarch, mips_eabi_push_dummy_call);
5645 set_gdbarch_deprecated_store_return_value (gdbarch,
5646 mips_eabi_store_return_value);
5647 set_gdbarch_deprecated_extract_return_value (gdbarch,
5648 mips_eabi_extract_return_value);
5649 tdep->mips_default_saved_regsize = 4;
5650 tdep->mips_default_stack_argsize = 4;
5651 tdep->mips_fp_register_double = 0;
5652 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
5653 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
5654 tdep->default_mask_address_p = 0;
5655 set_gdbarch_long_bit (gdbarch, 32);
5656 set_gdbarch_ptr_bit (gdbarch, 32);
5657 set_gdbarch_long_long_bit (gdbarch, 64);
5658 set_gdbarch_deprecated_reg_struct_has_addr
5659 (gdbarch, mips_eabi_reg_struct_has_addr);
5660 set_gdbarch_use_struct_convention (gdbarch,
5661 mips_eabi_use_struct_convention);
5663 case MIPS_ABI_EABI64:
5664 set_gdbarch_push_dummy_call (gdbarch, mips_eabi_push_dummy_call);
5665 set_gdbarch_deprecated_store_return_value (gdbarch,
5666 mips_eabi_store_return_value);
5667 set_gdbarch_deprecated_extract_return_value (gdbarch,
5668 mips_eabi_extract_return_value);
5669 tdep->mips_default_saved_regsize = 8;
5670 tdep->mips_default_stack_argsize = 8;
5671 tdep->mips_fp_register_double = 1;
5672 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
5673 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
5674 tdep->default_mask_address_p = 0;
5675 set_gdbarch_long_bit (gdbarch, 64);
5676 set_gdbarch_ptr_bit (gdbarch, 64);
5677 set_gdbarch_long_long_bit (gdbarch, 64);
5678 set_gdbarch_deprecated_reg_struct_has_addr
5679 (gdbarch, mips_eabi_reg_struct_has_addr);
5680 set_gdbarch_use_struct_convention (gdbarch,
5681 mips_eabi_use_struct_convention);
5684 set_gdbarch_push_dummy_call (gdbarch, mips_n32n64_push_dummy_call);
5685 set_gdbarch_return_value (gdbarch, mips_n32n64_return_value);
5686 tdep->mips_default_saved_regsize = 8;
5687 tdep->mips_default_stack_argsize = 8;
5688 tdep->mips_fp_register_double = 1;
5689 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
5690 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
5691 tdep->default_mask_address_p = 0;
5692 set_gdbarch_long_bit (gdbarch, 32);
5693 set_gdbarch_ptr_bit (gdbarch, 32);
5694 set_gdbarch_long_long_bit (gdbarch, 64);
5697 set_gdbarch_push_dummy_call (gdbarch, mips_n32n64_push_dummy_call);
5698 set_gdbarch_return_value (gdbarch, mips_n32n64_return_value);
5699 tdep->mips_default_saved_regsize = 8;
5700 tdep->mips_default_stack_argsize = 8;
5701 tdep->mips_fp_register_double = 1;
5702 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
5703 tdep->mips_last_fp_arg_regnum = tdep->regnum->fp0 + 12 + 8 - 1;
5704 tdep->default_mask_address_p = 0;
5705 set_gdbarch_long_bit (gdbarch, 64);
5706 set_gdbarch_ptr_bit (gdbarch, 64);
5707 set_gdbarch_long_long_bit (gdbarch, 64);
5710 internal_error (__FILE__, __LINE__, "unknown ABI in switch");
5713 /* FIXME: jlarmour/2000-04-07: There *is* a flag EF_MIPS_32BIT_MODE
5714 that could indicate -gp32 BUT gas/config/tc-mips.c contains the
5717 ``We deliberately don't allow "-gp32" to set the MIPS_32BITMODE
5718 flag in object files because to do so would make it impossible to
5719 link with libraries compiled without "-gp32". This is
5720 unnecessarily restrictive.
5722 We could solve this problem by adding "-gp32" multilibs to gcc,
5723 but to set this flag before gcc is built with such multilibs will
5724 break too many systems.''
5726 But even more unhelpfully, the default linker output target for
5727 mips64-elf is elf32-bigmips, and has EF_MIPS_32BIT_MODE set, even
5728 for 64-bit programs - you need to change the ABI to change this,
5729 and not all gcc targets support that currently. Therefore using
5730 this flag to detect 32-bit mode would do the wrong thing given
5731 the current gcc - it would make GDB treat these 64-bit programs
5732 as 32-bit programs by default. */
5734 set_gdbarch_read_pc (gdbarch, mips_read_pc);
5735 set_gdbarch_write_pc (gdbarch, mips_write_pc);
5736 set_gdbarch_read_sp (gdbarch, mips_read_sp);
5738 /* Add/remove bits from an address. The MIPS needs be careful to
5739 ensure that all 32 bit addresses are sign extended to 64 bits. */
5740 set_gdbarch_addr_bits_remove (gdbarch, mips_addr_bits_remove);
5742 /* Unwind the frame. */
5743 set_gdbarch_unwind_pc (gdbarch, mips_unwind_pc);
5744 set_gdbarch_unwind_dummy_id (gdbarch, mips_unwind_dummy_id);
5746 /* Map debug register numbers onto internal register numbers. */
5747 set_gdbarch_stab_reg_to_regnum (gdbarch, mips_stab_reg_to_regnum);
5748 set_gdbarch_ecoff_reg_to_regnum (gdbarch,
5749 mips_dwarf_dwarf2_ecoff_reg_to_regnum);
5750 set_gdbarch_dwarf_reg_to_regnum (gdbarch,
5751 mips_dwarf_dwarf2_ecoff_reg_to_regnum);
5752 set_gdbarch_dwarf2_reg_to_regnum (gdbarch,
5753 mips_dwarf_dwarf2_ecoff_reg_to_regnum);
5754 set_gdbarch_register_sim_regno (gdbarch, mips_register_sim_regno);
5756 /* MIPS version of CALL_DUMMY */
5758 /* NOTE: cagney/2003-08-05: Eventually call dummy location will be
5759 replaced by a command, and all targets will default to on stack
5760 (regardless of the stack's execute status). */
5761 set_gdbarch_call_dummy_location (gdbarch, AT_SYMBOL);
5762 set_gdbarch_frame_align (gdbarch, mips_frame_align);
5764 set_gdbarch_convert_register_p (gdbarch, mips_convert_register_p);
5765 set_gdbarch_register_to_value (gdbarch, mips_register_to_value);
5766 set_gdbarch_value_to_register (gdbarch, mips_value_to_register);
5768 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
5769 set_gdbarch_breakpoint_from_pc (gdbarch, mips_breakpoint_from_pc);
5771 set_gdbarch_skip_prologue (gdbarch, mips_skip_prologue);
5773 set_gdbarch_pointer_to_address (gdbarch, signed_pointer_to_address);
5774 set_gdbarch_address_to_pointer (gdbarch, address_to_signed_pointer);
5775 set_gdbarch_integer_to_address (gdbarch, mips_integer_to_address);
5777 set_gdbarch_register_type (gdbarch, mips_register_type);
5779 set_gdbarch_print_registers_info (gdbarch, mips_print_registers_info);
5780 set_gdbarch_deprecated_pc_in_sigtramp (gdbarch, mips_pc_in_sigtramp);
5782 set_gdbarch_print_insn (gdbarch, gdb_print_insn_mips);
5784 /* FIXME: cagney/2003-08-29: The macros HAVE_STEPPABLE_WATCHPOINT,
5785 HAVE_NONSTEPPABLE_WATCHPOINT, and HAVE_CONTINUABLE_WATCHPOINT
5786 need to all be folded into the target vector. Since they are
5787 being used as guards for STOPPED_BY_WATCHPOINT, why not have
5788 STOPPED_BY_WATCHPOINT return the type of watchpoint that the code
5790 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
5792 set_gdbarch_skip_trampoline_code (gdbarch, mips_skip_stub);
5794 /* NOTE drow/2004-02-11: We overload the core solib trampoline code
5795 to support MIPS16. This is a bad thing. Make sure not to do it
5796 if we have an OS ABI that actually supports shared libraries, since
5797 shared library support is more important. If we have an OS someday
5798 that supports both shared libraries and MIPS16, we'll have to find
5799 a better place for these. */
5800 if (info.osabi == GDB_OSABI_UNKNOWN)
5802 set_gdbarch_in_solib_call_trampoline (gdbarch, mips_in_call_stub);
5803 set_gdbarch_in_solib_return_trampoline (gdbarch, mips_in_return_stub);
5806 /* Hook in OS ABI-specific overrides, if they have been registered. */
5807 gdbarch_init_osabi (info, gdbarch);
5809 /* Unwind the frame. */
5810 frame_unwind_append_sniffer (gdbarch, mips_mdebug_frame_sniffer);
5811 frame_base_append_sniffer (gdbarch, mips_mdebug_frame_base_sniffer);
5817 mips_abi_update (char *ignore_args, int from_tty, struct cmd_list_element *c)
5819 struct gdbarch_info info;
5821 /* Force the architecture to update, and (if it's a MIPS architecture)
5822 mips_gdbarch_init will take care of the rest. */
5823 gdbarch_info_init (&info);
5824 gdbarch_update_p (info);
5827 /* Print out which MIPS ABI is in use. */
5830 show_mips_abi (char *ignore_args, int from_tty)
5832 if (gdbarch_bfd_arch_info (current_gdbarch)->arch != bfd_arch_mips)
5834 ("The MIPS ABI is unknown because the current architecture is not MIPS.\n");
5837 enum mips_abi global_abi = global_mips_abi ();
5838 enum mips_abi actual_abi = mips_abi (current_gdbarch);
5839 const char *actual_abi_str = mips_abi_strings[actual_abi];
5841 if (global_abi == MIPS_ABI_UNKNOWN)
5843 ("The MIPS ABI is set automatically (currently \"%s\").\n",
5845 else if (global_abi == actual_abi)
5847 ("The MIPS ABI is assumed to be \"%s\" (due to user setting).\n",
5851 /* Probably shouldn't happen... */
5853 ("The (auto detected) MIPS ABI \"%s\" is in use even though the user setting was \"%s\".\n",
5854 actual_abi_str, mips_abi_strings[global_abi]);
5860 mips_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
5862 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
5866 int ef_mips_32bitmode;
5867 /* determine the ISA */
5868 switch (tdep->elf_flags & EF_MIPS_ARCH)
5886 /* determine the size of a pointer */
5887 ef_mips_32bitmode = (tdep->elf_flags & EF_MIPS_32BITMODE);
5888 fprintf_unfiltered (file,
5889 "mips_dump_tdep: tdep->elf_flags = 0x%x\n",
5891 fprintf_unfiltered (file,
5892 "mips_dump_tdep: ef_mips_32bitmode = %d\n",
5894 fprintf_unfiltered (file,
5895 "mips_dump_tdep: ef_mips_arch = %d\n",
5897 fprintf_unfiltered (file,
5898 "mips_dump_tdep: tdep->mips_abi = %d (%s)\n",
5899 tdep->mips_abi, mips_abi_strings[tdep->mips_abi]);
5900 fprintf_unfiltered (file,
5901 "mips_dump_tdep: mips_mask_address_p() %d (default %d)\n",
5902 mips_mask_address_p (tdep),
5903 tdep->default_mask_address_p);
5905 fprintf_unfiltered (file,
5906 "mips_dump_tdep: FP_REGISTER_DOUBLE = %d\n",
5907 FP_REGISTER_DOUBLE);
5908 fprintf_unfiltered (file,
5909 "mips_dump_tdep: MIPS_DEFAULT_FPU_TYPE = %d (%s)\n",
5910 MIPS_DEFAULT_FPU_TYPE,
5911 (MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_NONE ? "none"
5912 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_SINGLE ? "single"
5913 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_DOUBLE ? "double"
5915 fprintf_unfiltered (file, "mips_dump_tdep: MIPS_EABI = %d\n", MIPS_EABI);
5916 fprintf_unfiltered (file,
5917 "mips_dump_tdep: MIPS_FPU_TYPE = %d (%s)\n",
5919 (MIPS_FPU_TYPE == MIPS_FPU_NONE ? "none"
5920 : MIPS_FPU_TYPE == MIPS_FPU_SINGLE ? "single"
5921 : MIPS_FPU_TYPE == MIPS_FPU_DOUBLE ? "double"
5923 fprintf_unfiltered (file,
5924 "mips_dump_tdep: FP_REGISTER_DOUBLE = %d\n",
5925 FP_REGISTER_DOUBLE);
5926 fprintf_unfiltered (file,
5927 "mips_dump_tdep: mips_stack_argsize() = %d\n",
5928 mips_stack_argsize (tdep));
5929 fprintf_unfiltered (file, "mips_dump_tdep: A0_REGNUM = %d\n", A0_REGNUM);
5930 fprintf_unfiltered (file,
5931 "mips_dump_tdep: ADDR_BITS_REMOVE # %s\n",
5932 XSTRING (ADDR_BITS_REMOVE (ADDR)));
5933 fprintf_unfiltered (file,
5934 "mips_dump_tdep: ATTACH_DETACH # %s\n",
5935 XSTRING (ATTACH_DETACH));
5936 fprintf_unfiltered (file,
5937 "mips_dump_tdep: DWARF_REG_TO_REGNUM # %s\n",
5938 XSTRING (DWARF_REG_TO_REGNUM (REGNUM)));
5939 fprintf_unfiltered (file,
5940 "mips_dump_tdep: ECOFF_REG_TO_REGNUM # %s\n",
5941 XSTRING (ECOFF_REG_TO_REGNUM (REGNUM)));
5942 fprintf_unfiltered (file,
5943 "mips_dump_tdep: FIRST_EMBED_REGNUM = %d\n",
5944 FIRST_EMBED_REGNUM);
5945 fprintf_unfiltered (file,
5946 "mips_dump_tdep: IGNORE_HELPER_CALL # %s\n",
5947 XSTRING (IGNORE_HELPER_CALL (PC)));
5948 fprintf_unfiltered (file,
5949 "mips_dump_tdep: IN_SOLIB_CALL_TRAMPOLINE # %s\n",
5950 XSTRING (IN_SOLIB_CALL_TRAMPOLINE (PC, NAME)));
5951 fprintf_unfiltered (file,
5952 "mips_dump_tdep: IN_SOLIB_RETURN_TRAMPOLINE # %s\n",
5953 XSTRING (IN_SOLIB_RETURN_TRAMPOLINE (PC, NAME)));
5954 fprintf_unfiltered (file,
5955 "mips_dump_tdep: LAST_EMBED_REGNUM = %d\n",
5957 #ifdef MACHINE_CPROC_FP_OFFSET
5958 fprintf_unfiltered (file,
5959 "mips_dump_tdep: MACHINE_CPROC_FP_OFFSET = %d\n",
5960 MACHINE_CPROC_FP_OFFSET);
5962 #ifdef MACHINE_CPROC_PC_OFFSET
5963 fprintf_unfiltered (file,
5964 "mips_dump_tdep: MACHINE_CPROC_PC_OFFSET = %d\n",
5965 MACHINE_CPROC_PC_OFFSET);
5967 #ifdef MACHINE_CPROC_SP_OFFSET
5968 fprintf_unfiltered (file,
5969 "mips_dump_tdep: MACHINE_CPROC_SP_OFFSET = %d\n",
5970 MACHINE_CPROC_SP_OFFSET);
5972 fprintf_unfiltered (file,
5973 "mips_dump_tdep: MIPS16_INSTLEN = %d\n",
5975 fprintf_unfiltered (file, "mips_dump_tdep: MIPS_DEFAULT_ABI = FIXME!\n");
5976 fprintf_unfiltered (file,
5977 "mips_dump_tdep: MIPS_EFI_SYMBOL_NAME = multi-arch!!\n");
5978 fprintf_unfiltered (file,
5979 "mips_dump_tdep: MIPS_INSTLEN = %d\n", MIPS_INSTLEN);
5980 fprintf_unfiltered (file,
5981 "mips_dump_tdep: MIPS_LAST_ARG_REGNUM = %d (%d regs)\n",
5982 MIPS_LAST_ARG_REGNUM,
5983 MIPS_LAST_ARG_REGNUM - A0_REGNUM + 1);
5984 fprintf_unfiltered (file,
5985 "mips_dump_tdep: MIPS_NUMREGS = %d\n", MIPS_NUMREGS);
5986 fprintf_unfiltered (file,
5987 "mips_dump_tdep: mips_saved_regsize() = %d\n",
5988 mips_saved_regsize (tdep));
5989 fprintf_unfiltered (file,
5990 "mips_dump_tdep: PRID_REGNUM = %d\n", PRID_REGNUM);
5991 fprintf_unfiltered (file,
5992 "mips_dump_tdep: PROC_DESC_IS_DUMMY = function?\n");
5993 fprintf_unfiltered (file,
5994 "mips_dump_tdep: PROC_FRAME_ADJUST = function?\n");
5995 fprintf_unfiltered (file,
5996 "mips_dump_tdep: PROC_FRAME_OFFSET = function?\n");
5997 fprintf_unfiltered (file, "mips_dump_tdep: PROC_FRAME_REG = function?\n");
5998 fprintf_unfiltered (file, "mips_dump_tdep: PROC_FREG_MASK = function?\n");
5999 fprintf_unfiltered (file, "mips_dump_tdep: PROC_FREG_OFFSET = function?\n");
6000 fprintf_unfiltered (file, "mips_dump_tdep: PROC_HIGH_ADDR = function?\n");
6001 fprintf_unfiltered (file, "mips_dump_tdep: PROC_LOW_ADDR = function?\n");
6002 fprintf_unfiltered (file, "mips_dump_tdep: PROC_PC_REG = function?\n");
6003 fprintf_unfiltered (file, "mips_dump_tdep: PROC_REG_MASK = function?\n");
6004 fprintf_unfiltered (file, "mips_dump_tdep: PROC_REG_OFFSET = function?\n");
6005 fprintf_unfiltered (file, "mips_dump_tdep: PROC_SYMBOL = function?\n");
6006 fprintf_unfiltered (file, "mips_dump_tdep: PS_REGNUM = %d\n", PS_REGNUM);
6007 fprintf_unfiltered (file, "mips_dump_tdep: RA_REGNUM = %d\n", RA_REGNUM);
6009 fprintf_unfiltered (file,
6010 "mips_dump_tdep: SAVED_BYTES = %d\n", SAVED_BYTES);
6013 fprintf_unfiltered (file, "mips_dump_tdep: SAVED_FP = %d\n", SAVED_FP);
6016 fprintf_unfiltered (file, "mips_dump_tdep: SAVED_PC = %d\n", SAVED_PC);
6018 fprintf_unfiltered (file,
6019 "mips_dump_tdep: SETUP_ARBITRARY_FRAME # %s\n",
6020 XSTRING (SETUP_ARBITRARY_FRAME (NUMARGS, ARGS)));
6021 fprintf_unfiltered (file,
6022 "mips_dump_tdep: SET_PROC_DESC_IS_DUMMY = function?\n");
6023 fprintf_unfiltered (file,
6024 "mips_dump_tdep: SKIP_TRAMPOLINE_CODE # %s\n",
6025 XSTRING (SKIP_TRAMPOLINE_CODE (PC)));
6026 fprintf_unfiltered (file,
6027 "mips_dump_tdep: SOFTWARE_SINGLE_STEP # %s\n",
6028 XSTRING (SOFTWARE_SINGLE_STEP (SIG, BP_P)));
6029 fprintf_unfiltered (file,
6030 "mips_dump_tdep: SOFTWARE_SINGLE_STEP_P () = %d\n",
6031 SOFTWARE_SINGLE_STEP_P ());
6032 fprintf_unfiltered (file,
6033 "mips_dump_tdep: STAB_REG_TO_REGNUM # %s\n",
6034 XSTRING (STAB_REG_TO_REGNUM (REGNUM)));
6035 #ifdef STACK_END_ADDR
6036 fprintf_unfiltered (file,
6037 "mips_dump_tdep: STACK_END_ADDR = %d\n",
6040 fprintf_unfiltered (file,
6041 "mips_dump_tdep: STEP_SKIPS_DELAY # %s\n",
6042 XSTRING (STEP_SKIPS_DELAY (PC)));
6043 fprintf_unfiltered (file,
6044 "mips_dump_tdep: STEP_SKIPS_DELAY_P = %d\n",
6045 STEP_SKIPS_DELAY_P);
6046 fprintf_unfiltered (file,
6047 "mips_dump_tdep: STOPPED_BY_WATCHPOINT # %s\n",
6048 XSTRING (STOPPED_BY_WATCHPOINT (WS)));
6049 fprintf_unfiltered (file, "mips_dump_tdep: T9_REGNUM = %d\n", T9_REGNUM);
6050 fprintf_unfiltered (file,
6051 "mips_dump_tdep: TABULAR_REGISTER_OUTPUT = used?\n");
6052 fprintf_unfiltered (file,
6053 "mips_dump_tdep: TARGET_CAN_USE_HARDWARE_WATCHPOINT # %s\n",
6054 XSTRING (TARGET_CAN_USE_HARDWARE_WATCHPOINT
6055 (TYPE, CNT, OTHERTYPE)));
6056 fprintf_unfiltered (file,
6057 "mips_dump_tdep: TARGET_HAS_HARDWARE_WATCHPOINTS # %s\n",
6058 XSTRING (TARGET_HAS_HARDWARE_WATCHPOINTS));
6060 fprintf_unfiltered (file,
6061 "mips_dump_tdep: TRACE_CLEAR # %s\n",
6062 XSTRING (TRACE_CLEAR (THREAD, STATE)));
6065 fprintf_unfiltered (file,
6066 "mips_dump_tdep: TRACE_FLAVOR = %d\n", TRACE_FLAVOR);
6068 #ifdef TRACE_FLAVOR_SIZE
6069 fprintf_unfiltered (file,
6070 "mips_dump_tdep: TRACE_FLAVOR_SIZE = %d\n",
6074 fprintf_unfiltered (file,
6075 "mips_dump_tdep: TRACE_SET # %s\n",
6076 XSTRING (TRACE_SET (X, STATE)));
6078 #ifdef UNUSED_REGNUM
6079 fprintf_unfiltered (file,
6080 "mips_dump_tdep: UNUSED_REGNUM = %d\n", UNUSED_REGNUM);
6082 fprintf_unfiltered (file, "mips_dump_tdep: V0_REGNUM = %d\n", V0_REGNUM);
6083 fprintf_unfiltered (file,
6084 "mips_dump_tdep: VM_MIN_ADDRESS = %ld\n",
6085 (long) VM_MIN_ADDRESS);
6086 fprintf_unfiltered (file,
6087 "mips_dump_tdep: ZERO_REGNUM = %d\n", ZERO_REGNUM);
6088 fprintf_unfiltered (file,
6089 "mips_dump_tdep: _PROC_MAGIC_ = %d\n", _PROC_MAGIC_);
6092 extern initialize_file_ftype _initialize_mips_tdep; /* -Wmissing-prototypes */
6095 _initialize_mips_tdep (void)
6097 static struct cmd_list_element *mipsfpulist = NULL;
6098 struct cmd_list_element *c;
6100 mips_abi_string = mips_abi_strings[MIPS_ABI_UNKNOWN];
6101 if (MIPS_ABI_LAST + 1
6102 != sizeof (mips_abi_strings) / sizeof (mips_abi_strings[0]))
6103 internal_error (__FILE__, __LINE__, "mips_abi_strings out of sync");
6105 gdbarch_register (bfd_arch_mips, mips_gdbarch_init, mips_dump_tdep);
6107 /* Add root prefix command for all "set mips"/"show mips" commands */
6108 add_prefix_cmd ("mips", no_class, set_mips_command,
6109 "Various MIPS specific commands.",
6110 &setmipscmdlist, "set mips ", 0, &setlist);
6112 add_prefix_cmd ("mips", no_class, show_mips_command,
6113 "Various MIPS specific commands.",
6114 &showmipscmdlist, "show mips ", 0, &showlist);
6116 /* Allow the user to override the saved register size. */
6117 add_show_from_set (add_set_enum_cmd ("saved-gpreg-size",
6120 &mips_saved_regsize_string, "\
6121 Set size of general purpose registers saved on the stack.\n\
6122 This option can be set to one of:\n\
6123 32 - Force GDB to treat saved GP registers as 32-bit\n\
6124 64 - Force GDB to treat saved GP registers as 64-bit\n\
6125 auto - Allow GDB to use the target's default setting or autodetect the\n\
6126 saved GP register size from information contained in the executable.\n\
6127 (default: auto)", &setmipscmdlist), &showmipscmdlist);
6129 /* Allow the user to override the argument stack size. */
6130 add_show_from_set (add_set_enum_cmd ("stack-arg-size",
6133 &mips_stack_argsize_string, "\
6134 Set the amount of stack space reserved for each argument.\n\
6135 This option can be set to one of:\n\
6136 32 - Force GDB to allocate 32-bit chunks per argument\n\
6137 64 - Force GDB to allocate 64-bit chunks per argument\n\
6138 auto - Allow GDB to determine the correct setting from the current\n\
6139 target and executable (default)", &setmipscmdlist), &showmipscmdlist);
6141 /* Allow the user to override the ABI. */
6142 c = add_set_enum_cmd
6143 ("abi", class_obscure, mips_abi_strings, &mips_abi_string,
6144 "Set the ABI used by this program.\n"
6145 "This option can be set to one of:\n"
6146 " auto - the default ABI associated with the current binary\n"
6148 " o64\n" " n32\n" " n64\n" " eabi32\n" " eabi64", &setmipscmdlist);
6149 set_cmd_sfunc (c, mips_abi_update);
6150 add_cmd ("abi", class_obscure, show_mips_abi,
6151 "Show ABI in use by MIPS target", &showmipscmdlist);
6153 /* Let the user turn off floating point and set the fence post for
6154 heuristic_proc_start. */
6156 add_prefix_cmd ("mipsfpu", class_support, set_mipsfpu_command,
6157 "Set use of MIPS floating-point coprocessor.",
6158 &mipsfpulist, "set mipsfpu ", 0, &setlist);
6159 add_cmd ("single", class_support, set_mipsfpu_single_command,
6160 "Select single-precision MIPS floating-point coprocessor.",
6162 add_cmd ("double", class_support, set_mipsfpu_double_command,
6163 "Select double-precision MIPS floating-point coprocessor.",
6165 add_alias_cmd ("on", "double", class_support, 1, &mipsfpulist);
6166 add_alias_cmd ("yes", "double", class_support, 1, &mipsfpulist);
6167 add_alias_cmd ("1", "double", class_support, 1, &mipsfpulist);
6168 add_cmd ("none", class_support, set_mipsfpu_none_command,
6169 "Select no MIPS floating-point coprocessor.", &mipsfpulist);
6170 add_alias_cmd ("off", "none", class_support, 1, &mipsfpulist);
6171 add_alias_cmd ("no", "none", class_support, 1, &mipsfpulist);
6172 add_alias_cmd ("0", "none", class_support, 1, &mipsfpulist);
6173 add_cmd ("auto", class_support, set_mipsfpu_auto_command,
6174 "Select MIPS floating-point coprocessor automatically.",
6176 add_cmd ("mipsfpu", class_support, show_mipsfpu_command,
6177 "Show current use of MIPS floating-point coprocessor target.",
6180 /* We really would like to have both "0" and "unlimited" work, but
6181 command.c doesn't deal with that. So make it a var_zinteger
6182 because the user can always use "999999" or some such for unlimited. */
6183 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
6184 (char *) &heuristic_fence_post, "\
6185 Set the distance searched for the start of a function.\n\
6186 If you are debugging a stripped executable, GDB needs to search through the\n\
6187 program for the start of a function. This command sets the distance of the\n\
6188 search. The only need to set it is when debugging a stripped executable.", &setlist);
6189 /* We need to throw away the frame cache when we set this, since it
6190 might change our ability to get backtraces. */
6191 set_cmd_sfunc (c, reinit_frame_cache_sfunc);
6192 add_show_from_set (c, &showlist);
6194 /* Allow the user to control whether the upper bits of 64-bit
6195 addresses should be zeroed. */
6196 add_setshow_auto_boolean_cmd ("mask-address", no_class, &mask_address_var, "\
6197 Set zeroing of upper 32 bits of 64-bit addresses.\n\
6198 Use \"on\" to enable the masking, \"off\" to disable it and \"auto\" to \n\
6199 allow GDB to determine the correct value.\n", "\
6200 Show zeroing of upper 32 bits of 64-bit addresses.",
6201 NULL, show_mask_address, &setmipscmdlist, &showmipscmdlist);
6203 /* Allow the user to control the size of 32 bit registers within the
6204 raw remote packet. */
6205 add_setshow_cmd ("remote-mips64-transfers-32bit-regs", class_obscure,
6206 var_boolean, &mips64_transfers_32bit_regs_p, "\
6207 Set compatibility with 64-bit MIPS targets that transfer 32-bit quantities.\n\
6208 Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\
6209 that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
6210 64 bits for others. Use \"off\" to disable compatibility mode", "\
6211 Show compatibility with 64-bit MIPS targets that transfer 32-bit quantities.\n\
6212 Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\
6213 that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
6214 64 bits for others. Use \"off\" to disable compatibility mode", set_mips64_transfers_32bit_regs, NULL, &setlist, &showlist);
6216 /* Debug this files internals. */
6217 add_show_from_set (add_set_cmd ("mips", class_maintenance, var_zinteger,
6218 &mips_debug, "Set mips debugging.\n\
6219 When non-zero, mips specific debugging is enabled.", &setdebuglist), &showdebuglist);