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