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