* gdb/fileio.h: New file.
[deliverable/binutils-gdb.git] / gdb / h8300-tdep.c
CommitLineData
c906108c 1/* Target-machine dependent code for Hitachi H8/300, for GDB.
cda5a58a
AC
2
3 Copyright 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,
1e698235 4 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23/*
c5aa993b
JM
24 Contributed by Steve Chamberlain
25 sac@cygnus.com
c906108c
SS
26 */
27
28#include "defs.h"
c906108c 29#include "value.h"
928e48af
CV
30#include "inferior.h"
31#include "symfile.h"
32#include "arch-utils.h"
4e052eda 33#include "regcache.h"
928e48af
CV
34#include "gdbcore.h"
35#include "objfiles.h"
36#include "gdbcmd.h"
4904ba5b 37#include "gdb_assert.h"
c906108c 38
928e48af
CV
39/* Extra info which is saved in each frame_info. */
40struct frame_extra_info
41{
42 CORE_ADDR from_pc;
43 CORE_ADDR args_pointer;
44 CORE_ADDR locals_pointer;
45};
c906108c 46
928e48af
CV
47#define E_NUM_REGS (h8300smode ? 14 : 13)
48
49enum
50{
51 h8300_reg_size = 2,
52 h8300h_reg_size = 4,
53 h8300_max_reg_size = 4,
54};
55#define BINWORD (h8300hmode ? h8300h_reg_size : h8300_reg_size)
56
57enum gdb_regnum
58{
59 E_R0_REGNUM, E_ER0_REGNUM = E_R0_REGNUM, E_ARG0_REGNUM = E_R0_REGNUM,
60 E_R1_REGNUM, E_ER1_REGNUM = E_R1_REGNUM,
61 E_R2_REGNUM, E_ER2_REGNUM = E_R2_REGNUM, E_ARGLAST_REGNUM = E_R2_REGNUM,
62 E_R3_REGNUM, E_ER3_REGNUM = E_R3_REGNUM,
63 E_R4_REGNUM, E_ER4_REGNUM = E_R4_REGNUM,
64 E_R5_REGNUM, E_ER5_REGNUM = E_R5_REGNUM,
65 E_R6_REGNUM, E_ER6_REGNUM = E_R6_REGNUM, E_FP_REGNUM = E_R6_REGNUM,
66 E_SP_REGNUM,
67 E_CCR_REGNUM,
68 E_PC_REGNUM,
69 E_CYCLES_REGNUM,
70 E_TICK_REGNUM, E_EXR_REGNUM = E_TICK_REGNUM,
71 E_INST_REGNUM, E_TICKS_REGNUM = E_INST_REGNUM,
72 E_INSTS_REGNUM
73};
c906108c
SS
74
75#define UNSIGNED_SHORT(X) ((X) & 0xffff)
76
77#define IS_PUSH(x) ((x & 0xfff0)==0x6df0)
78#define IS_PUSH_FP(x) (x == 0x6df6)
79#define IS_MOVE_FP(x) (x == 0x0d76 || x == 0x0ff6)
80#define IS_MOV_SP_FP(x) (x == 0x0d76 || x == 0x0ff6)
81#define IS_SUB2_SP(x) (x==0x1b87)
82#define IS_SUB4_SP(x) (x==0x1b97)
83#define IS_SUBL_SP(x) (x==0x7a37)
84#define IS_MOVK_R5(x) (x==0x7905)
85#define IS_SUB_R5SP(x) (x==0x1957)
86
928e48af
CV
87/* If the instruction at PC is an argument register spill, return its
88 length. Otherwise, return zero.
c906108c 89
928e48af
CV
90 An argument register spill is an instruction that moves an argument
91 from the register in which it was passed to the stack slot in which
92 it really lives. It is a byte, word, or longword move from an
93 argument register to a negative offset from the frame pointer. */
c906108c 94
928e48af
CV
95static int
96h8300_is_argument_spill (CORE_ADDR pc)
97{
98 int w = read_memory_unsigned_integer (pc, 2);
99
100 if ((w & 0xfff0) == 0x6ee0 /* mov.b Rs,@(d:16,er6) */
101 && 8 <= (w & 0xf) && (w & 0xf) <= 10) /* Rs is R0L, R1L, or R2L */
102 {
103 int w2 = read_memory_integer (pc + 2, 2);
104
105 /* ... and d:16 is negative. */
106 if (w2 < 0)
107 return 4;
108 }
109 else if (w == 0x7860)
110 {
111 int w2 = read_memory_integer (pc + 2, 2);
c906108c 112
928e48af
CV
113 if ((w2 & 0xfff0) == 0x6aa0) /* mov.b Rs, @(d:24,er6) */
114 {
115 LONGEST disp = read_memory_integer (pc + 4, 4);
c906108c 116
928e48af
CV
117 /* ... and d:24 is negative. */
118 if (disp < 0 && disp > 0xffffff)
119 return 8;
120 }
121 }
122 else if ((w & 0xfff0) == 0x6fe0 /* mov.w Rs,@(d:16,er6) */
123 && (w & 0xf) <= 2) /* Rs is R0, R1, or R2 */
124 {
125 int w2 = read_memory_integer (pc + 2, 2);
c906108c 126
928e48af
CV
127 /* ... and d:16 is negative. */
128 if (w2 < 0)
129 return 4;
130 }
131 else if (w == 0x78e0)
132 {
133 int w2 = read_memory_integer (pc + 2, 2);
c906108c 134
928e48af
CV
135 if ((w2 & 0xfff0) == 0x6ba0) /* mov.b Rs, @(d:24,er6) */
136 {
137 LONGEST disp = read_memory_integer (pc + 4, 4);
138
139 /* ... and d:24 is negative. */
140 if (disp < 0 && disp > 0xffffff)
141 return 8;
142 }
143 }
144 else if (w == 0x0100)
145 {
146 int w2 = read_memory_integer (pc + 2, 2);
147
148 if ((w2 & 0xfff0) == 0x6fe0 /* mov.l Rs,@(d:16,er6) */
149 && (w2 & 0xf) <= 2) /* Rs is ER0, ER1, or ER2 */
150 {
151 int w3 = read_memory_integer (pc + 4, 2);
152
153 /* ... and d:16 is negative. */
154 if (w3 < 0)
155 return 6;
156 }
157 else if (w2 == 0x78e0)
158 {
159 int w3 = read_memory_integer (pc + 4, 2);
160
161 if ((w3 & 0xfff0) == 0x6ba0) /* mov.l Rs, @(d:24,er6) */
162 {
163 LONGEST disp = read_memory_integer (pc + 6, 4);
164
165 /* ... and d:24 is negative. */
166 if (disp < 0 && disp > 0xffffff)
167 return 10;
168 }
169 }
170 }
171
172 return 0;
173}
174
175static CORE_ADDR
fba45db2 176h8300_skip_prologue (CORE_ADDR start_pc)
c906108c
SS
177{
178 short int w;
179 int adjust = 0;
180
181 /* Skip past all push and stm insns. */
182 while (1)
183 {
184 w = read_memory_unsigned_integer (start_pc, 2);
185 /* First look for push insns. */
186 if (w == 0x0100 || w == 0x0110 || w == 0x0120 || w == 0x0130)
187 {
188 w = read_memory_unsigned_integer (start_pc + 2, 2);
189 adjust = 2;
190 }
191
192 if (IS_PUSH (w))
193 {
194 start_pc += 2 + adjust;
195 w = read_memory_unsigned_integer (start_pc, 2);
196 continue;
197 }
198 adjust = 0;
199 break;
200 }
201
202 /* Skip past a move to FP, either word or long sized */
203 w = read_memory_unsigned_integer (start_pc, 2);
204 if (w == 0x0100)
205 {
206 w = read_memory_unsigned_integer (start_pc + 2, 2);
207 adjust += 2;
208 }
209
210 if (IS_MOVE_FP (w))
211 {
212 start_pc += 2 + adjust;
213 w = read_memory_unsigned_integer (start_pc, 2);
214 }
215
216 /* Check for loading either a word constant into r5;
217 long versions are handled by the SUBL_SP below. */
218 if (IS_MOVK_R5 (w))
219 {
220 start_pc += 2;
221 w = read_memory_unsigned_integer (start_pc, 2);
222 }
223
224 /* Now check for subtracting r5 from sp, word sized only. */
225 if (IS_SUB_R5SP (w))
226 {
227 start_pc += 2 + adjust;
228 w = read_memory_unsigned_integer (start_pc, 2);
229 }
230
231 /* Check for subs #2 and subs #4. */
232 while (IS_SUB2_SP (w) || IS_SUB4_SP (w))
233 {
234 start_pc += 2 + adjust;
235 w = read_memory_unsigned_integer (start_pc, 2);
236 }
237
238 /* Check for a 32bit subtract. */
239 if (IS_SUBL_SP (w))
240 start_pc += 6 + adjust;
241
928e48af
CV
242 /* Check for spilling an argument register to the stack frame.
243 This could also be an initializing store from non-prologue code,
244 but I don't think there's any harm in skipping that. */
245 for (;;)
246 {
247 int spill_size = h8300_is_argument_spill (start_pc);
248 if (spill_size == 0)
249 break;
250 start_pc += spill_size;
251 }
252
c906108c
SS
253 return start_pc;
254}
255
928e48af 256static int
7e78f0ca 257gdb_print_insn_h8300 (bfd_vma memaddr, disassemble_info * info)
c906108c
SS
258{
259 if (h8300smode)
260 return print_insn_h8300s (memaddr, info);
261 else if (h8300hmode)
262 return print_insn_h8300h (memaddr, info);
263 else
264 return print_insn_h8300 (memaddr, info);
265}
266
c906108c
SS
267/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
268 is not the address of a valid instruction, the address of the next
269 instruction beyond ADDR otherwise. *PWORD1 receives the first word
c5aa993b 270 of the instruction. */
c906108c 271
928e48af 272static CORE_ADDR
884a26c8
MS
273h8300_next_prologue_insn (CORE_ADDR addr,
274 CORE_ADDR lim,
275 unsigned short* pword1)
c906108c
SS
276{
277 char buf[2];
278 if (addr < lim + 8)
279 {
280 read_memory (addr, buf, 2);
281 *pword1 = extract_signed_integer (buf, 2);
282
283 return addr + 2;
284 }
285 return 0;
286}
287
288/* Examine the prologue of a function. `ip' points to the first instruction.
289 `limit' is the limit of the prologue (e.g. the addr of the first
290 linenumber, or perhaps the program counter if we're stepping through).
291 `frame_sp' is the stack pointer value in use in this frame.
292 `fsr' is a pointer to a frame_saved_regs structure into which we put
293 info about the registers saved by this frame.
294 `fi' is a struct frame_info pointer; we fill in various fields in it
295 to reflect the offsets of the arg pointer and the locals pointer. */
296
928e48af
CV
297/* Any function with a frame looks like this
298 SECOND ARG
299 FIRST ARG
300 RET PC
301 SAVED R2
302 SAVED R3
303 SAVED FP <-FP POINTS HERE
304 LOCALS0
305 LOCALS1 <-SP POINTS HERE
306 */
307
c906108c 308static CORE_ADDR
928e48af
CV
309h8300_examine_prologue (register CORE_ADDR ip, register CORE_ADDR limit,
310 CORE_ADDR after_prolog_fp, CORE_ADDR *fsr,
311 struct frame_info *fi)
c906108c
SS
312{
313 register CORE_ADDR next_ip;
314 int r;
315 int have_fp = 0;
928e48af 316 unsigned short insn_word;
c906108c
SS
317 /* Number of things pushed onto stack, starts at 2/4, 'cause the
318 PC is already there */
928e48af 319 unsigned int reg_save_depth = BINWORD;
c906108c
SS
320
321 unsigned int auto_depth = 0; /* Number of bytes of autos */
322
323 char in_frame[11]; /* One for each reg */
324
325 int adjust = 0;
326
327 memset (in_frame, 1, 11);
328 for (r = 0; r < 8; r++)
329 {
928e48af 330 fsr[r] = 0;
c906108c
SS
331 }
332 if (after_prolog_fp == 0)
333 {
928e48af 334 after_prolog_fp = read_register (E_SP_REGNUM);
c906108c
SS
335 }
336
337 /* If the PC isn't valid, quit now. */
338 if (ip == 0 || ip & (h8300hmode ? ~0xffffff : ~0xffff))
339 return 0;
340
d1a8e808 341 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
342
343 if (insn_word == 0x0100)
344 {
345 insn_word = read_memory_unsigned_integer (ip + 2, 2);
346 adjust = 2;
347 }
348
349 /* Skip over any fp push instructions */
928e48af 350 fsr[E_FP_REGNUM] = after_prolog_fp;
c906108c
SS
351 while (next_ip && IS_PUSH_FP (insn_word))
352 {
353 ip = next_ip + adjust;
354
355 in_frame[insn_word & 0x7] = reg_save_depth;
d1a8e808 356 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
357 reg_save_depth += 2 + adjust;
358 }
359
360 /* Is this a move into the fp */
361 if (next_ip && IS_MOV_SP_FP (insn_word))
362 {
363 ip = next_ip;
d1a8e808 364 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
365 have_fp = 1;
366 }
367
368 /* Skip over any stack adjustment, happens either with a number of
369 sub#2,sp or a mov #x,r5 sub r5,sp */
370
371 if (next_ip && (IS_SUB2_SP (insn_word) || IS_SUB4_SP (insn_word)))
372 {
373 while (next_ip && (IS_SUB2_SP (insn_word) || IS_SUB4_SP (insn_word)))
374 {
375 auto_depth += IS_SUB2_SP (insn_word) ? 2 : 4;
376 ip = next_ip;
d1a8e808 377 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
378 }
379 }
380 else
381 {
382 if (next_ip && IS_MOVK_R5 (insn_word))
383 {
384 ip = next_ip;
d1a8e808 385 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
386 auto_depth += insn_word;
387
d1a8e808 388 next_ip = h8300_next_prologue_insn (next_ip, limit, &insn_word);
c906108c
SS
389 auto_depth += insn_word;
390 }
391 if (next_ip && IS_SUBL_SP (insn_word))
392 {
393 ip = next_ip;
394 auto_depth += read_memory_unsigned_integer (ip, 4);
395 ip += 4;
396
d1a8e808 397 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
398 }
399 }
400
401 /* Now examine the push insns to determine where everything lives
402 on the stack. */
403 while (1)
404 {
405 adjust = 0;
406 if (!next_ip)
407 break;
408
409 if (insn_word == 0x0100)
410 {
411 ip = next_ip;
d1a8e808 412 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
413 adjust = 2;
414 }
415
416 if (IS_PUSH (insn_word))
417 {
ddd216ea
CV
418 auto_depth += 2 + adjust;
419 fsr[insn_word & 0x7] = after_prolog_fp - auto_depth;
c906108c 420 ip = next_ip;
d1a8e808 421 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
422 continue;
423 }
424
425 /* Now check for push multiple insns. */
426 if (insn_word == 0x0110 || insn_word == 0x0120 || insn_word == 0x0130)
427 {
428 int count = ((insn_word >> 4) & 0xf) + 1;
429 int start, i;
430
431 ip = next_ip;
d1a8e808 432 next_ip = h8300_next_prologue_insn (ip, limit, &insn_word);
c906108c
SS
433 start = insn_word & 0x7;
434
6d305052 435 for (i = start; i < start + count; i++)
c906108c 436 {
c906108c 437 auto_depth += 4;
ddd216ea 438 fsr[i] = after_prolog_fp - auto_depth;
c906108c
SS
439 }
440 }
441 break;
442 }
443
444 /* The args are always reffed based from the stack pointer */
da50a4b7 445 get_frame_extra_info (fi)->args_pointer = after_prolog_fp;
c906108c 446 /* Locals are always reffed based from the fp */
da50a4b7 447 get_frame_extra_info (fi)->locals_pointer = after_prolog_fp;
c906108c 448 /* The PC is at a known place */
da50a4b7 449 get_frame_extra_info (fi)->from_pc =
7e78f0ca 450 read_memory_unsigned_integer (after_prolog_fp + BINWORD, BINWORD);
c906108c
SS
451
452 /* Rememeber any others too */
928e48af 453 in_frame[E_PC_REGNUM] = 0;
c5aa993b 454
c906108c
SS
455 if (have_fp)
456 /* We keep the old FP in the SP spot */
884a26c8
MS
457 fsr[E_SP_REGNUM] = read_memory_unsigned_integer (fsr[E_FP_REGNUM],
458 BINWORD);
c906108c 459 else
928e48af 460 fsr[E_SP_REGNUM] = after_prolog_fp + auto_depth;
c906108c
SS
461
462 return (ip);
463}
464
928e48af
CV
465static void
466h8300_frame_init_saved_regs (struct frame_info *fi)
c906108c 467{
928e48af
CV
468 CORE_ADDR func_addr, func_end;
469
b2fb4676 470 if (!get_frame_saved_regs (fi))
928e48af
CV
471 {
472 frame_saved_regs_zalloc (fi);
473
474 /* Find the beginning of this function, so we can analyze its
475 prologue. */
884a26c8
MS
476 if (find_pc_partial_function (get_frame_pc (fi), NULL,
477 &func_addr, &func_end))
928e48af
CV
478 {
479 struct symtab_and_line sal = find_pc_line (func_addr, 0);
884a26c8
MS
480 CORE_ADDR limit = (sal.end && sal.end < get_frame_pc (fi))
481 ? sal.end : get_frame_pc (fi);
928e48af 482 /* This will fill in fields in fi. */
1e2330ba
AC
483 h8300_examine_prologue (func_addr, limit, get_frame_base (fi),
484 get_frame_saved_regs (fi), fi);
928e48af
CV
485 }
486 /* Else we're out of luck (can't debug completely stripped code).
487 FIXME. */
488 }
489}
490
a5afb99f
AC
491/* Given a GDB frame, determine the address of the calling function's
492 frame. This will be used to create a new GDB frame struct, and
e9582e71
AC
493 then DEPRECATED_INIT_EXTRA_FRAME_INFO and DEPRECATED_INIT_FRAME_PC
494 will be called for the new frame.
928e48af
CV
495
496 For us, the frame address is its stack pointer value, so we look up
884a26c8
MS
497 the function prologue to determine the caller's sp value, and
498 return it. */
928e48af
CV
499
500static CORE_ADDR
501h8300_frame_chain (struct frame_info *thisframe)
502{
1e2330ba
AC
503 if (DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (thisframe),
504 get_frame_base (thisframe),
505 get_frame_base (thisframe)))
928e48af 506 { /* initialize the from_pc now */
da50a4b7 507 get_frame_extra_info (thisframe)->from_pc =
1e2330ba
AC
508 deprecated_read_register_dummy (get_frame_pc (thisframe),
509 get_frame_base (thisframe),
135c175f 510 E_PC_REGNUM);
1e2330ba 511 return get_frame_base (thisframe);
c906108c 512 }
b2fb4676 513 return get_frame_saved_regs (thisframe)[E_SP_REGNUM];
c906108c
SS
514}
515
516/* Return the saved PC from this frame.
517
518 If the frame has a memory copy of SRP_REGNUM, use that. If not,
519 just use the register SRP_REGNUM itself. */
520
928e48af 521static CORE_ADDR
fba45db2 522h8300_frame_saved_pc (struct frame_info *frame)
c906108c 523{
1e2330ba
AC
524 if (DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (frame),
525 get_frame_base (frame),
526 get_frame_base (frame)))
527 return deprecated_read_register_dummy (get_frame_pc (frame),
528 get_frame_base (frame),
135c175f 529 E_PC_REGNUM);
c906108c 530 else
da50a4b7 531 return get_frame_extra_info (frame)->from_pc;
c906108c
SS
532}
533
928e48af
CV
534static void
535h8300_init_extra_frame_info (int fromleaf, struct frame_info *fi)
536{
da50a4b7 537 if (!get_frame_extra_info (fi))
928e48af 538 {
a00a19e9 539 frame_extra_info_zalloc (fi, sizeof (struct frame_extra_info));
da50a4b7 540 get_frame_extra_info (fi)->from_pc = 0;
884a26c8 541 get_frame_extra_info (fi)->args_pointer = 0; /* Unknown */
da50a4b7 542 get_frame_extra_info (fi)->locals_pointer = 0; /* Unknown */
928e48af 543
50abf9e5 544 if (!get_frame_pc (fi))
928e48af 545 {
11c02a10
AC
546 if (get_next_frame (fi))
547 deprecated_update_frame_pc_hack (fi, h8300_frame_saved_pc (get_next_frame (fi)));
928e48af
CV
548 }
549 h8300_frame_init_saved_regs (fi);
550 }
551}
552
553static CORE_ADDR
7256e1a5 554h8300_frame_locals_address (struct frame_info *fi)
c906108c 555{
1e2330ba
AC
556 if (DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (fi), get_frame_base (fi),
557 get_frame_base (fi)))
c906108c 558 return (CORE_ADDR) 0; /* Not sure what else to do... */
da50a4b7 559 return get_frame_extra_info (fi)->locals_pointer;
c906108c
SS
560}
561
562/* Return the address of the argument block for the frame
563 described by FI. Returns 0 if the address is unknown. */
564
928e48af 565static CORE_ADDR
7256e1a5 566h8300_frame_args_address (struct frame_info *fi)
c906108c 567{
1e2330ba
AC
568 if (DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (fi), get_frame_base (fi),
569 get_frame_base (fi)))
c906108c 570 return (CORE_ADDR) 0; /* Not sure what else to do... */
da50a4b7 571 return get_frame_extra_info (fi)->args_pointer;
c906108c
SS
572}
573
928e48af
CV
574/* Round N up or down to the nearest multiple of UNIT.
575 Evaluate N only once, UNIT several times.
576 UNIT must be a power of two. */
577#define round_up(n, unit) (((n) + (unit) - 1) & -(unit))
578#define round_down(n, unit) ((n) & -(unit))
579
c906108c
SS
580/* Function: push_arguments
581 Setup the function arguments for calling a function in the inferior.
928e48af
CV
582 In this discussion, a `word' is 16 bits on the H8/300s, and 32 bits
583 on the H8/300H.
584
585 There are actually two ABI's here: -mquickcall (the default) and
586 -mno-quickcall. With -mno-quickcall, all arguments are passed on
587 the stack after the return address, word-aligned. With
588 -mquickcall, GCC tries to use r0 -- r2 to pass registers. Since
589 GCC doesn't indicate in the object file which ABI was used to
590 compile it, GDB only supports the default --- -mquickcall.
591
592 Here are the rules for -mquickcall, in detail:
593
594 Each argument, whether scalar or aggregate, is padded to occupy a
595 whole number of words. Arguments smaller than a word are padded at
596 the most significant end; those larger than a word are padded at
597 the least significant end.
598
599 The initial arguments are passed in r0 -- r2. Earlier arguments go in
600 lower-numbered registers. Multi-word arguments are passed in
601 consecutive registers, with the most significant end in the
602 lower-numbered register.
603
604 If an argument doesn't fit entirely in the remaining registers, it
605 is passed entirely on the stack. Stack arguments begin just after
606 the return address. Once an argument has overflowed onto the stack
607 this way, all subsequent arguments are passed on the stack.
608
609 The above rule has odd consequences. For example, on the h8/300s,
610 if a function takes two longs and an int as arguments:
611 - the first long will be passed in r0/r1,
612 - the second long will be passed entirely on the stack, since it
613 doesn't fit in r2,
614 - and the int will be passed on the stack, even though it could fit
615 in r2.
616
617 A weird exception: if an argument is larger than a word, but not a
618 whole number of words in length (before padding), it is passed on
619 the stack following the rules for stack arguments above, even if
620 there are sufficient registers available to hold it. Stranger
621 still, the argument registers are still `used up' --- even though
622 there's nothing in them.
623
624 So, for example, on the h8/300s, if a function expects a three-byte
625 structure and an int, the structure will go on the stack, and the
626 int will go in r2, not r0.
627
628 If the function returns an aggregate type (struct, union, or class)
629 by value, the caller must allocate space to hold the return value,
630 and pass the callee a pointer to this space as an invisible first
631 argument, in R0.
632
633 For varargs functions, the last fixed argument and all the variable
634 arguments are always passed on the stack. This means that calls to
635 varargs functions don't work properly unless there is a prototype
636 in scope.
637
638 Basically, this ABI is not good, for the following reasons:
639 - You can't call vararg functions properly unless a prototype is in scope.
640 - Structure passing is inconsistent, to no purpose I can see.
641 - It often wastes argument registers, of which there are only three
642 to begin with. */
c906108c 643
928e48af 644static CORE_ADDR
fba45db2 645h8300_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
928e48af 646 int struct_return, CORE_ADDR struct_addr)
c906108c
SS
647{
648 int stack_align, stack_alloc, stack_offset;
928e48af
CV
649 int wordsize = BINWORD;
650 int reg;
651 int argument;
652
653 /* First, make sure the stack is properly aligned. */
654 sp = round_down (sp, wordsize);
655
656 /* Now make sure there's space on the stack for the arguments. We
657 may over-allocate a little here, but that won't hurt anything. */
658 stack_alloc = 0;
659 for (argument = 0; argument < nargs; argument++)
660 stack_alloc += round_up (TYPE_LENGTH (VALUE_TYPE (args[argument])),
661 wordsize);
662 sp -= stack_alloc;
663
664 /* Now load as many arguments as possible into registers, and push
665 the rest onto the stack. */
666 reg = E_ARG0_REGNUM;
667 stack_offset = 0;
668
669 /* If we're returning a structure by value, then we must pass a
670 pointer to the buffer for the return value as an invisible first
671 argument. */
672 if (struct_return)
673 write_register (reg++, struct_addr);
674
675 for (argument = 0; argument < nargs; argument++)
c906108c 676 {
928e48af
CV
677 struct type *type = VALUE_TYPE (args[argument]);
678 int len = TYPE_LENGTH (type);
679 char *contents = (char *) VALUE_CONTENTS (args[argument]);
680
681 /* Pad the argument appropriately. */
682 int padded_len = round_up (len, wordsize);
683 char *padded = alloca (padded_len);
684
685 memset (padded, 0, padded_len);
686 memcpy (len < wordsize ? padded + padded_len - len : padded,
687 contents, len);
688
689 /* Could the argument fit in the remaining registers? */
690 if (padded_len <= (E_ARGLAST_REGNUM - reg + 1) * wordsize)
691 {
692 /* Are we going to pass it on the stack anyway, for no good
693 reason? */
694 if (len > wordsize && len % wordsize)
695 {
696 /* I feel so unclean. */
697 write_memory (sp + stack_offset, padded, padded_len);
698 stack_offset += padded_len;
699
700 /* That's right --- even though we passed the argument
701 on the stack, we consume the registers anyway! Love
702 me, love my dog. */
703 reg += padded_len / wordsize;
704 }
705 else
706 {
707 /* Heavens to Betsy --- it's really going in registers!
708 It would be nice if we could use write_register_bytes
709 here, but on the h8/300s, there are gaps between
710 the registers in the register file. */
711 int offset;
712
713 for (offset = 0; offset < padded_len; offset += wordsize)
714 {
884a26c8
MS
715 ULONGEST word = extract_unsigned_integer (padded + offset,
716 wordsize);
928e48af
CV
717 write_register (reg++, word);
718 }
719 }
720 }
c906108c 721 else
928e48af
CV
722 {
723 /* It doesn't fit in registers! Onto the stack it goes. */
724 write_memory (sp + stack_offset, padded, padded_len);
725 stack_offset += padded_len;
726
727 /* Once one argument has spilled onto the stack, all
728 subsequent arguments go on the stack. */
729 reg = E_ARGLAST_REGNUM + 1;
730 }
c906108c 731 }
928e48af 732
c906108c
SS
733 return sp;
734}
735
736/* Function: push_return_address
737 Setup the return address for a dummy frame, as called by
738 call_function_by_hand. Only necessary when you are using an
739 empty CALL_DUMMY, ie. the target will not actually be executing
740 a JSR/BSR instruction. */
741
928e48af 742static CORE_ADDR
fba45db2 743h8300_push_return_address (CORE_ADDR pc, CORE_ADDR sp)
c906108c
SS
744{
745 unsigned char buf[4];
928e48af 746 int wordsize = BINWORD;
c906108c
SS
747
748 sp -= wordsize;
749 store_unsigned_integer (buf, wordsize, CALL_DUMMY_ADDRESS ());
750 write_memory (sp, buf, wordsize);
751 return sp;
752}
753
7256e1a5 754/* Function: h8300_pop_frame
c906108c
SS
755 Restore the machine to the state it had before the current frame
756 was created. Usually used either by the "RETURN" command, or by
757 call_function_by_hand after the dummy_frame is finished. */
758
928e48af 759static void
fba45db2 760h8300_pop_frame (void)
c906108c 761{
928e48af 762 unsigned regno;
c906108c
SS
763 struct frame_info *frame = get_current_frame ();
764
1e2330ba
AC
765 if (DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (frame),
766 get_frame_base (frame),
767 get_frame_base (frame)))
c906108c 768 {
c5aa993b 769 generic_pop_dummy_frame ();
c906108c
SS
770 }
771 else
772 {
928e48af 773 for (regno = 0; regno < 8; regno++)
c906108c 774 {
928e48af 775 /* Don't forget E_SP_REGNUM is a frame_saved_regs struct is the
c906108c 776 actual value we want, not the address of the value we want. */
b2fb4676 777 if (get_frame_saved_regs (frame)[regno] && regno != E_SP_REGNUM)
928e48af 778 write_register (regno,
884a26c8
MS
779 read_memory_integer
780 (get_frame_saved_regs (frame)[regno], BINWORD));
b2fb4676 781 else if (get_frame_saved_regs (frame)[regno] && regno == E_SP_REGNUM)
1e2330ba 782 write_register (regno, get_frame_base (frame) + 2 * BINWORD);
c906108c
SS
783 }
784
928e48af 785 /* Don't forget to update the PC too! */
da50a4b7 786 write_register (E_PC_REGNUM, get_frame_extra_info (frame)->from_pc);
c906108c
SS
787 }
788 flush_cached_frames ();
789}
790
791/* Function: extract_return_value
792 Figure out where in REGBUF the called function has left its return value.
793 Copy that into VALBUF. Be sure to account for CPU type. */
794
928e48af 795static void
fba45db2 796h8300_extract_return_value (struct type *type, char *regbuf, char *valbuf)
c906108c 797{
928e48af
CV
798 int wordsize = BINWORD;
799 int len = TYPE_LENGTH (type);
c5aa993b
JM
800
801 switch (len)
802 {
803 case 1: /* (char) */
804 case 2: /* (short), (int) */
805 memcpy (valbuf, regbuf + REGISTER_BYTE (0) + (wordsize - len), len);
806 break;
807 case 4: /* (long), (float) */
928e48af 808 if (wordsize == 4)
c5aa993b
JM
809 {
810 memcpy (valbuf, regbuf + REGISTER_BYTE (0), 4);
811 }
812 else
813 {
814 memcpy (valbuf, regbuf + REGISTER_BYTE (0), 2);
815 memcpy (valbuf + 2, regbuf + REGISTER_BYTE (1), 2);
816 }
817 break;
884a26c8
MS
818 case 8: /* (double) (doesn't seem to happen, which is good,
819 because this almost certainly isn't right.
820 FIXME: it will happen for h8sx... */
c5aa993b
JM
821 error ("I don't know how a double is returned.");
822 break;
823 }
c906108c
SS
824}
825
826/* Function: store_return_value
827 Place the appropriate value in the appropriate registers.
828 Primarily used by the RETURN command. */
829
928e48af 830static void
fba45db2 831h8300_store_return_value (struct type *type, char *valbuf)
c906108c 832{
928e48af
CV
833 int regval;
834 int wordsize = BINWORD;
835 int len = TYPE_LENGTH (type);
c906108c 836
c5aa993b
JM
837 switch (len)
838 {
839 case 1: /* char */
840 case 2: /* short, int */
7c0b4a20 841 regval = extract_unsigned_integer (valbuf, len);
c5aa993b
JM
842 write_register (0, regval);
843 break;
844 case 4: /* long, float */
7c0b4a20 845 regval = extract_unsigned_integer (valbuf, len);
928e48af 846 if (wordsize == 4)
c5aa993b
JM
847 {
848 write_register (0, regval);
849 }
850 else
851 {
852 write_register (0, regval >> 16);
853 write_register (1, regval & 0xffff);
854 }
855 break;
884a26c8 856 case 8: /* presumeably double, but doesn't seem to happen */
c5aa993b
JM
857 error ("I don't know how to return a double.");
858 break;
859 }
c906108c
SS
860}
861
928e48af 862static struct cmd_list_element *setmachinelist;
c906108c 863
928e48af
CV
864static const char *
865h8300_register_name (int regno)
c906108c 866{
928e48af
CV
867 /* The register names change depending on whether the h8300h processor
868 type is selected. */
869 static char *h8300_register_names[] = {
870 "r0", "r1", "r2", "r3", "r4", "r5", "r6",
871 "sp", "ccr","pc","cycles", "tick", "inst", ""
872 };
873 static char *h8300s_register_names[] = {
874 "er0", "er1", "er2", "er3", "er4", "er5", "er6",
875 "sp", "ccr", "pc", "cycles", "exr", "tick", "inst"
876 };
877 char **register_names =
878 h8300smode ? h8300s_register_names : h8300_register_names;
879 if (regno < 0 || regno >= E_NUM_REGS)
880 internal_error (__FILE__, __LINE__,
881 "h8300_register_name: illegal register number %d", regno);
c906108c 882 else
928e48af 883 return register_names[regno];
c906108c
SS
884}
885
886static void
4904ba5b
AC
887h8300_print_register (struct gdbarch *gdbarch, struct ui_file *file,
888 struct frame_info *frame, int regno)
c906108c 889{
4904ba5b
AC
890 ULONGEST rval;
891 long val;
928e48af 892 const char *name = h8300_register_name (regno);
c906108c 893
928e48af
CV
894 if (!name || !*name)
895 return;
c906108c 896
4904ba5b
AC
897 /* FIXME: cagney/2002-10-22: The code below assumes that VAL is at
898 least 4 bytes (32 bits) in size and hence is large enough to hold
899 the largest h8300 register. Should instead be using ULONGEST and
900 the phex() functions. */
901 gdb_assert (sizeof (val) >= 4);
902 frame_read_unsigned_register (frame, regno, &rval);
903 val = rval;
904
905 fprintf_filtered (file, "%-14s ", name);
928e48af 906 if (h8300hmode)
c906108c 907 {
928e48af 908 if (val)
4904ba5b 909 fprintf_filtered (file, "0x%08lx %-8ld", val, val);
928e48af 910 else
4904ba5b 911 fprintf_filtered (file, "0x%-8lx %-8ld", val, val);
c906108c
SS
912 }
913 else
914 {
928e48af 915 if (val)
4904ba5b 916 fprintf_filtered (file, "0x%04lx %-4ld", val, val);
928e48af 917 else
4904ba5b 918 fprintf_filtered (file, "0x%-4lx %-4ld", val, val);
c906108c 919 }
928e48af 920 if (regno == E_CCR_REGNUM)
c906108c
SS
921 {
922 /* CCR register */
923 int C, Z, N, V;
928e48af 924 unsigned char b[h8300h_reg_size];
c906108c 925 unsigned char l;
6e7f8b9c 926 frame_register_read (deprecated_selected_frame, regno, b);
928e48af 927 l = b[REGISTER_VIRTUAL_SIZE (E_CCR_REGNUM) - 1];
4904ba5b
AC
928 fprintf_filtered (file, "\t");
929 fprintf_filtered (file, "I-%d ", (l & 0x80) != 0);
930 fprintf_filtered (file, "UI-%d ", (l & 0x40) != 0);
931 fprintf_filtered (file, "H-%d ", (l & 0x20) != 0);
932 fprintf_filtered (file, "U-%d ", (l & 0x10) != 0);
c906108c
SS
933 N = (l & 0x8) != 0;
934 Z = (l & 0x4) != 0;
935 V = (l & 0x2) != 0;
936 C = (l & 0x1) != 0;
4904ba5b
AC
937 fprintf_filtered (file, "N-%d ", N);
938 fprintf_filtered (file, "Z-%d ", Z);
939 fprintf_filtered (file, "V-%d ", V);
940 fprintf_filtered (file, "C-%d ", C);
c906108c 941 if ((C | Z) == 0)
4904ba5b 942 fprintf_filtered (file, "u> ");
c906108c 943 if ((C | Z) == 1)
4904ba5b 944 fprintf_filtered (file, "u<= ");
c906108c 945 if ((C == 0))
4904ba5b 946 fprintf_filtered (file, "u>= ");
c906108c 947 if (C == 1)
4904ba5b 948 fprintf_filtered (file, "u< ");
c906108c 949 if (Z == 0)
4904ba5b 950 fprintf_filtered (file, "!= ");
c906108c 951 if (Z == 1)
4904ba5b 952 fprintf_filtered (file, "== ");
c906108c 953 if ((N ^ V) == 0)
4904ba5b 954 fprintf_filtered (file, ">= ");
c906108c 955 if ((N ^ V) == 1)
4904ba5b 956 fprintf_filtered (file, "< ");
c906108c 957 if ((Z | (N ^ V)) == 0)
4904ba5b 958 fprintf_filtered (file, "> ");
c906108c 959 if ((Z | (N ^ V)) == 1)
4904ba5b 960 fprintf_filtered (file, "<= ");
c906108c 961 }
928e48af 962 else if (regno == E_EXR_REGNUM && h8300smode)
fc974602
AV
963 {
964 /* EXR register */
928e48af 965 unsigned char b[h8300h_reg_size];
fc974602 966 unsigned char l;
6e7f8b9c 967 frame_register_read (deprecated_selected_frame, regno, b);
928e48af 968 l = b[REGISTER_VIRTUAL_SIZE (E_EXR_REGNUM) - 1];
4904ba5b
AC
969 fprintf_filtered (file, "\t");
970 fprintf_filtered (file, "T-%d - - - ", (l & 0x80) != 0);
971 fprintf_filtered (file, "I2-%d ", (l & 4) != 0);
972 fprintf_filtered (file, "I1-%d ", (l & 2) != 0);
973 fprintf_filtered (file, "I0-%d", (l & 1) != 0);
d194345b 974 }
4904ba5b 975 fprintf_filtered (file, "\n");
928e48af
CV
976}
977
978static void
4904ba5b
AC
979h8300_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file,
980 struct frame_info *frame, int regno, int cpregs)
928e48af
CV
981{
982 if (regno < 0)
983 for (regno = 0; regno < E_NUM_REGS; ++regno)
4904ba5b 984 h8300_print_register (gdbarch, file, frame, regno);
928e48af 985 else
4904ba5b 986 h8300_print_register (gdbarch, file, frame, regno);
928e48af
CV
987}
988
989static CORE_ADDR
990h8300_saved_pc_after_call (struct frame_info *ignore)
991{
992 return read_memory_unsigned_integer (read_register (E_SP_REGNUM), BINWORD);
993}
994
995static int
996h8300_register_byte (int regno)
997{
998 if (regno < 0 || regno >= E_NUM_REGS)
999 internal_error (__FILE__, __LINE__,
1000 "h8300_register_byte: illegal register number %d", regno);
1001 else
1002 return regno * BINWORD;
1003}
1004
1005static int
1006h8300_register_raw_size (int regno)
1007{
1008 if (regno < 0 || regno >= E_NUM_REGS)
1009 internal_error (__FILE__, __LINE__,
1010 "h8300_register_raw_size: illegal register number %d",
1011 regno);
1012 else
1013 return BINWORD;
1014}
1015
1016static struct type *
1017h8300_register_virtual_type (int regno)
1018{
1019 if (regno < 0 || regno >= E_NUM_REGS)
1020 internal_error (__FILE__, __LINE__,
1021 "h8300_register_virtual_type: illegal register number %d",
1022 regno);
1023 else
1024 return h8300hmode ?
1025 builtin_type_unsigned_long : builtin_type_unsigned_short;
1026}
1027
1028static void
1029h8300_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
1030{
1031 write_register (0, addr);
1032}
1033
1034static int
1035h8300_use_struct_convention (int gcc_p, struct type *type)
1036{
1037 return 1;
1038}
1039
1040static CORE_ADDR
1041h8300_extract_struct_value_address (char *regbuf)
1042{
884a26c8
MS
1043 return
1044 extract_unsigned_integer (regbuf + h8300_register_byte (E_ARG0_REGNUM),
1045 h8300_register_raw_size (E_ARG0_REGNUM));
928e48af
CV
1046}
1047
1048const static unsigned char *
1049h8300_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
1050{
1051 /*static unsigned char breakpoint[] = { 0x7A, 0xFF };*/ /* ??? */
1052 static unsigned char breakpoint[] = { 0x01, 0x80 }; /* Sleep */
1053
1054 *lenptr = sizeof (breakpoint);
1055 return breakpoint;
1056}
1057
1058static void
1059h8300_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1060 struct frame_info *frame, const char *args)
1061{
1062 fprintf_filtered (file, "\
1063No floating-point info available for this processor.\n");
1064}
1065
1066static struct gdbarch *
1067h8300_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1068{
1069 static LONGEST call_dummy_words[1] = { 0 };
1070 struct gdbarch_tdep *tdep = NULL;
1071 struct gdbarch *gdbarch;
1072
1073 arches = gdbarch_list_lookup_by_info (arches, &info);
1074 if (arches != NULL)
1075 return arches->gdbarch;
1076
1077#if 0
1078 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
1079#endif
1080
1081 if (info.bfd_arch_info->arch != bfd_arch_h8300)
1082 return NULL;
1083
1084 switch (info.bfd_arch_info->mach)
1085 {
0a48e7e8
MS
1086 case bfd_mach_h8300:
1087 h8300sxmode = 0;
1088 h8300smode = 0;
1089 h8300hmode = 0;
1090 break;
1091 case bfd_mach_h8300h:
8efca6ba 1092 case bfd_mach_h8300hn:
0a48e7e8
MS
1093 h8300sxmode = 0;
1094 h8300smode = 0;
1095 h8300hmode = 1;
1096 break;
1097 case bfd_mach_h8300s:
8efca6ba 1098 case bfd_mach_h8300sn:
0a48e7e8
MS
1099 h8300sxmode = 0;
1100 h8300smode = 1;
1101 h8300hmode = 1;
1102 break;
1103 case bfd_mach_h8300sx:
1104 h8300sxmode = 1;
1105 h8300smode = 1;
1106 h8300hmode = 1;
1107 break;
928e48af
CV
1108 }
1109
1110 gdbarch = gdbarch_alloc (&info, 0);
1111
a5afb99f
AC
1112 /* NOTE: cagney/2002-12-06: This can be deleted when this arch is
1113 ready to unwind the PC first (see frame.c:get_prev_frame()). */
1114 set_gdbarch_deprecated_init_frame_pc (gdbarch, init_frame_pc_default);
1115
928e48af
CV
1116 /*
1117 * Basic register fields and methods.
1118 */
1119
1120 set_gdbarch_num_regs (gdbarch, E_NUM_REGS);
1121 set_gdbarch_num_pseudo_regs (gdbarch, 0);
1122 set_gdbarch_sp_regnum (gdbarch, E_SP_REGNUM);
0ba6dca9 1123 set_gdbarch_deprecated_fp_regnum (gdbarch, E_FP_REGNUM);
928e48af
CV
1124 set_gdbarch_pc_regnum (gdbarch, E_PC_REGNUM);
1125 set_gdbarch_register_name (gdbarch, h8300_register_name);
b1e29e33 1126 set_gdbarch_deprecated_register_size (gdbarch, BINWORD);
b8b527c5 1127 set_gdbarch_deprecated_register_bytes (gdbarch, E_NUM_REGS * BINWORD);
928e48af
CV
1128 set_gdbarch_register_byte (gdbarch, h8300_register_byte);
1129 set_gdbarch_register_raw_size (gdbarch, h8300_register_raw_size);
a0ed5532 1130 set_gdbarch_deprecated_max_register_raw_size (gdbarch, h8300h_reg_size);
928e48af 1131 set_gdbarch_register_virtual_size (gdbarch, h8300_register_raw_size);
a0ed5532 1132 set_gdbarch_deprecated_max_register_virtual_size (gdbarch, h8300h_reg_size);
928e48af 1133 set_gdbarch_register_virtual_type (gdbarch, h8300_register_virtual_type);
4904ba5b 1134 set_gdbarch_print_registers_info (gdbarch, h8300_print_registers_info);
928e48af
CV
1135 set_gdbarch_print_float_info (gdbarch, h8300_print_float_info);
1136
1137 /*
1138 * Frame Info
1139 */
884a26c8
MS
1140 set_gdbarch_deprecated_frame_init_saved_regs (gdbarch,
1141 h8300_frame_init_saved_regs);
1142 set_gdbarch_deprecated_init_extra_frame_info (gdbarch,
1143 h8300_init_extra_frame_info);
618ce49f 1144 set_gdbarch_deprecated_frame_chain (gdbarch, h8300_frame_chain);
884a26c8
MS
1145 set_gdbarch_deprecated_saved_pc_after_call (gdbarch,
1146 h8300_saved_pc_after_call);
8bedc050 1147 set_gdbarch_deprecated_frame_saved_pc (gdbarch, h8300_frame_saved_pc);
928e48af 1148 set_gdbarch_skip_prologue (gdbarch, h8300_skip_prologue);
928e48af
CV
1149 set_gdbarch_frame_args_address (gdbarch, h8300_frame_args_address);
1150 set_gdbarch_frame_locals_address (gdbarch, h8300_frame_locals_address);
1151
1152 /*
1153 * Miscelany
1154 */
1155 /* Stack grows up. */
1156 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1157 /* PC stops zero byte after a trap instruction
1158 (which means: exactly on trap instruction). */
1159 set_gdbarch_decr_pc_after_break (gdbarch, 0);
1160 /* This value is almost never non-zero... */
1161 set_gdbarch_function_start_offset (gdbarch, 0);
1162 /* This value is almost never non-zero... */
1163 set_gdbarch_frame_args_skip (gdbarch, 0);
928e48af
CV
1164 set_gdbarch_frameless_function_invocation (gdbarch,
1165 frameless_look_for_prologue);
1166
928e48af
CV
1167 /*
1168 * Call Dummies
1169 *
1170 * These values and methods are used when gdb calls a target function. */
884a26c8
MS
1171 set_gdbarch_deprecated_push_return_address (gdbarch,
1172 h8300_push_return_address);
1173 set_gdbarch_deprecated_extract_return_value (gdbarch,
1174 h8300_extract_return_value);
b81774d8 1175 set_gdbarch_deprecated_push_arguments (gdbarch, h8300_push_arguments);
749b82f6 1176 set_gdbarch_deprecated_pop_frame (gdbarch, h8300_pop_frame);
884a26c8
MS
1177 set_gdbarch_deprecated_store_struct_return (gdbarch,
1178 h8300_store_struct_return);
1179 set_gdbarch_deprecated_store_return_value (gdbarch,
1180 h8300_store_return_value);
1181 set_gdbarch_deprecated_extract_struct_value_address
1182 (gdbarch, h8300_extract_struct_value_address);
928e48af 1183 set_gdbarch_use_struct_convention (gdbarch, h8300_use_struct_convention);
b1e29e33
AC
1184 set_gdbarch_deprecated_call_dummy_words (gdbarch, call_dummy_words);
1185 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, 0);
928e48af
CV
1186 set_gdbarch_breakpoint_from_pc (gdbarch, h8300_breakpoint_from_pc);
1187
1188 set_gdbarch_int_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1189 set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1190 set_gdbarch_ptr_bit (gdbarch, BINWORD * TARGET_CHAR_BIT);
1191 set_gdbarch_addr_bit (gdbarch, BINWORD * TARGET_CHAR_BIT);
1192
5247b418 1193 /* set_gdbarch_stack_align (gdbarch, SOME_stack_align); */
928e48af
CV
1194 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
1195
6c0e89ed 1196 /* Should be using push_dummy_call. */
b46e02f6 1197 set_gdbarch_deprecated_dummy_write_sp (gdbarch, deprecated_write_sp);
6c0e89ed 1198
928e48af 1199 return gdbarch;
c906108c
SS
1200}
1201
1202void
fba45db2 1203_initialize_h8300_tdep (void)
c906108c 1204{
d7a27068 1205 deprecated_tm_print_insn = gdb_print_insn_h8300;
928e48af 1206 register_gdbarch_init (bfd_arch_h8300, h8300_gdbarch_init);
c906108c 1207}
This page took 0.330621 seconds and 4 git commands to generate.