1 /* Target-machine dependent code for Zilog Z8000, for GDB.
2 Copyright (C) 1992,1993 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
32 /* Return the saved PC from this frame.
34 If the frame has a memory copy of SRP_REGNUM, use that. If not,
35 just use the register SRP_REGNUM itself. */
38 frame_saved_pc (frame)
41 return (read_memory_pointer (frame->frame + (BIG ? 4 : 2)));
44 #define IS_PUSHL(x) (BIG ? ((x & 0xfff0) == 0x91e0):((x & 0xfff0) == 0x91F0))
45 #define IS_PUSHW(x) (BIG ? ((x & 0xfff0) == 0x93e0):((x & 0xfff0)==0x93f0))
46 #define IS_MOVE_FP(x) (BIG ? x == 0xa1ea : x == 0xa1fa)
47 #define IS_MOV_SP_FP(x) (BIG ? x == 0x94ea : x == 0x0d76)
48 #define IS_SUB2_SP(x) (x==0x1b87)
49 #define IS_MOVK_R5(x) (x==0x7905)
50 #define IS_SUB_SP(x) ((x & 0xffff) == 0x020f)
51 #define IS_PUSH_FP(x) (BIG ? (x == 0x93ea) : (x == 0x93fa))
53 /* work out how much local space is on the stack and
54 return the pc pointing to the first push */
57 skip_adjust (pc, size)
63 if (IS_PUSH_FP (read_memory_short (pc))
64 && IS_MOV_SP_FP (read_memory_short (pc + 2)))
66 /* This is a function with an explict frame pointer */
68 *size += 2; /* remember the frame pointer */
71 /* remember any stack adjustment */
72 if (IS_SUB_SP (read_memory_short (pc)))
74 *size += read_memory_short (pc + 2);
81 examine_frame (pc, regs, sp)
83 struct frame_saved_regs *regs;
86 int w = read_memory_short (pc);
90 for (regno = 0; regno < NUM_REGS; regno++)
91 regs->regs[regno] = 0;
93 while (IS_PUSHW (w) || IS_PUSHL (w))
95 /* work out which register is being pushed to where */
98 regs->regs[w & 0xf] = offset;
99 regs->regs[(w & 0xf) + 1] = offset + 2;
104 regs->regs[w & 0xf] = offset;
108 w = read_memory_short (pc);
116 else if (IS_SUB_SP (w))
118 /* Subtracting a value from the sp, so were in a function
119 which needs stack space for locals, but has no fp. We fake up
120 the values as if we had an fp */
121 regs->regs[FP_REGNUM] = sp;
125 /* This one didn't have an fp, we'll fake it up */
126 regs->regs[SP_REGNUM] = sp;
128 /* stack pointer contains address of next frame */
129 /* regs->regs[fp_regnum()] = fp;*/
130 regs->regs[SP_REGNUM] = sp;
135 z8k_skip_prologue (start_pc)
138 struct frame_saved_regs dummy;
140 return examine_frame (start_pc, &dummy, 0);
150 read_memory_pointer (x)
154 return read_memory_integer (ADDR_BITS_REMOVE (x), BIG ? 4 : 2);
158 frame_chain (thisframe)
161 if (thisframe->prev == 0)
163 /* This is the top of the stack, let's get the sp for real */
165 if (!inside_entry_file ((thisframe)->pc))
167 return read_memory_pointer ((thisframe)->frame);
177 /* Put here the code to store, into a struct frame_saved_regs,
178 the addresses of the saved registers of frame described by FRAME_INFO.
179 This includes special registers such as pc and fp saved in special
180 ways in the stack frame. sp is even more special:
181 the address we return for it IS the sp for the next frame. */
184 get_frame_saved_regs (frame_info, frame_saved_regs)
185 struct frame_info *frame_info;
186 struct frame_saved_regs *frame_saved_regs;
192 memset (frame_saved_regs, '\0', sizeof (*frame_saved_regs));
193 pc = get_pc_function_start (frame_info->pc);
195 /* wander down the instruction stream */
196 examine_frame (pc, frame_saved_regs, frame_info->frame);
201 z8k_push_dummy_frame ()
207 print_insn (memaddr, stream)
211 disassemble_info info;
213 GDB_INIT_DISASSEMBLE_INFO(info, stream);
217 return print_insn_z8001 ((bfd_vma) memaddr, &info);
221 return print_insn_z8002 ((bfd_vma) memaddr, &info);
225 /* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
226 is not the address of a valid instruction, the address of the next
227 instruction beyond ADDR otherwise. *PWORD1 receives the first word
228 of the instruction.*/
231 NEXT_PROLOGUE_INSN (addr, lim, pword1)
239 read_memory (addr, buf, 2);
240 *pword1 = extract_signed_integer (buf, 2);
247 /* Put here the code to store, into a struct frame_saved_regs,
248 the addresses of the saved registers of frame described by FRAME_INFO.
249 This includes special registers such as pc and fp saved in special
250 ways in the stack frame. sp is even more special:
251 the address we return for it IS the sp for the next frame.
253 We cache the result of doing this in the frame_cache_obstack, since
254 it is fairly expensive. */
257 frame_find_saved_regs (fip, fsrp)
258 struct frame_info *fip;
259 struct frame_saved_regs *fsrp;
266 memset (fsrp, 0, sizeof *fsrp);
268 pc = skip_adjust (get_pc_function_start (fip->pc), &locals);
271 adr = fip->frame - locals;
272 for (i = 0; i < 8; i++)
274 int word = read_memory_short (pc);
279 fsrp->regs[word & 0xf] = adr;
280 fsrp->regs[(word & 0xf) + 1] = adr - 2;
283 else if (IS_PUSHW (word))
285 fsrp->regs[word & 0xf] = adr;
294 fsrp->regs[PC_REGNUM] = fip->frame + 4;
295 fsrp->regs[FP_REGNUM] = fip->frame;
300 saved_pc_after_call ()
302 return addr_bits_remove
303 (read_memory_integer (read_register (SP_REGNUM), PTR_SIZE));
307 extract_return_value(type, regbuf, valbuf)
313 int len = TYPE_LENGTH(type);
315 for (b = 0; b < len; b += 2) {
319 memcpy(valbuf + b, regbuf + b, todo);
324 write_return_value(type, valbuf)
330 for (len = 0; len < TYPE_LENGTH(type); len += 2)
332 write_register_bytes(REGISTER_BYTE(len /2 + 2), valbuf + len, 2);
337 store_struct_return(addr, sp)
341 write_register(2, addr);
346 print_register_hook (regno)
349 if ((regno & 1) == 0 && regno < 16)
353 read_relative_register_raw_bytes (regno, (char *) (l + 0));
354 read_relative_register_raw_bytes (regno + 1, (char *) (l + 1));
355 printf_unfiltered ("\t");
356 printf_unfiltered ("%04x%04x", l[0], l[1]);
359 if ((regno & 3) == 0 && regno < 16)
363 read_relative_register_raw_bytes (regno, (char *) (l + 0));
364 read_relative_register_raw_bytes (regno + 1, (char *) (l + 1));
365 read_relative_register_raw_bytes (regno + 2, (char *) (l + 2));
366 read_relative_register_raw_bytes (regno + 3, (char *) (l + 3));
368 printf_unfiltered ("\t");
369 printf_unfiltered ("%04x%04x%04x%04x", l[0], l[1], l[2], l[3]);
376 read_relative_register_raw_bytes (regno, (char *) (&rval));
378 printf_unfiltered ("\n");
379 for (i = 0; i < 10; i += 2)
381 printf_unfiltered ("(sp+%d=%04x)", i, read_memory_short (rval + i));
392 struct cmd_list_element *setmemorylist;
395 z8k_set_pointer_size (newsize)
398 static int oldsize = 0;
400 if (oldsize != newsize)
402 printf_unfiltered ("pointer size set to %d bits\n", newsize);
412 _initialize_gdbtypes ();
417 segmented_command (args, from_tty)
421 z8k_set_pointer_size (32);
425 unsegmented_command (args, from_tty)
429 z8k_set_pointer_size (16);
434 set_memory (args, from_tty)
438 printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
439 help_list (setmemorylist, "set memory ", -1, gdb_stdout);
443 _initialize_z8ktdep ()
445 add_prefix_cmd ("memory", no_class, set_memory,
446 "set the memory model", &setmemorylist, "set memory ", 0,
448 add_cmd ("segmented", class_support, segmented_command,
449 "Set segmented memory model.", &setmemorylist);
450 add_cmd ("unsegmented", class_support, unsegmented_command,
451 "Set unsegmented memory model.", &setmemorylist);