1 /* Target-dependent code for Moxie.
3 Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "frame-unwind.h"
23 #include "frame-base.h"
28 #include "gdb_string.h"
35 #include "arch-utils.h"
37 #include "trad-frame.h"
40 #include "record-full.h"
42 #include "gdb_assert.h"
44 #include "moxie-tdep.h"
46 /* Local functions. */
48 extern void _initialize_moxie_tdep (void);
50 /* Use an invalid address value as 'not available' marker. */
51 enum { REG_UNAVAIL
= (CORE_ADDR
) -1 };
53 struct moxie_frame_cache
59 CORE_ADDR saved_regs
[MOXIE_NUM_REGS
];
63 /* Implement the "frame_align" gdbarch method. */
66 moxie_frame_align (struct gdbarch
*gdbarch
, CORE_ADDR sp
)
68 /* Align to the size of an instruction (so that they can safely be
69 pushed onto the stack. */
73 /* Implement the "breakpoint_from_pc" gdbarch method. */
75 const static unsigned char *
76 moxie_breakpoint_from_pc (struct gdbarch
*gdbarch
,
77 CORE_ADDR
*pcptr
, int *lenptr
)
79 static unsigned char breakpoint
[] = { 0x35, 0x00 };
81 *lenptr
= sizeof (breakpoint
);
85 /* Moxie register names. */
87 char *moxie_register_names
[] = {
88 "$fp", "$sp", "$r0", "$r1", "$r2",
89 "$r3", "$r4", "$r5", "$r6", "$r7",
90 "$r8", "$r9", "$r10", "$r11", "$r12",
91 "$r13", "$pc", "$cc" };
93 /* Implement the "register_name" gdbarch method. */
96 moxie_register_name (struct gdbarch
*gdbarch
, int reg_nr
)
100 if (reg_nr
>= MOXIE_NUM_REGS
)
102 return moxie_register_names
[reg_nr
];
105 /* Implement the "register_type" gdbarch method. */
108 moxie_register_type (struct gdbarch
*gdbarch
, int reg_nr
)
110 if (reg_nr
== MOXIE_PC_REGNUM
)
111 return builtin_type (gdbarch
)->builtin_func_ptr
;
112 else if (reg_nr
== MOXIE_SP_REGNUM
|| reg_nr
== MOXIE_FP_REGNUM
)
113 return builtin_type (gdbarch
)->builtin_data_ptr
;
115 return builtin_type (gdbarch
)->builtin_int32
;
118 /* Write into appropriate registers a function return value
119 of type TYPE, given in virtual format. */
122 moxie_store_return_value (struct type
*type
, struct regcache
*regcache
,
125 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
126 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
128 int len
= TYPE_LENGTH (type
);
130 /* Things always get returned in RET1_REGNUM, RET2_REGNUM. */
131 regval
= extract_unsigned_integer (valbuf
, len
> 4 ? 4 : len
, byte_order
);
132 regcache_cooked_write_unsigned (regcache
, RET1_REGNUM
, regval
);
135 regval
= extract_unsigned_integer ((gdb_byte
*) valbuf
+ 4,
136 len
- 4, byte_order
);
137 regcache_cooked_write_unsigned (regcache
, RET1_REGNUM
+ 1, regval
);
141 /* Decode the instructions within the given address range. Decide
142 when we must have reached the end of the function prologue. If a
143 frame_info pointer is provided, fill in its saved_regs etc.
145 Returns the address of the first instruction after the prologue. */
148 moxie_analyze_prologue (CORE_ADDR start_addr
, CORE_ADDR end_addr
,
149 struct moxie_frame_cache
*cache
,
150 struct gdbarch
*gdbarch
)
152 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
154 ULONGEST inst
, inst2
;
158 /* Record where the jsra instruction saves the PC and FP. */
159 cache
->saved_regs
[MOXIE_PC_REGNUM
] = -4;
160 cache
->saved_regs
[MOXIE_FP_REGNUM
] = 0;
161 cache
->framesize
= 0;
163 if (start_addr
>= end_addr
)
166 for (next_addr
= start_addr
; next_addr
< end_addr
; )
168 inst
= read_memory_unsigned_integer (next_addr
, 2, byte_order
);
170 /* Match "push $sp $rN" where N is between 0 and 13 inclusive. */
171 if (inst
>= 0x0612 && inst
<= 0x061f)
173 regnum
= inst
& 0x000f;
174 cache
->framesize
+= 4;
175 cache
->saved_regs
[regnum
] = cache
->framesize
;
182 inst
= read_memory_unsigned_integer (next_addr
, 2, byte_order
);
184 /* Optional stack allocation for args and local vars <= 4
186 if (inst
== 0x01e0) /* ldi.l $r12, X */
188 offset
= read_memory_integer (next_addr
+ 2, 4, byte_order
);
189 inst2
= read_memory_unsigned_integer (next_addr
+ 6, 2, byte_order
);
191 if (inst2
== 0x291e) /* sub.l $sp, $r12 */
193 cache
->framesize
+= offset
;
196 return (next_addr
+ 8);
198 else if ((inst
& 0xff00) == 0x9100) /* dec $sp, X */
200 cache
->framesize
+= (inst
& 0x00ff);
203 while (next_addr
< end_addr
)
205 inst
= read_memory_unsigned_integer (next_addr
, 2, byte_order
);
206 if ((inst
& 0xff00) != 0x9100) /* no more dec $sp, X */
208 cache
->framesize
+= (inst
& 0x00ff);
216 /* Find the end of function prologue. */
219 moxie_skip_prologue (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
221 CORE_ADDR func_addr
= 0, func_end
= 0;
222 const char *func_name
;
224 /* See if we can determine the end of the prologue via the symbol table.
225 If so, then return either PC, or the PC after the prologue, whichever
227 if (find_pc_partial_function (pc
, &func_name
, &func_addr
, &func_end
))
229 CORE_ADDR post_prologue_pc
230 = skip_prologue_using_sal (gdbarch
, func_addr
);
231 if (post_prologue_pc
!= 0)
232 return max (pc
, post_prologue_pc
);
235 /* Can't determine prologue from the symbol table, need to examine
237 struct symtab_and_line sal
;
239 struct moxie_frame_cache cache
;
242 memset (&cache
, 0, sizeof cache
);
244 plg_end
= moxie_analyze_prologue (func_addr
,
245 func_end
, &cache
, gdbarch
);
246 /* Found a function. */
247 sym
= lookup_symbol (func_name
, NULL
, VAR_DOMAIN
, NULL
);
248 /* Don't use line number debug info for assembly source
250 if (sym
&& SYMBOL_LANGUAGE (sym
) != language_asm
)
252 sal
= find_pc_line (func_addr
, 0);
253 if (sal
.end
&& sal
.end
< func_end
)
255 /* Found a line number, use it as end of
260 /* No useable line symbol. Use result of prologue parsing
266 /* No function symbol -- just return the PC. */
267 return (CORE_ADDR
) pc
;
270 struct moxie_unwind_cache
272 /* The previous frame's inner most stack address. Used as this
273 frame ID's stack_addr. */
275 /* The frame's base, optionally used by the high-level debug info. */
278 /* How far the SP and r13 (FP) have been offset from the start of
279 the stack frame (as defined by the previous frame's stack
284 /* Table indicating the location of each and every register. */
285 struct trad_frame_saved_reg
*saved_regs
;
288 /* Implement the "read_pc" gdbarch method. */
291 moxie_read_pc (struct regcache
*regcache
)
295 regcache_cooked_read_unsigned (regcache
, MOXIE_PC_REGNUM
, &pc
);
299 /* Implement the "write_pc" gdbarch method. */
302 moxie_write_pc (struct regcache
*regcache
, CORE_ADDR val
)
304 regcache_cooked_write_unsigned (regcache
, MOXIE_PC_REGNUM
, val
);
307 /* Implement the "unwind_sp" gdbarch method. */
310 moxie_unwind_sp (struct gdbarch
*gdbarch
, struct frame_info
*next_frame
)
312 return frame_unwind_register_unsigned (next_frame
, MOXIE_SP_REGNUM
);
315 /* Given a return value in `regbuf' with a type `valtype',
316 extract and copy its value into `valbuf'. */
319 moxie_extract_return_value (struct type
*type
, struct regcache
*regcache
,
322 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
323 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
324 bfd_byte
*valbuf
= dst
;
325 int len
= TYPE_LENGTH (type
);
328 /* By using store_unsigned_integer we avoid having to do
329 anything special for small big-endian values. */
330 regcache_cooked_read_unsigned (regcache
, RET1_REGNUM
, &tmp
);
331 store_unsigned_integer (valbuf
, (len
> 4 ? len
- 4 : len
), byte_order
, tmp
);
333 /* Ignore return values more than 8 bytes in size because the moxie
334 returns anything more than 8 bytes in the stack. */
337 regcache_cooked_read_unsigned (regcache
, RET1_REGNUM
+ 1, &tmp
);
338 store_unsigned_integer (valbuf
+ len
- 4, 4, byte_order
, tmp
);
342 /* Implement the "return_value" gdbarch method. */
344 static enum return_value_convention
345 moxie_return_value (struct gdbarch
*gdbarch
, struct value
*function
,
346 struct type
*valtype
, struct regcache
*regcache
,
347 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
349 if (TYPE_LENGTH (valtype
) > 8)
350 return RETURN_VALUE_STRUCT_CONVENTION
;
354 moxie_extract_return_value (valtype
, regcache
, readbuf
);
355 if (writebuf
!= NULL
)
356 moxie_store_return_value (valtype
, regcache
, writebuf
);
357 return RETURN_VALUE_REGISTER_CONVENTION
;
361 /* Allocate and initialize a moxie_frame_cache object. */
363 static struct moxie_frame_cache
*
364 moxie_alloc_frame_cache (void)
366 struct moxie_frame_cache
*cache
;
369 cache
= FRAME_OBSTACK_ZALLOC (struct moxie_frame_cache
);
374 cache
->framesize
= 0;
375 for (i
= 0; i
< MOXIE_NUM_REGS
; ++i
)
376 cache
->saved_regs
[i
] = REG_UNAVAIL
;
381 /* Populate a moxie_frame_cache object for this_frame. */
383 static struct moxie_frame_cache
*
384 moxie_frame_cache (struct frame_info
*this_frame
, void **this_cache
)
386 struct moxie_frame_cache
*cache
;
387 CORE_ADDR current_pc
;
393 cache
= moxie_alloc_frame_cache ();
396 cache
->base
= get_frame_register_unsigned (this_frame
, MOXIE_FP_REGNUM
);
397 if (cache
->base
== 0)
400 cache
->pc
= get_frame_func (this_frame
);
401 current_pc
= get_frame_pc (this_frame
);
404 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
405 moxie_analyze_prologue (cache
->pc
, current_pc
, cache
, gdbarch
);
408 cache
->saved_sp
= cache
->base
- cache
->framesize
;
410 for (i
= 0; i
< MOXIE_NUM_REGS
; ++i
)
411 if (cache
->saved_regs
[i
] != REG_UNAVAIL
)
412 cache
->saved_regs
[i
] = cache
->base
- cache
->saved_regs
[i
];
417 /* Implement the "unwind_pc" gdbarch method. */
420 moxie_unwind_pc (struct gdbarch
*gdbarch
, struct frame_info
*next_frame
)
422 return frame_unwind_register_unsigned (next_frame
, MOXIE_PC_REGNUM
);
425 /* Given a GDB frame, determine the address of the calling function's
426 frame. This will be used to create a new GDB frame struct. */
429 moxie_frame_this_id (struct frame_info
*this_frame
,
430 void **this_prologue_cache
, struct frame_id
*this_id
)
432 struct moxie_frame_cache
*cache
= moxie_frame_cache (this_frame
,
433 this_prologue_cache
);
435 /* This marks the outermost frame. */
436 if (cache
->base
== 0)
439 *this_id
= frame_id_build (cache
->saved_sp
, cache
->pc
);
442 /* Get the value of register regnum in the previous stack frame. */
444 static struct value
*
445 moxie_frame_prev_register (struct frame_info
*this_frame
,
446 void **this_prologue_cache
, int regnum
)
448 struct moxie_frame_cache
*cache
= moxie_frame_cache (this_frame
,
449 this_prologue_cache
);
451 gdb_assert (regnum
>= 0);
453 if (regnum
== MOXIE_SP_REGNUM
&& cache
->saved_sp
)
454 return frame_unwind_got_constant (this_frame
, regnum
, cache
->saved_sp
);
456 if (regnum
< MOXIE_NUM_REGS
&& cache
->saved_regs
[regnum
] != REG_UNAVAIL
)
457 return frame_unwind_got_memory (this_frame
, regnum
,
458 cache
->saved_regs
[regnum
]);
460 return frame_unwind_got_register (this_frame
, regnum
, regnum
);
463 static const struct frame_unwind moxie_frame_unwind
= {
465 default_frame_unwind_stop_reason
,
467 moxie_frame_prev_register
,
469 default_frame_sniffer
472 /* Return the base address of this_frame. */
475 moxie_frame_base_address (struct frame_info
*this_frame
, void **this_cache
)
477 struct moxie_frame_cache
*cache
= moxie_frame_cache (this_frame
,
483 static const struct frame_base moxie_frame_base
= {
485 moxie_frame_base_address
,
486 moxie_frame_base_address
,
487 moxie_frame_base_address
490 static struct frame_id
491 moxie_dummy_id (struct gdbarch
*gdbarch
, struct frame_info
*this_frame
)
493 CORE_ADDR sp
= get_frame_register_unsigned (this_frame
, MOXIE_SP_REGNUM
);
495 return frame_id_build (sp
, get_frame_pc (this_frame
));
498 /* Read an unsigned integer from the inferior, and adjust
501 moxie_process_readu (CORE_ADDR addr
, char *buf
,
502 int length
, enum bfd_endian byte_order
)
504 if (target_read_memory (addr
, buf
, length
))
507 printf_unfiltered (_("Process record: error reading memory at "
508 "addr 0x%s len = %d.\n"),
509 paddress (target_gdbarch (), addr
), length
);
513 return extract_unsigned_integer (buf
, length
, byte_order
);
516 /* Parse the current instruction and record the values of the registers and
517 memory that will be changed in current instruction to "record_arch_list".
518 Return -1 if something wrong. */
521 moxie_process_record (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
527 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
529 if (record_debug
> 1)
530 fprintf_unfiltered (gdb_stdlog
, "Process record: moxie_process_record "
532 paddress (target_gdbarch (), addr
));
534 inst
= (uint16_t) moxie_process_readu (addr
, buf
, 2, byte_order
);
536 /* Decode instruction. */
537 if (inst
& (1 << 15))
539 if (inst
& (1 << 14))
541 /* This is a Form 3 instruction. */
542 int opcode
= (inst
>> 10 & 0xf);
550 case 0x04: /* bltu */
551 case 0x05: /* bgtu */
554 case 0x08: /* bgeu */
555 case 0x09: /* bleu */
567 /* This is a Form 2 instruction. */
568 int opcode
= (inst
>> 12 & 0x3);
575 int reg
= (inst
>> 8) & 0xf;
576 if (record_full_arch_list_add_reg (regcache
, reg
))
582 /* Do nothing until GDB learns about moxie's special
594 /* This is a Form 1 instruction. */
595 int opcode
= inst
>> 8;
602 case 0x01: /* ldi.l (immediate) */
603 case 0x02: /* mov (register-to-register) */
605 int reg
= (inst
>> 4) & 0xf;
606 if (record_full_arch_list_add_reg (regcache
, reg
))
610 case 0x03: /* jsra */
612 regcache_raw_read (regcache
,
613 MOXIE_SP_REGNUM
, (gdb_byte
*) & tmpu32
);
614 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
616 if (record_full_arch_list_add_reg (regcache
, MOXIE_FP_REGNUM
)
617 || (record_full_arch_list_add_reg (regcache
,
619 || record_full_arch_list_add_mem (tmpu32
- 12, 12))
625 if (record_full_arch_list_add_reg (regcache
, MOXIE_FP_REGNUM
)
626 || (record_full_arch_list_add_reg (regcache
,
631 case 0x05: /* add.l */
633 int reg
= (inst
>> 4) & 0xf;
634 if (record_full_arch_list_add_reg (regcache
, reg
))
638 case 0x06: /* push */
640 int reg
= (inst
>> 4) & 0xf;
641 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
642 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
644 if (record_full_arch_list_add_reg (regcache
, reg
)
645 || record_full_arch_list_add_mem (tmpu32
- 4, 4))
651 int a
= (inst
>> 4) & 0xf;
653 if (record_full_arch_list_add_reg (regcache
, a
)
654 || record_full_arch_list_add_reg (regcache
, b
))
658 case 0x08: /* lda.l */
660 int reg
= (inst
>> 4) & 0xf;
661 if (record_full_arch_list_add_reg (regcache
, reg
))
665 case 0x09: /* sta.l */
667 tmpu32
= (uint32_t) moxie_process_readu (addr
+2, buf
,
669 if (record_full_arch_list_add_mem (tmpu32
, 4))
673 case 0x0a: /* ld.l (register indirect) */
675 int reg
= (inst
>> 4) & 0xf;
676 if (record_full_arch_list_add_reg (regcache
, reg
))
680 case 0x0b: /* st.l */
682 int reg
= (inst
>> 4) & 0xf;
683 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
684 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
686 if (record_full_arch_list_add_mem (tmpu32
, 4))
690 case 0x0c: /* ldo.l */
692 int reg
= (inst
>> 4) & 0xf;
693 if (record_full_arch_list_add_reg (regcache
, reg
))
697 case 0x0d: /* sto.l */
699 int reg
= (inst
>> 4) & 0xf;
700 uint32_t offset
= (uint32_t) moxie_process_readu (addr
+2, buf
, 4,
702 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
703 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
706 if (record_full_arch_list_add_mem (tmpu32
, 4))
712 if (record_full_arch_list_add_reg (regcache
, MOXIE_CC_REGNUM
))
732 regcache_raw_read (regcache
,
733 MOXIE_SP_REGNUM
, (gdb_byte
*) & tmpu32
);
734 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
736 if (record_full_arch_list_add_reg (regcache
, MOXIE_FP_REGNUM
)
737 || (record_full_arch_list_add_reg (regcache
,
739 || record_full_arch_list_add_mem (tmpu32
- 12, 12))
743 case 0x1a: /* jmpa */
748 case 0x1b: /* ldi.b (immediate) */
749 case 0x1c: /* ld.b (register indirect) */
750 case 0x1d: /* lda.b */
752 int reg
= (inst
>> 4) & 0xf;
753 if (record_full_arch_list_add_reg (regcache
, reg
))
757 case 0x1e: /* st.b */
759 int reg
= (inst
>> 4) & 0xf;
760 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
761 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
763 if (record_full_arch_list_add_mem (tmpu32
, 1))
767 case 0x1f: /* sta.b */
769 tmpu32
= moxie_process_readu (addr
+2, (char *) buf
,
771 if (record_full_arch_list_add_mem (tmpu32
, 1))
775 case 0x20: /* ldi.s (immediate) */
776 case 0x21: /* ld.s (register indirect) */
777 case 0x22: /* lda.s */
779 int reg
= (inst
>> 4) & 0xf;
780 if (record_full_arch_list_add_reg (regcache
, reg
))
784 case 0x23: /* st.s */
786 int reg
= (inst
>> 4) & 0xf;
787 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
788 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
790 if (record_full_arch_list_add_mem (tmpu32
, 2))
794 case 0x24: /* sta.s */
796 tmpu32
= moxie_process_readu (addr
+2, (char *) buf
,
798 if (record_full_arch_list_add_mem (tmpu32
, 2))
808 case 0x27: /* lshr */
809 case 0x28: /* ashl */
810 case 0x29: /* sub.l */
814 case 0x2d: /* ashr */
816 case 0x2f: /* mul.l */
818 int reg
= (inst
>> 4) & 0xf;
819 if (record_full_arch_list_add_reg (regcache
, reg
))
825 /* We currently implement support for libgloss'
828 int inum
= moxie_process_readu (addr
+2, (char *) buf
,
833 case 0x1: /* SYS_exit */
838 case 0x2: /* SYS_open */
840 if (record_full_arch_list_add_reg (regcache
, RET1_REGNUM
))
844 case 0x4: /* SYS_read */
846 uint32_t length
, ptr
;
848 /* Read buffer pointer is in $r1. */
849 regcache_raw_read (regcache
, 3, (gdb_byte
*) & ptr
);
850 ptr
= extract_unsigned_integer ((gdb_byte
*) & ptr
,
853 /* String length is at 0x12($fp). */
854 regcache_raw_read (regcache
,
855 MOXIE_FP_REGNUM
, (gdb_byte
*) & tmpu32
);
856 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
858 length
= moxie_process_readu (tmpu32
+20, (char *) buf
,
861 if (record_full_arch_list_add_mem (ptr
, length
))
865 case 0x5: /* SYS_write */
867 if (record_full_arch_list_add_reg (regcache
, RET1_REGNUM
))
876 case 0x31: /* div.l */
877 case 0x32: /* udiv.l */
878 case 0x33: /* mod.l */
879 case 0x34: /* umod.l */
881 int reg
= (inst
>> 4) & 0xf;
882 if (record_full_arch_list_add_reg (regcache
, reg
))
889 case 0x36: /* ldo.b */
891 int reg
= (inst
>> 4) & 0xf;
892 if (record_full_arch_list_add_reg (regcache
, reg
))
896 case 0x37: /* sto.b */
898 int reg
= (inst
>> 4) & 0xf;
899 uint32_t offset
= (uint32_t) moxie_process_readu (addr
+2, buf
, 4,
901 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
902 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
905 if (record_full_arch_list_add_mem (tmpu32
, 1))
909 case 0x38: /* ldo.s */
911 int reg
= (inst
>> 4) & 0xf;
912 if (record_full_arch_list_add_reg (regcache
, reg
))
916 case 0x39: /* sto.s */
918 int reg
= (inst
>> 4) & 0xf;
919 uint32_t offset
= (uint32_t) moxie_process_readu (addr
+2, buf
, 4,
921 regcache_raw_read (regcache
, reg
, (gdb_byte
*) & tmpu32
);
922 tmpu32
= extract_unsigned_integer ((gdb_byte
*) & tmpu32
,
925 if (record_full_arch_list_add_mem (tmpu32
, 2))
935 if (record_full_arch_list_add_reg (regcache
, MOXIE_PC_REGNUM
))
937 if (record_full_arch_list_add_end ())
942 /* Allocate and initialize the moxie gdbarch object. */
944 static struct gdbarch
*
945 moxie_gdbarch_init (struct gdbarch_info info
, struct gdbarch_list
*arches
)
947 struct gdbarch
*gdbarch
;
948 struct gdbarch_tdep
*tdep
;
950 /* If there is already a candidate, use it. */
951 arches
= gdbarch_list_lookup_by_info (arches
, &info
);
953 return arches
->gdbarch
;
955 /* Allocate space for the new architecture. */
956 tdep
= XMALLOC (struct gdbarch_tdep
);
957 gdbarch
= gdbarch_alloc (&info
, tdep
);
959 set_gdbarch_read_pc (gdbarch
, moxie_read_pc
);
960 set_gdbarch_write_pc (gdbarch
, moxie_write_pc
);
961 set_gdbarch_unwind_sp (gdbarch
, moxie_unwind_sp
);
963 set_gdbarch_num_regs (gdbarch
, MOXIE_NUM_REGS
);
964 set_gdbarch_sp_regnum (gdbarch
, MOXIE_SP_REGNUM
);
965 set_gdbarch_pc_regnum (gdbarch
, MOXIE_PC_REGNUM
);
966 set_gdbarch_register_name (gdbarch
, moxie_register_name
);
967 set_gdbarch_register_type (gdbarch
, moxie_register_type
);
969 set_gdbarch_return_value (gdbarch
, moxie_return_value
);
971 set_gdbarch_skip_prologue (gdbarch
, moxie_skip_prologue
);
972 set_gdbarch_inner_than (gdbarch
, core_addr_lessthan
);
973 set_gdbarch_breakpoint_from_pc (gdbarch
, moxie_breakpoint_from_pc
);
974 set_gdbarch_frame_align (gdbarch
, moxie_frame_align
);
976 frame_base_set_default (gdbarch
, &moxie_frame_base
);
978 /* Methods for saving / extracting a dummy frame's ID. The ID's
979 stack address must match the SP value returned by
980 PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos. */
981 set_gdbarch_dummy_id (gdbarch
, moxie_dummy_id
);
983 set_gdbarch_unwind_pc (gdbarch
, moxie_unwind_pc
);
985 set_gdbarch_print_insn (gdbarch
, print_insn_moxie
);
987 /* Hook in ABI-specific overrides, if they have been registered. */
988 gdbarch_init_osabi (info
, gdbarch
);
990 /* Hook in the default unwinders. */
991 frame_unwind_append_unwinder (gdbarch
, &moxie_frame_unwind
);
993 /* Support simple overlay manager. */
994 set_gdbarch_overlay_update (gdbarch
, simple_overlay_update
);
996 /* Support reverse debugging. */
997 set_gdbarch_process_record (gdbarch
, moxie_process_record
);
1002 /* Register this machine's init routine. */
1005 _initialize_moxie_tdep (void)
1007 register_gdbarch_init (bfd_arch_moxie
, moxie_gdbarch_init
);