CARP: Convert macro definitions of USE_STRUCT_CONVENTION into target
[deliverable/binutils-gdb.git] / gdb / mips-tdep.c
1 /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
2 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3 Free Software Foundation, Inc.
4 Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
5 and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22
23 #include "defs.h"
24 #include "gdb_string.h"
25 #include "frame.h"
26 #include "inferior.h"
27 #include "symtab.h"
28 #include "value.h"
29 #include "gdbcmd.h"
30 #include "language.h"
31 #include "gdbcore.h"
32 #include "symfile.h"
33 #include "objfiles.h"
34 #include "gdbtypes.h"
35 #include "target.h"
36
37 #include "opcode/mips.h"
38
39 #define VM_MIN_ADDRESS (CORE_ADDR)0x400000
40
41 /* Do not use "TARGET_IS_MIPS64" to test the size of floating point registers */
42 #define FP_REGISTER_DOUBLE (REGISTER_VIRTUAL_SIZE(FP0_REGNUM) == 8)
43
44 /* FIXME: Put this declaration in frame.h. */
45 extern struct obstack frame_cache_obstack;
46
47 #if 0
48 static int mips_in_lenient_prologue PARAMS ((CORE_ADDR, CORE_ADDR));
49 #endif
50
51 int gdb_print_insn_mips PARAMS ((bfd_vma, disassemble_info *));
52
53 static void mips_print_register PARAMS ((int, int));
54
55 static mips_extra_func_info_t
56 heuristic_proc_desc PARAMS ((CORE_ADDR, CORE_ADDR, struct frame_info *));
57
58 static CORE_ADDR heuristic_proc_start PARAMS ((CORE_ADDR));
59
60 static CORE_ADDR read_next_frame_reg PARAMS ((struct frame_info *, int));
61
62 static void mips_set_fpu_command PARAMS ((char *, int,
63 struct cmd_list_element *));
64
65 static void mips_show_fpu_command PARAMS ((char *, int,
66 struct cmd_list_element *));
67
68 void mips_set_processor_type_command PARAMS ((char *, int));
69
70 int mips_set_processor_type PARAMS ((char *));
71
72 static void mips_show_processor_type_command PARAMS ((char *, int));
73
74 static void reinit_frame_cache_sfunc PARAMS ((char *, int,
75 struct cmd_list_element *));
76
77 static mips_extra_func_info_t
78 find_proc_desc PARAMS ((CORE_ADDR pc, struct frame_info *next_frame));
79
80 static CORE_ADDR after_prologue PARAMS ((CORE_ADDR pc,
81 mips_extra_func_info_t proc_desc));
82
83 /* This value is the model of MIPS in use. It is derived from the value
84 of the PrID register. */
85
86 char *mips_processor_type;
87
88 char *tmp_mips_processor_type;
89
90 /* Some MIPS boards don't support floating point, so we permit the
91 user to turn it off. */
92
93 enum mips_fpu_type mips_fpu;
94
95 static char *mips_fpu_string;
96
97 /* A set of original names, to be used when restoring back to generic
98 registers from a specific set. */
99
100 char *mips_generic_reg_names[] = REGISTER_NAMES;
101
102 /* Names of IDT R3041 registers. */
103
104 char *mips_r3041_reg_names[] = {
105 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
106 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
107 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
108 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
109 "sr", "lo", "hi", "bad", "cause","pc",
110 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
111 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
112 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
113 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
114 "fsr", "fir", "fp", "",
115 "", "", "bus", "ccfg", "", "", "", "",
116 "", "", "port", "cmp", "", "", "epc", "prid",
117 };
118
119 /* Names of IDT R3051 registers. */
120
121 char *mips_r3051_reg_names[] = {
122 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
123 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
124 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
125 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
126 "sr", "lo", "hi", "bad", "cause","pc",
127 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
128 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
129 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
130 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
131 "fsr", "fir", "fp", "",
132 "inx", "rand", "elo", "", "ctxt", "", "", "",
133 "", "", "ehi", "", "", "", "epc", "prid",
134 };
135
136 /* Names of IDT R3081 registers. */
137
138 char *mips_r3081_reg_names[] = {
139 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
140 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
141 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
142 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
143 "sr", "lo", "hi", "bad", "cause","pc",
144 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
145 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
146 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
147 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
148 "fsr", "fir", "fp", "",
149 "inx", "rand", "elo", "cfg", "ctxt", "", "", "",
150 "", "", "ehi", "", "", "", "epc", "prid",
151 };
152
153 /* Names of LSI 33k registers. */
154
155 char *mips_lsi33k_reg_names[] = {
156 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
157 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
158 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
159 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
160 "epc", "hi", "lo", "sr", "cause","badvaddr",
161 "dcic", "bpc", "bda", "", "", "", "", "",
162 "", "", "", "", "", "", "", "",
163 "", "", "", "", "", "", "", "",
164 "", "", "", "", "", "", "", "",
165 "", "", "", "",
166 "", "", "", "", "", "", "", "",
167 "", "", "", "", "", "", "", "",
168 };
169
170 struct {
171 char *name;
172 char **regnames;
173 } mips_processor_type_table[] = {
174 { "generic", mips_generic_reg_names },
175 { "r3041", mips_r3041_reg_names },
176 { "r3051", mips_r3051_reg_names },
177 { "r3071", mips_r3081_reg_names },
178 { "r3081", mips_r3081_reg_names },
179 { "lsi33k", mips_lsi33k_reg_names },
180 { NULL, NULL }
181 };
182
183 /* Table to translate MIPS16 register field to actual register number. */
184 static int mips16_to_32_reg[8] = { 16, 17, 2, 3, 4, 5, 6, 7 };
185
186 /* Heuristic_proc_start may hunt through the text section for a long
187 time across a 2400 baud serial line. Allows the user to limit this
188 search. */
189
190 static unsigned int heuristic_fence_post = 0;
191
192 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
193 #define PROC_HIGH_ADDR(proc) ((proc)->high_addr) /* upper address bound */
194 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
195 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
196 #define PROC_FRAME_ADJUST(proc) ((proc)->frame_adjust)
197 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
198 #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
199 #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
200 #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
201 #define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
202 #define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
203 #define _PROC_MAGIC_ 0x0F0F0F0F
204 #define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
205 #define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
206
207 struct linked_proc_info
208 {
209 struct mips_extra_func_info info;
210 struct linked_proc_info *next;
211 } *linked_proc_desc_table = NULL;
212
213
214 /* Should the upper word of 64-bit addresses be zeroed? */
215 static int mask_address_p = 1;
216
217 /* Should call_function allocate stack space for a struct return? */
218 int
219 mips_use_struct_convention (gcc_p, type)
220 int gcc_p;
221 struct type *type;
222 {
223 if (MIPS_EABI)
224 return (TYPE_LENGTH (type) > 2 * MIPS_REGSIZE);
225 else
226 return 1; /* Structures are returned by ref in extra arg0 */
227 }
228
229 /* Tell if the program counter value in MEMADDR is in a MIPS16 function. */
230
231 static int
232 pc_is_mips16 (bfd_vma memaddr)
233 {
234 struct minimal_symbol *sym;
235
236 /* If bit 0 of the address is set, assume this is a MIPS16 address. */
237 if (IS_MIPS16_ADDR (memaddr))
238 return 1;
239
240 /* A flag indicating that this is a MIPS16 function is stored by elfread.c in
241 the high bit of the info field. Use this to decide if the function is
242 MIPS16 or normal MIPS. */
243 sym = lookup_minimal_symbol_by_pc (memaddr);
244 if (sym)
245 return MSYMBOL_IS_SPECIAL (sym);
246 else
247 return 0;
248 }
249
250
251 /* This returns the PC of the first inst after the prologue. If we can't
252 find the prologue, then return 0. */
253
254 static CORE_ADDR
255 after_prologue (pc, proc_desc)
256 CORE_ADDR pc;
257 mips_extra_func_info_t proc_desc;
258 {
259 struct symtab_and_line sal;
260 CORE_ADDR func_addr, func_end;
261
262 if (!proc_desc)
263 proc_desc = find_proc_desc (pc, NULL);
264
265 if (proc_desc)
266 {
267 /* If function is frameless, then we need to do it the hard way. I
268 strongly suspect that frameless always means prologueless... */
269 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
270 && PROC_FRAME_OFFSET (proc_desc) == 0)
271 return 0;
272 }
273
274 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
275 return 0; /* Unknown */
276
277 sal = find_pc_line (func_addr, 0);
278
279 if (sal.end < func_end)
280 return sal.end;
281
282 /* The line after the prologue is after the end of the function. In this
283 case, tell the caller to find the prologue the hard way. */
284
285 return 0;
286 }
287
288 /* Decode a MIPS32 instruction that saves a register in the stack, and
289 set the appropriate bit in the general register mask or float register mask
290 to indicate which register is saved. This is a helper function
291 for mips_find_saved_regs. */
292
293 static void
294 mips32_decode_reg_save (inst, gen_mask, float_mask)
295 t_inst inst;
296 unsigned long *gen_mask;
297 unsigned long *float_mask;
298 {
299 int reg;
300
301 if ((inst & 0xffe00000) == 0xafa00000 /* sw reg,n($sp) */
302 || (inst & 0xffe00000) == 0xafc00000 /* sw reg,n($r30) */
303 /* start-sanitize-r5900 */
304 || (inst & 0xffe00000) == 0x7fa00000 /* sq reg,n($sp) */
305 /* end-sanitize-r5900 */
306 || (inst & 0xffe00000) == 0xffa00000) /* sd reg,n($sp) */
307 {
308 /* It might be possible to use the instruction to
309 find the offset, rather than the code below which
310 is based on things being in a certain order in the
311 frame, but figuring out what the instruction's offset
312 is relative to might be a little tricky. */
313 reg = (inst & 0x001f0000) >> 16;
314 *gen_mask |= (1 << reg);
315 }
316 else if ((inst & 0xffe00000) == 0xe7a00000 /* swc1 freg,n($sp) */
317 || (inst & 0xffe00000) == 0xe7c00000 /* swc1 freg,n($r30) */
318 || (inst & 0xffe00000) == 0xf7a00000)/* sdc1 freg,n($sp) */
319
320 {
321 reg = ((inst & 0x001f0000) >> 16);
322 *float_mask |= (1 << reg);
323 }
324 }
325
326 /* Decode a MIPS16 instruction that saves a register in the stack, and
327 set the appropriate bit in the general register or float register mask
328 to indicate which register is saved. This is a helper function
329 for mips_find_saved_regs. */
330
331 static void
332 mips16_decode_reg_save (inst, gen_mask)
333 t_inst inst;
334 unsigned long *gen_mask;
335 {
336 if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
337 {
338 int reg = mips16_to_32_reg[(inst & 0x700) >> 8];
339 *gen_mask |= (1 << reg);
340 }
341 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
342 {
343 int reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
344 *gen_mask |= (1 << reg);
345 }
346 else if ((inst & 0xff00) == 0x6200 /* sw $ra,n($sp) */
347 || (inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
348 *gen_mask |= (1 << RA_REGNUM);
349 }
350
351
352 /* Fetch and return instruction from the specified location. If the PC
353 is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
354
355 static t_inst
356 mips_fetch_instruction (addr)
357 CORE_ADDR addr;
358 {
359 char buf[MIPS_INSTLEN];
360 int instlen;
361 int status;
362
363 if (pc_is_mips16 (addr))
364 {
365 instlen = MIPS16_INSTLEN;
366 addr = UNMAKE_MIPS16_ADDR (addr);
367 }
368 else
369 instlen = MIPS_INSTLEN;
370 status = read_memory_nobpt (addr, buf, instlen);
371 if (status)
372 memory_error (status, addr);
373 return extract_unsigned_integer (buf, instlen);
374 }
375
376
377 /* These the fields of 32 bit mips instructions */
378 #define mips32_op(x) (x >> 25)
379 #define itype_op(x) (x >> 25)
380 #define itype_rs(x) ((x >> 21)& 0x1f)
381 #define itype_rt(x) ((x >> 16) & 0x1f)
382 #define itype_immediate(x) ( x & 0xffff)
383
384 #define jtype_op(x) (x >> 25)
385 #define jtype_target(x) ( x & 0x03fffff)
386
387 #define rtype_op(x) (x >>25)
388 #define rtype_rs(x) ((x>>21) & 0x1f)
389 #define rtype_rt(x) ((x>>16) & 0x1f)
390 #define rtype_rd(x) ((x>>11) & 0x1f)
391 #define rtype_shamt(x) ((x>>6) & 0x1f)
392 #define rtype_funct(x) (x & 0x3f )
393
394 static CORE_ADDR
395 mips32_relative_offset(unsigned long inst)
396 { long x ;
397 x = itype_immediate(inst) ;
398 if (x & 0x8000) /* sign bit set */
399 {
400 x |= 0xffff0000 ; /* sign extension */
401 }
402 x = x << 2 ;
403 return x ;
404 }
405
406 /* Determine whate to set a single step breakpoint while considering
407 branch prediction */
408 CORE_ADDR
409 mips32_next_pc(CORE_ADDR pc)
410 {
411 unsigned long inst ;
412 int op ;
413 inst = mips_fetch_instruction(pc) ;
414 if ((inst & 0xe0000000) != 0) /* Not a special, junp or branch instruction */
415 { if ((inst >> 27) == 5) /* BEQL BNEZ BLEZL BGTZE , bits 0101xx */
416 { op = ((inst >> 25) & 0x03) ;
417 switch (op)
418 {
419 case 0 : goto equal_branch ; /* BEQL */
420 case 1 : goto neq_branch ; /* BNEZ */
421 case 2 : goto less_branch ; /* BLEZ */
422 case 3 : goto greater_branch ; /* BGTZ */
423 default : pc += 4 ;
424 }
425 }
426 else pc += 4 ; /* Not a branch, next instruction is easy */
427 }
428 else
429 { /* This gets way messy */
430
431 /* Further subdivide into SPECIAL, REGIMM and other */
432 switch (op = ((inst >> 26) & 0x07)) /* extract bits 28,27,26 */
433 {
434 case 0 : /* SPECIAL */
435 op = rtype_funct(inst) ;
436 switch (op)
437 {
438 case 8 : /* JR */
439 case 9 : /* JALR */
440 pc = read_register(rtype_rs(inst)) ; /* Set PC to that address */
441 break ;
442 default: pc += 4 ;
443 }
444
445 break ; /* end special */
446 case 1 : /* REGIMM */
447 {
448 op = jtype_op(inst) ; /* branch condition */
449 switch (jtype_op(inst))
450 {
451 case 0 : /* BLTZ */
452 case 2 : /* BLTXL */
453 case 16 : /* BLTZALL */
454 case 18 : /* BLTZALL */
455 less_branch:
456 if (read_register(itype_rs(inst)) < 0)
457 pc += mips32_relative_offset(inst) + 4 ;
458 else pc += 8 ; /* after the delay slot */
459 break ;
460 case 1 : /* GEZ */
461 case 3 : /* BGEZL */
462 case 17 : /* BGEZAL */
463 case 19 : /* BGEZALL */
464 greater_equal_branch:
465 if (read_register(itype_rs(inst)) >= 0)
466 pc += mips32_relative_offset(inst) + 4 ;
467 else pc += 8 ; /* after the delay slot */
468 break ;
469 /* All of the other intructions in the REGIMM catagory */
470 default: pc += 4 ;
471 }
472 }
473 break ; /* end REGIMM */
474 case 2 : /* J */
475 case 3 : /* JAL */
476 { unsigned long reg ;
477 reg = jtype_target(inst) << 2 ;
478 pc = reg + ((pc+4) & 0xf0000000) ;
479 /* Whats this mysterious 0xf000000 adjustment ??? */
480 }
481 break ;
482 /* FIXME case JALX :*/
483 { unsigned long reg ;
484 reg = jtype_target(inst) << 2 ;
485 pc = reg + ((pc+4) & 0xf0000000) + 1 ; /* yes, +1 */
486 /* Add 1 to indicate 16 bit mode - Invert ISA mode */
487 }
488 break ; /* The new PC will be alternate mode */
489 case 4 : /* BEQ , BEQL */
490 equal_branch :
491 if (read_register(itype_rs(inst)) ==
492 read_register(itype_rt(inst)))
493 pc += mips32_relative_offset(inst) + 4 ;
494 else pc += 8 ;
495 break ;
496 case 5 : /* BNE , BNEL */
497 neq_branch :
498 if (read_register(itype_rs(inst)) !=
499 read_register(itype_rs(inst)))
500 pc += mips32_relative_offset(inst) + 4 ;
501 else pc += 8 ;
502 break ;
503 case 6 : /* BLEZ , BLEZL */
504 less_zero_branch:
505 if (read_register(itype_rs(inst) <= 0))
506 pc += mips32_relative_offset(inst) + 4 ;
507 else pc += 8 ;
508 break ;
509 case 7 :
510 greater_branch : /* BGTZ BGTZL */
511 if (read_register(itype_rs(inst) > 0))
512 pc += mips32_relative_offset(inst) + 4 ;
513 else pc += 8 ;
514 break ;
515 default : pc += 8 ;
516 } /* switch */
517 } /* else */
518 return pc ;
519 } /* mips32_next_pc */
520
521 /* Decoding the next place to set a breakpoint is irregular for the
522 mips 16 variant, but fortunatly, there fewer instructions. We have to cope
523 ith extensions for 16 bit instructions and a pair of actual 32 bit instructions.
524 We dont want to set a single step instruction on the extend instruction
525 either.
526 */
527
528 /* Lots of mips16 instruction formats */
529 /* Predicting jumps requires itype,ritype,i8type
530 and their extensions extItype,extritype,extI8type
531 */
532 enum mips16_inst_fmts
533 {
534 itype, /* 0 immediate 5,10 */
535 ritype, /* 1 5,3,8 */
536 rrtype, /* 2 5,3,3,5 */
537 rritype, /* 3 5,3,3,5 */
538 rrrtype, /* 4 5,3,3,3,2 */
539 rriatype, /* 5 5,3,3,1,4 */
540 shifttype, /* 6 5,3,3,3,2 */
541 i8type, /* 7 5,3,8 */
542 i8movtype, /* 8 5,3,3,5 */
543 i8mov32rtype, /* 9 5,3,5,3 */
544 i64type, /* 10 5,3,8 */
545 ri64type, /* 11 5,3,3,5 */
546 jalxtype, /* 12 5,1,5,5,16 - a 32 bit instruction */
547 exiItype, /* 13 5,6,5,5,1,1,1,1,1,1,5 */
548 extRitype, /* 14 5,6,5,5,3,1,1,1,5 */
549 extRRItype, /* 15 5,5,5,5,3,3,5 */
550 extRRIAtype, /* 16 5,7,4,5,3,3,1,4 */
551 EXTshifttype, /* 17 5,5,1,1,1,1,1,1,5,3,3,1,1,1,2 */
552 extI8type, /* 18 5,6,5,5,3,1,1,1,5 */
553 extI64type, /* 19 5,6,5,5,3,1,1,1,5 */
554 extRi64type, /* 20 5,6,5,5,3,3,5 */
555 extshift64type /* 21 5,5,1,1,1,1,1,1,5,1,1,1,3,5 */
556 } ;
557 /* I am heaping all the fields of the formats into one structure and then,
558 only the fields which are involved in instruction extension */
559 struct upk_mips16
560 {
561 unsigned short inst ;
562 enum mips16_inst_fmts fmt ;
563 unsigned long offset ;
564 unsigned int regx ; /* Function in i8 type */
565 unsigned int regy ;
566 } ;
567
568
569
570 static void print_unpack(char * comment,
571 struct upk_mips16 * u)
572 {
573 printf("%s %04x ,f(%d) off(%08x) (x(%x) y(%x)\n",
574 comment,u->inst,u->fmt,u->offset,u->regx,u->regy) ;
575 }
576
577 /* The EXT-I, EXT-ri nad EXT-I8 instructions all have the same
578 format for the bits which make up the immediatate extension.
579 */
580 static unsigned long
581 extended_offset(unsigned long extension)
582 {
583 unsigned long value ;
584 value = (extension >> 21) & 0x3f ; /* * extract 15:11 */
585 value = value << 6 ;
586 value |= (extension >> 16) & 0x1f ; /* extrace 10:5 */
587 value = value << 5 ;
588 value |= extension & 0x01f ; /* extract 4:0 */
589 return value ;
590 }
591
592 /* Only call this function if you know that this is an extendable
593 instruction, It wont malfunction, but why make excess remote memory references?
594 If the immediate operands get sign extended or somthing, do it after
595 the extension is performed.
596 */
597 /* FIXME: Every one of these cases needs to worry about sign extension
598 when the offset is to be used in relative addressing */
599
600
601 static unsigned short fetch_mips_16(CORE_ADDR pc)
602 {
603 char buf[8] ;
604 pc &= 0xfffffffe ; /* clear the low order bit */
605 target_read_memory(pc,buf,2) ;
606 return extract_unsigned_integer(buf,2) ;
607 }
608
609 static void
610 unpack_mips16(CORE_ADDR pc,
611 struct upk_mips16 * upk)
612 {
613 CORE_ADDR extpc ;
614 unsigned long extension ;
615 int extended ;
616 extpc = (pc - 4) & ~0x01 ; /* Extensions are 32 bit instructions */
617 /* Decrement to previous address and loose the 16bit mode flag */
618 /* return if the instruction was extendable, but not actually extended */
619 extended = ((mips32_op(extension) == 30) ? 1 : 0) ;
620 if (extended) { extension = mips_fetch_instruction(extpc) ;}
621 switch (upk->fmt)
622 {
623 case itype :
624 {
625 unsigned long value ;
626 if (extended)
627 { value = extended_offset(extension) ;
628 value = value << 11 ; /* rom for the original value */
629 value |= upk->inst & 0x7ff ; /* eleven bits from instruction */
630 }
631 else
632 { value = upk->inst & 0x7ff ;
633 /* FIXME : Consider sign extension */
634 }
635 upk->offset = value ;
636 }
637 break ;
638 case ritype :
639 case i8type :
640 { /* A register identifier and an offset */
641 /* Most of the fields are the same as I type but the
642 immediate value is of a different length */
643 unsigned long value ;
644 if (extended)
645 {
646 value = extended_offset(extension) ;
647 value = value << 8 ; /* from the original instruction */
648 value |= upk->inst & 0xff ; /* eleven bits from instruction */
649 upk->regx = (extension >> 8) & 0x07 ; /* or i8 funct */
650 if (value & 0x4000) /* test the sign bit , bit 26 */
651 { value &= ~ 0x3fff ; /* remove the sign bit */
652 value = -value ;
653 }
654 }
655 else {
656 value = upk->inst & 0xff ; /* 8 bits */
657 upk->regx = (upk->inst >> 8) & 0x07 ; /* or i8 funct */
658 /* FIXME: Do sign extension , this format needs it */
659 if (value & 0x80) /* THIS CONFUSES ME */
660 { value &= 0xef ; /* remove the sign bit */
661 value = -value ;
662 }
663
664 }
665 upk->offset = value ;
666 break ;
667 }
668 case jalxtype :
669 {
670 unsigned long value ;
671 unsigned short nexthalf ;
672 value = ((upk->inst & 0x1f) << 5) | ((upk->inst >> 5) & 0x1f) ;
673 value = value << 16 ;
674 nexthalf = mips_fetch_instruction(pc+2) ; /* low bit still set */
675 value |= nexthalf ;
676 upk->offset = value ;
677 break ;
678 }
679 default:
680 printf_filtered("Decoding unimplemented instruction format type\n") ;
681 break ;
682 }
683 /* print_unpack("UPK",upk) ; */
684 }
685
686
687 #define mips16_op(x) (x >> 11)
688
689 /* This is a map of the opcodes which ae known to perform branches */
690 static unsigned char map16[32] =
691 { 0,0,1,1,1,1,0,0,
692 0,0,0,0,1,0,0,0,
693 0,0,0,0,0,0,0,0,
694 0,0,0,0,0,1,1,0
695 } ;
696
697 static CORE_ADDR add_offset_16(CORE_ADDR pc, int offset)
698 {
699 return ((offset << 2) | ((pc + 2) & (0xf0000000))) ;
700
701 }
702
703
704
705 static struct upk_mips16 upk ;
706
707 CORE_ADDR mips16_next_pc(CORE_ADDR pc)
708 {
709 int op ;
710 t_inst inst ;
711 /* inst = mips_fetch_instruction(pc) ; - This doesnt always work */
712 inst = fetch_mips_16(pc) ;
713 upk.inst = inst ;
714 op = mips16_op(upk.inst) ;
715 if (map16[op])
716 {
717 int reg ;
718 switch (op)
719 {
720 case 2 : /* Branch */
721 upk.fmt = itype ;
722 unpack_mips16(pc,&upk) ;
723 { long offset ;
724 offset = upk.offset ;
725 if (offset & 0x800)
726 { offset &= 0xeff ;
727 offset = - offset ;
728 }
729 pc += (offset << 1) + 2 ;
730 }
731 break ;
732 case 3 : /* JAL , JALX - Watch out, these are 32 bit instruction*/
733 upk.fmt = jalxtype ;
734 unpack_mips16(pc,&upk) ;
735 pc = add_offset_16(pc,upk.offset) ;
736 if ((upk.inst >> 10) & 0x01) /* Exchange mode */
737 pc = pc & ~ 0x01 ; /* Clear low bit, indicate 32 bit mode */
738 else pc |= 0x01 ;
739 break ;
740 case 4 : /* beqz */
741 upk.fmt = ritype ;
742 unpack_mips16(pc,&upk) ;
743 reg = read_register(upk.regx) ;
744 if (reg == 0)
745 pc += (upk.offset << 1) + 2 ;
746 else pc += 2 ;
747 break ;
748 case 5 : /* bnez */
749 upk.fmt = ritype ;
750 unpack_mips16(pc,&upk) ;
751 reg = read_register(upk.regx) ;
752 if (reg != 0)
753 pc += (upk.offset << 1) + 2 ;
754 else pc += 2 ;
755 break ;
756 case 12 : /* I8 Formats btez btnez */
757 upk.fmt = i8type ;
758 unpack_mips16(pc,&upk) ;
759 /* upk.regx contains the opcode */
760 reg = read_register(24) ; /* Test register is 24 */
761 if (((upk.regx == 0) && (reg == 0)) /* BTEZ */
762 || ((upk.regx == 1 ) && (reg != 0))) /* BTNEZ */
763 /* pc = add_offset_16(pc,upk.offset) ; */
764 pc += (upk.offset << 1) + 2 ;
765 else pc += 2 ;
766 break ;
767 case 29 : /* RR Formats JR, JALR, JALR-RA */
768 upk.fmt = rrtype ;
769 op = upk.inst & 0x1f ;
770 if (op == 0)
771 {
772 upk.regx = (upk.inst >> 8) & 0x07 ;
773 upk.regy = (upk.inst >> 5) & 0x07 ;
774 switch (upk.regy)
775 {
776 case 0 : reg = upk.regx ; break ;
777 case 1 : reg = 31 ; break ; /* Function return instruction*/
778 case 2 : reg = upk.regx ; break ;
779 default: reg = 31 ; break ; /* BOGUS Guess */
780 }
781 pc = read_register(reg) ;
782 }
783 else pc += 2 ;
784 break ;
785 case 30 : /* This is an extend instruction */
786 pc += 4 ; /* Dont be setting breakpints on the second half */
787 break ;
788 default :
789 printf("Filtered - next PC probably incorrrect due to jump inst\n");
790 pc += 2 ;
791 break ;
792 }
793 }
794 else pc+= 2 ; /* just a good old instruction */
795 /* See if we CAN actually break on the next instruction */
796 /* printf("NXTm16PC %08x\n",(unsigned long)pc) ; */
797 return pc ;
798 } /* mips16_next_pc */
799
800 /* The mips_next_pc function supports single_tep when the remote target monitor or
801 stub is not developed enough to so a single_step.
802 It works by decoding the current instruction and predicting where a branch
803 will go. This isnt hard because all the data is available.
804 The MIPS32 and MIPS16 variants are quite different
805 */
806 CORE_ADDR mips_next_pc(CORE_ADDR pc)
807 {
808 t_inst inst ;
809 /* inst = mips_fetch_instruction(pc) ; */
810 /* if (pc_is_mips16) <----- This is failing */
811 if (pc & 0x01)
812 return mips16_next_pc(pc) ;
813 else return mips32_next_pc(pc) ;
814 } /* mips_next_pc */
815
816 /* Guaranteed to set fci->saved_regs to some values (it never leaves it
817 NULL). */
818
819 void
820 mips_find_saved_regs (fci)
821 struct frame_info *fci;
822 {
823 int ireg;
824 CORE_ADDR reg_position;
825 /* r0 bit means kernel trap */
826 int kernel_trap;
827 /* What registers have been saved? Bitmasks. */
828 unsigned long gen_mask, float_mask;
829 mips_extra_func_info_t proc_desc;
830 t_inst inst;
831
832 fci->saved_regs = (struct frame_saved_regs *)
833 obstack_alloc (&frame_cache_obstack, sizeof(struct frame_saved_regs));
834 memset (fci->saved_regs, 0, sizeof (struct frame_saved_regs));
835
836 /* If it is the frame for sigtramp, the saved registers are located
837 in a sigcontext structure somewhere on the stack.
838 If the stack layout for sigtramp changes we might have to change these
839 constants and the companion fixup_sigtramp in mdebugread.c */
840 #ifndef SIGFRAME_BASE
841 /* To satisfy alignment restrictions, sigcontext is located 4 bytes
842 above the sigtramp frame. */
843 #define SIGFRAME_BASE MIPS_REGSIZE
844 /* FIXME! Are these correct?? */
845 #define SIGFRAME_PC_OFF (SIGFRAME_BASE + 2 * MIPS_REGSIZE)
846 #define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 3 * MIPS_REGSIZE)
847 #define SIGFRAME_FPREGSAVE_OFF \
848 (SIGFRAME_REGSAVE_OFF + MIPS_NUMREGS * MIPS_REGSIZE + 3 * MIPS_REGSIZE)
849 #endif
850 #ifndef SIGFRAME_REG_SIZE
851 /* FIXME! Is this correct?? */
852 #define SIGFRAME_REG_SIZE MIPS_REGSIZE
853 #endif
854 if (fci->signal_handler_caller)
855 {
856 for (ireg = 0; ireg < MIPS_NUMREGS; ireg++)
857 {
858 reg_position = fci->frame + SIGFRAME_REGSAVE_OFF
859 + ireg * SIGFRAME_REG_SIZE;
860 fci->saved_regs->regs[ireg] = reg_position;
861 }
862 for (ireg = 0; ireg < MIPS_NUMREGS; ireg++)
863 {
864 reg_position = fci->frame + SIGFRAME_FPREGSAVE_OFF
865 + ireg * SIGFRAME_REG_SIZE;
866 fci->saved_regs->regs[FP0_REGNUM + ireg] = reg_position;
867 }
868 fci->saved_regs->regs[PC_REGNUM] = fci->frame + SIGFRAME_PC_OFF;
869 return;
870 }
871
872 proc_desc = fci->proc_desc;
873 if (proc_desc == NULL)
874 /* I'm not sure how/whether this can happen. Normally when we can't
875 find a proc_desc, we "synthesize" one using heuristic_proc_desc
876 and set the saved_regs right away. */
877 return;
878
879 kernel_trap = PROC_REG_MASK(proc_desc) & 1;
880 gen_mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK(proc_desc);
881 float_mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK(proc_desc);
882
883 if (/* In any frame other than the innermost or a frame interrupted by
884 a signal, we assume that all registers have been saved.
885 This assumes that all register saves in a function happen before
886 the first function call. */
887 (fci->next == NULL || fci->next->signal_handler_caller)
888
889 /* In a dummy frame we know exactly where things are saved. */
890 && !PROC_DESC_IS_DUMMY (proc_desc)
891
892 /* Don't bother unless we are inside a function prologue. Outside the
893 prologue, we know where everything is. */
894
895 && in_prologue (fci->pc, PROC_LOW_ADDR (proc_desc))
896
897 /* Not sure exactly what kernel_trap means, but if it means
898 the kernel saves the registers without a prologue doing it,
899 we better not examine the prologue to see whether registers
900 have been saved yet. */
901 && !kernel_trap)
902 {
903 /* We need to figure out whether the registers that the proc_desc
904 claims are saved have been saved yet. */
905
906 CORE_ADDR addr;
907
908 /* Bitmasks; set if we have found a save for the register. */
909 unsigned long gen_save_found = 0;
910 unsigned long float_save_found = 0;
911 int instlen;
912
913 /* If the address is odd, assume this is MIPS16 code. */
914 addr = PROC_LOW_ADDR (proc_desc);
915 instlen = pc_is_mips16 (addr) ? MIPS16_INSTLEN : MIPS_INSTLEN;
916
917 /* Scan through this function's instructions preceding the current
918 PC, and look for those that save registers. */
919 while (addr < fci->pc)
920 {
921 inst = mips_fetch_instruction (addr);
922 if (pc_is_mips16 (addr))
923 mips16_decode_reg_save (inst, &gen_save_found);
924 else
925 mips32_decode_reg_save (inst, &gen_save_found, &float_save_found);
926 addr += instlen;
927 }
928 gen_mask = gen_save_found;
929 float_mask = float_save_found;
930 }
931
932 /* Fill in the offsets for the registers which gen_mask says
933 were saved. */
934 reg_position = fci->frame + PROC_REG_OFFSET (proc_desc);
935 for (ireg= MIPS_NUMREGS-1; gen_mask; --ireg, gen_mask <<= 1)
936 if (gen_mask & 0x80000000)
937 {
938 fci->saved_regs->regs[ireg] = reg_position;
939 reg_position -= MIPS_REGSIZE;
940 /* start-sanitize-r5900 */
941 #ifdef R5900_128BIT_GPR_HACK
942 /* Gross. The r5900 has 128bit wide registers, but MIPS_REGSIZE is
943 still 64bits. See the comments in tm.h for a discussion of the
944 various problems this causes. */
945 if (ireg <= RA_REGNUM)
946 reg_position -= MIPS_REGSIZE;
947 #endif
948 /* end-sanitize-r5900 */
949 }
950
951 /* The MIPS16 entry instruction saves $s0 and $s1 in the reverse order
952 of that normally used by gcc. Therefore, we have to fetch the first
953 instruction of the function, and if it's an entry instruction that
954 saves $s0 or $s1, correct their saved addresses. */
955 if (pc_is_mips16 (PROC_LOW_ADDR (proc_desc)))
956 {
957 inst = mips_fetch_instruction (PROC_LOW_ADDR (proc_desc));
958 if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
959 {
960 int reg;
961 int sreg_count = (inst >> 6) & 3;
962
963 /* Check if the ra register was pushed on the stack. */
964 reg_position = fci->frame + PROC_REG_OFFSET (proc_desc);
965 if (inst & 0x20)
966 reg_position -= MIPS_REGSIZE;
967
968 /* Check if the s0 and s1 registers were pushed on the stack. */
969 for (reg = 16; reg < sreg_count+16; reg++)
970 {
971 fci->saved_regs->regs[reg] = reg_position;
972 reg_position -= MIPS_REGSIZE;
973 }
974 }
975 }
976
977 /* Fill in the offsets for the registers which float_mask says
978 were saved. */
979 reg_position = fci->frame + PROC_FREG_OFFSET (proc_desc);
980
981 /* The freg_offset points to where the first *double* register
982 is saved. So skip to the high-order word. */
983 if (! GDB_TARGET_IS_MIPS64)
984 reg_position += MIPS_REGSIZE;
985
986 /* Fill in the offsets for the float registers which float_mask says
987 were saved. */
988 for (ireg = MIPS_NUMREGS-1; float_mask; --ireg, float_mask <<= 1)
989 if (float_mask & 0x80000000)
990 {
991 fci->saved_regs->regs[FP0_REGNUM+ireg] = reg_position;
992 reg_position -= MIPS_REGSIZE;
993 }
994
995 fci->saved_regs->regs[PC_REGNUM] = fci->saved_regs->regs[RA_REGNUM];
996 }
997
998 static CORE_ADDR
999 read_next_frame_reg(fi, regno)
1000 struct frame_info *fi;
1001 int regno;
1002 {
1003 for (; fi; fi = fi->next)
1004 {
1005 /* We have to get the saved sp from the sigcontext
1006 if it is a signal handler frame. */
1007 if (regno == SP_REGNUM && !fi->signal_handler_caller)
1008 return fi->frame;
1009 else
1010 {
1011 if (fi->saved_regs == NULL)
1012 mips_find_saved_regs (fi);
1013 if (fi->saved_regs->regs[regno])
1014 return read_memory_integer(fi->saved_regs->regs[regno], MIPS_REGSIZE);
1015 }
1016 }
1017 return read_register (regno);
1018 }
1019
1020 /* mips_addr_bits_remove - remove useless address bits */
1021
1022 CORE_ADDR
1023 mips_addr_bits_remove (addr)
1024 CORE_ADDR addr;
1025 {
1026 #if GDB_TARGET_IS_MIPS64
1027 if (mask_address_p && (addr >> 32 == (CORE_ADDR)0xffffffff))
1028 {
1029 /* This hack is a work-around for existing boards using PMON,
1030 the simulator, and any other 64-bit targets that doesn't have
1031 true 64-bit addressing. On these targets, the upper 32 bits
1032 of addresses are ignored by the hardware. Thus, the PC or SP
1033 are likely to have been sign extended to all 1s by instruction
1034 sequences that load 32-bit addresses. For example, a typical
1035 piece of code that loads an address is this:
1036 lui $r2, <upper 16 bits>
1037 ori $r2, <lower 16 bits>
1038 But the lui sign-extends the value such that the upper 32 bits
1039 may be all 1s. The workaround is simply to mask off these bits.
1040 In the future, gcc may be changed to support true 64-bit
1041 addressing, and this masking will have to be disabled. */
1042 addr &= (CORE_ADDR)0xffffffff;
1043 }
1044 #else
1045 /* Even when GDB is configured for some 32-bit targets (e.g. mips-elf),
1046 BFD is configured to handle 64-bit targets, so CORE_ADDR is 64 bits.
1047 So we still have to mask off useless bits from addresses. */
1048 addr &= (CORE_ADDR)0xffffffff;
1049 #endif
1050
1051 return addr;
1052 }
1053
1054 void
1055 mips_init_frame_pc_first (fromleaf, prev)
1056 int fromleaf;
1057 struct frame_info *prev;
1058 {
1059 CORE_ADDR pc, tmp;
1060
1061 pc = ((fromleaf) ? SAVED_PC_AFTER_CALL (prev->next) :
1062 prev->next ? FRAME_SAVED_PC (prev->next) : read_pc ());
1063 tmp = mips_skip_stub (pc);
1064 prev->pc = tmp ? tmp : pc;
1065 }
1066
1067
1068 CORE_ADDR
1069 mips_frame_saved_pc(frame)
1070 struct frame_info *frame;
1071 {
1072 CORE_ADDR saved_pc;
1073 mips_extra_func_info_t proc_desc = frame->proc_desc;
1074 /* We have to get the saved pc from the sigcontext
1075 if it is a signal handler frame. */
1076 int pcreg = frame->signal_handler_caller ? PC_REGNUM
1077 : (proc_desc ? PROC_PC_REG(proc_desc) : RA_REGNUM);
1078
1079 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
1080 saved_pc = read_memory_integer(frame->frame - MIPS_REGSIZE, MIPS_REGSIZE);
1081 else
1082 saved_pc = read_next_frame_reg(frame, pcreg);
1083
1084 return ADDR_BITS_REMOVE (saved_pc);
1085 }
1086
1087 static struct mips_extra_func_info temp_proc_desc;
1088 static struct frame_saved_regs temp_saved_regs;
1089
1090 /* Set a register's saved stack address in temp_saved_regs. If an address
1091 has already been set for this register, do nothing; this way we will
1092 only recognize the first save of a given register in a function prologue.
1093 This is a helper function for mips{16,32}_heuristic_proc_desc. */
1094
1095 static void
1096 set_reg_offset (regno, offset)
1097 int regno;
1098 CORE_ADDR offset;
1099 {
1100 if (temp_saved_regs.regs[regno] == 0)
1101 temp_saved_regs.regs[regno] = offset;
1102 }
1103
1104
1105 /* This fencepost looks highly suspicious to me. Removing it also
1106 seems suspicious as it could affect remote debugging across serial
1107 lines. */
1108
1109 static CORE_ADDR
1110 heuristic_proc_start(pc)
1111 CORE_ADDR pc;
1112 {
1113 CORE_ADDR start_pc;
1114 CORE_ADDR fence;
1115 int instlen;
1116 int seen_adjsp = 0;
1117
1118 pc = ADDR_BITS_REMOVE (pc);
1119 start_pc = pc;
1120 fence = start_pc - heuristic_fence_post;
1121 if (start_pc == 0) return 0;
1122
1123 if (heuristic_fence_post == UINT_MAX
1124 || fence < VM_MIN_ADDRESS)
1125 fence = VM_MIN_ADDRESS;
1126
1127 instlen = pc_is_mips16 (pc) ? MIPS16_INSTLEN : MIPS_INSTLEN;
1128
1129 /* search back for previous return */
1130 for (start_pc -= instlen; ; start_pc -= instlen)
1131 if (start_pc < fence)
1132 {
1133 /* It's not clear to me why we reach this point when
1134 stop_soon_quietly, but with this test, at least we
1135 don't print out warnings for every child forked (eg, on
1136 decstation). 22apr93 rich@cygnus.com. */
1137 if (!stop_soon_quietly)
1138 {
1139 static int blurb_printed = 0;
1140
1141 if (fence == VM_MIN_ADDRESS)
1142 warning("Hit beginning of text section without finding");
1143 else
1144 warning("Hit heuristic-fence-post without finding");
1145
1146 warning("enclosing function for address 0x%s", paddr_nz (pc));
1147 if (!blurb_printed)
1148 {
1149 printf_filtered ("\
1150 This warning occurs if you are debugging a function without any symbols\n\
1151 (for example, in a stripped executable). In that case, you may wish to\n\
1152 increase the size of the search with the `set heuristic-fence-post' command.\n\
1153 \n\
1154 Otherwise, you told GDB there was a function where there isn't one, or\n\
1155 (more likely) you have encountered a bug in GDB.\n");
1156 blurb_printed = 1;
1157 }
1158 }
1159
1160 return 0;
1161 }
1162 else if (pc_is_mips16 (start_pc))
1163 {
1164 unsigned short inst;
1165
1166 /* On MIPS16, any one of the following is likely to be the
1167 start of a function:
1168 entry
1169 addiu sp,-n
1170 daddiu sp,-n
1171 extend -n followed by 'addiu sp,+n' or 'daddiu sp,+n' */
1172 inst = mips_fetch_instruction (start_pc);
1173 if (((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
1174 || (inst & 0xff80) == 0x6380 /* addiu sp,-n */
1175 || (inst & 0xff80) == 0xfb80 /* daddiu sp,-n */
1176 || ((inst & 0xf810) == 0xf010 && seen_adjsp)) /* extend -n */
1177 break;
1178 else if ((inst & 0xff00) == 0x6300 /* addiu sp */
1179 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1180 seen_adjsp = 1;
1181 else
1182 seen_adjsp = 0;
1183 }
1184 else if (ABOUT_TO_RETURN(start_pc))
1185 {
1186 start_pc += 2 * MIPS_INSTLEN; /* skip return, and its delay slot */
1187 break;
1188 }
1189
1190 #if 0
1191 /* skip nops (usually 1) 0 - is this */
1192 while (start_pc < pc && read_memory_integer (start_pc, MIPS_INSTLEN) == 0)
1193 start_pc += MIPS_INSTLEN;
1194 #endif
1195 return start_pc;
1196 }
1197
1198 /* Fetch the immediate value from a MIPS16 instruction.
1199 If the previous instruction was an EXTEND, use it to extend
1200 the upper bits of the immediate value. This is a helper function
1201 for mips16_heuristic_proc_desc. */
1202
1203 static int
1204 mips16_get_imm (prev_inst, inst, nbits, scale, is_signed)
1205 unsigned short prev_inst; /* previous instruction */
1206 unsigned short inst; /* current instruction */
1207 int nbits; /* number of bits in imm field */
1208 int scale; /* scale factor to be applied to imm */
1209 int is_signed; /* is the imm field signed? */
1210 {
1211 int offset;
1212
1213 if ((prev_inst & 0xf800) == 0xf000) /* prev instruction was EXTEND? */
1214 {
1215 offset = ((prev_inst & 0x1f) << 11) | (prev_inst & 0x7e0);
1216 if (offset & 0x8000) /* check for negative extend */
1217 offset = 0 - (0x10000 - (offset & 0xffff));
1218 return offset | (inst & 0x1f);
1219 }
1220 else
1221 {
1222 int max_imm = 1 << nbits;
1223 int mask = max_imm - 1;
1224 int sign_bit = max_imm >> 1;
1225
1226 offset = inst & mask;
1227 if (is_signed && (offset & sign_bit))
1228 offset = 0 - (max_imm - offset);
1229 return offset * scale;
1230 }
1231 }
1232
1233
1234 /* Fill in values in temp_proc_desc based on the MIPS16 instruction
1235 stream from start_pc to limit_pc. */
1236
1237 static void
1238 mips16_heuristic_proc_desc(start_pc, limit_pc, next_frame, sp)
1239 CORE_ADDR start_pc, limit_pc;
1240 struct frame_info *next_frame;
1241 CORE_ADDR sp;
1242 {
1243 CORE_ADDR cur_pc;
1244 CORE_ADDR frame_addr = 0; /* Value of $r17, used as frame pointer */
1245 unsigned short prev_inst = 0; /* saved copy of previous instruction */
1246 unsigned inst = 0; /* current instruction */
1247 unsigned entry_inst = 0; /* the entry instruction */
1248 int reg, offset;
1249
1250 PROC_FRAME_OFFSET(&temp_proc_desc) = 0; /* size of stack frame */
1251 PROC_FRAME_ADJUST(&temp_proc_desc) = 0; /* offset of FP from SP */
1252
1253 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS16_INSTLEN)
1254 {
1255 /* Save the previous instruction. If it's an EXTEND, we'll extract
1256 the immediate offset extension from it in mips16_get_imm. */
1257 prev_inst = inst;
1258
1259 /* Fetch and decode the instruction. */
1260 inst = (unsigned short) mips_fetch_instruction (cur_pc);
1261 if ((inst & 0xff00) == 0x6300 /* addiu sp */
1262 || (inst & 0xff00) == 0xfb00) /* daddiu sp */
1263 {
1264 offset = mips16_get_imm (prev_inst, inst, 8, 8, 1);
1265 if (offset < 0) /* negative stack adjustment? */
1266 PROC_FRAME_OFFSET(&temp_proc_desc) -= offset;
1267 else
1268 /* Exit loop if a positive stack adjustment is found, which
1269 usually means that the stack cleanup code in the function
1270 epilogue is reached. */
1271 break;
1272 }
1273 else if ((inst & 0xf800) == 0xd000) /* sw reg,n($sp) */
1274 {
1275 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1276 reg = mips16_to_32_reg[(inst & 0x700) >> 8];
1277 PROC_REG_MASK(&temp_proc_desc) |= (1 << reg);
1278 set_reg_offset (reg, sp + offset);
1279 }
1280 else if ((inst & 0xff00) == 0xf900) /* sd reg,n($sp) */
1281 {
1282 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1283 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
1284 PROC_REG_MASK(&temp_proc_desc) |= (1 << reg);
1285 set_reg_offset (reg, sp + offset);
1286 }
1287 else if ((inst & 0xff00) == 0x6200) /* sw $ra,n($sp) */
1288 {
1289 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1290 PROC_REG_MASK(&temp_proc_desc) |= (1 << RA_REGNUM);
1291 set_reg_offset (RA_REGNUM, sp + offset);
1292 }
1293 else if ((inst & 0xff00) == 0xfa00) /* sd $ra,n($sp) */
1294 {
1295 offset = mips16_get_imm (prev_inst, inst, 8, 8, 0);
1296 PROC_REG_MASK(&temp_proc_desc) |= (1 << RA_REGNUM);
1297 set_reg_offset (RA_REGNUM, sp + offset);
1298 }
1299 else if (inst == 0x673d) /* move $s1, $sp */
1300 {
1301 frame_addr = sp;
1302 PROC_FRAME_REG (&temp_proc_desc) = 17;
1303 }
1304 else if ((inst & 0xff00) == 0x0100) /* addiu $s1,sp,n */
1305 {
1306 offset = mips16_get_imm (prev_inst, inst, 8, 4, 0);
1307 frame_addr = sp + offset;
1308 PROC_FRAME_REG (&temp_proc_desc) = 17;
1309 PROC_FRAME_ADJUST (&temp_proc_desc) = offset;
1310 }
1311 else if ((inst & 0xFF00) == 0xd900) /* sw reg,offset($s1) */
1312 {
1313 offset = mips16_get_imm (prev_inst, inst, 5, 4, 0);
1314 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
1315 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1316 set_reg_offset (reg, frame_addr + offset);
1317 }
1318 else if ((inst & 0xFF00) == 0x7900) /* sd reg,offset($s1) */
1319 {
1320 offset = mips16_get_imm (prev_inst, inst, 5, 8, 0);
1321 reg = mips16_to_32_reg[(inst & 0xe0) >> 5];
1322 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1323 set_reg_offset (reg, frame_addr + offset);
1324 }
1325 else if ((inst & 0xf81f) == 0xe809 && (inst & 0x700) != 0x700) /* entry */
1326 entry_inst = inst; /* save for later processing */
1327 else if ((inst & 0xf800) == 0x1800) /* jal(x) */
1328 cur_pc += MIPS16_INSTLEN; /* 32-bit instruction */
1329 }
1330
1331 /* The entry instruction is typically the first instruction in a function,
1332 and it stores registers at offsets relative to the value of the old SP
1333 (before the prologue). But the value of the sp parameter to this
1334 function is the new SP (after the prologue has been executed). So we
1335 can't calculate those offsets until we've seen the entire prologue,
1336 and can calculate what the old SP must have been. */
1337 if (entry_inst != 0)
1338 {
1339 int areg_count = (entry_inst >> 8) & 7;
1340 int sreg_count = (entry_inst >> 6) & 3;
1341
1342 /* The entry instruction always subtracts 32 from the SP. */
1343 PROC_FRAME_OFFSET(&temp_proc_desc) += 32;
1344
1345 /* Now we can calculate what the SP must have been at the
1346 start of the function prologue. */
1347 sp += PROC_FRAME_OFFSET(&temp_proc_desc);
1348
1349 /* Check if a0-a3 were saved in the caller's argument save area. */
1350 for (reg = 4, offset = 0; reg < areg_count+4; reg++)
1351 {
1352 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1353 set_reg_offset (reg, sp + offset);
1354 offset += MIPS_REGSIZE;
1355 }
1356
1357 /* Check if the ra register was pushed on the stack. */
1358 offset = -4;
1359 if (entry_inst & 0x20)
1360 {
1361 PROC_REG_MASK(&temp_proc_desc) |= 1 << RA_REGNUM;
1362 set_reg_offset (RA_REGNUM, sp + offset);
1363 offset -= MIPS_REGSIZE;
1364 }
1365
1366 /* Check if the s0 and s1 registers were pushed on the stack. */
1367 for (reg = 16; reg < sreg_count+16; reg++)
1368 {
1369 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1370 set_reg_offset (reg, sp + offset);
1371 offset -= MIPS_REGSIZE;
1372 }
1373 }
1374 }
1375
1376 static void
1377 mips32_heuristic_proc_desc(start_pc, limit_pc, next_frame, sp)
1378 CORE_ADDR start_pc, limit_pc;
1379 struct frame_info *next_frame;
1380 CORE_ADDR sp;
1381 {
1382 CORE_ADDR cur_pc;
1383 CORE_ADDR frame_addr = 0; /* Value of $r30. Used by gcc for frame-pointer */
1384 restart:
1385 PROC_FRAME_OFFSET(&temp_proc_desc) = 0;
1386 PROC_FRAME_ADJUST (&temp_proc_desc) = 0; /* offset of FP from SP */
1387 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSTLEN)
1388 {
1389 unsigned long inst, high_word, low_word;
1390 int reg;
1391
1392 /* Fetch the instruction. */
1393 inst = (unsigned long) mips_fetch_instruction (cur_pc);
1394
1395 /* Save some code by pre-extracting some useful fields. */
1396 high_word = (inst >> 16) & 0xffff;
1397 low_word = inst & 0xffff;
1398 reg = high_word & 0x1f;
1399
1400 if (high_word == 0x27bd /* addiu $sp,$sp,-i */
1401 || high_word == 0x23bd /* addi $sp,$sp,-i */
1402 || high_word == 0x67bd) /* daddiu $sp,$sp,-i */
1403 {
1404 if (low_word & 0x8000) /* negative stack adjustment? */
1405 PROC_FRAME_OFFSET(&temp_proc_desc) += 0x10000 - low_word;
1406 else
1407 /* Exit loop if a positive stack adjustment is found, which
1408 usually means that the stack cleanup code in the function
1409 epilogue is reached. */
1410 break;
1411 }
1412 else if ((high_word & 0xFFE0) == 0xafa0) /* sw reg,offset($sp) */
1413 {
1414 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1415 set_reg_offset (reg, sp + low_word);
1416 }
1417 else if ((high_word & 0xFFE0) == 0xffa0) /* sd reg,offset($sp) */
1418 {
1419 /* Irix 6.2 N32 ABI uses sd instructions for saving $gp and $ra,
1420 but the register size used is only 32 bits. Make the address
1421 for the saved register point to the lower 32 bits. */
1422 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1423 set_reg_offset (reg, sp + low_word + 8 - MIPS_REGSIZE);
1424 }
1425 /* start-sanitize-r5900 */
1426 else if ((high_word & 0xFFE0) == 0x7fa0) /* sq reg,offset($sp) */
1427 {
1428 /* I don't think we have to worry about the Irix 6.2 N32 ABI
1429 issue noted int he sd reg, offset($sp) case above. */
1430 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1431 set_reg_offset (reg, sp + low_word);
1432 }
1433 /* end-sanitize-r5900 */
1434 else if (high_word == 0x27be) /* addiu $30,$sp,size */
1435 {
1436 /* Old gcc frame, r30 is virtual frame pointer. */
1437 if ((long)low_word != PROC_FRAME_OFFSET(&temp_proc_desc))
1438 frame_addr = sp + low_word;
1439 else if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
1440 {
1441 unsigned alloca_adjust;
1442 PROC_FRAME_REG (&temp_proc_desc) = 30;
1443 frame_addr = read_next_frame_reg(next_frame, 30);
1444 alloca_adjust = (unsigned)(frame_addr - (sp + low_word));
1445 if (alloca_adjust > 0)
1446 {
1447 /* FP > SP + frame_size. This may be because
1448 * of an alloca or somethings similar.
1449 * Fix sp to "pre-alloca" value, and try again.
1450 */
1451 sp += alloca_adjust;
1452 goto restart;
1453 }
1454 }
1455 }
1456 /* move $30,$sp. With different versions of gas this will be either
1457 `addu $30,$sp,$zero' or `or $30,$sp,$zero' or `daddu 30,sp,$0'.
1458 Accept any one of these. */
1459 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
1460 {
1461 /* New gcc frame, virtual frame pointer is at r30 + frame_size. */
1462 if (PROC_FRAME_REG (&temp_proc_desc) == SP_REGNUM)
1463 {
1464 unsigned alloca_adjust;
1465 PROC_FRAME_REG (&temp_proc_desc) = 30;
1466 frame_addr = read_next_frame_reg(next_frame, 30);
1467 alloca_adjust = (unsigned)(frame_addr - sp);
1468 if (alloca_adjust > 0)
1469 {
1470 /* FP > SP + frame_size. This may be because
1471 * of an alloca or somethings similar.
1472 * Fix sp to "pre-alloca" value, and try again.
1473 */
1474 sp += alloca_adjust;
1475 goto restart;
1476 }
1477 }
1478 }
1479 else if ((high_word & 0xFFE0) == 0xafc0) /* sw reg,offset($30) */
1480 {
1481 PROC_REG_MASK(&temp_proc_desc) |= 1 << reg;
1482 set_reg_offset (reg, frame_addr + low_word);
1483 }
1484 }
1485 }
1486
1487 static mips_extra_func_info_t
1488 heuristic_proc_desc(start_pc, limit_pc, next_frame)
1489 CORE_ADDR start_pc, limit_pc;
1490 struct frame_info *next_frame;
1491 {
1492 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
1493
1494 if (start_pc == 0) return NULL;
1495 memset (&temp_proc_desc, '\0', sizeof(temp_proc_desc));
1496 memset (&temp_saved_regs, '\0', sizeof(struct frame_saved_regs));
1497 PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
1498 PROC_FRAME_REG (&temp_proc_desc) = SP_REGNUM;
1499 PROC_PC_REG (&temp_proc_desc) = RA_REGNUM;
1500
1501 if (start_pc + 200 < limit_pc)
1502 limit_pc = start_pc + 200;
1503 if (pc_is_mips16 (start_pc))
1504 mips16_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
1505 else
1506 mips32_heuristic_proc_desc (start_pc, limit_pc, next_frame, sp);
1507 return &temp_proc_desc;
1508 }
1509
1510 static mips_extra_func_info_t
1511 non_heuristic_proc_desc (pc, addrptr)
1512 CORE_ADDR pc;
1513 CORE_ADDR *addrptr;
1514 {
1515 CORE_ADDR startaddr;
1516 mips_extra_func_info_t proc_desc;
1517 struct block *b = block_for_pc(pc);
1518 struct symbol *sym;
1519
1520 find_pc_partial_function (pc, NULL, &startaddr, NULL);
1521 if (addrptr)
1522 *addrptr = startaddr;
1523 if (b == NULL || PC_IN_CALL_DUMMY (pc, 0, 0))
1524 sym = NULL;
1525 else
1526 {
1527 if (startaddr > BLOCK_START (b))
1528 /* This is the "pathological" case referred to in a comment in
1529 print_frame_info. It might be better to move this check into
1530 symbol reading. */
1531 sym = NULL;
1532 else
1533 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, 0, NULL);
1534 }
1535
1536 /* If we never found a PDR for this function in symbol reading, then
1537 examine prologues to find the information. */
1538 if (sym)
1539 {
1540 proc_desc = (mips_extra_func_info_t) SYMBOL_VALUE (sym);
1541 if (PROC_FRAME_REG (proc_desc) == -1)
1542 return NULL;
1543 else
1544 return proc_desc;
1545 }
1546 else
1547 return NULL;
1548 }
1549
1550
1551 static mips_extra_func_info_t
1552 find_proc_desc (pc, next_frame)
1553 CORE_ADDR pc;
1554 struct frame_info *next_frame;
1555 {
1556 mips_extra_func_info_t proc_desc;
1557 CORE_ADDR startaddr;
1558
1559 proc_desc = non_heuristic_proc_desc (pc, &startaddr);
1560
1561 if (proc_desc)
1562 {
1563 /* IF this is the topmost frame AND
1564 * (this proc does not have debugging information OR
1565 * the PC is in the procedure prologue)
1566 * THEN create a "heuristic" proc_desc (by analyzing
1567 * the actual code) to replace the "official" proc_desc.
1568 */
1569 if (next_frame == NULL)
1570 {
1571 struct symtab_and_line val;
1572 struct symbol *proc_symbol =
1573 PROC_DESC_IS_DUMMY(proc_desc) ? 0 : PROC_SYMBOL(proc_desc);
1574
1575 if (proc_symbol)
1576 {
1577 val = find_pc_line (BLOCK_START
1578 (SYMBOL_BLOCK_VALUE(proc_symbol)),
1579 0);
1580 val.pc = val.end ? val.end : pc;
1581 }
1582 if (!proc_symbol || pc < val.pc)
1583 {
1584 mips_extra_func_info_t found_heuristic =
1585 heuristic_proc_desc (PROC_LOW_ADDR (proc_desc),
1586 pc, next_frame);
1587 if (found_heuristic)
1588 proc_desc = found_heuristic;
1589 }
1590 }
1591 }
1592 else
1593 {
1594 /* Is linked_proc_desc_table really necessary? It only seems to be used
1595 by procedure call dummys. However, the procedures being called ought
1596 to have their own proc_descs, and even if they don't,
1597 heuristic_proc_desc knows how to create them! */
1598
1599 register struct linked_proc_info *link;
1600
1601 for (link = linked_proc_desc_table; link; link = link->next)
1602 if (PROC_LOW_ADDR(&link->info) <= pc
1603 && PROC_HIGH_ADDR(&link->info) > pc)
1604 return &link->info;
1605
1606 if (startaddr == 0)
1607 startaddr = heuristic_proc_start (pc);
1608
1609 proc_desc =
1610 heuristic_proc_desc (startaddr, pc, next_frame);
1611 }
1612 return proc_desc;
1613 }
1614
1615 static CORE_ADDR
1616 get_frame_pointer(frame, proc_desc)
1617 struct frame_info *frame;
1618 mips_extra_func_info_t proc_desc;
1619 {
1620 return ADDR_BITS_REMOVE (
1621 read_next_frame_reg (frame, PROC_FRAME_REG (proc_desc)) +
1622 PROC_FRAME_OFFSET (proc_desc) - PROC_FRAME_ADJUST (proc_desc));
1623 }
1624
1625 mips_extra_func_info_t cached_proc_desc;
1626
1627 CORE_ADDR
1628 mips_frame_chain(frame)
1629 struct frame_info *frame;
1630 {
1631 mips_extra_func_info_t proc_desc;
1632 CORE_ADDR tmp;
1633 CORE_ADDR saved_pc = FRAME_SAVED_PC(frame);
1634
1635 if (saved_pc == 0 || inside_entry_file (saved_pc))
1636 return 0;
1637
1638 /* Check if the PC is inside a call stub. If it is, fetch the
1639 PC of the caller of that stub. */
1640 if ((tmp = mips_skip_stub (saved_pc)) != 0)
1641 saved_pc = tmp;
1642
1643 /* Look up the procedure descriptor for this PC. */
1644 proc_desc = find_proc_desc(saved_pc, frame);
1645 if (!proc_desc)
1646 return 0;
1647
1648 cached_proc_desc = proc_desc;
1649
1650 /* If no frame pointer and frame size is zero, we must be at end
1651 of stack (or otherwise hosed). If we don't check frame size,
1652 we loop forever if we see a zero size frame. */
1653 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
1654 && PROC_FRAME_OFFSET (proc_desc) == 0
1655 /* The previous frame from a sigtramp frame might be frameless
1656 and have frame size zero. */
1657 && !frame->signal_handler_caller)
1658 return 0;
1659 else
1660 return get_frame_pointer (frame, proc_desc);
1661 }
1662
1663 void
1664 init_extra_frame_info(fci)
1665 struct frame_info *fci;
1666 {
1667 int regnum;
1668
1669 /* Use proc_desc calculated in frame_chain */
1670 mips_extra_func_info_t proc_desc =
1671 fci->next ? cached_proc_desc : find_proc_desc(fci->pc, fci->next);
1672
1673 fci->saved_regs = NULL;
1674 fci->proc_desc =
1675 proc_desc == &temp_proc_desc ? 0 : proc_desc;
1676 if (proc_desc)
1677 {
1678 /* Fixup frame-pointer - only needed for top frame */
1679 /* This may not be quite right, if proc has a real frame register.
1680 Get the value of the frame relative sp, procedure might have been
1681 interrupted by a signal at it's very start. */
1682 if (fci->pc == PROC_LOW_ADDR (proc_desc)
1683 && !PROC_DESC_IS_DUMMY (proc_desc))
1684 fci->frame = read_next_frame_reg (fci->next, SP_REGNUM);
1685 else
1686 fci->frame = get_frame_pointer (fci->next, proc_desc);
1687
1688 if (proc_desc == &temp_proc_desc)
1689 {
1690 char *name;
1691
1692 /* Do not set the saved registers for a sigtramp frame,
1693 mips_find_saved_registers will do that for us.
1694 We can't use fci->signal_handler_caller, it is not yet set. */
1695 find_pc_partial_function (fci->pc, &name,
1696 (CORE_ADDR *)NULL,(CORE_ADDR *)NULL);
1697 if (!IN_SIGTRAMP (fci->pc, name))
1698 {
1699 fci->saved_regs = (struct frame_saved_regs*)
1700 obstack_alloc (&frame_cache_obstack,
1701 sizeof (struct frame_saved_regs));
1702 *fci->saved_regs = temp_saved_regs;
1703 fci->saved_regs->regs[PC_REGNUM]
1704 = fci->saved_regs->regs[RA_REGNUM];
1705 }
1706 }
1707
1708 /* hack: if argument regs are saved, guess these contain args */
1709 fci->num_args = -1; /* assume we can't tell how many args for now */
1710 for (regnum = MIPS_LAST_ARG_REGNUM; regnum >= A0_REGNUM; regnum--)
1711 {
1712 if (PROC_REG_MASK(proc_desc) & (1 << regnum))
1713 {
1714 fci->num_args = regnum - A0_REGNUM + 1;
1715 break;
1716 }
1717 }
1718 }
1719 }
1720
1721 /* MIPS stack frames are almost impenetrable. When execution stops,
1722 we basically have to look at symbol information for the function
1723 that we stopped in, which tells us *which* register (if any) is
1724 the base of the frame pointer, and what offset from that register
1725 the frame itself is at.
1726
1727 This presents a problem when trying to examine a stack in memory
1728 (that isn't executing at the moment), using the "frame" command. We
1729 don't have a PC, nor do we have any registers except SP.
1730
1731 This routine takes two arguments, SP and PC, and tries to make the
1732 cached frames look as if these two arguments defined a frame on the
1733 cache. This allows the rest of info frame to extract the important
1734 arguments without difficulty. */
1735
1736 struct frame_info *
1737 setup_arbitrary_frame (argc, argv)
1738 int argc;
1739 CORE_ADDR *argv;
1740 {
1741 if (argc != 2)
1742 error ("MIPS frame specifications require two arguments: sp and pc");
1743
1744 return create_new_frame (argv[0], argv[1]);
1745 }
1746
1747 /*
1748 * STACK_ARGSIZE -- how many bytes does a pushed function arg take up on the stack?
1749 *
1750 * For n32 ABI, eight.
1751 * For all others, he same as the size of a general register.
1752 */
1753 #if defined (_MIPS_SIM_NABI32) && _MIPS_SIM == _MIPS_SIM_NABI32
1754 #define MIPS_NABI32 1
1755 #define STACK_ARGSIZE 8
1756 #else
1757 #define MIPS_NABI32 0
1758 #define STACK_ARGSIZE MIPS_REGSIZE
1759 #endif
1760
1761 CORE_ADDR
1762 mips_push_arguments(nargs, args, sp, struct_return, struct_addr)
1763 int nargs;
1764 value_ptr *args;
1765 CORE_ADDR sp;
1766 int struct_return;
1767 CORE_ADDR struct_addr;
1768 {
1769 int argreg;
1770 int float_argreg;
1771 int argnum;
1772 int len = 0;
1773 int stack_offset = 0;
1774
1775 /* Macros to round N up or down to the next A boundary; A must be
1776 a power of two. */
1777 #define ROUND_DOWN(n,a) ((n) & ~((a)-1))
1778 #define ROUND_UP(n,a) (((n)+(a)-1) & ~((a)-1))
1779
1780 /* First ensure that the stack and structure return address (if any)
1781 are properly aligned. The stack has to be at least 64-bit aligned
1782 even on 32-bit machines, because doubles must be 64-bit aligned.
1783 On at least one MIPS variant, stack frames need to be 128-bit
1784 aligned, so we round to this widest known alignment. */
1785 sp = ROUND_DOWN (sp, 16);
1786 struct_addr = ROUND_DOWN (struct_addr, MIPS_REGSIZE);
1787
1788 /* Now make space on the stack for the args. We allocate more
1789 than necessary for EABI, because the first few arguments are
1790 passed in registers, but that's OK. */
1791 for (argnum = 0; argnum < nargs; argnum++)
1792 len += ROUND_UP (TYPE_LENGTH(VALUE_TYPE(args[argnum])), MIPS_REGSIZE);
1793 sp -= ROUND_UP (len, 16);
1794
1795 /* Initialize the integer and float register pointers. */
1796 argreg = A0_REGNUM;
1797 float_argreg = FPA0_REGNUM;
1798
1799 /* the struct_return pointer occupies the first parameter-passing reg */
1800 if (struct_return)
1801 write_register (argreg++, struct_addr);
1802
1803 /* Now load as many as possible of the first arguments into
1804 registers, and push the rest onto the stack. Loop thru args
1805 from first to last. */
1806 for (argnum = 0; argnum < nargs; argnum++)
1807 {
1808 char *val;
1809 char valbuf[MAX_REGISTER_RAW_SIZE];
1810 value_ptr arg = args[argnum];
1811 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
1812 int len = TYPE_LENGTH (arg_type);
1813 enum type_code typecode = TYPE_CODE (arg_type);
1814
1815 /* The EABI passes structures that do not fit in a register by
1816 reference. In all other cases, pass the structure by value. */
1817 if (MIPS_EABI && len > MIPS_REGSIZE &&
1818 (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
1819 {
1820 store_address (valbuf, MIPS_REGSIZE, VALUE_ADDRESS (arg));
1821 typecode = TYPE_CODE_PTR;
1822 len = MIPS_REGSIZE;
1823 val = valbuf;
1824 }
1825 else
1826 val = (char *)VALUE_CONTENTS (arg);
1827
1828 /* 32-bit ABIs always start floating point arguments in an
1829 even-numbered floating point register. */
1830 if (!FP_REGISTER_DOUBLE && typecode == TYPE_CODE_FLT
1831 && (float_argreg & 1))
1832 float_argreg++;
1833
1834 /* Floating point arguments passed in registers have to be
1835 treated specially. On 32-bit architectures, doubles
1836 are passed in register pairs; the even register gets
1837 the low word, and the odd register gets the high word.
1838 On non-EABI processors, the first two floating point arguments are
1839 also copied to general registers, because MIPS16 functions
1840 don't use float registers for arguments. This duplication of
1841 arguments in general registers can't hurt non-MIPS16 functions
1842 because those registers are normally skipped. */
1843 if (typecode == TYPE_CODE_FLT
1844 && float_argreg <= MIPS_LAST_FP_ARG_REGNUM
1845 && mips_fpu != MIPS_FPU_NONE)
1846 {
1847 if (!FP_REGISTER_DOUBLE && len == 8)
1848 {
1849 int low_offset = TARGET_BYTE_ORDER == BIG_ENDIAN ? 4 : 0;
1850 unsigned long regval;
1851
1852 /* Write the low word of the double to the even register(s). */
1853 regval = extract_unsigned_integer (val+low_offset, 4);
1854 write_register (float_argreg++, regval);
1855 if (!MIPS_EABI)
1856 write_register (argreg+1, regval);
1857
1858 /* Write the high word of the double to the odd register(s). */
1859 regval = extract_unsigned_integer (val+4-low_offset, 4);
1860 write_register (float_argreg++, regval);
1861 if (!MIPS_EABI)
1862 {
1863 write_register (argreg, regval);
1864 argreg += 2;
1865 }
1866
1867 }
1868 else
1869 {
1870 /* This is a floating point value that fits entirely
1871 in a single register. */
1872 CORE_ADDR regval = extract_address (val, len);
1873 write_register (float_argreg++, regval);
1874 if (!MIPS_EABI)
1875 {
1876 write_register (argreg, regval);
1877 argreg += FP_REGISTER_DOUBLE ? 1 : 2;
1878 }
1879 }
1880 }
1881 else
1882 {
1883 /* Copy the argument to general registers or the stack in
1884 register-sized pieces. Large arguments are split between
1885 registers and stack. */
1886 /* Note: structs whose size is not a multiple of MIPS_REGSIZE
1887 are treated specially: Irix cc passes them in registers
1888 where gcc sometimes puts them on the stack. For maximum
1889 compatibility, we will put them in both places. */
1890
1891 int odd_sized_struct = ((len > MIPS_REGSIZE) &&
1892 (len % MIPS_REGSIZE != 0));
1893 while (len > 0)
1894 {
1895 int partial_len = len < MIPS_REGSIZE ? len : MIPS_REGSIZE;
1896
1897 if (argreg > MIPS_LAST_ARG_REGNUM || odd_sized_struct)
1898 {
1899 /* Write this portion of the argument to the stack. */
1900 /* Should shorter than int integer values be
1901 promoted to int before being stored? */
1902
1903 int longword_offset = 0;
1904 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
1905 if (STACK_ARGSIZE == 8 &&
1906 (typecode == TYPE_CODE_INT ||
1907 typecode == TYPE_CODE_PTR ||
1908 typecode == TYPE_CODE_FLT) && len <= 4)
1909 longword_offset = STACK_ARGSIZE - len;
1910 else if ((typecode == TYPE_CODE_STRUCT ||
1911 typecode == TYPE_CODE_UNION) &&
1912 TYPE_LENGTH (arg_type) < STACK_ARGSIZE)
1913 longword_offset = STACK_ARGSIZE - len;
1914
1915 write_memory (sp + stack_offset + longword_offset,
1916 val, partial_len);
1917 }
1918
1919 /* Note!!! This is NOT an else clause.
1920 Odd sized structs may go thru BOTH paths. */
1921 if (argreg <= MIPS_LAST_ARG_REGNUM)
1922 {
1923 CORE_ADDR regval = extract_address (val, partial_len);
1924
1925 /* A non-floating-point argument being passed in a
1926 general register. If a struct or union, and if
1927 the remaining length is smaller than the register
1928 size, we have to adjust the register value on
1929 big endian targets.
1930
1931 It does not seem to be necessary to do the
1932 same for integral types.
1933
1934 Also don't do this adjustment on EABI targets. */
1935
1936 if (!MIPS_EABI &&
1937 TARGET_BYTE_ORDER == BIG_ENDIAN &&
1938 partial_len < MIPS_REGSIZE &&
1939 (typecode == TYPE_CODE_STRUCT ||
1940 typecode == TYPE_CODE_UNION))
1941 regval <<= ((MIPS_REGSIZE - partial_len) *
1942 TARGET_CHAR_BIT);
1943
1944 write_register (argreg, regval);
1945 argreg++;
1946
1947 /* If this is the old ABI, prevent subsequent floating
1948 point arguments from being passed in floating point
1949 registers. */
1950 if (!MIPS_EABI)
1951 float_argreg = MIPS_LAST_FP_ARG_REGNUM + 1;
1952 }
1953
1954 len -= partial_len;
1955 val += partial_len;
1956
1957 /* The offset onto the stack at which we will start
1958 copying parameters (after the registers are used up)
1959 begins at (4 * MIPS_REGSIZE) in the old ABI. This
1960 leaves room for the "home" area for register parameters.
1961
1962 In the new EABI (and the NABI32), the 8 register parameters
1963 do not have "home" stack space reserved for them, so the
1964 stack offset does not get incremented until after
1965 we have used up the 8 parameter registers. */
1966
1967 if (!(MIPS_EABI || MIPS_NABI32) ||
1968 argnum >= 8)
1969 stack_offset += ROUND_UP (partial_len, STACK_ARGSIZE);
1970 }
1971 }
1972 }
1973
1974 /* Set the return address register to point to the entry
1975 point of the program, where a breakpoint lies in wait. */
1976 write_register (RA_REGNUM, CALL_DUMMY_ADDRESS());
1977
1978 /* Return adjusted stack pointer. */
1979 return sp;
1980 }
1981
1982 static void
1983 mips_push_register(CORE_ADDR *sp, int regno)
1984 {
1985 char buffer[MAX_REGISTER_RAW_SIZE];
1986 int regsize = REGISTER_RAW_SIZE (regno);
1987
1988 *sp -= regsize;
1989 read_register_gen (regno, buffer);
1990 write_memory (*sp, buffer, regsize);
1991 }
1992
1993 /* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<(MIPS_NUMREGS-1). */
1994 #define MASK(i,j) (((1 << ((j)+1))-1) ^ ((1 << (i))-1))
1995
1996 void
1997 mips_push_dummy_frame()
1998 {
1999 int ireg;
2000 struct linked_proc_info *link = (struct linked_proc_info*)
2001 xmalloc(sizeof(struct linked_proc_info));
2002 mips_extra_func_info_t proc_desc = &link->info;
2003 CORE_ADDR sp = ADDR_BITS_REMOVE (read_register (SP_REGNUM));
2004 CORE_ADDR old_sp = sp;
2005 link->next = linked_proc_desc_table;
2006 linked_proc_desc_table = link;
2007
2008 /* FIXME! are these correct ? */
2009 #define PUSH_FP_REGNUM 16 /* must be a register preserved across calls */
2010 #define GEN_REG_SAVE_MASK MASK(1,16)|MASK(24,28)|(1<<(MIPS_NUMREGS-1))
2011 #define FLOAT_REG_SAVE_MASK MASK(0,19)
2012 #define FLOAT_SINGLE_REG_SAVE_MASK \
2013 ((1<<18)|(1<<16)|(1<<14)|(1<<12)|(1<<10)|(1<<8)|(1<<6)|(1<<4)|(1<<2)|(1<<0))
2014 /*
2015 * The registers we must save are all those not preserved across
2016 * procedure calls. Dest_Reg (see tm-mips.h) must also be saved.
2017 * In addition, we must save the PC, PUSH_FP_REGNUM, MMLO/-HI
2018 * and FP Control/Status registers.
2019 *
2020 *
2021 * Dummy frame layout:
2022 * (high memory)
2023 * Saved PC
2024 * Saved MMHI, MMLO, FPC_CSR
2025 * Saved R31
2026 * Saved R28
2027 * ...
2028 * Saved R1
2029 * Saved D18 (i.e. F19, F18)
2030 * ...
2031 * Saved D0 (i.e. F1, F0)
2032 * Argument build area and stack arguments written via mips_push_arguments
2033 * (low memory)
2034 */
2035
2036 /* Save special registers (PC, MMHI, MMLO, FPC_CSR) */
2037 PROC_FRAME_REG(proc_desc) = PUSH_FP_REGNUM;
2038 PROC_FRAME_OFFSET(proc_desc) = 0;
2039 PROC_FRAME_ADJUST(proc_desc) = 0;
2040 mips_push_register (&sp, PC_REGNUM);
2041 mips_push_register (&sp, HI_REGNUM);
2042 mips_push_register (&sp, LO_REGNUM);
2043 mips_push_register (&sp, mips_fpu == MIPS_FPU_NONE ? 0 : FCRCS_REGNUM);
2044
2045 /* Save general CPU registers */
2046 PROC_REG_MASK(proc_desc) = GEN_REG_SAVE_MASK;
2047 /* PROC_REG_OFFSET is the offset of the first saved register from FP. */
2048 PROC_REG_OFFSET(proc_desc) = sp - old_sp - MIPS_REGSIZE;
2049 for (ireg = 32; --ireg >= 0; )
2050 if (PROC_REG_MASK(proc_desc) & (1 << ireg))
2051 mips_push_register (&sp, ireg);
2052
2053 /* Save floating point registers starting with high order word */
2054 PROC_FREG_MASK(proc_desc) =
2055 mips_fpu == MIPS_FPU_DOUBLE ? FLOAT_REG_SAVE_MASK
2056 : mips_fpu == MIPS_FPU_SINGLE ? FLOAT_SINGLE_REG_SAVE_MASK : 0;
2057 /* PROC_FREG_OFFSET is the offset of the first saved *double* register
2058 from FP. */
2059 PROC_FREG_OFFSET(proc_desc) = sp - old_sp - 8;
2060 for (ireg = 32; --ireg >= 0; )
2061 if (PROC_FREG_MASK(proc_desc) & (1 << ireg))
2062 mips_push_register (&sp, ireg + FP0_REGNUM);
2063
2064 /* Update the frame pointer for the call dummy and the stack pointer.
2065 Set the procedure's starting and ending addresses to point to the
2066 call dummy address at the entry point. */
2067 write_register (PUSH_FP_REGNUM, old_sp);
2068 write_register (SP_REGNUM, sp);
2069 PROC_LOW_ADDR(proc_desc) = CALL_DUMMY_ADDRESS();
2070 PROC_HIGH_ADDR(proc_desc) = CALL_DUMMY_ADDRESS() + 4;
2071 SET_PROC_DESC_IS_DUMMY(proc_desc);
2072 PROC_PC_REG(proc_desc) = RA_REGNUM;
2073 }
2074
2075 void
2076 mips_pop_frame()
2077 {
2078 register int regnum;
2079 struct frame_info *frame = get_current_frame ();
2080 CORE_ADDR new_sp = FRAME_FP (frame);
2081
2082 mips_extra_func_info_t proc_desc = frame->proc_desc;
2083
2084 write_register (PC_REGNUM, FRAME_SAVED_PC(frame));
2085 if (frame->saved_regs == NULL)
2086 mips_find_saved_regs (frame);
2087 for (regnum = 0; regnum < NUM_REGS; regnum++)
2088 {
2089 if (regnum != SP_REGNUM && regnum != PC_REGNUM
2090 && frame->saved_regs->regs[regnum])
2091 write_register (regnum,
2092 read_memory_integer (frame->saved_regs->regs[regnum],
2093 MIPS_REGSIZE));
2094 }
2095 write_register (SP_REGNUM, new_sp);
2096 flush_cached_frames ();
2097
2098 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
2099 {
2100 struct linked_proc_info *pi_ptr, *prev_ptr;
2101
2102 for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL;
2103 pi_ptr != NULL;
2104 prev_ptr = pi_ptr, pi_ptr = pi_ptr->next)
2105 {
2106 if (&pi_ptr->info == proc_desc)
2107 break;
2108 }
2109
2110 if (pi_ptr == NULL)
2111 error ("Can't locate dummy extra frame info\n");
2112
2113 if (prev_ptr != NULL)
2114 prev_ptr->next = pi_ptr->next;
2115 else
2116 linked_proc_desc_table = pi_ptr->next;
2117
2118 free (pi_ptr);
2119
2120 write_register (HI_REGNUM,
2121 read_memory_integer (new_sp - 2*MIPS_REGSIZE, MIPS_REGSIZE));
2122 write_register (LO_REGNUM,
2123 read_memory_integer (new_sp - 3*MIPS_REGSIZE, MIPS_REGSIZE));
2124 if (mips_fpu != MIPS_FPU_NONE)
2125 write_register (FCRCS_REGNUM,
2126 read_memory_integer (new_sp - 4*MIPS_REGSIZE, MIPS_REGSIZE));
2127 }
2128 }
2129
2130 static void
2131 mips_print_register (regnum, all)
2132 int regnum, all;
2133 {
2134 char raw_buffer[MAX_REGISTER_RAW_SIZE];
2135
2136 /* Get the data in raw format. */
2137 if (read_relative_register_raw_bytes (regnum, raw_buffer))
2138 {
2139 printf_filtered ("%s: [Invalid]", reg_names[regnum]);
2140 return;
2141 }
2142
2143 /* If an even floating point register, also print as double. */
2144 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT
2145 && !((regnum-FP0_REGNUM) & 1))
2146 if (REGISTER_RAW_SIZE(regnum) == 4) /* this would be silly on MIPS64 or N32 (Irix 6) */
2147 {
2148 char dbuffer[2 * MAX_REGISTER_RAW_SIZE];
2149
2150 read_relative_register_raw_bytes (regnum, dbuffer);
2151 read_relative_register_raw_bytes (regnum+1, dbuffer+MIPS_REGSIZE);
2152 REGISTER_CONVERT_TO_TYPE (regnum, builtin_type_double, dbuffer);
2153
2154 printf_filtered ("(d%d: ", regnum-FP0_REGNUM);
2155 val_print (builtin_type_double, dbuffer, 0,
2156 gdb_stdout, 0, 1, 0, Val_pretty_default);
2157 printf_filtered ("); ");
2158 }
2159 fputs_filtered (reg_names[regnum], gdb_stdout);
2160
2161 /* The problem with printing numeric register names (r26, etc.) is that
2162 the user can't use them on input. Probably the best solution is to
2163 fix it so that either the numeric or the funky (a2, etc.) names
2164 are accepted on input. */
2165 if (regnum < MIPS_NUMREGS)
2166 printf_filtered ("(r%d): ", regnum);
2167 else
2168 printf_filtered (": ");
2169
2170 /* If virtual format is floating, print it that way. */
2171 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2172 if (FP_REGISTER_DOUBLE)
2173 { /* show 8-byte floats as float AND double: */
2174 int offset = 4 * (TARGET_BYTE_ORDER == BIG_ENDIAN);
2175
2176 printf_filtered (" (float) ");
2177 val_print (builtin_type_float, raw_buffer + offset, 0,
2178 gdb_stdout, 0, 1, 0, Val_pretty_default);
2179 printf_filtered (", (double) ");
2180 val_print (builtin_type_double, raw_buffer, 0,
2181 gdb_stdout, 0, 1, 0, Val_pretty_default);
2182 }
2183 else
2184 val_print (REGISTER_VIRTUAL_TYPE (regnum), raw_buffer, 0,
2185 gdb_stdout, 0, 1, 0, Val_pretty_default);
2186 /* Else print as integer in hex. */
2187 else
2188 print_scalar_formatted (raw_buffer, REGISTER_VIRTUAL_TYPE (regnum),
2189 'x', 0, gdb_stdout);
2190 }
2191
2192 /* Replacement for generic do_registers_info.
2193 Print regs in pretty columns. */
2194
2195 static int
2196 do_fp_register_row (regnum)
2197 int regnum;
2198 { /* do values for FP (float) regs */
2199 char *raw_buffer[2];
2200 char *dbl_buffer;
2201 /* use HI and LO to control the order of combining two flt regs */
2202 int HI = (TARGET_BYTE_ORDER == BIG_ENDIAN);
2203 int LO = (TARGET_BYTE_ORDER != BIG_ENDIAN);
2204 double doub, flt1, flt2; /* doubles extracted from raw hex data */
2205 int inv1, inv2, inv3;
2206
2207 raw_buffer[0] = (char *) alloca (REGISTER_RAW_SIZE (FP0_REGNUM));
2208 raw_buffer[1] = (char *) alloca (REGISTER_RAW_SIZE (FP0_REGNUM));
2209 dbl_buffer = (char *) alloca (2 * REGISTER_RAW_SIZE (FP0_REGNUM));
2210
2211 /* Get the data in raw format. */
2212 if (read_relative_register_raw_bytes (regnum, raw_buffer[HI]))
2213 error ("can't read register %d (%s)", regnum, reg_names[regnum]);
2214 if (REGISTER_RAW_SIZE(regnum) == 4)
2215 {
2216 /* 4-byte registers: we can fit two registers per row. */
2217 /* Also print every pair of 4-byte regs as an 8-byte double. */
2218 if (read_relative_register_raw_bytes (regnum + 1, raw_buffer[LO]))
2219 error ("can't read register %d (%s)",
2220 regnum + 1, reg_names[regnum + 1]);
2221
2222 /* copy the two floats into one double, and unpack both */
2223 memcpy (dbl_buffer, raw_buffer, sizeof(dbl_buffer));
2224 flt1 = unpack_double (builtin_type_float, raw_buffer[HI], &inv1);
2225 flt2 = unpack_double (builtin_type_float, raw_buffer[LO], &inv2);
2226 doub = unpack_double (builtin_type_double, dbl_buffer, &inv3);
2227
2228 printf_filtered (inv1 ? " %-5s: <invalid float>" :
2229 " %-5s%-17.9g", reg_names[regnum], flt1);
2230 printf_filtered (inv2 ? " %-5s: <invalid float>" :
2231 " %-5s%-17.9g", reg_names[regnum + 1], flt2);
2232 printf_filtered (inv3 ? " dbl: <invalid double>\n" :
2233 " dbl: %-24.17g\n", doub);
2234 /* may want to do hex display here (future enhancement) */
2235 regnum +=2;
2236 }
2237 else
2238 { /* eight byte registers: print each one as float AND as double. */
2239 int offset = 4 * (TARGET_BYTE_ORDER == BIG_ENDIAN);
2240
2241 memcpy (dbl_buffer, raw_buffer[HI], sizeof(dbl_buffer));
2242 flt1 = unpack_double (builtin_type_float,
2243 &raw_buffer[HI][offset], &inv1);
2244 doub = unpack_double (builtin_type_double, dbl_buffer, &inv3);
2245
2246 printf_filtered (inv1 ? " %-5s: <invalid float>" :
2247 " %-5s flt: %-17.9g", reg_names[regnum], flt1);
2248 printf_filtered (inv3 ? " dbl: <invalid double>\n" :
2249 " dbl: %-24.17g\n", doub);
2250 /* may want to do hex display here (future enhancement) */
2251 regnum++;
2252 }
2253 return regnum;
2254 }
2255
2256 /* Print a row's worth of GP (int) registers, with name labels above */
2257
2258 static int
2259 do_gp_register_row (regnum)
2260 int regnum;
2261 {
2262 /* do values for GP (int) regs */
2263 char raw_buffer[MAX_REGISTER_RAW_SIZE];
2264 int ncols = (MIPS_REGSIZE == 8 ? 4 : 8); /* display cols per row */
2265 int col, byte;
2266 int start_regnum = regnum;
2267 int numregs = NUM_REGS;
2268
2269 /* start-sanitize-sky */
2270 #ifdef NUM_CORE_REGS
2271 numregs = NUM_CORE_REGS;
2272 #endif
2273 /* end-sanitize-sky */
2274
2275 /* For GP registers, we print a separate row of names above the vals */
2276 printf_filtered (" ");
2277 for (col = 0; col < ncols && regnum < numregs; regnum++)
2278 {
2279 if (*reg_names[regnum] == '\0')
2280 continue; /* unused register */
2281 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2282 break; /* end the row: reached FP register */
2283 printf_filtered (MIPS_REGSIZE == 8 ? "%17s" : "%9s",
2284 reg_names[regnum]);
2285 col++;
2286 }
2287 printf_filtered (start_regnum < MIPS_NUMREGS ? "\n R%-4d" : "\n ",
2288 start_regnum); /* print the R0 to R31 names */
2289
2290 regnum = start_regnum; /* go back to start of row */
2291 /* now print the values in hex, 4 or 8 to the row */
2292 for (col = 0; col < ncols && regnum < numregs; regnum++)
2293 {
2294 if (*reg_names[regnum] == '\0')
2295 continue; /* unused register */
2296 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2297 break; /* end row: reached FP register */
2298 /* OK: get the data in raw format. */
2299 if (read_relative_register_raw_bytes (regnum, raw_buffer))
2300 error ("can't read register %d (%s)", regnum, reg_names[regnum]);
2301 /* pad small registers */
2302 for (byte = 0; byte < (MIPS_REGSIZE - REGISTER_RAW_SIZE (regnum)); byte++)
2303 printf_filtered (" ");
2304 /* Now print the register value in hex, endian order. */
2305 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2306 for (byte = 0; byte < REGISTER_RAW_SIZE (regnum); byte++)
2307 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
2308 else
2309 for (byte = REGISTER_RAW_SIZE (regnum) - 1; byte >= 0; byte--)
2310 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
2311 printf_filtered (" ");
2312 col++;
2313 }
2314 if (col > 0) /* ie. if we actually printed anything... */
2315 printf_filtered ("\n");
2316
2317 return regnum;
2318 }
2319
2320 /* MIPS_DO_REGISTERS_INFO(): called by "info register" command */
2321
2322 void
2323 mips_do_registers_info (regnum, fpregs)
2324 int regnum;
2325 int fpregs;
2326 {
2327 if (regnum != -1) /* do one specified register */
2328 {
2329 if (*(reg_names[regnum]) == '\0')
2330 error ("Not a valid register for the current processor type");
2331
2332 mips_print_register (regnum, 0);
2333 printf_filtered ("\n");
2334 }
2335 else /* do all (or most) registers */
2336 {
2337 regnum = 0;
2338 while (regnum < NUM_REGS)
2339 {
2340 if (TYPE_CODE(REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT)
2341 if (fpregs) /* true for "INFO ALL-REGISTERS" command */
2342 regnum = do_fp_register_row (regnum); /* FP regs */
2343 else
2344 regnum += MIPS_NUMREGS; /* skip floating point regs */
2345 else
2346 regnum = do_gp_register_row (regnum); /* GP (int) regs */
2347 /* start-sanitize-sky */
2348 #ifdef NUM_CORE_REGS
2349 /* For the sky project, NUM_REGS includes the vector slaves,
2350 which are handled elsewhere */
2351 if (regnum >= NUM_CORE_REGS)
2352 break;
2353 #endif
2354 /* end-sanitize-sky */
2355 }
2356 }
2357 }
2358
2359 /* Return number of args passed to a frame. described by FIP.
2360 Can return -1, meaning no way to tell. */
2361
2362 int
2363 mips_frame_num_args (frame)
2364 struct frame_info *frame;
2365 {
2366 #if 0 /* FIXME Use or lose this! */
2367 struct chain_info_t *p;
2368
2369 p = mips_find_cached_frame (FRAME_FP (frame));
2370 if (p->valid)
2371 return p->the_info.numargs;
2372 #endif
2373 return -1;
2374 }
2375
2376 /* Is this a branch with a delay slot? */
2377
2378 static int is_delayed PARAMS ((unsigned long));
2379
2380 static int
2381 is_delayed (insn)
2382 unsigned long insn;
2383 {
2384 int i;
2385 for (i = 0; i < NUMOPCODES; ++i)
2386 if (mips_opcodes[i].pinfo != INSN_MACRO
2387 && (insn & mips_opcodes[i].mask) == mips_opcodes[i].match)
2388 break;
2389 return (i < NUMOPCODES
2390 && (mips_opcodes[i].pinfo & (INSN_UNCOND_BRANCH_DELAY
2391 | INSN_COND_BRANCH_DELAY
2392 | INSN_COND_BRANCH_LIKELY)));
2393 }
2394
2395 int
2396 mips_step_skips_delay (pc)
2397 CORE_ADDR pc;
2398 {
2399 char buf[MIPS_INSTLEN];
2400
2401 /* There is no branch delay slot on MIPS16. */
2402 if (pc_is_mips16 (pc))
2403 return 0;
2404
2405 if (target_read_memory (pc, buf, MIPS_INSTLEN) != 0)
2406 /* If error reading memory, guess that it is not a delayed branch. */
2407 return 0;
2408 return is_delayed ((unsigned long)extract_unsigned_integer (buf, MIPS_INSTLEN));
2409 }
2410
2411
2412 /* Skip the PC past function prologue instructions (32-bit version).
2413 This is a helper function for mips_skip_prologue. */
2414
2415 static CORE_ADDR
2416 mips32_skip_prologue (pc, lenient)
2417 CORE_ADDR pc; /* starting PC to search from */
2418 int lenient;
2419 {
2420 t_inst inst;
2421 CORE_ADDR end_pc;
2422 int seen_sp_adjust = 0;
2423 int load_immediate_bytes = 0;
2424
2425 /* Skip the typical prologue instructions. These are the stack adjustment
2426 instruction and the instructions that save registers on the stack
2427 or in the gcc frame. */
2428 for (end_pc = pc + 100; pc < end_pc; pc += MIPS_INSTLEN)
2429 {
2430 unsigned long high_word;
2431
2432 inst = mips_fetch_instruction (pc);
2433 high_word = (inst >> 16) & 0xffff;
2434
2435 #if 0
2436 if (lenient && is_delayed (inst))
2437 continue;
2438 #endif
2439
2440 if (high_word == 0x27bd /* addiu $sp,$sp,offset */
2441 || high_word == 0x67bd) /* daddiu $sp,$sp,offset */
2442 seen_sp_adjust = 1;
2443 else if (inst == 0x03a1e823 || /* subu $sp,$sp,$at */
2444 inst == 0x03a8e823) /* subu $sp,$sp,$t0 */
2445 seen_sp_adjust = 1;
2446 else if (((inst & 0xFFE00000) == 0xAFA00000 /* sw reg,n($sp) */
2447 /* start-sanitize-r5900 */
2448 || (inst & 0xFFE00000) == 0x7FA00000 /* sq reg,n($sp) */
2449 /* end-sanitize-r5900 */
2450 || (inst & 0xFFE00000) == 0xFFA00000) /* sd reg,n($sp) */
2451 && (inst & 0x001F0000)) /* reg != $zero */
2452 continue;
2453
2454 else if ((inst & 0xFFE00000) == 0xE7A00000) /* swc1 freg,n($sp) */
2455 continue;
2456 else if ((inst & 0xF3E00000) == 0xA3C00000 && (inst & 0x001F0000))
2457 /* sx reg,n($s8) */
2458 continue; /* reg != $zero */
2459
2460 /* move $s8,$sp. With different versions of gas this will be either
2461 `addu $s8,$sp,$zero' or `or $s8,$sp,$zero' or `daddu s8,sp,$0'.
2462 Accept any one of these. */
2463 else if (inst == 0x03A0F021 || inst == 0x03a0f025 || inst == 0x03a0f02d)
2464 continue;
2465
2466 else if ((inst & 0xFF9F07FF) == 0x00800021) /* move reg,$a0-$a3 */
2467 continue;
2468 else if (high_word == 0x3c1c) /* lui $gp,n */
2469 continue;
2470 else if (high_word == 0x279c) /* addiu $gp,$gp,n */
2471 continue;
2472 else if (inst == 0x0399e021 /* addu $gp,$gp,$t9 */
2473 || inst == 0x033ce021) /* addu $gp,$t9,$gp */
2474 continue;
2475 /* The following instructions load $at or $t0 with an immediate
2476 value in preparation for a stack adjustment via
2477 subu $sp,$sp,[$at,$t0]. These instructions could also initialize
2478 a local variable, so we accept them only before a stack adjustment
2479 instruction was seen. */
2480 else if (!seen_sp_adjust)
2481 {
2482 if (high_word == 0x3c01 || /* lui $at,n */
2483 high_word == 0x3c08) /* lui $t0,n */
2484 {
2485 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
2486 continue;
2487 }
2488 else if (high_word == 0x3421 || /* ori $at,$at,n */
2489 high_word == 0x3508 || /* ori $t0,$t0,n */
2490 high_word == 0x3401 || /* ori $at,$zero,n */
2491 high_word == 0x3408) /* ori $t0,$zero,n */
2492 {
2493 load_immediate_bytes += MIPS_INSTLEN; /* FIXME!! */
2494 continue;
2495 }
2496 else
2497 break;
2498 }
2499 else
2500 break;
2501 }
2502
2503 /* In a frameless function, we might have incorrectly
2504 skipped some load immediate instructions. Undo the skipping
2505 if the load immediate was not followed by a stack adjustment. */
2506 if (load_immediate_bytes && !seen_sp_adjust)
2507 pc -= load_immediate_bytes;
2508 return pc;
2509 }
2510
2511 /* Skip the PC past function prologue instructions (16-bit version).
2512 This is a helper function for mips_skip_prologue. */
2513
2514 static CORE_ADDR
2515 mips16_skip_prologue (pc, lenient)
2516 CORE_ADDR pc; /* starting PC to search from */
2517 int lenient;
2518 {
2519 CORE_ADDR end_pc;
2520 int extend_bytes = 0;
2521 int prev_extend_bytes;
2522
2523 /* Table of instructions likely to be found in a function prologue. */
2524 static struct
2525 {
2526 unsigned short inst;
2527 unsigned short mask;
2528 } table[] =
2529 {
2530 { 0x6300, 0xff00 }, /* addiu $sp,offset */
2531 { 0xfb00, 0xff00 }, /* daddiu $sp,offset */
2532 { 0xd000, 0xf800 }, /* sw reg,n($sp) */
2533 { 0xf900, 0xff00 }, /* sd reg,n($sp) */
2534 { 0x6200, 0xff00 }, /* sw $ra,n($sp) */
2535 { 0xfa00, 0xff00 }, /* sd $ra,n($sp) */
2536 { 0x673d, 0xffff }, /* move $s1,sp */
2537 { 0xd980, 0xff80 }, /* sw $a0-$a3,n($s1) */
2538 { 0x6704, 0xff1c }, /* move reg,$a0-$a3 */
2539 { 0xe809, 0xf81f }, /* entry pseudo-op */
2540 { 0x0100, 0xff00 }, /* addiu $s1,$sp,n */
2541 { 0, 0 } /* end of table marker */
2542 };
2543
2544 /* Skip the typical prologue instructions. These are the stack adjustment
2545 instruction and the instructions that save registers on the stack
2546 or in the gcc frame. */
2547 for (end_pc = pc + 100; pc < end_pc; pc += MIPS16_INSTLEN)
2548 {
2549 unsigned short inst;
2550 int i;
2551
2552 inst = mips_fetch_instruction (pc);
2553
2554 /* Normally we ignore an extend instruction. However, if it is
2555 not followed by a valid prologue instruction, we must adjust
2556 the pc back over the extend so that it won't be considered
2557 part of the prologue. */
2558 if ((inst & 0xf800) == 0xf000) /* extend */
2559 {
2560 extend_bytes = MIPS16_INSTLEN;
2561 continue;
2562 }
2563 prev_extend_bytes = extend_bytes;
2564 extend_bytes = 0;
2565
2566 /* Check for other valid prologue instructions besides extend. */
2567 for (i = 0; table[i].mask != 0; i++)
2568 if ((inst & table[i].mask) == table[i].inst) /* found, get out */
2569 break;
2570 if (table[i].mask != 0) /* it was in table? */
2571 continue; /* ignore it */
2572 else /* non-prologue */
2573 {
2574 /* Return the current pc, adjusted backwards by 2 if
2575 the previous instruction was an extend. */
2576 return pc - prev_extend_bytes;
2577 }
2578 }
2579 return pc;
2580 }
2581
2582 /* To skip prologues, I use this predicate. Returns either PC itself
2583 if the code at PC does not look like a function prologue; otherwise
2584 returns an address that (if we're lucky) follows the prologue. If
2585 LENIENT, then we must skip everything which is involved in setting
2586 up the frame (it's OK to skip more, just so long as we don't skip
2587 anything which might clobber the registers which are being saved.
2588 We must skip more in the case where part of the prologue is in the
2589 delay slot of a non-prologue instruction). */
2590
2591 CORE_ADDR
2592 mips_skip_prologue (pc, lenient)
2593 CORE_ADDR pc;
2594 int lenient;
2595 {
2596 /* See if we can determine the end of the prologue via the symbol table.
2597 If so, then return either PC, or the PC after the prologue, whichever
2598 is greater. */
2599
2600 CORE_ADDR post_prologue_pc = after_prologue (pc, NULL);
2601
2602 if (post_prologue_pc != 0)
2603 return max (pc, post_prologue_pc);
2604
2605 /* Can't determine prologue from the symbol table, need to examine
2606 instructions. */
2607
2608 if (pc_is_mips16 (pc))
2609 return mips16_skip_prologue (pc, lenient);
2610 else
2611 return mips32_skip_prologue (pc, lenient);
2612 }
2613
2614 #if 0
2615 /* The lenient prologue stuff should be superseded by the code in
2616 init_extra_frame_info which looks to see whether the stores mentioned
2617 in the proc_desc have actually taken place. */
2618
2619 /* Is address PC in the prologue (loosely defined) for function at
2620 STARTADDR? */
2621
2622 static int
2623 mips_in_lenient_prologue (startaddr, pc)
2624 CORE_ADDR startaddr;
2625 CORE_ADDR pc;
2626 {
2627 CORE_ADDR end_prologue = mips_skip_prologue (startaddr, 1);
2628 return pc >= startaddr && pc < end_prologue;
2629 }
2630 #endif
2631
2632 /* Given a return value in `regbuf' with a type `valtype',
2633 extract and copy its value into `valbuf'. */
2634 void
2635 mips_extract_return_value (valtype, regbuf, valbuf)
2636 struct type *valtype;
2637 char regbuf[REGISTER_BYTES];
2638 char *valbuf;
2639 {
2640 int regnum;
2641 int offset = 0;
2642 int len = TYPE_LENGTH (valtype);
2643
2644 regnum = 2;
2645 if (TYPE_CODE (valtype) == TYPE_CODE_FLT
2646 && (mips_fpu == MIPS_FPU_DOUBLE
2647 || (mips_fpu == MIPS_FPU_SINGLE && len <= MIPS_FPU_SINGLE_REGSIZE)))
2648 regnum = FP0_REGNUM;
2649
2650 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2651 { /* "un-left-justify" the value from the register */
2652 if (len < REGISTER_RAW_SIZE (regnum))
2653 offset = REGISTER_RAW_SIZE (regnum) - len;
2654 if (len > REGISTER_RAW_SIZE (regnum) && /* odd-size structs */
2655 len < REGISTER_RAW_SIZE (regnum) * 2 &&
2656 (TYPE_CODE (valtype) == TYPE_CODE_STRUCT ||
2657 TYPE_CODE (valtype) == TYPE_CODE_UNION))
2658 offset = 2 * REGISTER_RAW_SIZE (regnum) - len;
2659 }
2660 memcpy (valbuf, regbuf + REGISTER_BYTE (regnum) + offset, len);
2661 REGISTER_CONVERT_TO_TYPE (regnum, valtype, valbuf);
2662 }
2663
2664 /* Given a return value in `regbuf' with a type `valtype',
2665 write it's value into the appropriate register. */
2666 void
2667 mips_store_return_value (valtype, valbuf)
2668 struct type *valtype;
2669 char *valbuf;
2670 {
2671 int regnum;
2672 int offset = 0;
2673 int len = TYPE_LENGTH (valtype);
2674 char raw_buffer[MAX_REGISTER_RAW_SIZE];
2675
2676 regnum = 2;
2677 if (TYPE_CODE (valtype) == TYPE_CODE_FLT
2678 && (mips_fpu == MIPS_FPU_DOUBLE
2679 || (mips_fpu == MIPS_FPU_SINGLE && len <= MIPS_REGSIZE)))
2680 regnum = FP0_REGNUM;
2681
2682 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2683 { /* "left-justify" the value in the register */
2684 if (len < REGISTER_RAW_SIZE (regnum))
2685 offset = REGISTER_RAW_SIZE (regnum) - len;
2686 if (len > REGISTER_RAW_SIZE (regnum) && /* odd-size structs */
2687 len < REGISTER_RAW_SIZE (regnum) * 2 &&
2688 (TYPE_CODE (valtype) == TYPE_CODE_STRUCT ||
2689 TYPE_CODE (valtype) == TYPE_CODE_UNION))
2690 offset = 2 * REGISTER_RAW_SIZE (regnum) - len;
2691 }
2692 memcpy(raw_buffer + offset, valbuf, len);
2693 REGISTER_CONVERT_FROM_TYPE(regnum, valtype, raw_buffer);
2694 write_register_bytes(REGISTER_BYTE (regnum), raw_buffer,
2695 len > REGISTER_RAW_SIZE (regnum) ?
2696 len : REGISTER_RAW_SIZE (regnum));
2697 }
2698
2699 /* Exported procedure: Is PC in the signal trampoline code */
2700
2701 int
2702 in_sigtramp (pc, ignore)
2703 CORE_ADDR pc;
2704 char *ignore; /* function name */
2705 {
2706 if (sigtramp_address == 0)
2707 fixup_sigtramp ();
2708 return (pc >= sigtramp_address && pc < sigtramp_end);
2709 }
2710
2711 /* Command to set FPU type. mips_fpu_string will have been set to the
2712 user's argument. Set mips_fpu based on mips_fpu_string, and then
2713 canonicalize mips_fpu_string. */
2714
2715 /*ARGSUSED*/
2716 static void
2717 mips_set_fpu_command (args, from_tty, c)
2718 char *args;
2719 int from_tty;
2720 struct cmd_list_element *c;
2721 {
2722 char *err = NULL;
2723
2724 if (mips_fpu_string == NULL || *mips_fpu_string == '\0')
2725 mips_fpu = MIPS_FPU_DOUBLE;
2726 else if (strcasecmp (mips_fpu_string, "double") == 0
2727 || strcasecmp (mips_fpu_string, "on") == 0
2728 || strcasecmp (mips_fpu_string, "1") == 0
2729 || strcasecmp (mips_fpu_string, "yes") == 0)
2730 mips_fpu = MIPS_FPU_DOUBLE;
2731 else if (strcasecmp (mips_fpu_string, "none") == 0
2732 || strcasecmp (mips_fpu_string, "off") == 0
2733 || strcasecmp (mips_fpu_string, "0") == 0
2734 || strcasecmp (mips_fpu_string, "no") == 0)
2735 mips_fpu = MIPS_FPU_NONE;
2736 else if (strcasecmp (mips_fpu_string, "single") == 0)
2737 mips_fpu = MIPS_FPU_SINGLE;
2738 else
2739 err = strsave (mips_fpu_string);
2740
2741 if (mips_fpu_string != NULL)
2742 free (mips_fpu_string);
2743
2744 switch (mips_fpu)
2745 {
2746 case MIPS_FPU_DOUBLE:
2747 mips_fpu_string = strsave ("double");
2748 break;
2749 case MIPS_FPU_SINGLE:
2750 mips_fpu_string = strsave ("single");
2751 break;
2752 case MIPS_FPU_NONE:
2753 mips_fpu_string = strsave ("none");
2754 break;
2755 }
2756
2757 if (err != NULL)
2758 {
2759 struct cleanup *cleanups = make_cleanup (free, err);
2760 error ("Unknown FPU type `%s'. Use `double', `none', or `single'.",
2761 err);
2762 do_cleanups (cleanups);
2763 }
2764 }
2765
2766 static void
2767 mips_show_fpu_command (args, from_tty, c)
2768 char *args;
2769 int from_tty;
2770 struct cmd_list_element *c;
2771 {
2772 }
2773
2774 /* Command to set the processor type. */
2775
2776 void
2777 mips_set_processor_type_command (args, from_tty)
2778 char *args;
2779 int from_tty;
2780 {
2781 int i;
2782
2783 if (tmp_mips_processor_type == NULL || *tmp_mips_processor_type == '\0')
2784 {
2785 printf_unfiltered ("The known MIPS processor types are as follows:\n\n");
2786 for (i = 0; mips_processor_type_table[i].name != NULL; ++i)
2787 printf_unfiltered ("%s\n", mips_processor_type_table[i].name);
2788
2789 /* Restore the value. */
2790 tmp_mips_processor_type = strsave (mips_processor_type);
2791
2792 return;
2793 }
2794
2795 if (!mips_set_processor_type (tmp_mips_processor_type))
2796 {
2797 error ("Unknown processor type `%s'.", tmp_mips_processor_type);
2798 /* Restore its value. */
2799 tmp_mips_processor_type = strsave (mips_processor_type);
2800 }
2801 }
2802
2803 static void
2804 mips_show_processor_type_command (args, from_tty)
2805 char *args;
2806 int from_tty;
2807 {
2808 }
2809
2810 /* Modify the actual processor type. */
2811
2812 int
2813 mips_set_processor_type (str)
2814 char *str;
2815 {
2816 int i, j;
2817
2818 if (str == NULL)
2819 return 0;
2820
2821 for (i = 0; mips_processor_type_table[i].name != NULL; ++i)
2822 {
2823 if (strcasecmp (str, mips_processor_type_table[i].name) == 0)
2824 {
2825 mips_processor_type = str;
2826
2827 for (j = 0; j < NUM_REGS; ++j)
2828 reg_names[j] = mips_processor_type_table[i].regnames[j];
2829
2830 return 1;
2831
2832 /* FIXME tweak fpu flag too */
2833 }
2834 }
2835
2836 return 0;
2837 }
2838
2839 /* Attempt to identify the particular processor model by reading the
2840 processor id. */
2841
2842 char *
2843 mips_read_processor_type ()
2844 {
2845 CORE_ADDR prid;
2846
2847 prid = read_register (PRID_REGNUM);
2848
2849 if ((prid & ~0xf) == 0x700)
2850 return savestring ("r3041", strlen("r3041"));
2851
2852 return NULL;
2853 }
2854
2855 /* Just like reinit_frame_cache, but with the right arguments to be
2856 callable as an sfunc. */
2857
2858 static void
2859 reinit_frame_cache_sfunc (args, from_tty, c)
2860 char *args;
2861 int from_tty;
2862 struct cmd_list_element *c;
2863 {
2864 reinit_frame_cache ();
2865 }
2866
2867 int
2868 gdb_print_insn_mips (memaddr, info)
2869 bfd_vma memaddr;
2870 disassemble_info *info;
2871 {
2872 mips_extra_func_info_t proc_desc;
2873
2874 /* Search for the function containing this address. Set the low bit
2875 of the address when searching, in case we were given an even address
2876 that is the start of a 16-bit function. If we didn't do this,
2877 the search would fail because the symbol table says the function
2878 starts at an odd address, i.e. 1 byte past the given address. */
2879 memaddr = ADDR_BITS_REMOVE (memaddr);
2880 proc_desc = non_heuristic_proc_desc (MAKE_MIPS16_ADDR (memaddr), NULL);
2881
2882 /* Make an attempt to determine if this is a 16-bit function. If
2883 the procedure descriptor exists and the address therein is odd,
2884 it's definitely a 16-bit function. Otherwise, we have to just
2885 guess that if the address passed in is odd, it's 16-bits. */
2886 if (proc_desc)
2887 info->mach = pc_is_mips16 (PROC_LOW_ADDR (proc_desc)) ? 16 : TM_PRINT_INSN_MACH;
2888 else
2889 info->mach = pc_is_mips16 (memaddr) ? 16 : TM_PRINT_INSN_MACH;
2890
2891 /* Round down the instruction address to the appropriate boundary. */
2892 memaddr &= (info->mach == 16 ? ~1 : ~3);
2893
2894 /* Call the appropriate disassembler based on the target endian-ness. */
2895 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2896 return print_insn_big_mips (memaddr, info);
2897 else
2898 return print_insn_little_mips (memaddr, info);
2899 }
2900
2901 /* This function implements the BREAKPOINT_FROM_PC macro. It uses the program
2902 counter value to determine whether a 16- or 32-bit breakpoint should be
2903 used. It returns a pointer to a string of bytes that encode a breakpoint
2904 instruction, stores the length of the string to *lenptr, and adjusts pc
2905 (if necessary) to point to the actual memory location where the
2906 breakpoint should be inserted. */
2907
2908 unsigned char *mips_breakpoint_from_pc (pcptr, lenptr)
2909 CORE_ADDR *pcptr;
2910 int *lenptr;
2911 {
2912 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2913 {
2914 if (pc_is_mips16 (*pcptr))
2915 {
2916 static char mips16_big_breakpoint[] = MIPS16_BIG_BREAKPOINT;
2917 *pcptr = UNMAKE_MIPS16_ADDR (*pcptr);
2918 *lenptr = sizeof(mips16_big_breakpoint);
2919 return mips16_big_breakpoint;
2920 }
2921 else
2922 {
2923 static char big_breakpoint[] = BIG_BREAKPOINT;
2924 static char pmon_big_breakpoint[] = PMON_BIG_BREAKPOINT;
2925 static char idt_big_breakpoint[] = IDT_BIG_BREAKPOINT;
2926
2927 *lenptr = sizeof(big_breakpoint);
2928
2929 if (strcmp (target_shortname, "mips") == 0)
2930 return idt_big_breakpoint;
2931 else if (strcmp (target_shortname, "ddb") == 0
2932 || strcmp (target_shortname, "pmon") == 0
2933 || strcmp (target_shortname, "lsi") == 0)
2934 return pmon_big_breakpoint;
2935 else
2936 return big_breakpoint;
2937 }
2938 }
2939 else
2940 {
2941 if (pc_is_mips16 (*pcptr))
2942 {
2943 static char mips16_little_breakpoint[] = MIPS16_LITTLE_BREAKPOINT;
2944 *pcptr = UNMAKE_MIPS16_ADDR (*pcptr);
2945 *lenptr = sizeof(mips16_little_breakpoint);
2946 return mips16_little_breakpoint;
2947 }
2948 else
2949 {
2950 static char little_breakpoint[] = LITTLE_BREAKPOINT;
2951 static char pmon_little_breakpoint[] = PMON_LITTLE_BREAKPOINT;
2952 static char idt_little_breakpoint[] = IDT_LITTLE_BREAKPOINT;
2953
2954 *lenptr = sizeof(little_breakpoint);
2955
2956 if (strcmp (target_shortname, "mips") == 0)
2957 return idt_little_breakpoint;
2958 else if (strcmp (target_shortname, "ddb") == 0
2959 || strcmp (target_shortname, "pmon") == 0
2960 || strcmp (target_shortname, "lsi") == 0)
2961 return pmon_little_breakpoint;
2962 else
2963 return little_breakpoint;
2964 }
2965 }
2966 }
2967
2968 /* Test whether the PC points to the return instruction at the
2969 end of a function. This implements the ABOUT_TO_RETURN macro. */
2970
2971 int
2972 mips_about_to_return (pc)
2973 CORE_ADDR pc;
2974 {
2975 if (pc_is_mips16 (pc))
2976 /* This mips16 case isn't necessarily reliable. Sometimes the compiler
2977 generates a "jr $ra"; other times it generates code to load
2978 the return address from the stack to an accessible register (such
2979 as $a3), then a "jr" using that register. This second case
2980 is almost impossible to distinguish from an indirect jump
2981 used for switch statements, so we don't even try. */
2982 return mips_fetch_instruction (pc) == 0xe820; /* jr $ra */
2983 else
2984 return mips_fetch_instruction (pc) == 0x3e00008; /* jr $ra */
2985 }
2986
2987
2988 /* If PC is in a mips16 call or return stub, return the address of the target
2989 PC, which is either the callee or the caller. There are several
2990 cases which must be handled:
2991
2992 * If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
2993 target PC is in $31 ($ra).
2994 * If the PC is in __mips16_call_stub_{1..10}, this is a call stub
2995 and the target PC is in $2.
2996 * If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
2997 before the jal instruction, this is effectively a call stub
2998 and the the target PC is in $2. Otherwise this is effectively
2999 a return stub and the target PC is in $18.
3000
3001 See the source code for the stubs in gcc/config/mips/mips16.S for
3002 gory details.
3003
3004 This function implements the SKIP_TRAMPOLINE_CODE macro.
3005 */
3006
3007 CORE_ADDR
3008 mips_skip_stub (pc)
3009 CORE_ADDR pc;
3010 {
3011 char *name;
3012 CORE_ADDR start_addr;
3013
3014 /* Find the starting address and name of the function containing the PC. */
3015 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
3016 return 0;
3017
3018 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub and the
3019 target PC is in $31 ($ra). */
3020 if (strcmp (name, "__mips16_ret_sf") == 0
3021 || strcmp (name, "__mips16_ret_df") == 0)
3022 return read_register (RA_REGNUM);
3023
3024 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
3025 {
3026 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub
3027 and the target PC is in $2. */
3028 if (name[19] >= '0' && name[19] <= '9')
3029 return read_register (2);
3030
3031 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
3032 before the jal instruction, this is effectively a call stub
3033 and the the target PC is in $2. Otherwise this is effectively
3034 a return stub and the target PC is in $18. */
3035 else if (name[19] == 's' || name[19] == 'd')
3036 {
3037 if (pc == start_addr)
3038 {
3039 /* Check if the target of the stub is a compiler-generated
3040 stub. Such a stub for a function bar might have a name
3041 like __fn_stub_bar, and might look like this:
3042 mfc1 $4,$f13
3043 mfc1 $5,$f12
3044 mfc1 $6,$f15
3045 mfc1 $7,$f14
3046 la $1,bar (becomes a lui/addiu pair)
3047 jr $1
3048 So scan down to the lui/addi and extract the target
3049 address from those two instructions. */
3050
3051 CORE_ADDR target_pc = read_register (2);
3052 t_inst inst;
3053 int i;
3054
3055 /* See if the name of the target function is __fn_stub_*. */
3056 if (find_pc_partial_function (target_pc, &name, NULL, NULL) == 0)
3057 return target_pc;
3058 if (strncmp (name, "__fn_stub_", 10) != 0
3059 && strcmp (name, "etext") != 0
3060 && strcmp (name, "_etext") != 0)
3061 return target_pc;
3062
3063 /* Scan through this _fn_stub_ code for the lui/addiu pair.
3064 The limit on the search is arbitrarily set to 20
3065 instructions. FIXME. */
3066 for (i = 0, pc = 0; i < 20; i++, target_pc += MIPS_INSTLEN)
3067 {
3068 inst = mips_fetch_instruction (target_pc);
3069 if ((inst & 0xffff0000) == 0x3c010000) /* lui $at */
3070 pc = (inst << 16) & 0xffff0000; /* high word */
3071 else if ((inst & 0xffff0000) == 0x24210000) /* addiu $at */
3072 return pc | (inst & 0xffff); /* low word */
3073 }
3074
3075 /* Couldn't find the lui/addui pair, so return stub address. */
3076 return target_pc;
3077 }
3078 else
3079 /* This is the 'return' part of a call stub. The return
3080 address is in $r18. */
3081 return read_register (18);
3082 }
3083 }
3084 return 0; /* not a stub */
3085 }
3086
3087
3088 /* Return non-zero if the PC is inside a call thunk (aka stub or trampoline).
3089 This implements the IN_SOLIB_CALL_TRAMPOLINE macro. */
3090
3091 int
3092 mips_in_call_stub (pc, name)
3093 CORE_ADDR pc;
3094 char *name;
3095 {
3096 CORE_ADDR start_addr;
3097
3098 /* Find the starting address of the function containing the PC. If the
3099 caller didn't give us a name, look it up at the same time. */
3100 if (find_pc_partial_function (pc, name ? NULL : &name, &start_addr, NULL) == 0)
3101 return 0;
3102
3103 if (strncmp (name, "__mips16_call_stub_", 19) == 0)
3104 {
3105 /* If the PC is in __mips16_call_stub_{1..10}, this is a call stub. */
3106 if (name[19] >= '0' && name[19] <= '9')
3107 return 1;
3108 /* If the PC at the start of __mips16_call_stub_{s,d}f_{0..10}, i.e.
3109 before the jal instruction, this is effectively a call stub. */
3110 else if (name[19] == 's' || name[19] == 'd')
3111 return pc == start_addr;
3112 }
3113
3114 return 0; /* not a stub */
3115 }
3116
3117
3118 /* Return non-zero if the PC is inside a return thunk (aka stub or trampoline).
3119 This implements the IN_SOLIB_RETURN_TRAMPOLINE macro. */
3120
3121 int
3122 mips_in_return_stub (pc, name)
3123 CORE_ADDR pc;
3124 char *name;
3125 {
3126 CORE_ADDR start_addr;
3127
3128 /* Find the starting address of the function containing the PC. */
3129 if (find_pc_partial_function (pc, NULL, &start_addr, NULL) == 0)
3130 return 0;
3131
3132 /* If the PC is in __mips16_ret_{d,s}f, this is a return stub. */
3133 if (strcmp (name, "__mips16_ret_sf") == 0
3134 || strcmp (name, "__mips16_ret_df") == 0)
3135 return 1;
3136
3137 /* If the PC is in __mips16_call_stub_{s,d}f_{0..10} but not at the start,
3138 i.e. after the jal instruction, this is effectively a return stub. */
3139 if (strncmp (name, "__mips16_call_stub_", 19) == 0
3140 && (name[19] == 's' || name[19] == 'd')
3141 && pc != start_addr)
3142 return 1;
3143
3144 return 0; /* not a stub */
3145 }
3146
3147
3148 /* Return non-zero if the PC is in a library helper function that should
3149 be ignored. This implements the IGNORE_HELPER_CALL macro. */
3150
3151 int
3152 mips_ignore_helper (pc)
3153 CORE_ADDR pc;
3154 {
3155 char *name;
3156
3157 /* Find the starting address and name of the function containing the PC. */
3158 if (find_pc_partial_function (pc, &name, NULL, NULL) == 0)
3159 return 0;
3160
3161 /* If the PC is in __mips16_ret_{d,s}f, this is a library helper function
3162 that we want to ignore. */
3163 return (strcmp (name, "__mips16_ret_sf") == 0
3164 || strcmp (name, "__mips16_ret_df") == 0);
3165 }
3166
3167
3168 /* Return a location where we can set a breakpoint that will be hit
3169 when an inferior function call returns. This is normally the
3170 program's entry point. Executables that don't have an entry
3171 point (e.g. programs in ROM) should define a symbol __CALL_DUMMY_ADDRESS
3172 whose address is the location where the breakpoint should be placed. */
3173
3174 CORE_ADDR
3175 mips_call_dummy_address ()
3176 {
3177 struct minimal_symbol *sym;
3178
3179 sym = lookup_minimal_symbol ("__CALL_DUMMY_ADDRESS", NULL, NULL);
3180 if (sym)
3181 return SYMBOL_VALUE_ADDRESS (sym);
3182 else
3183 return entry_point_address ();
3184 }
3185
3186 void
3187 _initialize_mips_tdep ()
3188 {
3189 struct cmd_list_element *c;
3190
3191 if (!tm_print_insn) /* Someone may have already set it */
3192 tm_print_insn = gdb_print_insn_mips;
3193
3194 /* Let the user turn off floating point and set the fence post for
3195 heuristic_proc_start. */
3196
3197 c = add_set_cmd ("mipsfpu", class_support, var_string_noescape,
3198 (char *) &mips_fpu_string,
3199 "Set use of floating point coprocessor.\n\
3200 Set to `none' to avoid using floating point instructions when calling\n\
3201 functions or dealing with return values. Set to `single' to use only\n\
3202 single precision floating point as on the R4650. Set to `double' for\n\
3203 normal floating point support.",
3204 &setlist);
3205 c->function.sfunc = mips_set_fpu_command;
3206 c = add_show_from_set (c, &showlist);
3207 c->function.sfunc = mips_show_fpu_command;
3208
3209 #ifndef MIPS_DEFAULT_FPU_TYPE
3210 mips_fpu = MIPS_FPU_DOUBLE;
3211 mips_fpu_string = strsave ("double");
3212 #else
3213 mips_fpu = MIPS_DEFAULT_FPU_TYPE;
3214 switch (mips_fpu)
3215 {
3216 case MIPS_FPU_DOUBLE: mips_fpu_string = strsave ("double"); break;
3217 case MIPS_FPU_SINGLE: mips_fpu_string = strsave ("single"); break;
3218 case MIPS_FPU_NONE: mips_fpu_string = strsave ("none"); break;
3219 }
3220 #endif
3221
3222 c = add_set_cmd ("processor", class_support, var_string_noescape,
3223 (char *) &tmp_mips_processor_type,
3224 "Set the type of MIPS processor in use.\n\
3225 Set this to be able to access processor-type-specific registers.\n\
3226 ",
3227 &setlist);
3228 c->function.cfunc = mips_set_processor_type_command;
3229 c = add_show_from_set (c, &showlist);
3230 c->function.cfunc = mips_show_processor_type_command;
3231
3232 tmp_mips_processor_type = strsave (DEFAULT_MIPS_TYPE);
3233 mips_set_processor_type_command (strsave (DEFAULT_MIPS_TYPE), 0);
3234
3235 /* We really would like to have both "0" and "unlimited" work, but
3236 command.c doesn't deal with that. So make it a var_zinteger
3237 because the user can always use "999999" or some such for unlimited. */
3238 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
3239 (char *) &heuristic_fence_post,
3240 "\
3241 Set the distance searched for the start of a function.\n\
3242 If you are debugging a stripped executable, GDB needs to search through the\n\
3243 program for the start of a function. This command sets the distance of the\n\
3244 search. The only need to set it is when debugging a stripped executable.",
3245 &setlist);
3246 /* We need to throw away the frame cache when we set this, since it
3247 might change our ability to get backtraces. */
3248 c->function.sfunc = reinit_frame_cache_sfunc;
3249 add_show_from_set (c, &showlist);
3250
3251 /* Allow the user to control whether the upper bits of 64-bit
3252 addresses should be zeroed. */
3253 add_show_from_set
3254 (add_set_cmd ("mask-address", no_class, var_boolean, (char *)&mask_address_p,
3255 "Set zeroing of upper 32 bits of 64-bit addresses.\n\
3256 Use \"on\" to enable the masking, and \"off\" to disable it.\n\
3257 Without an argument, zeroing of upper address bits is enabled.", &setlist),
3258 &showlist);
3259 }
This page took 0.158673 seconds and 4 git commands to generate.