Mention mi0 and mi1 as --interpreter options.
[deliverable/binutils-gdb.git] / gdb / mips-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
bf64bfd6 2
b6ba6518
KB
3 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
bf64bfd6 5
c906108c
SS
6 Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
7 and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
c906108c 15
c5aa993b
JM
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
c906108c 20
c5aa993b
JM
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
c906108c
SS
25
26#include "defs.h"
27#include "gdb_string.h"
28#include "frame.h"
29#include "inferior.h"
30#include "symtab.h"
31#include "value.h"
32#include "gdbcmd.h"
33#include "language.h"
34#include "gdbcore.h"
35#include "symfile.h"
36#include "objfiles.h"
37#include "gdbtypes.h"
38#include "target.h"
28d069e6 39#include "arch-utils.h"
4e052eda 40#include "regcache.h"
c906108c
SS
41
42#include "opcode/mips.h"
c2d11a7d
JM
43#include "elf/mips.h"
44#include "elf-bfd.h"
2475bac3 45#include "symcat.h"
c906108c 46
b0069a17
AC
47/* The sizes of floating point registers. */
48
49enum
50{
51 MIPS_FPU_SINGLE_REGSIZE = 4,
52 MIPS_FPU_DOUBLE_REGSIZE = 8
53};
54
0dadbba0
AC
55/* All the possible MIPS ABIs. */
56
57enum mips_abi
58 {
59 MIPS_ABI_UNKNOWN,
60 MIPS_ABI_N32,
61 MIPS_ABI_O32,
62 MIPS_ABI_O64,
63 MIPS_ABI_EABI32,
64 MIPS_ABI_EABI64
65 };
66
cce74817 67struct frame_extra_info
c5aa993b
JM
68 {
69 mips_extra_func_info_t proc_desc;
70 int num_args;
71 };
cce74817 72
d929b26f
AC
73/* Various MIPS ISA options (related to stack analysis) can be
74 overridden dynamically. Establish an enum/array for managing
75 them. */
76
53904c9e
AC
77static const char size_auto[] = "auto";
78static const char size_32[] = "32";
79static const char size_64[] = "64";
d929b26f 80
53904c9e 81static const char *size_enums[] = {
d929b26f
AC
82 size_auto,
83 size_32,
84 size_64,
a5ea2558
AC
85 0
86};
87
7a292a7a
SS
88/* Some MIPS boards don't support floating point while others only
89 support single-precision floating-point operations. See also
90 FP_REGISTER_DOUBLE. */
c906108c
SS
91
92enum mips_fpu_type
c5aa993b
JM
93 {
94 MIPS_FPU_DOUBLE, /* Full double precision floating point. */
95 MIPS_FPU_SINGLE, /* Single precision floating point (R4650). */
96 MIPS_FPU_NONE /* No floating point. */
97 };
c906108c
SS
98
99#ifndef MIPS_DEFAULT_FPU_TYPE
100#define MIPS_DEFAULT_FPU_TYPE MIPS_FPU_DOUBLE
101#endif
102static int mips_fpu_type_auto = 1;
103static enum mips_fpu_type mips_fpu_type = MIPS_DEFAULT_FPU_TYPE;
104#define MIPS_FPU_TYPE mips_fpu_type
105
c906108c 106/* Do not use "TARGET_IS_MIPS64" to test the size of floating point registers */
7a292a7a 107#ifndef FP_REGISTER_DOUBLE
c906108c 108#define FP_REGISTER_DOUBLE (REGISTER_VIRTUAL_SIZE(FP0_REGNUM) == 8)
7a292a7a
SS
109#endif
110
9ace0497 111static int mips_debug = 0;
7a292a7a 112
c2d11a7d
JM
113/* MIPS specific per-architecture information */
114struct gdbarch_tdep
115 {
116 /* from the elf header */
117 int elf_flags;
118 /* mips options */
0dadbba0 119 enum mips_abi mips_abi;
acdb74a0 120 const char *mips_abi_string;
c2d11a7d
JM
121 enum mips_fpu_type mips_fpu_type;
122 int mips_last_arg_regnum;
123 int mips_last_fp_arg_regnum;
a5ea2558 124 int mips_default_saved_regsize;
c2d11a7d 125 int mips_fp_register_double;
d929b26f
AC
126 int mips_regs_have_home_p;
127 int mips_default_stack_argsize;
5213ab06 128 int gdb_target_is_mips64;
4014092b 129 int default_mask_address_p;
c2d11a7d
JM
130 };
131
132#if GDB_MULTI_ARCH
133#undef MIPS_EABI
0dadbba0 134#define MIPS_EABI (gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI32 \
216a600b 135 || gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI64)
c2d11a7d
JM
136#endif
137
138#if GDB_MULTI_ARCH
139#undef MIPS_LAST_FP_ARG_REGNUM
140#define MIPS_LAST_FP_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_fp_arg_regnum)
141#endif
142
143#if GDB_MULTI_ARCH
144#undef MIPS_LAST_ARG_REGNUM
145#define MIPS_LAST_ARG_REGNUM (gdbarch_tdep (current_gdbarch)->mips_last_arg_regnum)
146#endif
147
148#if GDB_MULTI_ARCH
149#undef MIPS_FPU_TYPE
150#define MIPS_FPU_TYPE (gdbarch_tdep (current_gdbarch)->mips_fpu_type)
151#endif
152
d929b26f
AC
153/* Return the currently configured (or set) saved register size. */
154
c2d11a7d 155#if GDB_MULTI_ARCH
a5ea2558
AC
156#undef MIPS_DEFAULT_SAVED_REGSIZE
157#define MIPS_DEFAULT_SAVED_REGSIZE (gdbarch_tdep (current_gdbarch)->mips_default_saved_regsize)
d929b26f
AC
158#elif !defined (MIPS_DEFAULT_SAVED_REGSIZE)
159#define MIPS_DEFAULT_SAVED_REGSIZE MIPS_REGSIZE
c2d11a7d
JM
160#endif
161
53904c9e 162static const char *mips_saved_regsize_string = size_auto;
d929b26f
AC
163
164#define MIPS_SAVED_REGSIZE (mips_saved_regsize())
165
166static unsigned int
acdb74a0 167mips_saved_regsize (void)
d929b26f
AC
168{
169 if (mips_saved_regsize_string == size_auto)
170 return MIPS_DEFAULT_SAVED_REGSIZE;
171 else if (mips_saved_regsize_string == size_64)
172 return 8;
173 else /* if (mips_saved_regsize_string == size_32) */
174 return 4;
175}
176
c2d11a7d
JM
177/* Indicate that the ABI makes use of double-precision registers
178 provided by the FPU (rather than combining pairs of registers to
179 form double-precision values). Do not use "TARGET_IS_MIPS64" to
180 determine if the ABI is using double-precision registers. See also
181 MIPS_FPU_TYPE. */
182#if GDB_MULTI_ARCH
183#undef FP_REGISTER_DOUBLE
184#define FP_REGISTER_DOUBLE (gdbarch_tdep (current_gdbarch)->mips_fp_register_double)
185#endif
186
d929b26f
AC
187/* Does the caller allocate a ``home'' for each register used in the
188 function call? The N32 ABI and MIPS_EABI do not, the others do. */
189
190#if GDB_MULTI_ARCH
191#undef MIPS_REGS_HAVE_HOME_P
192#define MIPS_REGS_HAVE_HOME_P (gdbarch_tdep (current_gdbarch)->mips_regs_have_home_p)
193#elif !defined (MIPS_REGS_HAVE_HOME_P)
194#define MIPS_REGS_HAVE_HOME_P (!MIPS_EABI)
195#endif
196
197/* The amount of space reserved on the stack for registers. This is
198 different to MIPS_SAVED_REGSIZE as it determines the alignment of
199 data allocated after the registers have run out. */
200
201#if GDB_MULTI_ARCH
202#undef MIPS_DEFAULT_STACK_ARGSIZE
0dadbba0 203#define MIPS_DEFAULT_STACK_ARGSIZE (gdbarch_tdep (current_gdbarch)->mips_default_stack_argsize)
d929b26f
AC
204#elif !defined (MIPS_DEFAULT_STACK_ARGSIZE)
205#define MIPS_DEFAULT_STACK_ARGSIZE (MIPS_DEFAULT_SAVED_REGSIZE)
206#endif
207
208#define MIPS_STACK_ARGSIZE (mips_stack_argsize ())
209
53904c9e 210static const char *mips_stack_argsize_string = size_auto;
d929b26f
AC
211
212static unsigned int
213mips_stack_argsize (void)
214{
215 if (mips_stack_argsize_string == size_auto)
216 return MIPS_DEFAULT_STACK_ARGSIZE;
217 else if (mips_stack_argsize_string == size_64)
218 return 8;
219 else /* if (mips_stack_argsize_string == size_32) */
220 return 4;
221}
222
5213ab06
AC
223#if GDB_MULTI_ARCH
224#undef GDB_TARGET_IS_MIPS64
225#define GDB_TARGET_IS_MIPS64 (gdbarch_tdep (current_gdbarch)->gdb_target_is_mips64 + 0)
226#endif
c2d11a7d 227
92e1c15c
FF
228#if GDB_MULTI_ARCH
229#undef MIPS_DEFAULT_MASK_ADDRESS_P
230#define MIPS_DEFAULT_MASK_ADDRESS_P (gdbarch_tdep (current_gdbarch)->default_mask_address_p)
231#elif !defined (MIPS_DEFAULT_MASK_ADDRESS_P)
232#define MIPS_DEFAULT_MASK_ADDRESS_P (0)
233#endif
234
7a292a7a 235#define VM_MIN_ADDRESS (CORE_ADDR)0x400000
c906108c 236
a14ed312 237int gdb_print_insn_mips (bfd_vma, disassemble_info *);
c906108c 238
a14ed312 239static void mips_print_register (int, int);
c906108c
SS
240
241static mips_extra_func_info_t
a14ed312 242heuristic_proc_desc (CORE_ADDR, CORE_ADDR, struct frame_info *);
c906108c 243
a14ed312 244static CORE_ADDR heuristic_proc_start (CORE_ADDR);
c906108c 245
a14ed312 246static CORE_ADDR read_next_frame_reg (struct frame_info *, int);
c906108c 247
a14ed312 248int mips_set_processor_type (char *);
c906108c 249
a14ed312 250static void mips_show_processor_type_command (char *, int);
c906108c 251
a14ed312 252static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element *);
c906108c
SS
253
254static mips_extra_func_info_t
a14ed312 255find_proc_desc (CORE_ADDR pc, struct frame_info *next_frame);
c906108c 256
a14ed312
KB
257static CORE_ADDR after_prologue (CORE_ADDR pc,
258 mips_extra_func_info_t proc_desc);
c906108c
SS
259
260/* This value is the model of MIPS in use. It is derived from the value
261 of the PrID register. */
262
263char *mips_processor_type;
264
265char *tmp_mips_processor_type;
266
acdb74a0
AC
267/* The list of available "set mips " and "show mips " commands */
268
269static struct cmd_list_element *setmipscmdlist = NULL;
270static struct cmd_list_element *showmipscmdlist = NULL;
271
c906108c
SS
272/* A set of original names, to be used when restoring back to generic
273 registers from a specific set. */
274
cce74817
JM
275char *mips_generic_reg_names[] = MIPS_REGISTER_NAMES;
276char **mips_processor_reg_names = mips_generic_reg_names;
277
278char *
fba45db2 279mips_register_name (int i)
cce74817
JM
280{
281 return mips_processor_reg_names[i];
282}
9846de1b 283/* *INDENT-OFF* */
c906108c
SS
284/* Names of IDT R3041 registers. */
285
286char *mips_r3041_reg_names[] = {
287 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
288 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
289 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
290 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
291 "sr", "lo", "hi", "bad", "cause","pc",
292 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
293 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
294 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
295 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
296 "fsr", "fir", "fp", "",
297 "", "", "bus", "ccfg", "", "", "", "",
298 "", "", "port", "cmp", "", "", "epc", "prid",
299};
300
301/* Names of IDT R3051 registers. */
302
303char *mips_r3051_reg_names[] = {
304 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
305 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
306 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
307 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
308 "sr", "lo", "hi", "bad", "cause","pc",
309 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
310 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
311 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
312 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
313 "fsr", "fir", "fp", "",
314 "inx", "rand", "elo", "", "ctxt", "", "", "",
315 "", "", "ehi", "", "", "", "epc", "prid",
316};
317
318/* Names of IDT R3081 registers. */
319
320char *mips_r3081_reg_names[] = {
321 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
322 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
323 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
324 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
325 "sr", "lo", "hi", "bad", "cause","pc",
326 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
327 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
328 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
329 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
330 "fsr", "fir", "fp", "",
331 "inx", "rand", "elo", "cfg", "ctxt", "", "", "",
332 "", "", "ehi", "", "", "", "epc", "prid",
333};
334
335/* Names of LSI 33k registers. */
336
337char *mips_lsi33k_reg_names[] = {
338 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
339 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
340 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
341 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
342 "epc", "hi", "lo", "sr", "cause","badvaddr",
343 "dcic", "bpc", "bda", "", "", "", "", "",
344 "", "", "", "", "", "", "", "",
345 "", "", "", "", "", "", "", "",
346 "", "", "", "", "", "", "", "",
347 "", "", "", "",
348 "", "", "", "", "", "", "", "",
349 "", "", "", "", "", "", "", "",
350};
351
352struct {
353 char *name;
354 char **regnames;
355} mips_processor_type_table[] = {
356 { "generic", mips_generic_reg_names },
357 { "r3041", mips_r3041_reg_names },
358 { "r3051", mips_r3051_reg_names },
359 { "r3071", mips_r3081_reg_names },
360 { "r3081", mips_r3081_reg_names },
361 { "lsi33k", mips_lsi33k_reg_names },
362 { NULL, NULL }
363};
9846de1b 364/* *INDENT-ON* */
c906108c 365
c5aa993b
JM
366
367
368
c906108c 369/* Table to translate MIPS16 register field to actual register number. */
c5aa993b
JM
370static int mips16_to_32_reg[8] =
371{16, 17, 2, 3, 4, 5, 6, 7};
c906108c
SS
372
373/* Heuristic_proc_start may hunt through the text section for a long
374 time across a 2400 baud serial line. Allows the user to limit this
375 search. */
376
377static unsigned int heuristic_fence_post = 0;
378
c5aa993b
JM
379#define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
380#define PROC_HIGH_ADDR(proc) ((proc)->high_addr) /* upper address bound */
c906108c
SS
381#define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
382#define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
383#define PROC_FRAME_ADJUST(proc) ((proc)->frame_adjust)
384#define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
385#define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
386#define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
387#define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
388#define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
389#define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
390#define _PROC_MAGIC_ 0x0F0F0F0F
391#define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
392#define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
393
394struct linked_proc_info
c5aa993b
JM
395 {
396 struct mips_extra_func_info info;
397 struct linked_proc_info *next;
398 }
399 *linked_proc_desc_table = NULL;
c906108c 400
cce74817 401void
acdb74a0 402mips_print_extra_frame_info (struct frame_info *fi)
cce74817
JM
403{
404 if (fi
405 && fi->extra_info
406 && fi->extra_info->proc_desc
407 && fi->extra_info->proc_desc->pdr.framereg < NUM_REGS)
d4f3574e 408 printf_filtered (" frame pointer is at %s+%s\n",
cce74817 409 REGISTER_NAME (fi->extra_info->proc_desc->pdr.framereg),
d4f3574e 410 paddr_d (fi->extra_info->proc_desc->pdr.frameoffset));
cce74817 411}
c906108c 412
43e526b9
JM
413/* Convert between RAW and VIRTUAL registers. The RAW register size
414 defines the remote-gdb packet. */
415
416static int mips64_transfers_32bit_regs_p = 0;
417
418int
acdb74a0 419mips_register_raw_size (int reg_nr)
43e526b9
JM
420{
421 if (mips64_transfers_32bit_regs_p)
422 return REGISTER_VIRTUAL_SIZE (reg_nr);
d02ee681
AC
423 else if (reg_nr >= FP0_REGNUM && reg_nr < FP0_REGNUM + 32
424 && FP_REGISTER_DOUBLE)
425 /* For MIPS_ABI_N32 (for example) we need 8 byte floating point
426 registers. */
427 return 8;
43e526b9
JM
428 else
429 return MIPS_REGSIZE;
430}
431
432int
acdb74a0 433mips_register_convertible (int reg_nr)
43e526b9
JM
434{
435 if (mips64_transfers_32bit_regs_p)
436 return 0;
437 else
438 return (REGISTER_RAW_SIZE (reg_nr) > REGISTER_VIRTUAL_SIZE (reg_nr));
439}
440
441void
acdb74a0
AC
442mips_register_convert_to_virtual (int n, struct type *virtual_type,
443 char *raw_buf, char *virt_buf)
43e526b9
JM
444{
445 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
446 memcpy (virt_buf,
447 raw_buf + (REGISTER_RAW_SIZE (n) - TYPE_LENGTH (virtual_type)),
448 TYPE_LENGTH (virtual_type));
449 else
450 memcpy (virt_buf,
451 raw_buf,
452 TYPE_LENGTH (virtual_type));
453}
454
455void
acdb74a0
AC
456mips_register_convert_to_raw (struct type *virtual_type, int n,
457 char *virt_buf, char *raw_buf)
43e526b9
JM
458{
459 memset (raw_buf, 0, REGISTER_RAW_SIZE (n));
460 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
461 memcpy (raw_buf + (REGISTER_RAW_SIZE (n) - TYPE_LENGTH (virtual_type)),
462 virt_buf,
463 TYPE_LENGTH (virtual_type));
464 else
465 memcpy (raw_buf,
466 virt_buf,
467 TYPE_LENGTH (virtual_type));
468}
469
c906108c 470/* Should the upper word of 64-bit addresses be zeroed? */
4014092b
AC
471enum cmd_auto_boolean mask_address_var = CMD_AUTO_BOOLEAN_AUTO;
472
473static int
474mips_mask_address_p (void)
475{
476 switch (mask_address_var)
477 {
478 case CMD_AUTO_BOOLEAN_TRUE:
479 return 1;
480 case CMD_AUTO_BOOLEAN_FALSE:
481 return 0;
482 break;
483 case CMD_AUTO_BOOLEAN_AUTO:
92e1c15c 484 return MIPS_DEFAULT_MASK_ADDRESS_P;
4014092b 485 default:
8e65ff28
AC
486 internal_error (__FILE__, __LINE__,
487 "mips_mask_address_p: bad switch");
4014092b
AC
488 return -1;
489 }
490}
491
492static void
493show_mask_address (char *cmd, int from_tty)
494{
495 switch (mask_address_var)
496 {
497 case CMD_AUTO_BOOLEAN_TRUE:
498 printf_filtered ("The 32 bit mips address mask is enabled\n");
499 break;
500 case CMD_AUTO_BOOLEAN_FALSE:
501 printf_filtered ("The 32 bit mips address mask is disabled\n");
502 break;
503 case CMD_AUTO_BOOLEAN_AUTO:
504 printf_filtered ("The 32 bit address mask is set automatically. Currently %s\n",
505 mips_mask_address_p () ? "enabled" : "disabled");
506 break;
507 default:
8e65ff28
AC
508 internal_error (__FILE__, __LINE__,
509 "show_mask_address: bad switch");
4014092b
AC
510 break;
511 }
512}
c906108c
SS
513
514/* Should call_function allocate stack space for a struct return? */
515int
fba45db2 516mips_use_struct_convention (int gcc_p, struct type *type)
c906108c
SS
517{
518 if (MIPS_EABI)
7a292a7a 519 return (TYPE_LENGTH (type) > 2 * MIPS_SAVED_REGSIZE);
c906108c 520 else
c5aa993b 521 return 1; /* Structures are returned by ref in extra arg0 */
c906108c
SS
522}
523
524/* Tell if the program counter value in MEMADDR is in a MIPS16 function. */
525
526static int
527pc_is_mips16 (bfd_vma memaddr)
528{
529 struct minimal_symbol *sym;
530
531 /* If bit 0 of the address is set, assume this is a MIPS16 address. */
532 if (IS_MIPS16_ADDR (memaddr))
533 return 1;
534
535 /* A flag indicating that this is a MIPS16 function is stored by elfread.c in
536 the high bit of the info field. Use this to decide if the function is
537 MIPS16 or normal MIPS. */
538 sym = lookup_minimal_symbol_by_pc (memaddr);
539 if (sym)
540 return MSYMBOL_IS_SPECIAL (sym);
541 else
542 return 0;
543}
544
6c997a34
AC
545/* MIPS believes that the PC has a sign extended value. Perhaphs the
546 all registers should be sign extended for simplicity? */
547
548static CORE_ADDR
39f77062 549mips_read_pc (ptid_t ptid)
6c997a34 550{
39f77062 551 return read_signed_register_pid (PC_REGNUM, ptid);
6c997a34 552}
c906108c
SS
553
554/* This returns the PC of the first inst after the prologue. If we can't
555 find the prologue, then return 0. */
556
557static CORE_ADDR
acdb74a0
AC
558after_prologue (CORE_ADDR pc,
559 mips_extra_func_info_t proc_desc)
c906108c
SS
560{
561 struct symtab_and_line sal;
562 CORE_ADDR func_addr, func_end;
563
564 if (!proc_desc)
565 proc_desc = find_proc_desc (pc, NULL);
566
567 if (proc_desc)
568 {
569 /* If function is frameless, then we need to do it the hard way. I
c5aa993b 570 strongly suspect that frameless always means prologueless... */
c906108c
SS
571 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
572 && PROC_FRAME_OFFSET (proc_desc) == 0)
573 return 0;
574 }
575
576 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
577 return 0; /* Unknown */
578
579 sal = find_pc_line (func_addr, 0);
580
581 if (sal.end < func_end)
582 return sal.end;
583
584 /* The line after the prologue is after the end of the function. In this
585 case, tell the caller to find the prologue the hard way. */
586
587 return 0;
588}
589
590/* Decode a MIPS32 instruction that saves a register in the stack, and
591 set the appropriate bit in the general register mask or float register mask
592 to indicate which register is saved. This is a helper function
593 for mips_find_saved_regs. */
594
595static void
acdb74a0
AC
596mips32_decode_reg_save (t_inst inst, unsigned long *gen_mask,
597 unsigned long *float_mask)
c906108c
SS
598{
599 int reg;
600
601 if ((inst & 0xffe00000) == 0xafa00000 /* sw reg,n($sp) */
602 || (inst & 0xffe00000) == 0xafc00000 /* sw reg,n($r30) */
603 || (inst & 0xffe00000) == 0xffa00000) /* sd reg,n($sp) */
604 {
605 /* It might be possible to use the instruction to
c5aa993b
JM
606 find the offset, rather than the code below which
607 is based on things being in a certain order in the
608 frame, but figuring out what the instruction's offset
609 is relative to might be a little tricky. */
c906108c
SS
610 reg = (inst & 0x001f0000) >> 16;
611 *gen_mask |= (1 << reg);
612 }
613 else if ((inst & 0xffe00000) == 0xe7a00000 /* swc1 freg,n($sp) */
c5aa993b
JM
614 || (inst & 0xffe00000) == 0xe7c00000 /* swc1 freg,n($r30) */
615 || (inst & 0xffe00000) == 0xf7a00000) /* sdc1 freg,n($sp) */
c906108c
SS
616
617 {
618 reg = ((inst & 0x001f0000) >> 16);
619 *float_mask |= (1 << reg);
620 }
621}
622
623/* Decode a MIPS16 instruction that saves a register in the stack, and
624 set the appropriate bit in the general register or float register mask
625 to indicate which register is saved. This is a helper function
626 for mips_find_saved_regs. */
627
628static void
acdb74a0 629mips16_decode_reg_save (t_inst inst, unsigned long *gen_mask)
c906108c 630{
c5aa993b 631 if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
c906108c
SS
632 {
633 int reg = mips16_to_32_reg[(inst & 0x700) >> 8];
634 *gen_mask |= (1 << reg);
635 }
c5aa993b 636 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
c906108c
SS
637 {
638 int reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
639 *gen_mask |= (1 << reg);
640 }
c5aa993b 641 else if ((inst & 0xff00) == 0x6200 /* sw $ra,n($sp) */
c906108c
SS
642 || (inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
643 *gen_mask |= (1 << RA_REGNUM);
644}
645
646
647/* Fetch and return instruction from the specified location. If the PC
648 is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
649
650static t_inst
acdb74a0 651mips_fetch_instruction (CORE_ADDR addr)
c906108c
SS
652{
653 char buf[MIPS_INSTLEN];
654 int instlen;
655 int status;
656
657 if (pc_is_mips16 (addr))
658 {
659 instlen = MIPS16_INSTLEN;
660 addr = UNMAKE_MIPS16_ADDR (addr);
661 }
662 else
c5aa993b 663 instlen = MIPS_INSTLEN;
c906108c
SS
664 status = read_memory_nobpt (addr, buf, instlen);
665 if (status)
666 memory_error (status, addr);
667 return extract_unsigned_integer (buf, instlen);
668}
669
670
671/* These the fields of 32 bit mips instructions */
672#define mips32_op(x) (x >> 25)
673#define itype_op(x) (x >> 25)
674#define itype_rs(x) ((x >> 21)& 0x1f)
675#define itype_rt(x) ((x >> 16) & 0x1f)
676#define itype_immediate(x) ( x & 0xffff)
677
678#define jtype_op(x) (x >> 25)
679#define jtype_target(x) ( x & 0x03fffff)
680
681#define rtype_op(x) (x >>25)
682#define rtype_rs(x) ((x>>21) & 0x1f)
683#define rtype_rt(x) ((x>>16) & 0x1f)
c5aa993b 684#define rtype_rd(x) ((x>>11) & 0x1f)
c906108c
SS
685#define rtype_shamt(x) ((x>>6) & 0x1f)
686#define rtype_funct(x) (x & 0x3f )
687
688static CORE_ADDR
c5aa993b
JM
689mips32_relative_offset (unsigned long inst)
690{
691 long x;
692 x = itype_immediate (inst);
693 if (x & 0x8000) /* sign bit set */
c906108c 694 {
c5aa993b 695 x |= 0xffff0000; /* sign extension */
c906108c 696 }
c5aa993b
JM
697 x = x << 2;
698 return x;
c906108c
SS
699}
700
701/* Determine whate to set a single step breakpoint while considering
702 branch prediction */
703CORE_ADDR
c5aa993b
JM
704mips32_next_pc (CORE_ADDR pc)
705{
706 unsigned long inst;
707 int op;
708 inst = mips_fetch_instruction (pc);
709 if ((inst & 0xe0000000) != 0) /* Not a special, junp or branch instruction */
710 {
711 if ((inst >> 27) == 5) /* BEQL BNEZ BLEZL BGTZE , bits 0101xx */
712 {
713 op = ((inst >> 25) & 0x03);
c906108c
SS
714 switch (op)
715 {
c5aa993b
JM
716 case 0:
717 goto equal_branch; /* BEQL */
718 case 1:
719 goto neq_branch; /* BNEZ */
720 case 2:
721 goto less_branch; /* BLEZ */
722 case 3:
723 goto greater_branch; /* BGTZ */
724 default:
725 pc += 4;
c906108c
SS
726 }
727 }
c5aa993b
JM
728 else
729 pc += 4; /* Not a branch, next instruction is easy */
c906108c
SS
730 }
731 else
c5aa993b
JM
732 { /* This gets way messy */
733
c906108c 734 /* Further subdivide into SPECIAL, REGIMM and other */
c5aa993b 735 switch (op = ((inst >> 26) & 0x07)) /* extract bits 28,27,26 */
c906108c 736 {
c5aa993b
JM
737 case 0: /* SPECIAL */
738 op = rtype_funct (inst);
739 switch (op)
740 {
741 case 8: /* JR */
742 case 9: /* JALR */
6c997a34
AC
743 /* Set PC to that address */
744 pc = read_signed_register (rtype_rs (inst));
c5aa993b
JM
745 break;
746 default:
747 pc += 4;
748 }
749
750 break; /* end special */
751 case 1: /* REGIMM */
c906108c 752 {
c5aa993b
JM
753 op = jtype_op (inst); /* branch condition */
754 switch (jtype_op (inst))
c906108c 755 {
c5aa993b
JM
756 case 0: /* BLTZ */
757 case 2: /* BLTXL */
758 case 16: /* BLTZALL */
759 case 18: /* BLTZALL */
c906108c 760 less_branch:
6c997a34 761 if (read_signed_register (itype_rs (inst)) < 0)
c5aa993b
JM
762 pc += mips32_relative_offset (inst) + 4;
763 else
764 pc += 8; /* after the delay slot */
765 break;
766 case 1: /* GEZ */
767 case 3: /* BGEZL */
768 case 17: /* BGEZAL */
769 case 19: /* BGEZALL */
c906108c 770 greater_equal_branch:
6c997a34 771 if (read_signed_register (itype_rs (inst)) >= 0)
c5aa993b
JM
772 pc += mips32_relative_offset (inst) + 4;
773 else
774 pc += 8; /* after the delay slot */
775 break;
776 /* All of the other intructions in the REGIMM catagory */
777 default:
778 pc += 4;
c906108c
SS
779 }
780 }
c5aa993b
JM
781 break; /* end REGIMM */
782 case 2: /* J */
783 case 3: /* JAL */
784 {
785 unsigned long reg;
786 reg = jtype_target (inst) << 2;
787 pc = reg + ((pc + 4) & 0xf0000000);
c906108c
SS
788 /* Whats this mysterious 0xf000000 adjustment ??? */
789 }
c5aa993b
JM
790 break;
791 /* FIXME case JALX : */
792 {
793 unsigned long reg;
794 reg = jtype_target (inst) << 2;
795 pc = reg + ((pc + 4) & 0xf0000000) + 1; /* yes, +1 */
c906108c
SS
796 /* Add 1 to indicate 16 bit mode - Invert ISA mode */
797 }
c5aa993b
JM
798 break; /* The new PC will be alternate mode */
799 case 4: /* BEQ , BEQL */
800 equal_branch:
6c997a34
AC
801 if (read_signed_register (itype_rs (inst)) ==
802 read_signed_register (itype_rt (inst)))
c5aa993b
JM
803 pc += mips32_relative_offset (inst) + 4;
804 else
805 pc += 8;
806 break;
807 case 5: /* BNE , BNEL */
808 neq_branch:
6c997a34
AC
809 if (read_signed_register (itype_rs (inst)) !=
810 read_signed_register (itype_rs (inst)))
c5aa993b
JM
811 pc += mips32_relative_offset (inst) + 4;
812 else
813 pc += 8;
814 break;
815 case 6: /* BLEZ , BLEZL */
c906108c 816 less_zero_branch:
6c997a34 817 if (read_signed_register (itype_rs (inst) <= 0))
c5aa993b
JM
818 pc += mips32_relative_offset (inst) + 4;
819 else
820 pc += 8;
821 break;
822 case 7:
823 greater_branch: /* BGTZ BGTZL */
6c997a34 824 if (read_signed_register (itype_rs (inst) > 0))
c5aa993b
JM
825 pc += mips32_relative_offset (inst) + 4;
826 else
827 pc += 8;
828 break;
829 default:
830 pc += 8;
831 } /* switch */
832 } /* else */
833 return pc;
834} /* mips32_next_pc */
c906108c
SS
835
836/* Decoding the next place to set a breakpoint is irregular for the
e26cc349 837 mips 16 variant, but fortunately, there fewer instructions. We have to cope
c906108c
SS
838 ith extensions for 16 bit instructions and a pair of actual 32 bit instructions.
839 We dont want to set a single step instruction on the extend instruction
840 either.
c5aa993b 841 */
c906108c
SS
842
843/* Lots of mips16 instruction formats */
844/* Predicting jumps requires itype,ritype,i8type
845 and their extensions extItype,extritype,extI8type
c5aa993b 846 */
c906108c
SS
847enum mips16_inst_fmts
848{
c5aa993b
JM
849 itype, /* 0 immediate 5,10 */
850 ritype, /* 1 5,3,8 */
851 rrtype, /* 2 5,3,3,5 */
852 rritype, /* 3 5,3,3,5 */
853 rrrtype, /* 4 5,3,3,3,2 */
854 rriatype, /* 5 5,3,3,1,4 */
855 shifttype, /* 6 5,3,3,3,2 */
856 i8type, /* 7 5,3,8 */
857 i8movtype, /* 8 5,3,3,5 */
858 i8mov32rtype, /* 9 5,3,5,3 */
859 i64type, /* 10 5,3,8 */
860 ri64type, /* 11 5,3,3,5 */
861 jalxtype, /* 12 5,1,5,5,16 - a 32 bit instruction */
862 exiItype, /* 13 5,6,5,5,1,1,1,1,1,1,5 */
863 extRitype, /* 14 5,6,5,5,3,1,1,1,5 */
864 extRRItype, /* 15 5,5,5,5,3,3,5 */
865 extRRIAtype, /* 16 5,7,4,5,3,3,1,4 */
866 EXTshifttype, /* 17 5,5,1,1,1,1,1,1,5,3,3,1,1,1,2 */
867 extI8type, /* 18 5,6,5,5,3,1,1,1,5 */
868 extI64type, /* 19 5,6,5,5,3,1,1,1,5 */
869 extRi64type, /* 20 5,6,5,5,3,3,5 */
870 extshift64type /* 21 5,5,1,1,1,1,1,1,5,1,1,1,3,5 */
871};
12f02c2a
AC
872/* I am heaping all the fields of the formats into one structure and
873 then, only the fields which are involved in instruction extension */
c906108c 874struct upk_mips16
c5aa993b 875 {
12f02c2a 876 CORE_ADDR offset;
c5aa993b
JM
877 unsigned int regx; /* Function in i8 type */
878 unsigned int regy;
879 };
c906108c
SS
880
881
12f02c2a
AC
882/* The EXT-I, EXT-ri nad EXT-I8 instructions all have the same format
883 for the bits which make up the immediatate extension. */
c906108c 884
12f02c2a
AC
885static CORE_ADDR
886extended_offset (unsigned int extension)
c906108c 887{
12f02c2a 888 CORE_ADDR value;
c5aa993b
JM
889 value = (extension >> 21) & 0x3f; /* * extract 15:11 */
890 value = value << 6;
891 value |= (extension >> 16) & 0x1f; /* extrace 10:5 */
892 value = value << 5;
893 value |= extension & 0x01f; /* extract 4:0 */
894 return value;
c906108c
SS
895}
896
897/* Only call this function if you know that this is an extendable
898 instruction, It wont malfunction, but why make excess remote memory references?
899 If the immediate operands get sign extended or somthing, do it after
900 the extension is performed.
c5aa993b 901 */
c906108c
SS
902/* FIXME: Every one of these cases needs to worry about sign extension
903 when the offset is to be used in relative addressing */
904
905
12f02c2a 906static unsigned int
c5aa993b 907fetch_mips_16 (CORE_ADDR pc)
c906108c 908{
c5aa993b
JM
909 char buf[8];
910 pc &= 0xfffffffe; /* clear the low order bit */
911 target_read_memory (pc, buf, 2);
912 return extract_unsigned_integer (buf, 2);
c906108c
SS
913}
914
915static void
c5aa993b 916unpack_mips16 (CORE_ADDR pc,
12f02c2a
AC
917 unsigned int extension,
918 unsigned int inst,
919 enum mips16_inst_fmts insn_format,
c5aa993b 920 struct upk_mips16 *upk)
c906108c 921{
12f02c2a
AC
922 CORE_ADDR offset;
923 int regx;
924 int regy;
925 switch (insn_format)
c906108c 926 {
c5aa993b 927 case itype:
c906108c 928 {
12f02c2a
AC
929 CORE_ADDR value;
930 if (extension)
c5aa993b
JM
931 {
932 value = extended_offset (extension);
933 value = value << 11; /* rom for the original value */
12f02c2a 934 value |= inst & 0x7ff; /* eleven bits from instruction */
c906108c
SS
935 }
936 else
c5aa993b 937 {
12f02c2a 938 value = inst & 0x7ff;
c5aa993b 939 /* FIXME : Consider sign extension */
c906108c 940 }
12f02c2a
AC
941 offset = value;
942 regx = -1;
943 regy = -1;
c906108c 944 }
c5aa993b
JM
945 break;
946 case ritype:
947 case i8type:
948 { /* A register identifier and an offset */
c906108c
SS
949 /* Most of the fields are the same as I type but the
950 immediate value is of a different length */
12f02c2a
AC
951 CORE_ADDR value;
952 if (extension)
c906108c 953 {
c5aa993b
JM
954 value = extended_offset (extension);
955 value = value << 8; /* from the original instruction */
12f02c2a
AC
956 value |= inst & 0xff; /* eleven bits from instruction */
957 regx = (extension >> 8) & 0x07; /* or i8 funct */
c5aa993b
JM
958 if (value & 0x4000) /* test the sign bit , bit 26 */
959 {
960 value &= ~0x3fff; /* remove the sign bit */
961 value = -value;
c906108c
SS
962 }
963 }
c5aa993b
JM
964 else
965 {
12f02c2a
AC
966 value = inst & 0xff; /* 8 bits */
967 regx = (inst >> 8) & 0x07; /* or i8 funct */
c5aa993b
JM
968 /* FIXME: Do sign extension , this format needs it */
969 if (value & 0x80) /* THIS CONFUSES ME */
970 {
971 value &= 0xef; /* remove the sign bit */
972 value = -value;
973 }
c5aa993b 974 }
12f02c2a
AC
975 offset = value;
976 regy = -1;
c5aa993b 977 break;
c906108c 978 }
c5aa993b 979 case jalxtype:
c906108c 980 {
c5aa993b 981 unsigned long value;
12f02c2a
AC
982 unsigned int nexthalf;
983 value = ((inst & 0x1f) << 5) | ((inst >> 5) & 0x1f);
c5aa993b
JM
984 value = value << 16;
985 nexthalf = mips_fetch_instruction (pc + 2); /* low bit still set */
986 value |= nexthalf;
12f02c2a
AC
987 offset = value;
988 regx = -1;
989 regy = -1;
c5aa993b 990 break;
c906108c
SS
991 }
992 default:
8e65ff28
AC
993 internal_error (__FILE__, __LINE__,
994 "bad switch");
c906108c 995 }
12f02c2a
AC
996 upk->offset = offset;
997 upk->regx = regx;
998 upk->regy = regy;
c906108c
SS
999}
1000
1001
c5aa993b
JM
1002static CORE_ADDR
1003add_offset_16 (CORE_ADDR pc, int offset)
c906108c 1004{
c5aa993b
JM
1005 return ((offset << 2) | ((pc + 2) & (0xf0000000)));
1006
c906108c
SS
1007}
1008
12f02c2a
AC
1009static CORE_ADDR
1010extended_mips16_next_pc (CORE_ADDR pc,
1011 unsigned int extension,
1012 unsigned int insn)
c906108c 1013{
12f02c2a
AC
1014 int op = (insn >> 11);
1015 switch (op)
c906108c 1016 {
12f02c2a
AC
1017 case 2: /* Branch */
1018 {
1019 CORE_ADDR offset;
1020 struct upk_mips16 upk;
1021 unpack_mips16 (pc, extension, insn, itype, &upk);
1022 offset = upk.offset;
1023 if (offset & 0x800)
1024 {
1025 offset &= 0xeff;
1026 offset = -offset;
1027 }
1028 pc += (offset << 1) + 2;
1029 break;
1030 }
1031 case 3: /* JAL , JALX - Watch out, these are 32 bit instruction */
1032 {
1033 struct upk_mips16 upk;
1034 unpack_mips16 (pc, extension, insn, jalxtype, &upk);
1035 pc = add_offset_16 (pc, upk.offset);
1036 if ((insn >> 10) & 0x01) /* Exchange mode */
1037 pc = pc & ~0x01; /* Clear low bit, indicate 32 bit mode */
1038 else
1039 pc |= 0x01;
1040 break;
1041 }
1042 case 4: /* beqz */
1043 {
1044 struct upk_mips16 upk;
1045 int reg;
1046 unpack_mips16 (pc, extension, insn, ritype, &upk);
1047 reg = read_signed_register (upk.regx);
1048 if (reg == 0)
1049 pc += (upk.offset << 1) + 2;
1050 else
1051 pc += 2;
1052 break;
1053 }
1054 case 5: /* bnez */
1055 {
1056 struct upk_mips16 upk;
1057 int reg;
1058 unpack_mips16 (pc, extension, insn, ritype, &upk);
1059 reg = read_signed_register (upk.regx);
1060 if (reg != 0)
1061 pc += (upk.offset << 1) + 2;
1062 else
1063 pc += 2;
1064 break;
1065 }
1066 case 12: /* I8 Formats btez btnez */
1067 {
1068 struct upk_mips16 upk;
1069 int reg;
1070 unpack_mips16 (pc, extension, insn, i8type, &upk);
1071 /* upk.regx contains the opcode */
1072 reg = read_signed_register (24); /* Test register is 24 */
1073 if (((upk.regx == 0) && (reg == 0)) /* BTEZ */
1074 || ((upk.regx == 1) && (reg != 0))) /* BTNEZ */
1075 /* pc = add_offset_16(pc,upk.offset) ; */
1076 pc += (upk.offset << 1) + 2;
1077 else
1078 pc += 2;
1079 break;
1080 }
1081 case 29: /* RR Formats JR, JALR, JALR-RA */
1082 {
1083 struct upk_mips16 upk;
1084 /* upk.fmt = rrtype; */
1085 op = insn & 0x1f;
1086 if (op == 0)
c5aa993b 1087 {
12f02c2a
AC
1088 int reg;
1089 upk.regx = (insn >> 8) & 0x07;
1090 upk.regy = (insn >> 5) & 0x07;
1091 switch (upk.regy)
c5aa993b 1092 {
12f02c2a
AC
1093 case 0:
1094 reg = upk.regx;
1095 break;
1096 case 1:
1097 reg = 31;
1098 break; /* Function return instruction */
1099 case 2:
1100 reg = upk.regx;
1101 break;
1102 default:
1103 reg = 31;
1104 break; /* BOGUS Guess */
c906108c 1105 }
12f02c2a 1106 pc = read_signed_register (reg);
c906108c 1107 }
12f02c2a 1108 else
c5aa993b 1109 pc += 2;
12f02c2a
AC
1110 break;
1111 }
1112 case 30:
1113 /* This is an instruction extension. Fetch the real instruction
1114 (which follows the extension) and decode things based on
1115 that. */
1116 {
1117 pc += 2;
1118 pc = extended_mips16_next_pc (pc, insn, fetch_mips_16 (pc));
1119 break;
1120 }
1121 default:
1122 {
1123 pc += 2;
1124 break;
1125 }
c906108c 1126 }
c5aa993b 1127 return pc;
12f02c2a 1128}
c906108c 1129
12f02c2a
AC
1130CORE_ADDR
1131mips16_next_pc (CORE_ADDR pc)
1132{
1133 unsigned int insn = fetch_mips_16 (pc);
1134 return extended_mips16_next_pc (pc, 0, insn);
1135}
1136
1137/* The mips_next_pc function supports single_step when the remote
7e73cedf 1138 target monitor or stub is not developed enough to do a single_step.
12f02c2a
AC
1139 It works by decoding the current instruction and predicting where a
1140 branch will go. This isnt hard because all the data is available.
1141 The MIPS32 and MIPS16 variants are quite different */
c5aa993b
JM
1142CORE_ADDR
1143mips_next_pc (CORE_ADDR pc)
c906108c 1144{
c5aa993b
JM
1145 if (pc & 0x01)
1146 return mips16_next_pc (pc);
1147 else
1148 return mips32_next_pc (pc);
12f02c2a 1149}
c906108c
SS
1150
1151/* Guaranteed to set fci->saved_regs to some values (it never leaves it
1152 NULL). */
1153
1154void
acdb74a0 1155mips_find_saved_regs (struct frame_info *fci)
c906108c
SS
1156{
1157 int ireg;
1158 CORE_ADDR reg_position;
1159 /* r0 bit means kernel trap */
1160 int kernel_trap;
1161 /* What registers have been saved? Bitmasks. */
1162 unsigned long gen_mask, float_mask;
1163 mips_extra_func_info_t proc_desc;
1164 t_inst inst;
1165
1166 frame_saved_regs_zalloc (fci);
1167
1168 /* If it is the frame for sigtramp, the saved registers are located
1169 in a sigcontext structure somewhere on the stack.
1170 If the stack layout for sigtramp changes we might have to change these
1171 constants and the companion fixup_sigtramp in mdebugread.c */
1172#ifndef SIGFRAME_BASE
1173/* To satisfy alignment restrictions, sigcontext is located 4 bytes
1174 above the sigtramp frame. */
1175#define SIGFRAME_BASE MIPS_REGSIZE
1176/* FIXME! Are these correct?? */
1177#define SIGFRAME_PC_OFF (SIGFRAME_BASE + 2 * MIPS_REGSIZE)
1178#define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 3 * MIPS_REGSIZE)
1179#define SIGFRAME_FPREGSAVE_OFF \
1180 (SIGFRAME_REGSAVE_OFF + MIPS_NUMREGS * MIPS_REGSIZE + 3 * MIPS_REGSIZE)
1181#endif
1182#ifndef SIGFRAME_REG_SIZE
1183/* FIXME! Is this correct?? */
1184#define SIGFRAME_REG_SIZE MIPS_REGSIZE
1185#endif
1186 if (fci->signal_handler_caller)
1187 {
1188 for (ireg = 0; ireg < MIPS_NUMREGS; ireg++)
1189 {
c5aa993b
JM
1190 reg_position = fci->frame + SIGFRAME_REGSAVE_OFF
1191 + ireg * SIGFRAME_REG_SIZE;
1192 fci->saved_regs[ireg] = reg_position;
c906108c
SS
1193 }
1194 for (ireg = 0; ireg < MIPS_NUMREGS; ireg++)
1195 {
c5aa993b
JM
1196 reg_position = fci->frame + SIGFRAME_FPREGSAVE_OFF
1197 + ireg * SIGFRAME_REG_SIZE;
1198 fci->saved_regs[FP0_REGNUM + ireg] = reg_position;
c906108c
SS
1199 }
1200 fci->saved_regs[PC_REGNUM] = fci->frame + SIGFRAME_PC_OFF;
1201 return;
1202 }
1203
cce74817 1204 proc_desc = fci->extra_info->proc_desc;
c906108c
SS
1205 if (proc_desc == NULL)
1206 /* I'm not sure how/whether this can happen. Normally when we can't
1207 find a proc_desc, we "synthesize" one using heuristic_proc_desc
1208 and set the saved_regs right away. */
1209 return;
1210
c5aa993b
JM
1211 kernel_trap = PROC_REG_MASK (proc_desc) & 1;
1212 gen_mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK (proc_desc);
1213 float_mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK (proc_desc);
c906108c 1214
c5aa993b
JM
1215 if ( /* In any frame other than the innermost or a frame interrupted by
1216 a signal, we assume that all registers have been saved.
1217 This assumes that all register saves in a function happen before
1218 the first function call. */
1219 (fci->next == NULL || fci->next->signal_handler_caller)
c906108c 1220
c5aa993b
JM
1221 /* In a dummy frame we know exactly where things are saved. */
1222 && !PROC_DESC_IS_DUMMY (proc_desc)
c906108c 1223
c5aa993b
JM
1224 /* Don't bother unless we are inside a function prologue. Outside the
1225 prologue, we know where everything is. */
c906108c 1226
c5aa993b 1227 && in_prologue (fci->pc, PROC_LOW_ADDR (proc_desc))
c906108c 1228
c5aa993b
JM
1229 /* Not sure exactly what kernel_trap means, but if it means
1230 the kernel saves the registers without a prologue doing it,
1231 we better not examine the prologue to see whether registers
1232 have been saved yet. */
1233 && !kernel_trap)
c906108c
SS
1234 {
1235 /* We need to figure out whether the registers that the proc_desc
c5aa993b 1236 claims are saved have been saved yet. */
c906108c
SS
1237
1238 CORE_ADDR addr;
1239
1240 /* Bitmasks; set if we have found a save for the register. */
1241 unsigned long gen_save_found = 0;
1242 unsigned long float_save_found = 0;
1243 int instlen;
1244
1245 /* If the address is odd, assume this is MIPS16 code. */
1246 addr = PROC_LOW_ADDR (proc_desc);
1247 instlen = pc_is_mips16 (addr) ? MIPS16_INSTLEN : MIPS_INSTLEN;
1248
1249 /* Scan through this function's instructions preceding the current
1250 PC, and look for those that save registers. */
1251 while (addr < fci->pc)
1252 {
1253 inst = mips_fetch_instruction (addr);
1254 if (pc_is_mips16 (addr))
1255 mips16_decode_reg_save (inst, &gen_save_found);
1256 else
1257 mips32_decode_reg_save (inst, &gen_save_found, &float_save_found);
1258 addr += instlen;
1259 }
1260 gen_mask = gen_save_found;
1261 float_mask = float_save_found;
1262 }
1263
1264 /* Fill in the offsets for the registers which gen_mask says
1265 were saved. */
1266 reg_position = fci->frame + PROC_REG_OFFSET (proc_desc);
c5aa993b 1267 for (ireg = MIPS_NUMREGS - 1; gen_mask; --ireg, gen_mask <<= 1)
c906108c
SS
1268 if (gen_mask & 0x80000000)
1269 {
1270 fci->saved_regs[ireg] = reg_position;
7a292a7a 1271 reg_position -= MIPS_SAVED_REGSIZE;
c906108c
SS
1272 }
1273
1274 /* The MIPS16 entry instruction saves $s0 and $s1 in the reverse order
1275 of that normally used by gcc. Therefore, we have to fetch the first
1276 instruction of the function, and if it's an entry instruction that
1277 saves $s0 or $s1, correct their saved addresses. */
1278 if (pc_is_mips16 (PROC_LOW_ADDR (proc_desc)))
1279 {
1280 inst = mips_fetch_instruction (PROC_LOW_ADDR (proc_desc));
c5aa993b 1281 if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
c906108c
SS
1282 {
1283 int reg;
1284 int sreg_count = (inst >> 6) & 3;
c5aa993b 1285
c906108c
SS
1286 /* Check if the ra register was pushed on the stack. */
1287 reg_position = fci->frame + PROC_REG_OFFSET (proc_desc);
1288 if (inst & 0x20)
7a292a7a 1289 reg_position -= MIPS_SAVED_REGSIZE;
c906108c
SS
1290
1291 /* Check if the s0 and s1 registers were pushed on the stack. */
c5aa993b 1292 for (reg = 16; reg < sreg_count + 16; reg++)
c906108c
SS
1293 {
1294 fci->saved_regs[reg] = reg_position;
7a292a7a 1295 reg_position -= MIPS_SAVED_REGSIZE;
c906108c
SS
1296 }
1297 }
1298 }
1299
1300 /* Fill in the offsets for the registers which float_mask says
1301 were saved. */
1302 reg_position = fci->frame + PROC_FREG_OFFSET (proc_desc);
1303
1304 /* The freg_offset points to where the first *double* register
1305 is saved. So skip to the high-order word. */
c5aa993b 1306 if (!GDB_TARGET_IS_MIPS64)
7a292a7a 1307 reg_position += MIPS_SAVED_REGSIZE;
c906108c
SS
1308
1309 /* Fill in the offsets for the float registers which float_mask says
1310 were saved. */
c5aa993b 1311 for (ireg = MIPS_NUMREGS - 1; float_mask; --ireg, float_mask <<= 1)
c906108c
SS
1312 if (float_mask & 0x80000000)
1313 {
c5aa993b 1314 fci->saved_regs[FP0_REGNUM + ireg] = reg_position;
7a292a7a 1315 reg_position -= MIPS_SAVED_REGSIZE;
c906108c
SS
1316 }
1317
1318 fci->saved_regs[PC_REGNUM] = fci->saved_regs[RA_REGNUM];
1319}
1320
1321static CORE_ADDR
acdb74a0 1322read_next_frame_reg (struct frame_info *fi, int regno)
c906108c
SS
1323{
1324 for (; fi; fi = fi->next)
1325 {
1326 /* We have to get the saved sp from the sigcontext
c5aa993b 1327 if it is a signal handler frame. */
c906108c
SS
1328 if (regno == SP_REGNUM && !fi->signal_handler_caller)
1329 return fi->frame;
1330 else
1331 {
1332 if (fi->saved_regs == NULL)
1333 mips_find_saved_regs (fi);
1334 if (fi->saved_regs[regno])
2acceee2 1335 return read_memory_integer (ADDR_BITS_REMOVE (fi->saved_regs[regno]), MIPS_SAVED_REGSIZE);
c906108c
SS
1336 }
1337 }
6c997a34 1338 return read_signed_register (regno);
c906108c
SS
1339}
1340
1341/* mips_addr_bits_remove - remove useless address bits */
1342
875e1767 1343static CORE_ADDR
acdb74a0 1344mips_addr_bits_remove (CORE_ADDR addr)
c906108c 1345{
5213ab06
AC
1346 if (GDB_TARGET_IS_MIPS64)
1347 {
4014092b 1348 if (mips_mask_address_p () && (addr >> 32 == (CORE_ADDR) 0xffffffff))
5213ab06
AC
1349 {
1350 /* This hack is a work-around for existing boards using
1351 PMON, the simulator, and any other 64-bit targets that
1352 doesn't have true 64-bit addressing. On these targets,
1353 the upper 32 bits of addresses are ignored by the
1354 hardware. Thus, the PC or SP are likely to have been
1355 sign extended to all 1s by instruction sequences that
1356 load 32-bit addresses. For example, a typical piece of
4014092b
AC
1357 code that loads an address is this:
1358 lui $r2, <upper 16 bits>
1359 ori $r2, <lower 16 bits>
1360 But the lui sign-extends the value such that the upper 32
1361 bits may be all 1s. The workaround is simply to mask off
1362 these bits. In the future, gcc may be changed to support
1363 true 64-bit addressing, and this masking will have to be
1364 disabled. */
5213ab06
AC
1365 addr &= (CORE_ADDR) 0xffffffff;
1366 }
1367 }
4014092b 1368 else if (mips_mask_address_p ())
5213ab06 1369 {
4014092b
AC
1370 /* FIXME: This is wrong! mips_addr_bits_remove() shouldn't be
1371 masking off bits, instead, the actual target should be asking
1372 for the address to be converted to a valid pointer. */
5213ab06
AC
1373 /* Even when GDB is configured for some 32-bit targets
1374 (e.g. mips-elf), BFD is configured to handle 64-bit targets,
1375 so CORE_ADDR is 64 bits. So we still have to mask off
1376 useless bits from addresses. */
c5aa993b 1377 addr &= (CORE_ADDR) 0xffffffff;
c906108c 1378 }
c906108c
SS
1379 return addr;
1380}
1381
9022177c
DJ
1382/* mips_software_single_step() is called just before we want to resume
1383 the inferior, if we want to single-step it but there is no hardware
1384 or kernel single-step support (MIPS on Linux for example). We find
1385 the target of the coming instruction and breakpoint it.
1386
1387 single_step is also called just after the inferior stops. If we had
1388 set up a simulated single-step, we undo our damage. */
1389
1390void
1391mips_software_single_step (enum target_signal sig, int insert_breakpoints_p)
1392{
1393 static CORE_ADDR next_pc;
1394 typedef char binsn_quantum[BREAKPOINT_MAX];
1395 static binsn_quantum break_mem;
1396 CORE_ADDR pc;
1397
1398 if (insert_breakpoints_p)
1399 {
1400 pc = read_register (PC_REGNUM);
1401 next_pc = mips_next_pc (pc);
1402
1403 target_insert_breakpoint (next_pc, break_mem);
1404 }
1405 else
1406 target_remove_breakpoint (next_pc, break_mem);
1407}
1408
10312cc4 1409static void
acdb74a0 1410mips_init_frame_pc_first (int fromleaf, struct frame_info *prev)
c906108c
SS
1411{
1412 CORE_ADDR pc, tmp;
1413
1414 pc = ((fromleaf) ? SAVED_PC_AFTER_CALL (prev->next) :
c5aa993b 1415 prev->next ? FRAME_SAVED_PC (prev->next) : read_pc ());
c906108c 1416 tmp = mips_skip_stub (pc);
c5aa993b 1417 prev->pc = tmp ? tmp : pc;
c906108c
SS
1418}
1419
1420
1421CORE_ADDR
acdb74a0 1422mips_frame_saved_pc (struct frame_info *frame)
c906108c
SS
1423{
1424 CORE_ADDR saved_pc;
cce74817 1425 mips_extra_func_info_t proc_desc = frame->extra_info->proc_desc;
c906108c
SS
1426 /* We have to get the saved pc from the sigcontext
1427 if it is a signal handler frame. */
1428 int pcreg = frame->signal_handler_caller ? PC_REGNUM
c5aa993b 1429 : (proc_desc ? PROC_PC_REG (proc_desc) : RA_REGNUM);
c906108c 1430
c5aa993b 1431 if (proc_desc && PROC_DESC_IS_DUMMY (proc_desc))
7a292a7a 1432 saved_pc = read_memory_integer (frame->frame - MIPS_SAVED_REGSIZE, MIPS_SAVED_REGSIZE);
c906108c 1433 else
7a292a7a 1434 saved_pc = read_next_frame_reg (frame, pcreg);
c906108c
SS
1435
1436 return ADDR_BITS_REMOVE (saved_pc);
1437}
1438
1439static struct mips_extra_func_info temp_proc_desc;
cce74817 1440static CORE_ADDR temp_saved_regs[NUM_REGS];
c906108c
SS
1441
1442/* Set a register's saved stack address in temp_saved_regs. If an address
1443 has already been set for this register, do nothing; this way we will
1444 only recognize the first save of a given register in a function prologue.
1445 This is a helper function for mips{16,32}_heuristic_proc_desc. */
1446
1447static void
acdb74a0 1448set_reg_offset (int regno, CORE_ADDR offset)
c906108c 1449{
cce74817
JM
1450 if (temp_saved_regs[regno] == 0)
1451 temp_saved_regs[regno] = offset;
c906108c
SS
1452}
1453
1454
1455/* Test whether the PC points to the return instruction at the
1456 end of a function. */
1457
c5aa993b 1458static int
acdb74a0 1459mips_about_to_return (CORE_ADDR pc)
c906108c
SS
1460{
1461 if (pc_is_mips16 (pc))
1462 /* This mips16 case isn't necessarily reliable. Sometimes the compiler
1463 generates a "jr $ra"; other times it generates code to load
1464 the return address from the stack to an accessible register (such
1465 as $a3), then a "jr" using that register. This second case
1466 is almost impossible to distinguish from an indirect jump
1467 used for switch statements, so we don't even try. */
1468 return mips_fetch_instruction (pc) == 0xe820; /* jr $ra */
1469 else
1470 return mips_fetch_instruction (pc) == 0x3e00008; /* jr $ra */
1471}
1472
1473
1474/* This fencepost looks highly suspicious to me. Removing it also
1475 seems suspicious as it could affect remote debugging across serial
1476 lines. */
1477
1478static CORE_ADDR
acdb74a0 1479heuristic_proc_start (CORE_ADDR pc)
c906108c 1480{
c5aa993b
JM
1481 CORE_ADDR start_pc;
1482 CORE_ADDR fence;
1483 int instlen;
1484 int seen_adjsp = 0;
c906108c 1485
c5aa993b
JM
1486 pc = ADDR_BITS_REMOVE (pc);
1487 start_pc = pc;
1488 fence = start_pc - heuristic_fence_post;
1489 if (start_pc == 0)
1490 return 0;
c906108c 1491
c5aa993b
JM
1492 if (heuristic_fence_post == UINT_MAX
1493 || fence < VM_MIN_ADDRESS)
1494 fence = VM_MIN_ADDRESS;
c906108c 1495
c5aa993b 1496 instlen = pc_is_mips16 (pc) ? MIPS16_INSTLEN : MIPS_INSTLEN;
c906108c 1497
c5aa993b
JM
1498 /* search back for previous return */
1499 for (start_pc -= instlen;; start_pc -= instlen)
1500 if (start_pc < fence)
1501 {
1502 /* It's not clear to me why we reach this point when
1503 stop_soon_quietly, but with this test, at least we
1504 don't print out warnings for every child forked (eg, on
1505 decstation). 22apr93 rich@cygnus.com. */
1506 if (!stop_soon_quietly)
c906108c 1507 {
c5aa993b
JM
1508 static int blurb_printed = 0;
1509
1510 warning ("Warning: GDB can't find the start of the function at 0x%s.",
1511 paddr_nz (pc));
1512
1513 if (!blurb_printed)
c906108c 1514 {
c5aa993b
JM
1515 /* This actually happens frequently in embedded
1516 development, when you first connect to a board
1517 and your stack pointer and pc are nowhere in
1518 particular. This message needs to give people
1519 in that situation enough information to
1520 determine that it's no big deal. */
1521 printf_filtered ("\n\
cd0fc7c3
SS
1522 GDB is unable to find the start of the function at 0x%s\n\
1523and thus can't determine the size of that function's stack frame.\n\
1524This means that GDB may be unable to access that stack frame, or\n\
1525the frames below it.\n\
1526 This problem is most likely caused by an invalid program counter or\n\
1527stack pointer.\n\
1528 However, if you think GDB should simply search farther back\n\
1529from 0x%s for code which looks like the beginning of a\n\
1530function, you can increase the range of the search using the `set\n\
1531heuristic-fence-post' command.\n",
c5aa993b
JM
1532 paddr_nz (pc), paddr_nz (pc));
1533 blurb_printed = 1;
c906108c 1534 }
c906108c
SS
1535 }
1536
c5aa993b
JM
1537 return 0;
1538 }
1539 else if (pc_is_mips16 (start_pc))
1540 {
1541 unsigned short inst;
1542
1543 /* On MIPS16, any one of the following is likely to be the
1544 start of a function:
1545 entry
1546 addiu sp,-n
1547 daddiu sp,-n
1548 extend -n followed by 'addiu sp,+n' or 'daddiu sp,+n' */
1549 inst = mips_fetch_instruction (start_pc);
1550 if (((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
1551 || (inst & 0xff80) == 0x6380 /* addiu sp,-n */
1552 || (inst & 0xff80) == 0xfb80 /* daddiu sp,-n */
1553 || ((inst & 0xf810) == 0xf010 && seen_adjsp)) /* extend -n */
1554 break;
1555 else if ((inst & 0xff00) == 0x6300 /* addiu sp */
1556 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1557 seen_adjsp = 1;
1558 else
1559 seen_adjsp = 0;
1560 }
1561 else if (mips_about_to_return (start_pc))
1562 {
1563 start_pc += 2 * MIPS_INSTLEN; /* skip return, and its delay slot */
1564 break;
1565 }
1566
c5aa993b 1567 return start_pc;
c906108c
SS
1568}
1569
1570/* Fetch the immediate value from a MIPS16 instruction.
1571 If the previous instruction was an EXTEND, use it to extend
1572 the upper bits of the immediate value. This is a helper function
1573 for mips16_heuristic_proc_desc. */
1574
1575static int
acdb74a0
AC
1576mips16_get_imm (unsigned short prev_inst, /* previous instruction */
1577 unsigned short inst, /* current instruction */
1578 int nbits, /* number of bits in imm field */
1579 int scale, /* scale factor to be applied to imm */
1580 int is_signed) /* is the imm field signed? */
c906108c
SS
1581{
1582 int offset;
1583
1584 if ((prev_inst & 0xf800) == 0xf000) /* prev instruction was EXTEND? */
1585 {
1586 offset = ((prev_inst & 0x1f) << 11) | (prev_inst & 0x7e0);
c5aa993b 1587 if (offset & 0x8000) /* check for negative extend */
c906108c
SS
1588 offset = 0 - (0x10000 - (offset & 0xffff));
1589 return offset | (inst & 0x1f);
1590 }
1591 else
1592 {
1593 int max_imm = 1 << nbits;
1594 int mask = max_imm - 1;
1595 int sign_bit = max_imm >> 1;
1596
1597 offset = inst & mask;
1598 if (is_signed && (offset & sign_bit))
1599 offset = 0 - (max_imm - offset);
1600 return offset * scale;
1601 }
1602}
1603
1604
1605/* Fill in values in temp_proc_desc based on the MIPS16 instruction
1606 stream from start_pc to limit_pc. */
1607
1608static void
acdb74a0
AC
1609mips16_heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
1610 struct frame_info *next_frame, CORE_ADDR sp)
c906108c
SS
1611{
1612 CORE_ADDR cur_pc;
1613 CORE_ADDR frame_addr = 0; /* Value of $r17, used as frame pointer */
1614 unsigned short prev_inst = 0; /* saved copy of previous instruction */
1615 unsigned inst = 0; /* current instruction */
1616 unsigned entry_inst = 0; /* the entry instruction */
1617 int reg, offset;
1618
c5aa993b
JM
1619 PROC_FRAME_OFFSET (&temp_proc_desc) = 0; /* size of stack frame */
1620 PROC_FRAME_ADJUST (&temp_proc_desc) = 0; /* offset of FP from SP */
c906108c
SS
1621
1622 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS16_INSTLEN)
1623 {
1624 /* Save the previous instruction. If it's an EXTEND, we'll extract
1625 the immediate offset extension from it in mips16_get_imm. */
1626 prev_inst = inst;
1627
1628 /* Fetch and decode the instruction. */
1629 inst = (unsigned short) mips_fetch_instruction (cur_pc);
c5aa993b 1630 if ((inst & 0xff00) == 0x6300 /* addiu sp */
c906108c
SS
1631 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1632 {
1633 offset = mips16_get_imm (prev_inst, inst, 8, 8, 1);
c5aa993b
JM
1634 if (offset < 0) /* negative stack adjustment? */
1635 PROC_FRAME_OFFSET (&temp_proc_desc) -= offset;
c906108c
SS
1636 else
1637 /* Exit loop if a positive stack adjustment is found, which
1638 usually means that the stack cleanup code in the function
1639 epilogue is reached. */
1640 break;
1641 }
1642 else if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
1643 {
1644 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1645 reg = mips16_to_32_reg[(inst & 0x700) >> 8];
c5aa993b 1646 PROC_REG_MASK (&temp_proc_desc) |= (1 << reg);
c906108c
SS
1647 set_reg_offset (reg, sp + offset);
1648 }
1649 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
1650 {
1651 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1652 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
c5aa993b 1653 PROC_REG_MASK (&temp_proc_desc) |= (1 << reg);
c906108c
SS
1654 set_reg_offset (reg, sp + offset);
1655 }
1656 else if ((inst & 0xff00) == 0x6200) /* sw $ra,n($sp) */
1657 {
1658 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
c5aa993b 1659 PROC_REG_MASK (&temp_proc_desc) |= (1 << RA_REGNUM);
c906108c
SS
1660 set_reg_offset (RA_REGNUM, sp + offset);
1661 }
1662 else if ((inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
1663 {
1664 offset = mips16_get_imm (prev_inst, inst, 8, 8, 0);
c5aa993b 1665 PROC_REG_MASK (&temp_proc_desc) |= (1 << RA_REGNUM);
c906108c
SS
1666 set_reg_offset (RA_REGNUM, sp + offset);
1667 }
c5aa993b 1668 else if (inst == 0x673d) /* move $s1, $sp */
c906108c
SS
1669 {
1670 frame_addr = sp;
1671 PROC_FRAME_REG (&temp_proc_desc) = 17;
1672 }
1673 else if ((inst & 0xff00) == 0x0100) /* addiu $s1,sp,n */
1674 {
1675 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1676 frame_addr = sp + offset;
1677 PROC_FRAME_REG (&temp_proc_desc) = 17;
1678 PROC_FRAME_ADJUST (&temp_proc_desc) = offset;
1679 }
1680 else if ((inst & 0xFF00) == 0xd900) /* sw reg,offset($s1) */
1681 {
1682 offset = mips16_get_imm (prev_inst, inst, 5, 4, 0);
1683 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
c5aa993b 1684 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
c906108c
SS
1685 set_reg_offset (reg, frame_addr + offset);
1686 }
1687 else if ((inst & 0xFF00) == 0x7900) /* sd reg,offset($s1) */
1688 {
1689 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1690 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
c5aa993b 1691 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
c906108c
SS
1692 set_reg_offset (reg, frame_addr + offset);
1693 }
c5aa993b
JM
1694 else if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
1695 entry_inst = inst; /* save for later processing */
c906108c 1696 else if ((inst & 0xf800) == 0x1800) /* jal(x) */
c5aa993b 1697 cur_pc += MIPS16_INSTLEN; /* 32-bit instruction */
c906108c
SS
1698 }
1699
c5aa993b
JM
1700 /* The entry instruction is typically the first instruction in a function,
1701 and it stores registers at offsets relative to the value of the old SP
1702 (before the prologue). But the value of the sp parameter to this
1703 function is the new SP (after the prologue has been executed). So we
1704 can't calculate those offsets until we've seen the entire prologue,
1705 and can calculate what the old SP must have been. */
1706 if (entry_inst != 0)
1707 {
1708 int areg_count = (entry_inst >> 8) & 7;
1709 int sreg_count = (entry_inst >> 6) & 3;
c906108c 1710
c5aa993b
JM
1711 /* The entry instruction always subtracts 32 from the SP. */
1712 PROC_FRAME_OFFSET (&temp_proc_desc) += 32;
c906108c 1713
c5aa993b
JM
1714 /* Now we can calculate what the SP must have been at the
1715 start of the function prologue. */
1716 sp += PROC_FRAME_OFFSET (&temp_proc_desc);
c906108c 1717
c5aa993b
JM
1718 /* Check if a0-a3 were saved in the caller's argument save area. */
1719 for (reg = 4, offset = 0; reg < areg_count + 4; reg++)
1720 {
1721 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
1722 set_reg_offset (reg, sp + offset);
1723 offset += MIPS_SAVED_REGSIZE;
1724 }
c906108c 1725
c5aa993b
JM
1726 /* Check if the ra register was pushed on the stack. */
1727 offset = -4;
1728 if (entry_inst & 0x20)
1729 {
1730 PROC_REG_MASK (&temp_proc_desc) |= 1 << RA_REGNUM;
1731 set_reg_offset (RA_REGNUM, sp + offset);
1732 offset -= MIPS_SAVED_REGSIZE;
1733 }
c906108c 1734
c5aa993b
JM
1735 /* Check if the s0 and s1 registers were pushed on the stack. */
1736 for (reg = 16; reg < sreg_count + 16; reg++)
1737 {
1738 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
1739 set_reg_offset (reg, sp + offset);
1740 offset -= MIPS_SAVED_REGSIZE;
1741 }
1742 }
c906108c
SS
1743}
1744
1745static void
fba45db2
KB
1746mips32_heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
1747 struct frame_info *next_frame, CORE_ADDR sp)
c906108c
SS
1748{
1749 CORE_ADDR cur_pc;
c5aa993b 1750 CORE_ADDR frame_addr = 0; /* Value of $r30. Used by gcc for frame-pointer */
c906108c 1751restart:
cce74817 1752 memset (temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
c5aa993b 1753 PROC_FRAME_OFFSET (&temp_proc_desc) = 0;
c906108c
SS
1754 PROC_FRAME_ADJUST (&temp_proc_desc) = 0; /* offset of FP from SP */
1755 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSTLEN)
1756 {
1757 unsigned long inst, high_word, low_word;
1758 int reg;
1759
1760 /* Fetch the instruction. */
1761 inst = (unsigned long) mips_fetch_instruction (cur_pc);
1762
1763 /* Save some code by pre-extracting some useful fields. */
1764 high_word = (inst >> 16) & 0xffff;
1765 low_word = inst & 0xffff;
1766 reg = high_word & 0x1f;
1767
c5aa993b 1768 if (high_word == 0x27bd /* addiu $sp,$sp,-i */
c906108c
SS
1769 || high_word == 0x23bd /* addi $sp,$sp,-i */
1770 || high_word == 0x67bd) /* daddiu $sp,$sp,-i */
1771 {
1772 if (low_word & 0x8000) /* negative stack adjustment? */
c5aa993b 1773 PROC_FRAME_OFFSET (&temp_proc_desc) += 0x10000 - low_word;
c906108c
SS
1774 else
1775 /* Exit loop if a positive stack adjustment is found, which
1776 usually means that the stack cleanup code in the function
1777 epilogue is reached. */
1778 break;
1779 }
1780 else if ((high_word & 0xFFE0) == 0xafa0) /* sw reg,offset($sp) */
1781 {
c5aa993b 1782 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
c906108c
SS
1783 set_reg_offset (reg, sp + low_word);
1784 }
1785 else if ((high_word & 0xFFE0) == 0xffa0) /* sd reg,offset($sp) */
1786 {
1787 /* Irix 6.2 N32 ABI uses sd instructions for saving $gp and $ra,
1788 but the register size used is only 32 bits. Make the address
1789 for the saved register point to the lower 32 bits. */
c5aa993b 1790 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
c906108c
SS
1791 set_reg_offset (reg, sp + low_word + 8 - MIPS_REGSIZE);
1792 }
c5aa993b 1793 else if (high_word == 0x27be) /* addiu $30,$sp,size */
c906108c
SS
1794 {
1795 /* Old gcc frame, r30 is virtual frame pointer. */
c5aa993b
JM
1796 if ((long) low_word != PROC_FRAME_OFFSET (&temp_proc_desc))
1797 frame_addr = sp + low_word;
c906108c
SS
1798 else if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
1799 {
1800 unsigned alloca_adjust;
1801 PROC_FRAME_REG (&temp_proc_desc) = 30;
c5aa993b
JM
1802 frame_addr = read_next_frame_reg (next_frame, 30);
1803 alloca_adjust = (unsigned) (frame_addr - (sp + low_word));
c906108c
SS
1804 if (alloca_adjust > 0)
1805 {
1806 /* FP > SP + frame_size. This may be because
1807 * of an alloca or somethings similar.
1808 * Fix sp to "pre-alloca" value, and try again.
1809 */
1810 sp += alloca_adjust;
1811 goto restart;
1812 }
1813 }
1814 }
c5aa993b
JM
1815 /* move $30,$sp. With different versions of gas this will be either
1816 `addu $30,$sp,$zero' or `or $30,$sp,$zero' or `daddu 30,sp,$0'.
1817 Accept any one of these. */
c906108c
SS
1818 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
1819 {
1820 /* New gcc frame, virtual frame pointer is at r30 + frame_size. */
1821 if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
1822 {
1823 unsigned alloca_adjust;
1824 PROC_FRAME_REG (&temp_proc_desc) = 30;
c5aa993b
JM
1825 frame_addr = read_next_frame_reg (next_frame, 30);
1826 alloca_adjust = (unsigned) (frame_addr - sp);
c906108c
SS
1827 if (alloca_adjust > 0)
1828 {
1829 /* FP > SP + frame_size. This may be because
1830 * of an alloca or somethings similar.
1831 * Fix sp to "pre-alloca" value, and try again.
1832 */
1833 sp += alloca_adjust;
1834 goto restart;
1835 }
1836 }
1837 }
c5aa993b 1838 else if ((high_word & 0xFFE0) == 0xafc0) /* sw reg,offset($30) */
c906108c 1839 {
c5aa993b 1840 PROC_REG_MASK (&temp_proc_desc) |= 1 << reg;
c906108c
SS
1841 set_reg_offset (reg, frame_addr + low_word);
1842 }
1843 }
1844}
1845
1846static mips_extra_func_info_t
acdb74a0
AC
1847heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
1848 struct frame_info *next_frame)
c906108c
SS
1849{
1850 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
1851
c5aa993b
JM
1852 if (start_pc == 0)
1853 return NULL;
1854 memset (&temp_proc_desc, '\0', sizeof (temp_proc_desc));
cce74817 1855 memset (&temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
c906108c
SS
1856 PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
1857 PROC_FRAME_REG (&temp_proc_desc) = SP_REGNUM;
1858 PROC_PC_REG (&temp_proc_desc) = RA_REGNUM;
1859
1860 if (start_pc + 200 < limit_pc)
1861 limit_pc = start_pc + 200;
1862 if (pc_is_mips16 (start_pc))
1863 mips16_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
1864 else
1865 mips32_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
1866 return &temp_proc_desc;
1867}
1868
1869static mips_extra_func_info_t
acdb74a0 1870non_heuristic_proc_desc (CORE_ADDR pc, CORE_ADDR *addrptr)
c906108c
SS
1871{
1872 CORE_ADDR startaddr;
1873 mips_extra_func_info_t proc_desc;
c5aa993b 1874 struct block *b = block_for_pc (pc);
c906108c
SS
1875 struct symbol *sym;
1876
1877 find_pc_partial_function (pc, NULL, &startaddr, NULL);
1878 if (addrptr)
1879 *addrptr = startaddr;
1880 if (b == NULL || PC_IN_CALL_DUMMY (pc, 0, 0))
1881 sym = NULL;
1882 else
1883 {
1884 if (startaddr > BLOCK_START (b))
1885 /* This is the "pathological" case referred to in a comment in
1886 print_frame_info. It might be better to move this check into
1887 symbol reading. */
1888 sym = NULL;
1889 else
1890 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, 0, NULL);
1891 }
1892
1893 /* If we never found a PDR for this function in symbol reading, then
1894 examine prologues to find the information. */
1895 if (sym)
1896 {
1897 proc_desc = (mips_extra_func_info_t) SYMBOL_VALUE (sym);
1898 if (PROC_FRAME_REG (proc_desc) == -1)
1899 return NULL;
1900 else
1901 return proc_desc;
1902 }
1903 else
1904 return NULL;
1905}
1906
1907
1908static mips_extra_func_info_t
acdb74a0 1909find_proc_desc (CORE_ADDR pc, struct frame_info *next_frame)
c906108c
SS
1910{
1911 mips_extra_func_info_t proc_desc;
1912 CORE_ADDR startaddr;
1913
1914 proc_desc = non_heuristic_proc_desc (pc, &startaddr);
1915
1916 if (proc_desc)
1917 {
1918 /* IF this is the topmost frame AND
1919 * (this proc does not have debugging information OR
1920 * the PC is in the procedure prologue)
1921 * THEN create a "heuristic" proc_desc (by analyzing
1922 * the actual code) to replace the "official" proc_desc.
1923 */
1924 if (next_frame == NULL)
1925 {
1926 struct symtab_and_line val;
1927 struct symbol *proc_symbol =
c5aa993b 1928 PROC_DESC_IS_DUMMY (proc_desc) ? 0 : PROC_SYMBOL (proc_desc);
c906108c
SS
1929
1930 if (proc_symbol)
1931 {
1932 val = find_pc_line (BLOCK_START
c5aa993b 1933 (SYMBOL_BLOCK_VALUE (proc_symbol)),
c906108c
SS
1934 0);
1935 val.pc = val.end ? val.end : pc;
1936 }
1937 if (!proc_symbol || pc < val.pc)
1938 {
1939 mips_extra_func_info_t found_heuristic =
c5aa993b
JM
1940 heuristic_proc_desc (PROC_LOW_ADDR (proc_desc),
1941 pc, next_frame);
c906108c
SS
1942 if (found_heuristic)
1943 proc_desc = found_heuristic;
1944 }
1945 }
1946 }
1947 else
1948 {
1949 /* Is linked_proc_desc_table really necessary? It only seems to be used
c5aa993b
JM
1950 by procedure call dummys. However, the procedures being called ought
1951 to have their own proc_descs, and even if they don't,
1952 heuristic_proc_desc knows how to create them! */
c906108c
SS
1953
1954 register struct linked_proc_info *link;
1955
1956 for (link = linked_proc_desc_table; link; link = link->next)
c5aa993b
JM
1957 if (PROC_LOW_ADDR (&link->info) <= pc
1958 && PROC_HIGH_ADDR (&link->info) > pc)
c906108c
SS
1959 return &link->info;
1960
1961 if (startaddr == 0)
1962 startaddr = heuristic_proc_start (pc);
1963
1964 proc_desc =
1965 heuristic_proc_desc (startaddr, pc, next_frame);
1966 }
1967 return proc_desc;
1968}
1969
1970static CORE_ADDR
acdb74a0
AC
1971get_frame_pointer (struct frame_info *frame,
1972 mips_extra_func_info_t proc_desc)
c906108c
SS
1973{
1974 return ADDR_BITS_REMOVE (
c5aa993b
JM
1975 read_next_frame_reg (frame, PROC_FRAME_REG (proc_desc)) +
1976 PROC_FRAME_OFFSET (proc_desc) - PROC_FRAME_ADJUST (proc_desc));
c906108c
SS
1977}
1978
1979mips_extra_func_info_t cached_proc_desc;
1980
1981CORE_ADDR
acdb74a0 1982mips_frame_chain (struct frame_info *frame)
c906108c
SS
1983{
1984 mips_extra_func_info_t proc_desc;
1985 CORE_ADDR tmp;
c5aa993b 1986 CORE_ADDR saved_pc = FRAME_SAVED_PC (frame);
c906108c
SS
1987
1988 if (saved_pc == 0 || inside_entry_file (saved_pc))
1989 return 0;
1990
1991 /* Check if the PC is inside a call stub. If it is, fetch the
1992 PC of the caller of that stub. */
1993 if ((tmp = mips_skip_stub (saved_pc)) != 0)
1994 saved_pc = tmp;
1995
1996 /* Look up the procedure descriptor for this PC. */
c5aa993b 1997 proc_desc = find_proc_desc (saved_pc, frame);
c906108c
SS
1998 if (!proc_desc)
1999 return 0;
2000
2001 cached_proc_desc = proc_desc;
2002
2003 /* If no frame pointer and frame size is zero, we must be at end
2004 of stack (or otherwise hosed). If we don't check frame size,
2005 we loop forever if we see a zero size frame. */
2006 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
2007 && PROC_FRAME_OFFSET (proc_desc) == 0
c5aa993b
JM
2008 /* The previous frame from a sigtramp frame might be frameless
2009 and have frame size zero. */
c906108c
SS
2010 && !frame->signal_handler_caller)
2011 return 0;
2012 else
2013 return get_frame_pointer (frame, proc_desc);
2014}
2015
2016void
acdb74a0 2017mips_init_extra_frame_info (int fromleaf, struct frame_info *fci)
c906108c
SS
2018{
2019 int regnum;
2020
2021 /* Use proc_desc calculated in frame_chain */
2022 mips_extra_func_info_t proc_desc =
c5aa993b 2023 fci->next ? cached_proc_desc : find_proc_desc (fci->pc, fci->next);
c906108c 2024
cce74817
JM
2025 fci->extra_info = (struct frame_extra_info *)
2026 frame_obstack_alloc (sizeof (struct frame_extra_info));
2027
c906108c 2028 fci->saved_regs = NULL;
cce74817 2029 fci->extra_info->proc_desc =
c906108c
SS
2030 proc_desc == &temp_proc_desc ? 0 : proc_desc;
2031 if (proc_desc)
2032 {
2033 /* Fixup frame-pointer - only needed for top frame */
2034 /* This may not be quite right, if proc has a real frame register.
c5aa993b
JM
2035 Get the value of the frame relative sp, procedure might have been
2036 interrupted by a signal at it's very start. */
c906108c
SS
2037 if (fci->pc == PROC_LOW_ADDR (proc_desc)
2038 && !PROC_DESC_IS_DUMMY (proc_desc))
2039 fci->frame = read_next_frame_reg (fci->next, SP_REGNUM);
2040 else
2041 fci->frame = get_frame_pointer (fci->next, proc_desc);
2042
2043 if (proc_desc == &temp_proc_desc)
2044 {
2045 char *name;
2046
2047 /* Do not set the saved registers for a sigtramp frame,
2048 mips_find_saved_registers will do that for us.
2049 We can't use fci->signal_handler_caller, it is not yet set. */
2050 find_pc_partial_function (fci->pc, &name,
c5aa993b 2051 (CORE_ADDR *) NULL, (CORE_ADDR *) NULL);
c906108c
SS
2052 if (!IN_SIGTRAMP (fci->pc, name))
2053 {
c5aa993b 2054 frame_saved_regs_zalloc (fci);
cce74817 2055 memcpy (fci->saved_regs, temp_saved_regs, SIZEOF_FRAME_SAVED_REGS);
c906108c
SS
2056 fci->saved_regs[PC_REGNUM]
2057 = fci->saved_regs[RA_REGNUM];
2058 }
2059 }
2060
2061 /* hack: if argument regs are saved, guess these contain args */
cce74817
JM
2062 /* assume we can't tell how many args for now */
2063 fci->extra_info->num_args = -1;
c906108c
SS
2064 for (regnum = MIPS_LAST_ARG_REGNUM; regnum >= A0_REGNUM; regnum--)
2065 {
c5aa993b 2066 if (PROC_REG_MASK (proc_desc) & (1 << regnum))
c906108c 2067 {
cce74817 2068 fci->extra_info->num_args = regnum - A0_REGNUM + 1;
c906108c
SS
2069 break;
2070 }
c5aa993b 2071 }
c906108c
SS
2072 }
2073}
2074
2075/* MIPS stack frames are almost impenetrable. When execution stops,
2076 we basically have to look at symbol information for the function
2077 that we stopped in, which tells us *which* register (if any) is
2078 the base of the frame pointer, and what offset from that register
2079 the frame itself is at.
2080
2081 This presents a problem when trying to examine a stack in memory
2082 (that isn't executing at the moment), using the "frame" command. We
2083 don't have a PC, nor do we have any registers except SP.
2084
2085 This routine takes two arguments, SP and PC, and tries to make the
2086 cached frames look as if these two arguments defined a frame on the
2087 cache. This allows the rest of info frame to extract the important
2088 arguments without difficulty. */
2089
2090struct frame_info *
acdb74a0 2091setup_arbitrary_frame (int argc, CORE_ADDR *argv)
c906108c
SS
2092{
2093 if (argc != 2)
2094 error ("MIPS frame specifications require two arguments: sp and pc");
2095
2096 return create_new_frame (argv[0], argv[1]);
2097}
2098
f09ded24
AC
2099/* According to the current ABI, should the type be passed in a
2100 floating-point register (assuming that there is space)? When there
2101 is no FPU, FP are not even considered as possibile candidates for
2102 FP registers and, consequently this returns false - forces FP
2103 arguments into integer registers. */
2104
2105static int
2106fp_register_arg_p (enum type_code typecode, struct type *arg_type)
2107{
2108 return ((typecode == TYPE_CODE_FLT
2109 || (MIPS_EABI
2110 && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION)
2111 && TYPE_NFIELDS (arg_type) == 1
2112 && TYPE_CODE (TYPE_FIELD_TYPE (arg_type, 0)) == TYPE_CODE_FLT))
2113 && MIPS_FPU_TYPE != MIPS_FPU_NONE);
2114}
2115
c906108c 2116CORE_ADDR
acdb74a0
AC
2117mips_push_arguments (int nargs,
2118 value_ptr *args,
2119 CORE_ADDR sp,
2120 int struct_return,
2121 CORE_ADDR struct_addr)
c906108c
SS
2122{
2123 int argreg;
2124 int float_argreg;
2125 int argnum;
2126 int len = 0;
2127 int stack_offset = 0;
2128
2129 /* Macros to round N up or down to the next A boundary; A must be
2130 a power of two. */
2131#define ROUND_DOWN(n,a) ((n) & ~((a)-1))
2132#define ROUND_UP(n,a) (((n)+(a)-1) & ~((a)-1))
c5aa993b 2133
c906108c
SS
2134 /* First ensure that the stack and structure return address (if any)
2135 are properly aligned. The stack has to be at least 64-bit aligned
2136 even on 32-bit machines, because doubles must be 64-bit aligned.
2137 On at least one MIPS variant, stack frames need to be 128-bit
2138 aligned, so we round to this widest known alignment. */
2139 sp = ROUND_DOWN (sp, 16);
cce41527 2140 struct_addr = ROUND_DOWN (struct_addr, 16);
c5aa993b 2141
c906108c
SS
2142 /* Now make space on the stack for the args. We allocate more
2143 than necessary for EABI, because the first few arguments are
2144 passed in registers, but that's OK. */
2145 for (argnum = 0; argnum < nargs; argnum++)
cce41527 2146 len += ROUND_UP (TYPE_LENGTH (VALUE_TYPE (args[argnum])), MIPS_STACK_ARGSIZE);
c906108c
SS
2147 sp -= ROUND_UP (len, 16);
2148
9ace0497
AC
2149 if (mips_debug)
2150 fprintf_unfiltered (gdb_stdlog, "mips_push_arguments: sp=0x%lx allocated %d\n",
2151 (long) sp, ROUND_UP (len, 16));
2152
c906108c
SS
2153 /* Initialize the integer and float register pointers. */
2154 argreg = A0_REGNUM;
2155 float_argreg = FPA0_REGNUM;
2156
2157 /* the struct_return pointer occupies the first parameter-passing reg */
2158 if (struct_return)
9ace0497
AC
2159 {
2160 if (mips_debug)
2161 fprintf_unfiltered (gdb_stdlog,
cce41527 2162 "mips_push_arguments: struct_return reg=%d 0x%lx\n",
9ace0497
AC
2163 argreg, (long) struct_addr);
2164 write_register (argreg++, struct_addr);
cce41527
AC
2165 if (MIPS_REGS_HAVE_HOME_P)
2166 stack_offset += MIPS_STACK_ARGSIZE;
9ace0497 2167 }
c906108c
SS
2168
2169 /* Now load as many as possible of the first arguments into
2170 registers, and push the rest onto the stack. Loop thru args
2171 from first to last. */
2172 for (argnum = 0; argnum < nargs; argnum++)
2173 {
2174 char *val;
2175 char valbuf[MAX_REGISTER_RAW_SIZE];
2176 value_ptr arg = args[argnum];
2177 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
2178 int len = TYPE_LENGTH (arg_type);
2179 enum type_code typecode = TYPE_CODE (arg_type);
2180
9ace0497
AC
2181 if (mips_debug)
2182 fprintf_unfiltered (gdb_stdlog,
2183 "mips_push_arguments: %d len=%d type=%d",
acdb74a0 2184 argnum + 1, len, (int) typecode);
9ace0497 2185
c906108c 2186 /* The EABI passes structures that do not fit in a register by
c5aa993b 2187 reference. In all other cases, pass the structure by value. */
9ace0497
AC
2188 if (MIPS_EABI
2189 && len > MIPS_SAVED_REGSIZE
2190 && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
c906108c 2191 {
7a292a7a 2192 store_address (valbuf, MIPS_SAVED_REGSIZE, VALUE_ADDRESS (arg));
c906108c 2193 typecode = TYPE_CODE_PTR;
7a292a7a 2194 len = MIPS_SAVED_REGSIZE;
c906108c 2195 val = valbuf;
9ace0497
AC
2196 if (mips_debug)
2197 fprintf_unfiltered (gdb_stdlog, " push");
c906108c
SS
2198 }
2199 else
c5aa993b 2200 val = (char *) VALUE_CONTENTS (arg);
c906108c
SS
2201
2202 /* 32-bit ABIs always start floating point arguments in an
acdb74a0
AC
2203 even-numbered floating point register. Round the FP register
2204 up before the check to see if there are any FP registers
2205 left. Non MIPS_EABI targets also pass the FP in the integer
2206 registers so also round up normal registers. */
2207 if (!FP_REGISTER_DOUBLE
2208 && fp_register_arg_p (typecode, arg_type))
2209 {
2210 if ((float_argreg & 1))
2211 float_argreg++;
2212 }
c906108c
SS
2213
2214 /* Floating point arguments passed in registers have to be
2215 treated specially. On 32-bit architectures, doubles
c5aa993b
JM
2216 are passed in register pairs; the even register gets
2217 the low word, and the odd register gets the high word.
2218 On non-EABI processors, the first two floating point arguments are
2219 also copied to general registers, because MIPS16 functions
2220 don't use float registers for arguments. This duplication of
2221 arguments in general registers can't hurt non-MIPS16 functions
2222 because those registers are normally skipped. */
1012bd0e
EZ
2223 /* MIPS_EABI squeezes a struct that contains a single floating
2224 point value into an FP register instead of pushing it onto the
9a0149c6 2225 stack. */
f09ded24
AC
2226 if (fp_register_arg_p (typecode, arg_type)
2227 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM)
c906108c
SS
2228 {
2229 if (!FP_REGISTER_DOUBLE && len == 8)
2230 {
2231 int low_offset = TARGET_BYTE_ORDER == BIG_ENDIAN ? 4 : 0;
2232 unsigned long regval;
2233
2234 /* Write the low word of the double to the even register(s). */
c5aa993b 2235 regval = extract_unsigned_integer (val + low_offset, 4);
9ace0497 2236 if (mips_debug)
acdb74a0 2237 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2238 float_argreg, phex (regval, 4));
c906108c
SS
2239 write_register (float_argreg++, regval);
2240 if (!MIPS_EABI)
9ace0497
AC
2241 {
2242 if (mips_debug)
acdb74a0 2243 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
9ace0497
AC
2244 argreg, phex (regval, 4));
2245 write_register (argreg++, regval);
2246 }
c906108c
SS
2247
2248 /* Write the high word of the double to the odd register(s). */
c5aa993b 2249 regval = extract_unsigned_integer (val + 4 - low_offset, 4);
9ace0497 2250 if (mips_debug)
acdb74a0 2251 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2252 float_argreg, phex (regval, 4));
c906108c
SS
2253 write_register (float_argreg++, regval);
2254 if (!MIPS_EABI)
c5aa993b 2255 {
9ace0497 2256 if (mips_debug)
acdb74a0 2257 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
9ace0497
AC
2258 argreg, phex (regval, 4));
2259 write_register (argreg++, regval);
c906108c
SS
2260 }
2261
2262 }
2263 else
2264 {
2265 /* This is a floating point value that fits entirely
2266 in a single register. */
53a5351d
JM
2267 /* On 32 bit ABI's the float_argreg is further adjusted
2268 above to ensure that it is even register aligned. */
9ace0497
AC
2269 LONGEST regval = extract_unsigned_integer (val, len);
2270 if (mips_debug)
acdb74a0 2271 fprintf_unfiltered (gdb_stdlog, " - fpreg=%d val=%s",
9ace0497 2272 float_argreg, phex (regval, len));
c906108c
SS
2273 write_register (float_argreg++, regval);
2274 if (!MIPS_EABI)
c5aa993b 2275 {
53a5351d
JM
2276 /* CAGNEY: 32 bit MIPS ABI's always reserve two FP
2277 registers for each argument. The below is (my
2278 guess) to ensure that the corresponding integer
2279 register has reserved the same space. */
9ace0497 2280 if (mips_debug)
acdb74a0 2281 fprintf_unfiltered (gdb_stdlog, " - reg=%d val=%s",
9ace0497 2282 argreg, phex (regval, len));
c906108c
SS
2283 write_register (argreg, regval);
2284 argreg += FP_REGISTER_DOUBLE ? 1 : 2;
2285 }
2286 }
cce41527
AC
2287 /* Reserve space for the FP register. */
2288 if (MIPS_REGS_HAVE_HOME_P)
2289 stack_offset += ROUND_UP (len, MIPS_STACK_ARGSIZE);
c906108c
SS
2290 }
2291 else
2292 {
2293 /* Copy the argument to general registers or the stack in
2294 register-sized pieces. Large arguments are split between
2295 registers and stack. */
2296 /* Note: structs whose size is not a multiple of MIPS_REGSIZE
2297 are treated specially: Irix cc passes them in registers
2298 where gcc sometimes puts them on the stack. For maximum
2299 compatibility, we will put them in both places. */
c5aa993b 2300 int odd_sized_struct = ((len > MIPS_SAVED_REGSIZE) &&
7a292a7a 2301 (len % MIPS_SAVED_REGSIZE != 0));
f09ded24
AC
2302 /* Note: Floating-point values that didn't fit into an FP
2303 register are only written to memory. */
c906108c
SS
2304 while (len > 0)
2305 {
566f0f7a
AC
2306 /* Rememer if the argument was written to the stack. */
2307 int stack_used_p = 0;
7a292a7a 2308 int partial_len = len < MIPS_SAVED_REGSIZE ? len : MIPS_SAVED_REGSIZE;
c906108c 2309
acdb74a0
AC
2310 if (mips_debug)
2311 fprintf_unfiltered (gdb_stdlog, " -- partial=%d",
2312 partial_len);
2313
566f0f7a 2314 /* Write this portion of the argument to the stack. */
f09ded24
AC
2315 if (argreg > MIPS_LAST_ARG_REGNUM
2316 || odd_sized_struct
2317 || fp_register_arg_p (typecode, arg_type))
c906108c 2318 {
c906108c
SS
2319 /* Should shorter than int integer values be
2320 promoted to int before being stored? */
c906108c 2321 int longword_offset = 0;
9ace0497 2322 CORE_ADDR addr;
566f0f7a 2323 stack_used_p = 1;
c906108c 2324 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
7a292a7a 2325 {
d929b26f 2326 if (MIPS_STACK_ARGSIZE == 8 &&
7a292a7a
SS
2327 (typecode == TYPE_CODE_INT ||
2328 typecode == TYPE_CODE_PTR ||
2329 typecode == TYPE_CODE_FLT) && len <= 4)
d929b26f 2330 longword_offset = MIPS_STACK_ARGSIZE - len;
7a292a7a
SS
2331 else if ((typecode == TYPE_CODE_STRUCT ||
2332 typecode == TYPE_CODE_UNION) &&
d929b26f
AC
2333 TYPE_LENGTH (arg_type) < MIPS_STACK_ARGSIZE)
2334 longword_offset = MIPS_STACK_ARGSIZE - len;
7a292a7a 2335 }
c5aa993b 2336
9ace0497
AC
2337 if (mips_debug)
2338 {
acdb74a0 2339 fprintf_unfiltered (gdb_stdlog, " - stack_offset=0x%lx",
9ace0497
AC
2340 (long) stack_offset);
2341 fprintf_unfiltered (gdb_stdlog, " longword_offset=0x%lx",
2342 (long) longword_offset);
2343 }
2344
2345 addr = sp + stack_offset + longword_offset;
2346
2347 if (mips_debug)
2348 {
2349 int i;
2350 fprintf_unfiltered (gdb_stdlog, " @0x%lx ", (long) addr);
2351 for (i = 0; i < partial_len; i++)
2352 {
2353 fprintf_unfiltered (gdb_stdlog, "%02x", val[i] & 0xff);
2354 }
2355 }
2356 write_memory (addr, val, partial_len);
c906108c
SS
2357 }
2358
f09ded24
AC
2359 /* Note!!! This is NOT an else clause. Odd sized
2360 structs may go thru BOTH paths. Floating point
2361 arguments will not. */
566f0f7a
AC
2362 /* Write this portion of the argument to a general
2363 purpose register. */
f09ded24
AC
2364 if (argreg <= MIPS_LAST_ARG_REGNUM
2365 && !fp_register_arg_p (typecode, arg_type))
c906108c 2366 {
9ace0497 2367 LONGEST regval = extract_unsigned_integer (val, partial_len);
c906108c
SS
2368
2369 /* A non-floating-point argument being passed in a
2370 general register. If a struct or union, and if
2371 the remaining length is smaller than the register
2372 size, we have to adjust the register value on
2373 big endian targets.
2374
2375 It does not seem to be necessary to do the
2376 same for integral types.
2377
2378 Also don't do this adjustment on EABI and O64
2379 binaries. */
2380
2381 if (!MIPS_EABI
7a292a7a 2382 && MIPS_SAVED_REGSIZE < 8
c906108c 2383 && TARGET_BYTE_ORDER == BIG_ENDIAN
7a292a7a 2384 && partial_len < MIPS_SAVED_REGSIZE
c906108c
SS
2385 && (typecode == TYPE_CODE_STRUCT ||
2386 typecode == TYPE_CODE_UNION))
c5aa993b 2387 regval <<= ((MIPS_SAVED_REGSIZE - partial_len) *
c906108c
SS
2388 TARGET_CHAR_BIT);
2389
9ace0497 2390 if (mips_debug)
acdb74a0 2391 fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",
9ace0497
AC
2392 argreg,
2393 phex (regval, MIPS_SAVED_REGSIZE));
c906108c
SS
2394 write_register (argreg, regval);
2395 argreg++;
c5aa993b 2396
c906108c
SS
2397 /* If this is the old ABI, prevent subsequent floating
2398 point arguments from being passed in floating point
2399 registers. */
2400 if (!MIPS_EABI)
2401 float_argreg = MIPS_LAST_FP_ARG_REGNUM + 1;
2402 }
c5aa993b 2403
c906108c
SS
2404 len -= partial_len;
2405 val += partial_len;
2406
566f0f7a
AC
2407 /* Compute the the offset into the stack at which we
2408 will copy the next parameter.
2409
2410 In older ABIs, the caller reserved space for
2411 registers that contained arguments. This was loosely
2412 refered to as their "home". Consequently, space is
2413 always allocated.
c906108c 2414
566f0f7a
AC
2415 In the new EABI (and the NABI32), the stack_offset
2416 only needs to be adjusted when it has been used.. */
c906108c 2417
566f0f7a 2418 if (MIPS_REGS_HAVE_HOME_P || stack_used_p)
d929b26f 2419 stack_offset += ROUND_UP (partial_len, MIPS_STACK_ARGSIZE);
c906108c
SS
2420 }
2421 }
9ace0497
AC
2422 if (mips_debug)
2423 fprintf_unfiltered (gdb_stdlog, "\n");
c906108c
SS
2424 }
2425
0f71a2f6
JM
2426 /* Return adjusted stack pointer. */
2427 return sp;
2428}
2429
2430CORE_ADDR
acdb74a0 2431mips_push_return_address (CORE_ADDR pc, CORE_ADDR sp)
0f71a2f6 2432{
c906108c
SS
2433 /* Set the return address register to point to the entry
2434 point of the program, where a breakpoint lies in wait. */
c5aa993b 2435 write_register (RA_REGNUM, CALL_DUMMY_ADDRESS ());
c906108c
SS
2436 return sp;
2437}
2438
2439static void
c5aa993b 2440mips_push_register (CORE_ADDR * sp, int regno)
c906108c
SS
2441{
2442 char buffer[MAX_REGISTER_RAW_SIZE];
7a292a7a
SS
2443 int regsize;
2444 int offset;
2445 if (MIPS_SAVED_REGSIZE < REGISTER_RAW_SIZE (regno))
2446 {
2447 regsize = MIPS_SAVED_REGSIZE;
2448 offset = (TARGET_BYTE_ORDER == BIG_ENDIAN
2449 ? REGISTER_RAW_SIZE (regno) - MIPS_SAVED_REGSIZE
2450 : 0);
2451 }
2452 else
2453 {
2454 regsize = REGISTER_RAW_SIZE (regno);
2455 offset = 0;
2456 }
c906108c
SS
2457 *sp -= regsize;
2458 read_register_gen (regno, buffer);
7a292a7a 2459 write_memory (*sp, buffer + offset, regsize);
c906108c
SS
2460}
2461
2462/* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<(MIPS_NUMREGS-1). */
2463#define MASK(i,j) (((1 << ((j)+1))-1) ^ ((1 << (i))-1))
2464
2465void
acdb74a0 2466mips_push_dummy_frame (void)
c906108c
SS
2467{
2468 int ireg;
c5aa993b
JM
2469 struct linked_proc_info *link = (struct linked_proc_info *)
2470 xmalloc (sizeof (struct linked_proc_info));
c906108c 2471 mips_extra_func_info_t proc_desc = &link->info;
6c997a34 2472 CORE_ADDR sp = ADDR_BITS_REMOVE (read_signed_register (SP_REGNUM));
c906108c
SS
2473 CORE_ADDR old_sp = sp;
2474 link->next = linked_proc_desc_table;
2475 linked_proc_desc_table = link;
2476
2477/* FIXME! are these correct ? */
c5aa993b 2478#define PUSH_FP_REGNUM 16 /* must be a register preserved across calls */
c906108c
SS
2479#define GEN_REG_SAVE_MASK MASK(1,16)|MASK(24,28)|(1<<(MIPS_NUMREGS-1))
2480#define FLOAT_REG_SAVE_MASK MASK(0,19)
2481#define FLOAT_SINGLE_REG_SAVE_MASK \
2482 ((1<<18)|(1<<16)|(1<<14)|(1<<12)|(1<<10)|(1<<8)|(1<<6)|(1<<4)|(1<<2)|(1<<0))
2483 /*
2484 * The registers we must save are all those not preserved across
2485 * procedure calls. Dest_Reg (see tm-mips.h) must also be saved.
2486 * In addition, we must save the PC, PUSH_FP_REGNUM, MMLO/-HI
2487 * and FP Control/Status registers.
2488 *
2489 *
2490 * Dummy frame layout:
2491 * (high memory)
c5aa993b
JM
2492 * Saved PC
2493 * Saved MMHI, MMLO, FPC_CSR
2494 * Saved R31
2495 * Saved R28
2496 * ...
2497 * Saved R1
c906108c
SS
2498 * Saved D18 (i.e. F19, F18)
2499 * ...
2500 * Saved D0 (i.e. F1, F0)
c5aa993b 2501 * Argument build area and stack arguments written via mips_push_arguments
c906108c
SS
2502 * (low memory)
2503 */
2504
2505 /* Save special registers (PC, MMHI, MMLO, FPC_CSR) */
c5aa993b
JM
2506 PROC_FRAME_REG (proc_desc) = PUSH_FP_REGNUM;
2507 PROC_FRAME_OFFSET (proc_desc) = 0;
2508 PROC_FRAME_ADJUST (proc_desc) = 0;
c906108c
SS
2509 mips_push_register (&sp, PC_REGNUM);
2510 mips_push_register (&sp, HI_REGNUM);
2511 mips_push_register (&sp, LO_REGNUM);
2512 mips_push_register (&sp, MIPS_FPU_TYPE == MIPS_FPU_NONE ? 0 : FCRCS_REGNUM);
2513
2514 /* Save general CPU registers */
c5aa993b 2515 PROC_REG_MASK (proc_desc) = GEN_REG_SAVE_MASK;
c906108c 2516 /* PROC_REG_OFFSET is the offset of the first saved register from FP. */
c5aa993b
JM
2517 PROC_REG_OFFSET (proc_desc) = sp - old_sp - MIPS_SAVED_REGSIZE;
2518 for (ireg = 32; --ireg >= 0;)
2519 if (PROC_REG_MASK (proc_desc) & (1 << ireg))
c906108c
SS
2520 mips_push_register (&sp, ireg);
2521
2522 /* Save floating point registers starting with high order word */
c5aa993b 2523 PROC_FREG_MASK (proc_desc) =
c906108c
SS
2524 MIPS_FPU_TYPE == MIPS_FPU_DOUBLE ? FLOAT_REG_SAVE_MASK
2525 : MIPS_FPU_TYPE == MIPS_FPU_SINGLE ? FLOAT_SINGLE_REG_SAVE_MASK : 0;
2526 /* PROC_FREG_OFFSET is the offset of the first saved *double* register
2527 from FP. */
c5aa993b
JM
2528 PROC_FREG_OFFSET (proc_desc) = sp - old_sp - 8;
2529 for (ireg = 32; --ireg >= 0;)
2530 if (PROC_FREG_MASK (proc_desc) & (1 << ireg))
c906108c
SS
2531 mips_push_register (&sp, ireg + FP0_REGNUM);
2532
2533 /* Update the frame pointer for the call dummy and the stack pointer.
2534 Set the procedure's starting and ending addresses to point to the
2535 call dummy address at the entry point. */
2536 write_register (PUSH_FP_REGNUM, old_sp);
2537 write_register (SP_REGNUM, sp);
c5aa993b
JM
2538 PROC_LOW_ADDR (proc_desc) = CALL_DUMMY_ADDRESS ();
2539 PROC_HIGH_ADDR (proc_desc) = CALL_DUMMY_ADDRESS () + 4;
2540 SET_PROC_DESC_IS_DUMMY (proc_desc);
2541 PROC_PC_REG (proc_desc) = RA_REGNUM;
c906108c
SS
2542}
2543
2544void
acdb74a0 2545mips_pop_frame (void)
c906108c
SS
2546{
2547 register int regnum;
2548 struct frame_info *frame = get_current_frame ();
2549 CORE_ADDR new_sp = FRAME_FP (frame);
2550
cce74817 2551 mips_extra_func_info_t proc_desc = frame->extra_info->proc_desc;
c906108c 2552
c5aa993b 2553 write_register (PC_REGNUM, FRAME_SAVED_PC (frame));
c906108c
SS
2554 if (frame->saved_regs == NULL)
2555 mips_find_saved_regs (frame);
2556 for (regnum = 0; regnum < NUM_REGS; regnum++)
2557 {
2558 if (regnum != SP_REGNUM && regnum != PC_REGNUM
2559 && frame->saved_regs[regnum])
2560 write_register (regnum,
2561 read_memory_integer (frame->saved_regs[regnum],
c5aa993b 2562 MIPS_SAVED_REGSIZE));
c906108c
SS
2563 }
2564 write_register (SP_REGNUM, new_sp);
2565 flush_cached_frames ();
2566
c5aa993b 2567 if (proc_desc && PROC_DESC_IS_DUMMY (proc_desc))
c906108c
SS
2568 {
2569 struct linked_proc_info *pi_ptr, *prev_ptr;
2570
2571 for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL;
2572 pi_ptr != NULL;
2573 prev_ptr = pi_ptr, pi_ptr = pi_ptr->next)
2574 {
2575 if (&pi_ptr->info == proc_desc)
2576 break;
2577 }
2578
2579 if (pi_ptr == NULL)
2580 error ("Can't locate dummy extra frame info\n");
2581
2582 if (prev_ptr != NULL)
2583 prev_ptr->next = pi_ptr->next;
2584 else
2585 linked_proc_desc_table = pi_ptr->next;
2586
b8c9b27d 2587 xfree (pi_ptr);
c906108c
SS
2588
2589 write_register (HI_REGNUM,
c5aa993b 2590 read_memory_integer (new_sp - 2 * MIPS_SAVED_REGSIZE,
7a292a7a 2591 MIPS_SAVED_REGSIZE));
c906108c 2592 write_register (LO_REGNUM,
c5aa993b 2593 read_memory_integer (new_sp - 3 * MIPS_SAVED_REGSIZE,
7a292a7a 2594 MIPS_SAVED_REGSIZE));
c906108c
SS
2595 if (MIPS_FPU_TYPE != MIPS_FPU_NONE)
2596 write_register (FCRCS_REGNUM,
c5aa993b 2597 read_memory_integer (new_sp - 4 * MIPS_SAVED_REGSIZE,
7a292a7a 2598 MIPS_SAVED_REGSIZE));
c906108c
SS
2599 }
2600}
2601
2602static void
acdb74a0 2603mips_print_register (int regnum, int all)
c906108c
SS
2604{
2605 char raw_buffer[MAX_REGISTER_RAW_SIZE];
2606
2607 /* Get the data in raw format. */
2608 if (read_relative_register_raw_bytes (regnum, raw_buffer))
2609 {
2610 printf_filtered ("%s: [Invalid]", REGISTER_NAME (regnum));
2611 return;
2612 }
2613
2614 /* If an even floating point register, also print as double. */
2615 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT
c5aa993b
JM
2616 && !((regnum - FP0_REGNUM) & 1))
2617 if (REGISTER_RAW_SIZE (regnum) == 4) /* this would be silly on MIPS64 or N32 (Irix 6) */
c906108c 2618 {
c5aa993b 2619 char dbuffer[2 * MAX_REGISTER_RAW_SIZE];
c906108c
SS
2620
2621 read_relative_register_raw_bytes (regnum, dbuffer);
c5aa993b 2622 read_relative_register_raw_bytes (regnum + 1, dbuffer + MIPS_REGSIZE);
c906108c
SS
2623 REGISTER_CONVERT_TO_TYPE (regnum, builtin_type_double, dbuffer);
2624
c5aa993b 2625 printf_filtered ("(d%d: ", regnum - FP0_REGNUM);
c906108c
SS
2626 val_print (builtin_type_double, dbuffer, 0, 0,
2627 gdb_stdout, 0, 1, 0, Val_pretty_default);
2628 printf_filtered ("); ");
2629 }
2630 fputs_filtered (REGISTER_NAME (regnum), gdb_stdout);
2631
2632 /* The problem with printing numeric register names (r26, etc.) is that
2633 the user can't use them on input. Probably the best solution is to
2634 fix it so that either the numeric or the funky (a2, etc.) names
2635 are accepted on input. */
2636 if (regnum < MIPS_NUMREGS)
2637 printf_filtered ("(r%d): ", regnum);
2638 else
2639 printf_filtered (": ");
2640
2641 /* If virtual format is floating, print it that way. */
2642 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2643 if (FP_REGISTER_DOUBLE)
c5aa993b 2644 { /* show 8-byte floats as float AND double: */
c906108c
SS
2645 int offset = 4 * (TARGET_BYTE_ORDER == BIG_ENDIAN);
2646
2647 printf_filtered (" (float) ");
2648 val_print (builtin_type_float, raw_buffer + offset, 0, 0,
2649 gdb_stdout, 0, 1, 0, Val_pretty_default);
2650 printf_filtered (", (double) ");
2651 val_print (builtin_type_double, raw_buffer, 0, 0,
2652 gdb_stdout, 0, 1, 0, Val_pretty_default);
2653 }
2654 else
2655 val_print (REGISTER_VIRTUAL_TYPE (regnum), raw_buffer, 0, 0,
2656 gdb_stdout, 0, 1, 0, Val_pretty_default);
2657 /* Else print as integer in hex. */
2658 else
ed9a39eb
JM
2659 {
2660 int offset;
2661
2662 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2663 offset = REGISTER_RAW_SIZE (regnum) - REGISTER_VIRTUAL_SIZE (regnum);
2664 else
2665 offset = 0;
2666
2667 print_scalar_formatted (raw_buffer + offset,
2668 REGISTER_VIRTUAL_TYPE (regnum),
2669 'x', 0, gdb_stdout);
2670 }
c906108c
SS
2671}
2672
2673/* Replacement for generic do_registers_info.
2674 Print regs in pretty columns. */
2675
2676static int
acdb74a0 2677do_fp_register_row (int regnum)
c5aa993b 2678{ /* do values for FP (float) regs */
c906108c
SS
2679 char *raw_buffer[2];
2680 char *dbl_buffer;
2681 /* use HI and LO to control the order of combining two flt regs */
2682 int HI = (TARGET_BYTE_ORDER == BIG_ENDIAN);
2683 int LO = (TARGET_BYTE_ORDER != BIG_ENDIAN);
2684 double doub, flt1, flt2; /* doubles extracted from raw hex data */
2685 int inv1, inv2, inv3;
c5aa993b 2686
c906108c
SS
2687 raw_buffer[0] = (char *) alloca (REGISTER_RAW_SIZE (FP0_REGNUM));
2688 raw_buffer[1] = (char *) alloca (REGISTER_RAW_SIZE (FP0_REGNUM));
2689 dbl_buffer = (char *) alloca (2 * REGISTER_RAW_SIZE (FP0_REGNUM));
2690
2691 /* Get the data in raw format. */
2692 if (read_relative_register_raw_bytes (regnum, raw_buffer[HI]))
2693 error ("can't read register %d (%s)", regnum, REGISTER_NAME (regnum));
c5aa993b 2694 if (REGISTER_RAW_SIZE (regnum) == 4)
c906108c
SS
2695 {
2696 /* 4-byte registers: we can fit two registers per row. */
2697 /* Also print every pair of 4-byte regs as an 8-byte double. */
2698 if (read_relative_register_raw_bytes (regnum + 1, raw_buffer[LO]))
c5aa993b 2699 error ("can't read register %d (%s)",
c906108c
SS
2700 regnum + 1, REGISTER_NAME (regnum + 1));
2701
2702 /* copy the two floats into one double, and unpack both */
65edb64b 2703 memcpy (dbl_buffer, raw_buffer, 2 * REGISTER_RAW_SIZE (FP0_REGNUM));
c5aa993b
JM
2704 flt1 = unpack_double (builtin_type_float, raw_buffer[HI], &inv1);
2705 flt2 = unpack_double (builtin_type_float, raw_buffer[LO], &inv2);
2706 doub = unpack_double (builtin_type_double, dbl_buffer, &inv3);
2707
1adad886
AC
2708 printf_filtered (" %-5s", REGISTER_NAME (regnum));
2709 if (inv1)
2710 printf_filtered (": <invalid float>");
2711 else
2712 printf_filtered ("%-17.9g", flt1);
2713
2714 printf_filtered (" %-5s", REGISTER_NAME (regnum + 1));
2715 if (inv2)
2716 printf_filtered (": <invalid float>");
2717 else
2718 printf_filtered ("%-17.9g", flt2);
2719
2720 printf_filtered (" dbl: ");
2721 if (inv3)
2722 printf_filtered ("<invalid double>");
2723 else
2724 printf_filtered ("%-24.17g", doub);
2725 printf_filtered ("\n");
2726
c906108c 2727 /* may want to do hex display here (future enhancement) */
c5aa993b 2728 regnum += 2;
c906108c
SS
2729 }
2730 else
c5aa993b 2731 { /* eight byte registers: print each one as float AND as double. */
c906108c
SS
2732 int offset = 4 * (TARGET_BYTE_ORDER == BIG_ENDIAN);
2733
65edb64b 2734 memcpy (dbl_buffer, raw_buffer[HI], 2 * REGISTER_RAW_SIZE (FP0_REGNUM));
c5aa993b 2735 flt1 = unpack_double (builtin_type_float,
c906108c 2736 &raw_buffer[HI][offset], &inv1);
c5aa993b 2737 doub = unpack_double (builtin_type_double, dbl_buffer, &inv3);
c906108c 2738
1adad886
AC
2739 printf_filtered (" %-5s: ", REGISTER_NAME (regnum));
2740 if (inv1)
2741 printf_filtered ("<invalid float>");
2742 else
2743 printf_filtered ("flt: %-17.9g", flt1);
2744
2745 printf_filtered (" dbl: ");
2746 if (inv3)
2747 printf_filtered ("<invalid double>");
2748 else
2749 printf_filtered ("%-24.17g", doub);
2750
2751 printf_filtered ("\n");
c906108c
SS
2752 /* may want to do hex display here (future enhancement) */
2753 regnum++;
2754 }
2755 return regnum;
2756}
2757
2758/* Print a row's worth of GP (int) registers, with name labels above */
2759
2760static int
acdb74a0 2761do_gp_register_row (int regnum)
c906108c
SS
2762{
2763 /* do values for GP (int) regs */
2764 char raw_buffer[MAX_REGISTER_RAW_SIZE];
2765 int ncols = (MIPS_REGSIZE == 8 ? 4 : 8); /* display cols per row */
2766 int col, byte;
2767 int start_regnum = regnum;
2768 int numregs = NUM_REGS;
2769
2770
2771 /* For GP registers, we print a separate row of names above the vals */
2772 printf_filtered (" ");
2773 for (col = 0; col < ncols && regnum < numregs; regnum++)
2774 {
2775 if (*REGISTER_NAME (regnum) == '\0')
c5aa993b 2776 continue; /* unused register */
c906108c 2777 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
c5aa993b
JM
2778 break; /* end the row: reached FP register */
2779 printf_filtered (MIPS_REGSIZE == 8 ? "%17s" : "%9s",
c906108c
SS
2780 REGISTER_NAME (regnum));
2781 col++;
2782 }
c5aa993b 2783 printf_filtered (start_regnum < MIPS_NUMREGS ? "\n R%-4d" : "\n ",
c906108c
SS
2784 start_regnum); /* print the R0 to R31 names */
2785
2786 regnum = start_regnum; /* go back to start of row */
2787 /* now print the values in hex, 4 or 8 to the row */
2788 for (col = 0; col < ncols && regnum < numregs; regnum++)
2789 {
2790 if (*REGISTER_NAME (regnum) == '\0')
c5aa993b 2791 continue; /* unused register */
c906108c 2792 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
c5aa993b 2793 break; /* end row: reached FP register */
c906108c
SS
2794 /* OK: get the data in raw format. */
2795 if (read_relative_register_raw_bytes (regnum, raw_buffer))
2796 error ("can't read register %d (%s)", regnum, REGISTER_NAME (regnum));
2797 /* pad small registers */
43e526b9 2798 for (byte = 0; byte < (MIPS_REGSIZE - REGISTER_VIRTUAL_SIZE (regnum)); byte++)
c906108c
SS
2799 printf_filtered (" ");
2800 /* Now print the register value in hex, endian order. */
2801 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
43e526b9
JM
2802 for (byte = REGISTER_RAW_SIZE (regnum) - REGISTER_VIRTUAL_SIZE (regnum);
2803 byte < REGISTER_RAW_SIZE (regnum);
2804 byte++)
c906108c
SS
2805 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
2806 else
43e526b9
JM
2807 for (byte = REGISTER_VIRTUAL_SIZE (regnum) - 1;
2808 byte >= 0;
2809 byte--)
c906108c
SS
2810 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
2811 printf_filtered (" ");
2812 col++;
2813 }
c5aa993b 2814 if (col > 0) /* ie. if we actually printed anything... */
c906108c
SS
2815 printf_filtered ("\n");
2816
2817 return regnum;
2818}
2819
2820/* MIPS_DO_REGISTERS_INFO(): called by "info register" command */
2821
2822void
acdb74a0 2823mips_do_registers_info (int regnum, int fpregs)
c906108c 2824{
c5aa993b 2825 if (regnum != -1) /* do one specified register */
c906108c
SS
2826 {
2827 if (*(REGISTER_NAME (regnum)) == '\0')
2828 error ("Not a valid register for the current processor type");
2829
2830 mips_print_register (regnum, 0);
2831 printf_filtered ("\n");
2832 }
c5aa993b
JM
2833 else
2834 /* do all (or most) registers */
c906108c
SS
2835 {
2836 regnum = 0;
2837 while (regnum < NUM_REGS)
2838 {
c5aa993b
JM
2839 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2840 if (fpregs) /* true for "INFO ALL-REGISTERS" command */
c906108c
SS
2841 regnum = do_fp_register_row (regnum); /* FP regs */
2842 else
2843 regnum += MIPS_NUMREGS; /* skip floating point regs */
2844 else
2845 regnum = do_gp_register_row (regnum); /* GP (int) regs */
2846 }
2847 }
2848}
2849
2850/* Return number of args passed to a frame. described by FIP.
2851 Can return -1, meaning no way to tell. */
2852
2853int
acdb74a0 2854mips_frame_num_args (struct frame_info *frame)
c906108c 2855{
c906108c
SS
2856 return -1;
2857}
2858
2859/* Is this a branch with a delay slot? */
2860
a14ed312 2861static int is_delayed (unsigned long);
c906108c
SS
2862
2863static int
acdb74a0 2864is_delayed (unsigned long insn)
c906108c
SS
2865{
2866 int i;
2867 for (i = 0; i < NUMOPCODES; ++i)
2868 if (mips_opcodes[i].pinfo != INSN_MACRO
2869 && (insn & mips_opcodes[i].mask) == mips_opcodes[i].match)
2870 break;
2871 return (i < NUMOPCODES
2872 && (mips_opcodes[i].pinfo & (INSN_UNCOND_BRANCH_DELAY
2873 | INSN_COND_BRANCH_DELAY
2874 | INSN_COND_BRANCH_LIKELY)));
2875}
2876
2877int
acdb74a0 2878mips_step_skips_delay (CORE_ADDR pc)
c906108c
SS
2879{
2880 char buf[MIPS_INSTLEN];
2881
2882 /* There is no branch delay slot on MIPS16. */
2883 if (pc_is_mips16 (pc))
2884 return 0;
2885
2886 if (target_read_memory (pc, buf, MIPS_INSTLEN) != 0)
2887 /* If error reading memory, guess that it is not a delayed branch. */
2888 return 0;
c5aa993b 2889 return is_delayed ((unsigned long) extract_unsigned_integer (buf, MIPS_INSTLEN));
c906108c
SS
2890}
2891
2892
2893/* Skip the PC past function prologue instructions (32-bit version).
2894 This is a helper function for mips_skip_prologue. */
2895
2896static CORE_ADDR
f7b9e9fc 2897mips32_skip_prologue (CORE_ADDR pc)
c906108c 2898{
c5aa993b
JM
2899 t_inst inst;
2900 CORE_ADDR end_pc;
2901 int seen_sp_adjust = 0;
2902 int load_immediate_bytes = 0;
2903
2904 /* Skip the typical prologue instructions. These are the stack adjustment
2905 instruction and the instructions that save registers on the stack
2906 or in the gcc frame. */
2907 for (end_pc = pc + 100; pc < end_pc; pc += MIPS_INSTLEN)
2908 {
2909 unsigned long high_word;
c906108c 2910
c5aa993b
JM
2911 inst = mips_fetch_instruction (pc);
2912 high_word = (inst >> 16) & 0xffff;
c906108c 2913
c5aa993b
JM
2914 if (high_word == 0x27bd /* addiu $sp,$sp,offset */
2915 || high_word == 0x67bd) /* daddiu $sp,$sp,offset */
2916 seen_sp_adjust = 1;
2917 else if (inst == 0x03a1e823 || /* subu $sp,$sp,$at */
2918 inst == 0x03a8e823) /* subu $sp,$sp,$t0 */
2919 seen_sp_adjust = 1;
2920 else if (((inst & 0xFFE00000) == 0xAFA00000 /* sw reg,n($sp) */
2921 || (inst & 0xFFE00000) == 0xFFA00000) /* sd reg,n($sp) */
2922 && (inst & 0x001F0000)) /* reg != $zero */
2923 continue;
2924
2925 else if ((inst & 0xFFE00000) == 0xE7A00000) /* swc1 freg,n($sp) */
2926 continue;
2927 else if ((inst & 0xF3E00000) == 0xA3C00000 && (inst & 0x001F0000))
2928 /* sx reg,n($s8) */
2929 continue; /* reg != $zero */
2930
2931 /* move $s8,$sp. With different versions of gas this will be either
2932 `addu $s8,$sp,$zero' or `or $s8,$sp,$zero' or `daddu s8,sp,$0'.
2933 Accept any one of these. */
2934 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
2935 continue;
2936
2937 else if ((inst & 0xFF9F07FF) == 0x00800021) /* move reg,$a0-$a3 */
2938 continue;
2939 else if (high_word == 0x3c1c) /* lui $gp,n */
2940 continue;
2941 else if (high_word == 0x279c) /* addiu $gp,$gp,n */
2942 continue;
2943 else if (inst == 0x0399e021 /* addu $gp,$gp,$t9 */
2944 || inst == 0x033ce021) /* addu $gp,$t9,$gp */
2945 continue;
2946 /* The following instructions load $at or $t0 with an immediate
2947 value in preparation for a stack adjustment via
2948 subu $sp,$sp,[$at,$t0]. These instructions could also initialize
2949 a local variable, so we accept them only before a stack adjustment
2950 instruction was seen. */
2951 else if (!seen_sp_adjust)
2952 {
2953 if (high_word == 0x3c01 || /* lui $at,n */
2954 high_word == 0x3c08) /* lui $t0,n */
2955 {
2956 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
2957 continue;
2958 }
2959 else if (high_word == 0x3421 || /* ori $at,$at,n */
2960 high_word == 0x3508 || /* ori $t0,$t0,n */
2961 high_word == 0x3401 || /* ori $at,$zero,n */
2962 high_word == 0x3408) /* ori $t0,$zero,n */
2963 {
2964 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
2965 continue;
2966 }
2967 else
2968 break;
2969 }
2970 else
2971 break;
c906108c
SS
2972 }
2973
c5aa993b
JM
2974 /* In a frameless function, we might have incorrectly
2975 skipped some load immediate instructions. Undo the skipping
2976 if the load immediate was not followed by a stack adjustment. */
2977 if (load_immediate_bytes && !seen_sp_adjust)
2978 pc -= load_immediate_bytes;
2979 return pc;
c906108c
SS
2980}
2981
2982/* Skip the PC past function prologue instructions (16-bit version).
2983 This is a helper function for mips_skip_prologue. */
2984
2985static CORE_ADDR
f7b9e9fc 2986mips16_skip_prologue (CORE_ADDR pc)
c906108c 2987{
c5aa993b
JM
2988 CORE_ADDR end_pc;
2989 int extend_bytes = 0;
2990 int prev_extend_bytes;
c906108c 2991
c5aa993b
JM
2992 /* Table of instructions likely to be found in a function prologue. */
2993 static struct
c906108c
SS
2994 {
2995 unsigned short inst;
2996 unsigned short mask;
c5aa993b
JM
2997 }
2998 table[] =
2999 {
c906108c 3000 {
c5aa993b
JM
3001 0x6300, 0xff00
3002 }
3003 , /* addiu $sp,offset */
3004 {
3005 0xfb00, 0xff00
3006 }
3007 , /* daddiu $sp,offset */
3008 {
3009 0xd000, 0xf800
3010 }
3011 , /* sw reg,n($sp) */
3012 {
3013 0xf900, 0xff00
3014 }
3015 , /* sd reg,n($sp) */
3016 {
3017 0x6200, 0xff00
3018 }
3019 , /* sw $ra,n($sp) */
3020 {
3021 0xfa00, 0xff00
3022 }
3023 , /* sd $ra,n($sp) */
3024 {
3025 0x673d, 0xffff
3026 }
3027 , /* move $s1,sp */
3028 {
3029 0xd980, 0xff80
3030 }
3031 , /* sw $a0-$a3,n($s1) */
3032 {
3033 0x6704, 0xff1c
3034 }
3035 , /* move reg,$a0-$a3 */
3036 {
3037 0xe809, 0xf81f
3038 }
3039 , /* entry pseudo-op */
3040 {
3041 0x0100, 0xff00
3042 }
3043 , /* addiu $s1,$sp,n */
3044 {
3045 0, 0
3046 } /* end of table marker */
3047 };
3048
3049 /* Skip the typical prologue instructions. These are the stack adjustment
3050 instruction and the instructions that save registers on the stack
3051 or in the gcc frame. */
3052 for (end_pc = pc + 100; pc < end_pc; pc += MIPS16_INSTLEN)
3053 {
3054 unsigned short inst;
3055 int i;
c906108c 3056
c5aa993b 3057 inst = mips_fetch_instruction (pc);
c906108c 3058
c5aa993b
JM
3059 /* Normally we ignore an extend instruction. However, if it is
3060 not followed by a valid prologue instruction, we must adjust
3061 the pc back over the extend so that it won't be considered
3062 part of the prologue. */
3063 if ((inst & 0xf800) == 0xf000) /* extend */
3064 {
3065 extend_bytes = MIPS16_INSTLEN;
3066 continue;
3067 }
3068 prev_extend_bytes = extend_bytes;
3069 extend_bytes = 0;
c906108c 3070
c5aa993b
JM
3071 /* Check for other valid prologue instructions besides extend. */
3072 for (i = 0; table[i].mask != 0; i++)
3073 if ((inst & table[i].mask) == table[i].inst) /* found, get out */
3074 break;
3075 if (table[i].mask != 0) /* it was in table? */
3076 continue; /* ignore it */
3077 else
3078 /* non-prologue */
3079 {
3080 /* Return the current pc, adjusted backwards by 2 if
3081 the previous instruction was an extend. */
3082 return pc - prev_extend_bytes;
3083 }
c906108c
SS
3084 }
3085 return pc;
3086}
3087
3088/* To skip prologues, I use this predicate. Returns either PC itself
3089 if the code at PC does not look like a function prologue; otherwise
3090 returns an address that (if we're lucky) follows the prologue. If
3091 LENIENT, then we must skip everything which is involved in setting
3092 up the frame (it's OK to skip more, just so long as we don't skip
3093 anything which might clobber the registers which are being saved.
3094 We must skip more in the case where part of the prologue is in the
3095 delay slot of a non-prologue instruction). */
3096
3097CORE_ADDR
f7b9e9fc 3098mips_skip_prologue (CORE_ADDR pc)
c906108c
SS
3099{
3100 /* See if we can determine the end of the prologue via the symbol table.
3101 If so, then return either PC, or the PC after the prologue, whichever
3102 is greater. */
3103
3104 CORE_ADDR post_prologue_pc = after_prologue (pc, NULL);
3105
3106 if (post_prologue_pc != 0)
3107 return max (pc, post_prologue_pc);
3108
3109 /* Can't determine prologue from the symbol table, need to examine
3110 instructions. */
3111
3112 if (pc_is_mips16 (pc))
f7b9e9fc 3113 return mips16_skip_prologue (pc);
c906108c 3114 else
f7b9e9fc 3115 return mips32_skip_prologue (pc);
c906108c 3116}
c906108c 3117
7a292a7a
SS
3118/* Determine how a return value is stored within the MIPS register
3119 file, given the return type `valtype'. */
3120
3121struct return_value_word
3122{
3123 int len;
3124 int reg;
3125 int reg_offset;
3126 int buf_offset;
3127};
3128
7a292a7a 3129static void
acdb74a0
AC
3130return_value_location (struct type *valtype,
3131 struct return_value_word *hi,
3132 struct return_value_word *lo)
7a292a7a
SS
3133{
3134 int len = TYPE_LENGTH (valtype);
c5aa993b 3135
7a292a7a
SS
3136 if (TYPE_CODE (valtype) == TYPE_CODE_FLT
3137 && ((MIPS_FPU_TYPE == MIPS_FPU_DOUBLE && (len == 4 || len == 8))
3138 || (MIPS_FPU_TYPE == MIPS_FPU_SINGLE && len == 4)))
3139 {
3140 if (!FP_REGISTER_DOUBLE && len == 8)
3141 {
3142 /* We need to break a 64bit float in two 32 bit halves and
c5aa993b 3143 spread them across a floating-point register pair. */
7a292a7a
SS
3144 lo->buf_offset = TARGET_BYTE_ORDER == BIG_ENDIAN ? 4 : 0;
3145 hi->buf_offset = TARGET_BYTE_ORDER == BIG_ENDIAN ? 0 : 4;
3146 lo->reg_offset = ((TARGET_BYTE_ORDER == BIG_ENDIAN
3147 && REGISTER_RAW_SIZE (FP0_REGNUM) == 8)
3148 ? 4 : 0);
3149 hi->reg_offset = lo->reg_offset;
3150 lo->reg = FP0_REGNUM + 0;
3151 hi->reg = FP0_REGNUM + 1;
3152 lo->len = 4;
3153 hi->len = 4;
3154 }
3155 else
3156 {
3157 /* The floating point value fits in a single floating-point
c5aa993b 3158 register. */
7a292a7a
SS
3159 lo->reg_offset = ((TARGET_BYTE_ORDER == BIG_ENDIAN
3160 && REGISTER_RAW_SIZE (FP0_REGNUM) == 8
3161 && len == 4)
3162 ? 4 : 0);
3163 lo->reg = FP0_REGNUM;
3164 lo->len = len;
3165 lo->buf_offset = 0;
3166 hi->len = 0;
3167 hi->reg_offset = 0;
3168 hi->buf_offset = 0;
3169 hi->reg = 0;
3170 }
3171 }
3172 else
3173 {
3174 /* Locate a result possibly spread across two registers. */
3175 int regnum = 2;
3176 lo->reg = regnum + 0;
3177 hi->reg = regnum + 1;
3178 if (TARGET_BYTE_ORDER == BIG_ENDIAN
3179 && len < MIPS_SAVED_REGSIZE)
3180 {
3181 /* "un-left-justify" the value in the low register */
3182 lo->reg_offset = MIPS_SAVED_REGSIZE - len;
3183 lo->len = len;
3184 hi->reg_offset = 0;
3185 hi->len = 0;
3186 }
3187 else if (TARGET_BYTE_ORDER == BIG_ENDIAN
3188 && len > MIPS_SAVED_REGSIZE /* odd-size structs */
3189 && len < MIPS_SAVED_REGSIZE * 2
3190 && (TYPE_CODE (valtype) == TYPE_CODE_STRUCT ||
3191 TYPE_CODE (valtype) == TYPE_CODE_UNION))
3192 {
3193 /* "un-left-justify" the value spread across two registers. */
3194 lo->reg_offset = 2 * MIPS_SAVED_REGSIZE - len;
3195 lo->len = MIPS_SAVED_REGSIZE - lo->reg_offset;
3196 hi->reg_offset = 0;
3197 hi->len = len - lo->len;
3198 }
3199 else
3200 {
3201 /* Only perform a partial copy of the second register. */
3202 lo->reg_offset = 0;
3203 hi->reg_offset = 0;
3204 if (len > MIPS_SAVED_REGSIZE)
3205 {
3206 lo->len = MIPS_SAVED_REGSIZE;
3207 hi->len = len - MIPS_SAVED_REGSIZE;
3208 }
3209 else
3210 {
3211 lo->len = len;
3212 hi->len = 0;
3213 }
3214 }
3215 if (TARGET_BYTE_ORDER == BIG_ENDIAN
3216 && REGISTER_RAW_SIZE (regnum) == 8
3217 && MIPS_SAVED_REGSIZE == 4)
3218 {
3219 /* Account for the fact that only the least-signficant part
c5aa993b 3220 of the register is being used */
7a292a7a
SS
3221 lo->reg_offset += 4;
3222 hi->reg_offset += 4;
3223 }
3224 lo->buf_offset = 0;
3225 hi->buf_offset = lo->len;
3226 }
3227}
3228
3229/* Given a return value in `regbuf' with a type `valtype', extract and
3230 copy its value into `valbuf'. */
3231
c906108c 3232void
acdb74a0
AC
3233mips_extract_return_value (struct type *valtype,
3234 char regbuf[REGISTER_BYTES],
3235 char *valbuf)
c906108c 3236{
7a292a7a
SS
3237 struct return_value_word lo;
3238 struct return_value_word hi;
99567b1b 3239 return_value_location (valtype, &hi, &lo);
7a292a7a
SS
3240
3241 memcpy (valbuf + lo.buf_offset,
3242 regbuf + REGISTER_BYTE (lo.reg) + lo.reg_offset,
3243 lo.len);
3244
3245 if (hi.len > 0)
3246 memcpy (valbuf + hi.buf_offset,
3247 regbuf + REGISTER_BYTE (hi.reg) + hi.reg_offset,
3248 hi.len);
c906108c
SS
3249}
3250
7a292a7a
SS
3251/* Given a return value in `valbuf' with a type `valtype', write it's
3252 value into the appropriate register. */
3253
c906108c 3254void
acdb74a0 3255mips_store_return_value (struct type *valtype, char *valbuf)
c906108c 3256{
7a292a7a
SS
3257 char raw_buffer[MAX_REGISTER_RAW_SIZE];
3258 struct return_value_word lo;
3259 struct return_value_word hi;
99567b1b 3260 return_value_location (valtype, &hi, &lo);
7a292a7a
SS
3261
3262 memset (raw_buffer, 0, sizeof (raw_buffer));
3263 memcpy (raw_buffer + lo.reg_offset, valbuf + lo.buf_offset, lo.len);
3264 write_register_bytes (REGISTER_BYTE (lo.reg),
3265 raw_buffer,
3266 REGISTER_RAW_SIZE (lo.reg));
c5aa993b 3267
7a292a7a
SS
3268 if (hi.len > 0)
3269 {
3270 memset (raw_buffer, 0, sizeof (raw_buffer));
3271 memcpy (raw_buffer + hi.reg_offset, valbuf + hi.buf_offset, hi.len);
3272 write_register_bytes (REGISTER_BYTE (hi.reg),
3273 raw_buffer,
3274 REGISTER_RAW_SIZE (hi.reg));
3275 }
c906108c
SS
3276}
3277
3278/* Exported procedure: Is PC in the signal trampoline code */
3279
3280int
acdb74a0 3281in_sigtramp (CORE_ADDR pc, char *ignore)
c906108c
SS
3282{
3283 if (sigtramp_address == 0)
3284 fixup_sigtramp ();
3285 return (pc >= sigtramp_address && pc < sigtramp_end);
3286}
3287
a5ea2558
AC
3288/* Root of all "set mips "/"show mips " commands. This will eventually be
3289 used for all MIPS-specific commands. */
3290
a5ea2558 3291static void
acdb74a0 3292show_mips_command (char *args, int from_tty)
a5ea2558
AC
3293{
3294 help_list (showmipscmdlist, "show mips ", all_commands, gdb_stdout);
3295}
3296
a5ea2558 3297static void
acdb74a0 3298set_mips_command (char *args, int from_tty)
a5ea2558
AC
3299{
3300 printf_unfiltered ("\"set mips\" must be followed by an appropriate subcommand.\n");
3301 help_list (setmipscmdlist, "set mips ", all_commands, gdb_stdout);
3302}
3303
c906108c
SS
3304/* Commands to show/set the MIPS FPU type. */
3305
c906108c 3306static void
acdb74a0 3307show_mipsfpu_command (char *args, int from_tty)
c906108c 3308{
c906108c
SS
3309 char *fpu;
3310 switch (MIPS_FPU_TYPE)
3311 {
3312 case MIPS_FPU_SINGLE:
3313 fpu = "single-precision";
3314 break;
3315 case MIPS_FPU_DOUBLE:
3316 fpu = "double-precision";
3317 break;
3318 case MIPS_FPU_NONE:
3319 fpu = "absent (none)";
3320 break;
93d56215
AC
3321 default:
3322 internal_error (__FILE__, __LINE__, "bad switch");
c906108c
SS
3323 }
3324 if (mips_fpu_type_auto)
3325 printf_unfiltered ("The MIPS floating-point coprocessor is set automatically (currently %s)\n",
3326 fpu);
3327 else
3328 printf_unfiltered ("The MIPS floating-point coprocessor is assumed to be %s\n",
3329 fpu);
3330}
3331
3332
c906108c 3333static void
acdb74a0 3334set_mipsfpu_command (char *args, int from_tty)
c906108c
SS
3335{
3336 printf_unfiltered ("\"set mipsfpu\" must be followed by \"double\", \"single\",\"none\" or \"auto\".\n");
3337 show_mipsfpu_command (args, from_tty);
3338}
3339
c906108c 3340static void
acdb74a0 3341set_mipsfpu_single_command (char *args, int from_tty)
c906108c
SS
3342{
3343 mips_fpu_type = MIPS_FPU_SINGLE;
3344 mips_fpu_type_auto = 0;
c2d11a7d
JM
3345 if (GDB_MULTI_ARCH)
3346 {
3347 gdbarch_tdep (current_gdbarch)->mips_fpu_type = MIPS_FPU_SINGLE;
3348 }
c906108c
SS
3349}
3350
c906108c 3351static void
acdb74a0 3352set_mipsfpu_double_command (char *args, int from_tty)
c906108c
SS
3353{
3354 mips_fpu_type = MIPS_FPU_DOUBLE;
3355 mips_fpu_type_auto = 0;
c2d11a7d
JM
3356 if (GDB_MULTI_ARCH)
3357 {
3358 gdbarch_tdep (current_gdbarch)->mips_fpu_type = MIPS_FPU_DOUBLE;
3359 }
c906108c
SS
3360}
3361
c906108c 3362static void
acdb74a0 3363set_mipsfpu_none_command (char *args, int from_tty)
c906108c
SS
3364{
3365 mips_fpu_type = MIPS_FPU_NONE;
3366 mips_fpu_type_auto = 0;
c2d11a7d
JM
3367 if (GDB_MULTI_ARCH)
3368 {
3369 gdbarch_tdep (current_gdbarch)->mips_fpu_type = MIPS_FPU_NONE;
3370 }
c906108c
SS
3371}
3372
c906108c 3373static void
acdb74a0 3374set_mipsfpu_auto_command (char *args, int from_tty)
c906108c
SS
3375{
3376 mips_fpu_type_auto = 1;
3377}
3378
3379/* Command to set the processor type. */
3380
3381void
acdb74a0 3382mips_set_processor_type_command (char *args, int from_tty)
c906108c
SS
3383{
3384 int i;
3385
3386 if (tmp_mips_processor_type == NULL || *tmp_mips_processor_type == '\0')
3387 {
3388 printf_unfiltered ("The known MIPS processor types are as follows:\n\n");
3389 for (i = 0; mips_processor_type_table[i].name != NULL; ++i)
3390 printf_unfiltered ("%s\n", mips_processor_type_table[i].name);
3391
3392 /* Restore the value. */
4fcf66da 3393 tmp_mips_processor_type = xstrdup (mips_processor_type);
c906108c
SS
3394
3395 return;
3396 }
c5aa993b 3397
c906108c
SS
3398 if (!mips_set_processor_type (tmp_mips_processor_type))
3399 {
3400 error ("Unknown processor type `%s'.", tmp_mips_processor_type);
3401 /* Restore its value. */
4fcf66da 3402 tmp_mips_processor_type = xstrdup (mips_processor_type);
c906108c
SS
3403 }
3404}
3405
3406static void
acdb74a0 3407mips_show_processor_type_command (char *args, int from_tty)
c906108c
SS
3408{
3409}
3410
3411/* Modify the actual processor type. */
3412
3413int
acdb74a0 3414mips_set_processor_type (char *str)
c906108c 3415{
1012bd0e 3416 int i;
c906108c
SS
3417
3418 if (str == NULL)
3419 return 0;
3420
3421 for (i = 0; mips_processor_type_table[i].name != NULL; ++i)
3422 {
3423 if (strcasecmp (str, mips_processor_type_table[i].name) == 0)
3424 {
3425 mips_processor_type = str;
cce74817 3426 mips_processor_reg_names = mips_processor_type_table[i].regnames;
c906108c 3427 return 1;
c906108c
SS
3428 /* FIXME tweak fpu flag too */
3429 }
3430 }
3431
3432 return 0;
3433}
3434
3435/* Attempt to identify the particular processor model by reading the
3436 processor id. */
3437
3438char *
acdb74a0 3439mips_read_processor_type (void)
c906108c
SS
3440{
3441 CORE_ADDR prid;
3442
3443 prid = read_register (PRID_REGNUM);
3444
3445 if ((prid & ~0xf) == 0x700)
c5aa993b 3446 return savestring ("r3041", strlen ("r3041"));
c906108c
SS
3447
3448 return NULL;
3449}
3450
3451/* Just like reinit_frame_cache, but with the right arguments to be
3452 callable as an sfunc. */
3453
3454static void
acdb74a0
AC
3455reinit_frame_cache_sfunc (char *args, int from_tty,
3456 struct cmd_list_element *c)
c906108c
SS
3457{
3458 reinit_frame_cache ();
3459}
3460
3461int
acdb74a0 3462gdb_print_insn_mips (bfd_vma memaddr, disassemble_info *info)
c906108c
SS
3463{
3464 mips_extra_func_info_t proc_desc;
3465
3466 /* Search for the function containing this address. Set the low bit
3467 of the address when searching, in case we were given an even address
3468 that is the start of a 16-bit function. If we didn't do this,
3469 the search would fail because the symbol table says the function
3470 starts at an odd address, i.e. 1 byte past the given address. */
3471 memaddr = ADDR_BITS_REMOVE (memaddr);
3472 proc_desc = non_heuristic_proc_desc (MAKE_MIPS16_ADDR (memaddr), NULL);
3473
3474 /* Make an attempt to determine if this is a 16-bit function. If
3475 the procedure descriptor exists and the address therein is odd,
3476 it's definitely a 16-bit function. Otherwise, we have to just
3477 guess that if the address passed in is odd, it's 16-bits. */
3478 if (proc_desc)
65c11066
MS
3479 info->mach = pc_is_mips16 (PROC_LOW_ADDR (proc_desc)) ?
3480 bfd_mach_mips16 : TM_PRINT_INSN_MACH;
c906108c 3481 else
65c11066
MS
3482 info->mach = pc_is_mips16 (memaddr) ?
3483 bfd_mach_mips16 : TM_PRINT_INSN_MACH;
c906108c
SS
3484
3485 /* Round down the instruction address to the appropriate boundary. */
65c11066 3486 memaddr &= (info->mach == bfd_mach_mips16 ? ~1 : ~3);
c5aa993b 3487
c906108c
SS
3488 /* Call the appropriate disassembler based on the target endian-ness. */
3489 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
3490 return print_insn_big_mips (memaddr, info);
3491 else
3492 return print_insn_little_mips (memaddr, info);
3493}
3494
3495/* Old-style breakpoint macros.
3496 The IDT board uses an unusual breakpoint value, and sometimes gets
3497 confused when it sees the usual MIPS breakpoint instruction. */
3498
3499#define BIG_BREAKPOINT {0, 0x5, 0, 0xd}
3500#define LITTLE_BREAKPOINT {0xd, 0, 0x5, 0}
3501#define PMON_BIG_BREAKPOINT {0, 0, 0, 0xd}
3502#define PMON_LITTLE_BREAKPOINT {0xd, 0, 0, 0}
3503#define IDT_BIG_BREAKPOINT {0, 0, 0x0a, 0xd}
3504#define IDT_LITTLE_BREAKPOINT {0xd, 0x0a, 0, 0}
3505#define MIPS16_BIG_BREAKPOINT {0xe8, 0xa5}
3506#define MIPS16_LITTLE_BREAKPOINT {0xa5, 0xe8}
3507
3508/* This function implements the BREAKPOINT_FROM_PC macro. It uses the program
3509 counter value to determine whether a 16- or 32-bit breakpoint should be
3510 used. It returns a pointer to a string of bytes that encode a breakpoint
3511 instruction, stores the length of the string to *lenptr, and adjusts pc
3512 (if necessary) to point to the actual memory location where the
3513 breakpoint should be inserted. */
3514
c5aa993b 3515unsigned char *
acdb74a0 3516mips_breakpoint_from_pc (CORE_ADDR * pcptr, int *lenptr)
c906108c
SS
3517{
3518 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
3519 {
3520 if (pc_is_mips16 (*pcptr))
3521 {
1012bd0e
EZ
3522 static unsigned char mips16_big_breakpoint[] =
3523 MIPS16_BIG_BREAKPOINT;
c906108c 3524 *pcptr = UNMAKE_MIPS16_ADDR (*pcptr);
c5aa993b 3525 *lenptr = sizeof (mips16_big_breakpoint);
c906108c
SS
3526 return mips16_big_breakpoint;
3527 }
3528 else
3529 {
1012bd0e
EZ
3530 static unsigned char big_breakpoint[] = BIG_BREAKPOINT;
3531 static unsigned char pmon_big_breakpoint[] = PMON_BIG_BREAKPOINT;
3532 static unsigned char idt_big_breakpoint[] = IDT_BIG_BREAKPOINT;
c906108c 3533
c5aa993b 3534 *lenptr = sizeof (big_breakpoint);
c906108c
SS
3535
3536 if (strcmp (target_shortname, "mips") == 0)
3537 return idt_big_breakpoint;
3538 else if (strcmp (target_shortname, "ddb") == 0
3539 || strcmp (target_shortname, "pmon") == 0
3540 || strcmp (target_shortname, "lsi") == 0)
3541 return pmon_big_breakpoint;
3542 else
3543 return big_breakpoint;
3544 }
3545 }
3546 else
3547 {
3548 if (pc_is_mips16 (*pcptr))
3549 {
1012bd0e
EZ
3550 static unsigned char mips16_little_breakpoint[] =
3551 MIPS16_LITTLE_BREAKPOINT;
c906108c 3552 *pcptr = UNMAKE_MIPS16_ADDR (*pcptr);
c5aa993b 3553 *lenptr = sizeof (mips16_little_breakpoint);
c906108c
SS
3554 return mips16_little_breakpoint;
3555 }
3556 else
3557 {
1012bd0e
EZ
3558 static unsigned char little_breakpoint[] = LITTLE_BREAKPOINT;
3559 static unsigned char pmon_little_breakpoint[] =
3560 PMON_LITTLE_BREAKPOINT;
3561 static unsigned char idt_little_breakpoint[] =
3562 IDT_LITTLE_BREAKPOINT;
c906108c 3563
c5aa993b 3564 *lenptr = sizeof (little_breakpoint);
c906108c
SS
3565
3566 if (strcmp (target_shortname, "mips") == 0)
3567 return idt_little_breakpoint;
3568 else if (strcmp (target_shortname, "ddb") == 0
3569 || strcmp (target_shortname, "pmon") == 0
3570 || strcmp (target_shortname, "lsi") == 0)
3571 return pmon_little_breakpoint;
3572 else
3573 return little_breakpoint;
3574 }
3575 }
3576}
3577
3578/* If PC is in a mips16 call or return stub, return the address of the target
3579 PC, which is either the callee or the caller. There are several
3580 cases which must be handled:
3581
3582 * If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
c5aa993b 3583 target PC is in $31 ($ra).
c906108c 3584 * If the PC is in __mips16_call_stub_{1..10}, this is a call stub
c5aa993b 3585 and the target PC is in $2.
c906108c 3586 * If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
c5aa993b
JM
3587 before the jal instruction, this is effectively a call stub
3588 and the the target PC is in $2. Otherwise this is effectively
3589 a return stub and the target PC is in $18.
c906108c
SS
3590
3591 See the source code for the stubs in gcc/config/mips/mips16.S for
3592 gory details.
3593
3594 This function implements the SKIP_TRAMPOLINE_CODE macro.
c5aa993b 3595 */
c906108c
SS
3596
3597CORE_ADDR
acdb74a0 3598mips_skip_stub (CORE_ADDR pc)
c906108c
SS
3599{
3600 char *name;
3601 CORE_ADDR start_addr;
3602
3603 /* Find the starting address and name of the function containing the PC. */
3604 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
3605 return 0;
3606
3607 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
3608 target PC is in $31 ($ra). */
3609 if (strcmp (name, "__mips16_ret_sf") == 0
3610 || strcmp (name, "__mips16_ret_df") == 0)
6c997a34 3611 return read_signed_register (RA_REGNUM);
c906108c
SS
3612
3613 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
3614 {
3615 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub
3616 and the target PC is in $2. */
3617 if (name[19] >= '0' && name[19] <= '9')
6c997a34 3618 return read_signed_register (2);
c906108c
SS
3619
3620 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
c5aa993b
JM
3621 before the jal instruction, this is effectively a call stub
3622 and the the target PC is in $2. Otherwise this is effectively
3623 a return stub and the target PC is in $18. */
c906108c
SS
3624 else if (name[19] == 's' || name[19] == 'd')
3625 {
3626 if (pc == start_addr)
3627 {
3628 /* Check if the target of the stub is a compiler-generated
c5aa993b
JM
3629 stub. Such a stub for a function bar might have a name
3630 like __fn_stub_bar, and might look like this:
3631 mfc1 $4,$f13
3632 mfc1 $5,$f12
3633 mfc1 $6,$f15
3634 mfc1 $7,$f14
3635 la $1,bar (becomes a lui/addiu pair)
3636 jr $1
3637 So scan down to the lui/addi and extract the target
3638 address from those two instructions. */
c906108c 3639
6c997a34 3640 CORE_ADDR target_pc = read_signed_register (2);
c906108c
SS
3641 t_inst inst;
3642 int i;
3643
3644 /* See if the name of the target function is __fn_stub_*. */
3645 if (find_pc_partial_function (target_pc, &name, NULL, NULL) == 0)
3646 return target_pc;
3647 if (strncmp (name, "__fn_stub_", 10) != 0
3648 && strcmp (name, "etext") != 0
3649 && strcmp (name, "_etext") != 0)
3650 return target_pc;
3651
3652 /* Scan through this _fn_stub_ code for the lui/addiu pair.
c5aa993b
JM
3653 The limit on the search is arbitrarily set to 20
3654 instructions. FIXME. */
c906108c
SS
3655 for (i = 0, pc = 0; i < 20; i++, target_pc += MIPS_INSTLEN)
3656 {
c5aa993b
JM
3657 inst = mips_fetch_instruction (target_pc);
3658 if ((inst & 0xffff0000) == 0x3c010000) /* lui $at */
3659 pc = (inst << 16) & 0xffff0000; /* high word */
3660 else if ((inst & 0xffff0000) == 0x24210000) /* addiu $at */
3661 return pc | (inst & 0xffff); /* low word */
c906108c
SS
3662 }
3663
3664 /* Couldn't find the lui/addui pair, so return stub address. */
3665 return target_pc;
3666 }
3667 else
3668 /* This is the 'return' part of a call stub. The return
3669 address is in $r18. */
6c997a34 3670 return read_signed_register (18);
c906108c
SS
3671 }
3672 }
c5aa993b 3673 return 0; /* not a stub */
c906108c
SS
3674}
3675
3676
3677/* Return non-zero if the PC is inside a call thunk (aka stub or trampoline).
3678 This implements the IN_SOLIB_CALL_TRAMPOLINE macro. */
3679
3680int
acdb74a0 3681mips_in_call_stub (CORE_ADDR pc, char *name)
c906108c
SS
3682{
3683 CORE_ADDR start_addr;
3684
3685 /* Find the starting address of the function containing the PC. If the
3686 caller didn't give us a name, look it up at the same time. */
3687 if (find_pc_partial_function (pc, name ? NULL : &name, &start_addr, NULL) == 0)
3688 return 0;
3689
3690 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
3691 {
3692 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub. */
3693 if (name[19] >= '0' && name[19] <= '9')
3694 return 1;
3695 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
c5aa993b 3696 before the jal instruction, this is effectively a call stub. */
c906108c
SS
3697 else if (name[19] == 's' || name[19] == 'd')
3698 return pc == start_addr;
3699 }
3700
c5aa993b 3701 return 0; /* not a stub */
c906108c
SS
3702}
3703
3704
3705/* Return non-zero if the PC is inside a return thunk (aka stub or trampoline).
3706 This implements the IN_SOLIB_RETURN_TRAMPOLINE macro. */
3707
3708int
acdb74a0 3709mips_in_return_stub (CORE_ADDR pc, char *name)
c906108c
SS
3710{
3711 CORE_ADDR start_addr;
3712
3713 /* Find the starting address of the function containing the PC. */
3714 if (find_pc_partial_function (pc, NULL, &start_addr, NULL) == 0)
3715 return 0;
3716
3717 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub. */
3718 if (strcmp (name, "__mips16_ret_sf") == 0
3719 || strcmp (name, "__mips16_ret_df") == 0)
3720 return 1;
3721
3722 /* If the PC is in __mips16_call_stub_{s,d}f_{0..10} but not at the start,
c5aa993b 3723 i.e. after the jal instruction, this is effectively a return stub. */
c906108c
SS
3724 if (strncmp (name, "__mips16_call_stub_", 19) == 0
3725 && (name[19] == 's' || name[19] == 'd')
3726 && pc != start_addr)
3727 return 1;
3728
c5aa993b 3729 return 0; /* not a stub */
c906108c
SS
3730}
3731
3732
3733/* Return non-zero if the PC is in a library helper function that should
3734 be ignored. This implements the IGNORE_HELPER_CALL macro. */
3735
3736int
acdb74a0 3737mips_ignore_helper (CORE_ADDR pc)
c906108c
SS
3738{
3739 char *name;
3740
3741 /* Find the starting address and name of the function containing the PC. */
3742 if (find_pc_partial_function (pc, &name, NULL, NULL) == 0)
3743 return 0;
3744
3745 /* If the PC is in __mips16_ret_{d,s}f, this is a library helper function
3746 that we want to ignore. */
3747 return (strcmp (name, "__mips16_ret_sf") == 0
3748 || strcmp (name, "__mips16_ret_df") == 0);
3749}
3750
3751
3752/* Return a location where we can set a breakpoint that will be hit
3753 when an inferior function call returns. This is normally the
3754 program's entry point. Executables that don't have an entry
3755 point (e.g. programs in ROM) should define a symbol __CALL_DUMMY_ADDRESS
3756 whose address is the location where the breakpoint should be placed. */
3757
3758CORE_ADDR
acdb74a0 3759mips_call_dummy_address (void)
c906108c
SS
3760{
3761 struct minimal_symbol *sym;
3762
3763 sym = lookup_minimal_symbol ("__CALL_DUMMY_ADDRESS", NULL, NULL);
3764 if (sym)
3765 return SYMBOL_VALUE_ADDRESS (sym);
3766 else
3767 return entry_point_address ();
3768}
3769
3770
9dcb560c 3771/* If the current gcc for this target does not produce correct debugging
b9a8e3bf
JB
3772 information for float parameters, both prototyped and unprototyped, then
3773 define this macro. This forces gdb to always assume that floats are
3774 passed as doubles and then converted in the callee.
3775
3776 For the mips chip, it appears that the debug info marks the parameters as
3777 floats regardless of whether the function is prototyped, but the actual
3778 values are passed as doubles for the non-prototyped case and floats for
3779 the prototyped case. Thus we choose to make the non-prototyped case work
3780 for C and break the prototyped case, since the non-prototyped case is
3781 probably much more common. (FIXME). */
3782
3783static int
3784mips_coerce_float_to_double (struct type *formal, struct type *actual)
3785{
3786 return current_language->la_language == language_c;
3787}
3788
47a8d4ba
AC
3789/* When debugging a 64 MIPS target running a 32 bit ABI, the size of
3790 the register stored on the stack (32) is different to its real raw
3791 size (64). The below ensures that registers are fetched from the
3792 stack using their ABI size and then stored into the RAW_BUFFER
3793 using their raw size.
3794
3795 The alternative to adding this function would be to add an ABI
3796 macro - REGISTER_STACK_SIZE(). */
3797
3798static void
acdb74a0
AC
3799mips_get_saved_register (char *raw_buffer,
3800 int *optimized,
3801 CORE_ADDR *addrp,
3802 struct frame_info *frame,
3803 int regnum,
3804 enum lval_type *lval)
47a8d4ba
AC
3805{
3806 CORE_ADDR addr;
3807
3808 if (!target_has_registers)
3809 error ("No registers.");
3810
3811 /* Normal systems don't optimize out things with register numbers. */
3812 if (optimized != NULL)
3813 *optimized = 0;
3814 addr = find_saved_register (frame, regnum);
3815 if (addr != 0)
3816 {
3817 if (lval != NULL)
3818 *lval = lval_memory;
3819 if (regnum == SP_REGNUM)
3820 {
3821 if (raw_buffer != NULL)
3822 {
3823 /* Put it back in target format. */
3824 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum),
3825 (LONGEST) addr);
3826 }
3827 if (addrp != NULL)
3828 *addrp = 0;
3829 return;
3830 }
3831 if (raw_buffer != NULL)
3832 {
3833 LONGEST val;
3834 if (regnum < 32)
3835 /* Only MIPS_SAVED_REGSIZE bytes of GP registers are
3836 saved. */
3837 val = read_memory_integer (addr, MIPS_SAVED_REGSIZE);
3838 else
3839 val = read_memory_integer (addr, REGISTER_RAW_SIZE (regnum));
3840 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum), val);
3841 }
3842 }
3843 else
3844 {
3845 if (lval != NULL)
3846 *lval = lval_register;
3847 addr = REGISTER_BYTE (regnum);
3848 if (raw_buffer != NULL)
3849 read_register_gen (regnum, raw_buffer);
3850 }
3851 if (addrp != NULL)
3852 *addrp = addr;
3853}
2acceee2 3854
f7b9e9fc
AC
3855/* Immediately after a function call, return the saved pc.
3856 Can't always go through the frames for this because on some machines
3857 the new frame is not set up until the new function executes
3858 some instructions. */
3859
3860static CORE_ADDR
3861mips_saved_pc_after_call (struct frame_info *frame)
3862{
6c997a34 3863 return read_signed_register (RA_REGNUM);
f7b9e9fc
AC
3864}
3865
3866
88c72b7d
AC
3867/* Convert a dbx stab register number (from `r' declaration) to a gdb
3868 REGNUM */
3869
3870static int
3871mips_stab_reg_to_regnum (int num)
3872{
3873 if (num < 32)
3874 return num;
3875 else
3876 return num + FP0_REGNUM - 38;
3877}
3878
3879/* Convert a ecoff register number to a gdb REGNUM */
3880
3881static int
3882mips_ecoff_reg_to_regnum (int num)
3883{
3884 if (num < 32)
3885 return num;
3886 else
3887 return num + FP0_REGNUM - 32;
3888}
3889
c2d11a7d 3890static struct gdbarch *
acdb74a0
AC
3891mips_gdbarch_init (struct gdbarch_info info,
3892 struct gdbarch_list *arches)
c2d11a7d
JM
3893{
3894 static LONGEST mips_call_dummy_words[] =
3895 {0};
3896 struct gdbarch *gdbarch;
3897 struct gdbarch_tdep *tdep;
3898 int elf_flags;
0dadbba0 3899 enum mips_abi mips_abi;
c2d11a7d 3900
1d06468c
EZ
3901 /* Reset the disassembly info, in case it was set to something
3902 non-default. */
3903 tm_print_insn_info.flavour = bfd_target_unknown_flavour;
3904 tm_print_insn_info.arch = bfd_arch_unknown;
3905 tm_print_insn_info.mach = 0;
3906
c2d11a7d
JM
3907 /* Extract the elf_flags if available */
3908 if (info.abfd != NULL
3909 && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
3910 elf_flags = elf_elfheader (info.abfd)->e_flags;
3911 else
3912 elf_flags = 0;
3913
0dadbba0
AC
3914 /* Check ELF_FLAGS to see if it specifies the ABI being used. */
3915 switch ((elf_flags & EF_MIPS_ABI))
3916 {
3917 case E_MIPS_ABI_O32:
3918 mips_abi = MIPS_ABI_O32;
3919 break;
3920 case E_MIPS_ABI_O64:
3921 mips_abi = MIPS_ABI_O64;
3922 break;
3923 case E_MIPS_ABI_EABI32:
3924 mips_abi = MIPS_ABI_EABI32;
3925 break;
3926 case E_MIPS_ABI_EABI64:
4a7f7ba8 3927 mips_abi = MIPS_ABI_EABI64;
0dadbba0
AC
3928 break;
3929 default:
acdb74a0
AC
3930 if ((elf_flags & EF_MIPS_ABI2))
3931 mips_abi = MIPS_ABI_N32;
3932 else
3933 mips_abi = MIPS_ABI_UNKNOWN;
0dadbba0
AC
3934 break;
3935 }
acdb74a0 3936
bf64bfd6
AC
3937 /* Try the architecture for any hint of the corect ABI */
3938 if (mips_abi == MIPS_ABI_UNKNOWN
3939 && info.bfd_arch_info != NULL
3940 && info.bfd_arch_info->arch == bfd_arch_mips)
3941 {
3942 switch (info.bfd_arch_info->mach)
3943 {
3944 case bfd_mach_mips3900:
3945 mips_abi = MIPS_ABI_EABI32;
3946 break;
3947 case bfd_mach_mips4100:
3948 case bfd_mach_mips5000:
3949 mips_abi = MIPS_ABI_EABI64;
3950 break;
1d06468c
EZ
3951 case bfd_mach_mips8000:
3952 case bfd_mach_mips10000:
3953 mips_abi = MIPS_ABI_N32;
3954 break;
bf64bfd6
AC
3955 }
3956 }
0dadbba0
AC
3957#ifdef MIPS_DEFAULT_ABI
3958 if (mips_abi == MIPS_ABI_UNKNOWN)
3959 mips_abi = MIPS_DEFAULT_ABI;
3960#endif
4b9b3959
AC
3961
3962 if (gdbarch_debug)
3963 {
3964 fprintf_unfiltered (gdb_stdlog,
9ace0497 3965 "mips_gdbarch_init: elf_flags = 0x%08x\n",
4b9b3959 3966 elf_flags);
4b9b3959
AC
3967 fprintf_unfiltered (gdb_stdlog,
3968 "mips_gdbarch_init: mips_abi = %d\n",
3969 mips_abi);
3970 }
0dadbba0 3971
c2d11a7d
JM
3972 /* try to find a pre-existing architecture */
3973 for (arches = gdbarch_list_lookup_by_info (arches, &info);
3974 arches != NULL;
3975 arches = gdbarch_list_lookup_by_info (arches->next, &info))
3976 {
3977 /* MIPS needs to be pedantic about which ABI the object is
3978 using. */
9103eae0 3979 if (gdbarch_tdep (arches->gdbarch)->elf_flags != elf_flags)
c2d11a7d 3980 continue;
9103eae0 3981 if (gdbarch_tdep (arches->gdbarch)->mips_abi != mips_abi)
0dadbba0 3982 continue;
c2d11a7d
JM
3983 return arches->gdbarch;
3984 }
3985
3986 /* Need a new architecture. Fill in a target specific vector. */
3987 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
3988 gdbarch = gdbarch_alloc (&info, tdep);
3989 tdep->elf_flags = elf_flags;
3990
3991 /* Initially set everything according to the ABI. */
3992 set_gdbarch_short_bit (gdbarch, 16);
3993 set_gdbarch_int_bit (gdbarch, 32);
3994 set_gdbarch_float_bit (gdbarch, 32);
3995 set_gdbarch_double_bit (gdbarch, 64);
3996 set_gdbarch_long_double_bit (gdbarch, 64);
0dadbba0 3997 tdep->mips_abi = mips_abi;
1d06468c 3998
0dadbba0 3999 switch (mips_abi)
c2d11a7d 4000 {
0dadbba0 4001 case MIPS_ABI_O32:
acdb74a0 4002 tdep->mips_abi_string = "o32";
a5ea2558 4003 tdep->mips_default_saved_regsize = 4;
0dadbba0 4004 tdep->mips_default_stack_argsize = 4;
c2d11a7d 4005 tdep->mips_fp_register_double = 0;
acdb74a0
AC
4006 tdep->mips_last_arg_regnum = A0_REGNUM + 4 - 1;
4007 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 4 - 1;
0dadbba0 4008 tdep->mips_regs_have_home_p = 1;
5213ab06 4009 tdep->gdb_target_is_mips64 = 0;
4014092b 4010 tdep->default_mask_address_p = 0;
c2d11a7d
JM
4011 set_gdbarch_long_bit (gdbarch, 32);
4012 set_gdbarch_ptr_bit (gdbarch, 32);
4013 set_gdbarch_long_long_bit (gdbarch, 64);
4014 break;
0dadbba0 4015 case MIPS_ABI_O64:
acdb74a0 4016 tdep->mips_abi_string = "o64";
a5ea2558 4017 tdep->mips_default_saved_regsize = 8;
0dadbba0 4018 tdep->mips_default_stack_argsize = 8;
c2d11a7d 4019 tdep->mips_fp_register_double = 1;
acdb74a0
AC
4020 tdep->mips_last_arg_regnum = A0_REGNUM + 4 - 1;
4021 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 4 - 1;
0dadbba0 4022 tdep->mips_regs_have_home_p = 1;
5213ab06 4023 tdep->gdb_target_is_mips64 = 1;
4014092b 4024 tdep->default_mask_address_p = 0;
c2d11a7d
JM
4025 set_gdbarch_long_bit (gdbarch, 32);
4026 set_gdbarch_ptr_bit (gdbarch, 32);
4027 set_gdbarch_long_long_bit (gdbarch, 64);
4028 break;
0dadbba0 4029 case MIPS_ABI_EABI32:
acdb74a0 4030 tdep->mips_abi_string = "eabi32";
a5ea2558 4031 tdep->mips_default_saved_regsize = 4;
0dadbba0 4032 tdep->mips_default_stack_argsize = 4;
c2d11a7d 4033 tdep->mips_fp_register_double = 0;
acdb74a0
AC
4034 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
4035 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 8 - 1;
0dadbba0 4036 tdep->mips_regs_have_home_p = 0;
5213ab06 4037 tdep->gdb_target_is_mips64 = 0;
4014092b 4038 tdep->default_mask_address_p = 0;
c2d11a7d
JM
4039 set_gdbarch_long_bit (gdbarch, 32);
4040 set_gdbarch_ptr_bit (gdbarch, 32);
4041 set_gdbarch_long_long_bit (gdbarch, 64);
4042 break;
0dadbba0 4043 case MIPS_ABI_EABI64:
3259a172 4044 tdep->mips_abi_string = "eabi64";
a5ea2558 4045 tdep->mips_default_saved_regsize = 8;
0dadbba0 4046 tdep->mips_default_stack_argsize = 8;
c2d11a7d 4047 tdep->mips_fp_register_double = 1;
acdb74a0
AC
4048 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
4049 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 8 - 1;
0dadbba0 4050 tdep->mips_regs_have_home_p = 0;
5213ab06 4051 tdep->gdb_target_is_mips64 = 1;
4014092b 4052 tdep->default_mask_address_p = 0;
c2d11a7d
JM
4053 set_gdbarch_long_bit (gdbarch, 64);
4054 set_gdbarch_ptr_bit (gdbarch, 64);
4055 set_gdbarch_long_long_bit (gdbarch, 64);
4056 break;
0dadbba0 4057 case MIPS_ABI_N32:
acdb74a0 4058 tdep->mips_abi_string = "n32";
0dadbba0
AC
4059 tdep->mips_default_saved_regsize = 4;
4060 tdep->mips_default_stack_argsize = 8;
4061 tdep->mips_fp_register_double = 1;
acdb74a0
AC
4062 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
4063 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 8 - 1;
0dadbba0 4064 tdep->mips_regs_have_home_p = 0;
5213ab06 4065 tdep->gdb_target_is_mips64 = 0;
4014092b 4066 tdep->default_mask_address_p = 0;
0dadbba0
AC
4067 set_gdbarch_long_bit (gdbarch, 32);
4068 set_gdbarch_ptr_bit (gdbarch, 32);
4069 set_gdbarch_long_long_bit (gdbarch, 64);
1d06468c
EZ
4070
4071 /* Set up the disassembler info, so that we get the right
4072 register names from libopcodes. */
4073 tm_print_insn_info.flavour = bfd_target_elf_flavour;
4074 tm_print_insn_info.arch = bfd_arch_mips;
4075 if (info.bfd_arch_info != NULL
4076 && info.bfd_arch_info->arch == bfd_arch_mips
4077 && info.bfd_arch_info->mach)
4078 tm_print_insn_info.mach = info.bfd_arch_info->mach;
4079 else
4080 tm_print_insn_info.mach = bfd_mach_mips8000;
0dadbba0 4081 break;
c2d11a7d 4082 default:
acdb74a0 4083 tdep->mips_abi_string = "default";
a5ea2558 4084 tdep->mips_default_saved_regsize = MIPS_REGSIZE;
0dadbba0 4085 tdep->mips_default_stack_argsize = MIPS_REGSIZE;
c2d11a7d 4086 tdep->mips_fp_register_double = (REGISTER_VIRTUAL_SIZE (FP0_REGNUM) == 8);
acdb74a0
AC
4087 tdep->mips_last_arg_regnum = A0_REGNUM + 8 - 1;
4088 tdep->mips_last_fp_arg_regnum = FPA0_REGNUM + 8 - 1;
0dadbba0 4089 tdep->mips_regs_have_home_p = 1;
5213ab06 4090 tdep->gdb_target_is_mips64 = 0;
4014092b 4091 tdep->default_mask_address_p = 0;
c2d11a7d
JM
4092 set_gdbarch_long_bit (gdbarch, 32);
4093 set_gdbarch_ptr_bit (gdbarch, 32);
4094 set_gdbarch_long_long_bit (gdbarch, 64);
4095 break;
4096 }
4097
a5ea2558
AC
4098 /* FIXME: jlarmour/2000-04-07: There *is* a flag EF_MIPS_32BIT_MODE
4099 that could indicate -gp32 BUT gas/config/tc-mips.c contains the
4100 comment:
4101
4102 ``We deliberately don't allow "-gp32" to set the MIPS_32BITMODE
4103 flag in object files because to do so would make it impossible to
4104 link with libraries compiled without "-gp32". This is
4105 unnecessarily restrictive.
4106
4107 We could solve this problem by adding "-gp32" multilibs to gcc,
4108 but to set this flag before gcc is built with such multilibs will
4109 break too many systems.''
4110
4111 But even more unhelpfully, the default linker output target for
4112 mips64-elf is elf32-bigmips, and has EF_MIPS_32BIT_MODE set, even
4113 for 64-bit programs - you need to change the ABI to change this,
4114 and not all gcc targets support that currently. Therefore using
4115 this flag to detect 32-bit mode would do the wrong thing given
4116 the current gcc - it would make GDB treat these 64-bit programs
4117 as 32-bit programs by default. */
4118
c2d11a7d
JM
4119 /* enable/disable the MIPS FPU */
4120 if (!mips_fpu_type_auto)
4121 tdep->mips_fpu_type = mips_fpu_type;
4122 else if (info.bfd_arch_info != NULL
4123 && info.bfd_arch_info->arch == bfd_arch_mips)
4124 switch (info.bfd_arch_info->mach)
4125 {
b0069a17 4126 case bfd_mach_mips3900:
c2d11a7d 4127 case bfd_mach_mips4100:
ed9a39eb 4128 case bfd_mach_mips4111:
c2d11a7d
JM
4129 tdep->mips_fpu_type = MIPS_FPU_NONE;
4130 break;
bf64bfd6
AC
4131 case bfd_mach_mips4650:
4132 tdep->mips_fpu_type = MIPS_FPU_SINGLE;
4133 break;
c2d11a7d
JM
4134 default:
4135 tdep->mips_fpu_type = MIPS_FPU_DOUBLE;
4136 break;
4137 }
4138 else
4139 tdep->mips_fpu_type = MIPS_FPU_DOUBLE;
4140
4141 /* MIPS version of register names. NOTE: At present the MIPS
4142 register name management is part way between the old -
4143 #undef/#define REGISTER_NAMES and the new REGISTER_NAME(nr).
4144 Further work on it is required. */
4145 set_gdbarch_register_name (gdbarch, mips_register_name);
6c997a34 4146 set_gdbarch_read_pc (gdbarch, mips_read_pc);
c2d11a7d
JM
4147 set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
4148 set_gdbarch_read_fp (gdbarch, generic_target_read_fp);
4149 set_gdbarch_write_fp (gdbarch, generic_target_write_fp);
4150 set_gdbarch_read_sp (gdbarch, generic_target_read_sp);
4151 set_gdbarch_write_sp (gdbarch, generic_target_write_sp);
4152
875e1767
AC
4153 /* Add/remove bits from an address. The MIPS needs be careful to
4154 ensure that all 32 bit addresses are sign extended to 64 bits. */
4155 set_gdbarch_addr_bits_remove (gdbarch, mips_addr_bits_remove);
4156
10312cc4
AC
4157 /* There's a mess in stack frame creation. See comments in
4158 blockframe.c near reference to INIT_FRAME_PC_FIRST. */
4159 set_gdbarch_init_frame_pc_first (gdbarch, mips_init_frame_pc_first);
7824d2f2 4160 set_gdbarch_init_frame_pc (gdbarch, init_frame_pc_noop);
10312cc4 4161
88c72b7d
AC
4162 /* Map debug register numbers onto internal register numbers. */
4163 set_gdbarch_stab_reg_to_regnum (gdbarch, mips_stab_reg_to_regnum);
4164 set_gdbarch_ecoff_reg_to_regnum (gdbarch, mips_ecoff_reg_to_regnum);
4165
c2d11a7d
JM
4166 /* Initialize a frame */
4167 set_gdbarch_init_extra_frame_info (gdbarch, mips_init_extra_frame_info);
4168
4169 /* MIPS version of CALL_DUMMY */
4170
4171 set_gdbarch_call_dummy_p (gdbarch, 1);
4172 set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
4173 set_gdbarch_use_generic_dummy_frames (gdbarch, 0);
4174 set_gdbarch_call_dummy_location (gdbarch, AT_ENTRY_POINT);
4175 set_gdbarch_call_dummy_address (gdbarch, mips_call_dummy_address);
4176 set_gdbarch_call_dummy_start_offset (gdbarch, 0);
4177 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
4178 set_gdbarch_call_dummy_breakpoint_offset (gdbarch, 0);
4179 set_gdbarch_call_dummy_length (gdbarch, 0);
4180 set_gdbarch_pc_in_call_dummy (gdbarch, pc_in_call_dummy_at_entry_point);
4181 set_gdbarch_call_dummy_words (gdbarch, mips_call_dummy_words);
4182 set_gdbarch_sizeof_call_dummy_words (gdbarch, sizeof (mips_call_dummy_words));
4183 set_gdbarch_push_return_address (gdbarch, mips_push_return_address);
4184 set_gdbarch_push_arguments (gdbarch, mips_push_arguments);
4185 set_gdbarch_register_convertible (gdbarch, generic_register_convertible_not);
b9a8e3bf 4186 set_gdbarch_coerce_float_to_double (gdbarch, mips_coerce_float_to_double);
c2d11a7d 4187
c4093a6a 4188 set_gdbarch_frame_chain_valid (gdbarch, func_frame_chain_valid);
47a8d4ba 4189 set_gdbarch_get_saved_register (gdbarch, mips_get_saved_register);
c2d11a7d 4190
f7b9e9fc
AC
4191 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
4192 set_gdbarch_breakpoint_from_pc (gdbarch, mips_breakpoint_from_pc);
4193 set_gdbarch_decr_pc_after_break (gdbarch, 0);
4194 set_gdbarch_ieee_float (gdbarch, 1);
4195
4196 set_gdbarch_skip_prologue (gdbarch, mips_skip_prologue);
4197 set_gdbarch_saved_pc_after_call (gdbarch, mips_saved_pc_after_call);
4198
4b9b3959
AC
4199 return gdbarch;
4200}
4201
4202static void
4203mips_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
4204{
4205 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
4206 if (tdep != NULL)
c2d11a7d 4207 {
acdb74a0
AC
4208 int ef_mips_arch;
4209 int ef_mips_32bitmode;
4210 /* determine the ISA */
4211 switch (tdep->elf_flags & EF_MIPS_ARCH)
4212 {
4213 case E_MIPS_ARCH_1:
4214 ef_mips_arch = 1;
4215 break;
4216 case E_MIPS_ARCH_2:
4217 ef_mips_arch = 2;
4218 break;
4219 case E_MIPS_ARCH_3:
4220 ef_mips_arch = 3;
4221 break;
4222 case E_MIPS_ARCH_4:
93d56215 4223 ef_mips_arch = 4;
acdb74a0
AC
4224 break;
4225 default:
93d56215 4226 ef_mips_arch = 0;
acdb74a0
AC
4227 break;
4228 }
4229 /* determine the size of a pointer */
4230 ef_mips_32bitmode = (tdep->elf_flags & EF_MIPS_32BITMODE);
4b9b3959
AC
4231 fprintf_unfiltered (file,
4232 "mips_dump_tdep: tdep->elf_flags = 0x%x\n",
0dadbba0 4233 tdep->elf_flags);
4b9b3959 4234 fprintf_unfiltered (file,
acdb74a0
AC
4235 "mips_dump_tdep: ef_mips_32bitmode = %d\n",
4236 ef_mips_32bitmode);
4237 fprintf_unfiltered (file,
4238 "mips_dump_tdep: ef_mips_arch = %d\n",
4239 ef_mips_arch);
4240 fprintf_unfiltered (file,
4241 "mips_dump_tdep: tdep->mips_abi = %d (%s)\n",
4242 tdep->mips_abi,
4243 tdep->mips_abi_string);
4014092b
AC
4244 fprintf_unfiltered (file,
4245 "mips_dump_tdep: mips_mask_address_p() %d (default %d)\n",
4246 mips_mask_address_p (),
4247 tdep->default_mask_address_p);
c2d11a7d 4248 }
4b9b3959
AC
4249 fprintf_unfiltered (file,
4250 "mips_dump_tdep: FP_REGISTER_DOUBLE = %d\n",
4251 FP_REGISTER_DOUBLE);
4252 fprintf_unfiltered (file,
4253 "mips_dump_tdep: MIPS_DEFAULT_FPU_TYPE = %d (%s)\n",
4254 MIPS_DEFAULT_FPU_TYPE,
4255 (MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_NONE ? "none"
4256 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_SINGLE ? "single"
4257 : MIPS_DEFAULT_FPU_TYPE == MIPS_FPU_DOUBLE ? "double"
4258 : "???"));
4259 fprintf_unfiltered (file,
4260 "mips_dump_tdep: MIPS_EABI = %d\n",
4261 MIPS_EABI);
4262 fprintf_unfiltered (file,
acdb74a0
AC
4263 "mips_dump_tdep: MIPS_LAST_FP_ARG_REGNUM = %d (%d regs)\n",
4264 MIPS_LAST_FP_ARG_REGNUM,
4265 MIPS_LAST_FP_ARG_REGNUM - FPA0_REGNUM + 1);
4b9b3959
AC
4266 fprintf_unfiltered (file,
4267 "mips_dump_tdep: MIPS_FPU_TYPE = %d (%s)\n",
4268 MIPS_FPU_TYPE,
4269 (MIPS_FPU_TYPE == MIPS_FPU_NONE ? "none"
4270 : MIPS_FPU_TYPE == MIPS_FPU_SINGLE ? "single"
4271 : MIPS_FPU_TYPE == MIPS_FPU_DOUBLE ? "double"
4272 : "???"));
4273 fprintf_unfiltered (file,
4274 "mips_dump_tdep: MIPS_DEFAULT_SAVED_REGSIZE = %d\n",
4275 MIPS_DEFAULT_SAVED_REGSIZE);
4b9b3959
AC
4276 fprintf_unfiltered (file,
4277 "mips_dump_tdep: FP_REGISTER_DOUBLE = %d\n",
4278 FP_REGISTER_DOUBLE);
4279 fprintf_unfiltered (file,
4280 "mips_dump_tdep: MIPS_REGS_HAVE_HOME_P = %d\n",
4281 MIPS_REGS_HAVE_HOME_P);
4282 fprintf_unfiltered (file,
4283 "mips_dump_tdep: MIPS_DEFAULT_STACK_ARGSIZE = %d\n",
4284 MIPS_DEFAULT_STACK_ARGSIZE);
4285 fprintf_unfiltered (file,
4286 "mips_dump_tdep: MIPS_STACK_ARGSIZE = %d\n",
4287 MIPS_STACK_ARGSIZE);
4288 fprintf_unfiltered (file,
4289 "mips_dump_tdep: MIPS_REGSIZE = %d\n",
4290 MIPS_REGSIZE);
2475bac3
AC
4291 fprintf_unfiltered (file,
4292 "mips_dump_tdep: A0_REGNUM = %d\n",
4293 A0_REGNUM);
4294 fprintf_unfiltered (file,
4295 "mips_dump_tdep: ADDR_BITS_REMOVE # %s\n",
4296 XSTRING (ADDR_BITS_REMOVE(ADDR)));
4297 fprintf_unfiltered (file,
4298 "mips_dump_tdep: ATTACH_DETACH # %s\n",
4299 XSTRING (ATTACH_DETACH));
4300 fprintf_unfiltered (file,
4301 "mips_dump_tdep: BADVADDR_REGNUM = %d\n",
4302 BADVADDR_REGNUM);
4303 fprintf_unfiltered (file,
4304 "mips_dump_tdep: BIG_BREAKPOINT = delete?\n");
4305 fprintf_unfiltered (file,
4306 "mips_dump_tdep: CAUSE_REGNUM = %d\n",
4307 CAUSE_REGNUM);
4308 fprintf_unfiltered (file,
4309 "mips_dump_tdep: CPLUS_MARKER = %c\n",
4310 CPLUS_MARKER);
4311 fprintf_unfiltered (file,
4312 "mips_dump_tdep: DEFAULT_MIPS_TYPE = %s\n",
4313 DEFAULT_MIPS_TYPE);
4314 fprintf_unfiltered (file,
4315 "mips_dump_tdep: DO_REGISTERS_INFO # %s\n",
4316 XSTRING (DO_REGISTERS_INFO));
4317 fprintf_unfiltered (file,
4318 "mips_dump_tdep: DWARF_REG_TO_REGNUM # %s\n",
4319 XSTRING (DWARF_REG_TO_REGNUM (REGNUM)));
4320 fprintf_unfiltered (file,
4321 "mips_dump_tdep: ECOFF_REG_TO_REGNUM # %s\n",
4322 XSTRING (ECOFF_REG_TO_REGNUM (REGNUM)));
4323 fprintf_unfiltered (file,
4324 "mips_dump_tdep: ELF_MAKE_MSYMBOL_SPECIAL # %s\n",
4325 XSTRING (ELF_MAKE_MSYMBOL_SPECIAL (SYM, MSYM)));
4326 fprintf_unfiltered (file,
4327 "mips_dump_tdep: FCRCS_REGNUM = %d\n",
4328 FCRCS_REGNUM);
4329 fprintf_unfiltered (file,
4330 "mips_dump_tdep: FCRIR_REGNUM = %d\n",
4331 FCRIR_REGNUM);
4332 fprintf_unfiltered (file,
4333 "mips_dump_tdep: FIRST_EMBED_REGNUM = %d\n",
4334 FIRST_EMBED_REGNUM);
4335 fprintf_unfiltered (file,
4336 "mips_dump_tdep: FPA0_REGNUM = %d\n",
4337 FPA0_REGNUM);
4338 fprintf_unfiltered (file,
4339 "mips_dump_tdep: GDB_TARGET_IS_MIPS64 = %d\n",
4340 GDB_TARGET_IS_MIPS64);
4341 fprintf_unfiltered (file,
4342 "mips_dump_tdep: GDB_TARGET_MASK_DISAS_PC # %s\n",
4343 XSTRING (GDB_TARGET_MASK_DISAS_PC (PC)));
4344 fprintf_unfiltered (file,
4345 "mips_dump_tdep: GDB_TARGET_UNMASK_DISAS_PC # %s\n",
4346 XSTRING (GDB_TARGET_UNMASK_DISAS_PC (PC)));
4347 fprintf_unfiltered (file,
4348 "mips_dump_tdep: GEN_REG_SAVE_MASK = %d\n",
4349 GEN_REG_SAVE_MASK);
4350 fprintf_unfiltered (file,
4351 "mips_dump_tdep: HAVE_NONSTEPPABLE_WATCHPOINT # %s\n",
4352 XSTRING (HAVE_NONSTEPPABLE_WATCHPOINT));
4353 fprintf_unfiltered (file,
4354 "mips_dump_tdep: HI_REGNUM = %d\n",
4355 HI_REGNUM);
4356 fprintf_unfiltered (file,
4357 "mips_dump_tdep: IDT_BIG_BREAKPOINT = delete?\n");
4358 fprintf_unfiltered (file,
4359 "mips_dump_tdep: IDT_LITTLE_BREAKPOINT = delete?\n");
4360 fprintf_unfiltered (file,
4361 "mips_dump_tdep: IGNORE_HELPER_CALL # %s\n",
4362 XSTRING (IGNORE_HELPER_CALL (PC)));
2475bac3
AC
4363 fprintf_unfiltered (file,
4364 "mips_dump_tdep: IN_SIGTRAMP # %s\n",
4365 XSTRING (IN_SIGTRAMP (PC, NAME)));
4366 fprintf_unfiltered (file,
4367 "mips_dump_tdep: IN_SOLIB_CALL_TRAMPOLINE # %s\n",
4368 XSTRING (IN_SOLIB_CALL_TRAMPOLINE (PC, NAME)));
4369 fprintf_unfiltered (file,
4370 "mips_dump_tdep: IN_SOLIB_RETURN_TRAMPOLINE # %s\n",
4371 XSTRING (IN_SOLIB_RETURN_TRAMPOLINE (PC, NAME)));
4372 fprintf_unfiltered (file,
4373 "mips_dump_tdep: IS_MIPS16_ADDR = FIXME!\n");
4374 fprintf_unfiltered (file,
4375 "mips_dump_tdep: LAST_EMBED_REGNUM = %d\n",
4376 LAST_EMBED_REGNUM);
4377 fprintf_unfiltered (file,
4378 "mips_dump_tdep: LITTLE_BREAKPOINT = delete?\n");
4379 fprintf_unfiltered (file,
4380 "mips_dump_tdep: LO_REGNUM = %d\n",
4381 LO_REGNUM);
4382#ifdef MACHINE_CPROC_FP_OFFSET
4383 fprintf_unfiltered (file,
4384 "mips_dump_tdep: MACHINE_CPROC_FP_OFFSET = %d\n",
4385 MACHINE_CPROC_FP_OFFSET);
4386#endif
4387#ifdef MACHINE_CPROC_PC_OFFSET
4388 fprintf_unfiltered (file,
4389 "mips_dump_tdep: MACHINE_CPROC_PC_OFFSET = %d\n",
4390 MACHINE_CPROC_PC_OFFSET);
4391#endif
4392#ifdef MACHINE_CPROC_SP_OFFSET
4393 fprintf_unfiltered (file,
4394 "mips_dump_tdep: MACHINE_CPROC_SP_OFFSET = %d\n",
4395 MACHINE_CPROC_SP_OFFSET);
4396#endif
4397 fprintf_unfiltered (file,
4398 "mips_dump_tdep: MAKE_MIPS16_ADDR = FIXME!\n");
4399 fprintf_unfiltered (file,
4400 "mips_dump_tdep: MIPS16_BIG_BREAKPOINT = delete?\n");
4401 fprintf_unfiltered (file,
4402 "mips_dump_tdep: MIPS16_INSTLEN = %d\n",
4403 MIPS16_INSTLEN);
4404 fprintf_unfiltered (file,
4405 "mips_dump_tdep: MIPS16_LITTLE_BREAKPOINT = delete?\n");
4406 fprintf_unfiltered (file,
4407 "mips_dump_tdep: MIPS_DEFAULT_ABI = FIXME!\n");
4408 fprintf_unfiltered (file,
4409 "mips_dump_tdep: MIPS_EFI_SYMBOL_NAME = multi-arch!!\n");
4410 fprintf_unfiltered (file,
4411 "mips_dump_tdep: MIPS_INSTLEN = %d\n",
4412 MIPS_INSTLEN);
4413 fprintf_unfiltered (file,
acdb74a0
AC
4414 "mips_dump_tdep: MIPS_LAST_ARG_REGNUM = %d (%d regs)\n",
4415 MIPS_LAST_ARG_REGNUM,
4416 MIPS_LAST_ARG_REGNUM - A0_REGNUM + 1);
2475bac3
AC
4417 fprintf_unfiltered (file,
4418 "mips_dump_tdep: MIPS_NUMREGS = %d\n",
4419 MIPS_NUMREGS);
4420 fprintf_unfiltered (file,
4421 "mips_dump_tdep: MIPS_REGISTER_NAMES = delete?\n");
4422 fprintf_unfiltered (file,
4423 "mips_dump_tdep: MIPS_SAVED_REGSIZE = %d\n",
4424 MIPS_SAVED_REGSIZE);
4425 fprintf_unfiltered (file,
4426 "mips_dump_tdep: MSYMBOL_IS_SPECIAL = function?\n");
4427 fprintf_unfiltered (file,
4428 "mips_dump_tdep: MSYMBOL_SIZE # %s\n",
4429 XSTRING (MSYMBOL_SIZE (MSYM)));
4430 fprintf_unfiltered (file,
4431 "mips_dump_tdep: OP_LDFPR = used?\n");
4432 fprintf_unfiltered (file,
4433 "mips_dump_tdep: OP_LDGPR = used?\n");
4434 fprintf_unfiltered (file,
4435 "mips_dump_tdep: PMON_BIG_BREAKPOINT = delete?\n");
4436 fprintf_unfiltered (file,
4437 "mips_dump_tdep: PMON_LITTLE_BREAKPOINT = delete?\n");
4438 fprintf_unfiltered (file,
4439 "mips_dump_tdep: PRID_REGNUM = %d\n",
4440 PRID_REGNUM);
4441 fprintf_unfiltered (file,
4442 "mips_dump_tdep: PRINT_EXTRA_FRAME_INFO # %s\n",
4443 XSTRING (PRINT_EXTRA_FRAME_INFO (FRAME)));
4444 fprintf_unfiltered (file,
4445 "mips_dump_tdep: PROC_DESC_IS_DUMMY = function?\n");
4446 fprintf_unfiltered (file,
4447 "mips_dump_tdep: PROC_FRAME_ADJUST = function?\n");
4448 fprintf_unfiltered (file,
4449 "mips_dump_tdep: PROC_FRAME_OFFSET = function?\n");
4450 fprintf_unfiltered (file,
4451 "mips_dump_tdep: PROC_FRAME_REG = function?\n");
4452 fprintf_unfiltered (file,
4453 "mips_dump_tdep: PROC_FREG_MASK = function?\n");
4454 fprintf_unfiltered (file,
4455 "mips_dump_tdep: PROC_FREG_OFFSET = function?\n");
4456 fprintf_unfiltered (file,
4457 "mips_dump_tdep: PROC_HIGH_ADDR = function?\n");
4458 fprintf_unfiltered (file,
4459 "mips_dump_tdep: PROC_LOW_ADDR = function?\n");
4460 fprintf_unfiltered (file,
4461 "mips_dump_tdep: PROC_PC_REG = function?\n");
4462 fprintf_unfiltered (file,
4463 "mips_dump_tdep: PROC_REG_MASK = function?\n");
4464 fprintf_unfiltered (file,
4465 "mips_dump_tdep: PROC_REG_OFFSET = function?\n");
4466 fprintf_unfiltered (file,
4467 "mips_dump_tdep: PROC_SYMBOL = function?\n");
4468 fprintf_unfiltered (file,
4469 "mips_dump_tdep: PS_REGNUM = %d\n",
4470 PS_REGNUM);
4471 fprintf_unfiltered (file,
4472 "mips_dump_tdep: PUSH_FP_REGNUM = %d\n",
4473 PUSH_FP_REGNUM);
4474 fprintf_unfiltered (file,
4475 "mips_dump_tdep: RA_REGNUM = %d\n",
4476 RA_REGNUM);
4477 fprintf_unfiltered (file,
4478 "mips_dump_tdep: REGISTER_CONVERT_FROM_TYPE # %s\n",
4479 XSTRING (REGISTER_CONVERT_FROM_TYPE (REGNUM, VALTYPE, RAW_BUFFER)));
4480 fprintf_unfiltered (file,
4481 "mips_dump_tdep: REGISTER_CONVERT_TO_TYPE # %s\n",
4482 XSTRING (REGISTER_CONVERT_TO_TYPE (REGNUM, VALTYPE, RAW_BUFFER)));
4483 fprintf_unfiltered (file,
4484 "mips_dump_tdep: REGISTER_NAMES = delete?\n");
4485 fprintf_unfiltered (file,
4486 "mips_dump_tdep: ROUND_DOWN = function?\n");
4487 fprintf_unfiltered (file,
4488 "mips_dump_tdep: ROUND_UP = function?\n");
4489#ifdef SAVED_BYTES
4490 fprintf_unfiltered (file,
4491 "mips_dump_tdep: SAVED_BYTES = %d\n",
4492 SAVED_BYTES);
4493#endif
4494#ifdef SAVED_FP
4495 fprintf_unfiltered (file,
4496 "mips_dump_tdep: SAVED_FP = %d\n",
4497 SAVED_FP);
4498#endif
4499#ifdef SAVED_PC
4500 fprintf_unfiltered (file,
4501 "mips_dump_tdep: SAVED_PC = %d\n",
4502 SAVED_PC);
4503#endif
4504 fprintf_unfiltered (file,
4505 "mips_dump_tdep: SETUP_ARBITRARY_FRAME # %s\n",
4506 XSTRING (SETUP_ARBITRARY_FRAME (NUMARGS, ARGS)));
4507 fprintf_unfiltered (file,
4508 "mips_dump_tdep: SET_PROC_DESC_IS_DUMMY = function?\n");
4509 fprintf_unfiltered (file,
4510 "mips_dump_tdep: SIGFRAME_BASE = %d\n",
4511 SIGFRAME_BASE);
4512 fprintf_unfiltered (file,
4513 "mips_dump_tdep: SIGFRAME_FPREGSAVE_OFF = %d\n",
4514 SIGFRAME_FPREGSAVE_OFF);
4515 fprintf_unfiltered (file,
4516 "mips_dump_tdep: SIGFRAME_PC_OFF = %d\n",
4517 SIGFRAME_PC_OFF);
4518 fprintf_unfiltered (file,
4519 "mips_dump_tdep: SIGFRAME_REGSAVE_OFF = %d\n",
4520 SIGFRAME_REGSAVE_OFF);
4521 fprintf_unfiltered (file,
4522 "mips_dump_tdep: SIGFRAME_REG_SIZE = %d\n",
4523 SIGFRAME_REG_SIZE);
4524 fprintf_unfiltered (file,
4525 "mips_dump_tdep: SKIP_TRAMPOLINE_CODE # %s\n",
4526 XSTRING (SKIP_TRAMPOLINE_CODE (PC)));
4527 fprintf_unfiltered (file,
4528 "mips_dump_tdep: SOFTWARE_SINGLE_STEP # %s\n",
4529 XSTRING (SOFTWARE_SINGLE_STEP (SIG, BP_P)));
4530 fprintf_unfiltered (file,
b0ed3589
AC
4531 "mips_dump_tdep: SOFTWARE_SINGLE_STEP_P () = %d\n",
4532 SOFTWARE_SINGLE_STEP_P ());
2475bac3
AC
4533 fprintf_unfiltered (file,
4534 "mips_dump_tdep: STAB_REG_TO_REGNUM # %s\n",
4535 XSTRING (STAB_REG_TO_REGNUM (REGNUM)));
4536#ifdef STACK_END_ADDR
4537 fprintf_unfiltered (file,
4538 "mips_dump_tdep: STACK_END_ADDR = %d\n",
4539 STACK_END_ADDR);
4540#endif
4541 fprintf_unfiltered (file,
4542 "mips_dump_tdep: STEP_SKIPS_DELAY # %s\n",
4543 XSTRING (STEP_SKIPS_DELAY (PC)));
4544 fprintf_unfiltered (file,
4545 "mips_dump_tdep: STEP_SKIPS_DELAY_P = %d\n",
4546 STEP_SKIPS_DELAY_P);
4547 fprintf_unfiltered (file,
4548 "mips_dump_tdep: STOPPED_BY_WATCHPOINT # %s\n",
4549 XSTRING (STOPPED_BY_WATCHPOINT (WS)));
4550 fprintf_unfiltered (file,
4551 "mips_dump_tdep: T9_REGNUM = %d\n",
4552 T9_REGNUM);
4553 fprintf_unfiltered (file,
4554 "mips_dump_tdep: TABULAR_REGISTER_OUTPUT = used?\n");
4555 fprintf_unfiltered (file,
4556 "mips_dump_tdep: TARGET_CAN_USE_HARDWARE_WATCHPOINT # %s\n",
4557 XSTRING (TARGET_CAN_USE_HARDWARE_WATCHPOINT (TYPE,CNT,OTHERTYPE)));
4558 fprintf_unfiltered (file,
4559 "mips_dump_tdep: TARGET_HAS_HARDWARE_WATCHPOINTS # %s\n",
4560 XSTRING (TARGET_HAS_HARDWARE_WATCHPOINTS));
4561 fprintf_unfiltered (file,
4562 "mips_dump_tdep: TARGET_MIPS = used?\n");
4563 fprintf_unfiltered (file,
4564 "mips_dump_tdep: TM_PRINT_INSN_MACH # %s\n",
4565 XSTRING (TM_PRINT_INSN_MACH));
4566#ifdef TRACE_CLEAR
4567 fprintf_unfiltered (file,
4568 "mips_dump_tdep: TRACE_CLEAR # %s\n",
4569 XSTRING (TRACE_CLEAR (THREAD, STATE)));
4570#endif
4571#ifdef TRACE_FLAVOR
4572 fprintf_unfiltered (file,
4573 "mips_dump_tdep: TRACE_FLAVOR = %d\n",
4574 TRACE_FLAVOR);
4575#endif
4576#ifdef TRACE_FLAVOR_SIZE
4577 fprintf_unfiltered (file,
4578 "mips_dump_tdep: TRACE_FLAVOR_SIZE = %d\n",
4579 TRACE_FLAVOR_SIZE);
4580#endif
4581#ifdef TRACE_SET
4582 fprintf_unfiltered (file,
4583 "mips_dump_tdep: TRACE_SET # %s\n",
4584 XSTRING (TRACE_SET (X,STATE)));
4585#endif
4586 fprintf_unfiltered (file,
4587 "mips_dump_tdep: UNMAKE_MIPS16_ADDR = function?\n");
4588#ifdef UNUSED_REGNUM
4589 fprintf_unfiltered (file,
4590 "mips_dump_tdep: UNUSED_REGNUM = %d\n",
4591 UNUSED_REGNUM);
4592#endif
4593 fprintf_unfiltered (file,
4594 "mips_dump_tdep: V0_REGNUM = %d\n",
4595 V0_REGNUM);
4596 fprintf_unfiltered (file,
4597 "mips_dump_tdep: VM_MIN_ADDRESS = %ld\n",
4598 (long) VM_MIN_ADDRESS);
4599#ifdef VX_NUM_REGS
4600 fprintf_unfiltered (file,
4601 "mips_dump_tdep: VX_NUM_REGS = %d (used?)\n",
4602 VX_NUM_REGS);
4603#endif
4604 fprintf_unfiltered (file,
4605 "mips_dump_tdep: ZERO_REGNUM = %d\n",
4606 ZERO_REGNUM);
4607 fprintf_unfiltered (file,
4608 "mips_dump_tdep: _PROC_MAGIC_ = %d\n",
4609 _PROC_MAGIC_);
c2d11a7d
JM
4610}
4611
c906108c 4612void
acdb74a0 4613_initialize_mips_tdep (void)
c906108c
SS
4614{
4615 static struct cmd_list_element *mipsfpulist = NULL;
4616 struct cmd_list_element *c;
4617
4b9b3959 4618 gdbarch_register (bfd_arch_mips, mips_gdbarch_init, mips_dump_tdep);
c5aa993b 4619 if (!tm_print_insn) /* Someone may have already set it */
c906108c
SS
4620 tm_print_insn = gdb_print_insn_mips;
4621
a5ea2558
AC
4622 /* Add root prefix command for all "set mips"/"show mips" commands */
4623 add_prefix_cmd ("mips", no_class, set_mips_command,
4624 "Various MIPS specific commands.",
4625 &setmipscmdlist, "set mips ", 0, &setlist);
4626
4627 add_prefix_cmd ("mips", no_class, show_mips_command,
4628 "Various MIPS specific commands.",
4629 &showmipscmdlist, "show mips ", 0, &showlist);
4630
4631 /* Allow the user to override the saved register size. */
4632 add_show_from_set (add_set_enum_cmd ("saved-gpreg-size",
1ed2a135
AC
4633 class_obscure,
4634 size_enums,
4635 &mips_saved_regsize_string, "\
a5ea2558
AC
4636Set size of general purpose registers saved on the stack.\n\
4637This option can be set to one of:\n\
4638 32 - Force GDB to treat saved GP registers as 32-bit\n\
4639 64 - Force GDB to treat saved GP registers as 64-bit\n\
4640 auto - Allow GDB to use the target's default setting or autodetect the\n\
4641 saved GP register size from information contained in the executable.\n\
4642 (default: auto)",
1ed2a135 4643 &setmipscmdlist),
a5ea2558
AC
4644 &showmipscmdlist);
4645
d929b26f
AC
4646 /* Allow the user to override the argument stack size. */
4647 add_show_from_set (add_set_enum_cmd ("stack-arg-size",
4648 class_obscure,
4649 size_enums,
1ed2a135 4650 &mips_stack_argsize_string, "\
d929b26f
AC
4651Set the amount of stack space reserved for each argument.\n\
4652This option can be set to one of:\n\
4653 32 - Force GDB to allocate 32-bit chunks per argument\n\
4654 64 - Force GDB to allocate 64-bit chunks per argument\n\
4655 auto - Allow GDB to determine the correct setting from the current\n\
4656 target and executable (default)",
4657 &setmipscmdlist),
4658 &showmipscmdlist);
4659
c906108c
SS
4660 /* Let the user turn off floating point and set the fence post for
4661 heuristic_proc_start. */
4662
4663 add_prefix_cmd ("mipsfpu", class_support, set_mipsfpu_command,
4664 "Set use of MIPS floating-point coprocessor.",
4665 &mipsfpulist, "set mipsfpu ", 0, &setlist);
4666 add_cmd ("single", class_support, set_mipsfpu_single_command,
4667 "Select single-precision MIPS floating-point coprocessor.",
4668 &mipsfpulist);
4669 add_cmd ("double", class_support, set_mipsfpu_double_command,
8e1a459b 4670 "Select double-precision MIPS floating-point coprocessor.",
c906108c
SS
4671 &mipsfpulist);
4672 add_alias_cmd ("on", "double", class_support, 1, &mipsfpulist);
4673 add_alias_cmd ("yes", "double", class_support, 1, &mipsfpulist);
4674 add_alias_cmd ("1", "double", class_support, 1, &mipsfpulist);
4675 add_cmd ("none", class_support, set_mipsfpu_none_command,
4676 "Select no MIPS floating-point coprocessor.",
4677 &mipsfpulist);
4678 add_alias_cmd ("off", "none", class_support, 1, &mipsfpulist);
4679 add_alias_cmd ("no", "none", class_support, 1, &mipsfpulist);
4680 add_alias_cmd ("0", "none", class_support, 1, &mipsfpulist);
4681 add_cmd ("auto", class_support, set_mipsfpu_auto_command,
4682 "Select MIPS floating-point coprocessor automatically.",
4683 &mipsfpulist);
4684 add_cmd ("mipsfpu", class_support, show_mipsfpu_command,
4685 "Show current use of MIPS floating-point coprocessor target.",
4686 &showlist);
4687
c2d11a7d 4688#if !GDB_MULTI_ARCH
c906108c
SS
4689 c = add_set_cmd ("processor", class_support, var_string_noescape,
4690 (char *) &tmp_mips_processor_type,
4691 "Set the type of MIPS processor in use.\n\
4692Set this to be able to access processor-type-specific registers.\n\
4693",
4694 &setlist);
4695 c->function.cfunc = mips_set_processor_type_command;
4696 c = add_show_from_set (c, &showlist);
4697 c->function.cfunc = mips_show_processor_type_command;
4698
4fcf66da
AC
4699 tmp_mips_processor_type = xstrdup (DEFAULT_MIPS_TYPE);
4700 mips_set_processor_type_command (xstrdup (DEFAULT_MIPS_TYPE), 0);
c2d11a7d 4701#endif
c906108c
SS
4702
4703 /* We really would like to have both "0" and "unlimited" work, but
4704 command.c doesn't deal with that. So make it a var_zinteger
4705 because the user can always use "999999" or some such for unlimited. */
4706 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
4707 (char *) &heuristic_fence_post,
4708 "\
4709Set the distance searched for the start of a function.\n\
4710If you are debugging a stripped executable, GDB needs to search through the\n\
4711program for the start of a function. This command sets the distance of the\n\
4712search. The only need to set it is when debugging a stripped executable.",
4713 &setlist);
4714 /* We need to throw away the frame cache when we set this, since it
4715 might change our ability to get backtraces. */
4716 c->function.sfunc = reinit_frame_cache_sfunc;
4717 add_show_from_set (c, &showlist);
4718
4719 /* Allow the user to control whether the upper bits of 64-bit
4720 addresses should be zeroed. */
4014092b
AC
4721 c = add_set_auto_boolean_cmd ("mask-address", no_class, &mask_address_var,
4722 "Set zeroing of upper 32 bits of 64-bit addresses.\n\
4723Use \"on\" to enable the masking, \"off\" to disable it and \"auto\" to allow GDB to determine\n\
4724the correct value.\n",
4725 &setmipscmdlist);
4726 add_cmd ("mask-address", no_class, show_mask_address,
4727 "Show current mask-address value", &showmipscmdlist);
43e526b9
JM
4728
4729 /* Allow the user to control the size of 32 bit registers within the
4730 raw remote packet. */
4731 add_show_from_set (add_set_cmd ("remote-mips64-transfers-32bit-regs",
4732 class_obscure,
4733 var_boolean,
4734 (char *)&mips64_transfers_32bit_regs_p, "\
4735Set compatibility with MIPS targets that transfers 32 and 64 bit quantities.\n\
4736Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\
4737that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
473864 bits for others. Use \"off\" to disable compatibility mode",
4739 &setlist),
4740 &showlist);
9ace0497
AC
4741
4742 /* Debug this files internals. */
4743 add_show_from_set (add_set_cmd ("mips", class_maintenance, var_zinteger,
4744 &mips_debug, "Set mips debugging.\n\
4745When non-zero, mips specific debugging is enabled.", &setdebuglist),
4746 &showdebuglist);
c906108c 4747}
9ace0497 4748
This page took 0.373316 seconds and 4 git commands to generate.