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