* linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
[gdb/SamB.git] / gdb / m32r-tdep.c
blob5f4b9a648a986254cbb9f348c83e65ce2cd88431
1 /* Target-dependent code for Renesas M32R, for GDB.
3 Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
4 2008, 2009 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "defs.h"
22 #include "frame.h"
23 #include "frame-unwind.h"
24 #include "frame-base.h"
25 #include "symtab.h"
26 #include "gdbtypes.h"
27 #include "gdbcmd.h"
28 #include "gdbcore.h"
29 #include "gdb_string.h"
30 #include "value.h"
31 #include "inferior.h"
32 #include "symfile.h"
33 #include "objfiles.h"
34 #include "osabi.h"
35 #include "language.h"
36 #include "arch-utils.h"
37 #include "regcache.h"
38 #include "trad-frame.h"
39 #include "dis-asm.h"
41 #include "gdb_assert.h"
43 #include "m32r-tdep.h"
45 /* Local functions */
47 extern void _initialize_m32r_tdep (void);
49 static CORE_ADDR
50 m32r_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
52 /* Align to the size of an instruction (so that they can safely be
53 pushed onto the stack. */
54 return sp & ~3;
58 /* Breakpoints
60 The little endian mode of M32R is unique. In most of architectures,
61 two 16-bit instructions, A and B, are placed as the following:
63 Big endian:
64 A0 A1 B0 B1
66 Little endian:
67 A1 A0 B1 B0
69 In M32R, they are placed like this:
71 Big endian:
72 A0 A1 B0 B1
74 Little endian:
75 B1 B0 A1 A0
77 This is because M32R always fetches instructions in 32-bit.
79 The following functions take care of this behavior. */
81 static int
82 m32r_memory_insert_breakpoint (struct gdbarch *gdbarch,
83 struct bp_target_info *bp_tgt)
85 CORE_ADDR addr = bp_tgt->placed_address;
86 int val;
87 gdb_byte buf[4];
88 gdb_byte *contents_cache = bp_tgt->shadow_contents;
89 gdb_byte bp_entry[] = { 0x10, 0xf1 }; /* dpt */
91 /* Save the memory contents. */
92 val = target_read_memory (addr & 0xfffffffc, contents_cache, 4);
93 if (val != 0)
94 return val; /* return error */
96 bp_tgt->placed_size = bp_tgt->shadow_len = 4;
98 /* Determine appropriate breakpoint contents and size for this address. */
99 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
101 if ((addr & 3) == 0)
103 buf[0] = bp_entry[0];
104 buf[1] = bp_entry[1];
105 buf[2] = contents_cache[2] & 0x7f;
106 buf[3] = contents_cache[3];
108 else
110 buf[0] = contents_cache[0];
111 buf[1] = contents_cache[1];
112 buf[2] = bp_entry[0];
113 buf[3] = bp_entry[1];
116 else /* little-endian */
118 if ((addr & 3) == 0)
120 buf[0] = contents_cache[0];
121 buf[1] = contents_cache[1] & 0x7f;
122 buf[2] = bp_entry[1];
123 buf[3] = bp_entry[0];
125 else
127 buf[0] = bp_entry[1];
128 buf[1] = bp_entry[0];
129 buf[2] = contents_cache[2];
130 buf[3] = contents_cache[3];
134 /* Write the breakpoint. */
135 val = target_write_memory (addr & 0xfffffffc, buf, 4);
136 return val;
139 static int
140 m32r_memory_remove_breakpoint (struct gdbarch *gdbarch,
141 struct bp_target_info *bp_tgt)
143 CORE_ADDR addr = bp_tgt->placed_address;
144 int val;
145 gdb_byte buf[4];
146 gdb_byte *contents_cache = bp_tgt->shadow_contents;
148 buf[0] = contents_cache[0];
149 buf[1] = contents_cache[1];
150 buf[2] = contents_cache[2];
151 buf[3] = contents_cache[3];
153 /* Remove parallel bit. */
154 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
156 if ((buf[0] & 0x80) == 0 && (buf[2] & 0x80) != 0)
157 buf[2] &= 0x7f;
159 else /* little-endian */
161 if ((buf[3] & 0x80) == 0 && (buf[1] & 0x80) != 0)
162 buf[1] &= 0x7f;
165 /* Write contents. */
166 val = target_write_memory (addr & 0xfffffffc, buf, 4);
167 return val;
170 static const gdb_byte *
171 m32r_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
173 static gdb_byte be_bp_entry[] = { 0x10, 0xf1, 0x70, 0x00 }; /* dpt -> nop */
174 static gdb_byte le_bp_entry[] = { 0x00, 0x70, 0xf1, 0x10 }; /* dpt -> nop */
175 gdb_byte *bp;
177 /* Determine appropriate breakpoint. */
178 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
180 if ((*pcptr & 3) == 0)
182 bp = be_bp_entry;
183 *lenptr = 4;
185 else
187 bp = be_bp_entry;
188 *lenptr = 2;
191 else
193 if ((*pcptr & 3) == 0)
195 bp = le_bp_entry;
196 *lenptr = 4;
198 else
200 bp = le_bp_entry + 2;
201 *lenptr = 2;
205 return bp;
209 char *m32r_register_names[] = {
210 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
211 "r8", "r9", "r10", "r11", "r12", "fp", "lr", "sp",
212 "psw", "cbr", "spi", "spu", "bpc", "pc", "accl", "acch",
213 "evb"
216 static const char *
217 m32r_register_name (struct gdbarch *gdbarch, int reg_nr)
219 if (reg_nr < 0)
220 return NULL;
221 if (reg_nr >= M32R_NUM_REGS)
222 return NULL;
223 return m32r_register_names[reg_nr];
227 /* Return the GDB type object for the "standard" data type
228 of data in register N. */
230 static struct type *
231 m32r_register_type (struct gdbarch *gdbarch, int reg_nr)
233 if (reg_nr == M32R_PC_REGNUM)
234 return builtin_type (gdbarch)->builtin_func_ptr;
235 else if (reg_nr == M32R_SP_REGNUM || reg_nr == M32R_FP_REGNUM)
236 return builtin_type (gdbarch)->builtin_data_ptr;
237 else
238 return builtin_type_int32;
242 /* Write into appropriate registers a function return value
243 of type TYPE, given in virtual format.
245 Things always get returned in RET1_REGNUM, RET2_REGNUM. */
247 static void
248 m32r_store_return_value (struct type *type, struct regcache *regcache,
249 const void *valbuf)
251 CORE_ADDR regval;
252 int len = TYPE_LENGTH (type);
254 regval = extract_unsigned_integer (valbuf, len > 4 ? 4 : len);
255 regcache_cooked_write_unsigned (regcache, RET1_REGNUM, regval);
257 if (len > 4)
259 regval = extract_unsigned_integer ((gdb_byte *) valbuf + 4, len - 4);
260 regcache_cooked_write_unsigned (regcache, RET1_REGNUM + 1, regval);
264 /* This is required by skip_prologue. The results of decoding a prologue
265 should be cached because this thrashing is getting nuts. */
267 static int
268 decode_prologue (CORE_ADDR start_pc, CORE_ADDR scan_limit,
269 CORE_ADDR *pl_endptr, unsigned long *framelength)
271 unsigned long framesize;
272 int insn;
273 int op1;
274 CORE_ADDR after_prologue = 0;
275 CORE_ADDR after_push = 0;
276 CORE_ADDR after_stack_adjust = 0;
277 CORE_ADDR current_pc;
278 LONGEST return_value;
280 framesize = 0;
281 after_prologue = 0;
283 for (current_pc = start_pc; current_pc < scan_limit; current_pc += 2)
285 /* Check if current pc's location is readable. */
286 if (!safe_read_memory_integer (current_pc, 2, &return_value))
287 return -1;
289 insn = read_memory_unsigned_integer (current_pc, 2);
291 if (insn == 0x0000)
292 break;
294 /* If this is a 32 bit instruction, we dont want to examine its
295 immediate data as though it were an instruction */
296 if (current_pc & 0x02)
298 /* decode this instruction further */
299 insn &= 0x7fff;
301 else
303 if (insn & 0x8000)
305 if (current_pc == scan_limit)
306 scan_limit += 2; /* extend the search */
308 current_pc += 2; /* skip the immediate data */
310 /* Check if current pc's location is readable. */
311 if (!safe_read_memory_integer (current_pc, 2, &return_value))
312 return -1;
314 if (insn == 0x8faf) /* add3 sp, sp, xxxx */
315 /* add 16 bit sign-extended offset */
317 framesize +=
318 -((short) read_memory_unsigned_integer (current_pc, 2));
320 else
322 if (((insn >> 8) == 0xe4) /* ld24 r4, xxxxxx; sub sp, r4 */
323 && safe_read_memory_integer (current_pc + 2, 2,
324 &return_value)
325 && read_memory_unsigned_integer (current_pc + 2,
326 2) == 0x0f24)
327 /* subtract 24 bit sign-extended negative-offset */
329 insn = read_memory_unsigned_integer (current_pc - 2, 4);
330 if (insn & 0x00800000) /* sign extend */
331 insn |= 0xff000000; /* negative */
332 else
333 insn &= 0x00ffffff; /* positive */
334 framesize += insn;
337 after_push = current_pc + 2;
338 continue;
341 op1 = insn & 0xf000; /* isolate just the first nibble */
343 if ((insn & 0xf0ff) == 0x207f)
344 { /* st reg, @-sp */
345 int regno;
346 framesize += 4;
347 regno = ((insn >> 8) & 0xf);
348 after_prologue = 0;
349 continue;
351 if ((insn >> 8) == 0x4f) /* addi sp, xx */
352 /* add 8 bit sign-extended offset */
354 int stack_adjust = (signed char) (insn & 0xff);
356 /* there are probably two of these stack adjustments:
357 1) A negative one in the prologue, and
358 2) A positive one in the epilogue.
359 We are only interested in the first one. */
361 if (stack_adjust < 0)
363 framesize -= stack_adjust;
364 after_prologue = 0;
365 /* A frameless function may have no "mv fp, sp".
366 In that case, this is the end of the prologue. */
367 after_stack_adjust = current_pc + 2;
369 continue;
371 if (insn == 0x1d8f)
372 { /* mv fp, sp */
373 after_prologue = current_pc + 2;
374 break; /* end of stack adjustments */
377 /* Nop looks like a branch, continue explicitly */
378 if (insn == 0x7000)
380 after_prologue = current_pc + 2;
381 continue; /* nop occurs between pushes */
383 /* End of prolog if any of these are trap instructions */
384 if ((insn & 0xfff0) == 0x10f0)
386 after_prologue = current_pc;
387 break;
389 /* End of prolog if any of these are branch instructions */
390 if ((op1 == 0x7000) || (op1 == 0xb000) || (op1 == 0xf000))
392 after_prologue = current_pc;
393 continue;
395 /* Some of the branch instructions are mixed with other types */
396 if (op1 == 0x1000)
398 int subop = insn & 0x0ff0;
399 if ((subop == 0x0ec0) || (subop == 0x0fc0))
401 after_prologue = current_pc;
402 continue; /* jmp , jl */
407 if (framelength)
408 *framelength = framesize;
410 if (current_pc >= scan_limit)
412 if (pl_endptr)
414 if (after_stack_adjust != 0)
415 /* We did not find a "mv fp,sp", but we DID find
416 a stack_adjust. Is it safe to use that as the
417 end of the prologue? I just don't know. */
419 *pl_endptr = after_stack_adjust;
421 else if (after_push != 0)
422 /* We did not find a "mv fp,sp", but we DID find
423 a push. Is it safe to use that as the
424 end of the prologue? I just don't know. */
426 *pl_endptr = after_push;
428 else
429 /* We reached the end of the loop without finding the end
430 of the prologue. No way to win -- we should report failure.
431 The way we do that is to return the original start_pc.
432 GDB will set a breakpoint at the start of the function (etc.) */
433 *pl_endptr = start_pc;
435 return 0;
438 if (after_prologue == 0)
439 after_prologue = current_pc;
441 if (pl_endptr)
442 *pl_endptr = after_prologue;
444 return 0;
445 } /* decode_prologue */
447 /* Function: skip_prologue
448 Find end of function prologue */
450 #define DEFAULT_SEARCH_LIMIT 128
452 static CORE_ADDR
453 m32r_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
455 CORE_ADDR func_addr, func_end;
456 struct symtab_and_line sal;
457 LONGEST return_value;
459 /* See what the symbol table says */
461 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
463 sal = find_pc_line (func_addr, 0);
465 if (sal.line != 0 && sal.end <= func_end)
467 func_end = sal.end;
469 else
470 /* Either there's no line info, or the line after the prologue is after
471 the end of the function. In this case, there probably isn't a
472 prologue. */
474 func_end = min (func_end, func_addr + DEFAULT_SEARCH_LIMIT);
477 else
478 func_end = pc + DEFAULT_SEARCH_LIMIT;
480 /* If pc's location is not readable, just quit. */
481 if (!safe_read_memory_integer (pc, 4, &return_value))
482 return pc;
484 /* Find the end of prologue. */
485 if (decode_prologue (pc, func_end, &sal.end, NULL) < 0)
486 return pc;
488 return sal.end;
491 struct m32r_unwind_cache
493 /* The previous frame's inner most stack address. Used as this
494 frame ID's stack_addr. */
495 CORE_ADDR prev_sp;
496 /* The frame's base, optionally used by the high-level debug info. */
497 CORE_ADDR base;
498 int size;
499 /* How far the SP and r13 (FP) have been offset from the start of
500 the stack frame (as defined by the previous frame's stack
501 pointer). */
502 LONGEST sp_offset;
503 LONGEST r13_offset;
504 int uses_frame;
505 /* Table indicating the location of each and every register. */
506 struct trad_frame_saved_reg *saved_regs;
509 /* Put here the code to store, into fi->saved_regs, the addresses of
510 the saved registers of frame described by FRAME_INFO. This
511 includes special registers such as pc and fp saved in special ways
512 in the stack frame. sp is even more special: the address we return
513 for it IS the sp for the next frame. */
515 static struct m32r_unwind_cache *
516 m32r_frame_unwind_cache (struct frame_info *this_frame,
517 void **this_prologue_cache)
519 CORE_ADDR pc, scan_limit;
520 ULONGEST prev_sp;
521 ULONGEST this_base;
522 unsigned long op, op2;
523 int i;
524 struct m32r_unwind_cache *info;
527 if ((*this_prologue_cache))
528 return (*this_prologue_cache);
530 info = FRAME_OBSTACK_ZALLOC (struct m32r_unwind_cache);
531 (*this_prologue_cache) = info;
532 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
534 info->size = 0;
535 info->sp_offset = 0;
536 info->uses_frame = 0;
538 scan_limit = get_frame_pc (this_frame);
539 for (pc = get_frame_func (this_frame);
540 pc > 0 && pc < scan_limit; pc += 2)
542 if ((pc & 2) == 0)
544 op = get_frame_memory_unsigned (this_frame, pc, 4);
545 if ((op & 0x80000000) == 0x80000000)
547 /* 32-bit instruction */
548 if ((op & 0xffff0000) == 0x8faf0000)
550 /* add3 sp,sp,xxxx */
551 short n = op & 0xffff;
552 info->sp_offset += n;
554 else if (((op >> 8) == 0xe4)
555 && get_frame_memory_unsigned (this_frame, pc + 2,
556 2) == 0x0f24)
558 /* ld24 r4, xxxxxx; sub sp, r4 */
559 unsigned long n = op & 0xffffff;
560 info->sp_offset += n;
561 pc += 2; /* skip sub instruction */
564 if (pc == scan_limit)
565 scan_limit += 2; /* extend the search */
566 pc += 2; /* skip the immediate data */
567 continue;
571 /* 16-bit instructions */
572 op = get_frame_memory_unsigned (this_frame, pc, 2) & 0x7fff;
573 if ((op & 0xf0ff) == 0x207f)
575 /* st rn, @-sp */
576 int regno = ((op >> 8) & 0xf);
577 info->sp_offset -= 4;
578 info->saved_regs[regno].addr = info->sp_offset;
580 else if ((op & 0xff00) == 0x4f00)
582 /* addi sp, xx */
583 int n = (signed char) (op & 0xff);
584 info->sp_offset += n;
586 else if (op == 0x1d8f)
588 /* mv fp, sp */
589 info->uses_frame = 1;
590 info->r13_offset = info->sp_offset;
591 break; /* end of stack adjustments */
593 else if ((op & 0xfff0) == 0x10f0)
595 /* end of prologue if this is a trap instruction */
596 break; /* end of stack adjustments */
600 info->size = -info->sp_offset;
602 /* Compute the previous frame's stack pointer (which is also the
603 frame's ID's stack address), and this frame's base pointer. */
604 if (info->uses_frame)
606 /* The SP was moved to the FP. This indicates that a new frame
607 was created. Get THIS frame's FP value by unwinding it from
608 the next frame. */
609 this_base = get_frame_register_unsigned (this_frame, M32R_FP_REGNUM);
610 /* The FP points at the last saved register. Adjust the FP back
611 to before the first saved register giving the SP. */
612 prev_sp = this_base + info->size;
614 else
616 /* Assume that the FP is this frame's SP but with that pushed
617 stack space added back. */
618 this_base = get_frame_register_unsigned (this_frame, M32R_SP_REGNUM);
619 prev_sp = this_base + info->size;
622 /* Convert that SP/BASE into real addresses. */
623 info->prev_sp = prev_sp;
624 info->base = this_base;
626 /* Adjust all the saved registers so that they contain addresses and
627 not offsets. */
628 for (i = 0; i < gdbarch_num_regs (get_frame_arch (this_frame)) - 1; i++)
629 if (trad_frame_addr_p (info->saved_regs, i))
630 info->saved_regs[i].addr = (info->prev_sp + info->saved_regs[i].addr);
632 /* The call instruction moves the caller's PC in the callee's LR.
633 Since this is an unwind, do the reverse. Copy the location of LR
634 into PC (the address / regnum) so that a request for PC will be
635 converted into a request for the LR. */
636 info->saved_regs[M32R_PC_REGNUM] = info->saved_regs[LR_REGNUM];
638 /* The previous frame's SP needed to be computed. Save the computed
639 value. */
640 trad_frame_set_value (info->saved_regs, M32R_SP_REGNUM, prev_sp);
642 return info;
645 static CORE_ADDR
646 m32r_read_pc (struct regcache *regcache)
648 ULONGEST pc;
649 regcache_cooked_read_unsigned (regcache, M32R_PC_REGNUM, &pc);
650 return pc;
653 static void
654 m32r_write_pc (struct regcache *regcache, CORE_ADDR val)
656 regcache_cooked_write_unsigned (regcache, M32R_PC_REGNUM, val);
659 static CORE_ADDR
660 m32r_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
662 return frame_unwind_register_unsigned (next_frame, M32R_SP_REGNUM);
666 static CORE_ADDR
667 m32r_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
668 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
669 struct value **args, CORE_ADDR sp, int struct_return,
670 CORE_ADDR struct_addr)
672 int stack_offset, stack_alloc;
673 int argreg = ARG1_REGNUM;
674 int argnum;
675 struct type *type;
676 enum type_code typecode;
677 CORE_ADDR regval;
678 gdb_byte *val;
679 gdb_byte valbuf[MAX_REGISTER_SIZE];
680 int len;
681 int odd_sized_struct;
683 /* first force sp to a 4-byte alignment */
684 sp = sp & ~3;
686 /* Set the return address. For the m32r, the return breakpoint is
687 always at BP_ADDR. */
688 regcache_cooked_write_unsigned (regcache, LR_REGNUM, bp_addr);
690 /* If STRUCT_RETURN is true, then the struct return address (in
691 STRUCT_ADDR) will consume the first argument-passing register.
692 Both adjust the register count and store that value. */
693 if (struct_return)
695 regcache_cooked_write_unsigned (regcache, argreg, struct_addr);
696 argreg++;
699 /* Now make sure there's space on the stack */
700 for (argnum = 0, stack_alloc = 0; argnum < nargs; argnum++)
701 stack_alloc += ((TYPE_LENGTH (value_type (args[argnum])) + 3) & ~3);
702 sp -= stack_alloc; /* make room on stack for args */
704 for (argnum = 0, stack_offset = 0; argnum < nargs; argnum++)
706 type = value_type (args[argnum]);
707 typecode = TYPE_CODE (type);
708 len = TYPE_LENGTH (type);
710 memset (valbuf, 0, sizeof (valbuf));
712 /* Passes structures that do not fit in 2 registers by reference. */
713 if (len > 8
714 && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
716 store_unsigned_integer (valbuf, 4, VALUE_ADDRESS (args[argnum]));
717 typecode = TYPE_CODE_PTR;
718 len = 4;
719 val = valbuf;
721 else if (len < 4)
723 /* value gets right-justified in the register or stack word */
724 memcpy (valbuf + (register_size (gdbarch, argreg) - len),
725 (gdb_byte *) value_contents (args[argnum]), len);
726 val = valbuf;
728 else
729 val = (gdb_byte *) value_contents (args[argnum]);
731 while (len > 0)
733 if (argreg > ARGN_REGNUM)
735 /* must go on the stack */
736 write_memory (sp + stack_offset, val, 4);
737 stack_offset += 4;
739 else if (argreg <= ARGN_REGNUM)
741 /* there's room in a register */
742 regval =
743 extract_unsigned_integer (val,
744 register_size (gdbarch, argreg));
745 regcache_cooked_write_unsigned (regcache, argreg++, regval);
748 /* Store the value 4 bytes at a time. This means that things
749 larger than 4 bytes may go partly in registers and partly
750 on the stack. */
751 len -= register_size (gdbarch, argreg);
752 val += register_size (gdbarch, argreg);
756 /* Finally, update the SP register. */
757 regcache_cooked_write_unsigned (regcache, M32R_SP_REGNUM, sp);
759 return sp;
763 /* Given a return value in `regbuf' with a type `valtype',
764 extract and copy its value into `valbuf'. */
766 static void
767 m32r_extract_return_value (struct type *type, struct regcache *regcache,
768 void *dst)
770 bfd_byte *valbuf = dst;
771 int len = TYPE_LENGTH (type);
772 ULONGEST tmp;
774 /* By using store_unsigned_integer we avoid having to do
775 anything special for small big-endian values. */
776 regcache_cooked_read_unsigned (regcache, RET1_REGNUM, &tmp);
777 store_unsigned_integer (valbuf, (len > 4 ? len - 4 : len), tmp);
779 /* Ignore return values more than 8 bytes in size because the m32r
780 returns anything more than 8 bytes in the stack. */
781 if (len > 4)
783 regcache_cooked_read_unsigned (regcache, RET1_REGNUM + 1, &tmp);
784 store_unsigned_integer (valbuf + len - 4, 4, tmp);
788 static enum return_value_convention
789 m32r_return_value (struct gdbarch *gdbarch, struct type *func_type,
790 struct type *valtype, struct regcache *regcache,
791 gdb_byte *readbuf, const gdb_byte *writebuf)
793 if (TYPE_LENGTH (valtype) > 8)
794 return RETURN_VALUE_STRUCT_CONVENTION;
795 else
797 if (readbuf != NULL)
798 m32r_extract_return_value (valtype, regcache, readbuf);
799 if (writebuf != NULL)
800 m32r_store_return_value (valtype, regcache, writebuf);
801 return RETURN_VALUE_REGISTER_CONVENTION;
807 static CORE_ADDR
808 m32r_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
810 return frame_unwind_register_unsigned (next_frame, M32R_PC_REGNUM);
813 /* Given a GDB frame, determine the address of the calling function's
814 frame. This will be used to create a new GDB frame struct. */
816 static void
817 m32r_frame_this_id (struct frame_info *this_frame,
818 void **this_prologue_cache, struct frame_id *this_id)
820 struct m32r_unwind_cache *info
821 = m32r_frame_unwind_cache (this_frame, this_prologue_cache);
822 CORE_ADDR base;
823 CORE_ADDR func;
824 struct minimal_symbol *msym_stack;
825 struct frame_id id;
827 /* The FUNC is easy. */
828 func = get_frame_func (this_frame);
830 /* Check if the stack is empty. */
831 msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL);
832 if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))
833 return;
835 /* Hopefully the prologue analysis either correctly determined the
836 frame's base (which is the SP from the previous frame), or set
837 that base to "NULL". */
838 base = info->prev_sp;
839 if (base == 0)
840 return;
842 id = frame_id_build (base, func);
843 (*this_id) = id;
846 static struct value *
847 m32r_frame_prev_register (struct frame_info *this_frame,
848 void **this_prologue_cache, int regnum)
850 struct m32r_unwind_cache *info
851 = m32r_frame_unwind_cache (this_frame, this_prologue_cache);
852 return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
855 static const struct frame_unwind m32r_frame_unwind = {
856 NORMAL_FRAME,
857 m32r_frame_this_id,
858 m32r_frame_prev_register,
859 NULL,
860 default_frame_sniffer
863 static CORE_ADDR
864 m32r_frame_base_address (struct frame_info *this_frame, void **this_cache)
866 struct m32r_unwind_cache *info
867 = m32r_frame_unwind_cache (this_frame, this_cache);
868 return info->base;
871 static const struct frame_base m32r_frame_base = {
872 &m32r_frame_unwind,
873 m32r_frame_base_address,
874 m32r_frame_base_address,
875 m32r_frame_base_address
878 /* Assuming THIS_FRAME is a dummy, return the frame ID of that dummy
879 frame. The frame ID's base needs to match the TOS value saved by
880 save_dummy_frame_tos(), and the PC match the dummy frame's breakpoint. */
882 static struct frame_id
883 m32r_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
885 CORE_ADDR sp = get_frame_register_unsigned (this_frame, M32R_SP_REGNUM);
886 return frame_id_build (sp, get_frame_pc (this_frame));
890 static gdbarch_init_ftype m32r_gdbarch_init;
892 static struct gdbarch *
893 m32r_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
895 struct gdbarch *gdbarch;
896 struct gdbarch_tdep *tdep;
898 /* If there is already a candidate, use it. */
899 arches = gdbarch_list_lookup_by_info (arches, &info);
900 if (arches != NULL)
901 return arches->gdbarch;
903 /* Allocate space for the new architecture. */
904 tdep = XMALLOC (struct gdbarch_tdep);
905 gdbarch = gdbarch_alloc (&info, tdep);
907 set_gdbarch_read_pc (gdbarch, m32r_read_pc);
908 set_gdbarch_write_pc (gdbarch, m32r_write_pc);
909 set_gdbarch_unwind_sp (gdbarch, m32r_unwind_sp);
911 set_gdbarch_num_regs (gdbarch, M32R_NUM_REGS);
912 set_gdbarch_sp_regnum (gdbarch, M32R_SP_REGNUM);
913 set_gdbarch_register_name (gdbarch, m32r_register_name);
914 set_gdbarch_register_type (gdbarch, m32r_register_type);
916 set_gdbarch_push_dummy_call (gdbarch, m32r_push_dummy_call);
917 set_gdbarch_return_value (gdbarch, m32r_return_value);
919 set_gdbarch_skip_prologue (gdbarch, m32r_skip_prologue);
920 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
921 set_gdbarch_breakpoint_from_pc (gdbarch, m32r_breakpoint_from_pc);
922 set_gdbarch_memory_insert_breakpoint (gdbarch,
923 m32r_memory_insert_breakpoint);
924 set_gdbarch_memory_remove_breakpoint (gdbarch,
925 m32r_memory_remove_breakpoint);
927 set_gdbarch_frame_align (gdbarch, m32r_frame_align);
929 frame_base_set_default (gdbarch, &m32r_frame_base);
931 /* Methods for saving / extracting a dummy frame's ID. The ID's
932 stack address must match the SP value returned by
933 PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos. */
934 set_gdbarch_dummy_id (gdbarch, m32r_dummy_id);
936 /* Return the unwound PC value. */
937 set_gdbarch_unwind_pc (gdbarch, m32r_unwind_pc);
939 set_gdbarch_print_insn (gdbarch, print_insn_m32r);
941 /* Hook in ABI-specific overrides, if they have been registered. */
942 gdbarch_init_osabi (info, gdbarch);
944 /* Hook in the default unwinders. */
945 frame_unwind_append_unwinder (gdbarch, &m32r_frame_unwind);
947 /* Support simple overlay manager. */
948 set_gdbarch_overlay_update (gdbarch, simple_overlay_update);
950 return gdbarch;
953 void
954 _initialize_m32r_tdep (void)
956 register_gdbarch_init (bfd_arch_m32r, m32r_gdbarch_init);