1 /* Target-dependent code for Moxie.
3 Copyright (C) 2009-2018 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"
34 #include "arch-utils.h"
36 #include "trad-frame.h"
39 #include "record-full.h"
41 #include "moxie-tdep.h"
44 /* Use an invalid address value as 'not available' marker. */
45 enum { REG_UNAVAIL = (CORE_ADDR) -1 };
47 struct moxie_frame_cache
53 CORE_ADDR saved_regs[MOXIE_NUM_REGS];
57 /* Implement the "frame_align" gdbarch method. */
60 moxie_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
62 /* Align to the size of an instruction (so that they can safely be
63 pushed onto the stack. */
67 constexpr gdb_byte moxie_break_insn[] = { 0x35, 0x00 };
69 typedef BP_MANIPULATION (moxie_break_insn) moxie_breakpoint;
71 /* Moxie register names. */
73 static const char *moxie_register_names[] = {
74 "$fp", "$sp", "$r0", "$r1", "$r2",
75 "$r3", "$r4", "$r5", "$r6", "$r7",
76 "$r8", "$r9", "$r10", "$r11", "$r12",
77 "$r13", "$pc", "$cc" };
79 /* Implement the "register_name" gdbarch method. */
82 moxie_register_name (struct gdbarch *gdbarch, int reg_nr)
86 if (reg_nr >= MOXIE_NUM_REGS)
88 return moxie_register_names[reg_nr];
91 /* Implement the "register_type" gdbarch method. */
94 moxie_register_type (struct gdbarch *gdbarch, int reg_nr)
96 if (reg_nr == MOXIE_PC_REGNUM)
97 return builtin_type (gdbarch)->builtin_func_ptr;
98 else if (reg_nr == MOXIE_SP_REGNUM || reg_nr == MOXIE_FP_REGNUM)
99 return builtin_type (gdbarch)->builtin_data_ptr;
101 return builtin_type (gdbarch)->builtin_int32;
104 /* Write into appropriate registers a function return value
105 of type TYPE, given in virtual format. */
108 moxie_store_return_value (struct type *type, struct regcache *regcache,
109 const gdb_byte *valbuf)
111 struct gdbarch *gdbarch = regcache->arch ();
112 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
114 int len = TYPE_LENGTH (type);
116 /* Things always get returned in RET1_REGNUM, RET2_REGNUM. */
117 regval = extract_unsigned_integer (valbuf, len > 4 ? 4 : len, byte_order);
118 regcache_cooked_write_unsigned (regcache, RET1_REGNUM, regval);
121 regval = extract_unsigned_integer (valbuf + 4, len - 4, byte_order);
122 regcache_cooked_write_unsigned (regcache, RET1_REGNUM + 1, regval);
126 /* Decode the instructions within the given address range. Decide
127 when we must have reached the end of the function prologue. If a
128 frame_info pointer is provided, fill in its saved_regs etc.
130 Returns the address of the first instruction after the prologue. */
133 moxie_analyze_prologue (CORE_ADDR start_addr, CORE_ADDR end_addr,
134 struct moxie_frame_cache *cache,
135 struct gdbarch *gdbarch)
137 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
139 ULONGEST inst, inst2;
143 /* Record where the jsra instruction saves the PC and FP. */
144 cache->saved_regs[MOXIE_PC_REGNUM] = -4;
145 cache->saved_regs[MOXIE_FP_REGNUM] = 0;
146 cache->framesize = 0;
148 if (start_addr >= end_addr)
151 for (next_addr = start_addr; next_addr < end_addr; )
153 inst = read_memory_unsigned_integer (next_addr, 2, byte_order);
155 /* Match "push $sp $rN" where N is between 0 and 13 inclusive. */
156 if (inst >= 0x0612 && inst <= 0x061f)
158 regnum = inst & 0x000f;
159 cache->framesize += 4;
160 cache->saved_regs[regnum] = cache->framesize;
167 inst = read_memory_unsigned_integer (next_addr, 2, byte_order);
169 /* Optional stack allocation for args and local vars <= 4
171 if (inst == 0x01e0) /* ldi.l $r12, X */
173 offset = read_memory_integer (next_addr + 2, 4, byte_order);
174 inst2 = read_memory_unsigned_integer (next_addr + 6, 2, byte_order);
176 if (inst2 == 0x291e) /* sub.l $sp, $r12 */
178 cache->framesize += offset;
181 return (next_addr + 8);
183 else if ((inst & 0xff00) == 0x9100) /* dec $sp, X */
185 cache->framesize += (inst & 0x00ff);
188 while (next_addr < end_addr)
190 inst = read_memory_unsigned_integer (next_addr, 2, byte_order);
191 if ((inst & 0xff00) != 0x9100) /* no more dec $sp, X */
193 cache->framesize += (inst & 0x00ff);
201 /* Find the end of function prologue. */
204 moxie_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
206 CORE_ADDR func_addr = 0, func_end = 0;
207 const char *func_name;
209 /* See if we can determine the end of the prologue via the symbol table.
210 If so, then return either PC, or the PC after the prologue, whichever
212 if (find_pc_partial_function (pc, &func_name, &func_addr, &func_end))
214 CORE_ADDR post_prologue_pc
215 = skip_prologue_using_sal (gdbarch, func_addr);
216 if (post_prologue_pc != 0)
217 return std::max (pc, post_prologue_pc);
220 /* Can't determine prologue from the symbol table, need to examine
222 struct symtab_and_line sal;
224 struct moxie_frame_cache cache;
227 memset (&cache, 0, sizeof cache);
229 plg_end = moxie_analyze_prologue (func_addr,
230 func_end, &cache, gdbarch);
231 /* Found a function. */
232 sym = lookup_symbol (func_name, NULL, VAR_DOMAIN, NULL).symbol;
233 /* Don't use line number debug info for assembly source
235 if (sym && SYMBOL_LANGUAGE (sym) != language_asm)
237 sal = find_pc_line (func_addr, 0);
238 if (sal.end && sal.end < func_end)
240 /* Found a line number, use it as end of
245 /* No useable line symbol. Use result of prologue parsing
251 /* No function symbol -- just return the PC. */
252 return (CORE_ADDR) pc;
255 struct moxie_unwind_cache
257 /* The previous frame's inner most stack address. Used as this
258 frame ID's stack_addr. */
260 /* The frame's base, optionally used by the high-level debug info. */
263 /* How far the SP and r13 (FP) have been offset from the start of
264 the stack frame (as defined by the previous frame's stack
269 /* Table indicating the location of each and every register. */
270 struct trad_frame_saved_reg *saved_regs;
273 /* Read an unsigned integer from the inferior, and adjust
276 moxie_process_readu (CORE_ADDR addr, gdb_byte *buf,
277 int length, enum bfd_endian byte_order)
279 if (target_read_memory (addr, buf, length))
282 printf_unfiltered (_("Process record: error reading memory at "
283 "addr 0x%s len = %d.\n"),
284 paddress (target_gdbarch (), addr), length);
288 return extract_unsigned_integer (buf, length, byte_order);
292 /* Helper macro to extract the signed 10-bit offset from a 16-bit
293 branch instruction. */
294 #define INST2OFFSET(o) ((((signed short)((o & ((1<<10)-1))<<6))>>6)<<1)
296 /* Insert a single step breakpoint. */
298 static std::vector<CORE_ADDR>
299 moxie_software_single_step (struct regcache *regcache)
301 struct gdbarch *gdbarch = regcache->arch ();
307 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
308 std::vector<CORE_ADDR> next_pcs;
310 addr = regcache_read_pc (regcache);
312 inst = (uint16_t) moxie_process_readu (addr, buf, 2, byte_order);
314 /* Decode instruction. */
315 if (inst & (1 << 15))
317 if (inst & (1 << 14))
319 /* This is a Form 3 instruction. */
320 int opcode = (inst >> 10 & 0xf);
328 case 0x04: /* bltu */
329 case 0x05: /* bgtu */
332 case 0x08: /* bgeu */
333 case 0x09: /* bleu */
334 /* Insert breaks on both branches, because we can't currently tell
335 which way things will go. */
336 next_pcs.push_back (addr + 2);
337 next_pcs.push_back (addr + 2 + INST2OFFSET(inst));
348 /* This is a Form 2 instruction. They are all 16 bits. */
349 next_pcs.push_back (addr + 2);
354 /* This is a Form 1 instruction. */
355 int opcode = inst >> 8;
359 /* 16-bit instructions. */
361 case 0x02: /* mov (register-to-register) */
362 case 0x05: /* add.l */
363 case 0x06: /* push */
365 case 0x0a: /* ld.l (register indirect) */
366 case 0x0b: /* st.l */
369 case 0x10: /* sex.b */
370 case 0x11: /* sex.s */
371 case 0x12: /* zex.b */
372 case 0x13: /* zex.s */
373 case 0x14: /* umul.x */
374 case 0x15: /* mul.x */
378 case 0x1c: /* ld.b (register indirect) */
379 case 0x1e: /* st.b */
380 case 0x21: /* ld.s (register indirect) */
381 case 0x23: /* st.s */
383 case 0x27: /* lshr */
384 case 0x28: /* ashl */
385 case 0x29: /* sub.l */
389 case 0x2d: /* ashr */
391 case 0x2f: /* mul.l */
392 case 0x31: /* div.l */
393 case 0x32: /* udiv.l */
394 case 0x33: /* mod.l */
395 case 0x34: /* umod.l */
396 next_pcs.push_back (addr + 2);
399 /* 32-bit instructions. */
400 case 0x0c: /* ldo.l */
401 case 0x0d: /* sto.l */
402 case 0x36: /* ldo.b */
403 case 0x37: /* sto.b */
404 case 0x38: /* ldo.s */
405 case 0x39: /* sto.s */
406 next_pcs.push_back (addr + 4);
409 /* 48-bit instructions. */
410 case 0x01: /* ldi.l (immediate) */
411 case 0x08: /* lda.l */
412 case 0x09: /* sta.l */
413 case 0x1b: /* ldi.b (immediate) */
414 case 0x1d: /* lda.b */
415 case 0x1f: /* sta.b */
416 case 0x20: /* ldi.s (immediate) */
417 case 0x22: /* lda.s */
418 case 0x24: /* sta.s */
419 next_pcs.push_back (addr + 6);
422 /* Control flow instructions. */
423 case 0x03: /* jsra */
424 case 0x1a: /* jmpa */
425 next_pcs.push_back (moxie_process_readu (addr + 2, buf, 4,
430 regcache_cooked_read_unsigned (regcache, MOXIE_FP_REGNUM, &fp);
431 next_pcs.push_back (moxie_process_readu (fp + 4, buf, 4, byte_order));
436 regcache->raw_read ((inst >> 4) & 0xf, (gdb_byte *) & tmpu32);
437 next_pcs.push_back (tmpu32);
442 /* Unsupported, for now. */
450 /* Implement the "unwind_sp" gdbarch method. */
453 moxie_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
455 return frame_unwind_register_unsigned (next_frame, MOXIE_SP_REGNUM);
458 /* Given a return value in `regbuf' with a type `valtype',
459 extract and copy its value into `valbuf'. */
462 moxie_extract_return_value (struct type *type, struct regcache *regcache,
465 struct gdbarch *gdbarch = regcache->arch ();
466 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
467 int len = TYPE_LENGTH (type);
470 /* By using store_unsigned_integer we avoid having to do
471 anything special for small big-endian values. */
472 regcache_cooked_read_unsigned (regcache, RET1_REGNUM, &tmp);
473 store_unsigned_integer (dst, (len > 4 ? len - 4 : len), byte_order, tmp);
475 /* Ignore return values more than 8 bytes in size because the moxie
476 returns anything more than 8 bytes in the stack. */
479 regcache_cooked_read_unsigned (regcache, RET1_REGNUM + 1, &tmp);
480 store_unsigned_integer (dst + len - 4, 4, byte_order, tmp);
484 /* Implement the "return_value" gdbarch method. */
486 static enum return_value_convention
487 moxie_return_value (struct gdbarch *gdbarch, struct value *function,
488 struct type *valtype, struct regcache *regcache,
489 gdb_byte *readbuf, const gdb_byte *writebuf)
491 if (TYPE_LENGTH (valtype) > 8)
492 return RETURN_VALUE_STRUCT_CONVENTION;
496 moxie_extract_return_value (valtype, regcache, readbuf);
497 if (writebuf != NULL)
498 moxie_store_return_value (valtype, regcache, writebuf);
499 return RETURN_VALUE_REGISTER_CONVENTION;
503 /* Allocate and initialize a moxie_frame_cache object. */
505 static struct moxie_frame_cache *
506 moxie_alloc_frame_cache (void)
508 struct moxie_frame_cache *cache;
511 cache = FRAME_OBSTACK_ZALLOC (struct moxie_frame_cache);
516 cache->framesize = 0;
517 for (i = 0; i < MOXIE_NUM_REGS; ++i)
518 cache->saved_regs[i] = REG_UNAVAIL;
523 /* Populate a moxie_frame_cache object for this_frame. */
525 static struct moxie_frame_cache *
526 moxie_frame_cache (struct frame_info *this_frame, void **this_cache)
528 struct moxie_frame_cache *cache;
529 CORE_ADDR current_pc;
533 return (struct moxie_frame_cache *) *this_cache;
535 cache = moxie_alloc_frame_cache ();
538 cache->base = get_frame_register_unsigned (this_frame, MOXIE_FP_REGNUM);
539 if (cache->base == 0)
542 cache->pc = get_frame_func (this_frame);
543 current_pc = get_frame_pc (this_frame);
546 struct gdbarch *gdbarch = get_frame_arch (this_frame);
547 moxie_analyze_prologue (cache->pc, current_pc, cache, gdbarch);
550 cache->saved_sp = cache->base - cache->framesize;
552 for (i = 0; i < MOXIE_NUM_REGS; ++i)
553 if (cache->saved_regs[i] != REG_UNAVAIL)
554 cache->saved_regs[i] = cache->base - cache->saved_regs[i];
559 /* Implement the "unwind_pc" gdbarch method. */
562 moxie_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
564 return frame_unwind_register_unsigned (next_frame, MOXIE_PC_REGNUM);
567 /* Given a GDB frame, determine the address of the calling function's
568 frame. This will be used to create a new GDB frame struct. */
571 moxie_frame_this_id (struct frame_info *this_frame,
572 void **this_prologue_cache, struct frame_id *this_id)
574 struct moxie_frame_cache *cache = moxie_frame_cache (this_frame,
575 this_prologue_cache);
577 /* This marks the outermost frame. */
578 if (cache->base == 0)
581 *this_id = frame_id_build (cache->saved_sp, cache->pc);
584 /* Get the value of register regnum in the previous stack frame. */
586 static struct value *
587 moxie_frame_prev_register (struct frame_info *this_frame,
588 void **this_prologue_cache, int regnum)
590 struct moxie_frame_cache *cache = moxie_frame_cache (this_frame,
591 this_prologue_cache);
593 gdb_assert (regnum >= 0);
595 if (regnum == MOXIE_SP_REGNUM && cache->saved_sp)
596 return frame_unwind_got_constant (this_frame, regnum, cache->saved_sp);
598 if (regnum < MOXIE_NUM_REGS && cache->saved_regs[regnum] != REG_UNAVAIL)
599 return frame_unwind_got_memory (this_frame, regnum,
600 cache->saved_regs[regnum]);
602 return frame_unwind_got_register (this_frame, regnum, regnum);
605 static const struct frame_unwind moxie_frame_unwind = {
607 default_frame_unwind_stop_reason,
609 moxie_frame_prev_register,
611 default_frame_sniffer
614 /* Return the base address of this_frame. */
617 moxie_frame_base_address (struct frame_info *this_frame, void **this_cache)
619 struct moxie_frame_cache *cache = moxie_frame_cache (this_frame,
625 static const struct frame_base moxie_frame_base = {
627 moxie_frame_base_address,
628 moxie_frame_base_address,
629 moxie_frame_base_address
632 static struct frame_id
633 moxie_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
635 CORE_ADDR sp = get_frame_register_unsigned (this_frame, MOXIE_SP_REGNUM);
637 return frame_id_build (sp, get_frame_pc (this_frame));
640 /* Parse the current instruction and record the values of the registers and
641 memory that will be changed in current instruction to "record_arch_list".
642 Return -1 if something wrong. */
645 moxie_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
651 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
653 if (record_debug > 1)
654 fprintf_unfiltered (gdb_stdlog, "Process record: moxie_process_record "
656 paddress (target_gdbarch (), addr));
658 inst = (uint16_t) moxie_process_readu (addr, buf, 2, byte_order);
660 /* Decode instruction. */
661 if (inst & (1 << 15))
663 if (inst & (1 << 14))
665 /* This is a Form 3 instruction. */
666 int opcode = (inst >> 10 & 0xf);
674 case 0x04: /* bltu */
675 case 0x05: /* bgtu */
678 case 0x08: /* bgeu */
679 case 0x09: /* bleu */
691 /* This is a Form 2 instruction. */
692 int opcode = (inst >> 12 & 0x3);
699 int reg = (inst >> 8) & 0xf;
700 if (record_full_arch_list_add_reg (regcache, reg))
706 /* Do nothing until GDB learns about moxie's special
718 /* This is a Form 1 instruction. */
719 int opcode = inst >> 8;
726 case 0x01: /* ldi.l (immediate) */
727 case 0x02: /* mov (register-to-register) */
729 int reg = (inst >> 4) & 0xf;
730 if (record_full_arch_list_add_reg (regcache, reg))
734 case 0x03: /* jsra */
737 MOXIE_SP_REGNUM, (gdb_byte *) & tmpu32);
738 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
740 if (record_full_arch_list_add_reg (regcache, MOXIE_FP_REGNUM)
741 || (record_full_arch_list_add_reg (regcache,
743 || record_full_arch_list_add_mem (tmpu32 - 12, 12))
749 if (record_full_arch_list_add_reg (regcache, MOXIE_FP_REGNUM)
750 || (record_full_arch_list_add_reg (regcache,
755 case 0x05: /* add.l */
757 int reg = (inst >> 4) & 0xf;
758 if (record_full_arch_list_add_reg (regcache, reg))
762 case 0x06: /* push */
764 int reg = (inst >> 4) & 0xf;
765 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
766 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
768 if (record_full_arch_list_add_reg (regcache, reg)
769 || record_full_arch_list_add_mem (tmpu32 - 4, 4))
775 int a = (inst >> 4) & 0xf;
777 if (record_full_arch_list_add_reg (regcache, a)
778 || record_full_arch_list_add_reg (regcache, b))
782 case 0x08: /* lda.l */
784 int reg = (inst >> 4) & 0xf;
785 if (record_full_arch_list_add_reg (regcache, reg))
789 case 0x09: /* sta.l */
791 tmpu32 = (uint32_t) moxie_process_readu (addr+2, buf,
793 if (record_full_arch_list_add_mem (tmpu32, 4))
797 case 0x0a: /* ld.l (register indirect) */
799 int reg = (inst >> 4) & 0xf;
800 if (record_full_arch_list_add_reg (regcache, reg))
804 case 0x0b: /* st.l */
806 int reg = (inst >> 4) & 0xf;
807 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
808 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
810 if (record_full_arch_list_add_mem (tmpu32, 4))
814 case 0x0c: /* ldo.l */
816 int reg = (inst >> 4) & 0xf;
817 if (record_full_arch_list_add_reg (regcache, reg))
821 case 0x0d: /* sto.l */
823 int reg = (inst >> 4) & 0xf;
824 uint32_t offset = (((int16_t) moxie_process_readu (addr+2, buf, 2,
825 byte_order)) << 16 ) >> 16;
826 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
827 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
830 if (record_full_arch_list_add_mem (tmpu32, 4))
836 if (record_full_arch_list_add_reg (regcache, MOXIE_CC_REGNUM))
845 case 0x10: /* sex.b */
846 case 0x11: /* sex.s */
847 case 0x12: /* zex.b */
848 case 0x13: /* zex.s */
849 case 0x14: /* umul.x */
850 case 0x15: /* mul.x */
852 int reg = (inst >> 4) & 0xf;
853 if (record_full_arch_list_add_reg (regcache, reg))
867 MOXIE_SP_REGNUM, (gdb_byte *) & tmpu32);
868 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
870 if (record_full_arch_list_add_reg (regcache, MOXIE_FP_REGNUM)
871 || (record_full_arch_list_add_reg (regcache,
873 || record_full_arch_list_add_mem (tmpu32 - 12, 12))
877 case 0x1a: /* jmpa */
882 case 0x1b: /* ldi.b (immediate) */
883 case 0x1c: /* ld.b (register indirect) */
884 case 0x1d: /* lda.b */
886 int reg = (inst >> 4) & 0xf;
887 if (record_full_arch_list_add_reg (regcache, reg))
891 case 0x1e: /* st.b */
893 int reg = (inst >> 4) & 0xf;
894 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
895 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
897 if (record_full_arch_list_add_mem (tmpu32, 1))
901 case 0x1f: /* sta.b */
903 tmpu32 = moxie_process_readu (addr+2, buf, 4, byte_order);
904 if (record_full_arch_list_add_mem (tmpu32, 1))
908 case 0x20: /* ldi.s (immediate) */
909 case 0x21: /* ld.s (register indirect) */
910 case 0x22: /* lda.s */
912 int reg = (inst >> 4) & 0xf;
913 if (record_full_arch_list_add_reg (regcache, reg))
917 case 0x23: /* st.s */
919 int reg = (inst >> 4) & 0xf;
920 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
921 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
923 if (record_full_arch_list_add_mem (tmpu32, 2))
927 case 0x24: /* sta.s */
929 tmpu32 = moxie_process_readu (addr+2, buf, 4, byte_order);
930 if (record_full_arch_list_add_mem (tmpu32, 2))
940 case 0x27: /* lshr */
941 case 0x28: /* ashl */
946 case 0x2d: /* ashr */
950 int reg = (inst >> 4) & 0xf;
951 if (record_full_arch_list_add_reg (regcache, reg))
957 /* We currently implement support for libgloss'
960 int inum = moxie_process_readu (addr+2, buf, 4, byte_order);
964 case 0x1: /* SYS_exit */
969 case 0x2: /* SYS_open */
971 if (record_full_arch_list_add_reg (regcache, RET1_REGNUM))
975 case 0x4: /* SYS_read */
977 uint32_t length, ptr;
979 /* Read buffer pointer is in $r1. */
980 regcache->raw_read (3, (gdb_byte *) & ptr);
981 ptr = extract_unsigned_integer ((gdb_byte *) & ptr,
984 /* String length is at 0x12($fp). */
986 MOXIE_FP_REGNUM, (gdb_byte *) & tmpu32);
987 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
989 length = moxie_process_readu (tmpu32+20, buf, 4, byte_order);
991 if (record_full_arch_list_add_mem (ptr, length))
995 case 0x5: /* SYS_write */
997 if (record_full_arch_list_add_reg (regcache, RET1_REGNUM))
1006 case 0x31: /* div.l */
1007 case 0x32: /* udiv.l */
1008 case 0x33: /* mod.l */
1009 case 0x34: /* umod.l */
1011 int reg = (inst >> 4) & 0xf;
1012 if (record_full_arch_list_add_reg (regcache, reg))
1016 case 0x35: /* brk */
1019 case 0x36: /* ldo.b */
1021 int reg = (inst >> 4) & 0xf;
1022 if (record_full_arch_list_add_reg (regcache, reg))
1026 case 0x37: /* sto.b */
1028 int reg = (inst >> 4) & 0xf;
1029 uint32_t offset = (((int16_t) moxie_process_readu (addr+2, buf, 2,
1030 byte_order)) << 16 ) >> 16;
1031 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
1032 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
1035 if (record_full_arch_list_add_mem (tmpu32, 1))
1039 case 0x38: /* ldo.s */
1041 int reg = (inst >> 4) & 0xf;
1042 if (record_full_arch_list_add_reg (regcache, reg))
1046 case 0x39: /* sto.s */
1048 int reg = (inst >> 4) & 0xf;
1049 uint32_t offset = (((int16_t) moxie_process_readu (addr+2, buf, 2,
1050 byte_order)) << 16 ) >> 16;
1051 regcache->raw_read (reg, (gdb_byte *) & tmpu32);
1052 tmpu32 = extract_unsigned_integer ((gdb_byte *) & tmpu32,
1055 if (record_full_arch_list_add_mem (tmpu32, 2))
1065 if (record_full_arch_list_add_reg (regcache, MOXIE_PC_REGNUM))
1067 if (record_full_arch_list_add_end ())
1072 /* Allocate and initialize the moxie gdbarch object. */
1074 static struct gdbarch *
1075 moxie_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1077 struct gdbarch *gdbarch;
1078 struct gdbarch_tdep *tdep;
1080 /* If there is already a candidate, use it. */
1081 arches = gdbarch_list_lookup_by_info (arches, &info);
1083 return arches->gdbarch;
1085 /* Allocate space for the new architecture. */
1086 tdep = XCNEW (struct gdbarch_tdep);
1087 gdbarch = gdbarch_alloc (&info, tdep);
1089 set_gdbarch_wchar_bit (gdbarch, 32);
1090 set_gdbarch_wchar_signed (gdbarch, 0);
1092 set_gdbarch_unwind_sp (gdbarch, moxie_unwind_sp);
1094 set_gdbarch_num_regs (gdbarch, MOXIE_NUM_REGS);
1095 set_gdbarch_sp_regnum (gdbarch, MOXIE_SP_REGNUM);
1096 set_gdbarch_pc_regnum (gdbarch, MOXIE_PC_REGNUM);
1097 set_gdbarch_register_name (gdbarch, moxie_register_name);
1098 set_gdbarch_register_type (gdbarch, moxie_register_type);
1100 set_gdbarch_return_value (gdbarch, moxie_return_value);
1102 set_gdbarch_skip_prologue (gdbarch, moxie_skip_prologue);
1103 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1104 set_gdbarch_breakpoint_kind_from_pc (gdbarch,
1105 moxie_breakpoint::kind_from_pc);
1106 set_gdbarch_sw_breakpoint_from_kind (gdbarch,
1107 moxie_breakpoint::bp_from_kind);
1108 set_gdbarch_frame_align (gdbarch, moxie_frame_align);
1110 frame_base_set_default (gdbarch, &moxie_frame_base);
1112 /* Methods for saving / extracting a dummy frame's ID. The ID's
1113 stack address must match the SP value returned by
1114 PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos. */
1115 set_gdbarch_dummy_id (gdbarch, moxie_dummy_id);
1117 set_gdbarch_unwind_pc (gdbarch, moxie_unwind_pc);
1119 /* Hook in ABI-specific overrides, if they have been registered. */
1120 gdbarch_init_osabi (info, gdbarch);
1122 /* Hook in the default unwinders. */
1123 frame_unwind_append_unwinder (gdbarch, &moxie_frame_unwind);
1125 /* Single stepping. */
1126 set_gdbarch_software_single_step (gdbarch, moxie_software_single_step);
1128 /* Support simple overlay manager. */
1129 set_gdbarch_overlay_update (gdbarch, simple_overlay_update);
1131 /* Support reverse debugging. */
1132 set_gdbarch_process_record (gdbarch, moxie_process_record);
1137 /* Register this machine's init routine. */
1140 _initialize_moxie_tdep (void)
1142 register_gdbarch_init (bfd_arch_moxie, moxie_gdbarch_init);