1 /* Target-machine dependent code for Hitachi H8/500, for GDB.
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 Contributed by Steve Chamberlain
33 #include "../opcodes/h8500-opc.h"
36 #define UNSIGNED_SHORT(X) ((X) & 0xffff)
40 /* Shape of an H8/500 frame :
47 return address <2 or 4 bytes>
57 /* an easy to debug H8 stack frame looks like:
61 0x7905 nnnn mov.w #n,r5 or 0x1b87 subs #2,sp
66 #define IS_PUSH(x) (((x) & 0xff00)==0x6d00)
67 #define IS_LINK_8(x) ((x) == 0x17)
68 #define IS_LINK_16(x) ((x) == 0x1f)
69 #define IS_MOVE_FP(x) ((x) == 0x0d76)
70 #define IS_MOV_SP_FP(x) ((x) == 0x0d76)
71 #define IS_SUB2_SP(x) ((x) == 0x1b87)
72 #define IS_MOVK_R5(x) ((x) == 0x7905)
73 #define IS_SUB_R5SP(x) ((x) == 0x1957)
79 CORE_ADDR examine_prologue ();
81 void frame_find_saved_regs ();
85 h8500_skip_prologue (start_pc)
91 w = read_memory_integer (start_pc, 1);
95 w = read_memory_integer (start_pc, 1);
101 w = read_memory_integer (start_pc, 2);
108 print_insn (memaddr, stream)
112 disassemble_info info;
113 GDB_INIT_DISASSEMBLE_INFO (info, stream);
114 return print_insn_h8500 (memaddr, &info);
117 /* Given a GDB frame, determine the address of the calling function's frame.
118 This will be used to create a new GDB frame struct, and then
119 INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
121 For us, the frame address is its stack pointer value, so we look up
122 the function prologue to determine the caller's sp value, and return it. */
125 h8500_frame_chain (thisframe)
126 struct frame_info *thisframe;
128 if (!inside_entry_file (thisframe->pc))
129 return (read_memory_integer (FRAME_FP (thisframe), PTR_SIZE));
135 /* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
136 is not the address of a valid instruction, the address of the next
137 instruction beyond ADDR otherwise. *PWORD1 receives the first word
138 of the instruction.*/
141 NEXT_PROLOGUE_INSN (addr, lim, pword1)
148 read_memory (addr, pword1, 1);
149 read_memory (addr, pword1 + 1, 1);
155 /* Examine the prologue of a function. `ip' points to the first instruction.
156 `limit' is the limit of the prologue (e.g. the addr of the first
157 linenumber, or perhaps the program counter if we're stepping through).
158 `frame_sp' is the stack pointer value in use in this frame.
159 `fsr' is a pointer to a frame_saved_regs structure into which we put
160 info about the registers saved by this frame.
161 `fi' is a struct frame_info pointer; we fill in various fields in it
162 to reflect the offsets of the arg pointer and the locals pointer. */
165 /* Return the saved PC from this frame. */
168 frame_saved_pc (frame)
169 struct frame_info *frame;
171 return read_memory_integer (FRAME_FP (frame) + 2, PTR_SIZE);
175 frame_locals_address (fi)
176 struct frame_info *fi;
181 /* Return the address of the argument block for the frame
182 described by FI. Returns 0 if the address is unknown. */
185 frame_args_address (fi)
186 struct frame_info *fi;
195 struct frame_saved_regs fsr;
196 struct frame_info *frame = get_current_frame ();
198 get_frame_saved_regs (frame, &fsr);
200 for (regnum = 0; regnum < 8; regnum++)
202 if (fsr.regs[regnum])
203 write_register (regnum, read_memory_short (fsr.regs[regnum]));
205 flush_cached_frames ();
211 print_register_hook (regno)
213 if (regno == CCR_REGNUM)
221 read_relative_register_raw_bytes (regno, b);
223 printf_unfiltered ("\t");
224 printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
229 printf_unfiltered ("N-%d ", N);
230 printf_unfiltered ("Z-%d ", Z);
231 printf_unfiltered ("V-%d ", V);
232 printf_unfiltered ("C-%d ", C);
234 printf_unfiltered ("u> ");
236 printf_unfiltered ("u<= ");
238 printf_unfiltered ("u>= ");
240 printf_unfiltered ("u< ");
242 printf_unfiltered ("!= ");
244 printf_unfiltered ("== ");
246 printf_unfiltered (">= ");
248 printf_unfiltered ("< ");
249 if ((Z | (N ^ V)) == 0)
250 printf_unfiltered ("> ");
251 if ((Z | (N ^ V)) == 1)
252 printf_unfiltered ("<= ");
257 h8500_register_size (regno)
291 h8500_register_virtual_type (regno)
300 return builtin_type_unsigned_char;
310 return builtin_type_unsigned_short;
320 return builtin_type_unsigned_long;
326 /* Put here the code to store, into a struct frame_saved_regs,
327 the addresses of the saved registers of frame described by FRAME_INFO.
328 This includes special registers such as pc and fp saved in special
329 ways in the stack frame. sp is even more special:
330 the address we return for it IS the sp for the next frame. */
333 frame_find_saved_regs (frame_info, frame_saved_regs)
334 struct frame_info *frame_info;
335 struct frame_saved_regs *frame_saved_regs;
339 register int regmask;
340 register CORE_ADDR next_addr;
341 register CORE_ADDR pc;
342 unsigned char thebyte;
344 memset (frame_saved_regs, '\0', sizeof *frame_saved_regs);
346 if ((frame_info)->pc >= (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4
347 && (frame_info)->pc <= (frame_info)->frame)
349 next_addr = (frame_info)->frame;
350 pc = (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4;
354 pc = get_pc_function_start ((frame_info)->pc);
355 /* Verify we have a link a6 instruction next;
356 if not we lose. If we win, find the address above the saved
357 regs using the amount of storage from the link instruction.
360 thebyte = read_memory_integer (pc, 1);
362 next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 2), pc += 2;
363 else if (0x17 == thebyte)
364 next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 1), pc += 1;
369 /* If have an add:g.waddal #-n, sp next, adjust next_addr. */
370 if ((0x0c0177777 & read_memory_integer (pc, 2)) == 0157774)
371 next_addr += read_memory_integer (pc += 2, 4), pc += 4;
375 thebyte = read_memory_integer (pc, 1);
380 regmask = read_memory_integer (pc, 1);
382 for (regnum = 0; regnum < 8; regnum++, regmask >>= 1)
386 (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
389 thebyte = read_memory_integer (pc, 1);
391 /* Maybe got a load of pushes */
392 while (thebyte == 0xbf)
395 regnum = read_memory_integer (pc, 1) & 0x7;
397 (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
398 thebyte = read_memory_integer (pc, 1);
403 /* Remember the address of the frame pointer */
404 (frame_saved_regs)->regs[FP_REGNUM] = (frame_info)->frame;
406 /* This is where the old sp is hidden */
407 (frame_saved_regs)->regs[SP_REGNUM] = (frame_info)->frame;
409 /* And the PC - remember the pushed FP is always two bytes long */
410 (frame_saved_regs)->regs[PC_REGNUM] = (frame_info)->frame + 2;
413 saved_pc_after_call (frame)
416 int a = read_register (SP_REGNUM);
417 x = read_memory_integer (a, code_size);
420 /* Stick current code segement onto top */
422 x |= read_register (SEG_C_REGNUM) << 16;
429 /* Nonzero if instruction at PC is a return instruction. */
433 int b1 = read_memory_integer (pc, 1);
437 case 0x14: /* rtd #8 */
438 case 0x1c: /* rtd #16 */
444 int b2 = read_memory_integer (pc + 1, 1);
447 case 0x18: /* prts */
448 case 0x14: /* prtd #8 */
449 case 0x16: /* prtd #16 */
459 h8500_set_pointer_size (newsize)
462 static int oldsize = 0;
464 if (oldsize != newsize)
466 printf_unfiltered ("pointer size set to %d bits\n", newsize);
476 _initialize_gdbtypes ();
481 struct cmd_list_element *setmemorylist;
484 #define C(name,a,b,c) name () { h8500_set_pointer_size(a); code_size = b; data_size = c; }
486 C(big_command, 32,4,4);
487 C(medium_command, 32, 4,2);
488 C(compact_command, 32,2,4);
489 C(small_command, 16,2,2);
492 set_memory (args, from_tty)
496 printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
497 help_list (setmemorylist, "set memory ", -1, gdb_stdout);
500 /* See if variable name is ppc or pr[0-7] */
503 h8500_is_trapped_internalvar (name)
509 if (strcmp (name + 1, "pc") == 0)
515 && name[3] == '\000')
522 h8500_value_of_trapped_internalvar (var)
523 struct internalvar *var;
526 unsigned char regbuf[4];
527 int page_regnum, regnum;
529 regnum = var->name[2] == 'c' ? PC_REGNUM : var->name[2] - '0';
531 switch (var->name[2])
534 page_regnum = SEG_C_REGNUM;
540 page_regnum = SEG_D_REGNUM;
544 page_regnum = SEG_E_REGNUM;
548 page_regnum = SEG_T_REGNUM;
552 get_saved_register (regbuf, NULL, NULL, selected_frame, page_regnum, NULL);
553 regval = regbuf[0] << 16;
555 get_saved_register (regbuf, NULL, NULL, selected_frame, regnum, NULL);
556 regval |= regbuf[0] << 8 | regbuf[1]; /* XXX host/target byte order */
558 free (var->value); /* Free up old value */
560 var->value = value_from_longest (builtin_type_unsigned_long, regval);
561 release_value (var->value); /* Unchain new value */
563 VALUE_LVAL (var->value) = lval_internalvar;
564 VALUE_INTERNALVAR (var->value) = var;
569 h8500_set_trapped_internalvar (var, newval, bitpos, bitsize, offset)
570 struct internalvar *var;
571 int offset, bitpos, bitsize;
574 char *page_regnum, *regnum;
575 char expression[100];
578 enum type_code newval_type_code;
580 type = VALUE_TYPE (newval);
581 newval_type_code = TYPE_CODE (type);
583 if ((newval_type_code != TYPE_CODE_INT
584 && newval_type_code != TYPE_CODE_PTR)
585 || TYPE_LENGTH (type) != sizeof (new_regval))
586 error ("Illegal type (%s) for assignment to $%s\n",
587 TYPE_NAME (type), var->name);
589 new_regval = *(long *) VALUE_CONTENTS_RAW (newval);
591 regnum = var->name + 1;
593 switch (var->name[2])
614 sprintf (expression, "$%s=%d", page_regnum, new_regval >> 16);
615 parse_and_eval (expression);
617 sprintf (expression, "$%s=%d", regnum, new_regval & 0xffff);
618 parse_and_eval (expression);
622 _initialize_h8500_tdep ()
624 add_prefix_cmd ("memory", no_class, set_memory,
625 "set the memory model", &setmemorylist, "set memory ", 0,
628 add_cmd ("small", class_support, small_command,
629 "Set small memory model. (16 bit code, 16 bit data)", &setmemorylist);
631 add_cmd ("big", class_support, big_command,
632 "Set big memory model. (32 bit code, 32 bit data)", &setmemorylist);
634 add_cmd ("medium", class_support, medium_command,
635 "Set medium memory model. (32 bit code, 16 bit data)", &setmemorylist);
637 add_cmd ("compact", class_support, compact_command,
638 "Set compact memory model. (16 bit code, 32 bit data)", &setmemorylist);
645 return read_register (PR7_REGNUM);
652 write_register (PR7_REGNUM, v);
659 return read_register (PC_REGNUM);
663 h8500_write_pc (v, pid)
667 write_register (PC_REGNUM, v);
673 return read_register (PR6_REGNUM);
680 write_register (PR6_REGNUM, v);