1 /* Target-dependent code for Hitachi H8/500, for GDB.
2 Copyright 1993, 1994, 1995 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., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 Contributed by Steve Chamberlain
36 #define UNSIGNED_SHORT(X) ((X) & 0xffff)
38 static int code_size
= 2;
40 static int data_size
= 2;
42 /* Shape of an H8/500 frame :
48 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)
81 h8500_skip_prologue (start_pc
)
86 w
= read_memory_integer (start_pc
, 1);
90 w
= read_memory_integer (start_pc
, 1);
96 w
= read_memory_integer (start_pc
, 2);
103 h8500_addr_bits_remove (addr
)
106 return ((addr
) & 0xffffff);
109 /* Given a GDB frame, determine the address of the calling function's frame.
110 This will be used to create a new GDB frame struct, and then
111 INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
113 For us, the frame address is its stack pointer value, so we look up
114 the function prologue to determine the caller's sp value, and return it. */
117 h8500_frame_chain (thisframe
)
118 struct frame_info
*thisframe
;
120 if (!inside_entry_file (thisframe
->pc
))
121 return (read_memory_integer (FRAME_FP (thisframe
), PTR_SIZE
));
126 /* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
127 is not the address of a valid instruction, the address of the next
128 instruction beyond ADDR otherwise. *PWORD1 receives the first word
129 of the instruction. */
132 NEXT_PROLOGUE_INSN (addr
, lim
, pword1
)
139 read_memory (addr
, pword1
, 1);
140 read_memory (addr
, pword1
+ 1, 1);
146 /* Examine the prologue of a function. `ip' points to the first
147 instruction. `limit' is the limit of the prologue (e.g. the addr
148 of the first linenumber, or perhaps the program counter if we're
149 stepping through). `frame_sp' is the stack pointer value in use in
150 this frame. `fsr' is a pointer to a frame_saved_regs structure
151 into which we put info about the registers saved by this frame.
152 `fi' is a struct frame_info pointer; we fill in various fields in
153 it to reflect the offsets of the arg pointer and the locals
156 /* Return the saved PC from this frame. */
159 frame_saved_pc (frame
)
160 struct frame_info
*frame
;
162 return read_memory_integer (FRAME_FP (frame
) + 2, PTR_SIZE
);
169 struct frame_saved_regs fsr
;
170 struct frame_info
*frame
= get_current_frame ();
172 get_frame_saved_regs (frame
, &fsr
);
174 for (regnum
= 0; regnum
< 8; regnum
++)
176 if (fsr
.regs
[regnum
])
177 write_register (regnum
, read_memory_short (fsr
.regs
[regnum
]));
179 flush_cached_frames ();
184 print_register_hook (regno
)
187 if (regno
== CCR_REGNUM
)
195 read_relative_register_raw_bytes (regno
, b
);
197 printf_unfiltered ("\t");
198 printf_unfiltered ("I-%d - ", (l
& 0x80) != 0);
203 printf_unfiltered ("N-%d ", N
);
204 printf_unfiltered ("Z-%d ", Z
);
205 printf_unfiltered ("V-%d ", V
);
206 printf_unfiltered ("C-%d ", C
);
208 printf_unfiltered ("u> ");
210 printf_unfiltered ("u<= ");
212 printf_unfiltered ("u>= ");
214 printf_unfiltered ("u< ");
216 printf_unfiltered ("!= ");
218 printf_unfiltered ("== ");
220 printf_unfiltered (">= ");
222 printf_unfiltered ("< ");
223 if ((Z
| (N
^ V
)) == 0)
224 printf_unfiltered ("> ");
225 if ((Z
| (N
^ V
)) == 1)
226 printf_unfiltered ("<= ");
231 h8500_register_size (regno
)
268 h8500_register_virtual_type (regno
)
277 return builtin_type_unsigned_char
;
287 return builtin_type_unsigned_short
;
297 return builtin_type_unsigned_long
;
303 /* Put here the code to store, into a struct frame_saved_regs,
304 the addresses of the saved registers of frame described by FRAME_INFO.
305 This includes special registers such as pc and fp saved in special
306 ways in the stack frame. sp is even more special:
307 the address we return for it IS the sp for the next frame. */
310 frame_find_saved_regs (frame_info
, frame_saved_regs
)
311 struct frame_info
*frame_info
;
312 struct frame_saved_regs
*frame_saved_regs
;
315 register int regmask
;
316 register CORE_ADDR next_addr
;
317 register CORE_ADDR pc
;
318 unsigned char thebyte
;
320 memset (frame_saved_regs
, '\0', sizeof *frame_saved_regs
);
322 if ((frame_info
)->pc
>= (frame_info
)->frame
- CALL_DUMMY_LENGTH
- FP_REGNUM
* 4 - 4
323 && (frame_info
)->pc
<= (frame_info
)->frame
)
325 next_addr
= (frame_info
)->frame
;
326 pc
= (frame_info
)->frame
- CALL_DUMMY_LENGTH
- FP_REGNUM
* 4 - 4;
330 pc
= get_pc_function_start ((frame_info
)->pc
);
331 /* Verify we have a link a6 instruction next;
332 if not we lose. If we win, find the address above the saved
333 regs using the amount of storage from the link instruction.
336 thebyte
= read_memory_integer (pc
, 1);
338 next_addr
= (frame_info
)->frame
+ read_memory_integer (pc
+= 1, 2), pc
+= 2;
339 else if (0x17 == thebyte
)
340 next_addr
= (frame_info
)->frame
+ read_memory_integer (pc
+= 1, 1), pc
+= 1;
345 /* If have an add:g.waddal #-n, sp next, adjust next_addr. */
346 if ((0x0c0177777 & read_memory_integer (pc
, 2)) == 0157774)
347 next_addr
+= read_memory_integer (pc
+= 2, 4), pc
+= 4;
351 thebyte
= read_memory_integer (pc
, 1);
356 regmask
= read_memory_integer (pc
, 1);
358 for (regnum
= 0; regnum
< 8; regnum
++, regmask
>>= 1)
362 (frame_saved_regs
)->regs
[regnum
] = (next_addr
+= 2) - 2;
365 thebyte
= read_memory_integer (pc
, 1);
367 /* Maybe got a load of pushes */
368 while (thebyte
== 0xbf)
371 regnum
= read_memory_integer (pc
, 1) & 0x7;
373 (frame_saved_regs
)->regs
[regnum
] = (next_addr
+= 2) - 2;
374 thebyte
= read_memory_integer (pc
, 1);
379 /* Remember the address of the frame pointer */
380 (frame_saved_regs
)->regs
[FP_REGNUM
] = (frame_info
)->frame
;
382 /* This is where the old sp is hidden */
383 (frame_saved_regs
)->regs
[SP_REGNUM
] = (frame_info
)->frame
;
385 /* And the PC - remember the pushed FP is always two bytes long */
386 (frame_saved_regs
)->regs
[PC_REGNUM
] = (frame_info
)->frame
+ 2;
390 saved_pc_after_call ()
393 int a
= read_register (SP_REGNUM
);
395 x
= read_memory_integer (a
, code_size
);
398 /* Stick current code segement onto top */
400 x
|= read_register (SEG_C_REGNUM
) << 16;
407 h8500_set_pointer_size (newsize
)
410 static int oldsize
= 0;
412 if (oldsize
!= newsize
)
414 printf_unfiltered ("pointer size set to %d bits\n", newsize
);
424 _initialize_gdbtypes ();
431 h8500_set_pointer_size (32);
439 h8500_set_pointer_size (32);
447 h8500_set_pointer_size (32);
455 h8500_set_pointer_size (16);
460 static struct cmd_list_element
*setmemorylist
;
463 set_memory (args
, from_tty
)
467 printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
468 help_list (setmemorylist
, "set memory ", -1, gdb_stdout
);
471 /* See if variable name is ppc or pr[0-7] */
474 h8500_is_trapped_internalvar (name
)
480 if (strcmp (name
+ 1, "pc") == 0)
486 && name
[3] == '\000')
493 h8500_value_of_trapped_internalvar (var
)
494 struct internalvar
*var
;
497 unsigned char regbuf
[4];
498 int page_regnum
, regnum
;
500 regnum
= var
->name
[2] == 'c' ? PC_REGNUM
: var
->name
[2] - '0';
502 switch (var
->name
[2])
505 page_regnum
= SEG_C_REGNUM
;
511 page_regnum
= SEG_D_REGNUM
;
515 page_regnum
= SEG_E_REGNUM
;
519 page_regnum
= SEG_T_REGNUM
;
523 get_saved_register (regbuf
, NULL
, NULL
, selected_frame
, page_regnum
, NULL
);
524 regval
= regbuf
[0] << 16;
526 get_saved_register (regbuf
, NULL
, NULL
, selected_frame
, regnum
, NULL
);
527 regval
|= regbuf
[0] << 8 | regbuf
[1]; /* XXX host/target byte order */
529 free (var
->value
); /* Free up old value */
531 var
->value
= value_from_longest (builtin_type_unsigned_long
, regval
);
532 release_value (var
->value
); /* Unchain new value */
534 VALUE_LVAL (var
->value
) = lval_internalvar
;
535 VALUE_INTERNALVAR (var
->value
) = var
;
540 h8500_set_trapped_internalvar (var
, newval
, bitpos
, bitsize
, offset
)
541 struct internalvar
*var
;
542 int offset
, bitpos
, bitsize
;
545 char *page_regnum
, *regnum
;
546 char expression
[100];
549 enum type_code newval_type_code
;
551 type
= check_typedef (VALUE_TYPE (newval
));
552 newval_type_code
= TYPE_CODE (type
);
554 if ((newval_type_code
!= TYPE_CODE_INT
555 && newval_type_code
!= TYPE_CODE_PTR
)
556 || TYPE_LENGTH (type
) != sizeof (new_regval
))
557 error ("Illegal type (%s) for assignment to $%s\n",
558 TYPE_NAME (VALUE_TYPE (newval
)), var
->name
);
560 new_regval
= *(long *) VALUE_CONTENTS_RAW (newval
);
562 regnum
= var
->name
+ 1;
564 switch (var
->name
[2])
585 sprintf (expression
, "$%s=%d", page_regnum
, new_regval
>> 16);
586 parse_and_eval (expression
);
588 sprintf (expression
, "$%s=%d", regnum
, new_regval
& 0xffff);
589 parse_and_eval (expression
);
595 return read_register (PR7_REGNUM
);
602 write_register (PR7_REGNUM
, v
);
609 return read_register (PC_REGNUM
);
613 h8500_write_pc (v
, pid
)
617 write_register (PC_REGNUM
, v
);
623 return read_register (PR6_REGNUM
);
630 write_register (PR6_REGNUM
, v
);
634 _initialize_h8500_tdep ()
636 tm_print_insn
= print_insn_h8500
;
638 add_prefix_cmd ("memory", no_class
, set_memory
,
639 "set the memory model", &setmemorylist
, "set memory ", 0,
642 add_cmd ("small", class_support
, small_command
,
643 "Set small memory model. (16 bit code, 16 bit data)", &setmemorylist
);
645 add_cmd ("big", class_support
, big_command
,
646 "Set big memory model. (32 bit code, 32 bit data)", &setmemorylist
);
648 add_cmd ("medium", class_support
, medium_command
,
649 "Set medium memory model. (32 bit code, 16 bit data)", &setmemorylist
);
651 add_cmd ("compact", class_support
, compact_command
,
652 "Set compact memory model. (16 bit code, 32 bit data)", &setmemorylist
);