1 /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
5 Free Software Foundation, Inc.
7 Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
8 and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
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., 51 Franklin Street, Fifth Floor,
25 Boston, MA 02110-1301, 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 #include "floatformat.h"
59 static const struct objfile_data
*mips_pdr_data
;
61 static struct type
*mips_register_type (struct gdbarch
*gdbarch
, int regnum
);
63 /* A useful bit in the CP0 status register (MIPS_PS_REGNUM). */
64 /* This bit is set if we are emulating 32-bit FPRs on a 64-bit chip. */
65 #define ST0_FR (1 << 26)
67 /* The sizes of floating point registers. */
71 MIPS_FPU_SINGLE_REGSIZE
= 4,
72 MIPS_FPU_DOUBLE_REGSIZE
= 8
76 static const char *mips_abi_string
;
78 static const char *mips_abi_strings
[] = {
89 /* Various MIPS ISA options (related to stack analysis) can be
90 overridden dynamically. Establish an enum/array for managing
93 static const char size_auto
[] = "auto";
94 static const char size_32
[] = "32";
95 static const char size_64
[] = "64";
97 static const char *size_enums
[] = {
104 /* Some MIPS boards don't support floating point while others only
105 support single-precision floating-point operations. */
109 MIPS_FPU_DOUBLE
, /* Full double precision floating point. */
110 MIPS_FPU_SINGLE
, /* Single precision floating point (R4650). */
111 MIPS_FPU_NONE
/* No floating point. */
114 #ifndef MIPS_DEFAULT_FPU_TYPE
115 #define MIPS_DEFAULT_FPU_TYPE MIPS_FPU_DOUBLE
117 static int mips_fpu_type_auto
= 1;
118 static enum mips_fpu_type mips_fpu_type
= MIPS_DEFAULT_FPU_TYPE
;
120 static int mips_debug
= 0;
122 /* MIPS specific per-architecture information */
125 /* from the elf header */
129 enum mips_abi mips_abi
;
130 enum mips_abi found_abi
;
131 enum mips_fpu_type mips_fpu_type
;
132 int mips_last_arg_regnum
;
133 int mips_last_fp_arg_regnum
;
134 int default_mask_address_p
;
135 /* Is the target using 64-bit raw integer registers but only
136 storing a left-aligned 32-bit value in each? */
137 int mips64_transfers_32bit_regs_p
;
138 /* Indexes for various registers. IRIX and embedded have
139 different values. This contains the "public" fields. Don't
140 add any that do not need to be public. */
141 const struct mips_regnum
*regnum
;
142 /* Register names table for the current register set. */
143 const char **mips_processor_reg_names
;
147 n32n64_floatformat_always_valid (const struct floatformat
*fmt
,
153 /* FIXME: brobecker/2004-08-08: Long Double values are 128 bit long.
154 They are implemented as a pair of 64bit doubles where the high
155 part holds the result of the operation rounded to double, and
156 the low double holds the difference between the exact result and
157 the rounded result. So "high" + "low" contains the result with
158 added precision. Unfortunately, the floatformat structure used
159 by GDB is not powerful enough to describe this format. As a temporary
160 measure, we define a 128bit floatformat that only uses the high part.
161 We lose a bit of precision but that's probably the best we can do
162 for now with the current infrastructure. */
164 static const struct floatformat floatformat_n32n64_long_double_big
=
166 floatformat_big
, 128, 0, 1, 11, 1023, 2047, 12, 52,
167 floatformat_intbit_no
,
168 "floatformat_ieee_double_big",
169 n32n64_floatformat_always_valid
172 const struct mips_regnum
*
173 mips_regnum (struct gdbarch
*gdbarch
)
175 return gdbarch_tdep (gdbarch
)->regnum
;
179 mips_fpa0_regnum (struct gdbarch
*gdbarch
)
181 return mips_regnum (gdbarch
)->fp0
+ 12;
184 #define MIPS_EABI (gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI32 \
185 || gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI64)
187 #define MIPS_LAST_FP_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_fp_arg_regnum)
189 #define MIPS_LAST_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_arg_regnum)
191 #define MIPS_FPU_TYPE (gdbarch_tdep (current_gdbarch)->mips_fpu_type)
193 /* MIPS16 function addresses are odd (bit 0 is set). Here are some
194 functions to test, set, or clear bit 0 of addresses. */
197 is_mips16_addr (CORE_ADDR addr
)
203 unmake_mips16_addr (CORE_ADDR addr
)
205 return ((addr
) & ~(CORE_ADDR
) 1);
208 /* Return the contents of register REGNUM as a signed integer. */
211 read_signed_register (int regnum
)
214 regcache_cooked_read_signed (current_regcache
, regnum
, &val
);
219 read_signed_register_pid (int regnum
, ptid_t ptid
)
224 if (ptid_equal (ptid
, inferior_ptid
))
225 return read_signed_register (regnum
);
227 save_ptid
= inferior_ptid
;
229 inferior_ptid
= ptid
;
231 retval
= read_signed_register (regnum
);
233 inferior_ptid
= save_ptid
;
238 /* Return the MIPS ABI associated with GDBARCH. */
240 mips_abi (struct gdbarch
*gdbarch
)
242 return gdbarch_tdep (gdbarch
)->mips_abi
;
246 mips_isa_regsize (struct gdbarch
*gdbarch
)
248 return (gdbarch_bfd_arch_info (gdbarch
)->bits_per_word
249 / gdbarch_bfd_arch_info (gdbarch
)->bits_per_byte
);
252 /* Return the currently configured (or set) saved register size. */
254 static const char *mips_abi_regsize_string
= size_auto
;
257 mips_abi_regsize (struct gdbarch
*gdbarch
)
259 if (mips_abi_regsize_string
== size_auto
)
260 switch (mips_abi (gdbarch
))
262 case MIPS_ABI_EABI32
:
268 case MIPS_ABI_EABI64
:
270 case MIPS_ABI_UNKNOWN
:
273 internal_error (__FILE__
, __LINE__
, _("bad switch"));
275 else if (mips_abi_regsize_string
== size_64
)
277 else /* if (mips_abi_regsize_string == size_32) */
281 /* Functions for setting and testing a bit in a minimal symbol that
282 marks it as 16-bit function. The MSB of the minimal symbol's
283 "info" field is used for this purpose.
285 ELF_MAKE_MSYMBOL_SPECIAL tests whether an ELF symbol is "special",
286 i.e. refers to a 16-bit function, and sets a "special" bit in a
287 minimal symbol to mark it as a 16-bit function
289 MSYMBOL_IS_SPECIAL tests the "special" bit in a minimal symbol */
292 mips_elf_make_msymbol_special (asymbol
* sym
, struct minimal_symbol
*msym
)
294 if (((elf_symbol_type
*) (sym
))->internal_elf_sym
.st_other
== STO_MIPS16
)
296 MSYMBOL_INFO (msym
) = (char *)
297 (((long) MSYMBOL_INFO (msym
)) | 0x80000000);
298 SYMBOL_VALUE_ADDRESS (msym
) |= 1;
303 msymbol_is_special (struct minimal_symbol
*msym
)
305 return (((long) MSYMBOL_INFO (msym
) & 0x80000000) != 0);
308 /* XFER a value from the big/little/left end of the register.
309 Depending on the size of the value it might occupy the entire
310 register or just part of it. Make an allowance for this, aligning
311 things accordingly. */
314 mips_xfer_register (struct regcache
*regcache
, int reg_num
, int length
,
315 enum bfd_endian endian
, gdb_byte
*in
,
316 const gdb_byte
*out
, int buf_offset
)
319 gdb_assert (reg_num
>= NUM_REGS
);
320 /* Need to transfer the left or right part of the register, based on
321 the targets byte order. */
325 reg_offset
= register_size (current_gdbarch
, reg_num
) - length
;
327 case BFD_ENDIAN_LITTLE
:
330 case BFD_ENDIAN_UNKNOWN
: /* Indicates no alignment. */
334 internal_error (__FILE__
, __LINE__
, _("bad switch"));
337 fprintf_unfiltered (gdb_stderr
,
338 "xfer $%d, reg offset %d, buf offset %d, length %d, ",
339 reg_num
, reg_offset
, buf_offset
, length
);
340 if (mips_debug
&& out
!= NULL
)
343 fprintf_unfiltered (gdb_stdlog
, "out ");
344 for (i
= 0; i
< length
; i
++)
345 fprintf_unfiltered (gdb_stdlog
, "%02x", out
[buf_offset
+ i
]);
348 regcache_cooked_read_part (regcache
, reg_num
, reg_offset
, length
,
351 regcache_cooked_write_part (regcache
, reg_num
, reg_offset
, length
,
353 if (mips_debug
&& in
!= NULL
)
356 fprintf_unfiltered (gdb_stdlog
, "in ");
357 for (i
= 0; i
< length
; i
++)
358 fprintf_unfiltered (gdb_stdlog
, "%02x", in
[buf_offset
+ i
]);
361 fprintf_unfiltered (gdb_stdlog
, "\n");
364 /* Determine if a MIPS3 or later cpu is operating in MIPS{1,2} FPU
365 compatiblity mode. A return value of 1 means that we have
366 physical 64-bit registers, but should treat them as 32-bit registers. */
369 mips2_fp_compat (void)
371 /* MIPS1 and MIPS2 have only 32 bit FPRs, and the FR bit is not
373 if (register_size (current_gdbarch
, mips_regnum (current_gdbarch
)->fp0
) ==
378 /* FIXME drow 2002-03-10: This is disabled until we can do it consistently,
379 in all the places we deal with FP registers. PR gdb/413. */
380 /* Otherwise check the FR bit in the status register - it controls
381 the FP compatiblity mode. If it is clear we are in compatibility
383 if ((read_register (MIPS_PS_REGNUM
) & ST0_FR
) == 0)
390 /* The amount of space reserved on the stack for registers. This is
391 different to MIPS_ABI_REGSIZE as it determines the alignment of
392 data allocated after the registers have run out. */
394 static const char *mips_stack_argsize_string
= size_auto
;
397 mips_stack_argsize (struct gdbarch
*gdbarch
)
399 if (mips_stack_argsize_string
== size_auto
)
400 return mips_abi_regsize (gdbarch
);
401 else if (mips_stack_argsize_string
== size_64
)
403 else /* if (mips_stack_argsize_string == size_32) */
407 #define VM_MIN_ADDRESS (CORE_ADDR)0x400000
409 static CORE_ADDR
heuristic_proc_start (CORE_ADDR
);
411 static CORE_ADDR
read_next_frame_reg (struct frame_info
*, int);
413 static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element
*);
415 static struct type
*mips_float_register_type (void);
416 static struct type
*mips_double_register_type (void);
418 /* The list of available "set mips " and "show mips " commands */
420 static struct cmd_list_element
*setmipscmdlist
= NULL
;
421 static struct cmd_list_element
*showmipscmdlist
= NULL
;
423 /* Integer registers 0 thru 31 are handled explicitly by
424 mips_register_name(). Processor specific registers 32 and above
425 are listed in the followign tables. */
428 { NUM_MIPS_PROCESSOR_REGS
= (90 - 32) };
432 static const char *mips_generic_reg_names
[NUM_MIPS_PROCESSOR_REGS
] = {
433 "sr", "lo", "hi", "bad", "cause", "pc",
434 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
435 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
436 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
437 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
438 "fsr", "fir", "" /*"fp" */ , "",
439 "", "", "", "", "", "", "", "",
440 "", "", "", "", "", "", "", "",
443 /* Names of IDT R3041 registers. */
445 static const char *mips_r3041_reg_names
[] = {
446 "sr", "lo", "hi", "bad", "cause", "pc",
447 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
448 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
449 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
450 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
451 "fsr", "fir", "", /*"fp" */ "",
452 "", "", "bus", "ccfg", "", "", "", "",
453 "", "", "port", "cmp", "", "", "epc", "prid",
456 /* Names of tx39 registers. */
458 static const char *mips_tx39_reg_names
[NUM_MIPS_PROCESSOR_REGS
] = {
459 "sr", "lo", "hi", "bad", "cause", "pc",
460 "", "", "", "", "", "", "", "",
461 "", "", "", "", "", "", "", "",
462 "", "", "", "", "", "", "", "",
463 "", "", "", "", "", "", "", "",
465 "", "", "", "", "", "", "", "",
466 "", "", "config", "cache", "debug", "depc", "epc", ""
469 /* Names of IRIX registers. */
470 static const char *mips_irix_reg_names
[NUM_MIPS_PROCESSOR_REGS
] = {
471 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
472 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
473 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
474 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
475 "pc", "cause", "bad", "hi", "lo", "fsr", "fir"
479 /* Return the name of the register corresponding to REGNO. */
481 mips_register_name (int regno
)
483 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
484 /* GPR names for all ABIs other than n32/n64. */
485 static char *mips_gpr_names
[] = {
486 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
487 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
488 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
489 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
492 /* GPR names for n32 and n64 ABIs. */
493 static char *mips_n32_n64_gpr_names
[] = {
494 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
495 "a4", "a5", "a6", "a7", "t0", "t1", "t2", "t3",
496 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
497 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra"
500 enum mips_abi abi
= mips_abi (current_gdbarch
);
502 /* Map [NUM_REGS .. 2*NUM_REGS) onto the raw registers, but then
503 don't make the raw register names visible. */
504 int rawnum
= regno
% NUM_REGS
;
505 if (regno
< NUM_REGS
)
508 /* The MIPS integer registers are always mapped from 0 to 31. The
509 names of the registers (which reflects the conventions regarding
510 register use) vary depending on the ABI. */
511 if (0 <= rawnum
&& rawnum
< 32)
513 if (abi
== MIPS_ABI_N32
|| abi
== MIPS_ABI_N64
)
514 return mips_n32_n64_gpr_names
[rawnum
];
516 return mips_gpr_names
[rawnum
];
518 else if (32 <= rawnum
&& rawnum
< NUM_REGS
)
520 gdb_assert (rawnum
- 32 < NUM_MIPS_PROCESSOR_REGS
);
521 return tdep
->mips_processor_reg_names
[rawnum
- 32];
524 internal_error (__FILE__
, __LINE__
,
525 _("mips_register_name: bad register number %d"), rawnum
);
528 /* Return the groups that a MIPS register can be categorised into. */
531 mips_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
532 struct reggroup
*reggroup
)
537 int rawnum
= regnum
% NUM_REGS
;
538 int pseudo
= regnum
/ NUM_REGS
;
539 if (reggroup
== all_reggroup
)
541 vector_p
= TYPE_VECTOR (register_type (gdbarch
, regnum
));
542 float_p
= TYPE_CODE (register_type (gdbarch
, regnum
)) == TYPE_CODE_FLT
;
543 /* FIXME: cagney/2003-04-13: Can't yet use gdbarch_num_regs
544 (gdbarch), as not all architectures are multi-arch. */
545 raw_p
= rawnum
< NUM_REGS
;
546 if (REGISTER_NAME (regnum
) == NULL
|| REGISTER_NAME (regnum
)[0] == '\0')
548 if (reggroup
== float_reggroup
)
549 return float_p
&& pseudo
;
550 if (reggroup
== vector_reggroup
)
551 return vector_p
&& pseudo
;
552 if (reggroup
== general_reggroup
)
553 return (!vector_p
&& !float_p
) && pseudo
;
554 /* Save the pseudo registers. Need to make certain that any code
555 extracting register values from a saved register cache also uses
557 if (reggroup
== save_reggroup
)
558 return raw_p
&& pseudo
;
559 /* Restore the same pseudo register. */
560 if (reggroup
== restore_reggroup
)
561 return raw_p
&& pseudo
;
565 /* Map the symbol table registers which live in the range [1 *
566 NUM_REGS .. 2 * NUM_REGS) back onto the corresponding raw
567 registers. Take care of alignment and size problems. */
570 mips_pseudo_register_read (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
571 int cookednum
, gdb_byte
*buf
)
573 int rawnum
= cookednum
% NUM_REGS
;
574 gdb_assert (cookednum
>= NUM_REGS
&& cookednum
< 2 * NUM_REGS
);
575 if (register_size (gdbarch
, rawnum
) == register_size (gdbarch
, cookednum
))
576 regcache_raw_read (regcache
, rawnum
, buf
);
577 else if (register_size (gdbarch
, rawnum
) >
578 register_size (gdbarch
, cookednum
))
580 if (gdbarch_tdep (gdbarch
)->mips64_transfers_32bit_regs_p
581 || TARGET_BYTE_ORDER
== BFD_ENDIAN_LITTLE
)
582 regcache_raw_read_part (regcache
, rawnum
, 0, 4, buf
);
584 regcache_raw_read_part (regcache
, rawnum
, 4, 4, buf
);
587 internal_error (__FILE__
, __LINE__
, _("bad register size"));
591 mips_pseudo_register_write (struct gdbarch
*gdbarch
,
592 struct regcache
*regcache
, int cookednum
,
595 int rawnum
= cookednum
% NUM_REGS
;
596 gdb_assert (cookednum
>= NUM_REGS
&& cookednum
< 2 * NUM_REGS
);
597 if (register_size (gdbarch
, rawnum
) == register_size (gdbarch
, cookednum
))
598 regcache_raw_write (regcache
, rawnum
, buf
);
599 else if (register_size (gdbarch
, rawnum
) >
600 register_size (gdbarch
, cookednum
))
602 if (gdbarch_tdep (gdbarch
)->mips64_transfers_32bit_regs_p
603 || TARGET_BYTE_ORDER
== BFD_ENDIAN_LITTLE
)
604 regcache_raw_write_part (regcache
, rawnum
, 0, 4, buf
);
606 regcache_raw_write_part (regcache
, rawnum
, 4, 4, buf
);
609 internal_error (__FILE__
, __LINE__
, _("bad register size"));
612 /* Table to translate MIPS16 register field to actual register number. */
613 static int mips16_to_32_reg
[8] = { 16, 17, 2, 3, 4, 5, 6, 7 };
615 /* Heuristic_proc_start may hunt through the text section for a long
616 time across a 2400 baud serial line. Allows the user to limit this
619 static unsigned int heuristic_fence_post
= 0;
621 /* Number of bytes of storage in the actual machine representation for
622 register N. NOTE: This defines the pseudo register type so need to
623 rebuild the architecture vector. */
625 static int mips64_transfers_32bit_regs_p
= 0;
628 set_mips64_transfers_32bit_regs (char *args
, int from_tty
,
629 struct cmd_list_element
*c
)
631 struct gdbarch_info info
;
632 gdbarch_info_init (&info
);
633 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
634 instead of relying on globals. Doing that would let generic code
635 handle the search for this specific architecture. */
636 if (!gdbarch_update_p (info
))
638 mips64_transfers_32bit_regs_p
= 0;
639 error (_("32-bit compatibility mode not supported"));
643 /* Convert to/from a register and the corresponding memory value. */
646 mips_convert_register_p (int regnum
, struct type
*type
)
648 return (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
649 && register_size (current_gdbarch
, regnum
) == 4
650 && (regnum
% NUM_REGS
) >= mips_regnum (current_gdbarch
)->fp0
651 && (regnum
% NUM_REGS
) < mips_regnum (current_gdbarch
)->fp0
+ 32
652 && TYPE_CODE (type
) == TYPE_CODE_FLT
&& TYPE_LENGTH (type
) == 8);
656 mips_register_to_value (struct frame_info
*frame
, int regnum
,
657 struct type
*type
, gdb_byte
*to
)
659 get_frame_register (frame
, regnum
+ 0, to
+ 4);
660 get_frame_register (frame
, regnum
+ 1, to
+ 0);
664 mips_value_to_register (struct frame_info
*frame
, int regnum
,
665 struct type
*type
, const gdb_byte
*from
)
667 put_frame_register (frame
, regnum
+ 0, from
+ 4);
668 put_frame_register (frame
, regnum
+ 1, from
+ 0);
671 /* Return the GDB type object for the "standard" data type of data in
675 mips_register_type (struct gdbarch
*gdbarch
, int regnum
)
677 gdb_assert (regnum
>= 0 && regnum
< 2 * NUM_REGS
);
678 if ((regnum
% NUM_REGS
) >= mips_regnum (current_gdbarch
)->fp0
679 && (regnum
% NUM_REGS
) < mips_regnum (current_gdbarch
)->fp0
+ 32)
681 /* The floating-point registers raw, or cooked, always match
682 mips_isa_regsize(), and also map 1:1, byte for byte. */
683 switch (gdbarch_byte_order (gdbarch
))
686 if (mips_isa_regsize (gdbarch
) == 4)
687 return builtin_type_ieee_single_big
;
689 return builtin_type_ieee_double_big
;
690 case BFD_ENDIAN_LITTLE
:
691 if (mips_isa_regsize (gdbarch
) == 4)
692 return builtin_type_ieee_single_little
;
694 return builtin_type_ieee_double_little
;
695 case BFD_ENDIAN_UNKNOWN
:
697 internal_error (__FILE__
, __LINE__
, _("bad switch"));
700 else if (regnum
< NUM_REGS
)
702 /* The raw or ISA registers. These are all sized according to
704 if (mips_isa_regsize (gdbarch
) == 4)
705 return builtin_type_int32
;
707 return builtin_type_int64
;
711 /* The cooked or ABI registers. These are sized according to
712 the ABI (with a few complications). */
713 if (regnum
>= (NUM_REGS
714 + mips_regnum (current_gdbarch
)->fp_control_status
)
715 && regnum
<= NUM_REGS
+ MIPS_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 (gdbarch_tdep (gdbarch
)->mips64_transfers_32bit_regs_p
)
720 /* The target, while possibly using a 64-bit register buffer,
721 is only transfering 32-bits of each integer register.
722 Reflect this in the cooked/pseudo (ABI) register value. */
723 return builtin_type_int32
;
724 else if (mips_abi_regsize (gdbarch
) == 4)
725 /* The ABI is restricted to 32-bit registers (the ISA could be
727 return builtin_type_int32
;
730 return builtin_type_int64
;
734 /* TARGET_READ_SP -- Remove useless bits from the stack pointer. */
739 return read_signed_register (MIPS_SP_REGNUM
);
742 /* Should the upper word of 64-bit addresses be zeroed? */
743 enum auto_boolean mask_address_var
= AUTO_BOOLEAN_AUTO
;
746 mips_mask_address_p (struct gdbarch_tdep
*tdep
)
748 switch (mask_address_var
)
750 case AUTO_BOOLEAN_TRUE
:
752 case AUTO_BOOLEAN_FALSE
:
755 case AUTO_BOOLEAN_AUTO
:
756 return tdep
->default_mask_address_p
;
758 internal_error (__FILE__
, __LINE__
, _("mips_mask_address_p: bad switch"));
764 show_mask_address (struct ui_file
*file
, int from_tty
,
765 struct cmd_list_element
*c
, const char *value
)
767 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
769 deprecated_show_value_hack (file
, from_tty
, c
, value
);
770 switch (mask_address_var
)
772 case AUTO_BOOLEAN_TRUE
:
773 printf_filtered ("The 32 bit mips address mask is enabled\n");
775 case AUTO_BOOLEAN_FALSE
:
776 printf_filtered ("The 32 bit mips address mask is disabled\n");
778 case AUTO_BOOLEAN_AUTO
:
780 ("The 32 bit address mask is set automatically. Currently %s\n",
781 mips_mask_address_p (tdep
) ? "enabled" : "disabled");
784 internal_error (__FILE__
, __LINE__
, _("show_mask_address: bad switch"));
789 /* Tell if the program counter value in MEMADDR is in a MIPS16 function. */
792 mips_pc_is_mips16 (CORE_ADDR memaddr
)
794 struct minimal_symbol
*sym
;
796 /* If bit 0 of the address is set, assume this is a MIPS16 address. */
797 if (is_mips16_addr (memaddr
))
800 /* A flag indicating that this is a MIPS16 function is stored by elfread.c in
801 the high bit of the info field. Use this to decide if the function is
802 MIPS16 or normal MIPS. */
803 sym
= lookup_minimal_symbol_by_pc (memaddr
);
805 return msymbol_is_special (sym
);
810 /* MIPS believes that the PC has a sign extended value. Perhaps the
811 all registers should be sign extended for simplicity? */
814 mips_read_pc (ptid_t ptid
)
816 return read_signed_register_pid (mips_regnum (current_gdbarch
)->pc
, ptid
);
820 mips_unwind_pc (struct gdbarch
*gdbarch
, struct frame_info
*next_frame
)
822 return frame_unwind_register_signed (next_frame
,
823 NUM_REGS
+ mips_regnum (gdbarch
)->pc
);
826 /* Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
827 dummy frame. The frame ID's base needs to match the TOS value
828 saved by save_dummy_frame_tos(), and the PC match the dummy frame's
831 static struct frame_id
832 mips_unwind_dummy_id (struct gdbarch
*gdbarch
, struct frame_info
*next_frame
)
834 return frame_id_build (frame_unwind_register_signed (next_frame
, NUM_REGS
+ MIPS_SP_REGNUM
),
835 frame_pc_unwind (next_frame
));
839 mips_write_pc (CORE_ADDR pc
, ptid_t ptid
)
841 write_register_pid (mips_regnum (current_gdbarch
)->pc
, pc
, ptid
);
844 /* Fetch and return instruction from the specified location. If the PC
845 is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
848 mips_fetch_instruction (CORE_ADDR addr
)
850 gdb_byte buf
[MIPS_INSN32_SIZE
];
854 if (mips_pc_is_mips16 (addr
))
856 instlen
= MIPS_INSN16_SIZE
;
857 addr
= unmake_mips16_addr (addr
);
860 instlen
= MIPS_INSN32_SIZE
;
861 status
= deprecated_read_memory_nobpt (addr
, buf
, instlen
);
863 memory_error (status
, addr
);
864 return extract_unsigned_integer (buf
, instlen
);
867 /* These the fields of 32 bit mips instructions */
868 #define mips32_op(x) (x >> 26)
869 #define itype_op(x) (x >> 26)
870 #define itype_rs(x) ((x >> 21) & 0x1f)
871 #define itype_rt(x) ((x >> 16) & 0x1f)
872 #define itype_immediate(x) (x & 0xffff)
874 #define jtype_op(x) (x >> 26)
875 #define jtype_target(x) (x & 0x03ffffff)
877 #define rtype_op(x) (x >> 26)
878 #define rtype_rs(x) ((x >> 21) & 0x1f)
879 #define rtype_rt(x) ((x >> 16) & 0x1f)
880 #define rtype_rd(x) ((x >> 11) & 0x1f)
881 #define rtype_shamt(x) ((x >> 6) & 0x1f)
882 #define rtype_funct(x) (x & 0x3f)
885 mips32_relative_offset (ULONGEST inst
)
887 return ((itype_immediate (inst
) ^ 0x8000) - 0x8000) << 2;
890 /* Determine whate to set a single step breakpoint while considering
893 mips32_next_pc (CORE_ADDR pc
)
897 inst
= mips_fetch_instruction (pc
);
898 if ((inst
& 0xe0000000) != 0) /* Not a special, jump or branch instruction */
900 if (itype_op (inst
) >> 2 == 5)
901 /* BEQL, BNEL, BLEZL, BGTZL: bits 0101xx */
903 op
= (itype_op (inst
) & 0x03);
918 else if (itype_op (inst
) == 17 && itype_rs (inst
) == 8)
919 /* BC1F, BC1FL, BC1T, BC1TL: 010001 01000 */
921 int tf
= itype_rt (inst
) & 0x01;
922 int cnum
= itype_rt (inst
) >> 2;
924 read_signed_register (mips_regnum (current_gdbarch
)->
926 int cond
= ((fcrcs
>> 24) & 0x0e) | ((fcrcs
>> 23) & 0x01);
928 if (((cond
>> cnum
) & 0x01) == tf
)
929 pc
+= mips32_relative_offset (inst
) + 4;
934 pc
+= 4; /* Not a branch, next instruction is easy */
937 { /* This gets way messy */
939 /* Further subdivide into SPECIAL, REGIMM and other */
940 switch (op
= itype_op (inst
) & 0x07) /* extract bits 28,27,26 */
942 case 0: /* SPECIAL */
943 op
= rtype_funct (inst
);
948 /* Set PC to that address */
949 pc
= read_signed_register (rtype_rs (inst
));
955 break; /* end SPECIAL */
958 op
= itype_rt (inst
); /* branch condition */
963 case 16: /* BLTZAL */
964 case 18: /* BLTZALL */
966 if (read_signed_register (itype_rs (inst
)) < 0)
967 pc
+= mips32_relative_offset (inst
) + 4;
969 pc
+= 8; /* after the delay slot */
973 case 17: /* BGEZAL */
974 case 19: /* BGEZALL */
975 if (read_signed_register (itype_rs (inst
)) >= 0)
976 pc
+= mips32_relative_offset (inst
) + 4;
978 pc
+= 8; /* after the delay slot */
980 /* All of the other instructions in the REGIMM category */
985 break; /* end REGIMM */
990 reg
= jtype_target (inst
) << 2;
991 /* Upper four bits get never changed... */
992 pc
= reg
+ ((pc
+ 4) & ~(CORE_ADDR
) 0x0fffffff);
995 /* FIXME case JALX : */
998 reg
= jtype_target (inst
) << 2;
999 pc
= reg
+ ((pc
+ 4) & ~(CORE_ADDR
) 0x0fffffff) + 1; /* yes, +1 */
1000 /* Add 1 to indicate 16 bit mode - Invert ISA mode */
1002 break; /* The new PC will be alternate mode */
1003 case 4: /* BEQ, BEQL */
1005 if (read_signed_register (itype_rs (inst
)) ==
1006 read_signed_register (itype_rt (inst
)))
1007 pc
+= mips32_relative_offset (inst
) + 4;
1011 case 5: /* BNE, BNEL */
1013 if (read_signed_register (itype_rs (inst
)) !=
1014 read_signed_register (itype_rt (inst
)))
1015 pc
+= mips32_relative_offset (inst
) + 4;
1019 case 6: /* BLEZ, BLEZL */
1020 if (read_signed_register (itype_rs (inst
)) <= 0)
1021 pc
+= mips32_relative_offset (inst
) + 4;
1027 greater_branch
: /* BGTZ, BGTZL */
1028 if (read_signed_register (itype_rs (inst
)) > 0)
1029 pc
+= mips32_relative_offset (inst
) + 4;
1036 } /* mips32_next_pc */
1038 /* Decoding the next place to set a breakpoint is irregular for the
1039 mips 16 variant, but fortunately, there fewer instructions. We have to cope
1040 ith extensions for 16 bit instructions and a pair of actual 32 bit instructions.
1041 We dont want to set a single step instruction on the extend instruction
1045 /* Lots of mips16 instruction formats */
1046 /* Predicting jumps requires itype,ritype,i8type
1047 and their extensions extItype,extritype,extI8type
1049 enum mips16_inst_fmts
1051 itype
, /* 0 immediate 5,10 */
1052 ritype
, /* 1 5,3,8 */
1053 rrtype
, /* 2 5,3,3,5 */
1054 rritype
, /* 3 5,3,3,5 */
1055 rrrtype
, /* 4 5,3,3,3,2 */
1056 rriatype
, /* 5 5,3,3,1,4 */
1057 shifttype
, /* 6 5,3,3,3,2 */
1058 i8type
, /* 7 5,3,8 */
1059 i8movtype
, /* 8 5,3,3,5 */
1060 i8mov32rtype
, /* 9 5,3,5,3 */
1061 i64type
, /* 10 5,3,8 */
1062 ri64type
, /* 11 5,3,3,5 */
1063 jalxtype
, /* 12 5,1,5,5,16 - a 32 bit instruction */
1064 exiItype
, /* 13 5,6,5,5,1,1,1,1,1,1,5 */
1065 extRitype
, /* 14 5,6,5,5,3,1,1,1,5 */
1066 extRRItype
, /* 15 5,5,5,5,3,3,5 */
1067 extRRIAtype
, /* 16 5,7,4,5,3,3,1,4 */
1068 EXTshifttype
, /* 17 5,5,1,1,1,1,1,1,5,3,3,1,1,1,2 */
1069 extI8type
, /* 18 5,6,5,5,3,1,1,1,5 */
1070 extI64type
, /* 19 5,6,5,5,3,1,1,1,5 */
1071 extRi64type
, /* 20 5,6,5,5,3,3,5 */
1072 extshift64type
/* 21 5,5,1,1,1,1,1,1,5,1,1,1,3,5 */
1074 /* I am heaping all the fields of the formats into one structure and
1075 then, only the fields which are involved in instruction extension */
1079 unsigned int regx
; /* Function in i8 type */
1084 /* The EXT-I, EXT-ri nad EXT-I8 instructions all have the same format
1085 for the bits which make up the immediatate extension. */
1088 extended_offset (unsigned int extension
)
1091 value
= (extension
>> 21) & 0x3f; /* * extract 15:11 */
1093 value
|= (extension
>> 16) & 0x1f; /* extrace 10:5 */
1095 value
|= extension
& 0x01f; /* extract 4:0 */
1099 /* Only call this function if you know that this is an extendable
1100 instruction, It wont malfunction, but why make excess remote memory references?
1101 If the immediate operands get sign extended or somthing, do it after
1102 the extension is performed.
1104 /* FIXME: Every one of these cases needs to worry about sign extension
1105 when the offset is to be used in relative addressing */
1109 fetch_mips_16 (CORE_ADDR pc
)
1112 pc
&= 0xfffffffe; /* clear the low order bit */
1113 target_read_memory (pc
, buf
, 2);
1114 return extract_unsigned_integer (buf
, 2);
1118 unpack_mips16 (CORE_ADDR pc
,
1119 unsigned int extension
,
1121 enum mips16_inst_fmts insn_format
, struct upk_mips16
*upk
)
1126 switch (insn_format
)
1133 value
= extended_offset (extension
);
1134 value
= value
<< 11; /* rom for the original value */
1135 value
|= inst
& 0x7ff; /* eleven bits from instruction */
1139 value
= inst
& 0x7ff;
1140 /* FIXME : Consider sign extension */
1149 { /* A register identifier and an offset */
1150 /* Most of the fields are the same as I type but the
1151 immediate value is of a different length */
1155 value
= extended_offset (extension
);
1156 value
= value
<< 8; /* from the original instruction */
1157 value
|= inst
& 0xff; /* eleven bits from instruction */
1158 regx
= (extension
>> 8) & 0x07; /* or i8 funct */
1159 if (value
& 0x4000) /* test the sign bit , bit 26 */
1161 value
&= ~0x3fff; /* remove the sign bit */
1167 value
= inst
& 0xff; /* 8 bits */
1168 regx
= (inst
>> 8) & 0x07; /* or i8 funct */
1169 /* FIXME: Do sign extension , this format needs it */
1170 if (value
& 0x80) /* THIS CONFUSES ME */
1172 value
&= 0xef; /* remove the sign bit */
1182 unsigned long value
;
1183 unsigned int nexthalf
;
1184 value
= ((inst
& 0x1f) << 5) | ((inst
>> 5) & 0x1f);
1185 value
= value
<< 16;
1186 nexthalf
= mips_fetch_instruction (pc
+ 2); /* low bit still set */
1194 internal_error (__FILE__
, __LINE__
, _("bad switch"));
1196 upk
->offset
= offset
;
1203 add_offset_16 (CORE_ADDR pc
, int offset
)
1205 return ((offset
<< 2) | ((pc
+ 2) & (~(CORE_ADDR
) 0x0fffffff)));
1209 extended_mips16_next_pc (CORE_ADDR pc
,
1210 unsigned int extension
, unsigned int insn
)
1212 int op
= (insn
>> 11);
1215 case 2: /* Branch */
1218 struct upk_mips16 upk
;
1219 unpack_mips16 (pc
, extension
, insn
, itype
, &upk
);
1220 offset
= upk
.offset
;
1226 pc
+= (offset
<< 1) + 2;
1229 case 3: /* JAL , JALX - Watch out, these are 32 bit instruction */
1231 struct upk_mips16 upk
;
1232 unpack_mips16 (pc
, extension
, insn
, jalxtype
, &upk
);
1233 pc
= add_offset_16 (pc
, upk
.offset
);
1234 if ((insn
>> 10) & 0x01) /* Exchange mode */
1235 pc
= pc
& ~0x01; /* Clear low bit, indicate 32 bit mode */
1242 struct upk_mips16 upk
;
1244 unpack_mips16 (pc
, extension
, insn
, ritype
, &upk
);
1245 reg
= read_signed_register (upk
.regx
);
1247 pc
+= (upk
.offset
<< 1) + 2;
1254 struct upk_mips16 upk
;
1256 unpack_mips16 (pc
, extension
, insn
, ritype
, &upk
);
1257 reg
= read_signed_register (upk
.regx
);
1259 pc
+= (upk
.offset
<< 1) + 2;
1264 case 12: /* I8 Formats btez btnez */
1266 struct upk_mips16 upk
;
1268 unpack_mips16 (pc
, extension
, insn
, i8type
, &upk
);
1269 /* upk.regx contains the opcode */
1270 reg
= read_signed_register (24); /* Test register is 24 */
1271 if (((upk
.regx
== 0) && (reg
== 0)) /* BTEZ */
1272 || ((upk
.regx
== 1) && (reg
!= 0))) /* BTNEZ */
1273 /* pc = add_offset_16(pc,upk.offset) ; */
1274 pc
+= (upk
.offset
<< 1) + 2;
1279 case 29: /* RR Formats JR, JALR, JALR-RA */
1281 struct upk_mips16 upk
;
1282 /* upk.fmt = rrtype; */
1287 upk
.regx
= (insn
>> 8) & 0x07;
1288 upk
.regy
= (insn
>> 5) & 0x07;
1296 break; /* Function return instruction */
1302 break; /* BOGUS Guess */
1304 pc
= read_signed_register (reg
);
1311 /* This is an instruction extension. Fetch the real instruction
1312 (which follows the extension) and decode things based on
1316 pc
= extended_mips16_next_pc (pc
, insn
, fetch_mips_16 (pc
));
1329 mips16_next_pc (CORE_ADDR pc
)
1331 unsigned int insn
= fetch_mips_16 (pc
);
1332 return extended_mips16_next_pc (pc
, 0, insn
);
1335 /* The mips_next_pc function supports single_step when the remote
1336 target monitor or stub is not developed enough to do a single_step.
1337 It works by decoding the current instruction and predicting where a
1338 branch will go. This isnt hard because all the data is available.
1339 The MIPS32 and MIPS16 variants are quite different */
1341 mips_next_pc (CORE_ADDR pc
)
1344 return mips16_next_pc (pc
);
1346 return mips32_next_pc (pc
);
1349 struct mips_frame_cache
1352 struct trad_frame_saved_reg
*saved_regs
;
1355 /* Set a register's saved stack address in temp_saved_regs. If an
1356 address has already been set for this register, do nothing; this
1357 way we will only recognize the first save of a given register in a
1360 For simplicity, save the address in both [0 .. NUM_REGS) and
1361 [NUM_REGS .. 2*NUM_REGS). Strictly speaking, only the second range
1362 is used as it is only second range (the ABI instead of ISA
1363 registers) that comes into play when finding saved registers in a
1367 set_reg_offset (struct mips_frame_cache
*this_cache
, int regnum
,
1370 if (this_cache
!= NULL
1371 && this_cache
->saved_regs
[regnum
].addr
== -1)
1373 this_cache
->saved_regs
[regnum
+ 0 * NUM_REGS
].addr
= offset
;
1374 this_cache
->saved_regs
[regnum
+ 1 * NUM_REGS
].addr
= offset
;
1379 /* Fetch the immediate value from a MIPS16 instruction.
1380 If the previous instruction was an EXTEND, use it to extend
1381 the upper bits of the immediate value. This is a helper function
1382 for mips16_scan_prologue. */
1385 mips16_get_imm (unsigned short prev_inst
, /* previous instruction */
1386 unsigned short inst
, /* current instruction */
1387 int nbits
, /* number of bits in imm field */
1388 int scale
, /* scale factor to be applied to imm */
1389 int is_signed
) /* is the imm field signed? */
1393 if ((prev_inst
& 0xf800) == 0xf000) /* prev instruction was EXTEND? */
1395 offset
= ((prev_inst
& 0x1f) << 11) | (prev_inst
& 0x7e0);
1396 if (offset
& 0x8000) /* check for negative extend */
1397 offset
= 0 - (0x10000 - (offset
& 0xffff));
1398 return offset
| (inst
& 0x1f);
1402 int max_imm
= 1 << nbits
;
1403 int mask
= max_imm
- 1;
1404 int sign_bit
= max_imm
>> 1;
1406 offset
= inst
& mask
;
1407 if (is_signed
&& (offset
& sign_bit
))
1408 offset
= 0 - (max_imm
- offset
);
1409 return offset
* scale
;
1414 /* Analyze the function prologue from START_PC to LIMIT_PC. Builds
1415 the associated FRAME_CACHE if not null.
1416 Return the address of the first instruction past the prologue. */
1419 mips16_scan_prologue (CORE_ADDR start_pc
, CORE_ADDR limit_pc
,
1420 struct frame_info
*next_frame
,
1421 struct mips_frame_cache
*this_cache
)
1424 CORE_ADDR frame_addr
= 0; /* Value of $r17, used as frame pointer */
1426 long frame_offset
= 0; /* Size of stack frame. */
1427 long frame_adjust
= 0; /* Offset of FP from SP. */
1428 int frame_reg
= MIPS_SP_REGNUM
;
1429 unsigned short prev_inst
= 0; /* saved copy of previous instruction */
1430 unsigned inst
= 0; /* current instruction */
1431 unsigned entry_inst
= 0; /* the entry instruction */
1434 int extend_bytes
= 0;
1435 int prev_extend_bytes
;
1436 CORE_ADDR end_prologue_addr
= 0;
1438 /* Can be called when there's no process, and hence when there's no
1440 if (next_frame
!= NULL
)
1441 sp
= read_next_frame_reg (next_frame
, NUM_REGS
+ MIPS_SP_REGNUM
);
1445 if (limit_pc
> start_pc
+ 200)
1446 limit_pc
= start_pc
+ 200;
1448 for (cur_pc
= start_pc
; cur_pc
< limit_pc
; cur_pc
+= MIPS_INSN16_SIZE
)
1450 /* Save the previous instruction. If it's an EXTEND, we'll extract
1451 the immediate offset extension from it in mips16_get_imm. */
1454 /* Fetch and decode the instruction. */
1455 inst
= (unsigned short) mips_fetch_instruction (cur_pc
);
1457 /* Normally we ignore extend instructions. However, if it is
1458 not followed by a valid prologue instruction, then this
1459 instruction is not part of the prologue either. We must
1460 remember in this case to adjust the end_prologue_addr back
1462 if ((inst
& 0xf800) == 0xf000) /* extend */
1464 extend_bytes
= MIPS_INSN16_SIZE
;
1468 prev_extend_bytes
= extend_bytes
;
1471 if ((inst
& 0xff00) == 0x6300 /* addiu sp */
1472 || (inst
& 0xff00) == 0xfb00) /* daddiu sp */
1474 offset
= mips16_get_imm (prev_inst
, inst
, 8, 8, 1);
1475 if (offset
< 0) /* negative stack adjustment? */
1476 frame_offset
-= offset
;
1478 /* Exit loop if a positive stack adjustment is found, which
1479 usually means that the stack cleanup code in the function
1480 epilogue is reached. */
1483 else if ((inst
& 0xf800) == 0xd000) /* sw reg,n($sp) */
1485 offset
= mips16_get_imm (prev_inst
, inst
, 8, 4, 0);
1486 reg
= mips16_to_32_reg
[(inst
& 0x700) >> 8];
1487 set_reg_offset (this_cache
, reg
, sp
+ offset
);
1489 else if ((inst
& 0xff00) == 0xf900) /* sd reg,n($sp) */
1491 offset
= mips16_get_imm (prev_inst
, inst
, 5, 8, 0);
1492 reg
= mips16_to_32_reg
[(inst
& 0xe0) >> 5];
1493 set_reg_offset (this_cache
, reg
, sp
+ offset
);
1495 else if ((inst
& 0xff00) == 0x6200) /* sw $ra,n($sp) */
1497 offset
= mips16_get_imm (prev_inst
, inst
, 8, 4, 0);
1498 set_reg_offset (this_cache
, MIPS_RA_REGNUM
, sp
+ offset
);
1500 else if ((inst
& 0xff00) == 0xfa00) /* sd $ra,n($sp) */
1502 offset
= mips16_get_imm (prev_inst
, inst
, 8, 8, 0);
1503 set_reg_offset (this_cache
, MIPS_RA_REGNUM
, sp
+ offset
);
1505 else if (inst
== 0x673d) /* move $s1, $sp */
1510 else if ((inst
& 0xff00) == 0x0100) /* addiu $s1,sp,n */
1512 offset
= mips16_get_imm (prev_inst
, inst
, 8, 4, 0);
1513 frame_addr
= sp
+ offset
;
1515 frame_adjust
= offset
;
1517 else if ((inst
& 0xFF00) == 0xd900) /* sw reg,offset($s1) */
1519 offset
= mips16_get_imm (prev_inst
, inst
, 5, 4, 0);
1520 reg
= mips16_to_32_reg
[(inst
& 0xe0) >> 5];
1521 set_reg_offset (this_cache
, reg
, frame_addr
+ offset
);
1523 else if ((inst
& 0xFF00) == 0x7900) /* sd reg,offset($s1) */
1525 offset
= mips16_get_imm (prev_inst
, inst
, 5, 8, 0);
1526 reg
= mips16_to_32_reg
[(inst
& 0xe0) >> 5];
1527 set_reg_offset (this_cache
, reg
, frame_addr
+ offset
);
1529 else if ((inst
& 0xf81f) == 0xe809
1530 && (inst
& 0x700) != 0x700) /* entry */
1531 entry_inst
= inst
; /* save for later processing */
1532 else if ((inst
& 0xf800) == 0x1800) /* jal(x) */
1533 cur_pc
+= MIPS_INSN16_SIZE
; /* 32-bit instruction */
1534 else if ((inst
& 0xff1c) == 0x6704) /* move reg,$a0-$a3 */
1536 /* This instruction is part of the prologue, but we don't
1537 need to do anything special to handle it. */
1541 /* This instruction is not an instruction typically found
1542 in a prologue, so we must have reached the end of the
1544 if (end_prologue_addr
== 0)
1545 end_prologue_addr
= cur_pc
- prev_extend_bytes
;
1549 /* The entry instruction is typically the first instruction in a function,
1550 and it stores registers at offsets relative to the value of the old SP
1551 (before the prologue). But the value of the sp parameter to this
1552 function is the new SP (after the prologue has been executed). So we
1553 can't calculate those offsets until we've seen the entire prologue,
1554 and can calculate what the old SP must have been. */
1555 if (entry_inst
!= 0)
1557 int areg_count
= (entry_inst
>> 8) & 7;
1558 int sreg_count
= (entry_inst
>> 6) & 3;
1560 /* The entry instruction always subtracts 32 from the SP. */
1563 /* Now we can calculate what the SP must have been at the
1564 start of the function prologue. */
1567 /* Check if a0-a3 were saved in the caller's argument save area. */
1568 for (reg
= 4, offset
= 0; reg
< areg_count
+ 4; reg
++)
1570 set_reg_offset (this_cache
, reg
, sp
+ offset
);
1571 offset
+= mips_abi_regsize (current_gdbarch
);
1574 /* Check if the ra register was pushed on the stack. */
1576 if (entry_inst
& 0x20)
1578 set_reg_offset (this_cache
, MIPS_RA_REGNUM
, sp
+ offset
);
1579 offset
-= mips_abi_regsize (current_gdbarch
);
1582 /* Check if the s0 and s1 registers were pushed on the stack. */
1583 for (reg
= 16; reg
< sreg_count
+ 16; reg
++)
1585 set_reg_offset (this_cache
, reg
, sp
+ offset
);
1586 offset
-= mips_abi_regsize (current_gdbarch
);
1590 if (this_cache
!= NULL
)
1593 (frame_unwind_register_signed (next_frame
, NUM_REGS
+ frame_reg
)
1594 + frame_offset
- frame_adjust
);
1595 /* FIXME: brobecker/2004-10-10: Just as in the mips32 case, we should
1596 be able to get rid of the assignment below, evetually. But it's
1597 still needed for now. */
1598 this_cache
->saved_regs
[NUM_REGS
+ mips_regnum (current_gdbarch
)->pc
]
1599 = this_cache
->saved_regs
[NUM_REGS
+ MIPS_RA_REGNUM
];
1602 /* If we didn't reach the end of the prologue when scanning the function
1603 instructions, then set end_prologue_addr to the address of the
1604 instruction immediately after the last one we scanned. */
1605 if (end_prologue_addr
== 0)
1606 end_prologue_addr
= cur_pc
;
1608 return end_prologue_addr
;
1611 /* Heuristic unwinder for 16-bit MIPS instruction set (aka MIPS16).
1612 Procedures that use the 32-bit instruction set are handled by the
1613 mips_insn32 unwinder. */
1615 static struct mips_frame_cache
*
1616 mips_insn16_frame_cache (struct frame_info
*next_frame
, void **this_cache
)
1618 struct mips_frame_cache
*cache
;
1620 if ((*this_cache
) != NULL
)
1621 return (*this_cache
);
1622 cache
= FRAME_OBSTACK_ZALLOC (struct mips_frame_cache
);
1623 (*this_cache
) = cache
;
1624 cache
->saved_regs
= trad_frame_alloc_saved_regs (next_frame
);
1626 /* Analyze the function prologue. */
1628 const CORE_ADDR pc
= frame_pc_unwind (next_frame
);
1629 CORE_ADDR start_addr
;
1631 find_pc_partial_function (pc
, NULL
, &start_addr
, NULL
);
1632 if (start_addr
== 0)
1633 start_addr
= heuristic_proc_start (pc
);
1634 /* We can't analyze the prologue if we couldn't find the begining
1636 if (start_addr
== 0)
1639 mips16_scan_prologue (start_addr
, pc
, next_frame
, *this_cache
);
1642 /* SP_REGNUM, contains the value and not the address. */
1643 trad_frame_set_value (cache
->saved_regs
, NUM_REGS
+ MIPS_SP_REGNUM
, cache
->base
);
1645 return (*this_cache
);
1649 mips_insn16_frame_this_id (struct frame_info
*next_frame
, void **this_cache
,
1650 struct frame_id
*this_id
)
1652 struct mips_frame_cache
*info
= mips_insn16_frame_cache (next_frame
,
1654 (*this_id
) = frame_id_build (info
->base
, frame_func_unwind (next_frame
));
1658 mips_insn16_frame_prev_register (struct frame_info
*next_frame
,
1660 int regnum
, int *optimizedp
,
1661 enum lval_type
*lvalp
, CORE_ADDR
*addrp
,
1662 int *realnump
, gdb_byte
*valuep
)
1664 struct mips_frame_cache
*info
= mips_insn16_frame_cache (next_frame
,
1666 trad_frame_get_prev_register (next_frame
, info
->saved_regs
, regnum
,
1667 optimizedp
, lvalp
, addrp
, realnump
, valuep
);
1670 static const struct frame_unwind mips_insn16_frame_unwind
=
1673 mips_insn16_frame_this_id
,
1674 mips_insn16_frame_prev_register
1677 static const struct frame_unwind
*
1678 mips_insn16_frame_sniffer (struct frame_info
*next_frame
)
1680 CORE_ADDR pc
= frame_pc_unwind (next_frame
);
1681 if (mips_pc_is_mips16 (pc
))
1682 return &mips_insn16_frame_unwind
;
1687 mips_insn16_frame_base_address (struct frame_info
*next_frame
,
1690 struct mips_frame_cache
*info
= mips_insn16_frame_cache (next_frame
,
1695 static const struct frame_base mips_insn16_frame_base
=
1697 &mips_insn16_frame_unwind
,
1698 mips_insn16_frame_base_address
,
1699 mips_insn16_frame_base_address
,
1700 mips_insn16_frame_base_address
1703 static const struct frame_base
*
1704 mips_insn16_frame_base_sniffer (struct frame_info
*next_frame
)
1706 if (mips_insn16_frame_sniffer (next_frame
) != NULL
)
1707 return &mips_insn16_frame_base
;
1712 /* Mark all the registers as unset in the saved_regs array
1713 of THIS_CACHE. Do nothing if THIS_CACHE is null. */
1716 reset_saved_regs (struct mips_frame_cache
*this_cache
)
1718 if (this_cache
== NULL
|| this_cache
->saved_regs
== NULL
)
1722 const int num_regs
= NUM_REGS
;
1725 for (i
= 0; i
< num_regs
; i
++)
1727 this_cache
->saved_regs
[i
].addr
= -1;
1732 /* Analyze the function prologue from START_PC to LIMIT_PC. Builds
1733 the associated FRAME_CACHE if not null.
1734 Return the address of the first instruction past the prologue. */
1737 mips32_scan_prologue (CORE_ADDR start_pc
, CORE_ADDR limit_pc
,
1738 struct frame_info
*next_frame
,
1739 struct mips_frame_cache
*this_cache
)
1742 CORE_ADDR frame_addr
= 0; /* Value of $r30. Used by gcc for frame-pointer */
1745 int frame_reg
= MIPS_SP_REGNUM
;
1747 CORE_ADDR end_prologue_addr
= 0;
1748 int seen_sp_adjust
= 0;
1749 int load_immediate_bytes
= 0;
1751 /* Can be called when there's no process, and hence when there's no
1753 if (next_frame
!= NULL
)
1754 sp
= read_next_frame_reg (next_frame
, NUM_REGS
+ MIPS_SP_REGNUM
);
1758 if (limit_pc
> start_pc
+ 200)
1759 limit_pc
= start_pc
+ 200;
1764 for (cur_pc
= start_pc
; cur_pc
< limit_pc
; cur_pc
+= MIPS_INSN32_SIZE
)
1766 unsigned long inst
, high_word
, low_word
;
1769 /* Fetch the instruction. */
1770 inst
= (unsigned long) mips_fetch_instruction (cur_pc
);
1772 /* Save some code by pre-extracting some useful fields. */
1773 high_word
= (inst
>> 16) & 0xffff;
1774 low_word
= inst
& 0xffff;
1775 reg
= high_word
& 0x1f;
1777 if (high_word
== 0x27bd /* addiu $sp,$sp,-i */
1778 || high_word
== 0x23bd /* addi $sp,$sp,-i */
1779 || high_word
== 0x67bd) /* daddiu $sp,$sp,-i */
1781 if (low_word
& 0x8000) /* negative stack adjustment? */
1782 frame_offset
+= 0x10000 - low_word
;
1784 /* Exit loop if a positive stack adjustment is found, which
1785 usually means that the stack cleanup code in the function
1786 epilogue is reached. */
1790 else if ((high_word
& 0xFFE0) == 0xafa0) /* sw reg,offset($sp) */
1792 set_reg_offset (this_cache
, reg
, sp
+ low_word
);
1794 else if ((high_word
& 0xFFE0) == 0xffa0) /* sd reg,offset($sp) */
1796 /* Irix 6.2 N32 ABI uses sd instructions for saving $gp and $ra. */
1797 set_reg_offset (this_cache
, reg
, sp
+ low_word
);
1799 else if (high_word
== 0x27be) /* addiu $30,$sp,size */
1801 /* Old gcc frame, r30 is virtual frame pointer. */
1802 if ((long) low_word
!= frame_offset
)
1803 frame_addr
= sp
+ low_word
;
1804 else if (frame_reg
== MIPS_SP_REGNUM
)
1806 unsigned alloca_adjust
;
1809 frame_addr
= read_next_frame_reg (next_frame
, NUM_REGS
+ 30);
1810 alloca_adjust
= (unsigned) (frame_addr
- (sp
+ low_word
));
1811 if (alloca_adjust
> 0)
1813 /* FP > SP + frame_size. This may be because of
1814 an alloca or somethings similar. Fix sp to
1815 "pre-alloca" value, and try again. */
1816 sp
+= alloca_adjust
;
1817 /* Need to reset the status of all registers. Otherwise,
1818 we will hit a guard that prevents the new address
1819 for each register to be recomputed during the second
1821 reset_saved_regs (this_cache
);
1826 /* move $30,$sp. With different versions of gas this will be either
1827 `addu $30,$sp,$zero' or `or $30,$sp,$zero' or `daddu 30,sp,$0'.
1828 Accept any one of these. */
1829 else if (inst
== 0x03A0F021 || inst
== 0x03a0f025 || inst
== 0x03a0f02d)
1831 /* New gcc frame, virtual frame pointer is at r30 + frame_size. */
1832 if (frame_reg
== MIPS_SP_REGNUM
)
1834 unsigned alloca_adjust
;
1837 frame_addr
= read_next_frame_reg (next_frame
, NUM_REGS
+ 30);
1838 alloca_adjust
= (unsigned) (frame_addr
- sp
);
1839 if (alloca_adjust
> 0)
1841 /* FP > SP + frame_size. This may be because of
1842 an alloca or somethings similar. Fix sp to
1843 "pre-alloca" value, and try again. */
1845 /* Need to reset the status of all registers. Otherwise,
1846 we will hit a guard that prevents the new address
1847 for each register to be recomputed during the second
1849 reset_saved_regs (this_cache
);
1854 else if ((high_word
& 0xFFE0) == 0xafc0) /* sw reg,offset($30) */
1856 set_reg_offset (this_cache
, reg
, frame_addr
+ low_word
);
1858 else if ((high_word
& 0xFFE0) == 0xE7A0 /* swc1 freg,n($sp) */
1859 || (high_word
& 0xF3E0) == 0xA3C0 /* sx reg,n($s8) */
1860 || (inst
& 0xFF9F07FF) == 0x00800021 /* move reg,$a0-$a3 */
1861 || high_word
== 0x3c1c /* lui $gp,n */
1862 || high_word
== 0x279c /* addiu $gp,$gp,n */
1863 || inst
== 0x0399e021 /* addu $gp,$gp,$t9 */
1864 || inst
== 0x033ce021 /* addu $gp,$t9,$gp */
1867 /* These instructions are part of the prologue, but we don't
1868 need to do anything special to handle them. */
1870 /* The instructions below load $at or $t0 with an immediate
1871 value in preparation for a stack adjustment via
1872 subu $sp,$sp,[$at,$t0]. These instructions could also
1873 initialize a local variable, so we accept them only before
1874 a stack adjustment instruction was seen. */
1875 else if (!seen_sp_adjust
1876 && (high_word
== 0x3c01 /* lui $at,n */
1877 || high_word
== 0x3c08 /* lui $t0,n */
1878 || high_word
== 0x3421 /* ori $at,$at,n */
1879 || high_word
== 0x3508 /* ori $t0,$t0,n */
1880 || high_word
== 0x3401 /* ori $at,$zero,n */
1881 || high_word
== 0x3408 /* ori $t0,$zero,n */
1884 load_immediate_bytes
+= MIPS_INSN32_SIZE
; /* FIXME! */
1888 /* This instruction is not an instruction typically found
1889 in a prologue, so we must have reached the end of the
1891 /* FIXME: brobecker/2004-10-10: Can't we just break out of this
1892 loop now? Why would we need to continue scanning the function
1894 if (end_prologue_addr
== 0)
1895 end_prologue_addr
= cur_pc
;
1899 if (this_cache
!= NULL
)
1902 (frame_unwind_register_signed (next_frame
, NUM_REGS
+ frame_reg
)
1904 /* FIXME: brobecker/2004-09-15: We should be able to get rid of
1905 this assignment below, eventually. But it's still needed
1907 this_cache
->saved_regs
[NUM_REGS
+ mips_regnum (current_gdbarch
)->pc
]
1908 = this_cache
->saved_regs
[NUM_REGS
+ MIPS_RA_REGNUM
];
1911 /* If we didn't reach the end of the prologue when scanning the function
1912 instructions, then set end_prologue_addr to the address of the
1913 instruction immediately after the last one we scanned. */
1914 /* brobecker/2004-10-10: I don't think this would ever happen, but
1915 we may as well be careful and do our best if we have a null
1916 end_prologue_addr. */
1917 if (end_prologue_addr
== 0)
1918 end_prologue_addr
= cur_pc
;
1920 /* In a frameless function, we might have incorrectly
1921 skipped some load immediate instructions. Undo the skipping
1922 if the load immediate was not followed by a stack adjustment. */
1923 if (load_immediate_bytes
&& !seen_sp_adjust
)
1924 end_prologue_addr
-= load_immediate_bytes
;
1926 return end_prologue_addr
;
1929 /* Heuristic unwinder for procedures using 32-bit instructions (covers
1930 both 32-bit and 64-bit MIPS ISAs). Procedures using 16-bit
1931 instructions (a.k.a. MIPS16) are handled by the mips_insn16
1934 static struct mips_frame_cache
*
1935 mips_insn32_frame_cache (struct frame_info
*next_frame
, void **this_cache
)
1937 struct mips_frame_cache
*cache
;
1939 if ((*this_cache
) != NULL
)
1940 return (*this_cache
);
1942 cache
= FRAME_OBSTACK_ZALLOC (struct mips_frame_cache
);
1943 (*this_cache
) = cache
;
1944 cache
->saved_regs
= trad_frame_alloc_saved_regs (next_frame
);
1946 /* Analyze the function prologue. */
1948 const CORE_ADDR pc
= frame_pc_unwind (next_frame
);
1949 CORE_ADDR start_addr
;
1951 find_pc_partial_function (pc
, NULL
, &start_addr
, NULL
);
1952 if (start_addr
== 0)
1953 start_addr
= heuristic_proc_start (pc
);
1954 /* We can't analyze the prologue if we couldn't find the begining
1956 if (start_addr
== 0)
1959 mips32_scan_prologue (start_addr
, pc
, next_frame
, *this_cache
);
1962 /* SP_REGNUM, contains the value and not the address. */
1963 trad_frame_set_value (cache
->saved_regs
, NUM_REGS
+ MIPS_SP_REGNUM
, cache
->base
);
1965 return (*this_cache
);
1969 mips_insn32_frame_this_id (struct frame_info
*next_frame
, void **this_cache
,
1970 struct frame_id
*this_id
)
1972 struct mips_frame_cache
*info
= mips_insn32_frame_cache (next_frame
,
1974 (*this_id
) = frame_id_build (info
->base
, frame_func_unwind (next_frame
));
1978 mips_insn32_frame_prev_register (struct frame_info
*next_frame
,
1980 int regnum
, int *optimizedp
,
1981 enum lval_type
*lvalp
, CORE_ADDR
*addrp
,
1982 int *realnump
, gdb_byte
*valuep
)
1984 struct mips_frame_cache
*info
= mips_insn32_frame_cache (next_frame
,
1986 trad_frame_get_prev_register (next_frame
, info
->saved_regs
, regnum
,
1987 optimizedp
, lvalp
, addrp
, realnump
, valuep
);
1990 static const struct frame_unwind mips_insn32_frame_unwind
=
1993 mips_insn32_frame_this_id
,
1994 mips_insn32_frame_prev_register
1997 static const struct frame_unwind
*
1998 mips_insn32_frame_sniffer (struct frame_info
*next_frame
)
2000 CORE_ADDR pc
= frame_pc_unwind (next_frame
);
2001 if (! mips_pc_is_mips16 (pc
))
2002 return &mips_insn32_frame_unwind
;
2007 mips_insn32_frame_base_address (struct frame_info
*next_frame
,
2010 struct mips_frame_cache
*info
= mips_insn32_frame_cache (next_frame
,
2015 static const struct frame_base mips_insn32_frame_base
=
2017 &mips_insn32_frame_unwind
,
2018 mips_insn32_frame_base_address
,
2019 mips_insn32_frame_base_address
,
2020 mips_insn32_frame_base_address
2023 static const struct frame_base
*
2024 mips_insn32_frame_base_sniffer (struct frame_info
*next_frame
)
2026 if (mips_insn32_frame_sniffer (next_frame
) != NULL
)
2027 return &mips_insn32_frame_base
;
2032 static struct trad_frame_cache
*
2033 mips_stub_frame_cache (struct frame_info
*next_frame
, void **this_cache
)
2036 CORE_ADDR start_addr
;
2037 CORE_ADDR stack_addr
;
2038 struct trad_frame_cache
*this_trad_cache
;
2040 if ((*this_cache
) != NULL
)
2041 return (*this_cache
);
2042 this_trad_cache
= trad_frame_cache_zalloc (next_frame
);
2043 (*this_cache
) = this_trad_cache
;
2045 /* The return address is in the link register. */
2046 trad_frame_set_reg_realreg (this_trad_cache
, PC_REGNUM
, MIPS_RA_REGNUM
);
2048 /* Frame ID, since it's a frameless / stackless function, no stack
2049 space is allocated and SP on entry is the current SP. */
2050 pc
= frame_pc_unwind (next_frame
);
2051 find_pc_partial_function (pc
, NULL
, &start_addr
, NULL
);
2052 stack_addr
= frame_unwind_register_signed (next_frame
, MIPS_SP_REGNUM
);
2053 trad_frame_set_id (this_trad_cache
, frame_id_build (start_addr
, stack_addr
));
2055 /* Assume that the frame's base is the same as the
2057 trad_frame_set_this_base (this_trad_cache
, stack_addr
);
2059 return this_trad_cache
;
2063 mips_stub_frame_this_id (struct frame_info
*next_frame
, void **this_cache
,
2064 struct frame_id
*this_id
)
2066 struct trad_frame_cache
*this_trad_cache
2067 = mips_stub_frame_cache (next_frame
, this_cache
);
2068 trad_frame_get_id (this_trad_cache
, this_id
);
2072 mips_stub_frame_prev_register (struct frame_info
*next_frame
,
2074 int regnum
, int *optimizedp
,
2075 enum lval_type
*lvalp
, CORE_ADDR
*addrp
,
2076 int *realnump
, gdb_byte
*valuep
)
2078 struct trad_frame_cache
*this_trad_cache
2079 = mips_stub_frame_cache (next_frame
, this_cache
);
2080 trad_frame_get_register (this_trad_cache
, next_frame
, regnum
, optimizedp
,
2081 lvalp
, addrp
, realnump
, valuep
);
2084 static const struct frame_unwind mips_stub_frame_unwind
=
2087 mips_stub_frame_this_id
,
2088 mips_stub_frame_prev_register
2091 static const struct frame_unwind
*
2092 mips_stub_frame_sniffer (struct frame_info
*next_frame
)
2094 struct obj_section
*s
;
2095 CORE_ADDR pc
= frame_pc_unwind (next_frame
);
2097 if (in_plt_section (pc
, NULL
))
2098 return &mips_stub_frame_unwind
;
2100 /* Binutils for MIPS puts lazy resolution stubs into .MIPS.stubs. */
2101 s
= find_pc_section (pc
);
2104 && strcmp (bfd_get_section_name (s
->objfile
->obfd
, s
->the_bfd_section
),
2105 ".MIPS.stubs") == 0)
2106 return &mips_stub_frame_unwind
;
2112 mips_stub_frame_base_address (struct frame_info
*next_frame
,
2115 struct trad_frame_cache
*this_trad_cache
2116 = mips_stub_frame_cache (next_frame
, this_cache
);
2117 return trad_frame_get_this_base (this_trad_cache
);
2120 static const struct frame_base mips_stub_frame_base
=
2122 &mips_stub_frame_unwind
,
2123 mips_stub_frame_base_address
,
2124 mips_stub_frame_base_address
,
2125 mips_stub_frame_base_address
2128 static const struct frame_base
*
2129 mips_stub_frame_base_sniffer (struct frame_info
*next_frame
)
2131 if (mips_stub_frame_sniffer (next_frame
) != NULL
)
2132 return &mips_stub_frame_base
;
2138 read_next_frame_reg (struct frame_info
*fi
, int regno
)
2140 /* Always a pseudo. */
2141 gdb_assert (regno
>= NUM_REGS
);
2145 regcache_cooked_read_signed (current_regcache
, regno
, &val
);
2149 return frame_unwind_register_signed (fi
, regno
);
2153 /* mips_addr_bits_remove - remove useless address bits */
2156 mips_addr_bits_remove (CORE_ADDR addr
)
2158 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
2159 if (mips_mask_address_p (tdep
) && (((ULONGEST
) addr
) >> 32 == 0xffffffffUL
))
2160 /* This hack is a work-around for existing boards using PMON, the
2161 simulator, and any other 64-bit targets that doesn't have true
2162 64-bit addressing. On these targets, the upper 32 bits of
2163 addresses are ignored by the hardware. Thus, the PC or SP are
2164 likely to have been sign extended to all 1s by instruction
2165 sequences that load 32-bit addresses. For example, a typical
2166 piece of code that loads an address is this:
2168 lui $r2, <upper 16 bits>
2169 ori $r2, <lower 16 bits>
2171 But the lui sign-extends the value such that the upper 32 bits
2172 may be all 1s. The workaround is simply to mask off these
2173 bits. In the future, gcc may be changed to support true 64-bit
2174 addressing, and this masking will have to be disabled. */
2175 return addr
&= 0xffffffffUL
;
2180 /* mips_software_single_step() is called just before we want to resume
2181 the inferior, if we want to single-step it but there is no hardware
2182 or kernel single-step support (MIPS on GNU/Linux for example). We find
2183 the target of the coming instruction and breakpoint it.
2185 single_step is also called just after the inferior stops. If we had
2186 set up a simulated single-step, we undo our damage. */
2189 mips_software_single_step (enum target_signal sig
, int insert_breakpoints_p
)
2191 CORE_ADDR pc
, next_pc
;
2193 if (insert_breakpoints_p
)
2195 pc
= read_register (mips_regnum (current_gdbarch
)->pc
);
2196 next_pc
= mips_next_pc (pc
);
2198 insert_single_step_breakpoint (next_pc
);
2201 remove_single_step_breakpoints ();
2204 /* Test whether the PC points to the return instruction at the
2205 end of a function. */
2208 mips_about_to_return (CORE_ADDR pc
)
2210 if (mips_pc_is_mips16 (pc
))
2211 /* This mips16 case isn't necessarily reliable. Sometimes the compiler
2212 generates a "jr $ra"; other times it generates code to load
2213 the return address from the stack to an accessible register (such
2214 as $a3), then a "jr" using that register. This second case
2215 is almost impossible to distinguish from an indirect jump
2216 used for switch statements, so we don't even try. */
2217 return mips_fetch_instruction (pc
) == 0xe820; /* jr $ra */
2219 return mips_fetch_instruction (pc
) == 0x3e00008; /* jr $ra */
2223 /* This fencepost looks highly suspicious to me. Removing it also
2224 seems suspicious as it could affect remote debugging across serial
2228 heuristic_proc_start (CORE_ADDR pc
)
2235 pc
= ADDR_BITS_REMOVE (pc
);
2237 fence
= start_pc
- heuristic_fence_post
;
2241 if (heuristic_fence_post
== UINT_MAX
|| fence
< VM_MIN_ADDRESS
)
2242 fence
= VM_MIN_ADDRESS
;
2244 instlen
= mips_pc_is_mips16 (pc
) ? MIPS_INSN16_SIZE
: MIPS_INSN32_SIZE
;
2246 /* search back for previous return */
2247 for (start_pc
-= instlen
;; start_pc
-= instlen
)
2248 if (start_pc
< fence
)
2250 /* It's not clear to me why we reach this point when
2251 stop_soon, but with this test, at least we
2252 don't print out warnings for every child forked (eg, on
2253 decstation). 22apr93 rich@cygnus.com. */
2254 if (stop_soon
== NO_STOP_QUIETLY
)
2256 static int blurb_printed
= 0;
2258 warning (_("GDB can't find the start of the function at 0x%s."),
2263 /* This actually happens frequently in embedded
2264 development, when you first connect to a board
2265 and your stack pointer and pc are nowhere in
2266 particular. This message needs to give people
2267 in that situation enough information to
2268 determine that it's no big deal. */
2269 printf_filtered ("\n\
2270 GDB is unable to find the start of the function at 0x%s\n\
2271 and thus can't determine the size of that function's stack frame.\n\
2272 This means that GDB may be unable to access that stack frame, or\n\
2273 the frames below it.\n\
2274 This problem is most likely caused by an invalid program counter or\n\
2276 However, if you think GDB should simply search farther back\n\
2277 from 0x%s for code which looks like the beginning of a\n\
2278 function, you can increase the range of the search using the `set\n\
2279 heuristic-fence-post' command.\n", paddr_nz (pc
), paddr_nz (pc
));
2286 else if (mips_pc_is_mips16 (start_pc
))
2288 unsigned short inst
;
2290 /* On MIPS16, any one of the following is likely to be the
2291 start of a function:
2295 extend -n followed by 'addiu sp,+n' or 'daddiu sp,+n' */
2296 inst
= mips_fetch_instruction (start_pc
);
2297 if (((inst
& 0xf81f) == 0xe809 && (inst
& 0x700) != 0x700) /* entry */
2298 || (inst
& 0xff80) == 0x6380 /* addiu sp,-n */
2299 || (inst
& 0xff80) == 0xfb80 /* daddiu sp,-n */
2300 || ((inst
& 0xf810) == 0xf010 && seen_adjsp
)) /* extend -n */
2302 else if ((inst
& 0xff00) == 0x6300 /* addiu sp */
2303 || (inst
& 0xff00) == 0xfb00) /* daddiu sp */
2308 else if (mips_about_to_return (start_pc
))
2310 /* Skip return and its delay slot. */
2311 start_pc
+= 2 * MIPS_INSN32_SIZE
;
2318 struct mips_objfile_private
2324 /* According to the current ABI, should the type be passed in a
2325 floating-point register (assuming that there is space)? When there
2326 is no FPU, FP are not even considered as possibile candidates for
2327 FP registers and, consequently this returns false - forces FP
2328 arguments into integer registers. */
2331 fp_register_arg_p (enum type_code typecode
, struct type
*arg_type
)
2333 return ((typecode
== TYPE_CODE_FLT
2335 && (typecode
== TYPE_CODE_STRUCT
2336 || typecode
== TYPE_CODE_UNION
)
2337 && TYPE_NFIELDS (arg_type
) == 1
2338 && TYPE_CODE (TYPE_FIELD_TYPE (arg_type
, 0)) == TYPE_CODE_FLT
))
2339 && MIPS_FPU_TYPE
!= MIPS_FPU_NONE
);
2342 /* On o32, argument passing in GPRs depends on the alignment of the type being
2343 passed. Return 1 if this type must be aligned to a doubleword boundary. */
2346 mips_type_needs_double_align (struct type
*type
)
2348 enum type_code typecode
= TYPE_CODE (type
);
2350 if (typecode
== TYPE_CODE_FLT
&& TYPE_LENGTH (type
) == 8)
2352 else if (typecode
== TYPE_CODE_STRUCT
)
2354 if (TYPE_NFIELDS (type
) < 1)
2356 return mips_type_needs_double_align (TYPE_FIELD_TYPE (type
, 0));
2358 else if (typecode
== TYPE_CODE_UNION
)
2362 n
= TYPE_NFIELDS (type
);
2363 for (i
= 0; i
< n
; i
++)
2364 if (mips_type_needs_double_align (TYPE_FIELD_TYPE (type
, i
)))
2371 /* Adjust the address downward (direction of stack growth) so that it
2372 is correctly aligned for a new stack frame. */
2374 mips_frame_align (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
2376 return align_down (addr
, 16);
2380 mips_eabi_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
2381 struct regcache
*regcache
, CORE_ADDR bp_addr
,
2382 int nargs
, struct value
**args
, CORE_ADDR sp
,
2383 int struct_return
, CORE_ADDR struct_addr
)
2389 int stack_offset
= 0;
2390 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
2391 CORE_ADDR func_addr
= find_function_addr (function
, NULL
);
2393 /* For shared libraries, "t9" needs to point at the function
2395 regcache_cooked_write_signed (regcache
, MIPS_T9_REGNUM
, func_addr
);
2397 /* Set the return address register to point to the entry point of
2398 the program, where a breakpoint lies in wait. */
2399 regcache_cooked_write_signed (regcache
, MIPS_RA_REGNUM
, bp_addr
);
2401 /* First ensure that the stack and structure return address (if any)
2402 are properly aligned. The stack has to be at least 64-bit
2403 aligned even on 32-bit machines, because doubles must be 64-bit
2404 aligned. For n32 and n64, stack frames need to be 128-bit
2405 aligned, so we round to this widest known alignment. */
2407 sp
= align_down (sp
, 16);
2408 struct_addr
= align_down (struct_addr
, 16);
2410 /* Now make space on the stack for the args. We allocate more
2411 than necessary for EABI, because the first few arguments are
2412 passed in registers, but that's OK. */
2413 for (argnum
= 0; argnum
< nargs
; argnum
++)
2414 len
+= align_up (TYPE_LENGTH (value_type (args
[argnum
])),
2415 mips_stack_argsize (gdbarch
));
2416 sp
-= align_up (len
, 16);
2419 fprintf_unfiltered (gdb_stdlog
,
2420 "mips_eabi_push_dummy_call: sp=0x%s allocated %ld\n",
2421 paddr_nz (sp
), (long) align_up (len
, 16));
2423 /* Initialize the integer and float register pointers. */
2424 argreg
= MIPS_A0_REGNUM
;
2425 float_argreg
= mips_fpa0_regnum (current_gdbarch
);
2427 /* The struct_return pointer occupies the first parameter-passing reg. */
2431 fprintf_unfiltered (gdb_stdlog
,
2432 "mips_eabi_push_dummy_call: struct_return reg=%d 0x%s\n",
2433 argreg
, paddr_nz (struct_addr
));
2434 write_register (argreg
++, struct_addr
);
2437 /* Now load as many as possible of the first arguments into
2438 registers, and push the rest onto the stack. Loop thru args
2439 from first to last. */
2440 for (argnum
= 0; argnum
< nargs
; argnum
++)
2442 const gdb_byte
*val
;
2443 gdb_byte valbuf
[MAX_REGISTER_SIZE
];
2444 struct value
*arg
= args
[argnum
];
2445 struct type
*arg_type
= check_typedef (value_type (arg
));
2446 int len
= TYPE_LENGTH (arg_type
);
2447 enum type_code typecode
= TYPE_CODE (arg_type
);
2450 fprintf_unfiltered (gdb_stdlog
,
2451 "mips_eabi_push_dummy_call: %d len=%d type=%d",
2452 argnum
+ 1, len
, (int) typecode
);
2454 /* The EABI passes structures that do not fit in a register by
2456 if (len
> mips_abi_regsize (gdbarch
)
2457 && (typecode
== TYPE_CODE_STRUCT
|| typecode
== TYPE_CODE_UNION
))
2459 store_unsigned_integer (valbuf
, mips_abi_regsize (gdbarch
),
2460 VALUE_ADDRESS (arg
));
2461 typecode
= TYPE_CODE_PTR
;
2462 len
= mips_abi_regsize (gdbarch
);
2465 fprintf_unfiltered (gdb_stdlog
, " push");
2468 val
= value_contents (arg
);
2470 /* 32-bit ABIs always start floating point arguments in an
2471 even-numbered floating point register. Round the FP register
2472 up before the check to see if there are any FP registers
2473 left. Non MIPS_EABI targets also pass the FP in the integer
2474 registers so also round up normal registers. */
2475 if (mips_abi_regsize (gdbarch
) < 8
2476 && fp_register_arg_p (typecode
, arg_type
))
2478 if ((float_argreg
& 1))
2482 /* Floating point arguments passed in registers have to be
2483 treated specially. On 32-bit architectures, doubles
2484 are passed in register pairs; the even register gets
2485 the low word, and the odd register gets the high word.
2486 On non-EABI processors, the first two floating point arguments are
2487 also copied to general registers, because MIPS16 functions
2488 don't use float registers for arguments. This duplication of
2489 arguments in general registers can't hurt non-MIPS16 functions
2490 because those registers are normally skipped. */
2491 /* MIPS_EABI squeezes a struct that contains a single floating
2492 point value into an FP register instead of pushing it onto the
2494 if (fp_register_arg_p (typecode
, arg_type
)
2495 && float_argreg
<= MIPS_LAST_FP_ARG_REGNUM
)
2497 if (mips_abi_regsize (gdbarch
) < 8 && len
== 8)
2499 int low_offset
= TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
? 4 : 0;
2500 unsigned long regval
;
2502 /* Write the low word of the double to the even register(s). */
2503 regval
= extract_unsigned_integer (val
+ low_offset
, 4);
2505 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
2506 float_argreg
, phex (regval
, 4));
2507 write_register (float_argreg
++, regval
);
2509 /* Write the high word of the double to the odd register(s). */
2510 regval
= extract_unsigned_integer (val
+ 4 - low_offset
, 4);
2512 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
2513 float_argreg
, phex (regval
, 4));
2514 write_register (float_argreg
++, regval
);
2518 /* This is a floating point value that fits entirely
2519 in a single register. */
2520 /* On 32 bit ABI's the float_argreg is further adjusted
2521 above to ensure that it is even register aligned. */
2522 LONGEST regval
= extract_unsigned_integer (val
, len
);
2524 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
2525 float_argreg
, phex (regval
, len
));
2526 write_register (float_argreg
++, regval
);
2531 /* Copy the argument to general registers or the stack in
2532 register-sized pieces. Large arguments are split between
2533 registers and stack. */
2534 /* Note: structs whose size is not a multiple of
2535 mips_abi_regsize() are treated specially: Irix cc passes
2536 them in registers where gcc sometimes puts them on the
2537 stack. For maximum compatibility, we will put them in
2539 int odd_sized_struct
= ((len
> mips_abi_regsize (gdbarch
))
2540 && (len
% mips_abi_regsize (gdbarch
) != 0));
2542 /* Note: Floating-point values that didn't fit into an FP
2543 register are only written to memory. */
2546 /* Remember if the argument was written to the stack. */
2547 int stack_used_p
= 0;
2548 int partial_len
= (len
< mips_abi_regsize (gdbarch
)
2549 ? len
: mips_abi_regsize (gdbarch
));
2552 fprintf_unfiltered (gdb_stdlog
, " -- partial=%d",
2555 /* Write this portion of the argument to the stack. */
2556 if (argreg
> MIPS_LAST_ARG_REGNUM
2558 || fp_register_arg_p (typecode
, arg_type
))
2560 /* Should shorter than int integer values be
2561 promoted to int before being stored? */
2562 int longword_offset
= 0;
2565 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
2567 if (mips_stack_argsize (gdbarch
) == 8
2568 && (typecode
== TYPE_CODE_INT
2569 || typecode
== TYPE_CODE_PTR
2570 || typecode
== TYPE_CODE_FLT
) && len
<= 4)
2571 longword_offset
= mips_stack_argsize (gdbarch
) - len
;
2572 else if ((typecode
== TYPE_CODE_STRUCT
2573 || typecode
== TYPE_CODE_UNION
)
2574 && (TYPE_LENGTH (arg_type
)
2575 < mips_stack_argsize (gdbarch
)))
2576 longword_offset
= mips_stack_argsize (gdbarch
) - len
;
2581 fprintf_unfiltered (gdb_stdlog
, " - stack_offset=0x%s",
2582 paddr_nz (stack_offset
));
2583 fprintf_unfiltered (gdb_stdlog
, " longword_offset=0x%s",
2584 paddr_nz (longword_offset
));
2587 addr
= sp
+ stack_offset
+ longword_offset
;
2592 fprintf_unfiltered (gdb_stdlog
, " @0x%s ",
2594 for (i
= 0; i
< partial_len
; i
++)
2596 fprintf_unfiltered (gdb_stdlog
, "%02x",
2600 write_memory (addr
, val
, partial_len
);
2603 /* Note!!! This is NOT an else clause. Odd sized
2604 structs may go thru BOTH paths. Floating point
2605 arguments will not. */
2606 /* Write this portion of the argument to a general
2607 purpose register. */
2608 if (argreg
<= MIPS_LAST_ARG_REGNUM
2609 && !fp_register_arg_p (typecode
, arg_type
))
2612 extract_unsigned_integer (val
, partial_len
);
2615 fprintf_filtered (gdb_stdlog
, " - reg=%d val=%s",
2618 mips_abi_regsize (gdbarch
)));
2619 write_register (argreg
, regval
);
2626 /* Compute the the offset into the stack at which we
2627 will copy the next parameter.
2629 In the new EABI (and the NABI32), the stack_offset
2630 only needs to be adjusted when it has been used. */
2633 stack_offset
+= align_up (partial_len
,
2634 mips_stack_argsize (gdbarch
));
2638 fprintf_unfiltered (gdb_stdlog
, "\n");
2641 regcache_cooked_write_signed (regcache
, MIPS_SP_REGNUM
, sp
);
2643 /* Return adjusted stack pointer. */
2647 /* Determin the return value convention being used. */
2649 static enum return_value_convention
2650 mips_eabi_return_value (struct gdbarch
*gdbarch
,
2651 struct type
*type
, struct regcache
*regcache
,
2652 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
2654 if (TYPE_LENGTH (type
) > 2 * mips_abi_regsize (gdbarch
))
2655 return RETURN_VALUE_STRUCT_CONVENTION
;
2657 memset (readbuf
, 0, TYPE_LENGTH (type
));
2658 return RETURN_VALUE_REGISTER_CONVENTION
;
2662 /* N32/N64 ABI stuff. */
2665 mips_n32n64_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
2666 struct regcache
*regcache
, CORE_ADDR bp_addr
,
2667 int nargs
, struct value
**args
, CORE_ADDR sp
,
2668 int struct_return
, CORE_ADDR struct_addr
)
2674 int stack_offset
= 0;
2675 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
2676 CORE_ADDR func_addr
= find_function_addr (function
, NULL
);
2678 /* For shared libraries, "t9" needs to point at the function
2680 regcache_cooked_write_signed (regcache
, MIPS_T9_REGNUM
, func_addr
);
2682 /* Set the return address register to point to the entry point of
2683 the program, where a breakpoint lies in wait. */
2684 regcache_cooked_write_signed (regcache
, MIPS_RA_REGNUM
, bp_addr
);
2686 /* First ensure that the stack and structure return address (if any)
2687 are properly aligned. The stack has to be at least 64-bit
2688 aligned even on 32-bit machines, because doubles must be 64-bit
2689 aligned. For n32 and n64, stack frames need to be 128-bit
2690 aligned, so we round to this widest known alignment. */
2692 sp
= align_down (sp
, 16);
2693 struct_addr
= align_down (struct_addr
, 16);
2695 /* Now make space on the stack for the args. */
2696 for (argnum
= 0; argnum
< nargs
; argnum
++)
2697 len
+= align_up (TYPE_LENGTH (value_type (args
[argnum
])),
2698 mips_stack_argsize (gdbarch
));
2699 sp
-= align_up (len
, 16);
2702 fprintf_unfiltered (gdb_stdlog
,
2703 "mips_n32n64_push_dummy_call: sp=0x%s allocated %ld\n",
2704 paddr_nz (sp
), (long) align_up (len
, 16));
2706 /* Initialize the integer and float register pointers. */
2707 argreg
= MIPS_A0_REGNUM
;
2708 float_argreg
= mips_fpa0_regnum (current_gdbarch
);
2710 /* The struct_return pointer occupies the first parameter-passing reg. */
2714 fprintf_unfiltered (gdb_stdlog
,
2715 "mips_n32n64_push_dummy_call: struct_return reg=%d 0x%s\n",
2716 argreg
, paddr_nz (struct_addr
));
2717 write_register (argreg
++, struct_addr
);
2720 /* Now load as many as possible of the first arguments into
2721 registers, and push the rest onto the stack. Loop thru args
2722 from first to last. */
2723 for (argnum
= 0; argnum
< nargs
; argnum
++)
2725 const gdb_byte
*val
;
2726 struct value
*arg
= args
[argnum
];
2727 struct type
*arg_type
= check_typedef (value_type (arg
));
2728 int len
= TYPE_LENGTH (arg_type
);
2729 enum type_code typecode
= TYPE_CODE (arg_type
);
2732 fprintf_unfiltered (gdb_stdlog
,
2733 "mips_n32n64_push_dummy_call: %d len=%d type=%d",
2734 argnum
+ 1, len
, (int) typecode
);
2736 val
= value_contents (arg
);
2738 if (fp_register_arg_p (typecode
, arg_type
)
2739 && float_argreg
<= MIPS_LAST_FP_ARG_REGNUM
)
2741 /* This is a floating point value that fits entirely
2742 in a single register. */
2743 /* On 32 bit ABI's the float_argreg is further adjusted
2744 above to ensure that it is even register aligned. */
2745 LONGEST regval
= extract_unsigned_integer (val
, len
);
2747 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
2748 float_argreg
, phex (regval
, len
));
2749 write_register (float_argreg
++, regval
);
2752 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
2753 argreg
, phex (regval
, len
));
2754 write_register (argreg
, regval
);
2759 /* Copy the argument to general registers or the stack in
2760 register-sized pieces. Large arguments are split between
2761 registers and stack. */
2762 /* Note: structs whose size is not a multiple of
2763 mips_abi_regsize() are treated specially: Irix cc passes
2764 them in registers where gcc sometimes puts them on the
2765 stack. For maximum compatibility, we will put them in
2767 int odd_sized_struct
= ((len
> mips_abi_regsize (gdbarch
))
2768 && (len
% mips_abi_regsize (gdbarch
) != 0));
2769 /* Note: Floating-point values that didn't fit into an FP
2770 register are only written to memory. */
2773 /* Rememer if the argument was written to the stack. */
2774 int stack_used_p
= 0;
2775 int partial_len
= (len
< mips_abi_regsize (gdbarch
)
2776 ? len
: mips_abi_regsize (gdbarch
));
2779 fprintf_unfiltered (gdb_stdlog
, " -- partial=%d",
2782 /* Write this portion of the argument to the stack. */
2783 if (argreg
> MIPS_LAST_ARG_REGNUM
2785 || fp_register_arg_p (typecode
, arg_type
))
2787 /* Should shorter than int integer values be
2788 promoted to int before being stored? */
2789 int longword_offset
= 0;
2792 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
2794 if (mips_stack_argsize (gdbarch
) == 8
2795 && (typecode
== TYPE_CODE_INT
2796 || typecode
== TYPE_CODE_PTR
2797 || typecode
== TYPE_CODE_FLT
) && len
<= 4)
2798 longword_offset
= mips_stack_argsize (gdbarch
) - len
;
2803 fprintf_unfiltered (gdb_stdlog
, " - stack_offset=0x%s",
2804 paddr_nz (stack_offset
));
2805 fprintf_unfiltered (gdb_stdlog
, " longword_offset=0x%s",
2806 paddr_nz (longword_offset
));
2809 addr
= sp
+ stack_offset
+ longword_offset
;
2814 fprintf_unfiltered (gdb_stdlog
, " @0x%s ",
2816 for (i
= 0; i
< partial_len
; i
++)
2818 fprintf_unfiltered (gdb_stdlog
, "%02x",
2822 write_memory (addr
, val
, partial_len
);
2825 /* Note!!! This is NOT an else clause. Odd sized
2826 structs may go thru BOTH paths. Floating point
2827 arguments will not. */
2828 /* Write this portion of the argument to a general
2829 purpose register. */
2830 if (argreg
<= MIPS_LAST_ARG_REGNUM
2831 && !fp_register_arg_p (typecode
, arg_type
))
2834 extract_unsigned_integer (val
, partial_len
);
2836 /* A non-floating-point argument being passed in a
2837 general register. If a struct or union, and if
2838 the remaining length is smaller than the register
2839 size, we have to adjust the register value on
2842 It does not seem to be necessary to do the
2843 same for integral types.
2845 cagney/2001-07-23: gdb/179: Also, GCC, when
2846 outputting LE O32 with sizeof (struct) <
2847 mips_abi_regsize(), generates a left shift as
2848 part of storing the argument in a register a
2849 register (the left shift isn't generated when
2850 sizeof (struct) >= mips_abi_regsize()). Since
2851 it is quite possible that this is GCC
2852 contradicting the LE/O32 ABI, GDB has not been
2853 adjusted to accommodate this. Either someone
2854 needs to demonstrate that the LE/O32 ABI
2855 specifies such a left shift OR this new ABI gets
2856 identified as such and GDB gets tweaked
2859 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
2860 && partial_len
< mips_abi_regsize (gdbarch
)
2861 && (typecode
== TYPE_CODE_STRUCT
||
2862 typecode
== TYPE_CODE_UNION
))
2863 regval
<<= ((mips_abi_regsize (gdbarch
) - partial_len
) *
2867 fprintf_filtered (gdb_stdlog
, " - reg=%d val=%s",
2870 mips_abi_regsize (gdbarch
)));
2871 write_register (argreg
, regval
);
2878 /* Compute the the offset into the stack at which we
2879 will copy the next parameter.
2881 In N32 (N64?), the stack_offset only needs to be
2882 adjusted when it has been used. */
2885 stack_offset
+= align_up (partial_len
,
2886 mips_stack_argsize (gdbarch
));
2890 fprintf_unfiltered (gdb_stdlog
, "\n");
2893 regcache_cooked_write_signed (regcache
, MIPS_SP_REGNUM
, sp
);
2895 /* Return adjusted stack pointer. */
2899 static enum return_value_convention
2900 mips_n32n64_return_value (struct gdbarch
*gdbarch
,
2901 struct type
*type
, struct regcache
*regcache
,
2902 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
2904 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
2905 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
2906 || TYPE_CODE (type
) == TYPE_CODE_UNION
2907 || TYPE_CODE (type
) == TYPE_CODE_ARRAY
2908 || TYPE_LENGTH (type
) > 2 * mips_abi_regsize (gdbarch
))
2909 return RETURN_VALUE_STRUCT_CONVENTION
;
2910 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
2911 && TYPE_LENGTH (type
) == 16
2912 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
2914 /* A 128-bit floating-point value fills both $f0 and $f2. The
2915 two registers are used in the same as memory order, so the
2916 eight bytes with the lower memory address are in $f0. */
2918 fprintf_unfiltered (gdb_stderr
, "Return float in $f0 and $f2\n");
2919 mips_xfer_register (regcache
,
2920 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
,
2921 8, TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
2922 mips_xfer_register (regcache
,
2923 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
+ 2,
2924 8, TARGET_BYTE_ORDER
, readbuf
? readbuf
+ 8 : readbuf
,
2925 writebuf
? writebuf
+ 8 : writebuf
, 0);
2926 return RETURN_VALUE_REGISTER_CONVENTION
;
2928 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
2929 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
2931 /* A floating-point value belongs in the least significant part
2934 fprintf_unfiltered (gdb_stderr
, "Return float in $fp0\n");
2935 mips_xfer_register (regcache
,
2936 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
,
2938 TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
2939 return RETURN_VALUE_REGISTER_CONVENTION
;
2941 else if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
2942 && TYPE_NFIELDS (type
) <= 2
2943 && TYPE_NFIELDS (type
) >= 1
2944 && ((TYPE_NFIELDS (type
) == 1
2945 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 0))
2947 || (TYPE_NFIELDS (type
) == 2
2948 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 0))
2950 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 1))
2952 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
2954 /* A struct that contains one or two floats. Each value is part
2955 in the least significant part of their floating point
2959 for (field
= 0, regnum
= mips_regnum (current_gdbarch
)->fp0
;
2960 field
< TYPE_NFIELDS (type
); field
++, regnum
+= 2)
2962 int offset
= (FIELD_BITPOS (TYPE_FIELDS (type
)[field
])
2965 fprintf_unfiltered (gdb_stderr
, "Return float struct+%d\n",
2967 mips_xfer_register (regcache
, NUM_REGS
+ regnum
,
2968 TYPE_LENGTH (TYPE_FIELD_TYPE (type
, field
)),
2969 TARGET_BYTE_ORDER
, readbuf
, writebuf
, offset
);
2971 return RETURN_VALUE_REGISTER_CONVENTION
;
2973 else if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
2974 || TYPE_CODE (type
) == TYPE_CODE_UNION
)
2976 /* A structure or union. Extract the left justified value,
2977 regardless of the byte order. I.e. DO NOT USE
2981 for (offset
= 0, regnum
= MIPS_V0_REGNUM
;
2982 offset
< TYPE_LENGTH (type
);
2983 offset
+= register_size (current_gdbarch
, regnum
), regnum
++)
2985 int xfer
= register_size (current_gdbarch
, regnum
);
2986 if (offset
+ xfer
> TYPE_LENGTH (type
))
2987 xfer
= TYPE_LENGTH (type
) - offset
;
2989 fprintf_unfiltered (gdb_stderr
, "Return struct+%d:%d in $%d\n",
2990 offset
, xfer
, regnum
);
2991 mips_xfer_register (regcache
, NUM_REGS
+ regnum
, xfer
,
2992 BFD_ENDIAN_UNKNOWN
, readbuf
, writebuf
, offset
);
2994 return RETURN_VALUE_REGISTER_CONVENTION
;
2998 /* A scalar extract each part but least-significant-byte
3002 for (offset
= 0, regnum
= MIPS_V0_REGNUM
;
3003 offset
< TYPE_LENGTH (type
);
3004 offset
+= register_size (current_gdbarch
, regnum
), regnum
++)
3006 int xfer
= register_size (current_gdbarch
, regnum
);
3007 if (offset
+ xfer
> TYPE_LENGTH (type
))
3008 xfer
= TYPE_LENGTH (type
) - offset
;
3010 fprintf_unfiltered (gdb_stderr
, "Return scalar+%d:%d in $%d\n",
3011 offset
, xfer
, regnum
);
3012 mips_xfer_register (regcache
, NUM_REGS
+ regnum
, xfer
,
3013 TARGET_BYTE_ORDER
, readbuf
, writebuf
, offset
);
3015 return RETURN_VALUE_REGISTER_CONVENTION
;
3019 /* O32 ABI stuff. */
3022 mips_o32_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
3023 struct regcache
*regcache
, CORE_ADDR bp_addr
,
3024 int nargs
, struct value
**args
, CORE_ADDR sp
,
3025 int struct_return
, CORE_ADDR struct_addr
)
3031 int stack_offset
= 0;
3032 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3033 CORE_ADDR func_addr
= find_function_addr (function
, NULL
);
3035 /* For shared libraries, "t9" needs to point at the function
3037 regcache_cooked_write_signed (regcache
, MIPS_T9_REGNUM
, func_addr
);
3039 /* Set the return address register to point to the entry point of
3040 the program, where a breakpoint lies in wait. */
3041 regcache_cooked_write_signed (regcache
, MIPS_RA_REGNUM
, bp_addr
);
3043 /* First ensure that the stack and structure return address (if any)
3044 are properly aligned. The stack has to be at least 64-bit
3045 aligned even on 32-bit machines, because doubles must be 64-bit
3046 aligned. For n32 and n64, stack frames need to be 128-bit
3047 aligned, so we round to this widest known alignment. */
3049 sp
= align_down (sp
, 16);
3050 struct_addr
= align_down (struct_addr
, 16);
3052 /* Now make space on the stack for the args. */
3053 for (argnum
= 0; argnum
< nargs
; argnum
++)
3054 len
+= align_up (TYPE_LENGTH (value_type (args
[argnum
])),
3055 mips_stack_argsize (gdbarch
));
3056 sp
-= align_up (len
, 16);
3059 fprintf_unfiltered (gdb_stdlog
,
3060 "mips_o32_push_dummy_call: sp=0x%s allocated %ld\n",
3061 paddr_nz (sp
), (long) align_up (len
, 16));
3063 /* Initialize the integer and float register pointers. */
3064 argreg
= MIPS_A0_REGNUM
;
3065 float_argreg
= mips_fpa0_regnum (current_gdbarch
);
3067 /* The struct_return pointer occupies the first parameter-passing reg. */
3071 fprintf_unfiltered (gdb_stdlog
,
3072 "mips_o32_push_dummy_call: struct_return reg=%d 0x%s\n",
3073 argreg
, paddr_nz (struct_addr
));
3074 write_register (argreg
++, struct_addr
);
3075 stack_offset
+= mips_stack_argsize (gdbarch
);
3078 /* Now load as many as possible of the first arguments into
3079 registers, and push the rest onto the stack. Loop thru args
3080 from first to last. */
3081 for (argnum
= 0; argnum
< nargs
; argnum
++)
3083 const gdb_byte
*val
;
3084 struct value
*arg
= args
[argnum
];
3085 struct type
*arg_type
= check_typedef (value_type (arg
));
3086 int len
= TYPE_LENGTH (arg_type
);
3087 enum type_code typecode
= TYPE_CODE (arg_type
);
3090 fprintf_unfiltered (gdb_stdlog
,
3091 "mips_o32_push_dummy_call: %d len=%d type=%d",
3092 argnum
+ 1, len
, (int) typecode
);
3094 val
= value_contents (arg
);
3096 /* 32-bit ABIs always start floating point arguments in an
3097 even-numbered floating point register. Round the FP register
3098 up before the check to see if there are any FP registers
3099 left. O32/O64 targets also pass the FP in the integer
3100 registers so also round up normal registers. */
3101 if (mips_abi_regsize (gdbarch
) < 8
3102 && fp_register_arg_p (typecode
, arg_type
))
3104 if ((float_argreg
& 1))
3108 /* Floating point arguments passed in registers have to be
3109 treated specially. On 32-bit architectures, doubles
3110 are passed in register pairs; the even register gets
3111 the low word, and the odd register gets the high word.
3112 On O32/O64, the first two floating point arguments are
3113 also copied to general registers, because MIPS16 functions
3114 don't use float registers for arguments. This duplication of
3115 arguments in general registers can't hurt non-MIPS16 functions
3116 because those registers are normally skipped. */
3118 if (fp_register_arg_p (typecode
, arg_type
)
3119 && float_argreg
<= MIPS_LAST_FP_ARG_REGNUM
)
3121 if (mips_abi_regsize (gdbarch
) < 8 && len
== 8)
3123 int low_offset
= TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
? 4 : 0;
3124 unsigned long regval
;
3126 /* Write the low word of the double to the even register(s). */
3127 regval
= extract_unsigned_integer (val
+ low_offset
, 4);
3129 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3130 float_argreg
, phex (regval
, 4));
3131 write_register (float_argreg
++, regval
);
3133 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3134 argreg
, phex (regval
, 4));
3135 write_register (argreg
++, regval
);
3137 /* Write the high word of the double to the odd register(s). */
3138 regval
= extract_unsigned_integer (val
+ 4 - low_offset
, 4);
3140 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3141 float_argreg
, phex (regval
, 4));
3142 write_register (float_argreg
++, regval
);
3145 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3146 argreg
, phex (regval
, 4));
3147 write_register (argreg
++, regval
);
3151 /* This is a floating point value that fits entirely
3152 in a single register. */
3153 /* On 32 bit ABI's the float_argreg is further adjusted
3154 above to ensure that it is even register aligned. */
3155 LONGEST regval
= extract_unsigned_integer (val
, len
);
3157 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3158 float_argreg
, phex (regval
, len
));
3159 write_register (float_argreg
++, regval
);
3160 /* CAGNEY: 32 bit MIPS ABI's always reserve two FP
3161 registers for each argument. The below is (my
3162 guess) to ensure that the corresponding integer
3163 register has reserved the same space. */
3165 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3166 argreg
, phex (regval
, len
));
3167 write_register (argreg
, regval
);
3168 argreg
+= (mips_abi_regsize (gdbarch
) == 8) ? 1 : 2;
3170 /* Reserve space for the FP register. */
3171 stack_offset
+= align_up (len
, mips_stack_argsize (gdbarch
));
3175 /* Copy the argument to general registers or the stack in
3176 register-sized pieces. Large arguments are split between
3177 registers and stack. */
3178 /* Note: structs whose size is not a multiple of
3179 mips_abi_regsize() are treated specially: Irix cc passes
3180 them in registers where gcc sometimes puts them on the
3181 stack. For maximum compatibility, we will put them in
3183 int odd_sized_struct
= ((len
> mips_abi_regsize (gdbarch
))
3184 && (len
% mips_abi_regsize (gdbarch
) != 0));
3185 /* Structures should be aligned to eight bytes (even arg registers)
3186 on MIPS_ABI_O32, if their first member has double precision. */
3187 if (mips_abi_regsize (gdbarch
) < 8
3188 && mips_type_needs_double_align (arg_type
))
3193 /* Note: Floating-point values that didn't fit into an FP
3194 register are only written to memory. */
3197 /* Remember if the argument was written to the stack. */
3198 int stack_used_p
= 0;
3199 int partial_len
= (len
< mips_abi_regsize (gdbarch
)
3200 ? len
: mips_abi_regsize (gdbarch
));
3203 fprintf_unfiltered (gdb_stdlog
, " -- partial=%d",
3206 /* Write this portion of the argument to the stack. */
3207 if (argreg
> MIPS_LAST_ARG_REGNUM
3209 || fp_register_arg_p (typecode
, arg_type
))
3211 /* Should shorter than int integer values be
3212 promoted to int before being stored? */
3213 int longword_offset
= 0;
3216 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3218 if (mips_stack_argsize (gdbarch
) == 8
3219 && (typecode
== TYPE_CODE_INT
3220 || typecode
== TYPE_CODE_PTR
3221 || typecode
== TYPE_CODE_FLT
) && len
<= 4)
3222 longword_offset
= mips_stack_argsize (gdbarch
) - len
;
3227 fprintf_unfiltered (gdb_stdlog
, " - stack_offset=0x%s",
3228 paddr_nz (stack_offset
));
3229 fprintf_unfiltered (gdb_stdlog
, " longword_offset=0x%s",
3230 paddr_nz (longword_offset
));
3233 addr
= sp
+ stack_offset
+ longword_offset
;
3238 fprintf_unfiltered (gdb_stdlog
, " @0x%s ",
3240 for (i
= 0; i
< partial_len
; i
++)
3242 fprintf_unfiltered (gdb_stdlog
, "%02x",
3246 write_memory (addr
, val
, partial_len
);
3249 /* Note!!! This is NOT an else clause. Odd sized
3250 structs may go thru BOTH paths. Floating point
3251 arguments will not. */
3252 /* Write this portion of the argument to a general
3253 purpose register. */
3254 if (argreg
<= MIPS_LAST_ARG_REGNUM
3255 && !fp_register_arg_p (typecode
, arg_type
))
3257 LONGEST regval
= extract_signed_integer (val
, partial_len
);
3258 /* Value may need to be sign extended, because
3259 mips_isa_regsize() != mips_abi_regsize(). */
3261 /* A non-floating-point argument being passed in a
3262 general register. If a struct or union, and if
3263 the remaining length is smaller than the register
3264 size, we have to adjust the register value on
3267 It does not seem to be necessary to do the
3268 same for integral types.
3270 Also don't do this adjustment on O64 binaries.
3272 cagney/2001-07-23: gdb/179: Also, GCC, when
3273 outputting LE O32 with sizeof (struct) <
3274 mips_abi_regsize(), generates a left shift as
3275 part of storing the argument in a register a
3276 register (the left shift isn't generated when
3277 sizeof (struct) >= mips_abi_regsize()). Since
3278 it is quite possible that this is GCC
3279 contradicting the LE/O32 ABI, GDB has not been
3280 adjusted to accommodate this. Either someone
3281 needs to demonstrate that the LE/O32 ABI
3282 specifies such a left shift OR this new ABI gets
3283 identified as such and GDB gets tweaked
3286 if (mips_abi_regsize (gdbarch
) < 8
3287 && TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
3288 && partial_len
< mips_abi_regsize (gdbarch
)
3289 && (typecode
== TYPE_CODE_STRUCT
||
3290 typecode
== TYPE_CODE_UNION
))
3291 regval
<<= ((mips_abi_regsize (gdbarch
) - partial_len
) *
3295 fprintf_filtered (gdb_stdlog
, " - reg=%d val=%s",
3298 mips_abi_regsize (gdbarch
)));
3299 write_register (argreg
, regval
);
3302 /* Prevent subsequent floating point arguments from
3303 being passed in floating point registers. */
3304 float_argreg
= MIPS_LAST_FP_ARG_REGNUM
+ 1;
3310 /* Compute the the offset into the stack at which we
3311 will copy the next parameter.
3313 In older ABIs, the caller reserved space for
3314 registers that contained arguments. This was loosely
3315 refered to as their "home". Consequently, space is
3316 always allocated. */
3318 stack_offset
+= align_up (partial_len
,
3319 mips_stack_argsize (gdbarch
));
3323 fprintf_unfiltered (gdb_stdlog
, "\n");
3326 regcache_cooked_write_signed (regcache
, MIPS_SP_REGNUM
, sp
);
3328 /* Return adjusted stack pointer. */
3332 static enum return_value_convention
3333 mips_o32_return_value (struct gdbarch
*gdbarch
, struct type
*type
,
3334 struct regcache
*regcache
,
3335 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
3337 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
3339 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
3340 || TYPE_CODE (type
) == TYPE_CODE_UNION
3341 || TYPE_CODE (type
) == TYPE_CODE_ARRAY
)
3342 return RETURN_VALUE_STRUCT_CONVENTION
;
3343 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
3344 && TYPE_LENGTH (type
) == 4 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
3346 /* A single-precision floating-point value. It fits in the
3347 least significant part of FP0. */
3349 fprintf_unfiltered (gdb_stderr
, "Return float in $fp0\n");
3350 mips_xfer_register (regcache
,
3351 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
,
3353 TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
3354 return RETURN_VALUE_REGISTER_CONVENTION
;
3356 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
3357 && TYPE_LENGTH (type
) == 8 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
3359 /* A double-precision floating-point value. The most
3360 significant part goes in FP1, and the least significant in
3363 fprintf_unfiltered (gdb_stderr
, "Return float in $fp1/$fp0\n");
3364 switch (TARGET_BYTE_ORDER
)
3366 case BFD_ENDIAN_LITTLE
:
3367 mips_xfer_register (regcache
,
3368 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
+
3369 0, 4, TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
3370 mips_xfer_register (regcache
,
3371 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
+
3372 1, 4, TARGET_BYTE_ORDER
, readbuf
, writebuf
, 4);
3374 case BFD_ENDIAN_BIG
:
3375 mips_xfer_register (regcache
,
3376 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
+
3377 1, 4, TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
3378 mips_xfer_register (regcache
,
3379 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
+
3380 0, 4, TARGET_BYTE_ORDER
, readbuf
, writebuf
, 4);
3383 internal_error (__FILE__
, __LINE__
, _("bad switch"));
3385 return RETURN_VALUE_REGISTER_CONVENTION
;
3388 else if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
3389 && TYPE_NFIELDS (type
) <= 2
3390 && TYPE_NFIELDS (type
) >= 1
3391 && ((TYPE_NFIELDS (type
) == 1
3392 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 0))
3394 || (TYPE_NFIELDS (type
) == 2
3395 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 0))
3397 && (TYPE_CODE (TYPE_FIELD_TYPE (type
, 1))
3399 && tdep
->mips_fpu_type
!= MIPS_FPU_NONE
)
3401 /* A struct that contains one or two floats. Each value is part
3402 in the least significant part of their floating point
3404 gdb_byte reg
[MAX_REGISTER_SIZE
];
3407 for (field
= 0, regnum
= mips_regnum (current_gdbarch
)->fp0
;
3408 field
< TYPE_NFIELDS (type
); field
++, regnum
+= 2)
3410 int offset
= (FIELD_BITPOS (TYPE_FIELDS (type
)[field
])
3413 fprintf_unfiltered (gdb_stderr
, "Return float struct+%d\n",
3415 mips_xfer_register (regcache
, NUM_REGS
+ regnum
,
3416 TYPE_LENGTH (TYPE_FIELD_TYPE (type
, field
)),
3417 TARGET_BYTE_ORDER
, readbuf
, writebuf
, offset
);
3419 return RETURN_VALUE_REGISTER_CONVENTION
;
3423 else if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
3424 || TYPE_CODE (type
) == TYPE_CODE_UNION
)
3426 /* A structure or union. Extract the left justified value,
3427 regardless of the byte order. I.e. DO NOT USE
3431 for (offset
= 0, regnum
= MIPS_V0_REGNUM
;
3432 offset
< TYPE_LENGTH (type
);
3433 offset
+= register_size (current_gdbarch
, regnum
), regnum
++)
3435 int xfer
= register_size (current_gdbarch
, regnum
);
3436 if (offset
+ xfer
> TYPE_LENGTH (type
))
3437 xfer
= TYPE_LENGTH (type
) - offset
;
3439 fprintf_unfiltered (gdb_stderr
, "Return struct+%d:%d in $%d\n",
3440 offset
, xfer
, regnum
);
3441 mips_xfer_register (regcache
, NUM_REGS
+ regnum
, xfer
,
3442 BFD_ENDIAN_UNKNOWN
, readbuf
, writebuf
, offset
);
3444 return RETURN_VALUE_REGISTER_CONVENTION
;
3449 /* A scalar extract each part but least-significant-byte
3450 justified. o32 thinks registers are 4 byte, regardless of
3451 the ISA. mips_stack_argsize controls this. */
3454 for (offset
= 0, regnum
= MIPS_V0_REGNUM
;
3455 offset
< TYPE_LENGTH (type
);
3456 offset
+= mips_stack_argsize (gdbarch
), regnum
++)
3458 int xfer
= mips_stack_argsize (gdbarch
);
3459 if (offset
+ xfer
> TYPE_LENGTH (type
))
3460 xfer
= TYPE_LENGTH (type
) - offset
;
3462 fprintf_unfiltered (gdb_stderr
, "Return scalar+%d:%d in $%d\n",
3463 offset
, xfer
, regnum
);
3464 mips_xfer_register (regcache
, NUM_REGS
+ regnum
, xfer
,
3465 TARGET_BYTE_ORDER
, readbuf
, writebuf
, offset
);
3467 return RETURN_VALUE_REGISTER_CONVENTION
;
3471 /* O64 ABI. This is a hacked up kind of 64-bit version of the o32
3475 mips_o64_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
3476 struct regcache
*regcache
, CORE_ADDR bp_addr
,
3478 struct value
**args
, CORE_ADDR sp
,
3479 int struct_return
, CORE_ADDR struct_addr
)
3485 int stack_offset
= 0;
3486 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3487 CORE_ADDR func_addr
= find_function_addr (function
, NULL
);
3489 /* For shared libraries, "t9" needs to point at the function
3491 regcache_cooked_write_signed (regcache
, MIPS_T9_REGNUM
, func_addr
);
3493 /* Set the return address register to point to the entry point of
3494 the program, where a breakpoint lies in wait. */
3495 regcache_cooked_write_signed (regcache
, MIPS_RA_REGNUM
, bp_addr
);
3497 /* First ensure that the stack and structure return address (if any)
3498 are properly aligned. The stack has to be at least 64-bit
3499 aligned even on 32-bit machines, because doubles must be 64-bit
3500 aligned. For n32 and n64, stack frames need to be 128-bit
3501 aligned, so we round to this widest known alignment. */
3503 sp
= align_down (sp
, 16);
3504 struct_addr
= align_down (struct_addr
, 16);
3506 /* Now make space on the stack for the args. */
3507 for (argnum
= 0; argnum
< nargs
; argnum
++)
3508 len
+= align_up (TYPE_LENGTH (value_type (args
[argnum
])),
3509 mips_stack_argsize (gdbarch
));
3510 sp
-= align_up (len
, 16);
3513 fprintf_unfiltered (gdb_stdlog
,
3514 "mips_o64_push_dummy_call: sp=0x%s allocated %ld\n",
3515 paddr_nz (sp
), (long) align_up (len
, 16));
3517 /* Initialize the integer and float register pointers. */
3518 argreg
= MIPS_A0_REGNUM
;
3519 float_argreg
= mips_fpa0_regnum (current_gdbarch
);
3521 /* The struct_return pointer occupies the first parameter-passing reg. */
3525 fprintf_unfiltered (gdb_stdlog
,
3526 "mips_o64_push_dummy_call: struct_return reg=%d 0x%s\n",
3527 argreg
, paddr_nz (struct_addr
));
3528 write_register (argreg
++, struct_addr
);
3529 stack_offset
+= mips_stack_argsize (gdbarch
);
3532 /* Now load as many as possible of the first arguments into
3533 registers, and push the rest onto the stack. Loop thru args
3534 from first to last. */
3535 for (argnum
= 0; argnum
< nargs
; argnum
++)
3537 const gdb_byte
*val
;
3538 struct value
*arg
= args
[argnum
];
3539 struct type
*arg_type
= check_typedef (value_type (arg
));
3540 int len
= TYPE_LENGTH (arg_type
);
3541 enum type_code typecode
= TYPE_CODE (arg_type
);
3544 fprintf_unfiltered (gdb_stdlog
,
3545 "mips_o64_push_dummy_call: %d len=%d type=%d",
3546 argnum
+ 1, len
, (int) typecode
);
3548 val
= value_contents (arg
);
3550 /* 32-bit ABIs always start floating point arguments in an
3551 even-numbered floating point register. Round the FP register
3552 up before the check to see if there are any FP registers
3553 left. O32/O64 targets also pass the FP in the integer
3554 registers so also round up normal registers. */
3555 if (mips_abi_regsize (gdbarch
) < 8
3556 && fp_register_arg_p (typecode
, arg_type
))
3558 if ((float_argreg
& 1))
3562 /* Floating point arguments passed in registers have to be
3563 treated specially. On 32-bit architectures, doubles
3564 are passed in register pairs; the even register gets
3565 the low word, and the odd register gets the high word.
3566 On O32/O64, the first two floating point arguments are
3567 also copied to general registers, because MIPS16 functions
3568 don't use float registers for arguments. This duplication of
3569 arguments in general registers can't hurt non-MIPS16 functions
3570 because those registers are normally skipped. */
3572 if (fp_register_arg_p (typecode
, arg_type
)
3573 && float_argreg
<= MIPS_LAST_FP_ARG_REGNUM
)
3575 if (mips_abi_regsize (gdbarch
) < 8 && len
== 8)
3577 int low_offset
= TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
? 4 : 0;
3578 unsigned long regval
;
3580 /* Write the low word of the double to the even register(s). */
3581 regval
= extract_unsigned_integer (val
+ low_offset
, 4);
3583 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3584 float_argreg
, phex (regval
, 4));
3585 write_register (float_argreg
++, regval
);
3587 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3588 argreg
, phex (regval
, 4));
3589 write_register (argreg
++, regval
);
3591 /* Write the high word of the double to the odd register(s). */
3592 regval
= extract_unsigned_integer (val
+ 4 - low_offset
, 4);
3594 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3595 float_argreg
, phex (regval
, 4));
3596 write_register (float_argreg
++, regval
);
3599 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3600 argreg
, phex (regval
, 4));
3601 write_register (argreg
++, regval
);
3605 /* This is a floating point value that fits entirely
3606 in a single register. */
3607 /* On 32 bit ABI's the float_argreg is further adjusted
3608 above to ensure that it is even register aligned. */
3609 LONGEST regval
= extract_unsigned_integer (val
, len
);
3611 fprintf_unfiltered (gdb_stdlog
, " - fpreg=%d val=%s",
3612 float_argreg
, phex (regval
, len
));
3613 write_register (float_argreg
++, regval
);
3614 /* CAGNEY: 32 bit MIPS ABI's always reserve two FP
3615 registers for each argument. The below is (my
3616 guess) to ensure that the corresponding integer
3617 register has reserved the same space. */
3619 fprintf_unfiltered (gdb_stdlog
, " - reg=%d val=%s",
3620 argreg
, phex (regval
, len
));
3621 write_register (argreg
, regval
);
3622 argreg
+= (mips_abi_regsize (gdbarch
) == 8) ? 1 : 2;
3624 /* Reserve space for the FP register. */
3625 stack_offset
+= align_up (len
, mips_stack_argsize (gdbarch
));
3629 /* Copy the argument to general registers or the stack in
3630 register-sized pieces. Large arguments are split between
3631 registers and stack. */
3632 /* Note: structs whose size is not a multiple of
3633 mips_abi_regsize() are treated specially: Irix cc passes
3634 them in registers where gcc sometimes puts them on the
3635 stack. For maximum compatibility, we will put them in
3637 int odd_sized_struct
= ((len
> mips_abi_regsize (gdbarch
))
3638 && (len
% mips_abi_regsize (gdbarch
) != 0));
3639 /* Structures should be aligned to eight bytes (even arg registers)
3640 on MIPS_ABI_O32, if their first member has double precision. */
3641 if (mips_abi_regsize (gdbarch
) < 8
3642 && mips_type_needs_double_align (arg_type
))
3647 /* Note: Floating-point values that didn't fit into an FP
3648 register are only written to memory. */
3651 /* Remember if the argument was written to the stack. */
3652 int stack_used_p
= 0;
3653 int partial_len
= (len
< mips_abi_regsize (gdbarch
)
3654 ? len
: mips_abi_regsize (gdbarch
));
3657 fprintf_unfiltered (gdb_stdlog
, " -- partial=%d",
3660 /* Write this portion of the argument to the stack. */
3661 if (argreg
> MIPS_LAST_ARG_REGNUM
3663 || fp_register_arg_p (typecode
, arg_type
))
3665 /* Should shorter than int integer values be
3666 promoted to int before being stored? */
3667 int longword_offset
= 0;
3670 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3672 if (mips_stack_argsize (gdbarch
) == 8
3673 && (typecode
== TYPE_CODE_INT
3674 || typecode
== TYPE_CODE_PTR
3675 || typecode
== TYPE_CODE_FLT
) && len
<= 4)
3676 longword_offset
= mips_stack_argsize (gdbarch
) - len
;
3681 fprintf_unfiltered (gdb_stdlog
, " - stack_offset=0x%s",
3682 paddr_nz (stack_offset
));
3683 fprintf_unfiltered (gdb_stdlog
, " longword_offset=0x%s",
3684 paddr_nz (longword_offset
));
3687 addr
= sp
+ stack_offset
+ longword_offset
;
3692 fprintf_unfiltered (gdb_stdlog
, " @0x%s ",
3694 for (i
= 0; i
< partial_len
; i
++)
3696 fprintf_unfiltered (gdb_stdlog
, "%02x",
3700 write_memory (addr
, val
, partial_len
);
3703 /* Note!!! This is NOT an else clause. Odd sized
3704 structs may go thru BOTH paths. Floating point
3705 arguments will not. */
3706 /* Write this portion of the argument to a general
3707 purpose register. */
3708 if (argreg
<= MIPS_LAST_ARG_REGNUM
3709 && !fp_register_arg_p (typecode
, arg_type
))
3711 LONGEST regval
= extract_signed_integer (val
, partial_len
);
3712 /* Value may need to be sign extended, because
3713 mips_isa_regsize() != mips_abi_regsize(). */
3715 /* A non-floating-point argument being passed in a
3716 general register. If a struct or union, and if
3717 the remaining length is smaller than the register
3718 size, we have to adjust the register value on
3721 It does not seem to be necessary to do the
3722 same for integral types. */
3724 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
3725 && partial_len
< mips_abi_regsize (gdbarch
)
3726 && (typecode
== TYPE_CODE_STRUCT
||
3727 typecode
== TYPE_CODE_UNION
))
3728 regval
<<= ((mips_abi_regsize (gdbarch
) - partial_len
) *
3732 fprintf_filtered (gdb_stdlog
, " - reg=%d val=%s",
3735 mips_abi_regsize (gdbarch
)));
3736 write_register (argreg
, regval
);
3739 /* Prevent subsequent floating point arguments from
3740 being passed in floating point registers. */
3741 float_argreg
= MIPS_LAST_FP_ARG_REGNUM
+ 1;
3747 /* Compute the the offset into the stack at which we
3748 will copy the next parameter.
3750 In older ABIs, the caller reserved space for
3751 registers that contained arguments. This was loosely
3752 refered to as their "home". Consequently, space is
3753 always allocated. */
3755 stack_offset
+= align_up (partial_len
,
3756 mips_stack_argsize (gdbarch
));
3760 fprintf_unfiltered (gdb_stdlog
, "\n");
3763 regcache_cooked_write_signed (regcache
, MIPS_SP_REGNUM
, sp
);
3765 /* Return adjusted stack pointer. */
3769 static enum return_value_convention
3770 mips_o64_return_value (struct gdbarch
*gdbarch
,
3771 struct type
*type
, struct regcache
*regcache
,
3772 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
3774 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
3776 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
3777 || TYPE_CODE (type
) == TYPE_CODE_UNION
3778 || TYPE_CODE (type
) == TYPE_CODE_ARRAY
)
3779 return RETURN_VALUE_STRUCT_CONVENTION
;
3780 else if (fp_register_arg_p (TYPE_CODE (type
), type
))
3782 /* A floating-point value. It fits in the least significant
3785 fprintf_unfiltered (gdb_stderr
, "Return float in $fp0\n");
3786 mips_xfer_register (regcache
,
3787 NUM_REGS
+ mips_regnum (current_gdbarch
)->fp0
,
3789 TARGET_BYTE_ORDER
, readbuf
, writebuf
, 0);
3790 return RETURN_VALUE_REGISTER_CONVENTION
;
3794 /* A scalar extract each part but least-significant-byte
3798 for (offset
= 0, regnum
= MIPS_V0_REGNUM
;
3799 offset
< TYPE_LENGTH (type
);
3800 offset
+= mips_stack_argsize (gdbarch
), regnum
++)
3802 int xfer
= mips_stack_argsize (gdbarch
);
3803 if (offset
+ xfer
> TYPE_LENGTH (type
))
3804 xfer
= TYPE_LENGTH (type
) - offset
;
3806 fprintf_unfiltered (gdb_stderr
, "Return scalar+%d:%d in $%d\n",
3807 offset
, xfer
, regnum
);
3808 mips_xfer_register (regcache
, NUM_REGS
+ regnum
, xfer
,
3809 TARGET_BYTE_ORDER
, readbuf
, writebuf
, offset
);
3811 return RETURN_VALUE_REGISTER_CONVENTION
;
3815 /* Floating point register management.
3817 Background: MIPS1 & 2 fp registers are 32 bits wide. To support
3818 64bit operations, these early MIPS cpus treat fp register pairs
3819 (f0,f1) as a single register (d0). Later MIPS cpu's have 64 bit fp
3820 registers and offer a compatibility mode that emulates the MIPS2 fp
3821 model. When operating in MIPS2 fp compat mode, later cpu's split
3822 double precision floats into two 32-bit chunks and store them in
3823 consecutive fp regs. To display 64-bit floats stored in this
3824 fashion, we have to combine 32 bits from f0 and 32 bits from f1.
3825 Throw in user-configurable endianness and you have a real mess.
3827 The way this works is:
3828 - If we are in 32-bit mode or on a 32-bit processor, then a 64-bit
3829 double-precision value will be split across two logical registers.
3830 The lower-numbered logical register will hold the low-order bits,
3831 regardless of the processor's endianness.
3832 - If we are on a 64-bit processor, and we are looking for a
3833 single-precision value, it will be in the low ordered bits
3834 of a 64-bit GPR (after mfc1, for example) or a 64-bit register
3835 save slot in memory.
3836 - If we are in 64-bit mode, everything is straightforward.
3838 Note that this code only deals with "live" registers at the top of the
3839 stack. We will attempt to deal with saved registers later, when
3840 the raw/cooked register interface is in place. (We need a general
3841 interface that can deal with dynamic saved register sizes -- fp
3842 regs could be 32 bits wide in one frame and 64 on the frame above
3845 static struct type
*
3846 mips_float_register_type (void)
3848 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3849 return builtin_type_ieee_single_big
;
3851 return builtin_type_ieee_single_little
;
3854 static struct type
*
3855 mips_double_register_type (void)
3857 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3858 return builtin_type_ieee_double_big
;
3860 return builtin_type_ieee_double_little
;
3863 /* Copy a 32-bit single-precision value from the current frame
3864 into rare_buffer. */
3867 mips_read_fp_register_single (struct frame_info
*frame
, int regno
,
3868 gdb_byte
*rare_buffer
)
3870 int raw_size
= register_size (current_gdbarch
, regno
);
3871 gdb_byte
*raw_buffer
= alloca (raw_size
);
3873 if (!frame_register_read (frame
, regno
, raw_buffer
))
3874 error (_("can't read register %d (%s)"), regno
, REGISTER_NAME (regno
));
3877 /* We have a 64-bit value for this register. Find the low-order
3881 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3886 memcpy (rare_buffer
, raw_buffer
+ offset
, 4);
3890 memcpy (rare_buffer
, raw_buffer
, 4);
3894 /* Copy a 64-bit double-precision value from the current frame into
3895 rare_buffer. This may include getting half of it from the next
3899 mips_read_fp_register_double (struct frame_info
*frame
, int regno
,
3900 gdb_byte
*rare_buffer
)
3902 int raw_size
= register_size (current_gdbarch
, regno
);
3904 if (raw_size
== 8 && !mips2_fp_compat ())
3906 /* We have a 64-bit value for this register, and we should use
3908 if (!frame_register_read (frame
, regno
, rare_buffer
))
3909 error (_("can't read register %d (%s)"), regno
, REGISTER_NAME (regno
));
3913 if ((regno
- mips_regnum (current_gdbarch
)->fp0
) & 1)
3914 internal_error (__FILE__
, __LINE__
,
3915 _("mips_read_fp_register_double: bad access to "
3916 "odd-numbered FP register"));
3918 /* mips_read_fp_register_single will find the correct 32 bits from
3920 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
3922 mips_read_fp_register_single (frame
, regno
, rare_buffer
+ 4);
3923 mips_read_fp_register_single (frame
, regno
+ 1, rare_buffer
);
3927 mips_read_fp_register_single (frame
, regno
, rare_buffer
);
3928 mips_read_fp_register_single (frame
, regno
+ 1, rare_buffer
+ 4);
3934 mips_print_fp_register (struct ui_file
*file
, struct frame_info
*frame
,
3936 { /* do values for FP (float) regs */
3937 gdb_byte
*raw_buffer
;
3938 double doub
, flt1
; /* doubles extracted from raw hex data */
3941 raw_buffer
= alloca (2 * register_size (current_gdbarch
,
3942 mips_regnum (current_gdbarch
)->fp0
));
3944 fprintf_filtered (file
, "%s:", REGISTER_NAME (regnum
));
3945 fprintf_filtered (file
, "%*s", 4 - (int) strlen (REGISTER_NAME (regnum
)),
3948 if (register_size (current_gdbarch
, regnum
) == 4 || mips2_fp_compat ())
3950 /* 4-byte registers: Print hex and floating. Also print even
3951 numbered registers as doubles. */
3952 mips_read_fp_register_single (frame
, regnum
, raw_buffer
);
3953 flt1
= unpack_double (mips_float_register_type (), raw_buffer
, &inv1
);
3955 print_scalar_formatted (raw_buffer
, builtin_type_uint32
, 'x', 'w',
3958 fprintf_filtered (file
, " flt: ");
3960 fprintf_filtered (file
, " <invalid float> ");
3962 fprintf_filtered (file
, "%-17.9g", flt1
);
3964 if (regnum
% 2 == 0)
3966 mips_read_fp_register_double (frame
, regnum
, raw_buffer
);
3967 doub
= unpack_double (mips_double_register_type (), raw_buffer
,
3970 fprintf_filtered (file
, " dbl: ");
3972 fprintf_filtered (file
, "<invalid double>");
3974 fprintf_filtered (file
, "%-24.17g", doub
);
3979 /* Eight byte registers: print each one as hex, float and double. */
3980 mips_read_fp_register_single (frame
, regnum
, raw_buffer
);
3981 flt1
= unpack_double (mips_float_register_type (), raw_buffer
, &inv1
);
3983 mips_read_fp_register_double (frame
, regnum
, raw_buffer
);
3984 doub
= unpack_double (mips_double_register_type (), raw_buffer
, &inv2
);
3987 print_scalar_formatted (raw_buffer
, builtin_type_uint64
, 'x', 'g',
3990 fprintf_filtered (file
, " flt: ");
3992 fprintf_filtered (file
, "<invalid float>");
3994 fprintf_filtered (file
, "%-17.9g", flt1
);
3996 fprintf_filtered (file
, " dbl: ");
3998 fprintf_filtered (file
, "<invalid double>");
4000 fprintf_filtered (file
, "%-24.17g", doub
);
4005 mips_print_register (struct ui_file
*file
, struct frame_info
*frame
,
4006 int regnum
, int all
)
4008 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
4009 gdb_byte raw_buffer
[MAX_REGISTER_SIZE
];
4012 if (TYPE_CODE (gdbarch_register_type (gdbarch
, regnum
)) == TYPE_CODE_FLT
)
4014 mips_print_fp_register (file
, frame
, regnum
);
4018 /* Get the data in raw format. */
4019 if (!frame_register_read (frame
, regnum
, raw_buffer
))
4021 fprintf_filtered (file
, "%s: [Invalid]", REGISTER_NAME (regnum
));
4025 fputs_filtered (REGISTER_NAME (regnum
), file
);
4027 /* The problem with printing numeric register names (r26, etc.) is that
4028 the user can't use them on input. Probably the best solution is to
4029 fix it so that either the numeric or the funky (a2, etc.) names
4030 are accepted on input. */
4031 if (regnum
< MIPS_NUMREGS
)
4032 fprintf_filtered (file
, "(r%d): ", regnum
);
4034 fprintf_filtered (file
, ": ");
4036 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
4038 register_size (current_gdbarch
,
4039 regnum
) - register_size (current_gdbarch
, regnum
);
4043 print_scalar_formatted (raw_buffer
+ offset
,
4044 gdbarch_register_type (gdbarch
, regnum
), 'x', 0,
4048 /* Replacement for generic do_registers_info.
4049 Print regs in pretty columns. */
4052 print_fp_register_row (struct ui_file
*file
, struct frame_info
*frame
,
4055 fprintf_filtered (file
, " ");
4056 mips_print_fp_register (file
, frame
, regnum
);
4057 fprintf_filtered (file
, "\n");
4062 /* Print a row's worth of GP (int) registers, with name labels above */
4065 print_gp_register_row (struct ui_file
*file
, struct frame_info
*frame
,
4068 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
4069 /* do values for GP (int) regs */
4070 gdb_byte raw_buffer
[MAX_REGISTER_SIZE
];
4071 int ncols
= (mips_abi_regsize (gdbarch
) == 8 ? 4 : 8); /* display cols per row */
4075 /* For GP registers, we print a separate row of names above the vals */
4076 for (col
= 0, regnum
= start_regnum
;
4077 col
< ncols
&& regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
; regnum
++)
4079 if (*REGISTER_NAME (regnum
) == '\0')
4080 continue; /* unused register */
4081 if (TYPE_CODE (gdbarch_register_type (gdbarch
, regnum
)) ==
4083 break; /* end the row: reached FP register */
4085 fprintf_filtered (file
, " ");
4086 fprintf_filtered (file
,
4087 mips_abi_regsize (current_gdbarch
) == 8 ? "%17s" : "%9s",
4088 REGISTER_NAME (regnum
));
4095 /* print the R0 to R31 names */
4096 if ((start_regnum
% NUM_REGS
) < MIPS_NUMREGS
)
4097 fprintf_filtered (file
, "\n R%-4d", start_regnum
% NUM_REGS
);
4099 fprintf_filtered (file
, "\n ");
4101 /* now print the values in hex, 4 or 8 to the row */
4102 for (col
= 0, regnum
= start_regnum
;
4103 col
< ncols
&& regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
; regnum
++)
4105 if (*REGISTER_NAME (regnum
) == '\0')
4106 continue; /* unused register */
4107 if (TYPE_CODE (gdbarch_register_type (gdbarch
, regnum
)) ==
4109 break; /* end row: reached FP register */
4110 /* OK: get the data in raw format. */
4111 if (!frame_register_read (frame
, regnum
, raw_buffer
))
4112 error (_("can't read register %d (%s)"), regnum
, REGISTER_NAME (regnum
));
4113 /* pad small registers */
4115 byte
< (mips_abi_regsize (current_gdbarch
)
4116 - register_size (current_gdbarch
, regnum
)); byte
++)
4117 printf_filtered (" ");
4118 /* Now print the register value in hex, endian order. */
4119 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
4121 register_size (current_gdbarch
,
4122 regnum
) - register_size (current_gdbarch
, regnum
);
4123 byte
< register_size (current_gdbarch
, regnum
); byte
++)
4124 fprintf_filtered (file
, "%02x", raw_buffer
[byte
]);
4126 for (byte
= register_size (current_gdbarch
, regnum
) - 1;
4128 fprintf_filtered (file
, "%02x", raw_buffer
[byte
]);
4129 fprintf_filtered (file
, " ");
4132 if (col
> 0) /* ie. if we actually printed anything... */
4133 fprintf_filtered (file
, "\n");
4138 /* MIPS_DO_REGISTERS_INFO(): called by "info register" command */
4141 mips_print_registers_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
4142 struct frame_info
*frame
, int regnum
, int all
)
4144 if (regnum
!= -1) /* do one specified register */
4146 gdb_assert (regnum
>= NUM_REGS
);
4147 if (*(REGISTER_NAME (regnum
)) == '\0')
4148 error (_("Not a valid register for the current processor type"));
4150 mips_print_register (file
, frame
, regnum
, 0);
4151 fprintf_filtered (file
, "\n");
4154 /* do all (or most) registers */
4157 while (regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
)
4159 if (TYPE_CODE (gdbarch_register_type (gdbarch
, regnum
)) ==
4162 if (all
) /* true for "INFO ALL-REGISTERS" command */
4163 regnum
= print_fp_register_row (file
, frame
, regnum
);
4165 regnum
+= MIPS_NUMREGS
; /* skip floating point regs */
4168 regnum
= print_gp_register_row (file
, frame
, regnum
);
4173 /* Is this a branch with a delay slot? */
4176 is_delayed (unsigned long insn
)
4179 for (i
= 0; i
< NUMOPCODES
; ++i
)
4180 if (mips_opcodes
[i
].pinfo
!= INSN_MACRO
4181 && (insn
& mips_opcodes
[i
].mask
) == mips_opcodes
[i
].match
)
4183 return (i
< NUMOPCODES
4184 && (mips_opcodes
[i
].pinfo
& (INSN_UNCOND_BRANCH_DELAY
4185 | INSN_COND_BRANCH_DELAY
4186 | INSN_COND_BRANCH_LIKELY
)));
4190 mips_single_step_through_delay (struct gdbarch
*gdbarch
,
4191 struct frame_info
*frame
)
4193 CORE_ADDR pc
= get_frame_pc (frame
);
4194 gdb_byte buf
[MIPS_INSN32_SIZE
];
4196 /* There is no branch delay slot on MIPS16. */
4197 if (mips_pc_is_mips16 (pc
))
4200 if (!breakpoint_here_p (pc
+ 4))
4203 if (!safe_frame_unwind_memory (frame
, pc
, buf
, sizeof buf
))
4204 /* If error reading memory, guess that it is not a delayed
4207 return is_delayed (extract_unsigned_integer (buf
, sizeof buf
));
4210 /* To skip prologues, I use this predicate. Returns either PC itself
4211 if the code at PC does not look like a function prologue; otherwise
4212 returns an address that (if we're lucky) follows the prologue. If
4213 LENIENT, then we must skip everything which is involved in setting
4214 up the frame (it's OK to skip more, just so long as we don't skip
4215 anything which might clobber the registers which are being saved.
4216 We must skip more in the case where part of the prologue is in the
4217 delay slot of a non-prologue instruction). */
4220 mips_skip_prologue (CORE_ADDR pc
)
4223 CORE_ADDR func_addr
;
4225 /* See if we can determine the end of the prologue via the symbol table.
4226 If so, then return either PC, or the PC after the prologue, whichever
4228 if (find_pc_partial_function (pc
, NULL
, &func_addr
, NULL
))
4230 CORE_ADDR post_prologue_pc
= skip_prologue_using_sal (func_addr
);
4231 if (post_prologue_pc
!= 0)
4232 return max (pc
, post_prologue_pc
);
4235 /* Can't determine prologue from the symbol table, need to examine
4238 /* Find an upper limit on the function prologue using the debug
4239 information. If the debug information could not be used to provide
4240 that bound, then use an arbitrary large number as the upper bound. */
4241 limit_pc
= skip_prologue_using_sal (pc
);
4243 limit_pc
= pc
+ 100; /* Magic. */
4245 if (mips_pc_is_mips16 (pc
))
4246 return mips16_scan_prologue (pc
, limit_pc
, NULL
, NULL
);
4248 return mips32_scan_prologue (pc
, limit_pc
, NULL
, NULL
);
4251 /* Root of all "set mips "/"show mips " commands. This will eventually be
4252 used for all MIPS-specific commands. */
4255 show_mips_command (char *args
, int from_tty
)
4257 help_list (showmipscmdlist
, "show mips ", all_commands
, gdb_stdout
);
4261 set_mips_command (char *args
, int from_tty
)
4264 ("\"set mips\" must be followed by an appropriate subcommand.\n");
4265 help_list (setmipscmdlist
, "set mips ", all_commands
, gdb_stdout
);
4268 /* Commands to show/set the MIPS FPU type. */
4271 show_mipsfpu_command (char *args
, int from_tty
)
4274 switch (MIPS_FPU_TYPE
)
4276 case MIPS_FPU_SINGLE
:
4277 fpu
= "single-precision";
4279 case MIPS_FPU_DOUBLE
:
4280 fpu
= "double-precision";
4283 fpu
= "absent (none)";
4286 internal_error (__FILE__
, __LINE__
, _("bad switch"));
4288 if (mips_fpu_type_auto
)
4290 ("The MIPS floating-point coprocessor is set automatically (currently %s)\n",
4294 ("The MIPS floating-point coprocessor is assumed to be %s\n", fpu
);
4299 set_mipsfpu_command (char *args
, int from_tty
)
4302 ("\"set mipsfpu\" must be followed by \"double\", \"single\",\"none\" or \"auto\".\n");
4303 show_mipsfpu_command (args
, from_tty
);
4307 set_mipsfpu_single_command (char *args
, int from_tty
)
4309 struct gdbarch_info info
;
4310 gdbarch_info_init (&info
);
4311 mips_fpu_type
= MIPS_FPU_SINGLE
;
4312 mips_fpu_type_auto
= 0;
4313 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4314 instead of relying on globals. Doing that would let generic code
4315 handle the search for this specific architecture. */
4316 if (!gdbarch_update_p (info
))
4317 internal_error (__FILE__
, __LINE__
, _("set mipsfpu failed"));
4321 set_mipsfpu_double_command (char *args
, int from_tty
)
4323 struct gdbarch_info info
;
4324 gdbarch_info_init (&info
);
4325 mips_fpu_type
= MIPS_FPU_DOUBLE
;
4326 mips_fpu_type_auto
= 0;
4327 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4328 instead of relying on globals. Doing that would let generic code
4329 handle the search for this specific architecture. */
4330 if (!gdbarch_update_p (info
))
4331 internal_error (__FILE__
, __LINE__
, _("set mipsfpu failed"));
4335 set_mipsfpu_none_command (char *args
, int from_tty
)
4337 struct gdbarch_info info
;
4338 gdbarch_info_init (&info
);
4339 mips_fpu_type
= MIPS_FPU_NONE
;
4340 mips_fpu_type_auto
= 0;
4341 /* FIXME: cagney/2003-11-15: Should be setting a field in "info"
4342 instead of relying on globals. Doing that would let generic code
4343 handle the search for this specific architecture. */
4344 if (!gdbarch_update_p (info
))
4345 internal_error (__FILE__
, __LINE__
, _("set mipsfpu failed"));
4349 set_mipsfpu_auto_command (char *args
, int from_tty
)
4351 mips_fpu_type_auto
= 1;
4354 /* Attempt to identify the particular processor model by reading the
4355 processor id. NOTE: cagney/2003-11-15: Firstly it isn't clear that
4356 the relevant processor still exists (it dates back to '94) and
4357 secondly this is not the way to do this. The processor type should
4358 be set by forcing an architecture change. */
4361 deprecated_mips_set_processor_regs_hack (void)
4363 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
4366 prid
= read_register (MIPS_PRID_REGNUM
);
4368 if ((prid
& ~0xf) == 0x700)
4369 tdep
->mips_processor_reg_names
= mips_r3041_reg_names
;
4372 /* Just like reinit_frame_cache, but with the right arguments to be
4373 callable as an sfunc. */
4376 reinit_frame_cache_sfunc (char *args
, int from_tty
,
4377 struct cmd_list_element
*c
)
4379 reinit_frame_cache ();
4383 gdb_print_insn_mips (bfd_vma memaddr
, struct disassemble_info
*info
)
4385 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
4387 /* FIXME: cagney/2003-06-26: Is this even necessary? The
4388 disassembler needs to be able to locally determine the ISA, and
4389 not rely on GDB. Otherwize the stand-alone 'objdump -d' will not
4391 if (mips_pc_is_mips16 (memaddr
))
4392 info
->mach
= bfd_mach_mips16
;
4394 /* Round down the instruction address to the appropriate boundary. */
4395 memaddr
&= (info
->mach
== bfd_mach_mips16
? ~1 : ~3);
4397 /* Set the disassembler options. */
4398 if (tdep
->mips_abi
== MIPS_ABI_N32
|| tdep
->mips_abi
== MIPS_ABI_N64
)
4400 /* Set up the disassembler info, so that we get the right
4401 register names from libopcodes. */
4402 if (tdep
->mips_abi
== MIPS_ABI_N32
)
4403 info
->disassembler_options
= "gpr-names=n32";
4405 info
->disassembler_options
= "gpr-names=64";
4406 info
->flavour
= bfd_target_elf_flavour
;
4409 /* This string is not recognized explicitly by the disassembler,
4410 but it tells the disassembler to not try to guess the ABI from
4411 the bfd elf headers, such that, if the user overrides the ABI
4412 of a program linked as NewABI, the disassembly will follow the
4413 register naming conventions specified by the user. */
4414 info
->disassembler_options
= "gpr-names=32";
4416 /* Call the appropriate disassembler based on the target endian-ness. */
4417 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
4418 return print_insn_big_mips (memaddr
, info
);
4420 return print_insn_little_mips (memaddr
, info
);
4423 /* This function implements the BREAKPOINT_FROM_PC macro. It uses the program
4424 counter value to determine whether a 16- or 32-bit breakpoint should be
4425 used. It returns a pointer to a string of bytes that encode a breakpoint
4426 instruction, stores the length of the string to *lenptr, and adjusts pc
4427 (if necessary) to point to the actual memory location where the
4428 breakpoint should be inserted. */
4430 static const gdb_byte
*
4431 mips_breakpoint_from_pc (CORE_ADDR
*pcptr
, int *lenptr
)
4433 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
4435 if (mips_pc_is_mips16 (*pcptr
))
4437 static gdb_byte mips16_big_breakpoint
[] = { 0xe8, 0xa5 };
4438 *pcptr
= unmake_mips16_addr (*pcptr
);
4439 *lenptr
= sizeof (mips16_big_breakpoint
);
4440 return mips16_big_breakpoint
;
4444 /* The IDT board uses an unusual breakpoint value, and
4445 sometimes gets confused when it sees the usual MIPS
4446 breakpoint instruction. */
4447 static gdb_byte big_breakpoint
[] = { 0, 0x5, 0, 0xd };
4448 static gdb_byte pmon_big_breakpoint
[] = { 0, 0, 0, 0xd };
4449 static gdb_byte idt_big_breakpoint
[] = { 0, 0, 0x0a, 0xd };
4451 *lenptr
= sizeof (big_breakpoint
);
4453 if (strcmp (target_shortname
, "mips") == 0)
4454 return idt_big_breakpoint
;
4455 else if (strcmp (target_shortname
, "ddb") == 0
4456 || strcmp (target_shortname
, "pmon") == 0
4457 || strcmp (target_shortname
, "lsi") == 0)
4458 return pmon_big_breakpoint
;
4460 return big_breakpoint
;
4465 if (mips_pc_is_mips16 (*pcptr
))
4467 static gdb_byte mips16_little_breakpoint
[] = { 0xa5, 0xe8 };
4468 *pcptr
= unmake_mips16_addr (*pcptr
);
4469 *lenptr
= sizeof (mips16_little_breakpoint
);
4470 return mips16_little_breakpoint
;
4474 static gdb_byte little_breakpoint
[] = { 0xd, 0, 0x5, 0 };
4475 static gdb_byte pmon_little_breakpoint
[] = { 0xd, 0, 0, 0 };
4476 static gdb_byte idt_little_breakpoint
[] = { 0xd, 0x0a, 0, 0 };
4478 *lenptr
= sizeof (little_breakpoint
);
4480 if (strcmp (target_shortname
, "mips") == 0)
4481 return idt_little_breakpoint
;
4482 else if (strcmp (target_shortname
, "ddb") == 0
4483 || strcmp (target_shortname
, "pmon") == 0
4484 || strcmp (target_shortname
, "lsi") == 0)
4485 return pmon_little_breakpoint
;
4487 return little_breakpoint
;
4492 /* If PC is in a mips16 call or return stub, return the address of the target
4493 PC, which is either the callee or the caller. There are several
4494 cases which must be handled:
4496 * If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
4497 target PC is in $31 ($ra).
4498 * If the PC is in __mips16_call_stub_{1..10}, this is a call stub
4499 and the target PC is in $2.
4500 * If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
4501 before the jal instruction, this is effectively a call stub
4502 and the the target PC is in $2. Otherwise this is effectively
4503 a return stub and the target PC is in $18.
4505 See the source code for the stubs in gcc/config/mips/mips16.S for
4509 mips_skip_trampoline_code (CORE_ADDR pc
)
4512 CORE_ADDR start_addr
;
4514 /* Find the starting address and name of the function containing the PC. */
4515 if (find_pc_partial_function (pc
, &name
, &start_addr
, NULL
) == 0)
4518 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
4519 target PC is in $31 ($ra). */
4520 if (strcmp (name
, "__mips16_ret_sf") == 0
4521 || strcmp (name
, "__mips16_ret_df") == 0)
4522 return read_signed_register (MIPS_RA_REGNUM
);
4524 if (strncmp (name
, "__mips16_call_stub_", 19) == 0)
4526 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub
4527 and the target PC is in $2. */
4528 if (name
[19] >= '0' && name
[19] <= '9')
4529 return read_signed_register (2);
4531 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
4532 before the jal instruction, this is effectively a call stub
4533 and the the target PC is in $2. Otherwise this is effectively
4534 a return stub and the target PC is in $18. */
4535 else if (name
[19] == 's' || name
[19] == 'd')
4537 if (pc
== start_addr
)
4539 /* Check if the target of the stub is a compiler-generated
4540 stub. Such a stub for a function bar might have a name
4541 like __fn_stub_bar, and might look like this:
4546 la $1,bar (becomes a lui/addiu pair)
4548 So scan down to the lui/addi and extract the target
4549 address from those two instructions. */
4551 CORE_ADDR target_pc
= read_signed_register (2);
4555 /* See if the name of the target function is __fn_stub_*. */
4556 if (find_pc_partial_function (target_pc
, &name
, NULL
, NULL
) ==
4559 if (strncmp (name
, "__fn_stub_", 10) != 0
4560 && strcmp (name
, "etext") != 0
4561 && strcmp (name
, "_etext") != 0)
4564 /* Scan through this _fn_stub_ code for the lui/addiu pair.
4565 The limit on the search is arbitrarily set to 20
4566 instructions. FIXME. */
4567 for (i
= 0, pc
= 0; i
< 20; i
++, target_pc
+= MIPS_INSN32_SIZE
)
4569 inst
= mips_fetch_instruction (target_pc
);
4570 if ((inst
& 0xffff0000) == 0x3c010000) /* lui $at */
4571 pc
= (inst
<< 16) & 0xffff0000; /* high word */
4572 else if ((inst
& 0xffff0000) == 0x24210000) /* addiu $at */
4573 return pc
| (inst
& 0xffff); /* low word */
4576 /* Couldn't find the lui/addui pair, so return stub address. */
4580 /* This is the 'return' part of a call stub. The return
4581 address is in $r18. */
4582 return read_signed_register (18);
4585 return 0; /* not a stub */
4588 /* Convert a dbx stab register number (from `r' declaration) to a GDB
4589 [1 * NUM_REGS .. 2 * NUM_REGS) REGNUM. */
4592 mips_stab_reg_to_regnum (int num
)
4595 if (num
>= 0 && num
< 32)
4597 else if (num
>= 38 && num
< 70)
4598 regnum
= num
+ mips_regnum (current_gdbarch
)->fp0
- 38;
4600 regnum
= mips_regnum (current_gdbarch
)->hi
;
4602 regnum
= mips_regnum (current_gdbarch
)->lo
;
4604 /* This will hopefully (eventually) provoke a warning. Should
4605 we be calling complaint() here? */
4606 return NUM_REGS
+ NUM_PSEUDO_REGS
;
4607 return NUM_REGS
+ regnum
;
4611 /* Convert a dwarf, dwarf2, or ecoff register number to a GDB [1 *
4612 NUM_REGS .. 2 * NUM_REGS) REGNUM. */
4615 mips_dwarf_dwarf2_ecoff_reg_to_regnum (int num
)
4618 if (num
>= 0 && num
< 32)
4620 else if (num
>= 32 && num
< 64)
4621 regnum
= num
+ mips_regnum (current_gdbarch
)->fp0
- 32;
4623 regnum
= mips_regnum (current_gdbarch
)->hi
;
4625 regnum
= mips_regnum (current_gdbarch
)->lo
;
4627 /* This will hopefully (eventually) provoke a warning. Should we
4628 be calling complaint() here? */
4629 return NUM_REGS
+ NUM_PSEUDO_REGS
;
4630 return NUM_REGS
+ regnum
;
4634 mips_register_sim_regno (int regnum
)
4636 /* Only makes sense to supply raw registers. */
4637 gdb_assert (regnum
>= 0 && regnum
< NUM_REGS
);
4638 /* FIXME: cagney/2002-05-13: Need to look at the pseudo register to
4639 decide if it is valid. Should instead define a standard sim/gdb
4640 register numbering scheme. */
4641 if (REGISTER_NAME (NUM_REGS
+ regnum
) != NULL
4642 && REGISTER_NAME (NUM_REGS
+ regnum
)[0] != '\0')
4645 return LEGACY_SIM_REGNO_IGNORE
;
4649 /* Convert an integer into an address. By first converting the value
4650 into a pointer and then extracting it signed, the address is
4651 guarenteed to be correctly sign extended. */
4654 mips_integer_to_address (struct gdbarch
*gdbarch
,
4655 struct type
*type
, const gdb_byte
*buf
)
4657 gdb_byte
*tmp
= alloca (TYPE_LENGTH (builtin_type_void_data_ptr
));
4658 LONGEST val
= unpack_long (type
, buf
);
4659 store_signed_integer (tmp
, TYPE_LENGTH (builtin_type_void_data_ptr
), val
);
4660 return extract_signed_integer (tmp
,
4661 TYPE_LENGTH (builtin_type_void_data_ptr
));
4665 mips_find_abi_section (bfd
*abfd
, asection
*sect
, void *obj
)
4667 enum mips_abi
*abip
= (enum mips_abi
*) obj
;
4668 const char *name
= bfd_get_section_name (abfd
, sect
);
4670 if (*abip
!= MIPS_ABI_UNKNOWN
)
4673 if (strncmp (name
, ".mdebug.", 8) != 0)
4676 if (strcmp (name
, ".mdebug.abi32") == 0)
4677 *abip
= MIPS_ABI_O32
;
4678 else if (strcmp (name
, ".mdebug.abiN32") == 0)
4679 *abip
= MIPS_ABI_N32
;
4680 else if (strcmp (name
, ".mdebug.abi64") == 0)
4681 *abip
= MIPS_ABI_N64
;
4682 else if (strcmp (name
, ".mdebug.abiO64") == 0)
4683 *abip
= MIPS_ABI_O64
;
4684 else if (strcmp (name
, ".mdebug.eabi32") == 0)
4685 *abip
= MIPS_ABI_EABI32
;
4686 else if (strcmp (name
, ".mdebug.eabi64") == 0)
4687 *abip
= MIPS_ABI_EABI64
;
4689 warning (_("unsupported ABI %s."), name
+ 8);
4692 static enum mips_abi
4693 global_mips_abi (void)
4697 for (i
= 0; mips_abi_strings
[i
] != NULL
; i
++)
4698 if (mips_abi_strings
[i
] == mips_abi_string
)
4699 return (enum mips_abi
) i
;
4701 internal_error (__FILE__
, __LINE__
, _("unknown ABI string"));
4704 static struct gdbarch
*
4705 mips_gdbarch_init (struct gdbarch_info info
, struct gdbarch_list
*arches
)
4707 struct gdbarch
*gdbarch
;
4708 struct gdbarch_tdep
*tdep
;
4710 enum mips_abi mips_abi
, found_abi
, wanted_abi
;
4712 enum mips_fpu_type fpu_type
;
4714 /* First of all, extract the elf_flags, if available. */
4715 if (info
.abfd
&& bfd_get_flavour (info
.abfd
) == bfd_target_elf_flavour
)
4716 elf_flags
= elf_elfheader (info
.abfd
)->e_flags
;
4717 else if (arches
!= NULL
)
4718 elf_flags
= gdbarch_tdep (arches
->gdbarch
)->elf_flags
;
4722 fprintf_unfiltered (gdb_stdlog
,
4723 "mips_gdbarch_init: elf_flags = 0x%08x\n", elf_flags
);
4725 /* Check ELF_FLAGS to see if it specifies the ABI being used. */
4726 switch ((elf_flags
& EF_MIPS_ABI
))
4728 case E_MIPS_ABI_O32
:
4729 found_abi
= MIPS_ABI_O32
;
4731 case E_MIPS_ABI_O64
:
4732 found_abi
= MIPS_ABI_O64
;
4734 case E_MIPS_ABI_EABI32
:
4735 found_abi
= MIPS_ABI_EABI32
;
4737 case E_MIPS_ABI_EABI64
:
4738 found_abi
= MIPS_ABI_EABI64
;
4741 if ((elf_flags
& EF_MIPS_ABI2
))
4742 found_abi
= MIPS_ABI_N32
;
4744 found_abi
= MIPS_ABI_UNKNOWN
;
4748 /* GCC creates a pseudo-section whose name describes the ABI. */
4749 if (found_abi
== MIPS_ABI_UNKNOWN
&& info
.abfd
!= NULL
)
4750 bfd_map_over_sections (info
.abfd
, mips_find_abi_section
, &found_abi
);
4752 /* If we have no useful BFD information, use the ABI from the last
4753 MIPS architecture (if there is one). */
4754 if (found_abi
== MIPS_ABI_UNKNOWN
&& info
.abfd
== NULL
&& arches
!= NULL
)
4755 found_abi
= gdbarch_tdep (arches
->gdbarch
)->found_abi
;
4757 /* Try the architecture for any hint of the correct ABI. */
4758 if (found_abi
== MIPS_ABI_UNKNOWN
4759 && info
.bfd_arch_info
!= NULL
4760 && info
.bfd_arch_info
->arch
== bfd_arch_mips
)
4762 switch (info
.bfd_arch_info
->mach
)
4764 case bfd_mach_mips3900
:
4765 found_abi
= MIPS_ABI_EABI32
;
4767 case bfd_mach_mips4100
:
4768 case bfd_mach_mips5000
:
4769 found_abi
= MIPS_ABI_EABI64
;
4771 case bfd_mach_mips8000
:
4772 case bfd_mach_mips10000
:
4773 /* On Irix, ELF64 executables use the N64 ABI. The
4774 pseudo-sections which describe the ABI aren't present
4775 on IRIX. (Even for executables created by gcc.) */
4776 if (bfd_get_flavour (info
.abfd
) == bfd_target_elf_flavour
4777 && elf_elfheader (info
.abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
4778 found_abi
= MIPS_ABI_N64
;
4780 found_abi
= MIPS_ABI_N32
;
4785 /* Default 64-bit objects to N64 instead of O32. */
4786 if (found_abi
== MIPS_ABI_UNKNOWN
4787 && info
.abfd
!= NULL
4788 && bfd_get_flavour (info
.abfd
) == bfd_target_elf_flavour
4789 && elf_elfheader (info
.abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
4790 found_abi
= MIPS_ABI_N64
;
4793 fprintf_unfiltered (gdb_stdlog
, "mips_gdbarch_init: found_abi = %d\n",
4796 /* What has the user specified from the command line? */
4797 wanted_abi
= global_mips_abi ();
4799 fprintf_unfiltered (gdb_stdlog
, "mips_gdbarch_init: wanted_abi = %d\n",
4802 /* Now that we have found what the ABI for this binary would be,
4803 check whether the user is overriding it. */
4804 if (wanted_abi
!= MIPS_ABI_UNKNOWN
)
4805 mips_abi
= wanted_abi
;
4806 else if (found_abi
!= MIPS_ABI_UNKNOWN
)
4807 mips_abi
= found_abi
;
4809 mips_abi
= MIPS_ABI_O32
;
4811 fprintf_unfiltered (gdb_stdlog
, "mips_gdbarch_init: mips_abi = %d\n",
4814 /* Also used when doing an architecture lookup. */
4816 fprintf_unfiltered (gdb_stdlog
,
4817 "mips_gdbarch_init: mips64_transfers_32bit_regs_p = %d\n",
4818 mips64_transfers_32bit_regs_p
);
4820 /* Determine the MIPS FPU type. */
4821 if (!mips_fpu_type_auto
)
4822 fpu_type
= mips_fpu_type
;
4823 else if (info
.bfd_arch_info
!= NULL
4824 && info
.bfd_arch_info
->arch
== bfd_arch_mips
)
4825 switch (info
.bfd_arch_info
->mach
)
4827 case bfd_mach_mips3900
:
4828 case bfd_mach_mips4100
:
4829 case bfd_mach_mips4111
:
4830 case bfd_mach_mips4120
:
4831 fpu_type
= MIPS_FPU_NONE
;
4833 case bfd_mach_mips4650
:
4834 fpu_type
= MIPS_FPU_SINGLE
;
4837 fpu_type
= MIPS_FPU_DOUBLE
;
4840 else if (arches
!= NULL
)
4841 fpu_type
= gdbarch_tdep (arches
->gdbarch
)->mips_fpu_type
;
4843 fpu_type
= MIPS_FPU_DOUBLE
;
4845 fprintf_unfiltered (gdb_stdlog
,
4846 "mips_gdbarch_init: fpu_type = %d\n", fpu_type
);
4848 /* try to find a pre-existing architecture */
4849 for (arches
= gdbarch_list_lookup_by_info (arches
, &info
);
4851 arches
= gdbarch_list_lookup_by_info (arches
->next
, &info
))
4853 /* MIPS needs to be pedantic about which ABI the object is
4855 if (gdbarch_tdep (arches
->gdbarch
)->elf_flags
!= elf_flags
)
4857 if (gdbarch_tdep (arches
->gdbarch
)->mips_abi
!= mips_abi
)
4859 /* Need to be pedantic about which register virtual size is
4861 if (gdbarch_tdep (arches
->gdbarch
)->mips64_transfers_32bit_regs_p
4862 != mips64_transfers_32bit_regs_p
)
4864 /* Be pedantic about which FPU is selected. */
4865 if (gdbarch_tdep (arches
->gdbarch
)->mips_fpu_type
!= fpu_type
)
4867 return arches
->gdbarch
;
4870 /* Need a new architecture. Fill in a target specific vector. */
4871 tdep
= (struct gdbarch_tdep
*) xmalloc (sizeof (struct gdbarch_tdep
));
4872 gdbarch
= gdbarch_alloc (&info
, tdep
);
4873 tdep
->elf_flags
= elf_flags
;
4874 tdep
->mips64_transfers_32bit_regs_p
= mips64_transfers_32bit_regs_p
;
4875 tdep
->found_abi
= found_abi
;
4876 tdep
->mips_abi
= mips_abi
;
4877 tdep
->mips_fpu_type
= fpu_type
;
4879 /* Initially set everything according to the default ABI/ISA. */
4880 set_gdbarch_short_bit (gdbarch
, 16);
4881 set_gdbarch_int_bit (gdbarch
, 32);
4882 set_gdbarch_float_bit (gdbarch
, 32);
4883 set_gdbarch_double_bit (gdbarch
, 64);
4884 set_gdbarch_long_double_bit (gdbarch
, 64);
4885 set_gdbarch_register_reggroup_p (gdbarch
, mips_register_reggroup_p
);
4886 set_gdbarch_pseudo_register_read (gdbarch
, mips_pseudo_register_read
);
4887 set_gdbarch_pseudo_register_write (gdbarch
, mips_pseudo_register_write
);
4889 set_gdbarch_elf_make_msymbol_special (gdbarch
,
4890 mips_elf_make_msymbol_special
);
4892 /* Fill in the OS dependant register numbers and names. */
4894 const char **reg_names
;
4895 struct mips_regnum
*regnum
= GDBARCH_OBSTACK_ZALLOC (gdbarch
,
4896 struct mips_regnum
);
4897 if (info
.osabi
== GDB_OSABI_IRIX
)
4902 regnum
->badvaddr
= 66;
4905 regnum
->fp_control_status
= 69;
4906 regnum
->fp_implementation_revision
= 70;
4908 reg_names
= mips_irix_reg_names
;
4912 regnum
->lo
= MIPS_EMBED_LO_REGNUM
;
4913 regnum
->hi
= MIPS_EMBED_HI_REGNUM
;
4914 regnum
->badvaddr
= MIPS_EMBED_BADVADDR_REGNUM
;
4915 regnum
->cause
= MIPS_EMBED_CAUSE_REGNUM
;
4916 regnum
->pc
= MIPS_EMBED_PC_REGNUM
;
4917 regnum
->fp0
= MIPS_EMBED_FP0_REGNUM
;
4918 regnum
->fp_control_status
= 70;
4919 regnum
->fp_implementation_revision
= 71;
4921 if (info
.bfd_arch_info
!= NULL
4922 && info
.bfd_arch_info
->mach
== bfd_mach_mips3900
)
4923 reg_names
= mips_tx39_reg_names
;
4925 reg_names
= mips_generic_reg_names
;
4927 /* FIXME: cagney/2003-11-15: For MIPS, hasn't PC_REGNUM been
4928 replaced by read_pc? */
4929 set_gdbarch_pc_regnum (gdbarch
, regnum
->pc
+ num_regs
);
4930 set_gdbarch_sp_regnum (gdbarch
, MIPS_SP_REGNUM
+ num_regs
);
4931 set_gdbarch_fp0_regnum (gdbarch
, regnum
->fp0
);
4932 set_gdbarch_num_regs (gdbarch
, num_regs
);
4933 set_gdbarch_num_pseudo_regs (gdbarch
, num_regs
);
4934 set_gdbarch_register_name (gdbarch
, mips_register_name
);
4935 tdep
->mips_processor_reg_names
= reg_names
;
4936 tdep
->regnum
= regnum
;
4942 set_gdbarch_push_dummy_call (gdbarch
, mips_o32_push_dummy_call
);
4943 set_gdbarch_return_value (gdbarch
, mips_o32_return_value
);
4944 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 4 - 1;
4945 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 4 - 1;
4946 tdep
->default_mask_address_p
= 0;
4947 set_gdbarch_long_bit (gdbarch
, 32);
4948 set_gdbarch_ptr_bit (gdbarch
, 32);
4949 set_gdbarch_long_long_bit (gdbarch
, 64);
4952 set_gdbarch_push_dummy_call (gdbarch
, mips_o64_push_dummy_call
);
4953 set_gdbarch_return_value (gdbarch
, mips_o64_return_value
);
4954 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 4 - 1;
4955 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 4 - 1;
4956 tdep
->default_mask_address_p
= 0;
4957 set_gdbarch_long_bit (gdbarch
, 32);
4958 set_gdbarch_ptr_bit (gdbarch
, 32);
4959 set_gdbarch_long_long_bit (gdbarch
, 64);
4961 case MIPS_ABI_EABI32
:
4962 set_gdbarch_push_dummy_call (gdbarch
, mips_eabi_push_dummy_call
);
4963 set_gdbarch_return_value (gdbarch
, mips_eabi_return_value
);
4964 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 8 - 1;
4965 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 8 - 1;
4966 tdep
->default_mask_address_p
= 0;
4967 set_gdbarch_long_bit (gdbarch
, 32);
4968 set_gdbarch_ptr_bit (gdbarch
, 32);
4969 set_gdbarch_long_long_bit (gdbarch
, 64);
4971 case MIPS_ABI_EABI64
:
4972 set_gdbarch_push_dummy_call (gdbarch
, mips_eabi_push_dummy_call
);
4973 set_gdbarch_return_value (gdbarch
, mips_eabi_return_value
);
4974 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 8 - 1;
4975 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 8 - 1;
4976 tdep
->default_mask_address_p
= 0;
4977 set_gdbarch_long_bit (gdbarch
, 64);
4978 set_gdbarch_ptr_bit (gdbarch
, 64);
4979 set_gdbarch_long_long_bit (gdbarch
, 64);
4982 set_gdbarch_push_dummy_call (gdbarch
, mips_n32n64_push_dummy_call
);
4983 set_gdbarch_return_value (gdbarch
, mips_n32n64_return_value
);
4984 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 8 - 1;
4985 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 8 - 1;
4986 tdep
->default_mask_address_p
= 0;
4987 set_gdbarch_long_bit (gdbarch
, 32);
4988 set_gdbarch_ptr_bit (gdbarch
, 32);
4989 set_gdbarch_long_long_bit (gdbarch
, 64);
4990 set_gdbarch_long_double_bit (gdbarch
, 128);
4991 set_gdbarch_long_double_format (gdbarch
,
4992 &floatformat_n32n64_long_double_big
);
4995 set_gdbarch_push_dummy_call (gdbarch
, mips_n32n64_push_dummy_call
);
4996 set_gdbarch_return_value (gdbarch
, mips_n32n64_return_value
);
4997 tdep
->mips_last_arg_regnum
= MIPS_A0_REGNUM
+ 8 - 1;
4998 tdep
->mips_last_fp_arg_regnum
= tdep
->regnum
->fp0
+ 12 + 8 - 1;
4999 tdep
->default_mask_address_p
= 0;
5000 set_gdbarch_long_bit (gdbarch
, 64);
5001 set_gdbarch_ptr_bit (gdbarch
, 64);
5002 set_gdbarch_long_long_bit (gdbarch
, 64);
5003 set_gdbarch_long_double_bit (gdbarch
, 128);
5004 set_gdbarch_long_double_format (gdbarch
,
5005 &floatformat_n32n64_long_double_big
);
5008 internal_error (__FILE__
, __LINE__
, _("unknown ABI in switch"));
5011 /* FIXME: jlarmour/2000-04-07: There *is* a flag EF_MIPS_32BIT_MODE
5012 that could indicate -gp32 BUT gas/config/tc-mips.c contains the
5015 ``We deliberately don't allow "-gp32" to set the MIPS_32BITMODE
5016 flag in object files because to do so would make it impossible to
5017 link with libraries compiled without "-gp32". This is
5018 unnecessarily restrictive.
5020 We could solve this problem by adding "-gp32" multilibs to gcc,
5021 but to set this flag before gcc is built with such multilibs will
5022 break too many systems.''
5024 But even more unhelpfully, the default linker output target for
5025 mips64-elf is elf32-bigmips, and has EF_MIPS_32BIT_MODE set, even
5026 for 64-bit programs - you need to change the ABI to change this,
5027 and not all gcc targets support that currently. Therefore using
5028 this flag to detect 32-bit mode would do the wrong thing given
5029 the current gcc - it would make GDB treat these 64-bit programs
5030 as 32-bit programs by default. */
5032 set_gdbarch_read_pc (gdbarch
, mips_read_pc
);
5033 set_gdbarch_write_pc (gdbarch
, mips_write_pc
);
5034 set_gdbarch_read_sp (gdbarch
, mips_read_sp
);
5036 /* Add/remove bits from an address. The MIPS needs be careful to
5037 ensure that all 32 bit addresses are sign extended to 64 bits. */
5038 set_gdbarch_addr_bits_remove (gdbarch
, mips_addr_bits_remove
);
5040 /* Unwind the frame. */
5041 set_gdbarch_unwind_pc (gdbarch
, mips_unwind_pc
);
5042 set_gdbarch_unwind_dummy_id (gdbarch
, mips_unwind_dummy_id
);
5044 /* Map debug register numbers onto internal register numbers. */
5045 set_gdbarch_stab_reg_to_regnum (gdbarch
, mips_stab_reg_to_regnum
);
5046 set_gdbarch_ecoff_reg_to_regnum (gdbarch
,
5047 mips_dwarf_dwarf2_ecoff_reg_to_regnum
);
5048 set_gdbarch_dwarf_reg_to_regnum (gdbarch
,
5049 mips_dwarf_dwarf2_ecoff_reg_to_regnum
);
5050 set_gdbarch_dwarf2_reg_to_regnum (gdbarch
,
5051 mips_dwarf_dwarf2_ecoff_reg_to_regnum
);
5052 set_gdbarch_register_sim_regno (gdbarch
, mips_register_sim_regno
);
5054 /* MIPS version of CALL_DUMMY */
5056 /* NOTE: cagney/2003-08-05: Eventually call dummy location will be
5057 replaced by a command, and all targets will default to on stack
5058 (regardless of the stack's execute status). */
5059 set_gdbarch_call_dummy_location (gdbarch
, AT_SYMBOL
);
5060 set_gdbarch_frame_align (gdbarch
, mips_frame_align
);
5062 set_gdbarch_convert_register_p (gdbarch
, mips_convert_register_p
);
5063 set_gdbarch_register_to_value (gdbarch
, mips_register_to_value
);
5064 set_gdbarch_value_to_register (gdbarch
, mips_value_to_register
);
5066 set_gdbarch_inner_than (gdbarch
, core_addr_lessthan
);
5067 set_gdbarch_breakpoint_from_pc (gdbarch
, mips_breakpoint_from_pc
);
5069 set_gdbarch_skip_prologue (gdbarch
, mips_skip_prologue
);
5071 set_gdbarch_pointer_to_address (gdbarch
, signed_pointer_to_address
);
5072 set_gdbarch_address_to_pointer (gdbarch
, address_to_signed_pointer
);
5073 set_gdbarch_integer_to_address (gdbarch
, mips_integer_to_address
);
5075 set_gdbarch_register_type (gdbarch
, mips_register_type
);
5077 set_gdbarch_print_registers_info (gdbarch
, mips_print_registers_info
);
5079 set_gdbarch_print_insn (gdbarch
, gdb_print_insn_mips
);
5081 /* FIXME: cagney/2003-08-29: The macros HAVE_STEPPABLE_WATCHPOINT,
5082 HAVE_NONSTEPPABLE_WATCHPOINT, and HAVE_CONTINUABLE_WATCHPOINT
5083 need to all be folded into the target vector. Since they are
5084 being used as guards for STOPPED_BY_WATCHPOINT, why not have
5085 STOPPED_BY_WATCHPOINT return the type of watchpoint that the code
5087 set_gdbarch_have_nonsteppable_watchpoint (gdbarch
, 1);
5089 set_gdbarch_skip_trampoline_code (gdbarch
, mips_skip_trampoline_code
);
5091 set_gdbarch_single_step_through_delay (gdbarch
, mips_single_step_through_delay
);
5093 /* Hook in OS ABI-specific overrides, if they have been registered. */
5094 gdbarch_init_osabi (info
, gdbarch
);
5096 /* Unwind the frame. */
5097 frame_unwind_append_sniffer (gdbarch
, mips_stub_frame_sniffer
);
5098 frame_unwind_append_sniffer (gdbarch
, mips_insn16_frame_sniffer
);
5099 frame_unwind_append_sniffer (gdbarch
, mips_insn32_frame_sniffer
);
5100 frame_base_append_sniffer (gdbarch
, mips_stub_frame_base_sniffer
);
5101 frame_base_append_sniffer (gdbarch
, mips_insn16_frame_base_sniffer
);
5102 frame_base_append_sniffer (gdbarch
, mips_insn32_frame_base_sniffer
);
5108 mips_abi_update (char *ignore_args
, int from_tty
, struct cmd_list_element
*c
)
5110 struct gdbarch_info info
;
5112 /* Force the architecture to update, and (if it's a MIPS architecture)
5113 mips_gdbarch_init will take care of the rest. */
5114 gdbarch_info_init (&info
);
5115 gdbarch_update_p (info
);
5118 /* Print out which MIPS ABI is in use. */
5121 show_mips_abi (struct ui_file
*file
,
5123 struct cmd_list_element
*ignored_cmd
,
5124 const char *ignored_value
)
5126 if (gdbarch_bfd_arch_info (current_gdbarch
)->arch
!= bfd_arch_mips
)
5129 "The MIPS ABI is unknown because the current architecture "
5133 enum mips_abi global_abi
= global_mips_abi ();
5134 enum mips_abi actual_abi
= mips_abi (current_gdbarch
);
5135 const char *actual_abi_str
= mips_abi_strings
[actual_abi
];
5137 if (global_abi
== MIPS_ABI_UNKNOWN
)
5140 "The MIPS ABI is set automatically (currently \"%s\").\n",
5142 else if (global_abi
== actual_abi
)
5145 "The MIPS ABI is assumed to be \"%s\" (due to user setting).\n",
5149 /* Probably shouldn't happen... */
5152 "The (auto detected) MIPS ABI \"%s\" is in use even though the user setting was \"%s\".\n",
5153 actual_abi_str
, mips_abi_strings
[global_abi
]);
5159 mips_dump_tdep (struct gdbarch
*current_gdbarch
, struct ui_file
*file
)
5161 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
5165 int ef_mips_32bitmode
;
5166 /* determine the ISA */
5167 switch (tdep
->elf_flags
& EF_MIPS_ARCH
)
5185 /* determine the size of a pointer */
5186 ef_mips_32bitmode
= (tdep
->elf_flags
& EF_MIPS_32BITMODE
);
5187 fprintf_unfiltered (file
,
5188 "mips_dump_tdep: tdep->elf_flags = 0x%x\n",
5190 fprintf_unfiltered (file
,
5191 "mips_dump_tdep: ef_mips_32bitmode = %d\n",
5193 fprintf_unfiltered (file
,
5194 "mips_dump_tdep: ef_mips_arch = %d\n",
5196 fprintf_unfiltered (file
,
5197 "mips_dump_tdep: tdep->mips_abi = %d (%s)\n",
5198 tdep
->mips_abi
, mips_abi_strings
[tdep
->mips_abi
]);
5199 fprintf_unfiltered (file
,
5200 "mips_dump_tdep: mips_mask_address_p() %d (default %d)\n",
5201 mips_mask_address_p (tdep
),
5202 tdep
->default_mask_address_p
);
5204 fprintf_unfiltered (file
,
5205 "mips_dump_tdep: MIPS_DEFAULT_FPU_TYPE = %d (%s)\n",
5206 MIPS_DEFAULT_FPU_TYPE
,
5207 (MIPS_DEFAULT_FPU_TYPE
== MIPS_FPU_NONE
? "none"
5208 : MIPS_DEFAULT_FPU_TYPE
== MIPS_FPU_SINGLE
? "single"
5209 : MIPS_DEFAULT_FPU_TYPE
== MIPS_FPU_DOUBLE
? "double"
5211 fprintf_unfiltered (file
, "mips_dump_tdep: MIPS_EABI = %d\n", MIPS_EABI
);
5212 fprintf_unfiltered (file
,
5213 "mips_dump_tdep: MIPS_FPU_TYPE = %d (%s)\n",
5215 (MIPS_FPU_TYPE
== MIPS_FPU_NONE
? "none"
5216 : MIPS_FPU_TYPE
== MIPS_FPU_SINGLE
? "single"
5217 : MIPS_FPU_TYPE
== MIPS_FPU_DOUBLE
? "double"
5219 fprintf_unfiltered (file
,
5220 "mips_dump_tdep: mips_stack_argsize() = %d\n",
5221 mips_stack_argsize (current_gdbarch
));
5224 extern initialize_file_ftype _initialize_mips_tdep
; /* -Wmissing-prototypes */
5227 _initialize_mips_tdep (void)
5229 static struct cmd_list_element
*mipsfpulist
= NULL
;
5230 struct cmd_list_element
*c
;
5232 mips_abi_string
= mips_abi_strings
[MIPS_ABI_UNKNOWN
];
5233 if (MIPS_ABI_LAST
+ 1
5234 != sizeof (mips_abi_strings
) / sizeof (mips_abi_strings
[0]))
5235 internal_error (__FILE__
, __LINE__
, _("mips_abi_strings out of sync"));
5237 gdbarch_register (bfd_arch_mips
, mips_gdbarch_init
, mips_dump_tdep
);
5239 mips_pdr_data
= register_objfile_data ();
5241 /* Add root prefix command for all "set mips"/"show mips" commands */
5242 add_prefix_cmd ("mips", no_class
, set_mips_command
,
5243 _("Various MIPS specific commands."),
5244 &setmipscmdlist
, "set mips ", 0, &setlist
);
5246 add_prefix_cmd ("mips", no_class
, show_mips_command
,
5247 _("Various MIPS specific commands."),
5248 &showmipscmdlist
, "show mips ", 0, &showlist
);
5250 /* Allow the user to override the saved register size. */
5251 add_setshow_enum_cmd ("saved-gpreg-size", class_obscure
,
5252 size_enums
, &mips_abi_regsize_string
, _("\
5253 Set size of general purpose registers saved on the stack."), _("\
5254 Show size of general purpose registers saved on the stack."), _("\
5255 This option can be set to one of:\n\
5256 32 - Force GDB to treat saved GP registers as 32-bit\n\
5257 64 - Force GDB to treat saved GP registers as 64-bit\n\
5258 auto - Allow GDB to use the target's default setting or autodetect the\n\
5259 saved GP register size from information contained in the\n\
5260 executable (default)."),
5262 NULL
, /* FIXME: i18n: Size of general purpose registers saved on the stack is %s. */
5263 &setmipscmdlist
, &showmipscmdlist
);
5265 /* Allow the user to override the argument stack size. */
5266 add_setshow_enum_cmd ("stack-arg-size", class_obscure
,
5267 size_enums
, &mips_stack_argsize_string
, _("\
5268 Set the amount of stack space reserved for each argument."), _("\
5269 Show the amount of stack space reserved for each argument."), _("\
5270 This option can be set to one of:\n\
5271 32 - Force GDB to allocate 32-bit chunks per argument\n\
5272 64 - Force GDB to allocate 64-bit chunks per argument\n\
5273 auto - Allow GDB to determine the correct setting from the current\n\
5274 target and executable (default)"),
5276 NULL
, /* FIXME: i18n: The amount of stack space reserved for each argument is %s. */
5277 &setmipscmdlist
, &showmipscmdlist
);
5279 /* Allow the user to override the ABI. */
5280 add_setshow_enum_cmd ("abi", class_obscure
, mips_abi_strings
,
5281 &mips_abi_string
, _("\
5282 Set the MIPS ABI used by this program."), _("\
5283 Show the MIPS ABI used by this program."), _("\
5284 This option can be set to one of:\n\
5285 auto - the default ABI associated with the current binary\n\
5294 &setmipscmdlist
, &showmipscmdlist
);
5296 /* Let the user turn off floating point and set the fence post for
5297 heuristic_proc_start. */
5299 add_prefix_cmd ("mipsfpu", class_support
, set_mipsfpu_command
,
5300 _("Set use of MIPS floating-point coprocessor."),
5301 &mipsfpulist
, "set mipsfpu ", 0, &setlist
);
5302 add_cmd ("single", class_support
, set_mipsfpu_single_command
,
5303 _("Select single-precision MIPS floating-point coprocessor."),
5305 add_cmd ("double", class_support
, set_mipsfpu_double_command
,
5306 _("Select double-precision MIPS floating-point coprocessor."),
5308 add_alias_cmd ("on", "double", class_support
, 1, &mipsfpulist
);
5309 add_alias_cmd ("yes", "double", class_support
, 1, &mipsfpulist
);
5310 add_alias_cmd ("1", "double", class_support
, 1, &mipsfpulist
);
5311 add_cmd ("none", class_support
, set_mipsfpu_none_command
,
5312 _("Select no MIPS floating-point coprocessor."), &mipsfpulist
);
5313 add_alias_cmd ("off", "none", class_support
, 1, &mipsfpulist
);
5314 add_alias_cmd ("no", "none", class_support
, 1, &mipsfpulist
);
5315 add_alias_cmd ("0", "none", class_support
, 1, &mipsfpulist
);
5316 add_cmd ("auto", class_support
, set_mipsfpu_auto_command
,
5317 _("Select MIPS floating-point coprocessor automatically."),
5319 add_cmd ("mipsfpu", class_support
, show_mipsfpu_command
,
5320 _("Show current use of MIPS floating-point coprocessor target."),
5323 /* We really would like to have both "0" and "unlimited" work, but
5324 command.c doesn't deal with that. So make it a var_zinteger
5325 because the user can always use "999999" or some such for unlimited. */
5326 add_setshow_zinteger_cmd ("heuristic-fence-post", class_support
,
5327 &heuristic_fence_post
, _("\
5328 Set the distance searched for the start of a function."), _("\
5329 Show the distance searched for the start of a function."), _("\
5330 If you are debugging a stripped executable, GDB needs to search through the\n\
5331 program for the start of a function. This command sets the distance of the\n\
5332 search. The only need to set it is when debugging a stripped executable."),
5333 reinit_frame_cache_sfunc
,
5334 NULL
, /* FIXME: i18n: The distance searched for the start of a function is %s. */
5335 &setlist
, &showlist
);
5337 /* Allow the user to control whether the upper bits of 64-bit
5338 addresses should be zeroed. */
5339 add_setshow_auto_boolean_cmd ("mask-address", no_class
,
5340 &mask_address_var
, _("\
5341 Set zeroing of upper 32 bits of 64-bit addresses."), _("\
5342 Show zeroing of upper 32 bits of 64-bit addresses."), _("\
5343 Use \"on\" to enable the masking, \"off\" to disable it and \"auto\" to \n\
5344 allow GDB to determine the correct value."),
5345 NULL
, show_mask_address
,
5346 &setmipscmdlist
, &showmipscmdlist
);
5348 /* Allow the user to control the size of 32 bit registers within the
5349 raw remote packet. */
5350 add_setshow_boolean_cmd ("remote-mips64-transfers-32bit-regs", class_obscure
,
5351 &mips64_transfers_32bit_regs_p
, _("\
5352 Set compatibility with 64-bit MIPS target that transfers 32-bit quantities."),
5354 Show compatibility with 64-bit MIPS target that transfers 32-bit quantities."),
5356 Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\
5357 that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
5358 64 bits for others. Use \"off\" to disable compatibility mode"),
5359 set_mips64_transfers_32bit_regs
,
5360 NULL
, /* FIXME: i18n: Compatibility with 64-bit MIPS target that transfers 32-bit quantities is %s. */
5361 &setlist
, &showlist
);
5363 /* Debug this files internals. */
5364 add_setshow_zinteger_cmd ("mips", class_maintenance
,
5366 Set mips debugging."), _("\
5367 Show mips debugging."), _("\
5368 When non-zero, mips specific debugging is enabled."),
5370 NULL
, /* FIXME: i18n: Mips debugging is currently %s. */
5371 &setdebuglist
, &showdebuglist
);