gdb/
[external/binutils.git] / gdb / m32r-tdep.c
1 /* Target-dependent code for Renesas M32R, for GDB.
2
3    Copyright (C) 1996, 1998-2005, 2007-2012 Free Software Foundation,
4    Inc.
5
6    This file is part of GDB.
7
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.
12
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.
17
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/>.  */
20
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"
40
41 #include "gdb_assert.h"
42
43 #include "m32r-tdep.h"
44
45 /* Local functions */
46
47 extern void _initialize_m32r_tdep (void);
48
49 static CORE_ADDR
50 m32r_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
51 {
52   /* Align to the size of an instruction (so that they can safely be
53      pushed onto the stack.  */
54   return sp & ~3;
55 }
56
57
58 /* Breakpoints
59  
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:
62   
63    Big endian:
64    A0 A1 B0 B1
65   
66    Little endian:
67    A1 A0 B1 B0
68   
69    In M32R, they are placed like this:
70   
71    Big endian:
72    A0 A1 B0 B1
73   
74    Little endian:
75    B1 B0 A1 A0
76   
77    This is because M32R always fetches instructions in 32-bit.
78   
79    The following functions take care of this behavior.  */
80
81 static int
82 m32r_memory_insert_breakpoint (struct gdbarch *gdbarch,
83                                struct bp_target_info *bp_tgt)
84 {
85   CORE_ADDR addr = bp_tgt->placed_address;
86   int val;
87   gdb_byte buf[4];
88   gdb_byte contents_cache[4];
89   gdb_byte bp_entry[] = { 0x10, 0xf1 }; /* dpt */
90
91   /* Save the memory contents.  */
92   val = target_read_memory (addr & 0xfffffffc, contents_cache, 4);
93   if (val != 0)
94     return val;                 /* return error */
95
96   memcpy (bp_tgt->shadow_contents, contents_cache, 4);
97   bp_tgt->placed_size = bp_tgt->shadow_len = 4;
98
99   /* Determine appropriate breakpoint contents and size for this address.  */
100   if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
101     {
102       if ((addr & 3) == 0)
103         {
104           buf[0] = bp_entry[0];
105           buf[1] = bp_entry[1];
106           buf[2] = contents_cache[2] & 0x7f;
107           buf[3] = contents_cache[3];
108         }
109       else
110         {
111           buf[0] = contents_cache[0];
112           buf[1] = contents_cache[1];
113           buf[2] = bp_entry[0];
114           buf[3] = bp_entry[1];
115         }
116     }
117   else                          /* little-endian */
118     {
119       if ((addr & 3) == 0)
120         {
121           buf[0] = contents_cache[0];
122           buf[1] = contents_cache[1] & 0x7f;
123           buf[2] = bp_entry[1];
124           buf[3] = bp_entry[0];
125         }
126       else
127         {
128           buf[0] = bp_entry[1];
129           buf[1] = bp_entry[0];
130           buf[2] = contents_cache[2];
131           buf[3] = contents_cache[3];
132         }
133     }
134
135   /* Write the breakpoint.  */
136   val = target_write_memory (addr & 0xfffffffc, buf, 4);
137   return val;
138 }
139
140 static int
141 m32r_memory_remove_breakpoint (struct gdbarch *gdbarch,
142                                struct bp_target_info *bp_tgt)
143 {
144   CORE_ADDR addr = bp_tgt->placed_address;
145   int val;
146   gdb_byte buf[4];
147   gdb_byte *contents_cache = bp_tgt->shadow_contents;
148
149   buf[0] = contents_cache[0];
150   buf[1] = contents_cache[1];
151   buf[2] = contents_cache[2];
152   buf[3] = contents_cache[3];
153
154   /* Remove parallel bit.  */
155   if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
156     {
157       if ((buf[0] & 0x80) == 0 && (buf[2] & 0x80) != 0)
158         buf[2] &= 0x7f;
159     }
160   else                          /* little-endian */
161     {
162       if ((buf[3] & 0x80) == 0 && (buf[1] & 0x80) != 0)
163         buf[1] &= 0x7f;
164     }
165
166   /* Write contents.  */
167   val = target_write_raw_memory (addr & 0xfffffffc, buf, 4);
168   return val;
169 }
170
171 static const gdb_byte *
172 m32r_breakpoint_from_pc (struct gdbarch *gdbarch,
173                          CORE_ADDR *pcptr, int *lenptr)
174 {
175   static gdb_byte be_bp_entry[] = {
176     0x10, 0xf1, 0x70, 0x00
177   };    /* dpt -> nop */
178   static gdb_byte le_bp_entry[] = {
179     0x00, 0x70, 0xf1, 0x10
180   };    /* dpt -> nop */
181   gdb_byte *bp;
182
183   /* Determine appropriate breakpoint.  */
184   if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
185     {
186       if ((*pcptr & 3) == 0)
187         {
188           bp = be_bp_entry;
189           *lenptr = 4;
190         }
191       else
192         {
193           bp = be_bp_entry;
194           *lenptr = 2;
195         }
196     }
197   else
198     {
199       if ((*pcptr & 3) == 0)
200         {
201           bp = le_bp_entry;
202           *lenptr = 4;
203         }
204       else
205         {
206           bp = le_bp_entry + 2;
207           *lenptr = 2;
208         }
209     }
210
211   return bp;
212 }
213
214
215 char *m32r_register_names[] = {
216   "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
217   "r8", "r9", "r10", "r11", "r12", "fp", "lr", "sp",
218   "psw", "cbr", "spi", "spu", "bpc", "pc", "accl", "acch",
219   "evb"
220 };
221
222 static const char *
223 m32r_register_name (struct gdbarch *gdbarch, int reg_nr)
224 {
225   if (reg_nr < 0)
226     return NULL;
227   if (reg_nr >= M32R_NUM_REGS)
228     return NULL;
229   return m32r_register_names[reg_nr];
230 }
231
232
233 /* Return the GDB type object for the "standard" data type
234    of data in register N.  */
235
236 static struct type *
237 m32r_register_type (struct gdbarch *gdbarch, int reg_nr)
238 {
239   if (reg_nr == M32R_PC_REGNUM)
240     return builtin_type (gdbarch)->builtin_func_ptr;
241   else if (reg_nr == M32R_SP_REGNUM || reg_nr == M32R_FP_REGNUM)
242     return builtin_type (gdbarch)->builtin_data_ptr;
243   else
244     return builtin_type (gdbarch)->builtin_int32;
245 }
246
247
248 /* Write into appropriate registers a function return value
249    of type TYPE, given in virtual format.
250
251    Things always get returned in RET1_REGNUM, RET2_REGNUM.  */
252
253 static void
254 m32r_store_return_value (struct type *type, struct regcache *regcache,
255                          const void *valbuf)
256 {
257   struct gdbarch *gdbarch = get_regcache_arch (regcache);
258   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
259   CORE_ADDR regval;
260   int len = TYPE_LENGTH (type);
261
262   regval = extract_unsigned_integer (valbuf, len > 4 ? 4 : len, byte_order);
263   regcache_cooked_write_unsigned (regcache, RET1_REGNUM, regval);
264
265   if (len > 4)
266     {
267       regval = extract_unsigned_integer ((gdb_byte *) valbuf + 4,
268                                          len - 4, byte_order);
269       regcache_cooked_write_unsigned (regcache, RET1_REGNUM + 1, regval);
270     }
271 }
272
273 /* This is required by skip_prologue.  The results of decoding a prologue
274    should be cached because this thrashing is getting nuts.  */
275
276 static int
277 decode_prologue (struct gdbarch *gdbarch,
278                  CORE_ADDR start_pc, CORE_ADDR scan_limit,
279                  CORE_ADDR *pl_endptr, unsigned long *framelength)
280 {
281   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
282   unsigned long framesize;
283   int insn;
284   int op1;
285   CORE_ADDR after_prologue = 0;
286   CORE_ADDR after_push = 0;
287   CORE_ADDR after_stack_adjust = 0;
288   CORE_ADDR current_pc;
289   LONGEST return_value;
290
291   framesize = 0;
292   after_prologue = 0;
293
294   for (current_pc = start_pc; current_pc < scan_limit; current_pc += 2)
295     {
296       /* Check if current pc's location is readable.  */
297       if (!safe_read_memory_integer (current_pc, 2, byte_order, &return_value))
298         return -1;
299
300       insn = read_memory_unsigned_integer (current_pc, 2, byte_order);
301
302       if (insn == 0x0000)
303         break;
304
305       /* If this is a 32 bit instruction, we dont want to examine its
306          immediate data as though it were an instruction.  */
307       if (current_pc & 0x02)
308         {
309           /* Decode this instruction further.  */
310           insn &= 0x7fff;
311         }
312       else
313         {
314           if (insn & 0x8000)
315             {
316               if (current_pc == scan_limit)
317                 scan_limit += 2;        /* extend the search */
318
319               current_pc += 2;  /* skip the immediate data */
320
321               /* Check if current pc's location is readable.  */
322               if (!safe_read_memory_integer (current_pc, 2, byte_order,
323                                              &return_value))
324                 return -1;
325
326               if (insn == 0x8faf)       /* add3 sp, sp, xxxx */
327                 /* add 16 bit sign-extended offset */
328                 {
329                   framesize +=
330                     -((short) read_memory_unsigned_integer (current_pc,
331                                                             2, byte_order));
332                 }
333               else
334                 {
335                   if (((insn >> 8) == 0xe4) /* ld24 r4, xxxxxx; sub sp, r4 */
336                       && safe_read_memory_integer (current_pc + 2,
337                                                    2, byte_order,
338                                                    &return_value)
339                       && read_memory_unsigned_integer (current_pc + 2,
340                                                        2, byte_order)
341                          == 0x0f24)
342                     {
343                       /* Subtract 24 bit sign-extended negative-offset.  */
344                       insn = read_memory_unsigned_integer (current_pc - 2,
345                                                            4, byte_order);
346                       if (insn & 0x00800000)    /* sign extend */
347                         insn |= 0xff000000;     /* negative */
348                       else
349                         insn &= 0x00ffffff;     /* positive */
350                       framesize += insn;
351                     }
352                 }
353               after_push = current_pc + 2;
354               continue;
355             }
356         }
357       op1 = insn & 0xf000;      /* Isolate just the first nibble.  */
358
359       if ((insn & 0xf0ff) == 0x207f)
360         {                       /* st reg, @-sp */
361           int regno;
362           framesize += 4;
363           regno = ((insn >> 8) & 0xf);
364           after_prologue = 0;
365           continue;
366         }
367       if ((insn >> 8) == 0x4f)  /* addi sp, xx */
368         /* Add 8 bit sign-extended offset.  */
369         {
370           int stack_adjust = (signed char) (insn & 0xff);
371
372           /* there are probably two of these stack adjustments:
373              1) A negative one in the prologue, and
374              2) A positive one in the epilogue.
375              We are only interested in the first one.  */
376
377           if (stack_adjust < 0)
378             {
379               framesize -= stack_adjust;
380               after_prologue = 0;
381               /* A frameless function may have no "mv fp, sp".
382                  In that case, this is the end of the prologue.  */
383               after_stack_adjust = current_pc + 2;
384             }
385           continue;
386         }
387       if (insn == 0x1d8f)
388         {                       /* mv fp, sp */
389           after_prologue = current_pc + 2;
390           break;                /* end of stack adjustments */
391         }
392
393       /* Nop looks like a branch, continue explicitly.  */
394       if (insn == 0x7000)
395         {
396           after_prologue = current_pc + 2;
397           continue;             /* nop occurs between pushes.  */
398         }
399       /* End of prolog if any of these are trap instructions.  */
400       if ((insn & 0xfff0) == 0x10f0)
401         {
402           after_prologue = current_pc;
403           break;
404         }
405       /* End of prolog if any of these are branch instructions.  */
406       if ((op1 == 0x7000) || (op1 == 0xb000) || (op1 == 0xf000))
407         {
408           after_prologue = current_pc;
409           continue;
410         }
411       /* Some of the branch instructions are mixed with other types.  */
412       if (op1 == 0x1000)
413         {
414           int subop = insn & 0x0ff0;
415           if ((subop == 0x0ec0) || (subop == 0x0fc0))
416             {
417               after_prologue = current_pc;
418               continue;         /* jmp , jl */
419             }
420         }
421     }
422
423   if (framelength)
424     *framelength = framesize;
425
426   if (current_pc >= scan_limit)
427     {
428       if (pl_endptr)
429         {
430           if (after_stack_adjust != 0)
431             /* We did not find a "mv fp,sp", but we DID find
432                a stack_adjust.  Is it safe to use that as the
433                end of the prologue?  I just don't know.  */
434             {
435               *pl_endptr = after_stack_adjust;
436             }
437           else if (after_push != 0)
438             /* We did not find a "mv fp,sp", but we DID find
439                a push.  Is it safe to use that as the
440                end of the prologue?  I just don't know.  */
441             {
442               *pl_endptr = after_push;
443             }
444           else
445             /* We reached the end of the loop without finding the end
446                of the prologue.  No way to win -- we should report
447                failure.  The way we do that is to return the original
448                start_pc.  GDB will set a breakpoint at the start of
449                the function (etc.)  */
450             *pl_endptr = start_pc;
451         }
452       return 0;
453     }
454
455   if (after_prologue == 0)
456     after_prologue = current_pc;
457
458   if (pl_endptr)
459     *pl_endptr = after_prologue;
460
461   return 0;
462 }                               /*  decode_prologue */
463
464 /* Function: skip_prologue
465    Find end of function prologue.  */
466
467 #define DEFAULT_SEARCH_LIMIT 128
468
469 static CORE_ADDR
470 m32r_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
471 {
472   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
473   CORE_ADDR func_addr, func_end;
474   struct symtab_and_line sal;
475   LONGEST return_value;
476
477   /* See what the symbol table says.  */
478
479   if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
480     {
481       sal = find_pc_line (func_addr, 0);
482
483       if (sal.line != 0 && sal.end <= func_end)
484         {
485           func_end = sal.end;
486         }
487       else
488         /* Either there's no line info, or the line after the prologue is after
489            the end of the function.  In this case, there probably isn't a
490            prologue.  */
491         {
492           func_end = min (func_end, func_addr + DEFAULT_SEARCH_LIMIT);
493         }
494     }
495   else
496     func_end = pc + DEFAULT_SEARCH_LIMIT;
497
498   /* If pc's location is not readable, just quit.  */
499   if (!safe_read_memory_integer (pc, 4, byte_order, &return_value))
500     return pc;
501
502   /* Find the end of prologue.  */
503   if (decode_prologue (gdbarch, pc, func_end, &sal.end, NULL) < 0)
504     return pc;
505
506   return sal.end;
507 }
508
509 struct m32r_unwind_cache
510 {
511   /* The previous frame's inner most stack address.  Used as this
512      frame ID's stack_addr.  */
513   CORE_ADDR prev_sp;
514   /* The frame's base, optionally used by the high-level debug info.  */
515   CORE_ADDR base;
516   int size;
517   /* How far the SP and r13 (FP) have been offset from the start of
518      the stack frame (as defined by the previous frame's stack
519      pointer).  */
520   LONGEST sp_offset;
521   LONGEST r13_offset;
522   int uses_frame;
523   /* Table indicating the location of each and every register.  */
524   struct trad_frame_saved_reg *saved_regs;
525 };
526
527 /* Put here the code to store, into fi->saved_regs, the addresses of
528    the saved registers of frame described by FRAME_INFO.  This
529    includes special registers such as pc and fp saved in special ways
530    in the stack frame.  sp is even more special: the address we return
531    for it IS the sp for the next frame.  */
532
533 static struct m32r_unwind_cache *
534 m32r_frame_unwind_cache (struct frame_info *this_frame,
535                          void **this_prologue_cache)
536 {
537   CORE_ADDR pc, scan_limit;
538   ULONGEST prev_sp;
539   ULONGEST this_base;
540   unsigned long op, op2;
541   int i;
542   struct m32r_unwind_cache *info;
543
544
545   if ((*this_prologue_cache))
546     return (*this_prologue_cache);
547
548   info = FRAME_OBSTACK_ZALLOC (struct m32r_unwind_cache);
549   (*this_prologue_cache) = info;
550   info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
551
552   info->size = 0;
553   info->sp_offset = 0;
554   info->uses_frame = 0;
555
556   scan_limit = get_frame_pc (this_frame);
557   for (pc = get_frame_func (this_frame);
558        pc > 0 && pc < scan_limit; pc += 2)
559     {
560       if ((pc & 2) == 0)
561         {
562           op = get_frame_memory_unsigned (this_frame, pc, 4);
563           if ((op & 0x80000000) == 0x80000000)
564             {
565               /* 32-bit instruction */
566               if ((op & 0xffff0000) == 0x8faf0000)
567                 {
568                   /* add3 sp,sp,xxxx */
569                   short n = op & 0xffff;
570                   info->sp_offset += n;
571                 }
572               else if (((op >> 8) == 0xe4)
573                        && get_frame_memory_unsigned (this_frame, pc + 2,
574                                                      2) == 0x0f24)
575                 {
576                   /* ld24 r4, xxxxxx; sub sp, r4 */
577                   unsigned long n = op & 0xffffff;
578                   info->sp_offset += n;
579                   pc += 2;      /* skip sub instruction */
580                 }
581
582               if (pc == scan_limit)
583                 scan_limit += 2;        /* extend the search */
584               pc += 2;          /* skip the immediate data */
585               continue;
586             }
587         }
588
589       /* 16-bit instructions */
590       op = get_frame_memory_unsigned (this_frame, pc, 2) & 0x7fff;
591       if ((op & 0xf0ff) == 0x207f)
592         {
593           /* st rn, @-sp */
594           int regno = ((op >> 8) & 0xf);
595           info->sp_offset -= 4;
596           info->saved_regs[regno].addr = info->sp_offset;
597         }
598       else if ((op & 0xff00) == 0x4f00)
599         {
600           /* addi sp, xx */
601           int n = (signed char) (op & 0xff);
602           info->sp_offset += n;
603         }
604       else if (op == 0x1d8f)
605         {
606           /* mv fp, sp */
607           info->uses_frame = 1;
608           info->r13_offset = info->sp_offset;
609           break;                /* end of stack adjustments */
610         }
611       else if ((op & 0xfff0) == 0x10f0)
612         {
613           /* End of prologue if this is a trap instruction.  */
614           break;                /* End of stack adjustments.  */
615         }
616     }
617
618   info->size = -info->sp_offset;
619
620   /* Compute the previous frame's stack pointer (which is also the
621      frame's ID's stack address), and this frame's base pointer.  */
622   if (info->uses_frame)
623     {
624       /* The SP was moved to the FP.  This indicates that a new frame
625          was created.  Get THIS frame's FP value by unwinding it from
626          the next frame.  */
627       this_base = get_frame_register_unsigned (this_frame, M32R_FP_REGNUM);
628       /* The FP points at the last saved register.  Adjust the FP back
629          to before the first saved register giving the SP.  */
630       prev_sp = this_base + info->size;
631     }
632   else
633     {
634       /* Assume that the FP is this frame's SP but with that pushed
635          stack space added back.  */
636       this_base = get_frame_register_unsigned (this_frame, M32R_SP_REGNUM);
637       prev_sp = this_base + info->size;
638     }
639
640   /* Convert that SP/BASE into real addresses.  */
641   info->prev_sp = prev_sp;
642   info->base = this_base;
643
644   /* Adjust all the saved registers so that they contain addresses and
645      not offsets.  */
646   for (i = 0; i < gdbarch_num_regs (get_frame_arch (this_frame)) - 1; i++)
647     if (trad_frame_addr_p (info->saved_regs, i))
648       info->saved_regs[i].addr = (info->prev_sp + info->saved_regs[i].addr);
649
650   /* The call instruction moves the caller's PC in the callee's LR.
651      Since this is an unwind, do the reverse.  Copy the location of LR
652      into PC (the address / regnum) so that a request for PC will be
653      converted into a request for the LR.  */
654   info->saved_regs[M32R_PC_REGNUM] = info->saved_regs[LR_REGNUM];
655
656   /* The previous frame's SP needed to be computed.  Save the computed
657      value.  */
658   trad_frame_set_value (info->saved_regs, M32R_SP_REGNUM, prev_sp);
659
660   return info;
661 }
662
663 static CORE_ADDR
664 m32r_read_pc (struct regcache *regcache)
665 {
666   ULONGEST pc;
667   regcache_cooked_read_unsigned (regcache, M32R_PC_REGNUM, &pc);
668   return pc;
669 }
670
671 static void
672 m32r_write_pc (struct regcache *regcache, CORE_ADDR val)
673 {
674   regcache_cooked_write_unsigned (regcache, M32R_PC_REGNUM, val);
675 }
676
677 static CORE_ADDR
678 m32r_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
679 {
680   return frame_unwind_register_unsigned (next_frame, M32R_SP_REGNUM);
681 }
682
683
684 static CORE_ADDR
685 m32r_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
686                       struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
687                       struct value **args, CORE_ADDR sp, int struct_return,
688                       CORE_ADDR struct_addr)
689 {
690   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
691   int stack_offset, stack_alloc;
692   int argreg = ARG1_REGNUM;
693   int argnum;
694   struct type *type;
695   enum type_code typecode;
696   CORE_ADDR regval;
697   gdb_byte *val;
698   gdb_byte valbuf[MAX_REGISTER_SIZE];
699   int len;
700   int odd_sized_struct;
701
702   /* First force sp to a 4-byte alignment.  */
703   sp = sp & ~3;
704
705   /* Set the return address.  For the m32r, the return breakpoint is
706      always at BP_ADDR.  */
707   regcache_cooked_write_unsigned (regcache, LR_REGNUM, bp_addr);
708
709   /* If STRUCT_RETURN is true, then the struct return address (in
710      STRUCT_ADDR) will consume the first argument-passing register.
711      Both adjust the register count and store that value.  */
712   if (struct_return)
713     {
714       regcache_cooked_write_unsigned (regcache, argreg, struct_addr);
715       argreg++;
716     }
717
718   /* Now make sure there's space on the stack.  */
719   for (argnum = 0, stack_alloc = 0; argnum < nargs; argnum++)
720     stack_alloc += ((TYPE_LENGTH (value_type (args[argnum])) + 3) & ~3);
721   sp -= stack_alloc;            /* Make room on stack for args.  */
722
723   for (argnum = 0, stack_offset = 0; argnum < nargs; argnum++)
724     {
725       type = value_type (args[argnum]);
726       typecode = TYPE_CODE (type);
727       len = TYPE_LENGTH (type);
728
729       memset (valbuf, 0, sizeof (valbuf));
730
731       /* Passes structures that do not fit in 2 registers by reference.  */
732       if (len > 8
733           && (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION))
734         {
735           store_unsigned_integer (valbuf, 4, byte_order,
736                                   value_address (args[argnum]));
737           typecode = TYPE_CODE_PTR;
738           len = 4;
739           val = valbuf;
740         }
741       else if (len < 4)
742         {
743           /* Value gets right-justified in the register or stack word.  */
744           memcpy (valbuf + (register_size (gdbarch, argreg) - len),
745                   (gdb_byte *) value_contents (args[argnum]), len);
746           val = valbuf;
747         }
748       else
749         val = (gdb_byte *) value_contents (args[argnum]);
750
751       while (len > 0)
752         {
753           if (argreg > ARGN_REGNUM)
754             {
755               /* Must go on the stack.  */
756               write_memory (sp + stack_offset, val, 4);
757               stack_offset += 4;
758             }
759           else if (argreg <= ARGN_REGNUM)
760             {
761               /* There's room in a register.  */
762               regval =
763                 extract_unsigned_integer (val,
764                                           register_size (gdbarch, argreg),
765                                           byte_order);
766               regcache_cooked_write_unsigned (regcache, argreg++, regval);
767             }
768
769           /* Store the value 4 bytes at a time.  This means that things
770              larger than 4 bytes may go partly in registers and partly
771              on the stack.  */
772           len -= register_size (gdbarch, argreg);
773           val += register_size (gdbarch, argreg);
774         }
775     }
776
777   /* Finally, update the SP register.  */
778   regcache_cooked_write_unsigned (regcache, M32R_SP_REGNUM, sp);
779
780   return sp;
781 }
782
783
784 /* Given a return value in `regbuf' with a type `valtype', 
785    extract and copy its value into `valbuf'.  */
786
787 static void
788 m32r_extract_return_value (struct type *type, struct regcache *regcache,
789                            void *dst)
790 {
791   struct gdbarch *gdbarch = get_regcache_arch (regcache);
792   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
793   bfd_byte *valbuf = dst;
794   int len = TYPE_LENGTH (type);
795   ULONGEST tmp;
796
797   /* By using store_unsigned_integer we avoid having to do
798      anything special for small big-endian values.  */
799   regcache_cooked_read_unsigned (regcache, RET1_REGNUM, &tmp);
800   store_unsigned_integer (valbuf, (len > 4 ? len - 4 : len), byte_order, tmp);
801
802   /* Ignore return values more than 8 bytes in size because the m32r
803      returns anything more than 8 bytes in the stack.  */
804   if (len > 4)
805     {
806       regcache_cooked_read_unsigned (regcache, RET1_REGNUM + 1, &tmp);
807       store_unsigned_integer (valbuf + len - 4, 4, byte_order, tmp);
808     }
809 }
810
811 static enum return_value_convention
812 m32r_return_value (struct gdbarch *gdbarch, struct value *function,
813                    struct type *valtype, struct regcache *regcache,
814                    gdb_byte *readbuf, const gdb_byte *writebuf)
815 {
816   if (TYPE_LENGTH (valtype) > 8)
817     return RETURN_VALUE_STRUCT_CONVENTION;
818   else
819     {
820       if (readbuf != NULL)
821         m32r_extract_return_value (valtype, regcache, readbuf);
822       if (writebuf != NULL)
823         m32r_store_return_value (valtype, regcache, writebuf);
824       return RETURN_VALUE_REGISTER_CONVENTION;
825     }
826 }
827
828
829
830 static CORE_ADDR
831 m32r_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
832 {
833   return frame_unwind_register_unsigned (next_frame, M32R_PC_REGNUM);
834 }
835
836 /* Given a GDB frame, determine the address of the calling function's
837    frame.  This will be used to create a new GDB frame struct.  */
838
839 static void
840 m32r_frame_this_id (struct frame_info *this_frame,
841                     void **this_prologue_cache, struct frame_id *this_id)
842 {
843   struct m32r_unwind_cache *info
844     = m32r_frame_unwind_cache (this_frame, this_prologue_cache);
845   CORE_ADDR base;
846   CORE_ADDR func;
847   struct minimal_symbol *msym_stack;
848   struct frame_id id;
849
850   /* The FUNC is easy.  */
851   func = get_frame_func (this_frame);
852
853   /* Check if the stack is empty.  */
854   msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL);
855   if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))
856     return;
857
858   /* Hopefully the prologue analysis either correctly determined the
859      frame's base (which is the SP from the previous frame), or set
860      that base to "NULL".  */
861   base = info->prev_sp;
862   if (base == 0)
863     return;
864
865   id = frame_id_build (base, func);
866   (*this_id) = id;
867 }
868
869 static struct value *
870 m32r_frame_prev_register (struct frame_info *this_frame,
871                           void **this_prologue_cache, int regnum)
872 {
873   struct m32r_unwind_cache *info
874     = m32r_frame_unwind_cache (this_frame, this_prologue_cache);
875   return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
876 }
877
878 static const struct frame_unwind m32r_frame_unwind = {
879   NORMAL_FRAME,
880   default_frame_unwind_stop_reason,
881   m32r_frame_this_id,
882   m32r_frame_prev_register,
883   NULL,
884   default_frame_sniffer
885 };
886
887 static CORE_ADDR
888 m32r_frame_base_address (struct frame_info *this_frame, void **this_cache)
889 {
890   struct m32r_unwind_cache *info
891     = m32r_frame_unwind_cache (this_frame, this_cache);
892   return info->base;
893 }
894
895 static const struct frame_base m32r_frame_base = {
896   &m32r_frame_unwind,
897   m32r_frame_base_address,
898   m32r_frame_base_address,
899   m32r_frame_base_address
900 };
901
902 /* Assuming THIS_FRAME is a dummy, return the frame ID of that dummy
903    frame.  The frame ID's base needs to match the TOS value saved by
904    save_dummy_frame_tos(), and the PC match the dummy frame's breakpoint.  */
905
906 static struct frame_id
907 m32r_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
908 {
909   CORE_ADDR sp = get_frame_register_unsigned (this_frame, M32R_SP_REGNUM);
910   return frame_id_build (sp, get_frame_pc (this_frame));
911 }
912
913
914 static gdbarch_init_ftype m32r_gdbarch_init;
915
916 static struct gdbarch *
917 m32r_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
918 {
919   struct gdbarch *gdbarch;
920   struct gdbarch_tdep *tdep;
921
922   /* If there is already a candidate, use it.  */
923   arches = gdbarch_list_lookup_by_info (arches, &info);
924   if (arches != NULL)
925     return arches->gdbarch;
926
927   /* Allocate space for the new architecture.  */
928   tdep = XMALLOC (struct gdbarch_tdep);
929   gdbarch = gdbarch_alloc (&info, tdep);
930
931   set_gdbarch_read_pc (gdbarch, m32r_read_pc);
932   set_gdbarch_write_pc (gdbarch, m32r_write_pc);
933   set_gdbarch_unwind_sp (gdbarch, m32r_unwind_sp);
934
935   set_gdbarch_num_regs (gdbarch, M32R_NUM_REGS);
936   set_gdbarch_sp_regnum (gdbarch, M32R_SP_REGNUM);
937   set_gdbarch_register_name (gdbarch, m32r_register_name);
938   set_gdbarch_register_type (gdbarch, m32r_register_type);
939
940   set_gdbarch_push_dummy_call (gdbarch, m32r_push_dummy_call);
941   set_gdbarch_return_value (gdbarch, m32r_return_value);
942
943   set_gdbarch_skip_prologue (gdbarch, m32r_skip_prologue);
944   set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
945   set_gdbarch_breakpoint_from_pc (gdbarch, m32r_breakpoint_from_pc);
946   set_gdbarch_memory_insert_breakpoint (gdbarch,
947                                         m32r_memory_insert_breakpoint);
948   set_gdbarch_memory_remove_breakpoint (gdbarch,
949                                         m32r_memory_remove_breakpoint);
950
951   set_gdbarch_frame_align (gdbarch, m32r_frame_align);
952
953   frame_base_set_default (gdbarch, &m32r_frame_base);
954
955   /* Methods for saving / extracting a dummy frame's ID.  The ID's
956      stack address must match the SP value returned by
957      PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos.  */
958   set_gdbarch_dummy_id (gdbarch, m32r_dummy_id);
959
960   /* Return the unwound PC value.  */
961   set_gdbarch_unwind_pc (gdbarch, m32r_unwind_pc);
962
963   set_gdbarch_print_insn (gdbarch, print_insn_m32r);
964
965   /* Hook in ABI-specific overrides, if they have been registered.  */
966   gdbarch_init_osabi (info, gdbarch);
967
968   /* Hook in the default unwinders.  */
969   frame_unwind_append_unwinder (gdbarch, &m32r_frame_unwind);
970
971   /* Support simple overlay manager.  */
972   set_gdbarch_overlay_update (gdbarch, simple_overlay_update);
973
974   return gdbarch;
975 }
976
977 void
978 _initialize_m32r_tdep (void)
979 {
980   register_gdbarch_init (bfd_arch_m32r, m32r_gdbarch_init);
981 }