2003-01-07 David Carlton <carlton@math.stanford.edu>
[deliverable/binutils-gdb.git] / gdb / mn10300-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for the Matsushita MN10300 for GDB, the GNU debugger.
cda5a58a 2
51603483 3 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software
cda5a58a 4 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#include "defs.h"
24#include "frame.h"
25#include "inferior.h"
c906108c
SS
26#include "target.h"
27#include "value.h"
28#include "bfd.h"
29#include "gdb_string.h"
30#include "gdbcore.h"
31#include "symfile.h"
4e052eda 32#include "regcache.h"
ad8fe2ce 33#include "arch-utils.h"
c906108c 34
6ca173e3
AC
35#define D0_REGNUM 0
36#define D2_REGNUM 2
37#define D3_REGNUM 3
38#define A0_REGNUM 4
39#define A2_REGNUM 6
40#define A3_REGNUM 7
41#define MDR_REGNUM 10
42#define PSW_REGNUM 11
43#define LIR_REGNUM 12
44#define LAR_REGNUM 13
45#define MDRQ_REGNUM 14
46#define E0_REGNUM 15
47#define MCRH_REGNUM 26
48#define MCRL_REGNUM 27
49#define MCVF_REGNUM 28
50
51enum movm_register_bits {
52 movm_exother_bit = 0x01,
53 movm_exreg1_bit = 0x02,
54 movm_exreg0_bit = 0x04,
55 movm_other_bit = 0x08,
56 movm_a3_bit = 0x10,
57 movm_a2_bit = 0x20,
58 movm_d3_bit = 0x40,
59 movm_d2_bit = 0x80
60};
61
c2c6d25f 62extern void _initialize_mn10300_tdep (void);
a14ed312
KB
63static CORE_ADDR mn10300_analyze_prologue (struct frame_info *fi,
64 CORE_ADDR pc);
c906108c 65
91225883
AC
66/* mn10300 private data */
67struct gdbarch_tdep
68{
69 int am33_mode;
70#define AM33_MODE (gdbarch_tdep (current_gdbarch)->am33_mode)
71};
72
c906108c
SS
73/* Additional info used by the frame */
74
75struct frame_extra_info
c5aa993b
JM
76 {
77 int status;
78 int stack_size;
79 };
c906108c 80
0f71a2f6 81
91225883
AC
82static char *
83register_name (int reg, char **regs, long sizeof_regs)
c2d11a7d 84{
91225883
AC
85 if (reg < 0 || reg >= sizeof_regs / sizeof (regs[0]))
86 return NULL;
87 else
88 return regs[reg];
89}
90
fa88f677 91static const char *
91225883 92mn10300_generic_register_name (int reg)
0f71a2f6 93{
91225883
AC
94 static char *regs[] =
95 { "d0", "d1", "d2", "d3", "a0", "a1", "a2", "a3",
96 "sp", "pc", "mdr", "psw", "lir", "lar", "", "",
97 "", "", "", "", "", "", "", "",
98 "", "", "", "", "", "", "", "fp"
99 };
100 return register_name (reg, regs, sizeof regs);
0f71a2f6
JM
101}
102
91225883 103
fa88f677 104static const char *
91225883
AC
105am33_register_name (int reg)
106{
107 static char *regs[] =
108 { "d0", "d1", "d2", "d3", "a0", "a1", "a2", "a3",
109 "sp", "pc", "mdr", "psw", "lir", "lar", "",
110 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
111 "ssp", "msp", "usp", "mcrh", "mcrl", "mcvf", "", "", ""
112 };
113 return register_name (reg, regs, sizeof regs);
114}
115
2ac51b36 116static CORE_ADDR
fba45db2 117mn10300_saved_pc_after_call (struct frame_info *fi)
0f71a2f6
JM
118{
119 return read_memory_integer (read_register (SP_REGNUM), 4);
120}
121
c064f384 122static void
fba45db2 123mn10300_extract_return_value (struct type *type, char *regbuf, char *valbuf)
0f71a2f6
JM
124{
125 if (TYPE_CODE (type) == TYPE_CODE_PTR)
126 memcpy (valbuf, regbuf + REGISTER_BYTE (4), TYPE_LENGTH (type));
127 else
128 memcpy (valbuf, regbuf + REGISTER_BYTE (0), TYPE_LENGTH (type));
129}
130
2ac51b36 131static CORE_ADDR
fba45db2 132mn10300_extract_struct_value_address (char *regbuf)
0f71a2f6
JM
133{
134 return extract_address (regbuf + REGISTER_BYTE (4),
135 REGISTER_RAW_SIZE (4));
136}
137
2ac51b36 138static void
fba45db2 139mn10300_store_return_value (struct type *type, char *valbuf)
0f71a2f6
JM
140{
141 if (TYPE_CODE (type) == TYPE_CODE_PTR)
73937e03
AC
142 deprecated_write_register_bytes (REGISTER_BYTE (4), valbuf,
143 TYPE_LENGTH (type));
0f71a2f6 144 else
73937e03
AC
145 deprecated_write_register_bytes (REGISTER_BYTE (0), valbuf,
146 TYPE_LENGTH (type));
0f71a2f6
JM
147}
148
a14ed312 149static struct frame_info *analyze_dummy_frame (CORE_ADDR, CORE_ADDR);
c906108c 150static struct frame_info *
fba45db2 151analyze_dummy_frame (CORE_ADDR pc, CORE_ADDR frame)
c906108c
SS
152{
153 static struct frame_info *dummy = NULL;
154 if (dummy == NULL)
155 {
a00a19e9 156 struct frame_extra_info *extra_info;
f6c609c4 157 dummy = deprecated_frame_xmalloc ();
c906108c 158 dummy->saved_regs = xmalloc (SIZEOF_FRAME_SAVED_REGS);
a00a19e9
AC
159 extra_info = XMALLOC (struct frame_extra_info);
160 deprecated_set_frame_extra_info_hack (dummy, extra_info);
c906108c
SS
161 }
162 dummy->next = NULL;
163 dummy->prev = NULL;
50abf9e5 164 deprecated_update_frame_pc_hack (dummy, pc);
b0c6b05c 165 deprecated_update_frame_base_hack (dummy, frame);
c906108c
SS
166 dummy->extra_info->status = 0;
167 dummy->extra_info->stack_size = 0;
b2fb4676 168 memset (get_frame_saved_regs (dummy), '\000', SIZEOF_FRAME_SAVED_REGS);
c906108c
SS
169 mn10300_analyze_prologue (dummy, 0);
170 return dummy;
171}
172
173/* Values for frame_info.status */
174
175#define MY_FRAME_IN_SP 0x1
176#define MY_FRAME_IN_FP 0x2
177#define NO_MORE_FRAMES 0x4
178
179
180/* Should call_function allocate stack space for a struct return? */
2ac51b36 181static int
fba45db2 182mn10300_use_struct_convention (int gcc_p, struct type *type)
c906108c
SS
183{
184 return (TYPE_NFIELDS (type) > 1 || TYPE_LENGTH (type) > 8);
185}
186
187/* The breakpoint instruction must be the same size as the smallest
188 instruction in the instruction set.
189
190 The Matsushita mn10x00 processors have single byte instructions
191 so we need a single byte breakpoint. Matsushita hasn't defined
192 one, so we defined it ourselves. */
193
f4f9705a 194const static unsigned char *
fba45db2 195mn10300_breakpoint_from_pc (CORE_ADDR *bp_addr, int *bp_size)
c906108c 196{
c5aa993b
JM
197 static char breakpoint[] =
198 {0xff};
c906108c
SS
199 *bp_size = 1;
200 return breakpoint;
201}
202
203
204/* Fix fi->frame if it's bogus at this point. This is a helper
205 function for mn10300_analyze_prologue. */
206
207static void
fba45db2 208fix_frame_pointer (struct frame_info *fi, int stack_size)
c906108c
SS
209{
210 if (fi && fi->next == NULL)
211 {
212 if (fi->extra_info->status & MY_FRAME_IN_SP)
b0c6b05c 213 deprecated_update_frame_base_hack (fi, read_sp () - stack_size);
c906108c 214 else if (fi->extra_info->status & MY_FRAME_IN_FP)
b0c6b05c 215 deprecated_update_frame_base_hack (fi, read_register (A3_REGNUM));
c906108c
SS
216 }
217}
218
219
220/* Set offsets of registers saved by movm instruction.
221 This is a helper function for mn10300_analyze_prologue. */
222
223static void
fba45db2 224set_movm_offsets (struct frame_info *fi, int movm_args)
c906108c
SS
225{
226 int offset = 0;
227
228 if (fi == NULL || movm_args == 0)
229 return;
230
ae83b20d
JB
231 if (movm_args & movm_other_bit)
232 {
233 /* The `other' bit leaves a blank area of four bytes at the
234 beginning of its block of saved registers, making it 32 bytes
235 long in total. */
b2fb4676
AC
236 get_frame_saved_regs (fi)[LAR_REGNUM] = fi->frame + offset + 4;
237 get_frame_saved_regs (fi)[LIR_REGNUM] = fi->frame + offset + 8;
238 get_frame_saved_regs (fi)[MDR_REGNUM] = fi->frame + offset + 12;
239 get_frame_saved_regs (fi)[A0_REGNUM + 1] = fi->frame + offset + 16;
240 get_frame_saved_regs (fi)[A0_REGNUM] = fi->frame + offset + 20;
241 get_frame_saved_regs (fi)[D0_REGNUM + 1] = fi->frame + offset + 24;
242 get_frame_saved_regs (fi)[D0_REGNUM] = fi->frame + offset + 28;
ae83b20d
JB
243 offset += 32;
244 }
245 if (movm_args & movm_a3_bit)
c906108c 246 {
b2fb4676 247 get_frame_saved_regs (fi)[A3_REGNUM] = fi->frame + offset;
c906108c
SS
248 offset += 4;
249 }
ae83b20d 250 if (movm_args & movm_a2_bit)
c906108c 251 {
b2fb4676 252 get_frame_saved_regs (fi)[A2_REGNUM] = fi->frame + offset;
c906108c
SS
253 offset += 4;
254 }
ae83b20d 255 if (movm_args & movm_d3_bit)
c906108c 256 {
b2fb4676 257 get_frame_saved_regs (fi)[D3_REGNUM] = fi->frame + offset;
c906108c
SS
258 offset += 4;
259 }
ae83b20d 260 if (movm_args & movm_d2_bit)
c906108c 261 {
b2fb4676 262 get_frame_saved_regs (fi)[D2_REGNUM] = fi->frame + offset;
c906108c
SS
263 offset += 4;
264 }
ae83b20d 265 if (AM33_MODE)
c2d11a7d 266 {
ae83b20d
JB
267 if (movm_args & movm_exother_bit)
268 {
b2fb4676
AC
269 get_frame_saved_regs (fi)[MCVF_REGNUM] = fi->frame + offset;
270 get_frame_saved_regs (fi)[MCRL_REGNUM] = fi->frame + offset + 4;
271 get_frame_saved_regs (fi)[MCRH_REGNUM] = fi->frame + offset + 8;
272 get_frame_saved_regs (fi)[MDRQ_REGNUM] = fi->frame + offset + 12;
273 get_frame_saved_regs (fi)[E0_REGNUM + 1] = fi->frame + offset + 16;
274 get_frame_saved_regs (fi)[E0_REGNUM + 0] = fi->frame + offset + 20;
ae83b20d
JB
275 offset += 24;
276 }
277 if (movm_args & movm_exreg1_bit)
278 {
b2fb4676
AC
279 get_frame_saved_regs (fi)[E0_REGNUM + 7] = fi->frame + offset;
280 get_frame_saved_regs (fi)[E0_REGNUM + 6] = fi->frame + offset + 4;
281 get_frame_saved_regs (fi)[E0_REGNUM + 5] = fi->frame + offset + 8;
282 get_frame_saved_regs (fi)[E0_REGNUM + 4] = fi->frame + offset + 12;
ae83b20d
JB
283 offset += 16;
284 }
285 if (movm_args & movm_exreg0_bit)
286 {
b2fb4676
AC
287 get_frame_saved_regs (fi)[E0_REGNUM + 3] = fi->frame + offset;
288 get_frame_saved_regs (fi)[E0_REGNUM + 2] = fi->frame + offset + 4;
ae83b20d
JB
289 offset += 8;
290 }
c2d11a7d 291 }
c906108c
SS
292}
293
294
295/* The main purpose of this file is dealing with prologues to extract
296 information about stack frames and saved registers.
297
4eab1e18
JB
298 In gcc/config/mn13000/mn10300.c, the expand_prologue prologue
299 function is pretty readable, and has a nice explanation of how the
300 prologue is generated. The prologues generated by that code will
03a0cf8a
JB
301 have the following form (NOTE: the current code doesn't handle all
302 this!):
c906108c 303
4eab1e18
JB
304 + If this is an old-style varargs function, then its arguments
305 need to be flushed back to the stack:
306
307 mov d0,(4,sp)
308 mov d1,(4,sp)
c906108c 309
4eab1e18
JB
310 + If we use any of the callee-saved registers, save them now.
311
312 movm [some callee-saved registers],(sp)
313
314 + If we have any floating-point registers to save:
315
316 - Decrement the stack pointer to reserve space for the registers.
317 If the function doesn't need a frame pointer, we may combine
318 this with the adjustment that reserves space for the frame.
319
320 add -SIZE, sp
321
322 - Save the floating-point registers. We have two possible
323 strategies:
324
325 . Save them at fixed offset from the SP:
326
327 fmov fsN,(OFFSETN,sp)
328 fmov fsM,(OFFSETM,sp)
329 ...
330
03a0cf8a
JB
331 Note that, if OFFSETN happens to be zero, you'll get the
332 different opcode: fmov fsN,(sp)
333
4eab1e18
JB
334 . Or, set a0 to the start of the save area, and then use
335 post-increment addressing to save the FP registers.
336
337 mov sp, a0
338 add SIZE, a0
339 fmov fsN,(a0+)
340 fmov fsM,(a0+)
341 ...
342
343 + If the function needs a frame pointer, we set it here.
344
345 mov sp, a3
346
347 + Now we reserve space for the stack frame proper. This could be
348 merged into the `add -SIZE, sp' instruction for FP saves up
349 above, unless we needed to set the frame pointer in the previous
350 step, or the frame is so large that allocating the whole thing at
351 once would put the FP register save slots out of reach of the
352 addressing mode (128 bytes).
353
354 add -SIZE, sp
c906108c
SS
355
356 One day we might keep the stack pointer constant, that won't
357 change the code for prologues, but it will make the frame
358 pointerless case much more common. */
c5aa993b 359
c906108c
SS
360/* Analyze the prologue to determine where registers are saved,
361 the end of the prologue, etc etc. Return the end of the prologue
362 scanned.
363
364 We store into FI (if non-null) several tidbits of information:
365
c5aa993b
JM
366 * stack_size -- size of this stack frame. Note that if we stop in
367 certain parts of the prologue/epilogue we may claim the size of the
368 current frame is zero. This happens when the current frame has
369 not been allocated yet or has already been deallocated.
c906108c 370
c5aa993b 371 * fsr -- Addresses of registers saved in the stack by this frame.
c906108c 372
c5aa993b
JM
373 * status -- A (relatively) generic status indicator. It's a bitmask
374 with the following bits:
c906108c 375
c5aa993b
JM
376 MY_FRAME_IN_SP: The base of the current frame is actually in
377 the stack pointer. This can happen for frame pointerless
378 functions, or cases where we're stopped in the prologue/epilogue
379 itself. For these cases mn10300_analyze_prologue will need up
380 update fi->frame before returning or analyzing the register
381 save instructions.
c906108c 382
c5aa993b 383 MY_FRAME_IN_FP: The base of the current frame is in the
4eab1e18 384 frame pointer register ($a3).
c906108c 385
c5aa993b
JM
386 NO_MORE_FRAMES: Set this if the current frame is "start" or
387 if the first instruction looks like mov <imm>,sp. This tells
388 frame chain to not bother trying to unwind past this frame. */
c906108c
SS
389
390static CORE_ADDR
fba45db2 391mn10300_analyze_prologue (struct frame_info *fi, CORE_ADDR pc)
c906108c
SS
392{
393 CORE_ADDR func_addr, func_end, addr, stop;
394 CORE_ADDR stack_size;
395 int imm_size;
396 unsigned char buf[4];
397 int status, movm_args = 0;
398 char *name;
399
400 /* Use the PC in the frame if it's provided to look up the
401 start of this function. */
50abf9e5 402 pc = (fi ? get_frame_pc (fi) : pc);
c906108c
SS
403
404 /* Find the start of this function. */
405 status = find_pc_partial_function (pc, &name, &func_addr, &func_end);
406
407 /* Do nothing if we couldn't find the start of this function or if we're
408 stopped at the first instruction in the prologue. */
409 if (status == 0)
43ff13b4
JM
410 {
411 return pc;
412 }
c906108c
SS
413
414 /* If we're in start, then give up. */
415 if (strcmp (name, "start") == 0)
416 {
417 if (fi != NULL)
418 fi->extra_info->status = NO_MORE_FRAMES;
419 return pc;
420 }
421
422 /* At the start of a function our frame is in the stack pointer. */
423 if (fi)
424 fi->extra_info->status = MY_FRAME_IN_SP;
425
426 /* Get the next two bytes into buf, we need two because rets is a two
427 byte insn and the first isn't enough to uniquely identify it. */
428 status = read_memory_nobpt (pc, buf, 2);
429 if (status != 0)
430 return pc;
431
432 /* If we're physically on an "rets" instruction, then our frame has
433 already been deallocated. Note this can also be true for retf
434 and ret if they specify a size of zero.
435
436 In this case fi->frame is bogus, we need to fix it. */
437 if (fi && buf[0] == 0xf0 && buf[1] == 0xfc)
438 {
439 if (fi->next == NULL)
b0c6b05c 440 deprecated_update_frame_base_hack (fi, read_sp ());
50abf9e5 441 return get_frame_pc (fi);
c906108c
SS
442 }
443
444 /* Similarly if we're stopped on the first insn of a prologue as our
445 frame hasn't been allocated yet. */
50abf9e5 446 if (fi && get_frame_pc (fi) == func_addr)
c906108c
SS
447 {
448 if (fi->next == NULL)
b0c6b05c 449 deprecated_update_frame_base_hack (fi, read_sp ());
50abf9e5 450 return get_frame_pc (fi);
c906108c
SS
451 }
452
453 /* Figure out where to stop scanning. */
50abf9e5 454 stop = fi ? get_frame_pc (fi) : func_end;
c906108c
SS
455
456 /* Don't walk off the end of the function. */
457 stop = stop > func_end ? func_end : stop;
458
459 /* Start scanning on the first instruction of this function. */
460 addr = func_addr;
461
462 /* Suck in two bytes. */
463 status = read_memory_nobpt (addr, buf, 2);
464 if (status != 0)
465 {
466 fix_frame_pointer (fi, 0);
467 return addr;
468 }
469
4eab1e18
JB
470 /* First see if this insn sets the stack pointer from a register; if
471 so, it's probably the initialization of the stack pointer in _start,
472 so mark this as the bottom-most frame. */
c906108c
SS
473 if (buf[0] == 0xf2 && (buf[1] & 0xf3) == 0xf0)
474 {
475 if (fi)
476 fi->extra_info->status = NO_MORE_FRAMES;
477 return addr;
478 }
479
480 /* Now look for movm [regs],sp, which saves the callee saved registers.
481
482 At this time we don't know if fi->frame is valid, so we only note
483 that we encountered a movm instruction. Later, we'll set the entries
484 in fsr.regs as needed. */
485 if (buf[0] == 0xcf)
486 {
487 /* Extract the register list for the movm instruction. */
488 status = read_memory_nobpt (addr + 1, buf, 1);
489 movm_args = *buf;
490
491 addr += 2;
492
493 /* Quit now if we're beyond the stop point. */
494 if (addr >= stop)
495 {
496 /* Fix fi->frame since it's bogus at this point. */
497 if (fi && fi->next == NULL)
b0c6b05c 498 deprecated_update_frame_base_hack (fi, read_sp ());
c906108c
SS
499
500 /* Note if/where callee saved registers were saved. */
501 set_movm_offsets (fi, movm_args);
502 return addr;
503 }
504
505 /* Get the next two bytes so the prologue scan can continue. */
506 status = read_memory_nobpt (addr, buf, 2);
507 if (status != 0)
508 {
509 /* Fix fi->frame since it's bogus at this point. */
510 if (fi && fi->next == NULL)
b0c6b05c 511 deprecated_update_frame_base_hack (fi, read_sp ());
c906108c
SS
512
513 /* Note if/where callee saved registers were saved. */
514 set_movm_offsets (fi, movm_args);
515 return addr;
516 }
517 }
518
519 /* Now see if we set up a frame pointer via "mov sp,a3" */
520 if (buf[0] == 0x3f)
521 {
522 addr += 1;
523
524 /* The frame pointer is now valid. */
525 if (fi)
526 {
527 fi->extra_info->status |= MY_FRAME_IN_FP;
528 fi->extra_info->status &= ~MY_FRAME_IN_SP;
529 }
530
531 /* Quit now if we're beyond the stop point. */
532 if (addr >= stop)
533 {
534 /* Fix fi->frame if it's bogus at this point. */
535 fix_frame_pointer (fi, 0);
536
537 /* Note if/where callee saved registers were saved. */
538 set_movm_offsets (fi, movm_args);
539 return addr;
540 }
541
542 /* Get two more bytes so scanning can continue. */
543 status = read_memory_nobpt (addr, buf, 2);
544 if (status != 0)
545 {
546 /* Fix fi->frame if it's bogus at this point. */
547 fix_frame_pointer (fi, 0);
548
549 /* Note if/where callee saved registers were saved. */
550 set_movm_offsets (fi, movm_args);
551 return addr;
552 }
553 }
c5aa993b 554
c906108c
SS
555 /* Next we should allocate the local frame. No more prologue insns
556 are found after allocating the local frame.
c5aa993b 557
c906108c 558 Search for add imm8,sp (0xf8feXX)
c5aa993b
JM
559 or add imm16,sp (0xfafeXXXX)
560 or add imm32,sp (0xfcfeXXXXXXXX).
561
c906108c
SS
562 If none of the above was found, then this prologue has no
563 additional stack. */
564
565 status = read_memory_nobpt (addr, buf, 2);
566 if (status != 0)
567 {
568 /* Fix fi->frame if it's bogus at this point. */
569 fix_frame_pointer (fi, 0);
570
571 /* Note if/where callee saved registers were saved. */
572 set_movm_offsets (fi, movm_args);
573 return addr;
574 }
575
576 imm_size = 0;
577 if (buf[0] == 0xf8 && buf[1] == 0xfe)
578 imm_size = 1;
579 else if (buf[0] == 0xfa && buf[1] == 0xfe)
580 imm_size = 2;
581 else if (buf[0] == 0xfc && buf[1] == 0xfe)
582 imm_size = 4;
583
584 if (imm_size != 0)
585 {
586 /* Suck in imm_size more bytes, they'll hold the size of the
587 current frame. */
588 status = read_memory_nobpt (addr + 2, buf, imm_size);
589 if (status != 0)
590 {
591 /* Fix fi->frame if it's bogus at this point. */
592 fix_frame_pointer (fi, 0);
593
594 /* Note if/where callee saved registers were saved. */
595 set_movm_offsets (fi, movm_args);
596 return addr;
597 }
598
599 /* Note the size of the stack in the frame info structure. */
600 stack_size = extract_signed_integer (buf, imm_size);
601 if (fi)
602 fi->extra_info->stack_size = stack_size;
603
604 /* We just consumed 2 + imm_size bytes. */
605 addr += 2 + imm_size;
606
607 /* No more prologue insns follow, so begin preparation to return. */
608 /* Fix fi->frame if it's bogus at this point. */
609 fix_frame_pointer (fi, stack_size);
610
611 /* Note if/where callee saved registers were saved. */
612 set_movm_offsets (fi, movm_args);
613 return addr;
614 }
615
616 /* We never found an insn which allocates local stack space, regardless
617 this is the end of the prologue. */
618 /* Fix fi->frame if it's bogus at this point. */
619 fix_frame_pointer (fi, 0);
620
621 /* Note if/where callee saved registers were saved. */
622 set_movm_offsets (fi, movm_args);
623 return addr;
624}
c5aa993b 625
ae83b20d
JB
626
627/* Function: saved_regs_size
628 Return the size in bytes of the register save area, based on the
629 saved_regs array in FI. */
630static int
631saved_regs_size (struct frame_info *fi)
632{
633 int adjust = 0;
634 int i;
635
636 /* Reserve four bytes for every register saved. */
637 for (i = 0; i < NUM_REGS; i++)
b2fb4676 638 if (get_frame_saved_regs (fi)[i])
ae83b20d
JB
639 adjust += 4;
640
641 /* If we saved LIR, then it's most likely we used a `movm'
642 instruction with the `other' bit set, in which case the SP is
643 decremented by an extra four bytes, "to simplify calculation
644 of the transfer area", according to the processor manual. */
b2fb4676 645 if (get_frame_saved_regs (fi)[LIR_REGNUM])
ae83b20d
JB
646 adjust += 4;
647
648 return adjust;
649}
650
651
c906108c
SS
652/* Function: frame_chain
653 Figure out and return the caller's frame pointer given current
654 frame_info struct.
655
656 We don't handle dummy frames yet but we would probably just return the
657 stack pointer that was in use at the time the function call was made? */
658
2ac51b36 659static CORE_ADDR
fba45db2 660mn10300_frame_chain (struct frame_info *fi)
c906108c
SS
661{
662 struct frame_info *dummy;
663 /* Walk through the prologue to determine the stack size,
664 location of saved registers, end of the prologue, etc. */
665 if (fi->extra_info->status == 0)
c5aa993b 666 mn10300_analyze_prologue (fi, (CORE_ADDR) 0);
c906108c
SS
667
668 /* Quit now if mn10300_analyze_prologue set NO_MORE_FRAMES. */
669 if (fi->extra_info->status & NO_MORE_FRAMES)
670 return 0;
671
672 /* Now that we've analyzed our prologue, determine the frame
673 pointer for our caller.
674
c5aa993b
JM
675 If our caller has a frame pointer, then we need to
676 find the entry value of $a3 to our function.
677
678 If fsr.regs[A3_REGNUM] is nonzero, then it's at the memory
679 location pointed to by fsr.regs[A3_REGNUM].
c906108c 680
c5aa993b 681 Else it's still in $a3.
c906108c 682
c5aa993b
JM
683 If our caller does not have a frame pointer, then his
684 frame base is fi->frame + -caller's stack size. */
c906108c 685
c906108c
SS
686 /* The easiest way to get that info is to analyze our caller's frame.
687 So we set up a dummy frame and call mn10300_analyze_prologue to
688 find stuff for us. */
689 dummy = analyze_dummy_frame (FRAME_SAVED_PC (fi), fi->frame);
690
691 if (dummy->extra_info->status & MY_FRAME_IN_FP)
692 {
693 /* Our caller has a frame pointer. So find the frame in $a3 or
694 in the stack. */
b2fb4676
AC
695 if (get_frame_saved_regs (fi)[A3_REGNUM])
696 return (read_memory_integer (get_frame_saved_regs (fi)[A3_REGNUM], REGISTER_SIZE));
c906108c
SS
697 else
698 return read_register (A3_REGNUM);
699 }
700 else
701 {
ae83b20d 702 int adjust = saved_regs_size (fi);
c906108c
SS
703
704 /* Our caller does not have a frame pointer. So his frame starts
c5aa993b
JM
705 at the base of our frame (fi->frame) + register save space
706 + <his size>. */
c906108c
SS
707 return fi->frame + adjust + -dummy->extra_info->stack_size;
708 }
709}
710
711/* Function: skip_prologue
712 Return the address of the first inst past the prologue of the function. */
713
2ac51b36 714static CORE_ADDR
fba45db2 715mn10300_skip_prologue (CORE_ADDR pc)
c906108c
SS
716{
717 /* We used to check the debug symbols, but that can lose if
718 we have a null prologue. */
719 return mn10300_analyze_prologue (NULL, pc);
720}
721
ee9f9641
JB
722/* generic_pop_current_frame calls this function if the current
723 frame isn't a dummy frame. */
724static void
725mn10300_pop_frame_regular (struct frame_info *frame)
c906108c
SS
726{
727 int regnum;
728
ee9f9641 729 write_register (PC_REGNUM, FRAME_SAVED_PC (frame));
c906108c 730
ee9f9641
JB
731 /* Restore any saved registers. */
732 for (regnum = 0; regnum < NUM_REGS; regnum++)
b2fb4676 733 if (get_frame_saved_regs (frame)[regnum] != 0)
ee9f9641
JB
734 {
735 ULONGEST value;
c906108c 736
b2fb4676 737 value = read_memory_unsigned_integer (get_frame_saved_regs (frame)[regnum],
ee9f9641
JB
738 REGISTER_RAW_SIZE (regnum));
739 write_register (regnum, value);
740 }
c906108c 741
ee9f9641 742 /* Actually cut back the stack. */
c193f6ac 743 write_register (SP_REGNUM, get_frame_base (frame));
c906108c 744
ee9f9641
JB
745 /* Don't we need to set the PC?!? XXX FIXME. */
746}
747
748/* Function: pop_frame
749 This routine gets called when either the user uses the `return'
750 command, or the call dummy breakpoint gets hit. */
751static void
752mn10300_pop_frame (void)
753{
754 /* This function checks for and handles generic dummy frames, and
755 calls back to our function for ordinary frames. */
756 generic_pop_current_frame (mn10300_pop_frame_regular);
c906108c
SS
757
758 /* Throw away any cached frame information. */
759 flush_cached_frames ();
760}
761
762/* Function: push_arguments
763 Setup arguments for a call to the target. Arguments go in
764 order on the stack. */
765
2ac51b36 766static CORE_ADDR
91225883
AC
767mn10300_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
768 int struct_return, CORE_ADDR struct_addr)
c906108c
SS
769{
770 int argnum = 0;
771 int len = 0;
772 int stack_offset = 0;
773 int regsused = struct_return ? 1 : 0;
774
775 /* This should be a nop, but align the stack just in case something
776 went wrong. Stacks are four byte aligned on the mn10300. */
777 sp &= ~3;
778
779 /* Now make space on the stack for the args.
780
781 XXX This doesn't appear to handle pass-by-invisible reference
782 arguments. */
783 for (argnum = 0; argnum < nargs; argnum++)
784 {
785 int arg_length = (TYPE_LENGTH (VALUE_TYPE (args[argnum])) + 3) & ~3;
786
787 while (regsused < 2 && arg_length > 0)
788 {
789 regsused++;
790 arg_length -= 4;
791 }
792 len += arg_length;
793 }
794
795 /* Allocate stack space. */
796 sp -= len;
797
798 regsused = struct_return ? 1 : 0;
799 /* Push all arguments onto the stack. */
800 for (argnum = 0; argnum < nargs; argnum++)
801 {
802 int len;
803 char *val;
804
805 /* XXX Check this. What about UNIONS? */
806 if (TYPE_CODE (VALUE_TYPE (*args)) == TYPE_CODE_STRUCT
807 && TYPE_LENGTH (VALUE_TYPE (*args)) > 8)
808 {
809 /* XXX Wrong, we want a pointer to this argument. */
c5aa993b
JM
810 len = TYPE_LENGTH (VALUE_TYPE (*args));
811 val = (char *) VALUE_CONTENTS (*args);
c906108c
SS
812 }
813 else
814 {
815 len = TYPE_LENGTH (VALUE_TYPE (*args));
c5aa993b 816 val = (char *) VALUE_CONTENTS (*args);
c906108c
SS
817 }
818
819 while (regsused < 2 && len > 0)
820 {
821 write_register (regsused, extract_unsigned_integer (val, 4));
822 val += 4;
823 len -= 4;
824 regsused++;
825 }
826
827 while (len > 0)
828 {
829 write_memory (sp + stack_offset, val, 4);
830 len -= 4;
831 val += 4;
832 stack_offset += 4;
833 }
834
835 args++;
836 }
837
838 /* Make space for the flushback area. */
839 sp -= 8;
840 return sp;
841}
842
843/* Function: push_return_address (pc)
844 Set up the return address for the inferior function call.
845 Needed for targets where we don't actually execute a JSR/BSR instruction */
c5aa993b 846
2ac51b36 847static CORE_ADDR
fba45db2 848mn10300_push_return_address (CORE_ADDR pc, CORE_ADDR sp)
c906108c
SS
849{
850 unsigned char buf[4];
851
852 store_unsigned_integer (buf, 4, CALL_DUMMY_ADDRESS ());
853 write_memory (sp - 4, buf, 4);
854 return sp - 4;
855}
856
857/* Function: store_struct_return (addr,sp)
858 Store the structure value return address for an inferior function
859 call. */
c5aa993b 860
2ac51b36 861static void
fba45db2 862mn10300_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
c906108c
SS
863{
864 /* The structure return address is passed as the first argument. */
865 write_register (0, addr);
c906108c 866}
c5aa993b 867
c906108c
SS
868/* Function: frame_saved_pc
869 Find the caller of this frame. We do this by seeing if RP_REGNUM
870 is saved in the stack anywhere, otherwise we get it from the
871 registers. If the inner frame is a dummy frame, return its PC
872 instead of RP, because that's where "caller" of the dummy-frame
873 will be found. */
874
2ac51b36 875static CORE_ADDR
fba45db2 876mn10300_frame_saved_pc (struct frame_info *fi)
c906108c 877{
ae83b20d 878 int adjust = saved_regs_size (fi);
c906108c
SS
879
880 return (read_memory_integer (fi->frame + adjust, REGISTER_SIZE));
881}
882
c906108c
SS
883/* Function: mn10300_init_extra_frame_info
884 Setup the frame's frame pointer, pc, and frame addresses for saved
885 registers. Most of the work is done in mn10300_analyze_prologue().
886
887 Note that when we are called for the last frame (currently active frame),
50abf9e5 888 that get_frame_pc (fi) and fi->frame will already be setup. However, fi->frame will
c906108c
SS
889 be valid only if this routine uses FP. For previous frames, fi-frame will
890 always be correct. mn10300_analyze_prologue will fix fi->frame if
891 it's not valid.
892
893 We can be called with the PC in the call dummy under two circumstances.
894 First, during normal backtracing, second, while figuring out the frame
895 pointer just prior to calling the target function (see run_stack_dummy). */
896
2ac51b36 897static void
ad8fe2ce 898mn10300_init_extra_frame_info (int fromleaf, struct frame_info *fi)
c906108c
SS
899{
900 if (fi->next)
50abf9e5 901 deprecated_update_frame_pc_hack (fi, FRAME_SAVED_PC (fi->next));
c906108c
SS
902
903 frame_saved_regs_zalloc (fi);
a00a19e9 904 frame_extra_info_zalloc (fi, sizeof (struct frame_extra_info));
c906108c
SS
905
906 fi->extra_info->status = 0;
907 fi->extra_info->stack_size = 0;
908
909 mn10300_analyze_prologue (fi, 0);
910}
911
ad8fe2ce
JB
912
913/* This function's job is handled by init_extra_frame_info. */
2ac51b36 914static void
ad8fe2ce
JB
915mn10300_frame_init_saved_regs (struct frame_info *frame)
916{
917}
918
919
c906108c
SS
920/* Function: mn10300_virtual_frame_pointer
921 Return the register that the function uses for a frame pointer,
922 plus any necessary offset to be applied to the register before
923 any frame pointer offsets. */
924
39d4ef09
AC
925static void
926mn10300_virtual_frame_pointer (CORE_ADDR pc,
927 int *reg,
928 LONGEST *offset)
c906108c
SS
929{
930 struct frame_info *dummy = analyze_dummy_frame (pc, 0);
931 /* Set up a dummy frame_info, Analyze the prolog and fill in the
932 extra info. */
933 /* Results will tell us which type of frame it uses. */
934 if (dummy->extra_info->status & MY_FRAME_IN_SP)
935 {
c5aa993b 936 *reg = SP_REGNUM;
c906108c
SS
937 *offset = -(dummy->extra_info->stack_size);
938 }
939 else
940 {
c5aa993b 941 *reg = A3_REGNUM;
c906108c
SS
942 *offset = 0;
943 }
944}
c5aa993b 945
91225883
AC
946static int
947mn10300_reg_struct_has_addr (int gcc_p, struct type *type)
c906108c 948{
91225883
AC
949 return (TYPE_LENGTH (type) > 8);
950}
c906108c 951
f6df245f
AC
952static struct type *
953mn10300_register_virtual_type (int reg)
954{
955 return builtin_type_int;
956}
957
958static int
959mn10300_register_byte (int reg)
960{
961 return (reg * 4);
962}
963
964static int
965mn10300_register_virtual_size (int reg)
966{
967 return 4;
968}
969
970static int
971mn10300_register_raw_size (int reg)
972{
973 return 4;
974}
975
23436510
JB
976/* If DWARF2 is a register number appearing in Dwarf2 debug info, then
977 mn10300_dwarf2_reg_to_regnum (DWARF2) is the corresponding GDB
978 register number. Why don't Dwarf2 and GDB use the same numbering?
979 Who knows? But since people have object files lying around with
980 the existing Dwarf2 numbering, and other people have written stubs
981 to work with the existing GDB, neither of them can change. So we
982 just have to cope. */
983static int
984mn10300_dwarf2_reg_to_regnum (int dwarf2)
985{
986 /* This table is supposed to be shaped like the REGISTER_NAMES
987 initializer in gcc/config/mn10300/mn10300.h. Registers which
988 appear in GCC's numbering, but have no counterpart in GDB's
989 world, are marked with a -1. */
990 static int dwarf2_to_gdb[] = {
991 0, 1, 2, 3, 4, 5, 6, 7, -1, 8,
992 15, 16, 17, 18, 19, 20, 21, 22
993 };
994 int gdb;
995
996 if (dwarf2 < 0
997 || dwarf2 >= (sizeof (dwarf2_to_gdb) / sizeof (dwarf2_to_gdb[0]))
998 || dwarf2_to_gdb[dwarf2] == -1)
999 internal_error (__FILE__, __LINE__,
1000 "bogus register number in debug info: %d", dwarf2);
1001
1002 return dwarf2_to_gdb[dwarf2];
1003}
1004
f6df245f
AC
1005static void
1006mn10300_print_register (const char *name, int regnum, int reg_width)
1007{
1008 char *raw_buffer = alloca (MAX_REGISTER_RAW_SIZE);
1009
1010 if (reg_width)
1011 printf_filtered ("%*s: ", reg_width, name);
1012 else
1013 printf_filtered ("%s: ", name);
1014
1015 /* Get the data */
6e7f8b9c 1016 if (!frame_register_read (deprecated_selected_frame, regnum, raw_buffer))
f6df245f
AC
1017 {
1018 printf_filtered ("[invalid]");
1019 return;
1020 }
1021 else
1022 {
1023 int byte;
d7449b42 1024 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
f6df245f
AC
1025 {
1026 for (byte = REGISTER_RAW_SIZE (regnum) - REGISTER_VIRTUAL_SIZE (regnum);
1027 byte < REGISTER_RAW_SIZE (regnum);
1028 byte++)
1029 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
1030 }
1031 else
1032 {
1033 for (byte = REGISTER_VIRTUAL_SIZE (regnum) - 1;
1034 byte >= 0;
1035 byte--)
1036 printf_filtered ("%02x", (unsigned char) raw_buffer[byte]);
1037 }
1038 }
1039}
1040
1041static void
1042mn10300_do_registers_info (int regnum, int fpregs)
1043{
1044 if (regnum >= 0)
1045 {
1046 const char *name = REGISTER_NAME (regnum);
1047 if (name == NULL || name[0] == '\0')
1048 error ("Not a valid register for the current processor type");
1049 mn10300_print_register (name, regnum, 0);
1050 printf_filtered ("\n");
1051 }
1052 else
1053 {
1054 /* print registers in an array 4x8 */
1055 int r;
1056 int reg;
1057 const int nr_in_row = 4;
1058 const int reg_width = 4;
1059 for (r = 0; r < NUM_REGS; r += nr_in_row)
1060 {
1061 int c;
1062 int printing = 0;
1063 int padding = 0;
1064 for (c = r; c < r + nr_in_row; c++)
1065 {
1066 const char *name = REGISTER_NAME (c);
1067 if (name != NULL && *name != '\0')
1068 {
1069 printing = 1;
1070 while (padding > 0)
1071 {
1072 printf_filtered (" ");
1073 padding--;
1074 }
1075 mn10300_print_register (name, c, reg_width);
1076 printf_filtered (" ");
1077 }
1078 else
1079 {
1080 padding += (reg_width + 2 + 8 + 1);
1081 }
1082 }
1083 if (printing)
1084 printf_filtered ("\n");
1085 }
1086 }
1087}
1088
91225883 1089/* Dump out the mn10300 speciic architecture information. */
c906108c 1090
91225883
AC
1091static void
1092mn10300_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
1093{
1094 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1095 fprintf_unfiltered (file, "mn10300_dump_tdep: am33_mode = %d\n",
1096 tdep->am33_mode);
1097}
c2d11a7d 1098
91225883
AC
1099static struct gdbarch *
1100mn10300_gdbarch_init (struct gdbarch_info info,
1101 struct gdbarch_list *arches)
1102{
ad8fe2ce 1103 static LONGEST mn10300_call_dummy_words[] = { 0 };
91225883
AC
1104 struct gdbarch *gdbarch;
1105 struct gdbarch_tdep *tdep = NULL;
1106 int am33_mode;
1107 gdbarch_register_name_ftype *register_name;
1108 int mach;
1109 int num_regs;
1110
1111 arches = gdbarch_list_lookup_by_info (arches, &info);
1112 if (arches != NULL)
1113 return arches->gdbarch;
1114 tdep = xmalloc (sizeof (struct gdbarch_tdep));
1115 gdbarch = gdbarch_alloc (&info, tdep);
1116
1117 if (info.bfd_arch_info != NULL
f6df245f 1118 && info.bfd_arch_info->arch == bfd_arch_mn10300)
91225883
AC
1119 mach = info.bfd_arch_info->mach;
1120 else
1121 mach = 0;
1122 switch (mach)
1123 {
1124 case 0:
f6df245f 1125 case bfd_mach_mn10300:
91225883
AC
1126 am33_mode = 0;
1127 register_name = mn10300_generic_register_name;
1128 num_regs = 32;
1129 break;
1130 case bfd_mach_am33:
c2d11a7d 1131 am33_mode = 1;
91225883
AC
1132 register_name = am33_register_name;
1133 num_regs = 32;
1134 break;
1135 default:
8e65ff28
AC
1136 internal_error (__FILE__, __LINE__,
1137 "mn10300_gdbarch_init: Unknown mn10300 variant");
91225883 1138 return NULL; /* keep GCC happy. */
c2d11a7d 1139 }
c906108c 1140
584f96a8
JB
1141 /* Registers. */
1142 set_gdbarch_num_regs (gdbarch, num_regs);
1143 set_gdbarch_register_name (gdbarch, register_name);
f6df245f 1144 set_gdbarch_register_size (gdbarch, 4);
584f96a8
JB
1145 set_gdbarch_register_bytes (gdbarch,
1146 num_regs * gdbarch_register_size (gdbarch));
f6df245f 1147 set_gdbarch_max_register_raw_size (gdbarch, 4);
584f96a8 1148 set_gdbarch_register_raw_size (gdbarch, mn10300_register_raw_size);
f6df245f 1149 set_gdbarch_register_byte (gdbarch, mn10300_register_byte);
584f96a8 1150 set_gdbarch_max_register_virtual_size (gdbarch, 4);
f6df245f 1151 set_gdbarch_register_virtual_size (gdbarch, mn10300_register_virtual_size);
584f96a8 1152 set_gdbarch_register_virtual_type (gdbarch, mn10300_register_virtual_type);
23436510 1153 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, mn10300_dwarf2_reg_to_regnum);
903ad3a6 1154 set_gdbarch_deprecated_do_registers_info (gdbarch, mn10300_do_registers_info);
a15525c1
AC
1155 set_gdbarch_sp_regnum (gdbarch, 8);
1156 set_gdbarch_pc_regnum (gdbarch, 9);
ad8fe2ce 1157 set_gdbarch_fp_regnum (gdbarch, 31);
39d4ef09 1158 set_gdbarch_virtual_frame_pointer (gdbarch, mn10300_virtual_frame_pointer);
584f96a8
JB
1159
1160 /* Breakpoints. */
ad8fe2ce
JB
1161 set_gdbarch_breakpoint_from_pc (gdbarch, mn10300_breakpoint_from_pc);
1162 set_gdbarch_function_start_offset (gdbarch, 0);
1163 set_gdbarch_decr_pc_after_break (gdbarch, 0);
584f96a8
JB
1164
1165 /* Stack unwinding. */
ad8fe2ce 1166 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
ad8fe2ce
JB
1167 set_gdbarch_saved_pc_after_call (gdbarch, mn10300_saved_pc_after_call);
1168 set_gdbarch_init_extra_frame_info (gdbarch, mn10300_init_extra_frame_info);
a5afb99f 1169 set_gdbarch_deprecated_init_frame_pc (gdbarch, init_frame_pc_noop);
ad8fe2ce
JB
1170 set_gdbarch_frame_init_saved_regs (gdbarch, mn10300_frame_init_saved_regs);
1171 set_gdbarch_frame_chain (gdbarch, mn10300_frame_chain);
1172 set_gdbarch_frame_saved_pc (gdbarch, mn10300_frame_saved_pc);
26e9b323
AC
1173 set_gdbarch_deprecated_extract_return_value (gdbarch, mn10300_extract_return_value);
1174 set_gdbarch_deprecated_extract_struct_value_address
ad8fe2ce 1175 (gdbarch, mn10300_extract_struct_value_address);
ebba8386 1176 set_gdbarch_deprecated_store_return_value (gdbarch, mn10300_store_return_value);
ad8fe2ce 1177 set_gdbarch_store_struct_return (gdbarch, mn10300_store_struct_return);
ee9f9641 1178 set_gdbarch_pop_frame (gdbarch, mn10300_pop_frame);
ad8fe2ce
JB
1179 set_gdbarch_skip_prologue (gdbarch, mn10300_skip_prologue);
1180 set_gdbarch_frame_args_skip (gdbarch, 0);
ad8fe2ce
JB
1181 set_gdbarch_frame_num_args (gdbarch, frame_num_args_unknown);
1182 /* That's right, we're using the stack pointer as our frame pointer. */
1183 set_gdbarch_read_fp (gdbarch, generic_target_read_sp);
584f96a8
JB
1184
1185 /* Calling functions in the inferior from GDB. */
1186 set_gdbarch_call_dummy_p (gdbarch, 1);
bf4b70a5
JB
1187 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
1188 set_gdbarch_call_dummy_breakpoint_offset (gdbarch, 0);
584f96a8 1189 set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
ad8fe2ce
JB
1190 set_gdbarch_call_dummy_address (gdbarch, entry_point_address);
1191 set_gdbarch_call_dummy_words (gdbarch, mn10300_call_dummy_words);
1192 set_gdbarch_sizeof_call_dummy_words (gdbarch,
1193 sizeof (mn10300_call_dummy_words));
1194 set_gdbarch_call_dummy_length (gdbarch, 0);
1195 set_gdbarch_fix_call_dummy (gdbarch, generic_fix_call_dummy);
1196 set_gdbarch_call_dummy_start_offset (gdbarch, 0);
ae45cd16 1197 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_at_entry_point);
ad8fe2ce 1198 set_gdbarch_push_dummy_frame (gdbarch, generic_push_dummy_frame);
584f96a8
JB
1199 set_gdbarch_push_arguments (gdbarch, mn10300_push_arguments);
1200 set_gdbarch_reg_struct_has_addr (gdbarch, mn10300_reg_struct_has_addr);
1201 set_gdbarch_push_return_address (gdbarch, mn10300_push_return_address);
1202 set_gdbarch_save_dummy_frame_tos (gdbarch, generic_save_dummy_frame_tos);
ad8fe2ce
JB
1203 set_gdbarch_use_struct_convention (gdbarch, mn10300_use_struct_convention);
1204
91225883
AC
1205 tdep->am33_mode = am33_mode;
1206
1207 return gdbarch;
1208}
1209
c906108c 1210void
fba45db2 1211_initialize_mn10300_tdep (void)
c906108c
SS
1212{
1213/* printf("_initialize_mn10300_tdep\n"); */
1214
1215 tm_print_insn = print_insn_mn10300;
1216
91225883 1217 register_gdbarch_init (bfd_arch_mn10300, mn10300_gdbarch_init);
c906108c 1218}
This page took 0.295899 seconds and 4 git commands to generate.