1 /* Target-dependent code for the NEC V850 for GDB, the GNU debugger.
3 Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
4 2008, 2009, 2010, 2011 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/>. */
23 #include "frame-base.h"
24 #include "trad-frame.h"
25 #include "frame-unwind.h"
26 #include "dwarf2-frame.h"
29 #include "gdb_string.h"
30 #include "gdb_assert.h"
32 #include "arch-utils.h"
42 E_R3_REGNUM, E_SP_REGNUM = E_R3_REGNUM,
45 E_R6_REGNUM, E_ARG0_REGNUM = E_R6_REGNUM,
48 E_R9_REGNUM, E_ARGLAST_REGNUM = E_R9_REGNUM,
49 E_R10_REGNUM, E_V0_REGNUM = E_R10_REGNUM,
50 E_R11_REGNUM, E_V1_REGNUM = E_R11_REGNUM,
68 E_R29_REGNUM, E_FP_REGNUM = E_R29_REGNUM,
69 E_R30_REGNUM, E_EP_REGNUM = E_R30_REGNUM,
70 E_R31_REGNUM, E_LP_REGNUM = E_R31_REGNUM,
71 E_R32_REGNUM, E_SR0_REGNUM = E_R32_REGNUM,
76 E_R37_REGNUM, E_PS_REGNUM = E_R37_REGNUM,
91 E_R52_REGNUM, E_CTBP_REGNUM = E_R52_REGNUM,
103 E_R64_REGNUM, E_PC_REGNUM = E_R64_REGNUM,
113 /* Size of return datatype which fits into all return registers. */
116 E_MAX_RETTYPE_SIZE_IN_REGS = 2 * v850_reg_size
119 struct v850_frame_cache
126 /* Flag showing that a frame has been created in the prologue code. */
129 /* Saved registers. */
130 struct trad_frame_saved_reg *saved_regs;
133 /* Info gleaned from scanning a function's prologue. */
134 struct pifsr /* Info about one saved register. */
136 int offset; /* Offset from sp or fp. */
137 int cur_frameoffset; /* Current frameoffset. */
138 int reg; /* Saved register number. */
142 v850_register_name (struct gdbarch *gdbarch, int regnum)
144 static const char *v850_reg_names[] =
145 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
146 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
147 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
148 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
149 "eipc", "eipsw", "fepc", "fepsw", "ecr", "psw", "sr6", "sr7",
150 "sr8", "sr9", "sr10", "sr11", "sr12", "sr13", "sr14", "sr15",
151 "sr16", "sr17", "sr18", "sr19", "sr20", "sr21", "sr22", "sr23",
152 "sr24", "sr25", "sr26", "sr27", "sr28", "sr29", "sr30", "sr31",
155 if (regnum < 0 || regnum >= E_NUM_REGS)
157 return v850_reg_names[regnum];
161 v850e_register_name (struct gdbarch *gdbarch, int regnum)
163 static const char *v850e_reg_names[] =
165 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
166 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
167 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
168 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
169 "eipc", "eipsw", "fepc", "fepsw", "ecr", "psw", "sr6", "sr7",
170 "sr8", "sr9", "sr10", "sr11", "sr12", "sr13", "sr14", "sr15",
171 "ctpc", "ctpsw", "dbpc", "dbpsw", "ctbp", "sr21", "sr22", "sr23",
172 "sr24", "sr25", "sr26", "sr27", "sr28", "sr29", "sr30", "sr31",
175 if (regnum < 0 || regnum >= E_NUM_REGS)
177 return v850e_reg_names[regnum];
180 /* Returns the default type for register N. */
183 v850_register_type (struct gdbarch *gdbarch, int regnum)
185 if (regnum == E_PC_REGNUM)
186 return builtin_type (gdbarch)->builtin_func_ptr;
187 return builtin_type (gdbarch)->builtin_int32;
191 v850_type_is_scalar (struct type *t)
193 return (TYPE_CODE (t) != TYPE_CODE_STRUCT
194 && TYPE_CODE (t) != TYPE_CODE_UNION
195 && TYPE_CODE (t) != TYPE_CODE_ARRAY);
198 /* Should call_function allocate stack space for a struct return? */
200 v850_use_struct_convention (struct type *type)
203 struct type *fld_type, *tgt_type;
205 /* 1. The value is greater than 8 bytes -> returned by copying. */
206 if (TYPE_LENGTH (type) > 8)
209 /* 2. The value is a single basic type -> returned in register. */
210 if (v850_type_is_scalar (type))
213 /* The value is a structure or union with a single element and that
214 element is either a single basic type or an array of a single basic
215 type whose size is greater than or equal to 4 -> returned in register. */
216 if ((TYPE_CODE (type) == TYPE_CODE_STRUCT
217 || TYPE_CODE (type) == TYPE_CODE_UNION)
218 && TYPE_NFIELDS (type) == 1)
220 fld_type = TYPE_FIELD_TYPE (type, 0);
221 if (v850_type_is_scalar (fld_type) && TYPE_LENGTH (fld_type) >= 4)
224 if (TYPE_CODE (fld_type) == TYPE_CODE_ARRAY)
226 tgt_type = TYPE_TARGET_TYPE (fld_type);
227 if (v850_type_is_scalar (tgt_type) && TYPE_LENGTH (tgt_type) >= 4)
232 /* The value is a structure whose first element is an integer or a float,
233 and which contains no arrays of more than two elements -> returned in
235 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
236 && v850_type_is_scalar (TYPE_FIELD_TYPE (type, 0))
237 && TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0)) == 4)
239 for (i = 1; i < TYPE_NFIELDS (type); ++i)
241 fld_type = TYPE_FIELD_TYPE (type, 0);
242 if (TYPE_CODE (fld_type) == TYPE_CODE_ARRAY)
244 tgt_type = TYPE_TARGET_TYPE (fld_type);
245 if (TYPE_LENGTH (fld_type) >= 0 && TYPE_LENGTH (tgt_type) >= 0
246 && TYPE_LENGTH (fld_type) / TYPE_LENGTH (tgt_type) > 2)
253 /* The value is a union which contains at least one field which
254 would be returned in registers according to these rules ->
255 returned in register. */
256 if (TYPE_CODE (type) == TYPE_CODE_UNION)
258 for (i = 0; i < TYPE_NFIELDS (type); ++i)
260 fld_type = TYPE_FIELD_TYPE (type, 0);
261 if (!v850_use_struct_convention (fld_type))
269 /* Structure for mapping bits in register lists to register numbers. */
276 /* Helper function for v850_scan_prologue to handle prepare instruction. */
279 v850_handle_prepare (int insn, int insn2, CORE_ADDR * current_pc_ptr,
280 struct v850_frame_cache *pi, struct pifsr **pifsr_ptr)
282 CORE_ADDR current_pc = *current_pc_ptr;
283 struct pifsr *pifsr = *pifsr_ptr;
284 long next = insn2 & 0xffff;
285 long list12 = ((insn & 1) << 16) + (next & 0xffe0);
286 long offset = (insn & 0x3e) << 1;
287 static struct reg_list reg_table[] =
289 {0x00800, 20}, /* r20 */
290 {0x00400, 21}, /* r21 */
291 {0x00200, 22}, /* r22 */
292 {0x00100, 23}, /* r23 */
293 {0x08000, 24}, /* r24 */
294 {0x04000, 25}, /* r25 */
295 {0x02000, 26}, /* r26 */
296 {0x01000, 27}, /* r27 */
297 {0x00080, 28}, /* r28 */
298 {0x00040, 29}, /* r29 */
299 {0x10000, 30}, /* ep */
300 {0x00020, 31}, /* lp */
301 {0, 0} /* end of table */
305 if ((next & 0x1f) == 0x0b) /* skip imm16 argument */
307 else if ((next & 0x1f) == 0x13) /* skip imm16 argument */
309 else if ((next & 0x1f) == 0x1b) /* skip imm32 argument */
312 /* Calculate the total size of the saved registers, and add it to the
313 immediate value used to adjust SP. */
314 for (i = 0; reg_table[i].mask != 0; i++)
315 if (list12 & reg_table[i].mask)
316 offset += v850_reg_size;
317 pi->sp_offset -= offset;
319 /* Calculate the offsets of the registers relative to the value the SP
320 will have after the registers have been pushed and the imm5 value has
321 been subtracted from it. */
324 for (i = 0; reg_table[i].mask != 0; i++)
326 if (list12 & reg_table[i].mask)
328 int reg = reg_table[i].regno;
329 offset -= v850_reg_size;
331 pifsr->offset = offset;
332 pifsr->cur_frameoffset = pi->sp_offset;
338 /* Set result parameters. */
339 *current_pc_ptr = current_pc;
344 /* Helper function for v850_scan_prologue to handle pushm/pushl instructions.
345 The SR bit of the register list is not supported. gcc does not generate
349 v850_handle_pushm (int insn, int insn2, struct v850_frame_cache *pi,
350 struct pifsr **pifsr_ptr)
352 struct pifsr *pifsr = *pifsr_ptr;
353 long list12 = ((insn & 0x0f) << 16) + (insn2 & 0xfff0);
355 static struct reg_list pushml_reg_table[] =
357 {0x80000, E_PS_REGNUM}, /* PSW */
358 {0x40000, 1}, /* r1 */
359 {0x20000, 2}, /* r2 */
360 {0x10000, 3}, /* r3 */
361 {0x00800, 4}, /* r4 */
362 {0x00400, 5}, /* r5 */
363 {0x00200, 6}, /* r6 */
364 {0x00100, 7}, /* r7 */
365 {0x08000, 8}, /* r8 */
366 {0x04000, 9}, /* r9 */
367 {0x02000, 10}, /* r10 */
368 {0x01000, 11}, /* r11 */
369 {0x00080, 12}, /* r12 */
370 {0x00040, 13}, /* r13 */
371 {0x00020, 14}, /* r14 */
372 {0x00010, 15}, /* r15 */
373 {0, 0} /* end of table */
375 static struct reg_list pushmh_reg_table[] =
377 {0x80000, 16}, /* r16 */
378 {0x40000, 17}, /* r17 */
379 {0x20000, 18}, /* r18 */
380 {0x10000, 19}, /* r19 */
381 {0x00800, 20}, /* r20 */
382 {0x00400, 21}, /* r21 */
383 {0x00200, 22}, /* r22 */
384 {0x00100, 23}, /* r23 */
385 {0x08000, 24}, /* r24 */
386 {0x04000, 25}, /* r25 */
387 {0x02000, 26}, /* r26 */
388 {0x01000, 27}, /* r27 */
389 {0x00080, 28}, /* r28 */
390 {0x00040, 29}, /* r29 */
391 {0x00010, 30}, /* r30 */
392 {0x00020, 31}, /* r31 */
393 {0, 0} /* end of table */
395 struct reg_list *reg_table;
398 /* Is this a pushml or a pushmh? */
399 if ((insn2 & 7) == 1)
400 reg_table = pushml_reg_table;
402 reg_table = pushmh_reg_table;
404 /* Calculate the total size of the saved registers, and add it to the
405 immediate value used to adjust SP. */
406 for (i = 0; reg_table[i].mask != 0; i++)
407 if (list12 & reg_table[i].mask)
408 offset += v850_reg_size;
409 pi->sp_offset -= offset;
411 /* Calculate the offsets of the registers relative to the value the SP
412 will have after the registers have been pushed and the imm5 value is
413 subtracted from it. */
416 for (i = 0; reg_table[i].mask != 0; i++)
418 if (list12 & reg_table[i].mask)
420 int reg = reg_table[i].regno;
421 offset -= v850_reg_size;
423 pifsr->offset = offset;
424 pifsr->cur_frameoffset = pi->sp_offset;
430 /* Set result parameters. */
434 /* Helper function to evaluate if register is one of the "save" registers.
435 This allows to simplify conditionals in v850_analyze_prologue a lot. */
438 v850_is_save_register (int reg)
440 /* The caller-save registers are R2, R20 - R29 and R31. All other
441 registers are either special purpose (PC, SP), argument registers,
442 or just considered free for use in the caller. */
443 return reg == E_R2_REGNUM
444 || (reg >= E_R20_REGNUM && reg <= E_R29_REGNUM)
445 || reg == E_R31_REGNUM;
448 /* Scan the prologue of the function that contains PC, and record what
449 we find in PI. Returns the pc after the prologue. Note that the
450 addresses saved in frame->saved_regs are just frame relative (negative
451 offsets from the frame pointer). This is because we don't know the
452 actual value of the frame pointer yet. In some circumstances, the
453 frame pointer can't be determined till after we have scanned the
457 v850_analyze_prologue (struct gdbarch *gdbarch,
458 CORE_ADDR func_addr, CORE_ADDR pc,
459 struct v850_frame_cache *pi, ULONGEST ctbp)
461 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
462 CORE_ADDR prologue_end, current_pc;
463 struct pifsr pifsrs[E_NUM_REGS + 1];
464 struct pifsr *pifsr, *pifsr_tmp;
468 CORE_ADDR save_pc, save_end;
472 memset (&pifsrs, 0, sizeof pifsrs);
477 /* Now, search the prologue looking for instructions that setup fp, save
478 rp, adjust sp and such. We also record the frame offset of any saved
489 for (current_pc = func_addr; current_pc < prologue_end;)
492 int insn2 = -1; /* dummy value */
494 insn = read_memory_integer (current_pc, 2, byte_order);
496 if ((insn & 0x0780) >= 0x0600) /* Four byte instruction? */
498 insn2 = read_memory_integer (current_pc, 2, byte_order);
502 if ((insn & 0xffc0) == ((10 << 11) | 0x0780) && !regsave_func_p)
503 { /* jarl <func>,10 */
504 long low_disp = insn2 & ~(long) 1;
505 long disp = (((((insn & 0x3f) << 16) + low_disp)
506 & ~(long) 1) ^ 0x00200000) - 0x00200000;
508 save_pc = current_pc;
509 save_end = prologue_end;
511 current_pc += disp - 4;
512 prologue_end = (current_pc
513 + (2 * 3) /* moves to/from ep */
514 + 4 /* addi <const>,sp,sp */
516 + (2 * 12) /* sst.w to save r2, r20-r29, r31 */
517 + 20); /* slop area */
519 else if ((insn & 0xffc0) == 0x0200 && !regsave_func_p)
521 long adr = ctbp + ((insn & 0x3f) << 1);
523 save_pc = current_pc;
524 save_end = prologue_end;
526 current_pc = ctbp + (read_memory_unsigned_integer (adr, 2, byte_order)
528 prologue_end = (current_pc
529 + (2 * 3) /* prepare list2,imm5,sp/imm */
531 + 20); /* slop area */
534 else if ((insn & 0xffc0) == 0x0780) /* prepare list2,imm5 */
536 v850_handle_prepare (insn, insn2, ¤t_pc, pi, &pifsr);
539 else if (insn == 0x07e0 && regsave_func_p && insn2 == 0x0144)
540 { /* ctret after processing register save. */
541 current_pc = save_pc;
542 prologue_end = save_end;
546 else if ((insn & 0xfff0) == 0x07e0 && (insn2 & 5) == 1)
547 { /* pushml, pushmh */
548 v850_handle_pushm (insn, insn2, pi, &pifsr);
551 else if ((insn & 0xffe0) == 0x0060 && regsave_func_p)
552 { /* jmp after processing register save. */
553 current_pc = save_pc;
554 prologue_end = save_end;
558 else if ((insn & 0x07c0) == 0x0780 /* jarl or jr */
559 || (insn & 0xffe0) == 0x0060 /* jmp */
560 || (insn & 0x0780) == 0x0580) /* branch */
562 break; /* Ran into end of prologue. */
565 else if ((insn & 0xffe0) == ((E_SP_REGNUM << 11) | 0x0240))
567 pi->sp_offset += ((insn & 0x1f) ^ 0x10) - 0x10;
568 else if (insn == ((E_SP_REGNUM << 11) | 0x0600 | E_SP_REGNUM))
569 /* addi <imm>,sp,sp */
570 pi->sp_offset += insn2;
571 else if (insn == ((E_FP_REGNUM << 11) | 0x0000 | E_SP_REGNUM))
574 else if (insn == ((E_R12_REGNUM << 11) | 0x0640 | E_R0_REGNUM))
575 /* movhi hi(const),r0,r12 */
576 r12_tmp = insn2 << 16;
577 else if (insn == ((E_R12_REGNUM << 11) | 0x0620 | E_R12_REGNUM))
578 /* movea lo(const),r12,r12 */
580 else if (insn == ((E_SP_REGNUM << 11) | 0x01c0 | E_R12_REGNUM) && r12_tmp)
582 pi->sp_offset += r12_tmp;
583 else if (insn == ((E_EP_REGNUM << 11) | 0x0000 | E_SP_REGNUM))
586 else if (insn == ((E_EP_REGNUM << 11) | 0x0000 | E_R1_REGNUM))
589 else if (((insn & 0x07ff) == (0x0760 | E_SP_REGNUM)
591 && (insn & 0x07ff) == (0x0760 | E_FP_REGNUM)))
593 && v850_is_save_register (reg = (insn >> 11) & 0x1f))
595 /* st.w <reg>,<offset>[sp] or st.w <reg>,<offset>[fp] */
597 pifsr->offset = insn2 & ~1;
598 pifsr->cur_frameoffset = pi->sp_offset;
602 && ((insn & 0x0781) == 0x0501)
604 && v850_is_save_register (reg = (insn >> 11) & 0x1f))
606 /* sst.w <reg>,<offset>[ep] */
608 pifsr->offset = (insn & 0x007e) << 1;
609 pifsr->cur_frameoffset = pi->sp_offset;
614 /* Fix up any offsets to the final offset. If a frame pointer was created,
615 use it instead of the stack pointer. */
616 for (pifsr_tmp = pifsrs; pifsr_tmp != pifsr; pifsr_tmp++)
618 pifsr_tmp->offset -= pi->sp_offset - pifsr_tmp->cur_frameoffset;
619 pi->saved_regs[pifsr_tmp->reg].addr = pifsr_tmp->offset;
625 /* Return the address of the first code past the prologue of the function. */
628 v850_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
630 CORE_ADDR func_addr, func_end;
632 /* See what the symbol table says. */
634 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
636 struct symtab_and_line sal;
638 sal = find_pc_line (func_addr, 0);
639 if (sal.line != 0 && sal.end < func_end)
642 /* Either there's no line info, or the line after the prologue is after
643 the end of the function. In this case, there probably isn't a
648 /* We can't find the start of this function, so there's nothing we
654 v850_frame_align (struct gdbarch *ignore, CORE_ADDR sp)
659 /* Setup arguments and LP for a call to the target. First four args
660 go in R6->R9, subsequent args go into sp + 16 -> sp + ... Structs
661 are passed by reference. 64 bit quantities (doubles and long longs)
662 may be split between the regs and the stack. When calling a function
663 that returns a struct, a pointer to the struct is passed in as a secret
664 first argument (always in R6).
666 Stack space for the args has NOT been allocated: that job is up to us. */
669 v850_push_dummy_call (struct gdbarch *gdbarch,
670 struct value *function,
671 struct regcache *regcache,
677 CORE_ADDR struct_addr)
679 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
685 /* The offset onto the stack at which we will start copying parameters
686 (after the registers are used up) begins at 16 rather than at zero.
687 That's how the ABI is defined, though there's no indication that these
688 16 bytes are used for anything, not even for saving incoming
689 argument registers. */
692 /* Now make space on the stack for the args. */
693 for (argnum = 0; argnum < nargs; argnum++)
694 len += ((TYPE_LENGTH (value_type (args[argnum])) + 3) & ~3);
695 sp -= len + stack_offset;
697 argreg = E_ARG0_REGNUM;
698 /* The struct_return pointer occupies the first parameter register. */
700 regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
702 /* Now load as many as possible of the first arguments into
703 registers, and push the rest onto the stack. There are 16 bytes
704 in four registers available. Loop thru args from first to last. */
705 for (argnum = 0; argnum < nargs; argnum++)
709 gdb_byte valbuf[v850_reg_size];
711 if (!v850_type_is_scalar (value_type (*args))
712 && TYPE_LENGTH (value_type (*args)) > E_MAX_RETTYPE_SIZE_IN_REGS)
714 store_unsigned_integer (valbuf, 4, byte_order,
715 value_address (*args));
721 len = TYPE_LENGTH (value_type (*args));
722 val = (gdb_byte *) value_contents (*args);
726 if (argreg <= E_ARGLAST_REGNUM)
730 regval = extract_unsigned_integer (val, v850_reg_size, byte_order);
731 regcache_cooked_write_unsigned (regcache, argreg, regval);
733 len -= v850_reg_size;
734 val += v850_reg_size;
739 write_memory (sp + stack_offset, val, 4);
748 /* Store return address. */
749 regcache_cooked_write_unsigned (regcache, E_LP_REGNUM, bp_addr);
751 /* Update stack pointer. */
752 regcache_cooked_write_unsigned (regcache, E_SP_REGNUM, sp);
758 v850_extract_return_value (struct type *type, struct regcache *regcache,
761 struct gdbarch *gdbarch = get_regcache_arch (regcache);
762 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
763 int len = TYPE_LENGTH (type);
765 if (len <= v850_reg_size)
769 regcache_cooked_read_unsigned (regcache, E_V0_REGNUM, &val);
770 store_unsigned_integer (valbuf, len, byte_order, val);
772 else if (len <= 2 * v850_reg_size)
774 int i, regnum = E_V0_REGNUM;
775 gdb_byte buf[v850_reg_size];
776 for (i = 0; len > 0; i += 4, len -= 4)
778 regcache_raw_read (regcache, regnum++, buf);
779 memcpy (valbuf + i, buf, len > 4 ? 4 : len);
785 v850_store_return_value (struct type *type, struct regcache *regcache,
786 const gdb_byte *valbuf)
788 struct gdbarch *gdbarch = get_regcache_arch (regcache);
789 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
790 int len = TYPE_LENGTH (type);
792 if (len <= v850_reg_size)
793 regcache_cooked_write_unsigned
794 (regcache, E_V0_REGNUM,
795 extract_unsigned_integer (valbuf, len, byte_order));
796 else if (len <= 2 * v850_reg_size)
798 int i, regnum = E_V0_REGNUM;
799 for (i = 0; i < len; i += 4)
800 regcache_raw_write (regcache, regnum++, valbuf + i);
804 static enum return_value_convention
805 v850_return_value (struct gdbarch *gdbarch, struct type *func_type,
806 struct type *type, struct regcache *regcache,
807 gdb_byte *readbuf, const gdb_byte *writebuf)
809 if (v850_use_struct_convention (type))
810 return RETURN_VALUE_STRUCT_CONVENTION;
812 v850_store_return_value (type, regcache, writebuf);
814 v850_extract_return_value (type, regcache, readbuf);
815 return RETURN_VALUE_REGISTER_CONVENTION;
818 const static unsigned char *
819 v850_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
821 static unsigned char breakpoint[] = { 0x85, 0x05 };
822 *lenptr = sizeof (breakpoint);
826 static struct v850_frame_cache *
827 v850_alloc_frame_cache (struct frame_info *this_frame)
829 struct v850_frame_cache *cache;
832 cache = FRAME_OBSTACK_ZALLOC (struct v850_frame_cache);
833 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
837 cache->sp_offset = 0;
840 /* Frameless until proven otherwise. */
846 static struct v850_frame_cache *
847 v850_frame_cache (struct frame_info *this_frame, void **this_cache)
849 struct gdbarch *gdbarch = get_frame_arch (this_frame);
850 struct v850_frame_cache *cache;
851 CORE_ADDR current_pc;
857 cache = v850_alloc_frame_cache (this_frame);
860 /* In principle, for normal frames, fp holds the frame pointer,
861 which holds the base address for the current stack frame.
862 However, for functions that don't need it, the frame pointer is
863 optional. For these "frameless" functions the frame pointer is
864 actually the frame pointer of the calling frame. */
865 cache->base = get_frame_register_unsigned (this_frame, E_FP_REGNUM);
866 if (cache->base == 0)
869 cache->pc = get_frame_func (this_frame);
870 current_pc = get_frame_pc (this_frame);
874 ctbp = get_frame_register_unsigned (this_frame, E_CTBP_REGNUM);
875 v850_analyze_prologue (gdbarch, cache->pc, current_pc, cache, ctbp);
880 /* We didn't find a valid frame, which means that CACHE->base
881 currently holds the frame pointer for our calling frame. If
882 we're at the start of a function, or somewhere half-way its
883 prologue, the function's frame probably hasn't been fully
884 setup yet. Try to reconstruct the base address for the stack
885 frame by looking at the stack pointer. For truly "frameless"
886 functions this might work too. */
887 cache->base = get_frame_register_unsigned (this_frame, E_SP_REGNUM);
890 /* Now that we have the base address for the stack frame we can
891 calculate the value of sp in the calling frame. */
892 trad_frame_set_value (cache->saved_regs, E_SP_REGNUM,
893 cache->base - cache->sp_offset);
895 /* Adjust all the saved registers such that they contain addresses
896 instead of offsets. */
897 for (i = 0; i < E_NUM_REGS; i++)
898 if (trad_frame_addr_p (cache->saved_regs, i))
899 cache->saved_regs[i].addr += cache->base;
901 /* The call instruction moves the caller's PC in the callee's LP.
902 Since this is an unwind, do the reverse. Copy the location of LP
903 into PC (the address / regnum) so that a request for PC will be
904 converted into a request for the LP. */
906 cache->saved_regs[E_PC_REGNUM] = cache->saved_regs[E_LP_REGNUM];
912 static struct value *
913 v850_frame_prev_register (struct frame_info *this_frame,
914 void **this_cache, int regnum)
916 struct v850_frame_cache *cache = v850_frame_cache (this_frame, this_cache);
918 gdb_assert (regnum >= 0);
920 return trad_frame_get_prev_register (this_frame, cache->saved_regs, regnum);
924 v850_frame_this_id (struct frame_info *this_frame, void **this_cache,
925 struct frame_id *this_id)
927 struct v850_frame_cache *cache = v850_frame_cache (this_frame, this_cache);
929 /* This marks the outermost frame. */
930 if (cache->base == 0)
933 *this_id = frame_id_build (cache->saved_regs[E_SP_REGNUM].addr, cache->pc);
936 static const struct frame_unwind v850_frame_unwind = {
938 default_frame_unwind_stop_reason,
940 v850_frame_prev_register,
942 default_frame_sniffer
946 v850_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
948 return frame_unwind_register_unsigned (next_frame,
949 gdbarch_sp_regnum (gdbarch));
953 v850_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
955 return frame_unwind_register_unsigned (next_frame,
956 gdbarch_pc_regnum (gdbarch));
959 static struct frame_id
960 v850_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
962 CORE_ADDR sp = get_frame_register_unsigned (this_frame,
963 gdbarch_sp_regnum (gdbarch));
964 return frame_id_build (sp, get_frame_pc (this_frame));
968 v850_frame_base_address (struct frame_info *this_frame, void **this_cache)
970 struct v850_frame_cache *cache = v850_frame_cache (this_frame, this_cache);
975 static const struct frame_base v850_frame_base = {
977 v850_frame_base_address,
978 v850_frame_base_address,
979 v850_frame_base_address
982 static struct gdbarch *
983 v850_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
985 struct gdbarch *gdbarch;
987 /* Change the register names based on the current machine type. */
988 if (info.bfd_arch_info->arch != bfd_arch_v850)
991 gdbarch = gdbarch_alloc (&info, NULL);
993 switch (info.bfd_arch_info->mach)
996 set_gdbarch_register_name (gdbarch, v850_register_name);
999 case bfd_mach_v850e1:
1000 set_gdbarch_register_name (gdbarch, v850e_register_name);
1004 set_gdbarch_num_regs (gdbarch, E_NUM_REGS);
1005 set_gdbarch_num_pseudo_regs (gdbarch, 0);
1006 set_gdbarch_sp_regnum (gdbarch, E_SP_REGNUM);
1007 set_gdbarch_pc_regnum (gdbarch, E_PC_REGNUM);
1008 set_gdbarch_fp0_regnum (gdbarch, -1);
1010 set_gdbarch_register_type (gdbarch, v850_register_type);
1012 set_gdbarch_char_signed (gdbarch, 1);
1013 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1014 set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1015 set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1016 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1018 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1019 set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1020 set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1022 set_gdbarch_ptr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1023 set_gdbarch_addr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1025 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1026 set_gdbarch_breakpoint_from_pc (gdbarch, v850_breakpoint_from_pc);
1028 set_gdbarch_return_value (gdbarch, v850_return_value);
1029 set_gdbarch_push_dummy_call (gdbarch, v850_push_dummy_call);
1030 set_gdbarch_skip_prologue (gdbarch, v850_skip_prologue);
1032 set_gdbarch_print_insn (gdbarch, print_insn_v850);
1034 set_gdbarch_frame_align (gdbarch, v850_frame_align);
1035 set_gdbarch_unwind_sp (gdbarch, v850_unwind_sp);
1036 set_gdbarch_unwind_pc (gdbarch, v850_unwind_pc);
1037 set_gdbarch_dummy_id (gdbarch, v850_dummy_id);
1038 frame_base_set_default (gdbarch, &v850_frame_base);
1040 /* Hook in ABI-specific overrides, if they have been registered. */
1041 gdbarch_init_osabi (info, gdbarch);
1043 dwarf2_append_unwinders (gdbarch);
1044 frame_unwind_append_unwinder (gdbarch, &v850_frame_unwind);
1049 extern initialize_file_ftype _initialize_v850_tdep; /* -Wmissing-prototypes */
1052 _initialize_v850_tdep (void)
1054 register_gdbarch_init (bfd_arch_v850, v850_gdbarch_init);