]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/s12z-tdep.c
GDB: New target s12z
[thirdparty/binutils-gdb.git] / gdb / s12z-tdep.c
CommitLineData
51d21d60
JD
1/* Target-dependent code for the S12Z, for the GDB.
2 Copyright (C) 2018 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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 3 of the License, or
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19/* Much of this file is shamelessly copied from or1k-tdep.c and others. */
20
21#include "defs.h"
22
23#include "arch-utils.h"
24#include "dwarf2-frame.h"
25#include "errors.h"
26#include "frame-unwind.h"
27#include "gdbcore.h"
28#include "gdbcmd.h"
29#include "inferior.h"
30#include "opcode/s12z.h"
31#include "trad-frame.h"
32#include "remote.h"
33
34/* Two of the registers included in S12Z_N_REGISTERS are
35 the CCH and CCL "registers" which are just views into
36 the CCW register. */
37#define N_PHYSICAL_REGISTERS (S12Z_N_REGISTERS - 2)
38
39
40/* A permutation of all the physical registers. */
41static const int reg_perm[N_PHYSICAL_REGISTERS] =
42 {
43 REG_D0,
44 REG_D1,
45 REG_D2,
46 REG_D3,
47 REG_D4,
48 REG_D5,
49 REG_D6,
50 REG_D7,
51 REG_X,
52 REG_Y,
53 REG_S,
54 REG_P,
55 REG_CCW
56 };
57
58
59/* Return the name of the register REGNUM. */
60static const char *
61s12z_register_name (struct gdbarch *gdbarch, int regnum)
62{
63 /* Registers is declared in opcodes/s12z.h. */
64 return registers[reg_perm[regnum]].name;
65}
66
67static CORE_ADDR
68s12z_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
69{
70 CORE_ADDR start_pc = 0;
71
72 if (find_pc_partial_function (pc, NULL, &start_pc, NULL))
73 {
74 CORE_ADDR prologue_end = skip_prologue_using_sal (gdbarch, pc);
75
76 if (prologue_end != 0)
77 return prologue_end;
78 }
79
80 warning (_("%s Failed to find end of prologue PC = %08x\n"),
81 __FUNCTION__, (unsigned int) pc);
82
83 return pc;
84}
85
86/* Implement the unwind_pc gdbarch method. */
87static CORE_ADDR
88s12z_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
89{
90 return frame_unwind_register_unsigned (next_frame, REG_P);
91}
92
93/* Implement the unwind_sp gdbarch method. */
94static CORE_ADDR
95s12z_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
96{
97 return frame_unwind_register_unsigned (next_frame, REG_S);
98}
99
100static struct type *
101s12z_register_type (struct gdbarch *gdbarch, int reg_nr)
102{
103 switch (registers[reg_perm[reg_nr]].bytes)
104 {
105 case 1:
106 return builtin_type (gdbarch)->builtin_uint8;
107 case 2:
108 return builtin_type (gdbarch)->builtin_uint16;
109 case 3:
110 return builtin_type (gdbarch)->builtin_uint24;
111 case 4:
112 return builtin_type (gdbarch)->builtin_uint32;
113 default:
114 return builtin_type (gdbarch)->builtin_uint32;
115 }
116 return builtin_type (gdbarch)->builtin_int0;
117}
118
119
120static int
121s12z_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int num)
122{
123 switch (num)
124 {
125 case 15: return REG_S;
126 case 7: return REG_X;
127 case 8: return REG_Y;
128 case 42: return REG_D0;
129 case 43: return REG_D1;
130 case 44: return REG_D2;
131 case 45: return REG_D3;
132 case 46: return REG_D4;
133 case 47: return REG_D5;
134 case 48: return REG_D6;
135 case 49: return REG_D7;
136 }
137 return -1;
138}
139
140
141/* Support functions for frame handling. */
142
143/* Copy of gdb_buffered_insn_length_fprintf from disasm.c. */
144
145static int ATTRIBUTE_PRINTF (2, 3)
146s12z_fprintf_disasm (void *stream, const char *format, ...)
147{
148 return 0;
149}
150
151struct disassemble_info
152s12z_disassemble_info (struct gdbarch *gdbarch)
153{
154 struct disassemble_info di;
155 init_disassemble_info (&di, &null_stream, s12z_fprintf_disasm);
156 di.arch = gdbarch_bfd_arch_info (gdbarch)->arch;
157 di.mach = gdbarch_bfd_arch_info (gdbarch)->mach;
158 di.endian = gdbarch_byte_order (gdbarch);
159 di.read_memory_func = [](bfd_vma memaddr, gdb_byte *myaddr,
160 unsigned int len, struct disassemble_info *info)
161 {
162 return target_read_code (memaddr, myaddr, len);
163 };
164 return di;
165}
166
167/* Initialize a prologue cache. */
168
169static struct trad_frame_cache *
170s12z_frame_cache (struct frame_info *this_frame, void **prologue_cache)
171{
172 struct trad_frame_cache *info;
173
174 CORE_ADDR this_sp;
175 CORE_ADDR this_sp_for_id;
176
177 CORE_ADDR start_addr;
178 CORE_ADDR end_addr;
179
180 /* Nothing to do if we already have this info. */
181 if (NULL != *prologue_cache)
182 return (struct trad_frame_cache *) *prologue_cache;
183
184 /* Get a new prologue cache and populate it with default values. */
185 info = trad_frame_cache_zalloc (this_frame);
186 *prologue_cache = info;
187
188 /* Find the start address of this function (which is a normal frame, even
189 if the next frame is the sentinel frame) and the end of its prologue. */
190 CORE_ADDR this_pc = get_frame_pc (this_frame);
191 struct gdbarch *gdbarch = get_frame_arch (this_frame);
192 find_pc_partial_function (this_pc, NULL, &start_addr, NULL);
193
194 /* Get the stack pointer if we have one (if there's no process executing
195 yet we won't have a frame. */
196 this_sp = (NULL == this_frame) ? 0 :
197 get_frame_register_unsigned (this_frame, REG_S);
198
199 /* Return early if GDB couldn't find the function. */
200 if (start_addr == 0)
201 {
202 warning (_("Couldn't find function including address %s SP is %s\n"),
203 paddress (gdbarch, this_pc),
204 paddress (gdbarch, this_sp));
205
206 /* JPB: 28-Apr-11. This is a temporary patch, to get round GDB
207 crashing right at the beginning. Build the frame ID as best we
208 can. */
209 trad_frame_set_id (info, frame_id_build (this_sp, this_pc));
210
211 return info;
212 }
213
214 /* The default frame base of this frame (for ID purposes only - frame
215 base is an overloaded term) is its stack pointer. For now we use the
216 value of the SP register in this frame. However if the PC is in the
217 prologue of this frame, before the SP has been set up, then the value
218 will actually be that of the prev frame, and we'll need to adjust it
219 later. */
220 trad_frame_set_this_base (info, this_sp);
221 this_sp_for_id = this_sp;
222
223 /* We should only examine code that is in the prologue. This is all code
224 up to (but not including) end_addr. We should only populate the cache
225 while the address is up to (but not including) the PC or end_addr,
226 whichever is first. */
227 end_addr = s12z_skip_prologue (gdbarch, start_addr);
228
229 /* All the following analysis only occurs if we are in the prologue and
230 have executed the code. Check we have a sane prologue size, and if
231 zero we are frameless and can give up here. */
232 if (end_addr < start_addr)
233 error (_("end addr %s is less than start addr %s"),
234 paddress (gdbarch, end_addr), paddress (gdbarch, start_addr));
235
236 CORE_ADDR addr = start_addr; /* Where we have got to? */
237 int frame_size = 0;
238 int saved_frame_size = 0;
239 while (this_pc > addr)
240 {
241 struct disassemble_info di = s12z_disassemble_info (gdbarch);
242
243 /* No instruction can be more than 11 bytes long, I think. */
244 gdb_byte buf[11];
245
246 int nb = print_insn_s12z (addr, &di);
247 gdb_assert (nb <= 11);
248
249 if (0 != target_read_code (addr, buf, nb))
250 memory_error (TARGET_XFER_E_IO, addr);
251
252 if (buf[0] == 0x05) /* RTS */
253 {
254 frame_size = saved_frame_size;
255 }
256 /* Conditional Branches. If any of these are encountered, then
257 it is likely that a RTS will terminate it. So we need to save
258 the frame size so it can be restored. */
259 else if ( (buf[0] == 0x02) /* BRSET */
260 || (buf[0] == 0x0B) /* DBcc / TBcc */
261 || (buf[0] == 0x03)) /* BRCLR */
262 {
263 saved_frame_size = frame_size;
264 }
265 else if (buf[0] == 0x04) /* PUL/ PSH .. */
266 {
267 bool pull = buf[1] & 0x80;
268 int stack_adjustment = 0;
269 if (buf[1] & 0x40)
270 {
271 if (buf[1] & 0x01) stack_adjustment += 3; /* Y */
272 if (buf[1] & 0x02) stack_adjustment += 3; /* X */
273 if (buf[1] & 0x04) stack_adjustment += 4; /* D7 */
274 if (buf[1] & 0x08) stack_adjustment += 4; /* D6 */
275 if (buf[1] & 0x10) stack_adjustment += 2; /* D5 */
276 if (buf[1] & 0x20) stack_adjustment += 2; /* D4 */
277 }
278 else
279 {
280 if (buf[1] & 0x01) stack_adjustment += 2; /* D3 */
281 if (buf[1] & 0x02) stack_adjustment += 2; /* D2 */
282 if (buf[1] & 0x04) stack_adjustment += 1; /* D1 */
283 if (buf[1] & 0x08) stack_adjustment += 1; /* D0 */
284 if (buf[1] & 0x10) stack_adjustment += 1; /* CCL */
285 if (buf[1] & 0x20) stack_adjustment += 1; /* CCH */
286 }
287
288 if (!pull)
289 stack_adjustment = -stack_adjustment;
290 frame_size -= stack_adjustment;
291 }
292 else if (buf[0] == 0x0a) /* LEA S, (xxx, S) */
293 {
294 if (0x06 == (buf[1] >> 4))
295 {
296 int simm = (signed char) (buf[1] & 0x0F);
297 frame_size -= simm;
298 }
299 }
300 else if (buf[0] == 0x1a) /* LEA S, (S, xxxx) */
301 {
302 int simm = (signed char) buf[1];
303 frame_size -= simm;
304 }
305 addr += nb;
306 }
307
308 /* If the PC has not actually got to this point, then the frame
309 base will be wrong, and we adjust it. */
310 if (this_pc < addr)
311 {
312 /* Only do if executing. */
313 if (0 != this_sp)
314 {
315 this_sp_for_id = this_sp - frame_size;
316 trad_frame_set_this_base (info, this_sp_for_id);
317 }
318 trad_frame_set_reg_value (info, REG_S, this_sp + 3);
319 trad_frame_set_reg_addr (info, REG_P, this_sp);
320 }
321 else
322 {
323 /* The stack pointer of the prev frame is frame_size greater
324 than the stack pointer of this frame plus one address
325 size (caused by the JSR or BSR). */
326 trad_frame_set_reg_value (info, REG_S,
327 this_sp + frame_size + 3);
328 trad_frame_set_reg_addr (info, REG_P, this_sp + frame_size);
329 }
330
331
332 /* Build the frame ID. */
333 trad_frame_set_id (info, frame_id_build (this_sp_for_id, start_addr));
334
335 return info;
336}
337
338/* Implement the this_id function for the stub unwinder. */
339static void
340s12z_frame_this_id (struct frame_info *this_frame,
341 void **prologue_cache, struct frame_id *this_id)
342{
343 struct trad_frame_cache *info = s12z_frame_cache (this_frame,
344 prologue_cache);
345
346 trad_frame_get_id (info, this_id);
347}
348
349
350/* Implement the prev_register function for the stub unwinder. */
351static struct value *
352s12z_frame_prev_register (struct frame_info *this_frame,
353 void **prologue_cache, int regnum)
354{
355 struct trad_frame_cache *info = s12z_frame_cache (this_frame,
356 prologue_cache);
357
358 return trad_frame_get_register (info, this_frame, regnum);
359}
360
361/* Data structures for the normal prologue-analysis-based unwinder. */
362static const struct frame_unwind s12z_frame_unwind = {
363 NORMAL_FRAME,
364 default_frame_unwind_stop_reason,
365 s12z_frame_this_id,
366 s12z_frame_prev_register,
367 NULL,
368 default_frame_sniffer,
369 NULL,
370};
371
372
373constexpr gdb_byte s12z_break_insn[] = {0x00};
374
375typedef BP_MANIPULATION (s12z_break_insn) s12z_breakpoint;
376
377struct gdbarch_tdep
378{
379};
380
381/* A vector of human readable characters representing the
382 bits in the CCW register. Unused bits are represented as '-'.
383 Lowest significant bit comes first. */
384static const char ccw_bits[] =
385 {
386 'C', /* Carry */
387 'V', /* Two's Complement Overflow */
388 'Z', /* Zero */
389 'N', /* Negative */
390 'I', /* Interrupt */
391 '-',
392 'X', /* Non-Maskable Interrupt */
393 'S', /* STOP Disable */
394 '0', /* Interrupt priority level */
395 '0', /* ditto */
396 '0', /* ditto */
397 '-',
398 '-',
399 '-',
400 '-',
401 'U' /* User/Supervisor State. */
402 };
403
404/* Print a human readable representation of the CCW register.
405 For example: "u----000SX-Inzvc" corresponds to the value
406 0xD0. */
407static void
408s12z_print_ccw_info (struct gdbarch *gdbarch,
409 struct ui_file *file,
410 struct frame_info *frame,
411 int reg)
412{
413 struct value *v = value_of_register (reg, frame);
414 const char *name = gdbarch_register_name (gdbarch, reg);
415 uint32_t ccw = value_as_long (v);
416 fputs_filtered (name, file);
417 size_t len = strlen (name);
418 const int stop_1 = 15;
419 const int stop_2 = 17;
420 for (int i = 0; i < stop_1 - len; ++i)
421 fputc_filtered (' ', file);
422 fprintf_filtered (file, "0x%04x", ccw);
423 for (int i = 0; i < stop_2 - len; ++i)
424 fputc_filtered (' ', file);
425 for (int b = 15; b >= 0; --b)
426 {
427 if (ccw & (0x1u << b))
428 {
429 if (ccw_bits[b] == 0)
430 fputc_filtered ('1', file);
431 else
432 fputc_filtered (ccw_bits[b], file);
433 }
434 else
435 fputc_filtered (tolower (ccw_bits[b]), file);
436 }
437 fputc_filtered ('\n', file);
438}
439
440static void
441s12z_print_registers_info (struct gdbarch *gdbarch,
442 struct ui_file *file,
443 struct frame_info *frame,
444 int regnum, int print_all)
445{
446 const int numregs = (gdbarch_num_regs (gdbarch)
447 + gdbarch_num_pseudo_regs (gdbarch));
448
449 if (regnum == -1)
450 {
451 for (int reg = 0; reg < numregs; reg++)
452 {
453 if (REG_CCW == reg_perm[reg])
454 {
455 s12z_print_ccw_info (gdbarch, file, frame, reg);
456 continue;
457 }
458 default_print_registers_info (gdbarch, file, frame, reg, print_all);
459 }
460 }
461 else if (REG_CCW == reg_perm[regnum])
462 s12z_print_ccw_info (gdbarch, file, frame, regnum);
463 else
464 default_print_registers_info (gdbarch, file, frame, regnum, print_all);
465}
466
467\f
468
469static enum return_value_convention
470s12z_return_value (struct gdbarch *gdbarch, struct value *function,
471 struct type *type, struct regcache *regcache,
472 gdb_byte *readbuf, const gdb_byte *writebuf)
473{
474 return RETURN_VALUE_REGISTER_CONVENTION;
475}
476
477
478static void
479show_bdccsr_command (const char *args, int from_tty)
480{
481 struct string_file output;
482 target_rcmd ("bdccsr", &output);
483
484 printf_unfiltered ("The current BDCCSR value is %s\n", output.string().c_str());
485}
486
487static struct gdbarch *
488s12z_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
489{
490 struct gdbarch_tdep *tdep = XNEW (struct gdbarch_tdep);
491 struct gdbarch *gdbarch = gdbarch_alloc (&info, tdep);
492
493 add_cmd ("bdccsr", class_support, show_bdccsr_command,
494 _("Show the current value of the microcontroller's BDCCSR."),
495 &maintenanceinfolist);
496
497 /* Target data types. */
498 set_gdbarch_short_bit (gdbarch, 16);
499 set_gdbarch_int_bit (gdbarch, 16);
500 set_gdbarch_long_bit (gdbarch, 32);
501 set_gdbarch_long_long_bit (gdbarch, 32);
502 set_gdbarch_ptr_bit (gdbarch, 24);
503 set_gdbarch_addr_bit (gdbarch, 24);
504 set_gdbarch_char_signed (gdbarch, 0);
505
506 set_gdbarch_ps_regnum (gdbarch, REG_CCW);
507 set_gdbarch_pc_regnum (gdbarch, REG_P);
508 set_gdbarch_sp_regnum (gdbarch, REG_S);
509
510
511 set_gdbarch_print_registers_info (gdbarch, s12z_print_registers_info);
512
513 set_gdbarch_breakpoint_kind_from_pc (gdbarch,
514 s12z_breakpoint::kind_from_pc);
515 set_gdbarch_sw_breakpoint_from_kind (gdbarch,
516 s12z_breakpoint::bp_from_kind);
517
518 set_gdbarch_num_regs (gdbarch, N_PHYSICAL_REGISTERS);
519 set_gdbarch_register_name (gdbarch, s12z_register_name);
520 set_gdbarch_skip_prologue (gdbarch, s12z_skip_prologue);
521 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
522 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, s12z_dwarf_reg_to_regnum);
523
524 set_gdbarch_register_type (gdbarch, s12z_register_type);
525
526 /* Functions to access frame data. */
527 set_gdbarch_unwind_pc (gdbarch, s12z_unwind_pc);
528 set_gdbarch_unwind_sp (gdbarch, s12z_unwind_sp);
529
530 frame_unwind_append_unwinder (gdbarch, &s12z_frame_unwind);
531 /* Currently, the only known producer for this archtecture, produces buggy
532 dwarf CFI. So don't append a dwarf unwinder until the situation is
533 better understood. */
534
535 set_gdbarch_return_value (gdbarch, s12z_return_value);
536
537 return gdbarch;
538}
539
540void
541_initialize_s12z_tdep (void)
542{
543 gdbarch_register (bfd_arch_s12z, s12z_gdbarch_init, NULL);
544}