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