1 /* Target-dependent code for the Matsushita MN10300 for GDB, the GNU debugger.
2 Copyright 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
28 #include "gdb_string.h"
32 extern void _initialize_mn10300_tdep (void);
33 static CORE_ADDR
mn10300_analyze_prologue (struct frame_info
*fi
,
36 /* mn10300 private data */
40 #define AM33_MODE (gdbarch_tdep (current_gdbarch)->am33_mode)
43 /* Additional info used by the frame */
45 struct frame_extra_info
53 register_name (int reg
, char **regs
, long sizeof_regs
)
55 if (reg
< 0 || reg
>= sizeof_regs
/ sizeof (regs
[0]))
62 mn10300_generic_register_name (int reg
)
65 { "d0", "d1", "d2", "d3", "a0", "a1", "a2", "a3",
66 "sp", "pc", "mdr", "psw", "lir", "lar", "", "",
67 "", "", "", "", "", "", "", "",
68 "", "", "", "", "", "", "", "fp"
70 return register_name (reg
, regs
, sizeof regs
);
75 am33_register_name (int reg
)
78 { "d0", "d1", "d2", "d3", "a0", "a1", "a2", "a3",
79 "sp", "pc", "mdr", "psw", "lir", "lar", "",
80 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
81 "ssp", "msp", "usp", "mcrh", "mcrl", "mcvf", "", "", ""
83 return register_name (reg
, regs
, sizeof regs
);
87 mn10300_saved_pc_after_call (struct frame_info
*fi
)
89 return read_memory_integer (read_register (SP_REGNUM
), 4);
93 mn10300_extract_return_value (struct type
*type
, char *regbuf
, char *valbuf
)
95 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
96 memcpy (valbuf
, regbuf
+ REGISTER_BYTE (4), TYPE_LENGTH (type
));
98 memcpy (valbuf
, regbuf
+ REGISTER_BYTE (0), TYPE_LENGTH (type
));
102 mn10300_extract_struct_value_address (char *regbuf
)
104 return extract_address (regbuf
+ REGISTER_BYTE (4),
105 REGISTER_RAW_SIZE (4));
109 mn10300_store_return_value (struct type
*type
, char *valbuf
)
111 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
112 write_register_bytes (REGISTER_BYTE (4), valbuf
, TYPE_LENGTH (type
));
114 write_register_bytes (REGISTER_BYTE (0), valbuf
, TYPE_LENGTH (type
));
117 static struct frame_info
*analyze_dummy_frame (CORE_ADDR
, CORE_ADDR
);
118 static struct frame_info
*
119 analyze_dummy_frame (CORE_ADDR pc
, CORE_ADDR frame
)
121 static struct frame_info
*dummy
= NULL
;
124 dummy
= xmalloc (sizeof (struct frame_info
));
125 dummy
->saved_regs
= xmalloc (SIZEOF_FRAME_SAVED_REGS
);
126 dummy
->extra_info
= xmalloc (sizeof (struct frame_extra_info
));
131 dummy
->frame
= frame
;
132 dummy
->extra_info
->status
= 0;
133 dummy
->extra_info
->stack_size
= 0;
134 memset (dummy
->saved_regs
, '\000', SIZEOF_FRAME_SAVED_REGS
);
135 mn10300_analyze_prologue (dummy
, 0);
139 /* Values for frame_info.status */
141 #define MY_FRAME_IN_SP 0x1
142 #define MY_FRAME_IN_FP 0x2
143 #define NO_MORE_FRAMES 0x4
146 /* Should call_function allocate stack space for a struct return? */
148 mn10300_use_struct_convention (int gcc_p
, struct type
*type
)
150 return (TYPE_NFIELDS (type
) > 1 || TYPE_LENGTH (type
) > 8);
153 /* The breakpoint instruction must be the same size as the smallest
154 instruction in the instruction set.
156 The Matsushita mn10x00 processors have single byte instructions
157 so we need a single byte breakpoint. Matsushita hasn't defined
158 one, so we defined it ourselves. */
161 mn10300_breakpoint_from_pc (CORE_ADDR
*bp_addr
, int *bp_size
)
163 static char breakpoint
[] =
170 /* Fix fi->frame if it's bogus at this point. This is a helper
171 function for mn10300_analyze_prologue. */
174 fix_frame_pointer (struct frame_info
*fi
, int stack_size
)
176 if (fi
&& fi
->next
== NULL
)
178 if (fi
->extra_info
->status
& MY_FRAME_IN_SP
)
179 fi
->frame
= read_sp () - stack_size
;
180 else if (fi
->extra_info
->status
& MY_FRAME_IN_FP
)
181 fi
->frame
= read_register (A3_REGNUM
);
186 /* Set offsets of registers saved by movm instruction.
187 This is a helper function for mn10300_analyze_prologue. */
190 set_movm_offsets (struct frame_info
*fi
, int movm_args
)
194 if (fi
== NULL
|| movm_args
== 0)
197 if (movm_args
& 0x10)
199 fi
->saved_regs
[A3_REGNUM
] = fi
->frame
+ offset
;
202 if (movm_args
& 0x20)
204 fi
->saved_regs
[A2_REGNUM
] = fi
->frame
+ offset
;
207 if (movm_args
& 0x40)
209 fi
->saved_regs
[D3_REGNUM
] = fi
->frame
+ offset
;
212 if (movm_args
& 0x80)
214 fi
->saved_regs
[D2_REGNUM
] = fi
->frame
+ offset
;
217 if (AM33_MODE
&& movm_args
& 0x02)
219 fi
->saved_regs
[E0_REGNUM
+ 5] = fi
->frame
+ offset
;
220 fi
->saved_regs
[E0_REGNUM
+ 4] = fi
->frame
+ offset
+ 4;
221 fi
->saved_regs
[E0_REGNUM
+ 3] = fi
->frame
+ offset
+ 8;
222 fi
->saved_regs
[E0_REGNUM
+ 2] = fi
->frame
+ offset
+ 12;
227 /* The main purpose of this file is dealing with prologues to extract
228 information about stack frames and saved registers.
230 For reference here's how prologues look on the mn10300:
233 movm [d2,d3,a2,a3],sp
237 Without frame pointer:
238 movm [d2,d3,a2,a3],sp (if needed)
241 One day we might keep the stack pointer constant, that won't
242 change the code for prologues, but it will make the frame
243 pointerless case much more common. */
245 /* Analyze the prologue to determine where registers are saved,
246 the end of the prologue, etc etc. Return the end of the prologue
249 We store into FI (if non-null) several tidbits of information:
251 * stack_size -- size of this stack frame. Note that if we stop in
252 certain parts of the prologue/epilogue we may claim the size of the
253 current frame is zero. This happens when the current frame has
254 not been allocated yet or has already been deallocated.
256 * fsr -- Addresses of registers saved in the stack by this frame.
258 * status -- A (relatively) generic status indicator. It's a bitmask
259 with the following bits:
261 MY_FRAME_IN_SP: The base of the current frame is actually in
262 the stack pointer. This can happen for frame pointerless
263 functions, or cases where we're stopped in the prologue/epilogue
264 itself. For these cases mn10300_analyze_prologue will need up
265 update fi->frame before returning or analyzing the register
268 MY_FRAME_IN_FP: The base of the current frame is in the
269 frame pointer register ($a2).
271 NO_MORE_FRAMES: Set this if the current frame is "start" or
272 if the first instruction looks like mov <imm>,sp. This tells
273 frame chain to not bother trying to unwind past this frame. */
276 mn10300_analyze_prologue (struct frame_info
*fi
, CORE_ADDR pc
)
278 CORE_ADDR func_addr
, func_end
, addr
, stop
;
279 CORE_ADDR stack_size
;
281 unsigned char buf
[4];
282 int status
, movm_args
= 0;
285 /* Use the PC in the frame if it's provided to look up the
286 start of this function. */
287 pc
= (fi
? fi
->pc
: pc
);
289 /* Find the start of this function. */
290 status
= find_pc_partial_function (pc
, &name
, &func_addr
, &func_end
);
292 /* Do nothing if we couldn't find the start of this function or if we're
293 stopped at the first instruction in the prologue. */
299 /* If we're in start, then give up. */
300 if (strcmp (name
, "start") == 0)
303 fi
->extra_info
->status
= NO_MORE_FRAMES
;
307 /* At the start of a function our frame is in the stack pointer. */
309 fi
->extra_info
->status
= MY_FRAME_IN_SP
;
311 /* Get the next two bytes into buf, we need two because rets is a two
312 byte insn and the first isn't enough to uniquely identify it. */
313 status
= read_memory_nobpt (pc
, buf
, 2);
317 /* If we're physically on an "rets" instruction, then our frame has
318 already been deallocated. Note this can also be true for retf
319 and ret if they specify a size of zero.
321 In this case fi->frame is bogus, we need to fix it. */
322 if (fi
&& buf
[0] == 0xf0 && buf
[1] == 0xfc)
324 if (fi
->next
== NULL
)
325 fi
->frame
= read_sp ();
329 /* Similarly if we're stopped on the first insn of a prologue as our
330 frame hasn't been allocated yet. */
331 if (fi
&& fi
->pc
== func_addr
)
333 if (fi
->next
== NULL
)
334 fi
->frame
= read_sp ();
338 /* Figure out where to stop scanning. */
339 stop
= fi
? fi
->pc
: func_end
;
341 /* Don't walk off the end of the function. */
342 stop
= stop
> func_end
? func_end
: stop
;
344 /* Start scanning on the first instruction of this function. */
347 /* Suck in two bytes. */
348 status
= read_memory_nobpt (addr
, buf
, 2);
351 fix_frame_pointer (fi
, 0);
355 /* First see if this insn sets the stack pointer; if so, it's something
356 we won't understand, so quit now. */
357 if (buf
[0] == 0xf2 && (buf
[1] & 0xf3) == 0xf0)
360 fi
->extra_info
->status
= NO_MORE_FRAMES
;
364 /* Now look for movm [regs],sp, which saves the callee saved registers.
366 At this time we don't know if fi->frame is valid, so we only note
367 that we encountered a movm instruction. Later, we'll set the entries
368 in fsr.regs as needed. */
371 /* Extract the register list for the movm instruction. */
372 status
= read_memory_nobpt (addr
+ 1, buf
, 1);
377 /* Quit now if we're beyond the stop point. */
380 /* Fix fi->frame since it's bogus at this point. */
381 if (fi
&& fi
->next
== NULL
)
382 fi
->frame
= read_sp ();
384 /* Note if/where callee saved registers were saved. */
385 set_movm_offsets (fi
, movm_args
);
389 /* Get the next two bytes so the prologue scan can continue. */
390 status
= read_memory_nobpt (addr
, buf
, 2);
393 /* Fix fi->frame since it's bogus at this point. */
394 if (fi
&& fi
->next
== NULL
)
395 fi
->frame
= read_sp ();
397 /* Note if/where callee saved registers were saved. */
398 set_movm_offsets (fi
, movm_args
);
403 /* Now see if we set up a frame pointer via "mov sp,a3" */
408 /* The frame pointer is now valid. */
411 fi
->extra_info
->status
|= MY_FRAME_IN_FP
;
412 fi
->extra_info
->status
&= ~MY_FRAME_IN_SP
;
415 /* Quit now if we're beyond the stop point. */
418 /* Fix fi->frame if it's bogus at this point. */
419 fix_frame_pointer (fi
, 0);
421 /* Note if/where callee saved registers were saved. */
422 set_movm_offsets (fi
, movm_args
);
426 /* Get two more bytes so scanning can continue. */
427 status
= read_memory_nobpt (addr
, buf
, 2);
430 /* Fix fi->frame if it's bogus at this point. */
431 fix_frame_pointer (fi
, 0);
433 /* Note if/where callee saved registers were saved. */
434 set_movm_offsets (fi
, movm_args
);
439 /* Next we should allocate the local frame. No more prologue insns
440 are found after allocating the local frame.
442 Search for add imm8,sp (0xf8feXX)
443 or add imm16,sp (0xfafeXXXX)
444 or add imm32,sp (0xfcfeXXXXXXXX).
446 If none of the above was found, then this prologue has no
449 status
= read_memory_nobpt (addr
, buf
, 2);
452 /* Fix fi->frame if it's bogus at this point. */
453 fix_frame_pointer (fi
, 0);
455 /* Note if/where callee saved registers were saved. */
456 set_movm_offsets (fi
, movm_args
);
461 if (buf
[0] == 0xf8 && buf
[1] == 0xfe)
463 else if (buf
[0] == 0xfa && buf
[1] == 0xfe)
465 else if (buf
[0] == 0xfc && buf
[1] == 0xfe)
470 /* Suck in imm_size more bytes, they'll hold the size of the
472 status
= read_memory_nobpt (addr
+ 2, buf
, imm_size
);
475 /* Fix fi->frame if it's bogus at this point. */
476 fix_frame_pointer (fi
, 0);
478 /* Note if/where callee saved registers were saved. */
479 set_movm_offsets (fi
, movm_args
);
483 /* Note the size of the stack in the frame info structure. */
484 stack_size
= extract_signed_integer (buf
, imm_size
);
486 fi
->extra_info
->stack_size
= stack_size
;
488 /* We just consumed 2 + imm_size bytes. */
489 addr
+= 2 + imm_size
;
491 /* No more prologue insns follow, so begin preparation to return. */
492 /* Fix fi->frame if it's bogus at this point. */
493 fix_frame_pointer (fi
, stack_size
);
495 /* Note if/where callee saved registers were saved. */
496 set_movm_offsets (fi
, movm_args
);
500 /* We never found an insn which allocates local stack space, regardless
501 this is the end of the prologue. */
502 /* Fix fi->frame if it's bogus at this point. */
503 fix_frame_pointer (fi
, 0);
505 /* Note if/where callee saved registers were saved. */
506 set_movm_offsets (fi
, movm_args
);
510 /* Function: frame_chain
511 Figure out and return the caller's frame pointer given current
514 We don't handle dummy frames yet but we would probably just return the
515 stack pointer that was in use at the time the function call was made? */
518 mn10300_frame_chain (struct frame_info
*fi
)
520 struct frame_info
*dummy
;
521 /* Walk through the prologue to determine the stack size,
522 location of saved registers, end of the prologue, etc. */
523 if (fi
->extra_info
->status
== 0)
524 mn10300_analyze_prologue (fi
, (CORE_ADDR
) 0);
526 /* Quit now if mn10300_analyze_prologue set NO_MORE_FRAMES. */
527 if (fi
->extra_info
->status
& NO_MORE_FRAMES
)
530 /* Now that we've analyzed our prologue, determine the frame
531 pointer for our caller.
533 If our caller has a frame pointer, then we need to
534 find the entry value of $a3 to our function.
536 If fsr.regs[A3_REGNUM] is nonzero, then it's at the memory
537 location pointed to by fsr.regs[A3_REGNUM].
539 Else it's still in $a3.
541 If our caller does not have a frame pointer, then his
542 frame base is fi->frame + -caller's stack size. */
544 /* The easiest way to get that info is to analyze our caller's frame.
545 So we set up a dummy frame and call mn10300_analyze_prologue to
546 find stuff for us. */
547 dummy
= analyze_dummy_frame (FRAME_SAVED_PC (fi
), fi
->frame
);
549 if (dummy
->extra_info
->status
& MY_FRAME_IN_FP
)
551 /* Our caller has a frame pointer. So find the frame in $a3 or
553 if (fi
->saved_regs
[A3_REGNUM
])
554 return (read_memory_integer (fi
->saved_regs
[A3_REGNUM
], REGISTER_SIZE
));
556 return read_register (A3_REGNUM
);
562 adjust
+= (fi
->saved_regs
[D2_REGNUM
] ? 4 : 0);
563 adjust
+= (fi
->saved_regs
[D3_REGNUM
] ? 4 : 0);
564 adjust
+= (fi
->saved_regs
[A2_REGNUM
] ? 4 : 0);
565 adjust
+= (fi
->saved_regs
[A3_REGNUM
] ? 4 : 0);
568 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 5] ? 4 : 0);
569 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 4] ? 4 : 0);
570 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 3] ? 4 : 0);
571 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 2] ? 4 : 0);
574 /* Our caller does not have a frame pointer. So his frame starts
575 at the base of our frame (fi->frame) + register save space
577 return fi
->frame
+ adjust
+ -dummy
->extra_info
->stack_size
;
581 /* Function: skip_prologue
582 Return the address of the first inst past the prologue of the function. */
585 mn10300_skip_prologue (CORE_ADDR pc
)
587 /* We used to check the debug symbols, but that can lose if
588 we have a null prologue. */
589 return mn10300_analyze_prologue (NULL
, pc
);
593 /* Function: pop_frame
594 This routine gets called when either the user uses the `return'
595 command, or the call dummy breakpoint gets hit. */
598 mn10300_pop_frame (struct frame_info
*frame
)
602 if (PC_IN_CALL_DUMMY (frame
->pc
, frame
->frame
, frame
->frame
))
603 generic_pop_dummy_frame ();
606 write_register (PC_REGNUM
, FRAME_SAVED_PC (frame
));
608 /* Restore any saved registers. */
609 for (regnum
= 0; regnum
< NUM_REGS
; regnum
++)
610 if (frame
->saved_regs
[regnum
] != 0)
614 value
= read_memory_unsigned_integer (frame
->saved_regs
[regnum
],
615 REGISTER_RAW_SIZE (regnum
));
616 write_register (regnum
, value
);
619 /* Actually cut back the stack. */
620 write_register (SP_REGNUM
, FRAME_FP (frame
));
622 /* Don't we need to set the PC?!? XXX FIXME. */
625 /* Throw away any cached frame information. */
626 flush_cached_frames ();
629 /* Function: push_arguments
630 Setup arguments for a call to the target. Arguments go in
631 order on the stack. */
634 mn10300_push_arguments (int nargs
, struct value
**args
, CORE_ADDR sp
,
635 int struct_return
, CORE_ADDR struct_addr
)
639 int stack_offset
= 0;
640 int regsused
= struct_return
? 1 : 0;
642 /* This should be a nop, but align the stack just in case something
643 went wrong. Stacks are four byte aligned on the mn10300. */
646 /* Now make space on the stack for the args.
648 XXX This doesn't appear to handle pass-by-invisible reference
650 for (argnum
= 0; argnum
< nargs
; argnum
++)
652 int arg_length
= (TYPE_LENGTH (VALUE_TYPE (args
[argnum
])) + 3) & ~3;
654 while (regsused
< 2 && arg_length
> 0)
662 /* Allocate stack space. */
665 regsused
= struct_return
? 1 : 0;
666 /* Push all arguments onto the stack. */
667 for (argnum
= 0; argnum
< nargs
; argnum
++)
672 /* XXX Check this. What about UNIONS? */
673 if (TYPE_CODE (VALUE_TYPE (*args
)) == TYPE_CODE_STRUCT
674 && TYPE_LENGTH (VALUE_TYPE (*args
)) > 8)
676 /* XXX Wrong, we want a pointer to this argument. */
677 len
= TYPE_LENGTH (VALUE_TYPE (*args
));
678 val
= (char *) VALUE_CONTENTS (*args
);
682 len
= TYPE_LENGTH (VALUE_TYPE (*args
));
683 val
= (char *) VALUE_CONTENTS (*args
);
686 while (regsused
< 2 && len
> 0)
688 write_register (regsused
, extract_unsigned_integer (val
, 4));
696 write_memory (sp
+ stack_offset
, val
, 4);
705 /* Make space for the flushback area. */
710 /* Function: push_return_address (pc)
711 Set up the return address for the inferior function call.
712 Needed for targets where we don't actually execute a JSR/BSR instruction */
715 mn10300_push_return_address (CORE_ADDR pc
, CORE_ADDR sp
)
717 unsigned char buf
[4];
719 store_unsigned_integer (buf
, 4, CALL_DUMMY_ADDRESS ());
720 write_memory (sp
- 4, buf
, 4);
724 /* Function: store_struct_return (addr,sp)
725 Store the structure value return address for an inferior function
729 mn10300_store_struct_return (CORE_ADDR addr
, CORE_ADDR sp
)
731 /* The structure return address is passed as the first argument. */
732 write_register (0, addr
);
736 /* Function: frame_saved_pc
737 Find the caller of this frame. We do this by seeing if RP_REGNUM
738 is saved in the stack anywhere, otherwise we get it from the
739 registers. If the inner frame is a dummy frame, return its PC
740 instead of RP, because that's where "caller" of the dummy-frame
744 mn10300_frame_saved_pc (struct frame_info
*fi
)
748 adjust
+= (fi
->saved_regs
[D2_REGNUM
] ? 4 : 0);
749 adjust
+= (fi
->saved_regs
[D3_REGNUM
] ? 4 : 0);
750 adjust
+= (fi
->saved_regs
[A2_REGNUM
] ? 4 : 0);
751 adjust
+= (fi
->saved_regs
[A3_REGNUM
] ? 4 : 0);
754 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 5] ? 4 : 0);
755 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 4] ? 4 : 0);
756 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 3] ? 4 : 0);
757 adjust
+= (fi
->saved_regs
[E0_REGNUM
+ 2] ? 4 : 0);
760 return (read_memory_integer (fi
->frame
+ adjust
, REGISTER_SIZE
));
763 /* Function: mn10300_init_extra_frame_info
764 Setup the frame's frame pointer, pc, and frame addresses for saved
765 registers. Most of the work is done in mn10300_analyze_prologue().
767 Note that when we are called for the last frame (currently active frame),
768 that fi->pc and fi->frame will already be setup. However, fi->frame will
769 be valid only if this routine uses FP. For previous frames, fi-frame will
770 always be correct. mn10300_analyze_prologue will fix fi->frame if
773 We can be called with the PC in the call dummy under two circumstances.
774 First, during normal backtracing, second, while figuring out the frame
775 pointer just prior to calling the target function (see run_stack_dummy). */
778 mn10300_init_extra_frame_info (struct frame_info
*fi
)
781 fi
->pc
= FRAME_SAVED_PC (fi
->next
);
783 frame_saved_regs_zalloc (fi
);
784 fi
->extra_info
= (struct frame_extra_info
*)
785 frame_obstack_alloc (sizeof (struct frame_extra_info
));
787 fi
->extra_info
->status
= 0;
788 fi
->extra_info
->stack_size
= 0;
790 mn10300_analyze_prologue (fi
, 0);
793 /* Function: mn10300_virtual_frame_pointer
794 Return the register that the function uses for a frame pointer,
795 plus any necessary offset to be applied to the register before
796 any frame pointer offsets. */
799 mn10300_virtual_frame_pointer (CORE_ADDR pc
, long *reg
, long *offset
)
801 struct frame_info
*dummy
= analyze_dummy_frame (pc
, 0);
802 /* Set up a dummy frame_info, Analyze the prolog and fill in the
804 /* Results will tell us which type of frame it uses. */
805 if (dummy
->extra_info
->status
& MY_FRAME_IN_SP
)
808 *offset
= -(dummy
->extra_info
->stack_size
);
818 mn10300_reg_struct_has_addr (int gcc_p
, struct type
*type
)
820 return (TYPE_LENGTH (type
) > 8);
824 mn10300_register_virtual_type (int reg
)
826 return builtin_type_int
;
830 mn10300_register_byte (int reg
)
836 mn10300_register_virtual_size (int reg
)
842 mn10300_register_raw_size (int reg
)
848 mn10300_print_register (const char *name
, int regnum
, int reg_width
)
850 char *raw_buffer
= alloca (MAX_REGISTER_RAW_SIZE
);
853 printf_filtered ("%*s: ", reg_width
, name
);
855 printf_filtered ("%s: ", name
);
858 if (read_relative_register_raw_bytes (regnum
, raw_buffer
))
860 printf_filtered ("[invalid]");
866 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
868 for (byte
= REGISTER_RAW_SIZE (regnum
) - REGISTER_VIRTUAL_SIZE (regnum
);
869 byte
< REGISTER_RAW_SIZE (regnum
);
871 printf_filtered ("%02x", (unsigned char) raw_buffer
[byte
]);
875 for (byte
= REGISTER_VIRTUAL_SIZE (regnum
) - 1;
878 printf_filtered ("%02x", (unsigned char) raw_buffer
[byte
]);
884 mn10300_do_registers_info (int regnum
, int fpregs
)
888 const char *name
= REGISTER_NAME (regnum
);
889 if (name
== NULL
|| name
[0] == '\0')
890 error ("Not a valid register for the current processor type");
891 mn10300_print_register (name
, regnum
, 0);
892 printf_filtered ("\n");
896 /* print registers in an array 4x8 */
899 const int nr_in_row
= 4;
900 const int reg_width
= 4;
901 for (r
= 0; r
< NUM_REGS
; r
+= nr_in_row
)
906 for (c
= r
; c
< r
+ nr_in_row
; c
++)
908 const char *name
= REGISTER_NAME (c
);
909 if (name
!= NULL
&& *name
!= '\0')
914 printf_filtered (" ");
917 mn10300_print_register (name
, c
, reg_width
);
918 printf_filtered (" ");
922 padding
+= (reg_width
+ 2 + 8 + 1);
926 printf_filtered ("\n");
931 /* Dump out the mn10300 speciic architecture information. */
934 mn10300_dump_tdep (struct gdbarch
*current_gdbarch
, struct ui_file
*file
)
936 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
937 fprintf_unfiltered (file
, "mn10300_dump_tdep: am33_mode = %d\n",
941 static struct gdbarch
*
942 mn10300_gdbarch_init (struct gdbarch_info info
,
943 struct gdbarch_list
*arches
)
945 struct gdbarch
*gdbarch
;
946 struct gdbarch_tdep
*tdep
= NULL
;
948 gdbarch_register_name_ftype
*register_name
;
952 arches
= gdbarch_list_lookup_by_info (arches
, &info
);
954 return arches
->gdbarch
;
955 tdep
= xmalloc (sizeof (struct gdbarch_tdep
));
956 gdbarch
= gdbarch_alloc (&info
, tdep
);
958 if (info
.bfd_arch_info
!= NULL
959 && info
.bfd_arch_info
->arch
== bfd_arch_mn10300
)
960 mach
= info
.bfd_arch_info
->mach
;
966 case bfd_mach_mn10300
:
968 register_name
= mn10300_generic_register_name
;
973 register_name
= am33_register_name
;
977 internal_error ("mn10300_gdbarch_init: Unknown mn10300 variant");
978 return NULL
; /* keep GCC happy. */
981 set_gdbarch_register_size (gdbarch
, 4);
982 set_gdbarch_max_register_raw_size (gdbarch
, 4);
983 set_gdbarch_register_virtual_type (gdbarch
, mn10300_register_virtual_type
);
984 set_gdbarch_register_byte (gdbarch
, mn10300_register_byte
);
985 set_gdbarch_register_virtual_size (gdbarch
, mn10300_register_virtual_size
);
986 set_gdbarch_register_raw_size (gdbarch
, mn10300_register_raw_size
);
987 set_gdbarch_call_dummy_p (gdbarch
, 1);
988 set_gdbarch_register_name (gdbarch
, register_name
);
989 set_gdbarch_use_generic_dummy_frames (gdbarch
, 1);
990 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch
, 0);
991 set_gdbarch_call_dummy_stack_adjust_p (gdbarch
, 0);
992 set_gdbarch_get_saved_register (gdbarch
, generic_get_saved_register
);
993 set_gdbarch_push_arguments (gdbarch
, mn10300_push_arguments
);
994 set_gdbarch_push_return_address (gdbarch
, mn10300_push_return_address
);
995 set_gdbarch_frame_chain_valid (gdbarch
, generic_file_frame_chain_valid
);
996 set_gdbarch_reg_struct_has_addr (gdbarch
, mn10300_reg_struct_has_addr
);
997 set_gdbarch_save_dummy_frame_tos (gdbarch
, generic_save_dummy_frame_tos
);
998 set_gdbarch_num_regs (gdbarch
, num_regs
);
999 set_gdbarch_do_registers_info (gdbarch
, mn10300_do_registers_info
);
1001 tdep
->am33_mode
= am33_mode
;
1007 _initialize_mn10300_tdep (void)
1009 /* printf("_initialize_mn10300_tdep\n"); */
1011 tm_print_insn
= print_insn_mn10300
;
1013 register_gdbarch_init (bfd_arch_mn10300
, mn10300_gdbarch_init
);