1 /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
2 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
7 This file is part of GDB.
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
34 #include "opcode/mips.h"
36 #define VM_MIN_ADDRESS (unsigned)0x400000
39 static int mips_in_lenient_prologue PARAMS ((CORE_ADDR, CORE_ADDR));
42 /* Some MIPS boards don't support floating point, so we permit the
43 user to turn it off. */
46 /* Heuristic_proc_start may hunt through the text section for a long
47 time across a 2400 baud serial line. Allows the user to limit this
49 static unsigned int heuristic_fence_post = 0;
51 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
52 #define PROC_HIGH_ADDR(proc) ((proc)->pdr.iline) /* upper address bound */
53 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
54 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
55 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
56 #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
57 #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
58 #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
59 #define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
60 #define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
61 #define _PROC_MAGIC_ 0x0F0F0F0F
62 #define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
63 #define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
65 struct linked_proc_info
67 struct mips_extra_func_info info;
68 struct linked_proc_info *next;
69 } *linked_proc_desc_table = NULL;
72 #define READ_FRAME_REG(fi, regno) read_next_frame_reg((fi)->next, regno)
75 read_next_frame_reg(fi, regno)
79 /* If it is the frame for sigtramp we have a complete sigcontext
80 somewhere above the frame and we get the saved registers from there.
81 If the stack layout for sigtramp changes we might have to change these
82 constants and the companion fixup_sigtramp in mdebugread.c */
84 /* To satisfy alignment restrictions the sigcontext is located 4 bytes
85 above the sigtramp frame. */
86 #define SIGFRAME_BASE 4
87 #define SIGFRAME_PC_OFF (SIGFRAME_BASE + 2 * 4)
88 #define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 3 * 4)
90 #ifndef SIGFRAME_REG_SIZE
91 #define SIGFRAME_REG_SIZE 4
93 for (; fi; fi = fi->next)
94 if (fi->signal_handler_caller) {
96 if (regno == PC_REGNUM) offset = SIGFRAME_PC_OFF;
97 else if (regno < 32) offset = (SIGFRAME_REGSAVE_OFF
98 + regno * SIGFRAME_REG_SIZE);
100 return read_memory_integer(fi->frame + offset, 4);
102 else if (regno == SP_REGNUM) return fi->frame;
103 else if (fi->saved_regs->regs[regno])
104 return read_memory_integer(fi->saved_regs->regs[regno], 4);
105 return read_register(regno);
109 mips_frame_saved_pc(frame)
112 mips_extra_func_info_t proc_desc = frame->proc_desc;
113 /* We have to get the saved pc from the sigcontext
114 if it is a signal handler frame. */
115 int pcreg = frame->signal_handler_caller ? PC_REGNUM
116 : (proc_desc ? PROC_PC_REG(proc_desc) : RA_REGNUM);
118 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
119 return read_memory_integer(frame->frame - 4, 4);
121 return read_next_frame_reg(frame, pcreg);
124 static struct mips_extra_func_info temp_proc_desc;
125 static struct frame_saved_regs temp_saved_regs;
127 /* This fencepost looks highly suspicious to me. Removing it also
128 seems suspicious as it could affect remote debugging across serial
132 heuristic_proc_start(pc)
135 CORE_ADDR start_pc = pc;
136 CORE_ADDR fence = start_pc - heuristic_fence_post;
138 if (start_pc == 0) return 0;
140 if (heuristic_fence_post == UINT_MAX
141 || fence < VM_MIN_ADDRESS)
142 fence = VM_MIN_ADDRESS;
144 /* search back for previous return */
145 for (start_pc -= 4; ; start_pc -= 4)
146 if (start_pc < fence)
148 /* It's not clear to me why we reach this point when
149 stop_soon_quietly, but with this test, at least we
150 don't print out warnings for every child forked (eg, on
152 if (!stop_soon_quietly)
154 static int blurb_printed = 0;
156 if (fence == VM_MIN_ADDRESS)
157 warning("Hit beginning of text section without finding");
159 warning("Hit heuristic-fence-post without finding");
161 warning("enclosing function for address 0x%x", pc);
165 This warning occurs if you are debugging a function without any symbols\n\
166 (for example, in a stripped executable). In that case, you may wish to\n\
167 increase the size of the search with the `set heuristic-fence-post' command.\n\
169 Otherwise, you told GDB there was a function where there isn't one, or\n\
170 (more likely) you have encountered a bug in GDB.\n");
177 else if (ABOUT_TO_RETURN(start_pc))
180 start_pc += 8; /* skip return, and its delay slot */
182 /* skip nops (usually 1) 0 - is this */
183 while (start_pc < pc && read_memory_integer (start_pc, 4) == 0)
189 static mips_extra_func_info_t
190 heuristic_proc_desc(start_pc, limit_pc, next_frame)
191 CORE_ADDR start_pc, limit_pc;
194 CORE_ADDR sp = next_frame ? next_frame->frame : read_register (SP_REGNUM);
197 int has_frame_reg = 0;
198 int reg30 = 0; /* Value of $r30. Used by gcc for frame-pointer */
199 unsigned long reg_mask = 0;
201 if (start_pc == 0) return NULL;
202 memset(&temp_proc_desc, '\0', sizeof(temp_proc_desc));
203 memset(&temp_saved_regs, '\0', sizeof(struct frame_saved_regs));
204 PROC_LOW_ADDR(&temp_proc_desc) = start_pc;
206 if (start_pc + 200 < limit_pc) limit_pc = start_pc + 200;
209 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += 4) {
214 status = read_memory_nobpt (cur_pc, buf, 4);
215 if (status) memory_error (status, cur_pc);
216 word = extract_unsigned_integer (buf, 4);
218 if ((word & 0xFFFF0000) == 0x27bd0000) /* addiu $sp,$sp,-i */
219 frame_size += (-word) & 0xFFFF;
220 else if ((word & 0xFFFF0000) == 0x23bd0000) /* addu $sp,$sp,-i */
221 frame_size += (-word) & 0xFFFF;
222 else if ((word & 0xFFE00000) == 0xafa00000) { /* sw reg,offset($sp) */
223 int reg = (word & 0x001F0000) >> 16;
224 reg_mask |= 1 << reg;
225 temp_saved_regs.regs[reg] = sp + (word & 0xffff);
227 else if ((word & 0xFFFF0000) == 0x27be0000) { /* addiu $30,$sp,size */
228 if ((word & 0xffff) != frame_size)
229 reg30 = sp + (word & 0xffff);
230 else if (!has_frame_reg) {
233 reg30 = read_next_frame_reg(next_frame, 30);
234 alloca_adjust = reg30 - (sp + (word & 0xffff));
235 if (alloca_adjust > 0) {
236 /* FP > SP + frame_size. This may be because
237 * of an alloca or somethings similar.
238 * Fix sp to "pre-alloca" value, and try again.
245 else if ((word & 0xFFE00000) == 0xafc00000) { /* sw reg,offset($30) */
246 int reg = (word & 0x001F0000) >> 16;
247 reg_mask |= 1 << reg;
248 temp_saved_regs.regs[reg] = reg30 + (word & 0xffff);
252 PROC_FRAME_REG(&temp_proc_desc) = 30;
253 PROC_FRAME_OFFSET(&temp_proc_desc) = 0;
256 PROC_FRAME_REG(&temp_proc_desc) = SP_REGNUM;
257 PROC_FRAME_OFFSET(&temp_proc_desc) = frame_size;
259 PROC_REG_MASK(&temp_proc_desc) = reg_mask;
260 PROC_PC_REG(&temp_proc_desc) = RA_REGNUM;
261 return &temp_proc_desc;
264 static mips_extra_func_info_t
265 find_proc_desc(pc, next_frame)
269 mips_extra_func_info_t proc_desc;
270 struct block *b = block_for_pc(pc);
274 find_pc_partial_function (pc, NULL, &startaddr, NULL);
279 if (startaddr > BLOCK_START (b))
280 /* This is the "pathological" case referred to in a comment in
281 print_frame_info. It might be better to move this check into
285 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE,
291 /* IF this is the topmost frame AND
292 * (this proc does not have debugging information OR
293 * the PC is in the procedure prologue)
294 * THEN create a "heuristic" proc_desc (by analyzing
295 * the actual code) to replace the "official" proc_desc.
297 proc_desc = (mips_extra_func_info_t)SYMBOL_VALUE(sym);
298 if (next_frame == NULL) {
299 struct symtab_and_line val;
300 struct symbol *proc_symbol =
301 PROC_DESC_IS_DUMMY(proc_desc) ? 0 : PROC_SYMBOL(proc_desc);
304 val = find_pc_line (BLOCK_START
305 (SYMBOL_BLOCK_VALUE(proc_symbol)),
307 val.pc = val.end ? val.end : pc;
309 if (!proc_symbol || pc < val.pc) {
310 mips_extra_func_info_t found_heuristic =
311 heuristic_proc_desc(PROC_LOW_ADDR(proc_desc),
313 if (found_heuristic) proc_desc = found_heuristic;
319 /* Is linked_proc_desc_table really necessary? It only seems to be used
320 by procedure call dummys. However, the procedures being called ought
321 to have their own proc_descs, and even if they don't,
322 heuristic_proc_desc knows how to create them! */
324 register struct linked_proc_info *link;
325 for (link = linked_proc_desc_table; link; link = link->next)
326 if (PROC_LOW_ADDR(&link->info) <= pc
327 && PROC_HIGH_ADDR(&link->info) > pc)
331 startaddr = heuristic_proc_start (pc);
334 heuristic_proc_desc (startaddr, pc, next_frame);
339 mips_extra_func_info_t cached_proc_desc;
342 mips_frame_chain(frame)
345 mips_extra_func_info_t proc_desc;
346 CORE_ADDR saved_pc = FRAME_SAVED_PC(frame);
348 if (saved_pc == 0 || inside_entry_file (saved_pc))
351 proc_desc = find_proc_desc(saved_pc, frame);
355 cached_proc_desc = proc_desc;
357 /* If no frame pointer and frame size is zero, we must be at end
358 of stack (or otherwise hosed). If we don't check frame size,
359 we loop forever if we see a zero size frame. */
360 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
361 && PROC_FRAME_OFFSET (proc_desc) == 0
362 /* The previous frame from a sigtramp frame might be frameless
363 and have frame size zero. */
364 && !frame->signal_handler_caller)
367 return read_next_frame_reg(frame, PROC_FRAME_REG(proc_desc))
368 + PROC_FRAME_OFFSET(proc_desc);
372 init_extra_frame_info(fci)
373 struct frame_info *fci;
375 extern struct obstack frame_cache_obstack;
376 /* Use proc_desc calculated in frame_chain */
377 mips_extra_func_info_t proc_desc =
378 fci->next ? cached_proc_desc : find_proc_desc(fci->pc, fci->next);
380 fci->saved_regs = (struct frame_saved_regs*)
381 obstack_alloc (&frame_cache_obstack, sizeof(struct frame_saved_regs));
382 memset (fci->saved_regs, 0, sizeof (struct frame_saved_regs));
384 proc_desc == &temp_proc_desc ? 0 : proc_desc;
388 CORE_ADDR reg_position;
389 /* r0 bit means kernel trap */
390 int kernel_trap = PROC_REG_MASK(proc_desc) & 1;
392 /* Fixup frame-pointer - only needed for top frame */
393 /* This may not be quite right, if proc has a real frame register.
394 Get the value of the frame relative sp, procedure might have been
395 interrupted by a signal at it's very start. */
396 if (fci->pc == PROC_LOW_ADDR(proc_desc) && !PROC_DESC_IS_DUMMY(proc_desc))
397 fci->frame = READ_FRAME_REG(fci, SP_REGNUM);
399 fci->frame = READ_FRAME_REG(fci, PROC_FRAME_REG(proc_desc))
400 + PROC_FRAME_OFFSET(proc_desc);
402 if (proc_desc == &temp_proc_desc)
403 *fci->saved_regs = temp_saved_regs;
406 /* What registers have been saved? Bitmasks. */
407 unsigned long gen_mask, float_mask;
409 gen_mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK(proc_desc);
410 float_mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK(proc_desc);
412 if (/* In any frame other than the innermost, we assume that all
413 registers have been saved. This assumes that all register
414 saves in a function happen before the first function
418 /* In a dummy frame we know exactly where things are saved. */
419 && !PROC_DESC_IS_DUMMY (proc_desc)
421 /* Not sure exactly what kernel_trap means, but if it means
422 the kernel saves the registers without a prologue doing it,
423 we better not examine the prologue to see whether registers
424 have been saved yet. */
427 /* We need to figure out whether the registers that the proc_desc
428 claims are saved have been saved yet. */
435 /* Bitmasks; set if we have found a save for the register. */
436 unsigned long gen_save_found = 0;
437 unsigned long float_save_found = 0;
439 for (addr = PROC_LOW_ADDR (proc_desc);
440 addr < fci->pc && (gen_mask != gen_save_found
441 || float_mask != float_save_found);
444 status = read_memory_nobpt (addr, buf, 4);
446 memory_error (status, addr);
447 inst = extract_unsigned_integer (buf, 4);
448 if (/* sw reg,n($sp) */
449 (inst & 0xffe00000) == 0xafa00000
452 || (inst & 0xffe00000) == 0xafc00000)
454 /* It might be possible to use the instruction to
455 find the offset, rather than the code below which
456 is based on things being in a certain order in the
457 frame, but figuring out what the instruction's offset
458 is relative to might be a little tricky. */
459 int reg = (inst & 0x001f0000) >> 16;
460 gen_save_found |= (1 << reg);
462 else if (/* swc1 freg,n($sp) */
463 (inst & 0xffe00000) == 0xe7a00000
465 /* swc1 freg,n($r30) */
466 || (inst & 0xffe00000) == 0xe7c00000)
468 int reg = ((inst & 0x001f0000) >> 16);
469 float_save_found |= (1 << reg);
472 gen_mask = gen_save_found;
473 float_mask = float_save_found;
476 /* Fill in the offsets for the registers which gen_mask says
478 reg_position = fci->frame + PROC_REG_OFFSET (proc_desc);
479 for (ireg= 31; gen_mask; --ireg, gen_mask <<= 1)
480 if (gen_mask & 0x80000000)
482 fci->saved_regs->regs[ireg] = reg_position;
485 /* Fill in the offsets for the registers which float_mask says
487 reg_position = fci->frame + PROC_FREG_OFFSET (proc_desc);
489 /* The freg_offset points to where the first *double* register
490 is saved. So skip to the high-order word. */
492 for (ireg = 31; float_mask; --ireg, float_mask <<= 1)
493 if (float_mask & 0x80000000)
495 fci->saved_regs->regs[FP0_REGNUM+ireg] = reg_position;
500 /* hack: if argument regs are saved, guess these contain args */
501 if ((PROC_REG_MASK(proc_desc) & 0xF0) == 0) fci->num_args = -1;
502 else if ((PROC_REG_MASK(proc_desc) & 0x80) == 0) fci->num_args = 4;
503 else if ((PROC_REG_MASK(proc_desc) & 0x40) == 0) fci->num_args = 3;
504 else if ((PROC_REG_MASK(proc_desc) & 0x20) == 0) fci->num_args = 2;
505 else if ((PROC_REG_MASK(proc_desc) & 0x10) == 0) fci->num_args = 1;
507 fci->saved_regs->regs[PC_REGNUM] = fci->saved_regs->regs[RA_REGNUM];
511 /* MIPS stack frames are almost impenetrable. When execution stops,
512 we basically have to look at symbol information for the function
513 that we stopped in, which tells us *which* register (if any) is
514 the base of the frame pointer, and what offset from that register
515 the frame itself is at.
517 This presents a problem when trying to examine a stack in memory
518 (that isn't executing at the moment), using the "frame" command. We
519 don't have a PC, nor do we have any registers except SP.
521 This routine takes two arguments, SP and PC, and tries to make the
522 cached frames look as if these two arguments defined a frame on the
523 cache. This allows the rest of info frame to extract the important
524 arguments without difficulty. */
527 setup_arbitrary_frame (argc, argv)
532 error ("MIPS frame specifications require two arguments: sp and pc");
534 return create_new_frame (argv[0], argv[1]);
539 mips_push_arguments(nargs, args, sp, struct_return, struct_addr)
544 CORE_ADDR struct_addr;
547 int accumulate_size = struct_return ? 4 : 0;
548 struct mips_arg { char *contents; int len; int offset; };
549 struct mips_arg *mips_args =
550 (struct mips_arg*)alloca(nargs * sizeof(struct mips_arg));
551 register struct mips_arg *m_arg;
552 for (i = 0, m_arg = mips_args; i < nargs; i++, m_arg++) {
553 extern value value_arg_coerce();
554 value arg = value_arg_coerce (args[i]);
555 m_arg->len = TYPE_LENGTH (VALUE_TYPE (arg));
556 /* This entire mips-specific routine is because doubles must be aligned
557 * on 8-byte boundaries. It still isn't quite right, because MIPS decided
558 * to align 'struct {int a, b}' on 4-byte boundaries (even though this
559 * breaks their varargs implementation...). A correct solution
560 * requires an simulation of gcc's 'alignof' (and use of 'alignof'
561 * in stdarg.h/varargs.h).
563 if (m_arg->len > 4) accumulate_size = (accumulate_size + 7) & -8;
564 m_arg->offset = accumulate_size;
565 accumulate_size = (accumulate_size + m_arg->len + 3) & -4;
566 m_arg->contents = VALUE_CONTENTS(arg);
568 accumulate_size = (accumulate_size + 7) & (-8);
569 if (accumulate_size < 16) accumulate_size = 16;
570 sp -= accumulate_size;
571 for (i = nargs; m_arg--, --i >= 0; )
572 write_memory(sp + m_arg->offset, m_arg->contents, m_arg->len);
575 char buf[TARGET_PTR_BIT / HOST_CHAR_BIT];
577 store_address (buf, sizeof buf, struct_addr);
578 write_memory (sp, buf, sizeof buf);
583 /* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<31. */
584 #define MASK(i,j) (((1 << ((j)+1))-1) ^ ((1 << (i))-1))
587 mips_push_dummy_frame()
589 char buffer[MAX_REGISTER_RAW_SIZE];
591 struct linked_proc_info *link = (struct linked_proc_info*)
592 xmalloc(sizeof(struct linked_proc_info));
593 mips_extra_func_info_t proc_desc = &link->info;
594 CORE_ADDR sp = read_register (SP_REGNUM);
595 CORE_ADDR save_address;
596 link->next = linked_proc_desc_table;
597 linked_proc_desc_table = link;
598 #define PUSH_FP_REGNUM 16 /* must be a register preserved across calls */
599 #define GEN_REG_SAVE_MASK MASK(1,16)|MASK(24,28)|(1<<31)
600 #define GEN_REG_SAVE_COUNT 22
601 #define FLOAT_REG_SAVE_MASK MASK(0,19)
602 #define FLOAT_REG_SAVE_COUNT 20
603 #define SPECIAL_REG_SAVE_COUNT 4
605 * The registers we must save are all those not preserved across
606 * procedure calls. Dest_Reg (see tm-mips.h) must also be saved.
607 * In addition, we must save the PC, and PUSH_FP_REGNUM.
608 * (Ideally, we should also save MDLO/-HI and FP Control/Status reg.)
610 * Dummy frame layout:
613 * Saved MMHI, MMLO, FPC_CSR
618 * Saved D18 (i.e. F19, F18)
620 * Saved D0 (i.e. F1, F0)
621 * CALL_DUMMY (subroutine stub; see tm-mips.h)
622 * Parameter build area (not yet implemented)
625 PROC_REG_MASK(proc_desc) = GEN_REG_SAVE_MASK;
626 PROC_FREG_MASK(proc_desc) = mips_fpu ? FLOAT_REG_SAVE_MASK : 0;
627 PROC_REG_OFFSET(proc_desc) = /* offset of (Saved R31) from FP */
628 -sizeof(long) - 4 * SPECIAL_REG_SAVE_COUNT;
629 PROC_FREG_OFFSET(proc_desc) = /* offset of (Saved D18) from FP */
630 -sizeof(double) - 4 * (SPECIAL_REG_SAVE_COUNT + GEN_REG_SAVE_COUNT);
631 /* save general registers */
632 save_address = sp + PROC_REG_OFFSET(proc_desc);
633 for (ireg = 32; --ireg >= 0; )
634 if (PROC_REG_MASK(proc_desc) & (1 << ireg))
636 store_unsigned_integer (buffer, REGISTER_RAW_SIZE (ireg),
637 read_register (ireg));
638 write_memory (save_address, buffer, REGISTER_RAW_SIZE (ireg));
641 /* save floating-points registers starting with high order word */
642 save_address = sp + PROC_FREG_OFFSET(proc_desc) + 4;
643 for (ireg = 32; --ireg >= 0; )
644 if (PROC_FREG_MASK(proc_desc) & (1 << ireg))
646 store_unsigned_integer (buffer, 4, read_register (ireg + FP0_REGNUM));
647 write_memory (save_address, buffer, 4);
650 write_register (PUSH_FP_REGNUM, sp);
651 PROC_FRAME_REG(proc_desc) = PUSH_FP_REGNUM;
652 PROC_FRAME_OFFSET(proc_desc) = 0;
653 store_unsigned_integer (buffer, REGISTER_RAW_SIZE (PC_REGNUM),
654 read_register (PC_REGNUM));
655 write_memory (sp - 4, buffer, REGISTER_RAW_SIZE (PC_REGNUM));
656 store_unsigned_integer (buffer, REGISTER_RAW_SIZE (HI_REGNUM),
657 read_register (HI_REGNUM));
658 write_memory (sp - 8, buffer, REGISTER_RAW_SIZE (HI_REGNUM));
659 store_unsigned_integer (buffer, REGISTER_RAW_SIZE (LO_REGNUM),
660 read_register (LO_REGNUM));
661 write_memory (sp - 12, buffer, REGISTER_RAW_SIZE (LO_REGNUM));
662 store_unsigned_integer
664 REGISTER_RAW_SIZE (FCRCS_REGNUM),
665 mips_fpu ? read_register (FCRCS_REGNUM) : 0);
666 write_memory (sp - 16, buffer, REGISTER_RAW_SIZE (FCRCS_REGNUM));
667 sp -= 4 * (GEN_REG_SAVE_COUNT
668 + (mips_fpu ? FLOAT_REG_SAVE_COUNT : 0)
669 + SPECIAL_REG_SAVE_COUNT);
670 write_register (SP_REGNUM, sp);
671 PROC_LOW_ADDR(proc_desc) = sp - CALL_DUMMY_SIZE + CALL_DUMMY_START_OFFSET;
672 PROC_HIGH_ADDR(proc_desc) = sp;
673 SET_PROC_DESC_IS_DUMMY(proc_desc);
674 PROC_PC_REG(proc_desc) = RA_REGNUM;
681 FRAME frame = get_current_frame ();
682 CORE_ADDR new_sp = frame->frame;
684 mips_extra_func_info_t proc_desc = frame->proc_desc;
686 write_register (PC_REGNUM, FRAME_SAVED_PC(frame));
689 for (regnum = 32; --regnum >= 0; )
690 if (PROC_REG_MASK(proc_desc) & (1 << regnum))
691 write_register (regnum,
692 read_memory_integer (frame->saved_regs->regs[regnum],
694 for (regnum = 32; --regnum >= 0; )
695 if (PROC_FREG_MASK(proc_desc) & (1 << regnum))
696 write_register (regnum + FP0_REGNUM,
697 read_memory_integer (frame->saved_regs->regs[regnum + FP0_REGNUM], 4));
699 write_register (SP_REGNUM, new_sp);
700 flush_cached_frames ();
701 /* We let mips_init_extra_frame_info figure out the frame pointer */
702 set_current_frame (create_new_frame (0, read_pc ()));
704 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
706 struct linked_proc_info *pi_ptr, *prev_ptr;
708 for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL;
710 prev_ptr = pi_ptr, pi_ptr = pi_ptr->next)
712 if (&pi_ptr->info == proc_desc)
717 error ("Can't locate dummy extra frame info\n");
719 if (prev_ptr != NULL)
720 prev_ptr->next = pi_ptr->next;
722 linked_proc_desc_table = pi_ptr->next;
726 write_register (HI_REGNUM, read_memory_integer(new_sp - 8, 4));
727 write_register (LO_REGNUM, read_memory_integer(new_sp - 12, 4));
729 write_register (FCRCS_REGNUM, read_memory_integer(new_sp - 16, 4));
734 mips_print_register (regnum, all)
737 unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE];
739 /* Get the data in raw format. */
740 if (read_relative_register_raw_bytes (regnum, raw_buffer))
742 printf_filtered ("%s: [Invalid]", reg_names[regnum]);
746 /* If an even floating pointer register, also print as double. */
747 if (regnum >= FP0_REGNUM && regnum < FP0_REGNUM+32
748 && !((regnum-FP0_REGNUM) & 1)) {
749 char dbuffer[MAX_REGISTER_RAW_SIZE];
751 read_relative_register_raw_bytes (regnum, dbuffer);
752 read_relative_register_raw_bytes (regnum+1, dbuffer+4);
753 #ifdef REGISTER_CONVERT_TO_TYPE
754 REGISTER_CONVERT_TO_TYPE(regnum, builtin_type_double, dbuffer);
756 printf_filtered ("(d%d: ", regnum-FP0_REGNUM);
757 val_print (builtin_type_double, dbuffer, 0,
758 gdb_stdout, 0, 1, 0, Val_pretty_default);
759 printf_filtered ("); ");
761 fputs_filtered (reg_names[regnum], gdb_stdout);
763 /* The problem with printing numeric register names (r26, etc.) is that
764 the user can't use them on input. Probably the best solution is to
765 fix it so that either the numeric or the funky (a2, etc.) names
766 are accepted on input. */
768 printf_filtered ("(r%d): ", regnum);
770 printf_filtered (": ");
772 /* If virtual format is floating, print it that way. */
773 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT
774 && ! INVALID_FLOAT (raw_buffer, REGISTER_VIRTUAL_SIZE(regnum))) {
775 val_print (REGISTER_VIRTUAL_TYPE (regnum), raw_buffer, 0,
776 gdb_stdout, 0, 1, 0, Val_pretty_default);
778 /* Else print as integer in hex. */
783 val = extract_signed_integer (raw_buffer,
784 REGISTER_RAW_SIZE (regnum));
787 printf_filtered ("0");
789 /* FIXME: We should be printing this in a fixed field width, so that
790 registers line up. */
791 printf_filtered (local_hex_format(), val);
793 printf_filtered ("%s=%ld", local_hex_string(val), val);
797 /* Replacement for generic do_registers_info. */
799 mips_do_registers_info (regnum, fpregs)
804 mips_print_register (regnum, 0);
805 printf_filtered ("\n");
808 for (regnum = 0; regnum < NUM_REGS; ) {
809 if ((!fpregs) && regnum >= FP0_REGNUM && regnum <= FCRIR_REGNUM) {
813 mips_print_register (regnum, 1);
815 if ((regnum & 3) == 0 || regnum == NUM_REGS)
816 printf_filtered (";\n");
818 printf_filtered ("; ");
822 /* Return number of args passed to a frame. described by FIP.
823 Can return -1, meaning no way to tell. */
826 mips_frame_num_args(fip)
830 struct chain_info_t *p;
832 p = mips_find_cached_frame(FRAME_FP(fip));
834 return p->the_info.numargs;
840 /* Is this a branch with a delay slot? */
846 for (i = 0; i < NUMOPCODES; ++i)
847 if (mips_opcodes[i].pinfo != INSN_MACRO
848 && (insn & mips_opcodes[i].mask) == mips_opcodes[i].match)
850 return (i < NUMOPCODES
851 && (mips_opcodes[i].pinfo & (INSN_UNCOND_BRANCH_DELAY
852 | INSN_COND_BRANCH_DELAY
853 | INSN_COND_BRANCH_LIKELY)));
857 /* To skip prologues, I use this predicate. Returns either PC itself
858 if the code at PC does not look like a function prologue; otherwise
859 returns an address that (if we're lucky) follows the prologue. If
860 LENIENT, then we must skip everything which is involved in setting
861 up the frame (it's OK to skip more, just so long as we don't skip
862 anything which might clobber the registers which are being saved.
863 We must skip more in the case where part of the prologue is in the
864 delay slot of a non-prologue instruction). */
867 mips_skip_prologue (pc, lenient)
873 int seen_sp_adjust = 0;
875 /* Skip the typical prologue instructions. These are the stack adjustment
876 instruction and the instructions that save registers on the stack
877 or in the gcc frame. */
878 for (offset = 0; offset < 100; offset += 4)
883 status = read_memory_nobpt (pc + offset, buf, 4);
885 memory_error (status, pc + offset);
886 inst = extract_unsigned_integer (buf, 4);
889 if (lenient && is_delayed (inst))
893 if ((inst & 0xffff0000) == 0x27bd0000) /* addiu $sp,$sp,offset */
895 else if ((inst & 0xFFE00000) == 0xAFA00000 && (inst & 0x001F0000))
896 continue; /* sw reg,n($sp) */
898 else if ((inst & 0xFFE00000) == 0xE7A00000) /* swc1 freg,n($sp) */
900 else if ((inst & 0xF3E00000) == 0xA3C00000 && (inst & 0x001F0000))
902 continue; /* reg != $zero */
903 else if (inst == 0x03A0F021) /* move $s8,$sp */
905 else if ((inst & 0xFF9F07FF) == 0x00800021) /* move reg,$a0-$a3 */
907 else if ((inst & 0xffff0000) == 0x3c1c0000) /* lui $gp,n */
909 else if ((inst & 0xffff0000) == 0x279c0000) /* addiu $gp,$gp,n */
911 else if (inst == 0x0399e021 /* addu $gp,$gp,$t9 */
912 || inst == 0x033ce021) /* addu $gp,$t9,$gp */
919 /* FIXME schauer. The following code seems no longer necessary if we
920 always skip the typical prologue instructions. */
926 /* Well, it looks like a frameless. Let's make sure.
927 Note that we are not called on the current PC,
928 but on the function`s start PC, and I have definitely
929 seen optimized code that adjusts the SP quite later */
930 b = block_for_pc(pc);
933 f = lookup_symbol(MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, 0, NULL);
935 /* Ideally, I would like to use the adjusted info
936 from mips_frame_info(), but for all practical
937 purposes it will not matter (and it would require
938 a different definition of SKIP_PROLOGUE())
940 Actually, it would not hurt to skip the storing
941 of arguments on the stack as well. */
942 if (((mips_extra_func_info_t)SYMBOL_VALUE(f))->pdr.frameoffset)
950 /* The lenient prologue stuff should be superceded by the code in
951 init_extra_frame_info which looks to see whether the stores mentioned
952 in the proc_desc have actually taken place. */
954 /* Is address PC in the prologue (loosely defined) for function at
958 mips_in_lenient_prologue (startaddr, pc)
962 CORE_ADDR end_prologue = mips_skip_prologue (startaddr, 1);
963 return pc >= startaddr && pc < end_prologue;
967 /* Given a return value in `regbuf' with a type `valtype',
968 extract and copy its value into `valbuf'. */
970 mips_extract_return_value (valtype, regbuf, valbuf)
971 struct type *valtype;
972 char regbuf[REGISTER_BYTES];
977 regnum = TYPE_CODE (valtype) == TYPE_CODE_FLT && mips_fpu ? FP0_REGNUM : 2;
979 memcpy (valbuf, regbuf + REGISTER_BYTE (regnum), TYPE_LENGTH (valtype));
980 #ifdef REGISTER_CONVERT_TO_TYPE
981 REGISTER_CONVERT_TO_TYPE(regnum, valtype, valbuf);
985 /* Given a return value in `regbuf' with a type `valtype',
986 write it's value into the appropriate register. */
988 mips_store_return_value (valtype, valbuf)
989 struct type *valtype;
993 char raw_buffer[MAX_REGISTER_RAW_SIZE];
995 regnum = TYPE_CODE (valtype) == TYPE_CODE_FLT && mips_fpu ? FP0_REGNUM : 2;
996 memcpy(raw_buffer, valbuf, TYPE_LENGTH (valtype));
998 #ifdef REGISTER_CONVERT_FROM_TYPE
999 REGISTER_CONVERT_FROM_TYPE(regnum, valtype, raw_buffer);
1002 write_register_bytes(REGISTER_BYTE (regnum), raw_buffer, TYPE_LENGTH (valtype));
1005 /* These exist in mdebugread.c. */
1006 extern CORE_ADDR sigtramp_address, sigtramp_end;
1007 extern void fixup_sigtramp PARAMS ((void));
1009 /* Exported procedure: Is PC in the signal trampoline code */
1012 in_sigtramp (pc, ignore)
1014 char *ignore; /* function name */
1016 if (sigtramp_address == 0)
1018 return (pc >= sigtramp_address && pc < sigtramp_end);
1021 static void reinit_frame_cache_sfunc PARAMS ((char *, int,
1022 struct cmd_list_element *));
1024 /* Just like reinit_frame_cache, but with the right arguments to be
1025 callable as an sfunc. */
1027 reinit_frame_cache_sfunc (args, from_tty, c)
1030 struct cmd_list_element *c;
1032 reinit_frame_cache ();
1036 _initialize_mips_tdep ()
1038 struct cmd_list_element *c;
1040 /* Let the user turn off floating point and set the fence post for
1041 heuristic_proc_start. */
1044 (add_set_cmd ("mipsfpu", class_support, var_boolean,
1046 "Set use of floating point coprocessor.\n\
1047 Turn off to avoid using floating point instructions when calling functions\n\
1048 or dealing with return values.", &setlist),
1051 /* We really would like to have both "0" and "unlimited" work, but
1052 command.c doesn't deal with that. So make it a var_zinteger
1053 because the user can always use "999999" or some such for unlimited. */
1054 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
1055 (char *) &heuristic_fence_post,
1057 Set the distance searched for the start of a function.\n\
1058 If you are debugging a stripped executable, GDB needs to search through the\n\
1059 program for the start of a function. This command sets the distance of the\n\
1060 search. The only need to set it is when debugging a stripped executable.",
1062 /* We need to throw away the frame cache when we set this, since it
1063 might change our ability to get backtraces. */
1064 c->function.sfunc = reinit_frame_cache_sfunc;
1065 add_show_from_set (c, &showlist);