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