* gdb.base/help.exp: Remove testing of individual command help text,
[deliverable/binutils-gdb.git] / gdb / h8300-tdep.c
CommitLineData
f0bdd87d
YS
1/* Target-machine dependent code for Renesas H8/300, for GDB.
2
0b302171
JB
3 Copyright (C) 1988, 1990-1996, 1998-2003, 2005, 2007-2012 Free
4 Software Foundation, Inc.
f0bdd87d
YS
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
f0bdd87d
YS
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
f0bdd87d
YS
20
21/*
22 Contributed by Steve Chamberlain
23 sac@cygnus.com
24 */
25
26#include "defs.h"
27#include "value.h"
f0bdd87d
YS
28#include "arch-utils.h"
29#include "regcache.h"
30#include "gdbcore.h"
31#include "objfiles.h"
f0bdd87d
YS
32#include "gdb_assert.h"
33#include "dis-asm.h"
34#include "dwarf2-frame.h"
f0bdd87d
YS
35#include "frame-base.h"
36#include "frame-unwind.h"
37
f0bdd87d
YS
38enum gdb_regnum
39{
40 E_R0_REGNUM, E_ER0_REGNUM = E_R0_REGNUM, E_ARG0_REGNUM = E_R0_REGNUM,
41 E_RET0_REGNUM = E_R0_REGNUM,
42 E_R1_REGNUM, E_ER1_REGNUM = E_R1_REGNUM, E_RET1_REGNUM = E_R1_REGNUM,
43 E_R2_REGNUM, E_ER2_REGNUM = E_R2_REGNUM, E_ARGLAST_REGNUM = E_R2_REGNUM,
44 E_R3_REGNUM, E_ER3_REGNUM = E_R3_REGNUM,
45 E_R4_REGNUM, E_ER4_REGNUM = E_R4_REGNUM,
46 E_R5_REGNUM, E_ER5_REGNUM = E_R5_REGNUM,
47 E_R6_REGNUM, E_ER6_REGNUM = E_R6_REGNUM, E_FP_REGNUM = E_R6_REGNUM,
48 E_SP_REGNUM,
49 E_CCR_REGNUM,
50 E_PC_REGNUM,
51 E_CYCLES_REGNUM,
52 E_TICK_REGNUM, E_EXR_REGNUM = E_TICK_REGNUM,
53 E_INST_REGNUM, E_TICKS_REGNUM = E_INST_REGNUM,
54 E_INSTS_REGNUM,
55 E_MACH_REGNUM,
56 E_MACL_REGNUM,
57 E_SBR_REGNUM,
58 E_VBR_REGNUM
59};
60
61#define H8300_MAX_NUM_REGS 18
62
be8626e0
MD
63#define E_PSEUDO_CCR_REGNUM(gdbarch) (gdbarch_num_regs (gdbarch))
64#define E_PSEUDO_EXR_REGNUM(gdbarch) (gdbarch_num_regs (gdbarch)+1)
f0bdd87d 65
862ba188
CV
66struct h8300_frame_cache
67{
68 /* Base address. */
69 CORE_ADDR base;
70 CORE_ADDR sp_offset;
71 CORE_ADDR pc;
72
1777feb0 73 /* Flag showing that a frame has been created in the prologue code. */
862ba188 74 int uses_fp;
f0bdd87d 75
862ba188
CV
76 /* Saved registers. */
77 CORE_ADDR saved_regs[H8300_MAX_NUM_REGS];
78 CORE_ADDR saved_sp;
79};
80
81enum
82{
83 h8300_reg_size = 2,
84 h8300h_reg_size = 4,
85 h8300_max_reg_size = 4,
86};
87
88static int is_h8300hmode (struct gdbarch *gdbarch);
89static int is_h8300smode (struct gdbarch *gdbarch);
90static int is_h8300sxmode (struct gdbarch *gdbarch);
91static int is_h8300_normal_mode (struct gdbarch *gdbarch);
92
be8626e0
MD
93#define BINWORD(gdbarch) ((is_h8300hmode (gdbarch) \
94 && !is_h8300_normal_mode (gdbarch)) \
862ba188
CV
95 ? h8300h_reg_size : h8300_reg_size)
96
97static CORE_ADDR
98h8300_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
99{
100 return frame_unwind_register_unsigned (next_frame, E_PC_REGNUM);
101}
102
103static CORE_ADDR
104h8300_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
105{
106 return frame_unwind_register_unsigned (next_frame, E_SP_REGNUM);
107}
108
109static struct frame_id
94afd7a6 110h8300_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
862ba188 111{
94afd7a6
UW
112 CORE_ADDR sp = get_frame_register_unsigned (this_frame, E_SP_REGNUM);
113 return frame_id_build (sp, get_frame_pc (this_frame));
862ba188
CV
114}
115
116/* Normal frames. */
117
118/* Allocate and initialize a frame cache. */
119
120static void
be8626e0
MD
121h8300_init_frame_cache (struct gdbarch *gdbarch,
122 struct h8300_frame_cache *cache)
862ba188
CV
123{
124 int i;
125
126 /* Base address. */
127 cache->base = 0;
128 cache->sp_offset = 0;
129 cache->pc = 0;
130
131 /* Frameless until proven otherwise. */
132 cache->uses_fp = 0;
133
134 /* Saved registers. We initialize these to -1 since zero is a valid
135 offset (that's where %fp is supposed to be stored). */
be8626e0 136 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
862ba188
CV
137 cache->saved_regs[i] = -1;
138}
139
140#define IS_MOVB_RnRm(x) (((x) & 0xff88) == 0x0c88)
141#define IS_MOVW_RnRm(x) (((x) & 0xff88) == 0x0d00)
142#define IS_MOVL_RnRm(x) (((x) & 0xff88) == 0x0f80)
143#define IS_MOVB_Rn16_SP(x) (((x) & 0xfff0) == 0x6ee0)
144#define IS_MOVB_EXT(x) ((x) == 0x7860)
145#define IS_MOVB_Rn24_SP(x) (((x) & 0xfff0) == 0x6aa0)
146#define IS_MOVW_Rn16_SP(x) (((x) & 0xfff0) == 0x6fe0)
147#define IS_MOVW_EXT(x) ((x) == 0x78e0)
148#define IS_MOVW_Rn24_SP(x) (((x) & 0xfff0) == 0x6ba0)
1777feb0 149/* Same instructions as mov.w, just prefixed with 0x0100. */
862ba188
CV
150#define IS_MOVL_PRE(x) ((x) == 0x0100)
151#define IS_MOVL_Rn16_SP(x) (((x) & 0xfff0) == 0x6fe0)
152#define IS_MOVL_EXT(x) ((x) == 0x78e0)
153#define IS_MOVL_Rn24_SP(x) (((x) & 0xfff0) == 0x6ba0)
154
155#define IS_PUSHFP_MOVESPFP(x) ((x) == 0x6df60d76)
156#define IS_PUSH_FP(x) ((x) == 0x01006df6)
157#define IS_MOV_SP_FP(x) ((x) == 0x0ff6)
158#define IS_SUB2_SP(x) ((x) == 0x1b87)
159#define IS_SUB4_SP(x) ((x) == 0x1b97)
160#define IS_ADD_IMM_SP(x) ((x) == 0x7a1f)
161#define IS_SUB_IMM_SP(x) ((x) == 0x7a3f)
162#define IS_SUBL4_SP(x) ((x) == 0x1acf)
163#define IS_MOV_IMM_Rn(x) (((x) & 0xfff0) == 0x7905)
164#define IS_SUB_RnSP(x) (((x) & 0xff0f) == 0x1907)
165#define IS_ADD_RnSP(x) (((x) & 0xff0f) == 0x0907)
166#define IS_PUSH(x) (((x) & 0xfff0) == 0x6df0)
f0bdd87d
YS
167
168/* If the instruction at PC is an argument register spill, return its
169 length. Otherwise, return zero.
170
171 An argument register spill is an instruction that moves an argument
172 from the register in which it was passed to the stack slot in which
173 it really lives. It is a byte, word, or longword move from an
174 argument register to a negative offset from the frame pointer.
175
176 CV, 2003-06-16: Or, in optimized code or when the `register' qualifier
177 is used, it could be a byte, word or long move to registers r3-r5. */
178
179static int
e17a4113 180h8300_is_argument_spill (struct gdbarch *gdbarch, CORE_ADDR pc)
f0bdd87d 181{
e17a4113
UW
182 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
183 int w = read_memory_unsigned_integer (pc, 2, byte_order);
f0bdd87d 184
862ba188 185 if ((IS_MOVB_RnRm (w) || IS_MOVW_RnRm (w) || IS_MOVL_RnRm (w))
f0bdd87d
YS
186 && (w & 0x70) <= 0x20 /* Rs is R0, R1 or R2 */
187 && (w & 0x7) >= 0x3 && (w & 0x7) <= 0x5) /* Rd is R3, R4 or R5 */
188 return 2;
189
862ba188 190 if (IS_MOVB_Rn16_SP (w)
f0bdd87d
YS
191 && 8 <= (w & 0xf) && (w & 0xf) <= 10) /* Rs is R0L, R1L, or R2L */
192 {
e17a4113
UW
193 /* ... and d:16 is negative. */
194 if (read_memory_integer (pc + 2, 2, byte_order) < 0)
f0bdd87d
YS
195 return 4;
196 }
862ba188 197 else if (IS_MOVB_EXT (w))
f0bdd87d 198 {
e17a4113
UW
199 if (IS_MOVB_Rn24_SP (read_memory_unsigned_integer (pc + 2,
200 2, byte_order)))
f0bdd87d 201 {
e17a4113 202 LONGEST disp = read_memory_integer (pc + 4, 4, byte_order);
f0bdd87d
YS
203
204 /* ... and d:24 is negative. */
205 if (disp < 0 && disp > 0xffffff)
206 return 8;
207 }
208 }
862ba188 209 else if (IS_MOVW_Rn16_SP (w)
f0bdd87d
YS
210 && (w & 0xf) <= 2) /* Rs is R0, R1, or R2 */
211 {
f0bdd87d 212 /* ... and d:16 is negative. */
e17a4113 213 if (read_memory_integer (pc + 2, 2, byte_order) < 0)
f0bdd87d
YS
214 return 4;
215 }
862ba188 216 else if (IS_MOVW_EXT (w))
f0bdd87d 217 {
e17a4113
UW
218 if (IS_MOVW_Rn24_SP (read_memory_unsigned_integer (pc + 2,
219 2, byte_order)))
f0bdd87d 220 {
e17a4113 221 LONGEST disp = read_memory_integer (pc + 4, 4, byte_order);
f0bdd87d
YS
222
223 /* ... and d:24 is negative. */
224 if (disp < 0 && disp > 0xffffff)
225 return 8;
226 }
227 }
862ba188 228 else if (IS_MOVL_PRE (w))
f0bdd87d 229 {
e17a4113 230 int w2 = read_memory_integer (pc + 2, 2, byte_order);
f0bdd87d 231
862ba188 232 if (IS_MOVL_Rn16_SP (w2)
f0bdd87d
YS
233 && (w2 & 0xf) <= 2) /* Rs is ER0, ER1, or ER2 */
234 {
f0bdd87d 235 /* ... and d:16 is negative. */
e17a4113 236 if (read_memory_integer (pc + 4, 2, byte_order) < 0)
f0bdd87d
YS
237 return 6;
238 }
862ba188 239 else if (IS_MOVL_EXT (w2))
f0bdd87d 240 {
e17a4113 241 int w3 = read_memory_integer (pc + 4, 2, byte_order);
f0bdd87d 242
e17a4113 243 if (IS_MOVL_Rn24_SP (read_memory_integer (pc + 4, 2, byte_order)))
f0bdd87d 244 {
e17a4113 245 LONGEST disp = read_memory_integer (pc + 6, 4, byte_order);
f0bdd87d
YS
246
247 /* ... and d:24 is negative. */
248 if (disp < 0 && disp > 0xffffff)
249 return 10;
250 }
251 }
252 }
253
254 return 0;
255}
256
f0bdd87d
YS
257/* Do a full analysis of the prologue at PC and update CACHE
258 accordingly. Bail out early if CURRENT_PC is reached. Return the
259 address where the analysis stopped.
260
261 We handle all cases that can be generated by gcc.
262
263 For allocating a stack frame:
264
265 mov.w r6,@-sp
266 mov.w sp,r6
267 mov.w #-n,rN
268 add.w rN,sp
269
270 mov.w r6,@-sp
271 mov.w sp,r6
272 subs #2,sp
273 (repeat)
274
275 mov.l er6,@-sp
276 mov.l sp,er6
277 add.l #-n,sp
278
279 mov.w r6,@-sp
280 mov.w sp,r6
281 subs #4,sp
282 (repeat)
283
284 For saving registers:
285
286 mov.w rN,@-sp
287 mov.l erN,@-sp
288 stm.l reglist,@-sp
289
f0bdd87d
YS
290 */
291
292static CORE_ADDR
e17a4113
UW
293h8300_analyze_prologue (struct gdbarch *gdbarch,
294 CORE_ADDR pc, CORE_ADDR current_pc,
f0bdd87d
YS
295 struct h8300_frame_cache *cache)
296{
e17a4113 297 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d 298 unsigned int op;
862ba188
CV
299 int regno, i, spill_size;
300
301 cache->sp_offset = 0;
f0bdd87d 302
f0bdd87d
YS
303 if (pc >= current_pc)
304 return current_pc;
305
e17a4113 306 op = read_memory_unsigned_integer (pc, 4, byte_order);
862ba188
CV
307
308 if (IS_PUSHFP_MOVESPFP (op))
309 {
310 cache->saved_regs[E_FP_REGNUM] = 0;
311 cache->uses_fp = 1;
312 pc += 4;
313 }
314 else if (IS_PUSH_FP (op))
315 {
316 cache->saved_regs[E_FP_REGNUM] = 0;
317 pc += 4;
318 if (pc >= current_pc)
319 return current_pc;
e17a4113 320 op = read_memory_unsigned_integer (pc, 2, byte_order);
862ba188
CV
321 if (IS_MOV_SP_FP (op))
322 {
323 cache->uses_fp = 1;
324 pc += 2;
325 }
326 }
327
328 while (pc < current_pc)
329 {
e17a4113 330 op = read_memory_unsigned_integer (pc, 2, byte_order);
862ba188
CV
331 if (IS_SUB2_SP (op))
332 {
333 cache->sp_offset += 2;
334 pc += 2;
335 }
336 else if (IS_SUB4_SP (op))
337 {
338 cache->sp_offset += 4;
339 pc += 2;
340 }
341 else if (IS_ADD_IMM_SP (op))
342 {
e17a4113 343 cache->sp_offset += -read_memory_integer (pc + 2, 2, byte_order);
862ba188
CV
344 pc += 4;
345 }
346 else if (IS_SUB_IMM_SP (op))
347 {
e17a4113 348 cache->sp_offset += read_memory_integer (pc + 2, 2, byte_order);
862ba188
CV
349 pc += 4;
350 }
351 else if (IS_SUBL4_SP (op))
352 {
353 cache->sp_offset += 4;
354 pc += 2;
355 }
356 else if (IS_MOV_IMM_Rn (op))
357 {
e17a4113 358 int offset = read_memory_integer (pc + 2, 2, byte_order);
862ba188 359 regno = op & 0x000f;
e17a4113 360 op = read_memory_unsigned_integer (pc + 4, 2, byte_order);
862ba188
CV
361 if (IS_ADD_RnSP (op) && (op & 0x00f0) == regno)
362 {
363 cache->sp_offset -= offset;
364 pc += 6;
365 }
366 else if (IS_SUB_RnSP (op) && (op & 0x00f0) == regno)
367 {
368 cache->sp_offset += offset;
369 pc += 6;
370 }
371 else
372 break;
373 }
374 else if (IS_PUSH (op))
375 {
376 regno = op & 0x000f;
377 cache->sp_offset += 2;
378 cache->saved_regs[regno] = cache->sp_offset;
379 pc += 2;
380 }
381 else if (op == 0x0100)
382 {
e17a4113 383 op = read_memory_unsigned_integer (pc + 2, 2, byte_order);
862ba188
CV
384 if (IS_PUSH (op))
385 {
386 regno = op & 0x000f;
387 cache->sp_offset += 4;
388 cache->saved_regs[regno] = cache->sp_offset;
389 pc += 4;
390 }
391 else
392 break;
393 }
394 else if ((op & 0xffcf) == 0x0100)
395 {
396 int op1;
e17a4113 397 op1 = read_memory_unsigned_integer (pc + 2, 2, byte_order);
862ba188
CV
398 if (IS_PUSH (op1))
399 {
400 /* Since the prefix is 0x01x0, this is not a simple pushm but a
401 stm.l reglist,@-sp */
402 i = ((op & 0x0030) >> 4) + 1;
403 regno = op1 & 0x000f;
404 for (; i > 0; regno++, --i)
405 {
406 cache->sp_offset += 4;
407 cache->saved_regs[regno] = cache->sp_offset;
408 }
409 pc += 4;
410 }
411 else
412 break;
413 }
414 else
415 break;
416 }
417
418 /* Check for spilling an argument register to the stack frame.
419 This could also be an initializing store from non-prologue code,
420 but I don't think there's any harm in skipping that. */
e17a4113 421 while ((spill_size = h8300_is_argument_spill (gdbarch, pc)) > 0
862ba188
CV
422 && pc + spill_size <= current_pc)
423 pc += spill_size;
f0bdd87d
YS
424
425 return pc;
426}
427
428static struct h8300_frame_cache *
94afd7a6 429h8300_frame_cache (struct frame_info *this_frame, void **this_cache)
f0bdd87d 430{
94afd7a6 431 struct gdbarch *gdbarch = get_frame_arch (this_frame);
f0bdd87d 432 struct h8300_frame_cache *cache;
f0bdd87d 433 int i;
862ba188 434 CORE_ADDR current_pc;
f0bdd87d
YS
435
436 if (*this_cache)
437 return *this_cache;
438
862ba188 439 cache = FRAME_OBSTACK_ZALLOC (struct h8300_frame_cache);
be8626e0 440 h8300_init_frame_cache (gdbarch, cache);
f0bdd87d
YS
441 *this_cache = cache;
442
443 /* In principle, for normal frames, %fp holds the frame pointer,
444 which holds the base address for the current stack frame.
445 However, for functions that don't need it, the frame pointer is
446 optional. For these "frameless" functions the frame pointer is
862ba188 447 actually the frame pointer of the calling frame. */
f0bdd87d 448
94afd7a6 449 cache->base = get_frame_register_unsigned (this_frame, E_FP_REGNUM);
f0bdd87d
YS
450 if (cache->base == 0)
451 return cache;
452
be8626e0 453 cache->saved_regs[E_PC_REGNUM] = -BINWORD (gdbarch);
f0bdd87d 454
94afd7a6
UW
455 cache->pc = get_frame_func (this_frame);
456 current_pc = get_frame_pc (this_frame);
f0bdd87d 457 if (cache->pc != 0)
e17a4113 458 h8300_analyze_prologue (gdbarch, cache->pc, current_pc, cache);
f0bdd87d 459
862ba188 460 if (!cache->uses_fp)
f0bdd87d
YS
461 {
462 /* We didn't find a valid frame, which means that CACHE->base
463 currently holds the frame pointer for our calling frame. If
464 we're at the start of a function, or somewhere half-way its
465 prologue, the function's frame probably hasn't been fully
466 setup yet. Try to reconstruct the base address for the stack
467 frame by looking at the stack pointer. For truly "frameless"
468 functions this might work too. */
469
94afd7a6 470 cache->base = get_frame_register_unsigned (this_frame, E_SP_REGNUM)
862ba188 471 + cache->sp_offset;
be8626e0 472 cache->saved_sp = cache->base + BINWORD (gdbarch);
862ba188
CV
473 cache->saved_regs[E_PC_REGNUM] = 0;
474 }
475 else
476 {
be8626e0
MD
477 cache->saved_sp = cache->base + 2 * BINWORD (gdbarch);
478 cache->saved_regs[E_PC_REGNUM] = -BINWORD (gdbarch);
f0bdd87d 479 }
f0bdd87d
YS
480
481 /* Adjust all the saved registers such that they contain addresses
482 instead of offsets. */
be8626e0 483 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
f0bdd87d 484 if (cache->saved_regs[i] != -1)
862ba188 485 cache->saved_regs[i] = cache->base - cache->saved_regs[i];
f0bdd87d
YS
486
487 return cache;
488}
489
490static void
94afd7a6 491h8300_frame_this_id (struct frame_info *this_frame, void **this_cache,
f0bdd87d
YS
492 struct frame_id *this_id)
493{
494 struct h8300_frame_cache *cache =
94afd7a6 495 h8300_frame_cache (this_frame, this_cache);
f0bdd87d
YS
496
497 /* This marks the outermost frame. */
498 if (cache->base == 0)
499 return;
500
862ba188 501 *this_id = frame_id_build (cache->saved_sp, cache->pc);
f0bdd87d
YS
502}
503
94afd7a6
UW
504static struct value *
505h8300_frame_prev_register (struct frame_info *this_frame, void **this_cache,
506 int regnum)
f0bdd87d 507{
94afd7a6 508 struct gdbarch *gdbarch = get_frame_arch (this_frame);
f0bdd87d 509 struct h8300_frame_cache *cache =
94afd7a6 510 h8300_frame_cache (this_frame, this_cache);
f0bdd87d
YS
511
512 gdb_assert (regnum >= 0);
513
514 if (regnum == E_SP_REGNUM && cache->saved_sp)
94afd7a6 515 return frame_unwind_got_constant (this_frame, regnum, cache->saved_sp);
f0bdd87d 516
ea78bae4 517 if (regnum < gdbarch_num_regs (gdbarch)
f57d151a 518 && cache->saved_regs[regnum] != -1)
94afd7a6
UW
519 return frame_unwind_got_memory (this_frame, regnum,
520 cache->saved_regs[regnum]);
f0bdd87d 521
94afd7a6 522 return frame_unwind_got_register (this_frame, regnum, regnum);
f0bdd87d
YS
523}
524
525static const struct frame_unwind h8300_frame_unwind = {
526 NORMAL_FRAME,
8fbca658 527 default_frame_unwind_stop_reason,
f0bdd87d 528 h8300_frame_this_id,
94afd7a6
UW
529 h8300_frame_prev_register,
530 NULL,
531 default_frame_sniffer
f0bdd87d
YS
532};
533
862ba188 534static CORE_ADDR
94afd7a6 535h8300_frame_base_address (struct frame_info *this_frame, void **this_cache)
862ba188 536{
94afd7a6 537 struct h8300_frame_cache *cache = h8300_frame_cache (this_frame, this_cache);
862ba188
CV
538 return cache->base;
539}
540
541static const struct frame_base h8300_frame_base = {
542 &h8300_frame_unwind,
543 h8300_frame_base_address,
544 h8300_frame_base_address,
545 h8300_frame_base_address
546};
547
548static CORE_ADDR
6093d2eb 549h8300_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
862ba188
CV
550{
551 CORE_ADDR func_addr = 0 , func_end = 0;
552
553 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
554 {
555 struct symtab_and_line sal;
556 struct h8300_frame_cache cache;
557
558 /* Found a function. */
559 sal = find_pc_line (func_addr, 0);
560 if (sal.end && sal.end < func_end)
561 /* Found a line number, use it as end of prologue. */
562 return sal.end;
563
564 /* No useable line symbol. Use prologue parsing method. */
be8626e0 565 h8300_init_frame_cache (gdbarch, &cache);
e17a4113 566 return h8300_analyze_prologue (gdbarch, func_addr, func_end, &cache);
862ba188
CV
567 }
568
569 /* No function symbol -- just return the PC. */
570 return (CORE_ADDR) pc;
571}
572
f0bdd87d
YS
573/* Function: push_dummy_call
574 Setup the function arguments for calling a function in the inferior.
575 In this discussion, a `word' is 16 bits on the H8/300s, and 32 bits
576 on the H8/300H.
577
578 There are actually two ABI's here: -mquickcall (the default) and
579 -mno-quickcall. With -mno-quickcall, all arguments are passed on
580 the stack after the return address, word-aligned. With
581 -mquickcall, GCC tries to use r0 -- r2 to pass registers. Since
582 GCC doesn't indicate in the object file which ABI was used to
583 compile it, GDB only supports the default --- -mquickcall.
584
585 Here are the rules for -mquickcall, in detail:
586
587 Each argument, whether scalar or aggregate, is padded to occupy a
588 whole number of words. Arguments smaller than a word are padded at
589 the most significant end; those larger than a word are padded at
590 the least significant end.
591
592 The initial arguments are passed in r0 -- r2. Earlier arguments go in
593 lower-numbered registers. Multi-word arguments are passed in
594 consecutive registers, with the most significant end in the
595 lower-numbered register.
596
597 If an argument doesn't fit entirely in the remaining registers, it
598 is passed entirely on the stack. Stack arguments begin just after
599 the return address. Once an argument has overflowed onto the stack
600 this way, all subsequent arguments are passed on the stack.
601
602 The above rule has odd consequences. For example, on the h8/300s,
603 if a function takes two longs and an int as arguments:
604 - the first long will be passed in r0/r1,
605 - the second long will be passed entirely on the stack, since it
606 doesn't fit in r2,
607 - and the int will be passed on the stack, even though it could fit
608 in r2.
609
610 A weird exception: if an argument is larger than a word, but not a
611 whole number of words in length (before padding), it is passed on
612 the stack following the rules for stack arguments above, even if
613 there are sufficient registers available to hold it. Stranger
614 still, the argument registers are still `used up' --- even though
615 there's nothing in them.
616
617 So, for example, on the h8/300s, if a function expects a three-byte
618 structure and an int, the structure will go on the stack, and the
619 int will go in r2, not r0.
620
621 If the function returns an aggregate type (struct, union, or class)
622 by value, the caller must allocate space to hold the return value,
623 and pass the callee a pointer to this space as an invisible first
624 argument, in R0.
625
626 For varargs functions, the last fixed argument and all the variable
627 arguments are always passed on the stack. This means that calls to
628 varargs functions don't work properly unless there is a prototype
629 in scope.
630
631 Basically, this ABI is not good, for the following reasons:
632 - You can't call vararg functions properly unless a prototype is in scope.
633 - Structure passing is inconsistent, to no purpose I can see.
634 - It often wastes argument registers, of which there are only three
635 to begin with. */
636
637static CORE_ADDR
638h8300_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
639 struct regcache *regcache, CORE_ADDR bp_addr,
640 int nargs, struct value **args, CORE_ADDR sp,
641 int struct_return, CORE_ADDR struct_addr)
642{
e17a4113 643 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d 644 int stack_alloc = 0, stack_offset = 0;
be8626e0 645 int wordsize = BINWORD (gdbarch);
f0bdd87d
YS
646 int reg = E_ARG0_REGNUM;
647 int argument;
648
649 /* First, make sure the stack is properly aligned. */
650 sp = align_down (sp, wordsize);
651
652 /* Now make sure there's space on the stack for the arguments. We
653 may over-allocate a little here, but that won't hurt anything. */
654 for (argument = 0; argument < nargs; argument++)
655 stack_alloc += align_up (TYPE_LENGTH (value_type (args[argument])),
656 wordsize);
657 sp -= stack_alloc;
658
659 /* Now load as many arguments as possible into registers, and push
660 the rest onto the stack.
661 If we're returning a structure by value, then we must pass a
662 pointer to the buffer for the return value as an invisible first
663 argument. */
664 if (struct_return)
665 regcache_cooked_write_unsigned (regcache, reg++, struct_addr);
666
667 for (argument = 0; argument < nargs; argument++)
668 {
ecfb0d68 669 struct cleanup *back_to;
f0bdd87d
YS
670 struct type *type = value_type (args[argument]);
671 int len = TYPE_LENGTH (type);
672 char *contents = (char *) value_contents (args[argument]);
673
674 /* Pad the argument appropriately. */
675 int padded_len = align_up (len, wordsize);
ecfb0d68
SP
676 gdb_byte *padded = xmalloc (padded_len);
677 back_to = make_cleanup (xfree, padded);
f0bdd87d
YS
678
679 memset (padded, 0, padded_len);
680 memcpy (len < wordsize ? padded + padded_len - len : padded,
681 contents, len);
682
683 /* Could the argument fit in the remaining registers? */
684 if (padded_len <= (E_ARGLAST_REGNUM - reg + 1) * wordsize)
685 {
686 /* Are we going to pass it on the stack anyway, for no good
687 reason? */
688 if (len > wordsize && len % wordsize)
689 {
690 /* I feel so unclean. */
691 write_memory (sp + stack_offset, padded, padded_len);
692 stack_offset += padded_len;
693
694 /* That's right --- even though we passed the argument
695 on the stack, we consume the registers anyway! Love
696 me, love my dog. */
697 reg += padded_len / wordsize;
698 }
699 else
700 {
701 /* Heavens to Betsy --- it's really going in registers!
99e42fd8
PA
702 Note that on the h8/300s, there are gaps between the
703 registers in the register file. */
f0bdd87d
YS
704 int offset;
705
706 for (offset = 0; offset < padded_len; offset += wordsize)
707 {
e17a4113
UW
708 ULONGEST word
709 = extract_unsigned_integer (padded + offset,
710 wordsize, byte_order);
f0bdd87d
YS
711 regcache_cooked_write_unsigned (regcache, reg++, word);
712 }
713 }
714 }
715 else
716 {
717 /* It doesn't fit in registers! Onto the stack it goes. */
718 write_memory (sp + stack_offset, padded, padded_len);
719 stack_offset += padded_len;
720
721 /* Once one argument has spilled onto the stack, all
722 subsequent arguments go on the stack. */
723 reg = E_ARGLAST_REGNUM + 1;
724 }
ecfb0d68
SP
725
726 do_cleanups (back_to);
f0bdd87d
YS
727 }
728
729 /* Store return address. */
730 sp -= wordsize;
e17a4113 731 write_memory_unsigned_integer (sp, wordsize, byte_order, bp_addr);
f0bdd87d
YS
732
733 /* Update stack pointer. */
734 regcache_cooked_write_unsigned (regcache, E_SP_REGNUM, sp);
735
862ba188
CV
736 /* Return the new stack pointer minus the return address slot since
737 that's what DWARF2/GCC uses as the frame's CFA. */
738 return sp + wordsize;
f0bdd87d
YS
739}
740
741/* Function: extract_return_value
742 Figure out where in REGBUF the called function has left its return value.
743 Copy that into VALBUF. Be sure to account for CPU type. */
744
745static void
746h8300_extract_return_value (struct type *type, struct regcache *regcache,
747 void *valbuf)
748{
e17a4113
UW
749 struct gdbarch *gdbarch = get_regcache_arch (regcache);
750 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d
YS
751 int len = TYPE_LENGTH (type);
752 ULONGEST c, addr;
753
754 switch (len)
755 {
756 case 1:
757 case 2:
758 regcache_cooked_read_unsigned (regcache, E_RET0_REGNUM, &c);
e17a4113 759 store_unsigned_integer (valbuf, len, byte_order, c);
f0bdd87d
YS
760 break;
761 case 4: /* Needs two registers on plain H8/300 */
762 regcache_cooked_read_unsigned (regcache, E_RET0_REGNUM, &c);
e17a4113 763 store_unsigned_integer (valbuf, 2, byte_order, c);
f0bdd87d 764 regcache_cooked_read_unsigned (regcache, E_RET1_REGNUM, &c);
e17a4113 765 store_unsigned_integer ((void *)((char *) valbuf + 2), 2, byte_order, c);
f0bdd87d
YS
766 break;
767 case 8: /* long long is now 8 bytes. */
768 if (TYPE_CODE (type) == TYPE_CODE_INT)
769 {
770 regcache_cooked_read_unsigned (regcache, E_RET0_REGNUM, &addr);
e17a4113
UW
771 c = read_memory_unsigned_integer ((CORE_ADDR) addr, len, byte_order);
772 store_unsigned_integer (valbuf, len, byte_order, c);
f0bdd87d
YS
773 }
774 else
775 {
a73c6dcd 776 error (_("I don't know how this 8 byte value is returned."));
f0bdd87d
YS
777 }
778 break;
779 }
780}
781
782static void
783h8300h_extract_return_value (struct type *type, struct regcache *regcache,
784 void *valbuf)
785{
e17a4113
UW
786 struct gdbarch *gdbarch = get_regcache_arch (regcache);
787 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d 788 int len = TYPE_LENGTH (type);
22e048c9 789 ULONGEST c;
f0bdd87d
YS
790
791 switch (len)
792 {
793 case 1:
794 case 2:
795 case 4:
796 regcache_cooked_read_unsigned (regcache, E_RET0_REGNUM, &c);
e17a4113 797 store_unsigned_integer (valbuf, len, byte_order, c);
f0bdd87d
YS
798 break;
799 case 8: /* long long is now 8 bytes. */
800 if (TYPE_CODE (type) == TYPE_CODE_INT)
801 {
862ba188 802 regcache_cooked_read_unsigned (regcache, E_RET0_REGNUM, &c);
e17a4113 803 store_unsigned_integer (valbuf, 4, byte_order, c);
862ba188 804 regcache_cooked_read_unsigned (regcache, E_RET1_REGNUM, &c);
e17a4113
UW
805 store_unsigned_integer ((void *) ((char *) valbuf + 4), 4,
806 byte_order, c);
f0bdd87d
YS
807 }
808 else
809 {
a73c6dcd 810 error (_("I don't know how this 8 byte value is returned."));
f0bdd87d
YS
811 }
812 break;
813 }
814}
815
63807e1d 816static int
862ba188
CV
817h8300_use_struct_convention (struct type *value_type)
818{
819 /* Types of 1, 2 or 4 bytes are returned in R0/R1, everything else on the
1777feb0 820 stack. */
862ba188
CV
821
822 if (TYPE_CODE (value_type) == TYPE_CODE_STRUCT
823 || TYPE_CODE (value_type) == TYPE_CODE_UNION)
824 return 1;
825 return !(TYPE_LENGTH (value_type) == 1
826 || TYPE_LENGTH (value_type) == 2
827 || TYPE_LENGTH (value_type) == 4);
828}
829
63807e1d 830static int
862ba188
CV
831h8300h_use_struct_convention (struct type *value_type)
832{
833 /* Types of 1, 2 or 4 bytes are returned in R0, INT types of 8 bytes are
1777feb0 834 returned in R0/R1, everything else on the stack. */
862ba188
CV
835 if (TYPE_CODE (value_type) == TYPE_CODE_STRUCT
836 || TYPE_CODE (value_type) == TYPE_CODE_UNION)
837 return 1;
838 return !(TYPE_LENGTH (value_type) == 1
839 || TYPE_LENGTH (value_type) == 2
840 || TYPE_LENGTH (value_type) == 4
841 || (TYPE_LENGTH (value_type) == 8
842 && TYPE_CODE (value_type) == TYPE_CODE_INT));
843}
f0bdd87d
YS
844
845/* Function: store_return_value
846 Place the appropriate value in the appropriate registers.
847 Primarily used by the RETURN command. */
848
849static void
850h8300_store_return_value (struct type *type, struct regcache *regcache,
851 const void *valbuf)
852{
e17a4113
UW
853 struct gdbarch *gdbarch = get_regcache_arch (regcache);
854 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d
YS
855 int len = TYPE_LENGTH (type);
856 ULONGEST val;
857
858 switch (len)
859 {
860 case 1:
1777feb0 861 case 2: /* short... */
e17a4113 862 val = extract_unsigned_integer (valbuf, len, byte_order);
f0bdd87d
YS
863 regcache_cooked_write_unsigned (regcache, E_RET0_REGNUM, val);
864 break;
865 case 4: /* long, float */
e17a4113 866 val = extract_unsigned_integer (valbuf, len, byte_order);
f0bdd87d
YS
867 regcache_cooked_write_unsigned (regcache, E_RET0_REGNUM,
868 (val >> 16) & 0xffff);
869 regcache_cooked_write_unsigned (regcache, E_RET1_REGNUM, val & 0xffff);
870 break;
1777feb0
MS
871 case 8: /* long long, double and long double
872 are all defined as 4 byte types so
873 far so this shouldn't happen. */
a73c6dcd 874 error (_("I don't know how to return an 8 byte value."));
f0bdd87d
YS
875 break;
876 }
877}
878
879static void
880h8300h_store_return_value (struct type *type, struct regcache *regcache,
881 const void *valbuf)
882{
e17a4113
UW
883 struct gdbarch *gdbarch = get_regcache_arch (regcache);
884 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f0bdd87d
YS
885 int len = TYPE_LENGTH (type);
886 ULONGEST val;
887
888 switch (len)
889 {
890 case 1:
891 case 2:
892 case 4: /* long, float */
e17a4113 893 val = extract_unsigned_integer (valbuf, len, byte_order);
f0bdd87d
YS
894 regcache_cooked_write_unsigned (regcache, E_RET0_REGNUM, val);
895 break;
862ba188 896 case 8:
e17a4113 897 val = extract_unsigned_integer (valbuf, len, byte_order);
862ba188
CV
898 regcache_cooked_write_unsigned (regcache, E_RET0_REGNUM,
899 (val >> 32) & 0xffffffff);
900 regcache_cooked_write_unsigned (regcache, E_RET1_REGNUM,
901 val & 0xffffffff);
f0bdd87d
YS
902 break;
903 }
904}
905
862ba188 906static enum return_value_convention
6a3a010b 907h8300_return_value (struct gdbarch *gdbarch, struct value *function,
c055b101 908 struct type *type, struct regcache *regcache,
5d0d05b6 909 gdb_byte *readbuf, const gdb_byte *writebuf)
862ba188
CV
910{
911 if (h8300_use_struct_convention (type))
912 return RETURN_VALUE_STRUCT_CONVENTION;
913 if (writebuf)
914 h8300_store_return_value (type, regcache, writebuf);
915 else if (readbuf)
916 h8300_extract_return_value (type, regcache, readbuf);
917 return RETURN_VALUE_REGISTER_CONVENTION;
918}
919
920static enum return_value_convention
6a3a010b 921h8300h_return_value (struct gdbarch *gdbarch, struct value *function,
c055b101 922 struct type *type, struct regcache *regcache,
5d0d05b6 923 gdb_byte *readbuf, const gdb_byte *writebuf)
862ba188
CV
924{
925 if (h8300h_use_struct_convention (type))
926 {
927 if (readbuf)
928 {
929 ULONGEST addr;
930
931 regcache_raw_read_unsigned (regcache, E_R0_REGNUM, &addr);
932 read_memory (addr, readbuf, TYPE_LENGTH (type));
933 }
934
935 return RETURN_VALUE_ABI_RETURNS_ADDRESS;
936 }
937 if (writebuf)
938 h8300h_store_return_value (type, regcache, writebuf);
939 else if (readbuf)
940 h8300h_extract_return_value (type, regcache, readbuf);
941 return RETURN_VALUE_REGISTER_CONVENTION;
942}
943
f0bdd87d
YS
944static struct cmd_list_element *setmachinelist;
945
946static const char *
d93859e2 947h8300_register_name (struct gdbarch *gdbarch, int regno)
f0bdd87d
YS
948{
949 /* The register names change depending on which h8300 processor
1777feb0 950 type is selected. */
f0bdd87d
YS
951 static char *register_names[] = {
952 "r0", "r1", "r2", "r3", "r4", "r5", "r6",
953 "sp", "", "pc", "cycles", "tick", "inst",
954 "ccr", /* pseudo register */
955 };
956 if (regno < 0
957 || regno >= (sizeof (register_names) / sizeof (*register_names)))
958 internal_error (__FILE__, __LINE__,
a73c6dcd
MS
959 _("h8300_register_name: illegal register number %d"),
960 regno);
f0bdd87d
YS
961 else
962 return register_names[regno];
963}
964
965static const char *
d93859e2 966h8300s_register_name (struct gdbarch *gdbarch, int regno)
f0bdd87d
YS
967{
968 static char *register_names[] = {
969 "er0", "er1", "er2", "er3", "er4", "er5", "er6",
970 "sp", "", "pc", "cycles", "", "tick", "inst",
971 "mach", "macl",
972 "ccr", "exr" /* pseudo registers */
973 };
974 if (regno < 0
975 || regno >= (sizeof (register_names) / sizeof (*register_names)))
976 internal_error (__FILE__, __LINE__,
a73c6dcd 977 _("h8300s_register_name: illegal register number %d"),
f0bdd87d
YS
978 regno);
979 else
980 return register_names[regno];
981}
982
983static const char *
d93859e2 984h8300sx_register_name (struct gdbarch *gdbarch, int regno)
f0bdd87d
YS
985{
986 static char *register_names[] = {
987 "er0", "er1", "er2", "er3", "er4", "er5", "er6",
988 "sp", "", "pc", "cycles", "", "tick", "inst",
989 "mach", "macl", "sbr", "vbr",
990 "ccr", "exr" /* pseudo registers */
991 };
992 if (regno < 0
993 || regno >= (sizeof (register_names) / sizeof (*register_names)))
994 internal_error (__FILE__, __LINE__,
a73c6dcd 995 _("h8300sx_register_name: illegal register number %d"),
f0bdd87d
YS
996 regno);
997 else
998 return register_names[regno];
999}
1000
1001static void
1002h8300_print_register (struct gdbarch *gdbarch, struct ui_file *file,
1003 struct frame_info *frame, int regno)
1004{
1005 LONGEST rval;
1006 const char *name = gdbarch_register_name (gdbarch, regno);
1007
1008 if (!name || !*name)
1009 return;
1010
1011 rval = get_frame_register_signed (frame, regno);
1012
1013 fprintf_filtered (file, "%-14s ", name);
be8626e0
MD
1014 if ((regno == E_PSEUDO_CCR_REGNUM (gdbarch)) || \
1015 (regno == E_PSEUDO_EXR_REGNUM (gdbarch) && is_h8300smode (gdbarch)))
f0bdd87d
YS
1016 {
1017 fprintf_filtered (file, "0x%02x ", (unsigned char) rval);
1018 print_longest (file, 'u', 1, rval);
1019 }
1020 else
1021 {
be8626e0
MD
1022 fprintf_filtered (file, "0x%s ", phex ((ULONGEST) rval,
1023 BINWORD (gdbarch)));
f0bdd87d
YS
1024 print_longest (file, 'd', 1, rval);
1025 }
be8626e0 1026 if (regno == E_PSEUDO_CCR_REGNUM (gdbarch))
f0bdd87d
YS
1027 {
1028 /* CCR register */
1029 int C, Z, N, V;
1030 unsigned char l = rval & 0xff;
1031 fprintf_filtered (file, "\t");
1032 fprintf_filtered (file, "I-%d ", (l & 0x80) != 0);
1033 fprintf_filtered (file, "UI-%d ", (l & 0x40) != 0);
1034 fprintf_filtered (file, "H-%d ", (l & 0x20) != 0);
1035 fprintf_filtered (file, "U-%d ", (l & 0x10) != 0);
1036 N = (l & 0x8) != 0;
1037 Z = (l & 0x4) != 0;
1038 V = (l & 0x2) != 0;
1039 C = (l & 0x1) != 0;
1040 fprintf_filtered (file, "N-%d ", N);
1041 fprintf_filtered (file, "Z-%d ", Z);
1042 fprintf_filtered (file, "V-%d ", V);
1043 fprintf_filtered (file, "C-%d ", C);
1044 if ((C | Z) == 0)
1045 fprintf_filtered (file, "u> ");
1046 if ((C | Z) == 1)
1047 fprintf_filtered (file, "u<= ");
1048 if ((C == 0))
1049 fprintf_filtered (file, "u>= ");
1050 if (C == 1)
1051 fprintf_filtered (file, "u< ");
1052 if (Z == 0)
1053 fprintf_filtered (file, "!= ");
1054 if (Z == 1)
1055 fprintf_filtered (file, "== ");
1056 if ((N ^ V) == 0)
1057 fprintf_filtered (file, ">= ");
1058 if ((N ^ V) == 1)
1059 fprintf_filtered (file, "< ");
1060 if ((Z | (N ^ V)) == 0)
1061 fprintf_filtered (file, "> ");
1062 if ((Z | (N ^ V)) == 1)
1063 fprintf_filtered (file, "<= ");
1064 }
be8626e0 1065 else if (regno == E_PSEUDO_EXR_REGNUM (gdbarch) && is_h8300smode (gdbarch))
f0bdd87d
YS
1066 {
1067 /* EXR register */
1068 unsigned char l = rval & 0xff;
1069 fprintf_filtered (file, "\t");
1070 fprintf_filtered (file, "T-%d - - - ", (l & 0x80) != 0);
1071 fprintf_filtered (file, "I2-%d ", (l & 4) != 0);
1072 fprintf_filtered (file, "I1-%d ", (l & 2) != 0);
1073 fprintf_filtered (file, "I0-%d", (l & 1) != 0);
1074 }
1075 fprintf_filtered (file, "\n");
1076}
1077
1078static void
1079h8300_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file,
1080 struct frame_info *frame, int regno, int cpregs)
1081{
1082 if (regno < 0)
1083 {
1084 for (regno = E_R0_REGNUM; regno <= E_SP_REGNUM; ++regno)
1085 h8300_print_register (gdbarch, file, frame, regno);
be8626e0
MD
1086 h8300_print_register (gdbarch, file, frame,
1087 E_PSEUDO_CCR_REGNUM (gdbarch));
f0bdd87d 1088 h8300_print_register (gdbarch, file, frame, E_PC_REGNUM);
ea78bae4 1089 if (is_h8300smode (gdbarch))
f0bdd87d 1090 {
be8626e0
MD
1091 h8300_print_register (gdbarch, file, frame,
1092 E_PSEUDO_EXR_REGNUM (gdbarch));
ea78bae4 1093 if (is_h8300sxmode (gdbarch))
f0bdd87d
YS
1094 {
1095 h8300_print_register (gdbarch, file, frame, E_SBR_REGNUM);
1096 h8300_print_register (gdbarch, file, frame, E_VBR_REGNUM);
1097 }
1098 h8300_print_register (gdbarch, file, frame, E_MACH_REGNUM);
1099 h8300_print_register (gdbarch, file, frame, E_MACL_REGNUM);
1100 h8300_print_register (gdbarch, file, frame, E_CYCLES_REGNUM);
1101 h8300_print_register (gdbarch, file, frame, E_TICKS_REGNUM);
1102 h8300_print_register (gdbarch, file, frame, E_INSTS_REGNUM);
1103 }
1104 else
1105 {
1106 h8300_print_register (gdbarch, file, frame, E_CYCLES_REGNUM);
1107 h8300_print_register (gdbarch, file, frame, E_TICK_REGNUM);
1108 h8300_print_register (gdbarch, file, frame, E_INST_REGNUM);
1109 }
1110 }
1111 else
1112 {
1113 if (regno == E_CCR_REGNUM)
be8626e0
MD
1114 h8300_print_register (gdbarch, file, frame,
1115 E_PSEUDO_CCR_REGNUM (gdbarch));
1116 else if (regno == E_PSEUDO_EXR_REGNUM (gdbarch)
ea78bae4 1117 && is_h8300smode (gdbarch))
be8626e0
MD
1118 h8300_print_register (gdbarch, file, frame,
1119 E_PSEUDO_EXR_REGNUM (gdbarch));
f0bdd87d
YS
1120 else
1121 h8300_print_register (gdbarch, file, frame, regno);
1122 }
1123}
1124
1125static struct type *
1126h8300_register_type (struct gdbarch *gdbarch, int regno)
1127{
ea78bae4
UW
1128 if (regno < 0 || regno >= gdbarch_num_regs (gdbarch)
1129 + gdbarch_num_pseudo_regs (gdbarch))
f0bdd87d 1130 internal_error (__FILE__, __LINE__,
a73c6dcd
MS
1131 _("h8300_register_type: illegal register number %d"),
1132 regno);
f0bdd87d
YS
1133 else
1134 {
1135 switch (regno)
1136 {
1137 case E_PC_REGNUM:
0dfff4cb 1138 return builtin_type (gdbarch)->builtin_func_ptr;
f0bdd87d
YS
1139 case E_SP_REGNUM:
1140 case E_FP_REGNUM:
0dfff4cb 1141 return builtin_type (gdbarch)->builtin_data_ptr;
f0bdd87d 1142 default:
be8626e0 1143 if (regno == E_PSEUDO_CCR_REGNUM (gdbarch))
df4df182 1144 return builtin_type (gdbarch)->builtin_uint8;
be8626e0 1145 else if (regno == E_PSEUDO_EXR_REGNUM (gdbarch))
df4df182 1146 return builtin_type (gdbarch)->builtin_uint8;
ea78bae4 1147 else if (is_h8300hmode (gdbarch))
df4df182 1148 return builtin_type (gdbarch)->builtin_int32;
f0bdd87d 1149 else
df4df182 1150 return builtin_type (gdbarch)->builtin_int16;
f0bdd87d
YS
1151 }
1152 }
1153}
1154
05d1431c 1155static enum register_status
f0bdd87d 1156h8300_pseudo_register_read (struct gdbarch *gdbarch,
5d0d05b6
CV
1157 struct regcache *regcache, int regno,
1158 gdb_byte *buf)
f0bdd87d 1159{
be8626e0 1160 if (regno == E_PSEUDO_CCR_REGNUM (gdbarch))
05d1431c 1161 return regcache_raw_read (regcache, E_CCR_REGNUM, buf);
be8626e0 1162 else if (regno == E_PSEUDO_EXR_REGNUM (gdbarch))
05d1431c 1163 return regcache_raw_read (regcache, E_EXR_REGNUM, buf);
f0bdd87d 1164 else
05d1431c 1165 return regcache_raw_read (regcache, regno, buf);
f0bdd87d
YS
1166}
1167
1168static void
1169h8300_pseudo_register_write (struct gdbarch *gdbarch,
1170 struct regcache *regcache, int regno,
5d0d05b6 1171 const gdb_byte *buf)
f0bdd87d 1172{
be8626e0 1173 if (regno == E_PSEUDO_CCR_REGNUM (gdbarch))
f0bdd87d 1174 regcache_raw_write (regcache, E_CCR_REGNUM, buf);
be8626e0 1175 else if (regno == E_PSEUDO_EXR_REGNUM (gdbarch))
f0bdd87d
YS
1176 regcache_raw_write (regcache, E_EXR_REGNUM, buf);
1177 else
1178 regcache_raw_write (regcache, regno, buf);
1179}
1180
1181static int
d3f73121 1182h8300_dbg_reg_to_regnum (struct gdbarch *gdbarch, int regno)
f0bdd87d
YS
1183{
1184 if (regno == E_CCR_REGNUM)
be8626e0 1185 return E_PSEUDO_CCR_REGNUM (gdbarch);
f0bdd87d
YS
1186 return regno;
1187}
1188
1189static int
d3f73121 1190h8300s_dbg_reg_to_regnum (struct gdbarch *gdbarch, int regno)
f0bdd87d
YS
1191{
1192 if (regno == E_CCR_REGNUM)
be8626e0 1193 return E_PSEUDO_CCR_REGNUM (gdbarch);
f0bdd87d 1194 if (regno == E_EXR_REGNUM)
be8626e0 1195 return E_PSEUDO_EXR_REGNUM (gdbarch);
f0bdd87d
YS
1196 return regno;
1197}
1198
f0bdd87d 1199const static unsigned char *
67d57894
MD
1200h8300_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
1201 int *lenptr)
f0bdd87d
YS
1202{
1203 /*static unsigned char breakpoint[] = { 0x7A, 0xFF }; *//* ??? */
1204 static unsigned char breakpoint[] = { 0x01, 0x80 }; /* Sleep */
1205
1206 *lenptr = sizeof (breakpoint);
1207 return breakpoint;
1208}
1209
f0bdd87d
YS
1210static void
1211h8300_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1212 struct frame_info *frame, const char *args)
1213{
1214 fprintf_filtered (file, "\
1215No floating-point info available for this processor.\n");
1216}
1217
1218static struct gdbarch *
1219h8300_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1220{
1221 struct gdbarch_tdep *tdep = NULL;
1222 struct gdbarch *gdbarch;
1223
1224 arches = gdbarch_list_lookup_by_info (arches, &info);
1225 if (arches != NULL)
1226 return arches->gdbarch;
1227
1228#if 0
1229 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
1230#endif
1231
1232 if (info.bfd_arch_info->arch != bfd_arch_h8300)
1233 return NULL;
1234
1235 gdbarch = gdbarch_alloc (&info, 0);
1236
1237 switch (info.bfd_arch_info->mach)
1238 {
1239 case bfd_mach_h8300:
1240 set_gdbarch_num_regs (gdbarch, 13);
1241 set_gdbarch_num_pseudo_regs (gdbarch, 1);
1242 set_gdbarch_ecoff_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
f0bdd87d
YS
1243 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
1244 set_gdbarch_stab_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
1245 set_gdbarch_register_name (gdbarch, h8300_register_name);
1246 set_gdbarch_ptr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1247 set_gdbarch_addr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
862ba188 1248 set_gdbarch_return_value (gdbarch, h8300_return_value);
f0bdd87d
YS
1249 set_gdbarch_print_insn (gdbarch, print_insn_h8300);
1250 break;
1251 case bfd_mach_h8300h:
1252 case bfd_mach_h8300hn:
1253 set_gdbarch_num_regs (gdbarch, 13);
1254 set_gdbarch_num_pseudo_regs (gdbarch, 1);
1255 set_gdbarch_ecoff_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
f0bdd87d
YS
1256 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
1257 set_gdbarch_stab_reg_to_regnum (gdbarch, h8300_dbg_reg_to_regnum);
1258 set_gdbarch_register_name (gdbarch, h8300_register_name);
1259 if (info.bfd_arch_info->mach != bfd_mach_h8300hn)
1260 {
1261 set_gdbarch_ptr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1262 set_gdbarch_addr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1263 }
1264 else
1265 {
1266 set_gdbarch_ptr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1267 set_gdbarch_addr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1268 }
862ba188 1269 set_gdbarch_return_value (gdbarch, h8300h_return_value);
f0bdd87d
YS
1270 set_gdbarch_print_insn (gdbarch, print_insn_h8300h);
1271 break;
1272 case bfd_mach_h8300s:
1273 case bfd_mach_h8300sn:
1274 set_gdbarch_num_regs (gdbarch, 16);
1275 set_gdbarch_num_pseudo_regs (gdbarch, 2);
1276 set_gdbarch_ecoff_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
f0bdd87d
YS
1277 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
1278 set_gdbarch_stab_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
1279 set_gdbarch_register_name (gdbarch, h8300s_register_name);
1280 if (info.bfd_arch_info->mach != bfd_mach_h8300sn)
1281 {
1282 set_gdbarch_ptr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1283 set_gdbarch_addr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1284 }
1285 else
1286 {
1287 set_gdbarch_ptr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1288 set_gdbarch_addr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1289 }
862ba188 1290 set_gdbarch_return_value (gdbarch, h8300h_return_value);
f0bdd87d
YS
1291 set_gdbarch_print_insn (gdbarch, print_insn_h8300s);
1292 break;
1293 case bfd_mach_h8300sx:
1294 case bfd_mach_h8300sxn:
1295 set_gdbarch_num_regs (gdbarch, 18);
1296 set_gdbarch_num_pseudo_regs (gdbarch, 2);
1297 set_gdbarch_ecoff_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
f0bdd87d
YS
1298 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
1299 set_gdbarch_stab_reg_to_regnum (gdbarch, h8300s_dbg_reg_to_regnum);
1300 set_gdbarch_register_name (gdbarch, h8300sx_register_name);
1301 if (info.bfd_arch_info->mach != bfd_mach_h8300sxn)
1302 {
1303 set_gdbarch_ptr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1304 set_gdbarch_addr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1305 }
1306 else
1307 {
1308 set_gdbarch_ptr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1309 set_gdbarch_addr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1310 }
862ba188 1311 set_gdbarch_return_value (gdbarch, h8300h_return_value);
f0bdd87d
YS
1312 set_gdbarch_print_insn (gdbarch, print_insn_h8300s);
1313 break;
1314 }
1315
1316 set_gdbarch_pseudo_register_read (gdbarch, h8300_pseudo_register_read);
1317 set_gdbarch_pseudo_register_write (gdbarch, h8300_pseudo_register_write);
1318
1319 /*
1320 * Basic register fields and methods.
1321 */
1322
1323 set_gdbarch_sp_regnum (gdbarch, E_SP_REGNUM);
f0bdd87d
YS
1324 set_gdbarch_pc_regnum (gdbarch, E_PC_REGNUM);
1325 set_gdbarch_register_type (gdbarch, h8300_register_type);
1326 set_gdbarch_print_registers_info (gdbarch, h8300_print_registers_info);
1327 set_gdbarch_print_float_info (gdbarch, h8300_print_float_info);
1328
1329 /*
1330 * Frame Info
1331 */
1332 set_gdbarch_skip_prologue (gdbarch, h8300_skip_prologue);
1333
1334 /* Frame unwinder. */
f0bdd87d 1335 set_gdbarch_unwind_pc (gdbarch, h8300_unwind_pc);
862ba188 1336 set_gdbarch_unwind_sp (gdbarch, h8300_unwind_sp);
94afd7a6 1337 set_gdbarch_dummy_id (gdbarch, h8300_dummy_id);
862ba188 1338 frame_base_set_default (gdbarch, &h8300_frame_base);
f0bdd87d
YS
1339
1340 /*
1341 * Miscelany
1342 */
1777feb0 1343 /* Stack grows up. */
f0bdd87d
YS
1344 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1345
f0bdd87d 1346 set_gdbarch_breakpoint_from_pc (gdbarch, h8300_breakpoint_from_pc);
f0bdd87d
YS
1347 set_gdbarch_push_dummy_call (gdbarch, h8300_push_dummy_call);
1348
862ba188 1349 set_gdbarch_char_signed (gdbarch, 0);
f0bdd87d
YS
1350 set_gdbarch_int_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1351 set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1352 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1353 set_gdbarch_double_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1354 set_gdbarch_long_double_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1355
1356 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
1357
862ba188 1358 /* Hook in the DWARF CFI frame unwinder. */
94afd7a6
UW
1359 dwarf2_append_unwinders (gdbarch);
1360 frame_unwind_append_unwinder (gdbarch, &h8300_frame_unwind);
f0bdd87d
YS
1361
1362 return gdbarch;
1363
1364}
1365
1777feb0 1366extern initialize_file_ftype _initialize_h8300_tdep; /* -Wmissing-prototypes */
f0bdd87d
YS
1367
1368void
1369_initialize_h8300_tdep (void)
1370{
1371 register_gdbarch_init (bfd_arch_h8300, h8300_gdbarch_init);
1372}
1373
1374static int
1375is_h8300hmode (struct gdbarch *gdbarch)
1376{
1377 return gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sx
1378 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sxn
1379 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300s
1380 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sn
1381 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300h
1382 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300hn;
1383}
1384
1385static int
1386is_h8300smode (struct gdbarch *gdbarch)
1387{
1388 return gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sx
1389 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sxn
1390 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300s
1391 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sn;
1392}
1393
1394static int
1395is_h8300sxmode (struct gdbarch *gdbarch)
1396{
1397 return gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sx
1398 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sxn;
1399}
1400
1401static int
1402is_h8300_normal_mode (struct gdbarch *gdbarch)
1403{
1404 return gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sxn
1405 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300sn
1406 || gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_h8300hn;
1407}
This page took 0.614595 seconds and 4 git commands to generate.