* arm-tdep.c (arm_use_struct_convention): Make static. Move to be
[binutils-gdb.git] / gdb / arm-tdep.c
1 /* Common target dependent code for GDB on ARM systems.
2 Copyright 1988, 1989, 1991, 1992, 1993, 1995, 1996, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <ctype.h> /* XXX for isupper () */
23
24 #include "defs.h"
25 #include "frame.h"
26 #include "inferior.h"
27 #include "gdbcmd.h"
28 #include "gdbcore.h"
29 #include "symfile.h"
30 #include "gdb_string.h"
31 #include "dis-asm.h" /* For register flavors. */
32 #include "regcache.h"
33 #include "doublest.h"
34 #include "value.h"
35 #include "arch-utils.h"
36 #include "solib-svr4.h"
37
38 #include "arm-tdep.h"
39
40 #include "elf-bfd.h"
41 #include "coff/internal.h"
42
43 /* Each OS has a different mechanism for accessing the various
44 registers stored in the sigcontext structure.
45
46 SIGCONTEXT_REGISTER_ADDRESS should be defined to the name (or
47 function pointer) which may be used to determine the addresses
48 of the various saved registers in the sigcontext structure.
49
50 For the ARM target, there are three parameters to this function.
51 The first is the pc value of the frame under consideration, the
52 second the stack pointer of this frame, and the last is the
53 register number to fetch.
54
55 If the tm.h file does not define this macro, then it's assumed that
56 no mechanism is needed and we define SIGCONTEXT_REGISTER_ADDRESS to
57 be 0.
58
59 When it comes time to multi-arching this code, see the identically
60 named machinery in ia64-tdep.c for an example of how it could be
61 done. It should not be necessary to modify the code below where
62 this macro is used. */
63
64 #ifdef SIGCONTEXT_REGISTER_ADDRESS
65 #ifndef SIGCONTEXT_REGISTER_ADDRESS_P
66 #define SIGCONTEXT_REGISTER_ADDRESS_P() 1
67 #endif
68 #else
69 #define SIGCONTEXT_REGISTER_ADDRESS(SP,PC,REG) 0
70 #define SIGCONTEXT_REGISTER_ADDRESS_P() 0
71 #endif
72
73 /* Macros for setting and testing a bit in a minimal symbol that marks
74 it as Thumb function. The MSB of the minimal symbol's "info" field
75 is used for this purpose. This field is already being used to store
76 the symbol size, so the assumption is that the symbol size cannot
77 exceed 2^31.
78
79 MSYMBOL_SET_SPECIAL Actually sets the "special" bit.
80 MSYMBOL_IS_SPECIAL Tests the "special" bit in a minimal symbol.
81 MSYMBOL_SIZE Returns the size of the minimal symbol,
82 i.e. the "info" field with the "special" bit
83 masked out. */
84
85 #define MSYMBOL_SET_SPECIAL(msym) \
86 MSYMBOL_INFO (msym) = (char *) (((long) MSYMBOL_INFO (msym)) \
87 | 0x80000000)
88
89 #define MSYMBOL_IS_SPECIAL(msym) \
90 (((long) MSYMBOL_INFO (msym) & 0x80000000) != 0)
91
92 #define MSYMBOL_SIZE(msym) \
93 ((long) MSYMBOL_INFO (msym) & 0x7fffffff)
94
95 /* Number of different reg name sets (options). */
96 static int num_flavor_options;
97
98 /* We have more registers than the disassembler as gdb can print the value
99 of special registers as well.
100 The general register names are overwritten by whatever is being used by
101 the disassembler at the moment. We also adjust the case of cpsr and fps. */
102
103 /* Initial value: Register names used in ARM's ISA documentation. */
104 static char * arm_register_name_strings[] =
105 {"r0", "r1", "r2", "r3", /* 0 1 2 3 */
106 "r4", "r5", "r6", "r7", /* 4 5 6 7 */
107 "r8", "r9", "r10", "r11", /* 8 9 10 11 */
108 "r12", "sp", "lr", "pc", /* 12 13 14 15 */
109 "f0", "f1", "f2", "f3", /* 16 17 18 19 */
110 "f4", "f5", "f6", "f7", /* 20 21 22 23 */
111 "fps", "cpsr" }; /* 24 25 */
112 static char **arm_register_names = arm_register_name_strings;
113
114 /* Valid register name flavors. */
115 static const char **valid_flavors;
116
117 /* Disassembly flavor to use. Default to "std" register names. */
118 static const char *disassembly_flavor;
119 static int current_option; /* Index to that option in the opcodes table. */
120
121 /* This is used to keep the bfd arch_info in sync with the disassembly
122 flavor. */
123 static void set_disassembly_flavor_sfunc(char *, int,
124 struct cmd_list_element *);
125 static void set_disassembly_flavor (void);
126
127 static void convert_from_extended (void *ptr, void *dbl);
128
129 /* Define other aspects of the stack frame. We keep the offsets of
130 all saved registers, 'cause we need 'em a lot! We also keep the
131 current size of the stack frame, and the offset of the frame
132 pointer from the stack pointer (for frameless functions, and when
133 we're still in the prologue of a function with a frame) */
134
135 struct frame_extra_info
136 {
137 int framesize;
138 int frameoffset;
139 int framereg;
140 };
141
142 /* Addresses for calling Thumb functions have the bit 0 set.
143 Here are some macros to test, set, or clear bit 0 of addresses. */
144 #define IS_THUMB_ADDR(addr) ((addr) & 1)
145 #define MAKE_THUMB_ADDR(addr) ((addr) | 1)
146 #define UNMAKE_THUMB_ADDR(addr) ((addr) & ~1)
147
148 static int
149 arm_frame_chain_valid (CORE_ADDR chain, struct frame_info *thisframe)
150 {
151 return (chain != 0 && (FRAME_SAVED_PC (thisframe) >= LOWEST_PC));
152 }
153
154 /* Set to true if the 32-bit mode is in use. */
155
156 int arm_apcs_32 = 1;
157
158 /* Flag set by arm_fix_call_dummy that tells whether the target
159 function is a Thumb function. This flag is checked by
160 arm_push_arguments. FIXME: Change the PUSH_ARGUMENTS macro (and
161 its use in valops.c) to pass the function address as an additional
162 parameter. */
163
164 static int target_is_thumb;
165
166 /* Flag set by arm_fix_call_dummy that tells whether the calling
167 function is a Thumb function. This flag is checked by
168 arm_pc_is_thumb and arm_call_dummy_breakpoint_offset. */
169
170 static int caller_is_thumb;
171
172 /* Determine if the program counter specified in MEMADDR is in a Thumb
173 function. */
174
175 int
176 arm_pc_is_thumb (CORE_ADDR memaddr)
177 {
178 struct minimal_symbol *sym;
179
180 /* If bit 0 of the address is set, assume this is a Thumb address. */
181 if (IS_THUMB_ADDR (memaddr))
182 return 1;
183
184 /* Thumb functions have a "special" bit set in minimal symbols. */
185 sym = lookup_minimal_symbol_by_pc (memaddr);
186 if (sym)
187 {
188 return (MSYMBOL_IS_SPECIAL (sym));
189 }
190 else
191 {
192 return 0;
193 }
194 }
195
196 /* Determine if the program counter specified in MEMADDR is in a call
197 dummy being called from a Thumb function. */
198
199 int
200 arm_pc_is_thumb_dummy (CORE_ADDR memaddr)
201 {
202 CORE_ADDR sp = read_sp ();
203
204 /* FIXME: Until we switch for the new call dummy macros, this heuristic
205 is the best we can do. We are trying to determine if the pc is on
206 the stack, which (hopefully) will only happen in a call dummy.
207 We hope the current stack pointer is not so far alway from the dummy
208 frame location (true if we have not pushed large data structures or
209 gone too many levels deep) and that our 1024 is not enough to consider
210 code regions as part of the stack (true for most practical purposes) */
211 if (PC_IN_CALL_DUMMY (memaddr, sp, sp + 1024))
212 return caller_is_thumb;
213 else
214 return 0;
215 }
216
217 /* Remove useless bits from addresses in a running program. */
218 static CORE_ADDR
219 arm_addr_bits_remove (CORE_ADDR val)
220 {
221 if (arm_pc_is_thumb (val))
222 return (val & (arm_apcs_32 ? 0xfffffffe : 0x03fffffe));
223 else
224 return (val & (arm_apcs_32 ? 0xfffffffc : 0x03fffffc));
225 }
226
227 /* When reading symbols, we need to zap the low bit of the address,
228 which may be set to 1 for Thumb functions. */
229 static CORE_ADDR
230 arm_smash_text_address (CORE_ADDR val)
231 {
232 return val & ~1;
233 }
234
235 /* Immediately after a function call, return the saved pc. Can't
236 always go through the frames for this because on some machines the
237 new frame is not set up until the new function executes some
238 instructions. */
239
240 static CORE_ADDR
241 arm_saved_pc_after_call (struct frame_info *frame)
242 {
243 return ADDR_BITS_REMOVE (read_register (ARM_LR_REGNUM));
244 }
245
246 /* Determine whether the function invocation represented by FI has a
247 frame on the stack associated with it. If it does return zero,
248 otherwise return 1. */
249
250 static int
251 arm_frameless_function_invocation (struct frame_info *fi)
252 {
253 CORE_ADDR func_start, after_prologue;
254 int frameless;
255
256 /* Sometimes we have functions that do a little setup (like saving the
257 vN registers with the stmdb instruction, but DO NOT set up a frame.
258 The symbol table will report this as a prologue. However, it is
259 important not to try to parse these partial frames as frames, or we
260 will get really confused.
261
262 So I will demand 3 instructions between the start & end of the
263 prologue before I call it a real prologue, i.e. at least
264 mov ip, sp,
265 stmdb sp!, {}
266 sub sp, ip, #4. */
267
268 func_start = (get_pc_function_start ((fi)->pc) + FUNCTION_START_OFFSET);
269 after_prologue = SKIP_PROLOGUE (func_start);
270
271 /* There are some frameless functions whose first two instructions
272 follow the standard APCS form, in which case after_prologue will
273 be func_start + 8. */
274
275 frameless = (after_prologue < func_start + 12);
276 return frameless;
277 }
278
279 /* The address of the arguments in the frame. */
280 static CORE_ADDR
281 arm_frame_args_address (struct frame_info *fi)
282 {
283 return fi->frame;
284 }
285
286 /* The address of the local variables in the frame. */
287 static CORE_ADDR
288 arm_frame_locals_address (struct frame_info *fi)
289 {
290 return fi->frame;
291 }
292
293 /* The number of arguments being passed in the frame. */
294 static int
295 arm_frame_num_args (struct frame_info *fi)
296 {
297 /* We have no way of knowing. */
298 return -1;
299 }
300
301 /* A typical Thumb prologue looks like this:
302 push {r7, lr}
303 add sp, sp, #-28
304 add r7, sp, #12
305 Sometimes the latter instruction may be replaced by:
306 mov r7, sp
307
308 or like this:
309 push {r7, lr}
310 mov r7, sp
311 sub sp, #12
312
313 or, on tpcs, like this:
314 sub sp,#16
315 push {r7, lr}
316 (many instructions)
317 mov r7, sp
318 sub sp, #12
319
320 There is always one instruction of three classes:
321 1 - push
322 2 - setting of r7
323 3 - adjusting of sp
324
325 When we have found at least one of each class we are done with the prolog.
326 Note that the "sub sp, #NN" before the push does not count.
327 */
328
329 static CORE_ADDR
330 thumb_skip_prologue (CORE_ADDR pc, CORE_ADDR func_end)
331 {
332 CORE_ADDR current_pc;
333 int findmask = 0; /* findmask:
334 bit 0 - push { rlist }
335 bit 1 - mov r7, sp OR add r7, sp, #imm (setting of r7)
336 bit 2 - sub sp, #simm OR add sp, #simm (adjusting of sp)
337 */
338
339 for (current_pc = pc; current_pc + 2 < func_end && current_pc < pc + 40; current_pc += 2)
340 {
341 unsigned short insn = read_memory_unsigned_integer (current_pc, 2);
342
343 if ((insn & 0xfe00) == 0xb400) /* push { rlist } */
344 {
345 findmask |= 1; /* push found */
346 }
347 else if ((insn & 0xff00) == 0xb000) /* add sp, #simm OR sub sp, #simm */
348 {
349 if ((findmask & 1) == 0) /* before push ? */
350 continue;
351 else
352 findmask |= 4; /* add/sub sp found */
353 }
354 else if ((insn & 0xff00) == 0xaf00) /* add r7, sp, #imm */
355 {
356 findmask |= 2; /* setting of r7 found */
357 }
358 else if (insn == 0x466f) /* mov r7, sp */
359 {
360 findmask |= 2; /* setting of r7 found */
361 }
362 else if (findmask == (4+2+1))
363 {
364 break; /* We have found one of each type of prologue instruction */
365 }
366 else
367 continue; /* something in the prolog that we don't care about or some
368 instruction from outside the prolog scheduled here for optimization */
369 }
370
371 return current_pc;
372 }
373
374 /* Advance the PC across any function entry prologue instructions to reach
375 some "real" code.
376
377 The APCS (ARM Procedure Call Standard) defines the following
378 prologue:
379
380 mov ip, sp
381 [stmfd sp!, {a1,a2,a3,a4}]
382 stmfd sp!, {...,fp,ip,lr,pc}
383 [stfe f7, [sp, #-12]!]
384 [stfe f6, [sp, #-12]!]
385 [stfe f5, [sp, #-12]!]
386 [stfe f4, [sp, #-12]!]
387 sub fp, ip, #nn @@ nn == 20 or 4 depending on second insn */
388
389 static CORE_ADDR
390 arm_skip_prologue (CORE_ADDR pc)
391 {
392 unsigned long inst;
393 CORE_ADDR skip_pc;
394 CORE_ADDR func_addr, func_end;
395 char *func_name;
396 struct symtab_and_line sal;
397
398 /* See what the symbol table says. */
399
400 if (find_pc_partial_function (pc, &func_name, &func_addr, &func_end))
401 {
402 struct symbol *sym;
403
404 /* Found a function. */
405 sym = lookup_symbol (func_name, NULL, VAR_NAMESPACE, NULL, NULL);
406 if (sym && SYMBOL_LANGUAGE (sym) != language_asm)
407 {
408 /* Don't use this trick for assembly source files. */
409 sal = find_pc_line (func_addr, 0);
410 if ((sal.line != 0) && (sal.end < func_end))
411 return sal.end;
412 }
413 }
414
415 /* Check if this is Thumb code. */
416 if (arm_pc_is_thumb (pc))
417 return thumb_skip_prologue (pc, func_end);
418
419 /* Can't find the prologue end in the symbol table, try it the hard way
420 by disassembling the instructions. */
421 skip_pc = pc;
422 inst = read_memory_integer (skip_pc, 4);
423 if (inst != 0xe1a0c00d) /* mov ip, sp */
424 return pc;
425
426 skip_pc += 4;
427 inst = read_memory_integer (skip_pc, 4);
428 if ((inst & 0xfffffff0) == 0xe92d0000) /* stmfd sp!,{a1,a2,a3,a4} */
429 {
430 skip_pc += 4;
431 inst = read_memory_integer (skip_pc, 4);
432 }
433
434 if ((inst & 0xfffff800) != 0xe92dd800) /* stmfd sp!,{...,fp,ip,lr,pc} */
435 return pc;
436
437 skip_pc += 4;
438 inst = read_memory_integer (skip_pc, 4);
439
440 /* Any insns after this point may float into the code, if it makes
441 for better instruction scheduling, so we skip them only if we
442 find them, but still consdier the function to be frame-ful. */
443
444 /* We may have either one sfmfd instruction here, or several stfe
445 insns, depending on the version of floating point code we
446 support. */
447 if ((inst & 0xffbf0fff) == 0xec2d0200) /* sfmfd fn, <cnt>, [sp]! */
448 {
449 skip_pc += 4;
450 inst = read_memory_integer (skip_pc, 4);
451 }
452 else
453 {
454 while ((inst & 0xffff8fff) == 0xed6d0103) /* stfe fn, [sp, #-12]! */
455 {
456 skip_pc += 4;
457 inst = read_memory_integer (skip_pc, 4);
458 }
459 }
460
461 if ((inst & 0xfffff000) == 0xe24cb000) /* sub fp, ip, #nn */
462 skip_pc += 4;
463
464 return skip_pc;
465 }
466 /* *INDENT-OFF* */
467 /* Function: thumb_scan_prologue (helper function for arm_scan_prologue)
468 This function decodes a Thumb function prologue to determine:
469 1) the size of the stack frame
470 2) which registers are saved on it
471 3) the offsets of saved regs
472 4) the offset from the stack pointer to the frame pointer
473 This information is stored in the "extra" fields of the frame_info.
474
475 A typical Thumb function prologue would create this stack frame
476 (offsets relative to FP)
477 old SP -> 24 stack parameters
478 20 LR
479 16 R7
480 R7 -> 0 local variables (16 bytes)
481 SP -> -12 additional stack space (12 bytes)
482 The frame size would thus be 36 bytes, and the frame offset would be
483 12 bytes. The frame register is R7.
484
485 The comments for thumb_skip_prolog() describe the algorithm we use to detect
486 the end of the prolog */
487 /* *INDENT-ON* */
488
489 static void
490 thumb_scan_prologue (struct frame_info *fi)
491 {
492 CORE_ADDR prologue_start;
493 CORE_ADDR prologue_end;
494 CORE_ADDR current_pc;
495 int saved_reg[16]; /* which register has been copied to register n? */
496 int findmask = 0; /* findmask:
497 bit 0 - push { rlist }
498 bit 1 - mov r7, sp OR add r7, sp, #imm (setting of r7)
499 bit 2 - sub sp, #simm OR add sp, #simm (adjusting of sp)
500 */
501 int i;
502
503 if (find_pc_partial_function (fi->pc, NULL, &prologue_start, &prologue_end))
504 {
505 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
506
507 if (sal.line == 0) /* no line info, use current PC */
508 prologue_end = fi->pc;
509 else if (sal.end < prologue_end) /* next line begins after fn end */
510 prologue_end = sal.end; /* (probably means no prologue) */
511 }
512 else
513 prologue_end = prologue_start + 40; /* We're in the boondocks: allow for */
514 /* 16 pushes, an add, and "mv fp,sp" */
515
516 prologue_end = min (prologue_end, fi->pc);
517
518 /* Initialize the saved register map. When register H is copied to
519 register L, we will put H in saved_reg[L]. */
520 for (i = 0; i < 16; i++)
521 saved_reg[i] = i;
522
523 /* Search the prologue looking for instructions that set up the
524 frame pointer, adjust the stack pointer, and save registers.
525 Do this until all basic prolog instructions are found. */
526
527 fi->extra_info->framesize = 0;
528 for (current_pc = prologue_start;
529 (current_pc < prologue_end) && ((findmask & 7) != 7);
530 current_pc += 2)
531 {
532 unsigned short insn;
533 int regno;
534 int offset;
535
536 insn = read_memory_unsigned_integer (current_pc, 2);
537
538 if ((insn & 0xfe00) == 0xb400) /* push { rlist } */
539 {
540 int mask;
541 findmask |= 1; /* push found */
542 /* Bits 0-7 contain a mask for registers R0-R7. Bit 8 says
543 whether to save LR (R14). */
544 mask = (insn & 0xff) | ((insn & 0x100) << 6);
545
546 /* Calculate offsets of saved R0-R7 and LR. */
547 for (regno = ARM_LR_REGNUM; regno >= 0; regno--)
548 if (mask & (1 << regno))
549 {
550 fi->extra_info->framesize += 4;
551 fi->saved_regs[saved_reg[regno]] =
552 -(fi->extra_info->framesize);
553 saved_reg[regno] = regno; /* reset saved register map */
554 }
555 }
556 else if ((insn & 0xff00) == 0xb000) /* add sp, #simm OR sub sp, #simm */
557 {
558 if ((findmask & 1) == 0) /* before push ? */
559 continue;
560 else
561 findmask |= 4; /* add/sub sp found */
562
563 offset = (insn & 0x7f) << 2; /* get scaled offset */
564 if (insn & 0x80) /* is it signed? (==subtracting) */
565 {
566 fi->extra_info->frameoffset += offset;
567 offset = -offset;
568 }
569 fi->extra_info->framesize -= offset;
570 }
571 else if ((insn & 0xff00) == 0xaf00) /* add r7, sp, #imm */
572 {
573 findmask |= 2; /* setting of r7 found */
574 fi->extra_info->framereg = THUMB_FP_REGNUM;
575 /* get scaled offset */
576 fi->extra_info->frameoffset = (insn & 0xff) << 2;
577 }
578 else if (insn == 0x466f) /* mov r7, sp */
579 {
580 findmask |= 2; /* setting of r7 found */
581 fi->extra_info->framereg = THUMB_FP_REGNUM;
582 fi->extra_info->frameoffset = 0;
583 saved_reg[THUMB_FP_REGNUM] = ARM_SP_REGNUM;
584 }
585 else if ((insn & 0xffc0) == 0x4640) /* mov r0-r7, r8-r15 */
586 {
587 int lo_reg = insn & 7; /* dest. register (r0-r7) */
588 int hi_reg = ((insn >> 3) & 7) + 8; /* source register (r8-15) */
589 saved_reg[lo_reg] = hi_reg; /* remember hi reg was saved */
590 }
591 else
592 continue; /* something in the prolog that we don't care about or some
593 instruction from outside the prolog scheduled here for optimization */
594 }
595 }
596
597 /* Check if prologue for this frame's PC has already been scanned. If
598 it has, copy the relevant information about that prologue and
599 return non-zero. Otherwise do not copy anything and return zero.
600
601 The information saved in the cache includes:
602 * the frame register number;
603 * the size of the stack frame;
604 * the offsets of saved regs (relative to the old SP); and
605 * the offset from the stack pointer to the frame pointer
606
607 The cache contains only one entry, since this is adequate for the
608 typical sequence of prologue scan requests we get. When performing
609 a backtrace, GDB will usually ask to scan the same function twice
610 in a row (once to get the frame chain, and once to fill in the
611 extra frame information). */
612
613 static struct frame_info prologue_cache;
614
615 static int
616 check_prologue_cache (struct frame_info *fi)
617 {
618 int i;
619
620 if (fi->pc == prologue_cache.pc)
621 {
622 fi->extra_info->framereg = prologue_cache.extra_info->framereg;
623 fi->extra_info->framesize = prologue_cache.extra_info->framesize;
624 fi->extra_info->frameoffset = prologue_cache.extra_info->frameoffset;
625 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
626 fi->saved_regs[i] = prologue_cache.saved_regs[i];
627 return 1;
628 }
629 else
630 return 0;
631 }
632
633
634 /* Copy the prologue information from fi to the prologue cache. */
635
636 static void
637 save_prologue_cache (struct frame_info *fi)
638 {
639 int i;
640
641 prologue_cache.pc = fi->pc;
642 prologue_cache.extra_info->framereg = fi->extra_info->framereg;
643 prologue_cache.extra_info->framesize = fi->extra_info->framesize;
644 prologue_cache.extra_info->frameoffset = fi->extra_info->frameoffset;
645
646 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
647 prologue_cache.saved_regs[i] = fi->saved_regs[i];
648 }
649
650
651 /* This function decodes an ARM function prologue to determine:
652 1) the size of the stack frame
653 2) which registers are saved on it
654 3) the offsets of saved regs
655 4) the offset from the stack pointer to the frame pointer
656 This information is stored in the "extra" fields of the frame_info.
657
658 There are two basic forms for the ARM prologue. The fixed argument
659 function call will look like:
660
661 mov ip, sp
662 stmfd sp!, {fp, ip, lr, pc}
663 sub fp, ip, #4
664 [sub sp, sp, #4]
665
666 Which would create this stack frame (offsets relative to FP):
667 IP -> 4 (caller's stack)
668 FP -> 0 PC (points to address of stmfd instruction + 8 in callee)
669 -4 LR (return address in caller)
670 -8 IP (copy of caller's SP)
671 -12 FP (caller's FP)
672 SP -> -28 Local variables
673
674 The frame size would thus be 32 bytes, and the frame offset would be
675 28 bytes. The stmfd call can also save any of the vN registers it
676 plans to use, which increases the frame size accordingly.
677
678 Note: The stored PC is 8 off of the STMFD instruction that stored it
679 because the ARM Store instructions always store PC + 8 when you read
680 the PC register.
681
682 A variable argument function call will look like:
683
684 mov ip, sp
685 stmfd sp!, {a1, a2, a3, a4}
686 stmfd sp!, {fp, ip, lr, pc}
687 sub fp, ip, #20
688
689 Which would create this stack frame (offsets relative to FP):
690 IP -> 20 (caller's stack)
691 16 A4
692 12 A3
693 8 A2
694 4 A1
695 FP -> 0 PC (points to address of stmfd instruction + 8 in callee)
696 -4 LR (return address in caller)
697 -8 IP (copy of caller's SP)
698 -12 FP (caller's FP)
699 SP -> -28 Local variables
700
701 The frame size would thus be 48 bytes, and the frame offset would be
702 28 bytes.
703
704 There is another potential complication, which is that the optimizer
705 will try to separate the store of fp in the "stmfd" instruction from
706 the "sub fp, ip, #NN" instruction. Almost anything can be there, so
707 we just key on the stmfd, and then scan for the "sub fp, ip, #NN"...
708
709 Also, note, the original version of the ARM toolchain claimed that there
710 should be an
711
712 instruction at the end of the prologue. I have never seen GCC produce
713 this, and the ARM docs don't mention it. We still test for it below in
714 case it happens...
715
716 */
717
718 static void
719 arm_scan_prologue (struct frame_info *fi)
720 {
721 int regno, sp_offset, fp_offset;
722 LONGEST return_value;
723 CORE_ADDR prologue_start, prologue_end, current_pc;
724
725 /* Check if this function is already in the cache of frame information. */
726 if (check_prologue_cache (fi))
727 return;
728
729 /* Assume there is no frame until proven otherwise. */
730 fi->extra_info->framereg = ARM_SP_REGNUM;
731 fi->extra_info->framesize = 0;
732 fi->extra_info->frameoffset = 0;
733
734 /* Check for Thumb prologue. */
735 if (arm_pc_is_thumb (fi->pc))
736 {
737 thumb_scan_prologue (fi);
738 save_prologue_cache (fi);
739 return;
740 }
741
742 /* Find the function prologue. If we can't find the function in
743 the symbol table, peek in the stack frame to find the PC. */
744 if (find_pc_partial_function (fi->pc, NULL, &prologue_start, &prologue_end))
745 {
746 /* One way to find the end of the prologue (which works well
747 for unoptimized code) is to do the following:
748
749 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
750
751 if (sal.line == 0)
752 prologue_end = fi->pc;
753 else if (sal.end < prologue_end)
754 prologue_end = sal.end;
755
756 This mechanism is very accurate so long as the optimizer
757 doesn't move any instructions from the function body into the
758 prologue. If this happens, sal.end will be the last
759 instruction in the first hunk of prologue code just before
760 the first instruction that the scheduler has moved from
761 the body to the prologue.
762
763 In order to make sure that we scan all of the prologue
764 instructions, we use a slightly less accurate mechanism which
765 may scan more than necessary. To help compensate for this
766 lack of accuracy, the prologue scanning loop below contains
767 several clauses which'll cause the loop to terminate early if
768 an implausible prologue instruction is encountered.
769
770 The expression
771
772 prologue_start + 64
773
774 is a suitable endpoint since it accounts for the largest
775 possible prologue plus up to five instructions inserted by
776 the scheduler. */
777
778 if (prologue_end > prologue_start + 64)
779 {
780 prologue_end = prologue_start + 64; /* See above. */
781 }
782 }
783 else
784 {
785 /* Get address of the stmfd in the prologue of the callee; the saved
786 PC is the address of the stmfd + 8. */
787 if (!safe_read_memory_integer (fi->frame, 4, &return_value))
788 return;
789 else
790 {
791 prologue_start = ADDR_BITS_REMOVE (return_value) - 8;
792 prologue_end = prologue_start + 64; /* See above. */
793 }
794 }
795
796 /* Now search the prologue looking for instructions that set up the
797 frame pointer, adjust the stack pointer, and save registers.
798
799 Be careful, however, and if it doesn't look like a prologue,
800 don't try to scan it. If, for instance, a frameless function
801 begins with stmfd sp!, then we will tell ourselves there is
802 a frame, which will confuse stack traceback, as well ad"finish"
803 and other operations that rely on a knowledge of the stack
804 traceback.
805
806 In the APCS, the prologue should start with "mov ip, sp" so
807 if we don't see this as the first insn, we will stop. [Note:
808 This doesn't seem to be true any longer, so it's now an optional
809 part of the prologue. - Kevin Buettner, 2001-11-20] */
810
811 sp_offset = fp_offset = 0;
812
813 if (read_memory_unsigned_integer (prologue_start, 4)
814 == 0xe1a0c00d) /* mov ip, sp */
815 current_pc = prologue_start + 4;
816 else
817 current_pc = prologue_start;
818
819 for (; current_pc < prologue_end; current_pc += 4)
820 {
821 unsigned int insn = read_memory_unsigned_integer (current_pc, 4);
822
823 if ((insn & 0xffff0000) == 0xe92d0000)
824 /* stmfd sp!, {..., fp, ip, lr, pc}
825 or
826 stmfd sp!, {a1, a2, a3, a4} */
827 {
828 int mask = insn & 0xffff;
829
830 /* Calculate offsets of saved registers. */
831 for (regno = ARM_PC_REGNUM; regno >= 0; regno--)
832 if (mask & (1 << regno))
833 {
834 sp_offset -= 4;
835 fi->saved_regs[regno] = sp_offset;
836 }
837 }
838 else if ((insn & 0xfffff000) == 0xe24cb000) /* sub fp, ip #n */
839 {
840 unsigned imm = insn & 0xff; /* immediate value */
841 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
842 imm = (imm >> rot) | (imm << (32 - rot));
843 fp_offset = -imm;
844 fi->extra_info->framereg = ARM_FP_REGNUM;
845 }
846 else if ((insn & 0xfffff000) == 0xe24dd000) /* sub sp, sp #n */
847 {
848 unsigned imm = insn & 0xff; /* immediate value */
849 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
850 imm = (imm >> rot) | (imm << (32 - rot));
851 sp_offset -= imm;
852 }
853 else if ((insn & 0xffff7fff) == 0xed6d0103) /* stfe f?, [sp, -#c]! */
854 {
855 sp_offset -= 12;
856 regno = ARM_F0_REGNUM + ((insn >> 12) & 0x07);
857 fi->saved_regs[regno] = sp_offset;
858 }
859 else if ((insn & 0xffbf0fff) == 0xec2d0200) /* sfmfd f0, 4, [sp!] */
860 {
861 int n_saved_fp_regs;
862 unsigned int fp_start_reg, fp_bound_reg;
863
864 if ((insn & 0x800) == 0x800) /* N0 is set */
865 {
866 if ((insn & 0x40000) == 0x40000) /* N1 is set */
867 n_saved_fp_regs = 3;
868 else
869 n_saved_fp_regs = 1;
870 }
871 else
872 {
873 if ((insn & 0x40000) == 0x40000) /* N1 is set */
874 n_saved_fp_regs = 2;
875 else
876 n_saved_fp_regs = 4;
877 }
878
879 fp_start_reg = ARM_F0_REGNUM + ((insn >> 12) & 0x7);
880 fp_bound_reg = fp_start_reg + n_saved_fp_regs;
881 for (; fp_start_reg < fp_bound_reg; fp_start_reg++)
882 {
883 sp_offset -= 12;
884 fi->saved_regs[fp_start_reg++] = sp_offset;
885 }
886 }
887 else if ((insn & 0xf0000000) != 0xe0000000)
888 break; /* Condition not true, exit early */
889 else if ((insn & 0xfe200000) == 0xe8200000) /* ldm? */
890 break; /* Don't scan past a block load */
891 else
892 /* The optimizer might shove anything into the prologue,
893 so we just skip what we don't recognize. */
894 continue;
895 }
896
897 /* The frame size is just the negative of the offset (from the original SP)
898 of the last thing thing we pushed on the stack. The frame offset is
899 [new FP] - [new SP]. */
900 fi->extra_info->framesize = -sp_offset;
901 if (fi->extra_info->framereg == ARM_FP_REGNUM)
902 fi->extra_info->frameoffset = fp_offset - sp_offset;
903 else
904 fi->extra_info->frameoffset = 0;
905
906 save_prologue_cache (fi);
907 }
908
909 /* Find REGNUM on the stack. Otherwise, it's in an active register.
910 One thing we might want to do here is to check REGNUM against the
911 clobber mask, and somehow flag it as invalid if it isn't saved on
912 the stack somewhere. This would provide a graceful failure mode
913 when trying to get the value of caller-saves registers for an inner
914 frame. */
915
916 static CORE_ADDR
917 arm_find_callers_reg (struct frame_info *fi, int regnum)
918 {
919 for (; fi; fi = fi->next)
920
921 #if 0 /* FIXME: enable this code if we convert to new call dummy scheme. */
922 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
923 return generic_read_register_dummy (fi->pc, fi->frame, regnum);
924 else
925 #endif
926 if (fi->saved_regs[regnum] != 0)
927 return read_memory_integer (fi->saved_regs[regnum],
928 REGISTER_RAW_SIZE (regnum));
929 return read_register (regnum);
930 }
931 /* Function: frame_chain Given a GDB frame, determine the address of
932 the calling function's frame. This will be used to create a new
933 GDB frame struct, and then INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC
934 will be called for the new frame. For ARM, we save the frame size
935 when we initialize the frame_info. */
936
937 static CORE_ADDR
938 arm_frame_chain (struct frame_info *fi)
939 {
940 #if 0 /* FIXME: enable this code if we convert to new call dummy scheme. */
941 CORE_ADDR fn_start, callers_pc, fp;
942
943 /* is this a dummy frame? */
944 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
945 return fi->frame; /* dummy frame same as caller's frame */
946
947 /* is caller-of-this a dummy frame? */
948 callers_pc = FRAME_SAVED_PC (fi); /* find out who called us: */
949 fp = arm_find_callers_reg (fi, ARM_FP_REGNUM);
950 if (PC_IN_CALL_DUMMY (callers_pc, fp, fp))
951 return fp; /* dummy frame's frame may bear no relation to ours */
952
953 if (find_pc_partial_function (fi->pc, 0, &fn_start, 0))
954 if (fn_start == entry_point_address ())
955 return 0; /* in _start fn, don't chain further */
956 #endif
957 CORE_ADDR caller_pc, fn_start;
958 int framereg = fi->extra_info->framereg;
959
960 if (fi->pc < LOWEST_PC)
961 return 0;
962
963 /* If the caller is the startup code, we're at the end of the chain. */
964 caller_pc = FRAME_SAVED_PC (fi);
965 if (find_pc_partial_function (caller_pc, 0, &fn_start, 0))
966 if (fn_start == entry_point_address ())
967 return 0;
968
969 /* If the caller is Thumb and the caller is ARM, or vice versa,
970 the frame register of the caller is different from ours.
971 So we must scan the prologue of the caller to determine its
972 frame register number. */
973 /* XXX Fixme, we should try to do this without creating a temporary
974 caller_fi. */
975 if (arm_pc_is_thumb (caller_pc) != arm_pc_is_thumb (fi->pc))
976 {
977 struct frame_info caller_fi;
978 struct cleanup *old_chain;
979
980 /* Create a temporary frame suitable for scanning the caller's
981 prologue. (Ugh.) */
982 memset (&caller_fi, 0, sizeof (caller_fi));
983 caller_fi.extra_info = (struct frame_extra_info *)
984 xcalloc (1, sizeof (struct frame_extra_info));
985 old_chain = make_cleanup (xfree, caller_fi.extra_info);
986 caller_fi.saved_regs = (CORE_ADDR *)
987 xcalloc (1, SIZEOF_FRAME_SAVED_REGS);
988 make_cleanup (xfree, caller_fi.saved_regs);
989
990 /* Now, scan the prologue and obtain the frame register. */
991 caller_fi.pc = caller_pc;
992 arm_scan_prologue (&caller_fi);
993 framereg = caller_fi.extra_info->framereg;
994
995 /* Deallocate the storage associated with the temporary frame
996 created above. */
997 do_cleanups (old_chain);
998 }
999
1000 /* If the caller used a frame register, return its value.
1001 Otherwise, return the caller's stack pointer. */
1002 if (framereg == ARM_FP_REGNUM || framereg == THUMB_FP_REGNUM)
1003 return arm_find_callers_reg (fi, framereg);
1004 else
1005 return fi->frame + fi->extra_info->framesize;
1006 }
1007
1008 /* This function actually figures out the frame address for a given pc
1009 and sp. This is tricky because we sometimes don't use an explicit
1010 frame pointer, and the previous stack pointer isn't necessarily
1011 recorded on the stack. The only reliable way to get this info is
1012 to examine the prologue. FROMLEAF is a little confusing, it means
1013 this is the next frame up the chain AFTER a frameless function. If
1014 this is true, then the frame value for this frame is still in the
1015 fp register. */
1016
1017 static void
1018 arm_init_extra_frame_info (int fromleaf, struct frame_info *fi)
1019 {
1020 int reg;
1021 CORE_ADDR sp;
1022
1023 if (fi->saved_regs == NULL)
1024 frame_saved_regs_zalloc (fi);
1025
1026 fi->extra_info = (struct frame_extra_info *)
1027 frame_obstack_alloc (sizeof (struct frame_extra_info));
1028
1029 fi->extra_info->framesize = 0;
1030 fi->extra_info->frameoffset = 0;
1031 fi->extra_info->framereg = 0;
1032
1033 if (fi->next)
1034 fi->pc = FRAME_SAVED_PC (fi->next);
1035
1036 memset (fi->saved_regs, '\000', sizeof fi->saved_regs);
1037
1038 #if 0 /* FIXME: enable this code if we convert to new call dummy scheme. */
1039 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
1040 {
1041 /* We need to setup fi->frame here because run_stack_dummy gets it wrong
1042 by assuming it's always FP. */
1043 fi->frame = generic_read_register_dummy (fi->pc, fi->frame,
1044 ARM_SP_REGNUM);
1045 fi->extra_info->framesize = 0;
1046 fi->extra_info->frameoffset = 0;
1047 return;
1048 }
1049 else
1050 #endif
1051
1052 /* Compute stack pointer for this frame. We use this value for both the
1053 sigtramp and call dummy cases. */
1054 if (!fi->next)
1055 sp = read_sp();
1056 else
1057 sp = (fi->next->frame - fi->next->extra_info->frameoffset
1058 + fi->next->extra_info->framesize);
1059
1060 /* Determine whether or not we're in a sigtramp frame.
1061 Unfortunately, it isn't sufficient to test
1062 fi->signal_handler_caller because this value is sometimes set
1063 after invoking INIT_EXTRA_FRAME_INFO. So we test *both*
1064 fi->signal_handler_caller and IN_SIGTRAMP to determine if we need
1065 to use the sigcontext addresses for the saved registers.
1066
1067 Note: If an ARM IN_SIGTRAMP method ever needs to compare against
1068 the name of the function, the code below will have to be changed
1069 to first fetch the name of the function and then pass this name
1070 to IN_SIGTRAMP. */
1071
1072 if (SIGCONTEXT_REGISTER_ADDRESS_P ()
1073 && (fi->signal_handler_caller || IN_SIGTRAMP (fi->pc, (char *)0)))
1074 {
1075 for (reg = 0; reg < NUM_REGS; reg++)
1076 fi->saved_regs[reg] = SIGCONTEXT_REGISTER_ADDRESS (sp, fi->pc, reg);
1077
1078 /* FIXME: What about thumb mode? */
1079 fi->extra_info->framereg = ARM_SP_REGNUM;
1080 fi->frame =
1081 read_memory_integer (fi->saved_regs[fi->extra_info->framereg],
1082 REGISTER_RAW_SIZE (fi->extra_info->framereg));
1083 fi->extra_info->framesize = 0;
1084 fi->extra_info->frameoffset = 0;
1085
1086 }
1087 else if (PC_IN_CALL_DUMMY (fi->pc, sp, fi->frame))
1088 {
1089 CORE_ADDR rp;
1090 CORE_ADDR callers_sp;
1091
1092 /* Set rp point at the high end of the saved registers. */
1093 rp = fi->frame - REGISTER_SIZE;
1094
1095 /* Fill in addresses of saved registers. */
1096 fi->saved_regs[ARM_PS_REGNUM] = rp;
1097 rp -= REGISTER_RAW_SIZE (ARM_PS_REGNUM);
1098 for (reg = ARM_PC_REGNUM; reg >= 0; reg--)
1099 {
1100 fi->saved_regs[reg] = rp;
1101 rp -= REGISTER_RAW_SIZE (reg);
1102 }
1103
1104 callers_sp = read_memory_integer (fi->saved_regs[ARM_SP_REGNUM],
1105 REGISTER_RAW_SIZE (ARM_SP_REGNUM));
1106 fi->extra_info->framereg = ARM_FP_REGNUM;
1107 fi->extra_info->framesize = callers_sp - sp;
1108 fi->extra_info->frameoffset = fi->frame - sp;
1109 }
1110 else
1111 {
1112 arm_scan_prologue (fi);
1113
1114 if (!fi->next)
1115 /* this is the innermost frame? */
1116 fi->frame = read_register (fi->extra_info->framereg);
1117 else if (fi->extra_info->framereg == ARM_FP_REGNUM
1118 || fi->extra_info->framereg == THUMB_FP_REGNUM)
1119 {
1120 /* not the innermost frame */
1121 /* If we have an FP, the callee saved it. */
1122 if (fi->next->saved_regs[fi->extra_info->framereg] != 0)
1123 fi->frame =
1124 read_memory_integer (fi->next
1125 ->saved_regs[fi->extra_info->framereg], 4);
1126 else if (fromleaf)
1127 /* If we were called by a frameless fn. then our frame is
1128 still in the frame pointer register on the board... */
1129 fi->frame = read_fp ();
1130 }
1131
1132 /* Calculate actual addresses of saved registers using offsets
1133 determined by arm_scan_prologue. */
1134 for (reg = 0; reg < NUM_REGS; reg++)
1135 if (fi->saved_regs[reg] != 0)
1136 fi->saved_regs[reg] += (fi->frame + fi->extra_info->framesize
1137 - fi->extra_info->frameoffset);
1138 }
1139 }
1140
1141
1142 /* Find the caller of this frame. We do this by seeing if ARM_LR_REGNUM
1143 is saved in the stack anywhere, otherwise we get it from the
1144 registers.
1145
1146 The old definition of this function was a macro:
1147 #define FRAME_SAVED_PC(FRAME) \
1148 ADDR_BITS_REMOVE (read_memory_integer ((FRAME)->frame - 4, 4)) */
1149
1150 static CORE_ADDR
1151 arm_frame_saved_pc (struct frame_info *fi)
1152 {
1153 #if 0 /* FIXME: enable this code if we convert to new call dummy scheme. */
1154 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
1155 return generic_read_register_dummy (fi->pc, fi->frame, ARM_PC_REGNUM);
1156 else
1157 #endif
1158 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame - fi->extra_info->frameoffset,
1159 fi->frame))
1160 {
1161 return read_memory_integer (fi->saved_regs[ARM_PC_REGNUM],
1162 REGISTER_RAW_SIZE (ARM_PC_REGNUM));
1163 }
1164 else
1165 {
1166 CORE_ADDR pc = arm_find_callers_reg (fi, ARM_LR_REGNUM);
1167 return IS_THUMB_ADDR (pc) ? UNMAKE_THUMB_ADDR (pc) : pc;
1168 }
1169 }
1170
1171 /* Return the frame address. On ARM, it is R11; on Thumb it is R7.
1172 Examine the Program Status Register to decide which state we're in. */
1173
1174 static CORE_ADDR
1175 arm_read_fp (void)
1176 {
1177 if (read_register (ARM_PS_REGNUM) & 0x20) /* Bit 5 is Thumb state bit */
1178 return read_register (THUMB_FP_REGNUM); /* R7 if Thumb */
1179 else
1180 return read_register (ARM_FP_REGNUM); /* R11 if ARM */
1181 }
1182
1183 /* Store into a struct frame_saved_regs the addresses of the saved
1184 registers of frame described by FRAME_INFO. This includes special
1185 registers such as PC and FP saved in special ways in the stack
1186 frame. SP is even more special: the address we return for it IS
1187 the sp for the next frame. */
1188
1189 static void
1190 arm_frame_init_saved_regs (struct frame_info *fip)
1191 {
1192
1193 if (fip->saved_regs)
1194 return;
1195
1196 arm_init_extra_frame_info (0, fip);
1197 }
1198
1199 /* Push an empty stack frame, to record the current PC, etc. */
1200
1201 static void
1202 arm_push_dummy_frame (void)
1203 {
1204 CORE_ADDR old_sp = read_register (ARM_SP_REGNUM);
1205 CORE_ADDR sp = old_sp;
1206 CORE_ADDR fp, prologue_start;
1207 int regnum;
1208
1209 /* Push the two dummy prologue instructions in reverse order,
1210 so that they'll be in the correct low-to-high order in memory. */
1211 /* sub fp, ip, #4 */
1212 sp = push_word (sp, 0xe24cb004);
1213 /* stmdb sp!, {r0-r10, fp, ip, lr, pc} */
1214 prologue_start = sp = push_word (sp, 0xe92ddfff);
1215
1216 /* Push a pointer to the dummy prologue + 12, because when stm
1217 instruction stores the PC, it stores the address of the stm
1218 instruction itself plus 12. */
1219 fp = sp = push_word (sp, prologue_start + 12);
1220
1221 /* Push the processor status. */
1222 sp = push_word (sp, read_register (ARM_PS_REGNUM));
1223
1224 /* Push all 16 registers starting with r15. */
1225 for (regnum = ARM_PC_REGNUM; regnum >= 0; regnum--)
1226 sp = push_word (sp, read_register (regnum));
1227
1228 /* Update fp (for both Thumb and ARM) and sp. */
1229 write_register (ARM_FP_REGNUM, fp);
1230 write_register (THUMB_FP_REGNUM, fp);
1231 write_register (ARM_SP_REGNUM, sp);
1232 }
1233
1234 /* CALL_DUMMY_WORDS:
1235 This sequence of words is the instructions
1236
1237 mov lr,pc
1238 mov pc,r4
1239 illegal
1240
1241 Note this is 12 bytes. */
1242
1243 static LONGEST arm_call_dummy_words[] =
1244 {
1245 0xe1a0e00f, 0xe1a0f004, 0xe7ffdefe
1246 };
1247
1248 /* Fix up the call dummy, based on whether the processor is currently
1249 in Thumb or ARM mode, and whether the target function is Thumb or
1250 ARM. There are three different situations requiring three
1251 different dummies:
1252
1253 * ARM calling ARM: uses the call dummy in tm-arm.h, which has already
1254 been copied into the dummy parameter to this function.
1255 * ARM calling Thumb: uses the call dummy in tm-arm.h, but with the
1256 "mov pc,r4" instruction patched to be a "bx r4" instead.
1257 * Thumb calling anything: uses the Thumb dummy defined below, which
1258 works for calling both ARM and Thumb functions.
1259
1260 All three call dummies expect to receive the target function
1261 address in R4, with the low bit set if it's a Thumb function. */
1262
1263 static void
1264 arm_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs,
1265 struct value **args, struct type *type, int gcc_p)
1266 {
1267 static short thumb_dummy[4] =
1268 {
1269 0xf000, 0xf801, /* bl label */
1270 0xdf18, /* swi 24 */
1271 0x4720, /* label: bx r4 */
1272 };
1273 static unsigned long arm_bx_r4 = 0xe12fff14; /* bx r4 instruction */
1274
1275 /* Set flag indicating whether the current PC is in a Thumb function. */
1276 caller_is_thumb = arm_pc_is_thumb (read_pc ());
1277
1278 /* If the target function is Thumb, set the low bit of the function
1279 address. And if the CPU is currently in ARM mode, patch the
1280 second instruction of call dummy to use a BX instruction to
1281 switch to Thumb mode. */
1282 target_is_thumb = arm_pc_is_thumb (fun);
1283 if (target_is_thumb)
1284 {
1285 fun |= 1;
1286 if (!caller_is_thumb)
1287 store_unsigned_integer (dummy + 4, sizeof (arm_bx_r4), arm_bx_r4);
1288 }
1289
1290 /* If the CPU is currently in Thumb mode, use the Thumb call dummy
1291 instead of the ARM one that's already been copied. This will
1292 work for both Thumb and ARM target functions. */
1293 if (caller_is_thumb)
1294 {
1295 int i;
1296 char *p = dummy;
1297 int len = sizeof (thumb_dummy) / sizeof (thumb_dummy[0]);
1298
1299 for (i = 0; i < len; i++)
1300 {
1301 store_unsigned_integer (p, sizeof (thumb_dummy[0]), thumb_dummy[i]);
1302 p += sizeof (thumb_dummy[0]);
1303 }
1304 }
1305
1306 /* Put the target address in r4; the call dummy will copy this to
1307 the PC. */
1308 write_register (4, fun);
1309 }
1310
1311 /* Return the offset in the call dummy of the instruction that needs
1312 to have a breakpoint placed on it. This is the offset of the 'swi
1313 24' instruction, which is no longer actually used, but simply acts
1314 as a place-holder now.
1315
1316 This implements the CALL_DUMMY_BREAK_OFFSET macro. */
1317
1318 int
1319 arm_call_dummy_breakpoint_offset (void)
1320 {
1321 if (caller_is_thumb)
1322 return 4;
1323 else
1324 return 8;
1325 }
1326
1327 /* Note: ScottB
1328
1329 This function does not support passing parameters using the FPA
1330 variant of the APCS. It passes any floating point arguments in the
1331 general registers and/or on the stack. */
1332
1333 static CORE_ADDR
1334 arm_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
1335 int struct_return, CORE_ADDR struct_addr)
1336 {
1337 char *fp;
1338 int argnum, argreg, nstack_size;
1339
1340 /* Walk through the list of args and determine how large a temporary
1341 stack is required. Need to take care here as structs may be
1342 passed on the stack, and we have to to push them. */
1343 nstack_size = -4 * REGISTER_SIZE; /* Some arguments go into A1-A4. */
1344 if (struct_return) /* The struct address goes in A1. */
1345 nstack_size += REGISTER_SIZE;
1346
1347 /* Walk through the arguments and add their size to nstack_size. */
1348 for (argnum = 0; argnum < nargs; argnum++)
1349 {
1350 int len;
1351 struct type *arg_type;
1352
1353 arg_type = check_typedef (VALUE_TYPE (args[argnum]));
1354 len = TYPE_LENGTH (arg_type);
1355
1356 /* ANSI C code passes float arguments as integers, K&R code
1357 passes float arguments as doubles. Correct for this here. */
1358 if (TYPE_CODE_FLT == TYPE_CODE (arg_type) && REGISTER_SIZE == len)
1359 nstack_size += FP_REGISTER_VIRTUAL_SIZE;
1360 else
1361 nstack_size += len;
1362 }
1363
1364 /* Allocate room on the stack, and initialize our stack frame
1365 pointer. */
1366 fp = NULL;
1367 if (nstack_size > 0)
1368 {
1369 sp -= nstack_size;
1370 fp = (char *) sp;
1371 }
1372
1373 /* Initialize the integer argument register pointer. */
1374 argreg = ARM_A1_REGNUM;
1375
1376 /* The struct_return pointer occupies the first parameter passing
1377 register. */
1378 if (struct_return)
1379 write_register (argreg++, struct_addr);
1380
1381 /* Process arguments from left to right. Store as many as allowed
1382 in the parameter passing registers (A1-A4), and save the rest on
1383 the temporary stack. */
1384 for (argnum = 0; argnum < nargs; argnum++)
1385 {
1386 int len;
1387 char *val;
1388 CORE_ADDR regval;
1389 enum type_code typecode;
1390 struct type *arg_type, *target_type;
1391
1392 arg_type = check_typedef (VALUE_TYPE (args[argnum]));
1393 target_type = TYPE_TARGET_TYPE (arg_type);
1394 len = TYPE_LENGTH (arg_type);
1395 typecode = TYPE_CODE (arg_type);
1396 val = (char *) VALUE_CONTENTS (args[argnum]);
1397
1398 /* ANSI C code passes float arguments as integers, K&R code
1399 passes float arguments as doubles. The .stabs record for
1400 for ANSI prototype floating point arguments records the
1401 type as FP_INTEGER, while a K&R style (no prototype)
1402 .stabs records the type as FP_FLOAT. In this latter case
1403 the compiler converts the float arguments to double before
1404 calling the function. */
1405 if (TYPE_CODE_FLT == typecode && REGISTER_SIZE == len)
1406 {
1407 DOUBLEST dblval;
1408 dblval = extract_floating (val, len);
1409 len = TARGET_DOUBLE_BIT / TARGET_CHAR_BIT;
1410 val = alloca (len);
1411 store_floating (val, len, dblval);
1412 }
1413 #if 1
1414 /* I don't know why this code was disable. The only logical use
1415 for a function pointer is to call that function, so setting
1416 the mode bit is perfectly fine. FN */
1417 /* If the argument is a pointer to a function, and it is a Thumb
1418 function, set the low bit of the pointer. */
1419 if (TYPE_CODE_PTR == typecode
1420 && NULL != target_type
1421 && TYPE_CODE_FUNC == TYPE_CODE (target_type))
1422 {
1423 CORE_ADDR regval = extract_address (val, len);
1424 if (arm_pc_is_thumb (regval))
1425 store_address (val, len, MAKE_THUMB_ADDR (regval));
1426 }
1427 #endif
1428 /* Copy the argument to general registers or the stack in
1429 register-sized pieces. Large arguments are split between
1430 registers and stack. */
1431 while (len > 0)
1432 {
1433 int partial_len = len < REGISTER_SIZE ? len : REGISTER_SIZE;
1434
1435 if (argreg <= ARM_LAST_ARG_REGNUM)
1436 {
1437 /* It's an argument being passed in a general register. */
1438 regval = extract_address (val, partial_len);
1439 write_register (argreg++, regval);
1440 }
1441 else
1442 {
1443 /* Push the arguments onto the stack. */
1444 write_memory ((CORE_ADDR) fp, val, REGISTER_SIZE);
1445 fp += REGISTER_SIZE;
1446 }
1447
1448 len -= partial_len;
1449 val += partial_len;
1450 }
1451 }
1452
1453 /* Return adjusted stack pointer. */
1454 return sp;
1455 }
1456
1457 /* Pop the current frame. So long as the frame info has been initialized
1458 properly (see arm_init_extra_frame_info), this code works for dummy frames
1459 as well as regular frames. I.e, there's no need to have a special case
1460 for dummy frames. */
1461 static void
1462 arm_pop_frame (void)
1463 {
1464 int regnum;
1465 struct frame_info *frame = get_current_frame ();
1466 CORE_ADDR old_SP = (frame->frame - frame->extra_info->frameoffset
1467 + frame->extra_info->framesize);
1468
1469 for (regnum = 0; regnum < NUM_REGS; regnum++)
1470 if (frame->saved_regs[regnum] != 0)
1471 write_register (regnum,
1472 read_memory_integer (frame->saved_regs[regnum],
1473 REGISTER_RAW_SIZE (regnum)));
1474
1475 write_register (ARM_PC_REGNUM, FRAME_SAVED_PC (frame));
1476 write_register (ARM_SP_REGNUM, old_SP);
1477
1478 flush_cached_frames ();
1479 }
1480
1481 static void
1482 print_fpu_flags (int flags)
1483 {
1484 if (flags & (1 << 0))
1485 fputs ("IVO ", stdout);
1486 if (flags & (1 << 1))
1487 fputs ("DVZ ", stdout);
1488 if (flags & (1 << 2))
1489 fputs ("OFL ", stdout);
1490 if (flags & (1 << 3))
1491 fputs ("UFL ", stdout);
1492 if (flags & (1 << 4))
1493 fputs ("INX ", stdout);
1494 putchar ('\n');
1495 }
1496
1497 /* Print interesting information about the floating point processor
1498 (if present) or emulator. */
1499 static void
1500 arm_print_float_info (void)
1501 {
1502 register unsigned long status = read_register (ARM_FPS_REGNUM);
1503 int type;
1504
1505 type = (status >> 24) & 127;
1506 printf ("%s FPU type %d\n",
1507 (status & (1 << 31)) ? "Hardware" : "Software",
1508 type);
1509 fputs ("mask: ", stdout);
1510 print_fpu_flags (status >> 16);
1511 fputs ("flags: ", stdout);
1512 print_fpu_flags (status);
1513 }
1514
1515 /* Return the GDB type object for the "standard" data type of data in
1516 register N. */
1517
1518 static struct type *
1519 arm_register_type (int regnum)
1520 {
1521 if (regnum >= ARM_F0_REGNUM && regnum < ARM_F0_REGNUM + NUM_FREGS)
1522 {
1523 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1524 return builtin_type_arm_ext_big;
1525 else
1526 return builtin_type_arm_ext_littlebyte_bigword;
1527 }
1528 else
1529 return builtin_type_int32;
1530 }
1531
1532 /* Index within `registers' of the first byte of the space for
1533 register N. */
1534
1535 static int
1536 arm_register_byte (int regnum)
1537 {
1538 if (regnum < ARM_F0_REGNUM)
1539 return regnum * INT_REGISTER_RAW_SIZE;
1540 else if (regnum < ARM_PS_REGNUM)
1541 return (NUM_GREGS * INT_REGISTER_RAW_SIZE
1542 + (regnum - ARM_F0_REGNUM) * FP_REGISTER_RAW_SIZE);
1543 else
1544 return (NUM_GREGS * INT_REGISTER_RAW_SIZE
1545 + NUM_FREGS * FP_REGISTER_RAW_SIZE
1546 + (regnum - ARM_FPS_REGNUM) * STATUS_REGISTER_SIZE);
1547 }
1548
1549 /* Number of bytes of storage in the actual machine representation for
1550 register N. All registers are 4 bytes, except fp0 - fp7, which are
1551 12 bytes in length. */
1552
1553 static int
1554 arm_register_raw_size (int regnum)
1555 {
1556 if (regnum < ARM_F0_REGNUM)
1557 return INT_REGISTER_RAW_SIZE;
1558 else if (regnum < ARM_FPS_REGNUM)
1559 return FP_REGISTER_RAW_SIZE;
1560 else
1561 return STATUS_REGISTER_SIZE;
1562 }
1563
1564 /* Number of bytes of storage in a program's representation
1565 for register N. */
1566 static int
1567 arm_register_virtual_size (int regnum)
1568 {
1569 if (regnum < ARM_F0_REGNUM)
1570 return INT_REGISTER_VIRTUAL_SIZE;
1571 else if (regnum < ARM_FPS_REGNUM)
1572 return FP_REGISTER_VIRTUAL_SIZE;
1573 else
1574 return STATUS_REGISTER_SIZE;
1575 }
1576
1577
1578 /* NOTE: cagney/2001-08-20: Both convert_from_extended() and
1579 convert_to_extended() use floatformat_arm_ext_littlebyte_bigword.
1580 It is thought that this is is the floating-point register format on
1581 little-endian systems. */
1582
1583 static void
1584 convert_from_extended (void *ptr, void *dbl)
1585 {
1586 DOUBLEST d;
1587 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1588 floatformat_to_doublest (&floatformat_arm_ext_big, ptr, &d);
1589 else
1590 floatformat_to_doublest (&floatformat_arm_ext_littlebyte_bigword,
1591 ptr, &d);
1592 floatformat_from_doublest (TARGET_DOUBLE_FORMAT, &d, dbl);
1593 }
1594
1595 static void
1596 convert_to_extended (void *dbl, void *ptr)
1597 {
1598 DOUBLEST d;
1599 floatformat_to_doublest (TARGET_DOUBLE_FORMAT, ptr, &d);
1600 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1601 floatformat_from_doublest (&floatformat_arm_ext_big, &d, dbl);
1602 else
1603 floatformat_from_doublest (&floatformat_arm_ext_littlebyte_bigword,
1604 &d, dbl);
1605 }
1606
1607 static int
1608 condition_true (unsigned long cond, unsigned long status_reg)
1609 {
1610 if (cond == INST_AL || cond == INST_NV)
1611 return 1;
1612
1613 switch (cond)
1614 {
1615 case INST_EQ:
1616 return ((status_reg & FLAG_Z) != 0);
1617 case INST_NE:
1618 return ((status_reg & FLAG_Z) == 0);
1619 case INST_CS:
1620 return ((status_reg & FLAG_C) != 0);
1621 case INST_CC:
1622 return ((status_reg & FLAG_C) == 0);
1623 case INST_MI:
1624 return ((status_reg & FLAG_N) != 0);
1625 case INST_PL:
1626 return ((status_reg & FLAG_N) == 0);
1627 case INST_VS:
1628 return ((status_reg & FLAG_V) != 0);
1629 case INST_VC:
1630 return ((status_reg & FLAG_V) == 0);
1631 case INST_HI:
1632 return ((status_reg & (FLAG_C | FLAG_Z)) == FLAG_C);
1633 case INST_LS:
1634 return ((status_reg & (FLAG_C | FLAG_Z)) != FLAG_C);
1635 case INST_GE:
1636 return (((status_reg & FLAG_N) == 0) == ((status_reg & FLAG_V) == 0));
1637 case INST_LT:
1638 return (((status_reg & FLAG_N) == 0) != ((status_reg & FLAG_V) == 0));
1639 case INST_GT:
1640 return (((status_reg & FLAG_Z) == 0) &&
1641 (((status_reg & FLAG_N) == 0) == ((status_reg & FLAG_V) == 0)));
1642 case INST_LE:
1643 return (((status_reg & FLAG_Z) != 0) ||
1644 (((status_reg & FLAG_N) == 0) != ((status_reg & FLAG_V) == 0)));
1645 }
1646 return 1;
1647 }
1648
1649 /* Support routines for single stepping. Calculate the next PC value. */
1650 #define submask(x) ((1L << ((x) + 1)) - 1)
1651 #define bit(obj,st) (((obj) >> (st)) & 1)
1652 #define bits(obj,st,fn) (((obj) >> (st)) & submask ((fn) - (st)))
1653 #define sbits(obj,st,fn) \
1654 ((long) (bits(obj,st,fn) | ((long) bit(obj,fn) * ~ submask (fn - st))))
1655 #define BranchDest(addr,instr) \
1656 ((CORE_ADDR) (((long) (addr)) + 8 + (sbits (instr, 0, 23) << 2)))
1657 #define ARM_PC_32 1
1658
1659 static unsigned long
1660 shifted_reg_val (unsigned long inst, int carry, unsigned long pc_val,
1661 unsigned long status_reg)
1662 {
1663 unsigned long res, shift;
1664 int rm = bits (inst, 0, 3);
1665 unsigned long shifttype = bits (inst, 5, 6);
1666
1667 if (bit (inst, 4))
1668 {
1669 int rs = bits (inst, 8, 11);
1670 shift = (rs == 15 ? pc_val + 8 : read_register (rs)) & 0xFF;
1671 }
1672 else
1673 shift = bits (inst, 7, 11);
1674
1675 res = (rm == 15
1676 ? ((pc_val | (ARM_PC_32 ? 0 : status_reg))
1677 + (bit (inst, 4) ? 12 : 8))
1678 : read_register (rm));
1679
1680 switch (shifttype)
1681 {
1682 case 0: /* LSL */
1683 res = shift >= 32 ? 0 : res << shift;
1684 break;
1685
1686 case 1: /* LSR */
1687 res = shift >= 32 ? 0 : res >> shift;
1688 break;
1689
1690 case 2: /* ASR */
1691 if (shift >= 32)
1692 shift = 31;
1693 res = ((res & 0x80000000L)
1694 ? ~((~res) >> shift) : res >> shift);
1695 break;
1696
1697 case 3: /* ROR/RRX */
1698 shift &= 31;
1699 if (shift == 0)
1700 res = (res >> 1) | (carry ? 0x80000000L : 0);
1701 else
1702 res = (res >> shift) | (res << (32 - shift));
1703 break;
1704 }
1705
1706 return res & 0xffffffff;
1707 }
1708
1709 /* Return number of 1-bits in VAL. */
1710
1711 static int
1712 bitcount (unsigned long val)
1713 {
1714 int nbits;
1715 for (nbits = 0; val != 0; nbits++)
1716 val &= val - 1; /* delete rightmost 1-bit in val */
1717 return nbits;
1718 }
1719
1720 CORE_ADDR
1721 thumb_get_next_pc (CORE_ADDR pc)
1722 {
1723 unsigned long pc_val = ((unsigned long) pc) + 4; /* PC after prefetch */
1724 unsigned short inst1 = read_memory_integer (pc, 2);
1725 CORE_ADDR nextpc = pc + 2; /* default is next instruction */
1726 unsigned long offset;
1727
1728 if ((inst1 & 0xff00) == 0xbd00) /* pop {rlist, pc} */
1729 {
1730 CORE_ADDR sp;
1731
1732 /* Fetch the saved PC from the stack. It's stored above
1733 all of the other registers. */
1734 offset = bitcount (bits (inst1, 0, 7)) * REGISTER_SIZE;
1735 sp = read_register (ARM_SP_REGNUM);
1736 nextpc = (CORE_ADDR) read_memory_integer (sp + offset, 4);
1737 nextpc = ADDR_BITS_REMOVE (nextpc);
1738 if (nextpc == pc)
1739 error ("Infinite loop detected");
1740 }
1741 else if ((inst1 & 0xf000) == 0xd000) /* conditional branch */
1742 {
1743 unsigned long status = read_register (ARM_PS_REGNUM);
1744 unsigned long cond = bits (inst1, 8, 11);
1745 if (cond != 0x0f && condition_true (cond, status)) /* 0x0f = SWI */
1746 nextpc = pc_val + (sbits (inst1, 0, 7) << 1);
1747 }
1748 else if ((inst1 & 0xf800) == 0xe000) /* unconditional branch */
1749 {
1750 nextpc = pc_val + (sbits (inst1, 0, 10) << 1);
1751 }
1752 else if ((inst1 & 0xf800) == 0xf000) /* long branch with link */
1753 {
1754 unsigned short inst2 = read_memory_integer (pc + 2, 2);
1755 offset = (sbits (inst1, 0, 10) << 12) + (bits (inst2, 0, 10) << 1);
1756 nextpc = pc_val + offset;
1757 }
1758
1759 return nextpc;
1760 }
1761
1762 CORE_ADDR
1763 arm_get_next_pc (CORE_ADDR pc)
1764 {
1765 unsigned long pc_val;
1766 unsigned long this_instr;
1767 unsigned long status;
1768 CORE_ADDR nextpc;
1769
1770 if (arm_pc_is_thumb (pc))
1771 return thumb_get_next_pc (pc);
1772
1773 pc_val = (unsigned long) pc;
1774 this_instr = read_memory_integer (pc, 4);
1775 status = read_register (ARM_PS_REGNUM);
1776 nextpc = (CORE_ADDR) (pc_val + 4); /* Default case */
1777
1778 if (condition_true (bits (this_instr, 28, 31), status))
1779 {
1780 switch (bits (this_instr, 24, 27))
1781 {
1782 case 0x0:
1783 case 0x1: /* data processing */
1784 case 0x2:
1785 case 0x3:
1786 {
1787 unsigned long operand1, operand2, result = 0;
1788 unsigned long rn;
1789 int c;
1790
1791 if (bits (this_instr, 12, 15) != 15)
1792 break;
1793
1794 if (bits (this_instr, 22, 25) == 0
1795 && bits (this_instr, 4, 7) == 9) /* multiply */
1796 error ("Illegal update to pc in instruction");
1797
1798 /* Multiply into PC */
1799 c = (status & FLAG_C) ? 1 : 0;
1800 rn = bits (this_instr, 16, 19);
1801 operand1 = (rn == 15) ? pc_val + 8 : read_register (rn);
1802
1803 if (bit (this_instr, 25))
1804 {
1805 unsigned long immval = bits (this_instr, 0, 7);
1806 unsigned long rotate = 2 * bits (this_instr, 8, 11);
1807 operand2 = ((immval >> rotate) | (immval << (32 - rotate)))
1808 & 0xffffffff;
1809 }
1810 else /* operand 2 is a shifted register */
1811 operand2 = shifted_reg_val (this_instr, c, pc_val, status);
1812
1813 switch (bits (this_instr, 21, 24))
1814 {
1815 case 0x0: /*and */
1816 result = operand1 & operand2;
1817 break;
1818
1819 case 0x1: /*eor */
1820 result = operand1 ^ operand2;
1821 break;
1822
1823 case 0x2: /*sub */
1824 result = operand1 - operand2;
1825 break;
1826
1827 case 0x3: /*rsb */
1828 result = operand2 - operand1;
1829 break;
1830
1831 case 0x4: /*add */
1832 result = operand1 + operand2;
1833 break;
1834
1835 case 0x5: /*adc */
1836 result = operand1 + operand2 + c;
1837 break;
1838
1839 case 0x6: /*sbc */
1840 result = operand1 - operand2 + c;
1841 break;
1842
1843 case 0x7: /*rsc */
1844 result = operand2 - operand1 + c;
1845 break;
1846
1847 case 0x8:
1848 case 0x9:
1849 case 0xa:
1850 case 0xb: /* tst, teq, cmp, cmn */
1851 result = (unsigned long) nextpc;
1852 break;
1853
1854 case 0xc: /*orr */
1855 result = operand1 | operand2;
1856 break;
1857
1858 case 0xd: /*mov */
1859 /* Always step into a function. */
1860 result = operand2;
1861 break;
1862
1863 case 0xe: /*bic */
1864 result = operand1 & ~operand2;
1865 break;
1866
1867 case 0xf: /*mvn */
1868 result = ~operand2;
1869 break;
1870 }
1871 nextpc = (CORE_ADDR) ADDR_BITS_REMOVE (result);
1872
1873 if (nextpc == pc)
1874 error ("Infinite loop detected");
1875 break;
1876 }
1877
1878 case 0x4:
1879 case 0x5: /* data transfer */
1880 case 0x6:
1881 case 0x7:
1882 if (bit (this_instr, 20))
1883 {
1884 /* load */
1885 if (bits (this_instr, 12, 15) == 15)
1886 {
1887 /* rd == pc */
1888 unsigned long rn;
1889 unsigned long base;
1890
1891 if (bit (this_instr, 22))
1892 error ("Illegal update to pc in instruction");
1893
1894 /* byte write to PC */
1895 rn = bits (this_instr, 16, 19);
1896 base = (rn == 15) ? pc_val + 8 : read_register (rn);
1897 if (bit (this_instr, 24))
1898 {
1899 /* pre-indexed */
1900 int c = (status & FLAG_C) ? 1 : 0;
1901 unsigned long offset =
1902 (bit (this_instr, 25)
1903 ? shifted_reg_val (this_instr, c, pc_val, status)
1904 : bits (this_instr, 0, 11));
1905
1906 if (bit (this_instr, 23))
1907 base += offset;
1908 else
1909 base -= offset;
1910 }
1911 nextpc = (CORE_ADDR) read_memory_integer ((CORE_ADDR) base,
1912 4);
1913
1914 nextpc = ADDR_BITS_REMOVE (nextpc);
1915
1916 if (nextpc == pc)
1917 error ("Infinite loop detected");
1918 }
1919 }
1920 break;
1921
1922 case 0x8:
1923 case 0x9: /* block transfer */
1924 if (bit (this_instr, 20))
1925 {
1926 /* LDM */
1927 if (bit (this_instr, 15))
1928 {
1929 /* loading pc */
1930 int offset = 0;
1931
1932 if (bit (this_instr, 23))
1933 {
1934 /* up */
1935 unsigned long reglist = bits (this_instr, 0, 14);
1936 offset = bitcount (reglist) * 4;
1937 if (bit (this_instr, 24)) /* pre */
1938 offset += 4;
1939 }
1940 else if (bit (this_instr, 24))
1941 offset = -4;
1942
1943 {
1944 unsigned long rn_val =
1945 read_register (bits (this_instr, 16, 19));
1946 nextpc =
1947 (CORE_ADDR) read_memory_integer ((CORE_ADDR) (rn_val
1948 + offset),
1949 4);
1950 }
1951 nextpc = ADDR_BITS_REMOVE (nextpc);
1952 if (nextpc == pc)
1953 error ("Infinite loop detected");
1954 }
1955 }
1956 break;
1957
1958 case 0xb: /* branch & link */
1959 case 0xa: /* branch */
1960 {
1961 nextpc = BranchDest (pc, this_instr);
1962
1963 nextpc = ADDR_BITS_REMOVE (nextpc);
1964 if (nextpc == pc)
1965 error ("Infinite loop detected");
1966 break;
1967 }
1968
1969 case 0xc:
1970 case 0xd:
1971 case 0xe: /* coproc ops */
1972 case 0xf: /* SWI */
1973 break;
1974
1975 default:
1976 fprintf (stderr, "Bad bit-field extraction\n");
1977 return (pc);
1978 }
1979 }
1980
1981 return nextpc;
1982 }
1983
1984 /* single_step() is called just before we want to resume the inferior,
1985 if we want to single-step it but there is no hardware or kernel
1986 single-step support. We find the target of the coming instruction
1987 and breakpoint it.
1988
1989 single_step is also called just after the inferior stops. If we had
1990 set up a simulated single-step, we undo our damage. */
1991
1992 static void
1993 arm_software_single_step (enum target_signal sig, int insert_bpt)
1994 {
1995 static int next_pc; /* State between setting and unsetting. */
1996 static char break_mem[BREAKPOINT_MAX]; /* Temporary storage for mem@bpt */
1997
1998 if (insert_bpt)
1999 {
2000 next_pc = arm_get_next_pc (read_register (ARM_PC_REGNUM));
2001 target_insert_breakpoint (next_pc, break_mem);
2002 }
2003 else
2004 target_remove_breakpoint (next_pc, break_mem);
2005 }
2006
2007 #include "bfd-in2.h"
2008 #include "libcoff.h"
2009
2010 static int
2011 gdb_print_insn_arm (bfd_vma memaddr, disassemble_info *info)
2012 {
2013 if (arm_pc_is_thumb (memaddr))
2014 {
2015 static asymbol *asym;
2016 static combined_entry_type ce;
2017 static struct coff_symbol_struct csym;
2018 static struct _bfd fake_bfd;
2019 static bfd_target fake_target;
2020
2021 if (csym.native == NULL)
2022 {
2023 /* Create a fake symbol vector containing a Thumb symbol. This is
2024 solely so that the code in print_insn_little_arm() and
2025 print_insn_big_arm() in opcodes/arm-dis.c will detect the presence
2026 of a Thumb symbol and switch to decoding Thumb instructions. */
2027
2028 fake_target.flavour = bfd_target_coff_flavour;
2029 fake_bfd.xvec = &fake_target;
2030 ce.u.syment.n_sclass = C_THUMBEXTFUNC;
2031 csym.native = &ce;
2032 csym.symbol.the_bfd = &fake_bfd;
2033 csym.symbol.name = "fake";
2034 asym = (asymbol *) & csym;
2035 }
2036
2037 memaddr = UNMAKE_THUMB_ADDR (memaddr);
2038 info->symbols = &asym;
2039 }
2040 else
2041 info->symbols = NULL;
2042
2043 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2044 return print_insn_big_arm (memaddr, info);
2045 else
2046 return print_insn_little_arm (memaddr, info);
2047 }
2048
2049 /* Determine the type and size of breakpoint to insert at PCPTR. Uses
2050 the program counter value to determine whether a 16-bit or 32-bit
2051 breakpoint should be used. It returns a pointer to a string of
2052 bytes that encode a breakpoint instruction, stores the length of
2053 the string to *lenptr, and adjusts the program counter (if
2054 necessary) to point to the actual memory location where the
2055 breakpoint should be inserted. */
2056
2057 /* XXX ??? from old tm-arm.h: if we're using RDP, then we're inserting
2058 breakpoints and storing their handles instread of what was in
2059 memory. It is nice that this is the same size as a handle -
2060 otherwise remote-rdp will have to change. */
2061
2062 unsigned char *
2063 arm_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
2064 {
2065 if (arm_pc_is_thumb (*pcptr) || arm_pc_is_thumb_dummy (*pcptr))
2066 {
2067 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2068 {
2069 static char thumb_breakpoint[] = THUMB_BE_BREAKPOINT;
2070 *pcptr = UNMAKE_THUMB_ADDR (*pcptr);
2071 *lenptr = sizeof (thumb_breakpoint);
2072 return thumb_breakpoint;
2073 }
2074 else
2075 {
2076 static char thumb_breakpoint[] = THUMB_LE_BREAKPOINT;
2077 *pcptr = UNMAKE_THUMB_ADDR (*pcptr);
2078 *lenptr = sizeof (thumb_breakpoint);
2079 return thumb_breakpoint;
2080 }
2081 }
2082 else
2083 {
2084 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2085 {
2086 static char arm_breakpoint[] = ARM_BE_BREAKPOINT;
2087 *lenptr = sizeof (arm_breakpoint);
2088 return arm_breakpoint;
2089 }
2090 else
2091 {
2092 static char arm_breakpoint[] = ARM_LE_BREAKPOINT;
2093 *lenptr = sizeof (arm_breakpoint);
2094 return arm_breakpoint;
2095 }
2096 }
2097 }
2098
2099 /* Extract from an array REGBUF containing the (raw) register state a
2100 function return value of type TYPE, and copy that, in virtual
2101 format, into VALBUF. */
2102
2103 static void
2104 arm_extract_return_value (struct type *type,
2105 char regbuf[REGISTER_BYTES],
2106 char *valbuf)
2107 {
2108 if (TYPE_CODE_FLT == TYPE_CODE (type))
2109 convert_from_extended (&regbuf[REGISTER_BYTE (ARM_F0_REGNUM)], valbuf);
2110 else
2111 memcpy (valbuf, &regbuf[REGISTER_BYTE (ARM_A1_REGNUM)],
2112 TYPE_LENGTH (type));
2113 }
2114
2115 /* Extract from an array REGBUF containing the (raw) register state
2116 the address in which a function should return its structure value. */
2117
2118 static CORE_ADDR
2119 arm_extract_struct_value_address (char *regbuf)
2120 {
2121 return extract_address (regbuf, REGISTER_RAW_SIZE(ARM_A1_REGNUM));
2122 }
2123
2124 /* Will a function return an aggregate type in memory or in a
2125 register? Return 0 if an aggregate type can be returned in a
2126 register, 1 if it must be returned in memory. */
2127
2128 static int
2129 arm_use_struct_convention (int gcc_p, struct type *type)
2130 {
2131 int nRc;
2132 register enum type_code code;
2133
2134 /* In the ARM ABI, "integer" like aggregate types are returned in
2135 registers. For an aggregate type to be integer like, its size
2136 must be less than or equal to REGISTER_SIZE and the offset of
2137 each addressable subfield must be zero. Note that bit fields are
2138 not addressable, and all addressable subfields of unions always
2139 start at offset zero.
2140
2141 This function is based on the behaviour of GCC 2.95.1.
2142 See: gcc/arm.c: arm_return_in_memory() for details.
2143
2144 Note: All versions of GCC before GCC 2.95.2 do not set up the
2145 parameters correctly for a function returning the following
2146 structure: struct { float f;}; This should be returned in memory,
2147 not a register. Richard Earnshaw sent me a patch, but I do not
2148 know of any way to detect if a function like the above has been
2149 compiled with the correct calling convention. */
2150
2151 /* All aggregate types that won't fit in a register must be returned
2152 in memory. */
2153 if (TYPE_LENGTH (type) > REGISTER_SIZE)
2154 {
2155 return 1;
2156 }
2157
2158 /* The only aggregate types that can be returned in a register are
2159 structs and unions. Arrays must be returned in memory. */
2160 code = TYPE_CODE (type);
2161 if ((TYPE_CODE_STRUCT != code) && (TYPE_CODE_UNION != code))
2162 {
2163 return 1;
2164 }
2165
2166 /* Assume all other aggregate types can be returned in a register.
2167 Run a check for structures, unions and arrays. */
2168 nRc = 0;
2169
2170 if ((TYPE_CODE_STRUCT == code) || (TYPE_CODE_UNION == code))
2171 {
2172 int i;
2173 /* Need to check if this struct/union is "integer" like. For
2174 this to be true, its size must be less than or equal to
2175 REGISTER_SIZE and the offset of each addressable subfield
2176 must be zero. Note that bit fields are not addressable, and
2177 unions always start at offset zero. If any of the subfields
2178 is a floating point type, the struct/union cannot be an
2179 integer type. */
2180
2181 /* For each field in the object, check:
2182 1) Is it FP? --> yes, nRc = 1;
2183 2) Is it addressable (bitpos != 0) and
2184 not packed (bitsize == 0)?
2185 --> yes, nRc = 1
2186 */
2187
2188 for (i = 0; i < TYPE_NFIELDS (type); i++)
2189 {
2190 enum type_code field_type_code;
2191 field_type_code = TYPE_CODE (TYPE_FIELD_TYPE (type, i));
2192
2193 /* Is it a floating point type field? */
2194 if (field_type_code == TYPE_CODE_FLT)
2195 {
2196 nRc = 1;
2197 break;
2198 }
2199
2200 /* If bitpos != 0, then we have to care about it. */
2201 if (TYPE_FIELD_BITPOS (type, i) != 0)
2202 {
2203 /* Bitfields are not addressable. If the field bitsize is
2204 zero, then the field is not packed. Hence it cannot be
2205 a bitfield or any other packed type. */
2206 if (TYPE_FIELD_BITSIZE (type, i) == 0)
2207 {
2208 nRc = 1;
2209 break;
2210 }
2211 }
2212 }
2213 }
2214
2215 return nRc;
2216 }
2217
2218 /* Write into appropriate registers a function return value of type
2219 TYPE, given in virtual format. */
2220
2221 static void
2222 arm_store_return_value (struct type *type, char *valbuf)
2223 {
2224 if (TYPE_CODE (type) == TYPE_CODE_FLT)
2225 {
2226 char buf[MAX_REGISTER_RAW_SIZE];
2227
2228 convert_to_extended (valbuf, buf);
2229 /* XXX Is this correct for soft-float? */
2230 write_register_bytes (REGISTER_BYTE (ARM_F0_REGNUM), buf,
2231 MAX_REGISTER_RAW_SIZE);
2232 }
2233 else
2234 write_register_bytes (0, valbuf, TYPE_LENGTH (type));
2235 }
2236
2237 /* Store the address of the place in which to copy the structure the
2238 subroutine will return. This is called from call_function. */
2239
2240 static void
2241 arm_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
2242 {
2243 write_register (ARM_A1_REGNUM, addr);
2244 }
2245
2246 /* Return non-zero if the PC is inside a thumb call thunk. */
2247
2248 int
2249 arm_in_call_stub (CORE_ADDR pc, char *name)
2250 {
2251 CORE_ADDR start_addr;
2252
2253 /* Find the starting address of the function containing the PC. If
2254 the caller didn't give us a name, look it up at the same time. */
2255 if (find_pc_partial_function (pc, name ? NULL : &name, &start_addr, NULL) == 0)
2256 return 0;
2257
2258 return strncmp (name, "_call_via_r", 11) == 0;
2259 }
2260
2261 /* If PC is in a Thumb call or return stub, return the address of the
2262 target PC, which is in a register. The thunk functions are called
2263 _called_via_xx, where x is the register name. The possible names
2264 are r0-r9, sl, fp, ip, sp, and lr. */
2265
2266 CORE_ADDR
2267 arm_skip_stub (CORE_ADDR pc)
2268 {
2269 char *name;
2270 CORE_ADDR start_addr;
2271
2272 /* Find the starting address and name of the function containing the PC. */
2273 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
2274 return 0;
2275
2276 /* Call thunks always start with "_call_via_". */
2277 if (strncmp (name, "_call_via_", 10) == 0)
2278 {
2279 /* Use the name suffix to determine which register contains the
2280 target PC. */
2281 static char *table[15] =
2282 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
2283 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
2284 };
2285 int regno;
2286
2287 for (regno = 0; regno <= 14; regno++)
2288 if (strcmp (&name[10], table[regno]) == 0)
2289 return read_register (regno);
2290 }
2291
2292 return 0; /* not a stub */
2293 }
2294
2295 /* If the user changes the register disassembly flavor used for info register
2296 and other commands, we have to also switch the flavor used in opcodes
2297 for disassembly output.
2298 This function is run in the set disassembly_flavor command, and does that. */
2299
2300 static void
2301 set_disassembly_flavor_sfunc (char *args, int from_tty,
2302 struct cmd_list_element *c)
2303 {
2304 set_disassembly_flavor ();
2305 }
2306 \f
2307 /* Return the ARM register name corresponding to register I. */
2308 static char *
2309 arm_register_name (int i)
2310 {
2311 return arm_register_names[i];
2312 }
2313
2314 static void
2315 set_disassembly_flavor (void)
2316 {
2317 const char *setname, *setdesc, **regnames;
2318 int numregs, j;
2319
2320 /* Find the flavor that the user wants in the opcodes table. */
2321 int current = 0;
2322 numregs = get_arm_regnames (current, &setname, &setdesc, &regnames);
2323 while ((disassembly_flavor != setname)
2324 && (current < num_flavor_options))
2325 get_arm_regnames (++current, &setname, &setdesc, &regnames);
2326 current_option = current;
2327
2328 /* Fill our copy. */
2329 for (j = 0; j < numregs; j++)
2330 arm_register_names[j] = (char *) regnames[j];
2331
2332 /* Adjust case. */
2333 if (isupper (*regnames[ARM_PC_REGNUM]))
2334 {
2335 arm_register_names[ARM_FPS_REGNUM] = "FPS";
2336 arm_register_names[ARM_PS_REGNUM] = "CPSR";
2337 }
2338 else
2339 {
2340 arm_register_names[ARM_FPS_REGNUM] = "fps";
2341 arm_register_names[ARM_PS_REGNUM] = "cpsr";
2342 }
2343
2344 /* Synchronize the disassembler. */
2345 set_arm_regname_option (current);
2346 }
2347
2348 /* arm_othernames implements the "othernames" command. This is kind
2349 of hacky, and I prefer the set-show disassembly-flavor which is
2350 also used for the x86 gdb. I will keep this around, however, in
2351 case anyone is actually using it. */
2352
2353 static void
2354 arm_othernames (char *names, int n)
2355 {
2356 /* Circle through the various flavors. */
2357 current_option = (current_option + 1) % num_flavor_options;
2358
2359 disassembly_flavor = valid_flavors[current_option];
2360 set_disassembly_flavor ();
2361 }
2362
2363 /* Fetch, and possibly build, an appropriate link_map_offsets structure
2364 for ARM linux targets using the struct offsets defined in <link.h>.
2365 Note, however, that link.h is not actually referred to in this file.
2366 Instead, the relevant structs offsets were obtained from examining
2367 link.h. (We can't refer to link.h from this file because the host
2368 system won't necessarily have it, or if it does, the structs which
2369 it defines will refer to the host system, not the target.) */
2370
2371 struct link_map_offsets *
2372 arm_linux_svr4_fetch_link_map_offsets (void)
2373 {
2374 static struct link_map_offsets lmo;
2375 static struct link_map_offsets *lmp = 0;
2376
2377 if (lmp == 0)
2378 {
2379 lmp = &lmo;
2380
2381 lmo.r_debug_size = 8; /* Actual size is 20, but this is all we
2382 need. */
2383
2384 lmo.r_map_offset = 4;
2385 lmo.r_map_size = 4;
2386
2387 lmo.link_map_size = 20; /* Actual size is 552, but this is all we
2388 need. */
2389
2390 lmo.l_addr_offset = 0;
2391 lmo.l_addr_size = 4;
2392
2393 lmo.l_name_offset = 4;
2394 lmo.l_name_size = 4;
2395
2396 lmo.l_next_offset = 12;
2397 lmo.l_next_size = 4;
2398
2399 lmo.l_prev_offset = 16;
2400 lmo.l_prev_size = 4;
2401 }
2402
2403 return lmp;
2404 }
2405
2406 /* Test whether the coff symbol specific value corresponds to a Thumb
2407 function. */
2408
2409 static int
2410 coff_sym_is_thumb (int val)
2411 {
2412 return (val == C_THUMBEXT ||
2413 val == C_THUMBSTAT ||
2414 val == C_THUMBEXTFUNC ||
2415 val == C_THUMBSTATFUNC ||
2416 val == C_THUMBLABEL);
2417 }
2418
2419 /* arm_coff_make_msymbol_special()
2420 arm_elf_make_msymbol_special()
2421
2422 These functions test whether the COFF or ELF symbol corresponds to
2423 an address in thumb code, and set a "special" bit in a minimal
2424 symbol to indicate that it does. */
2425
2426 static void
2427 arm_elf_make_msymbol_special(asymbol *sym, struct minimal_symbol *msym)
2428 {
2429 /* Thumb symbols are of type STT_LOPROC, (synonymous with
2430 STT_ARM_TFUNC). */
2431 if (ELF_ST_TYPE (((elf_symbol_type *)sym)->internal_elf_sym.st_info)
2432 == STT_LOPROC)
2433 MSYMBOL_SET_SPECIAL (msym);
2434 }
2435
2436 static void
2437 arm_coff_make_msymbol_special(int val, struct minimal_symbol *msym)
2438 {
2439 if (coff_sym_is_thumb (val))
2440 MSYMBOL_SET_SPECIAL (msym);
2441 }
2442
2443 static struct gdbarch *
2444 arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
2445 {
2446 struct gdbarch *gdbarch;
2447
2448 if (arches != NULL)
2449 return arches->gdbarch;
2450
2451 /* XXX We'll probably need to set the tdep field soon. */
2452 gdbarch = gdbarch_alloc (&info, NULL);
2453
2454 /* Floating point sizes and format. */
2455 switch (info.byte_order)
2456 {
2457 case BFD_ENDIAN_BIG:
2458 set_gdbarch_float_format (gdbarch, &floatformat_ieee_single_big);
2459 set_gdbarch_double_format (gdbarch, &floatformat_ieee_double_big);
2460 set_gdbarch_long_double_format (gdbarch, &floatformat_ieee_double_big);
2461 break;
2462
2463 case BFD_ENDIAN_LITTLE:
2464 set_gdbarch_float_format (gdbarch, &floatformat_ieee_single_little);
2465 set_gdbarch_double_format (gdbarch,
2466 &floatformat_ieee_double_littlebyte_bigword);
2467 set_gdbarch_long_double_format (gdbarch,
2468 &floatformat_ieee_double_littlebyte_bigword);
2469 break;
2470
2471 default:
2472 internal_error (__FILE__, __LINE__,
2473 "arm_gdbarch_init: bad byte order for float format");
2474 }
2475
2476 set_gdbarch_use_generic_dummy_frames (gdbarch, 0);
2477
2478 /* Call dummy code. */
2479 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
2480 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
2481 set_gdbarch_call_dummy_p (gdbarch, 1);
2482 set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
2483
2484 set_gdbarch_call_dummy_words (gdbarch, arm_call_dummy_words);
2485 set_gdbarch_sizeof_call_dummy_words (gdbarch, sizeof (arm_call_dummy_words));
2486 set_gdbarch_call_dummy_start_offset (gdbarch, 0);
2487
2488 set_gdbarch_fix_call_dummy (gdbarch, arm_fix_call_dummy);
2489
2490 set_gdbarch_pc_in_call_dummy (gdbarch, pc_in_call_dummy_on_stack);
2491
2492 set_gdbarch_get_saved_register (gdbarch, generic_get_saved_register);
2493 set_gdbarch_push_arguments (gdbarch, arm_push_arguments);
2494
2495 /* Frame handling. */
2496 set_gdbarch_frame_chain_valid (gdbarch, arm_frame_chain_valid);
2497 set_gdbarch_init_extra_frame_info (gdbarch, arm_init_extra_frame_info);
2498 set_gdbarch_read_fp (gdbarch, arm_read_fp);
2499 set_gdbarch_frame_chain (gdbarch, arm_frame_chain);
2500 set_gdbarch_frameless_function_invocation
2501 (gdbarch, arm_frameless_function_invocation);
2502 set_gdbarch_frame_saved_pc (gdbarch, arm_frame_saved_pc);
2503 set_gdbarch_frame_args_address (gdbarch, arm_frame_args_address);
2504 set_gdbarch_frame_locals_address (gdbarch, arm_frame_locals_address);
2505 set_gdbarch_frame_num_args (gdbarch, arm_frame_num_args);
2506 set_gdbarch_frame_args_skip (gdbarch, 0);
2507 set_gdbarch_frame_init_saved_regs (gdbarch, arm_frame_init_saved_regs);
2508 set_gdbarch_push_dummy_frame (gdbarch, arm_push_dummy_frame);
2509 set_gdbarch_pop_frame (gdbarch, arm_pop_frame);
2510
2511 /* Address manipulation. */
2512 set_gdbarch_smash_text_address (gdbarch, arm_smash_text_address);
2513 set_gdbarch_addr_bits_remove (gdbarch, arm_addr_bits_remove);
2514
2515 /* Offset from address of function to start of its code. */
2516 set_gdbarch_function_start_offset (gdbarch, 0);
2517
2518 /* Advance PC across function entry code. */
2519 set_gdbarch_skip_prologue (gdbarch, arm_skip_prologue);
2520
2521 /* Get the PC when a frame might not be available. */
2522 set_gdbarch_saved_pc_after_call (gdbarch, arm_saved_pc_after_call);
2523
2524 /* The stack grows downward. */
2525 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
2526
2527 /* Breakpoint manipulation. */
2528 set_gdbarch_breakpoint_from_pc (gdbarch, arm_breakpoint_from_pc);
2529 set_gdbarch_decr_pc_after_break (gdbarch, 0);
2530
2531 /* Information about registers, etc. */
2532 set_gdbarch_print_float_info (gdbarch, arm_print_float_info);
2533 set_gdbarch_fp_regnum (gdbarch, ARM_FP_REGNUM); /* ??? */
2534 set_gdbarch_sp_regnum (gdbarch, ARM_SP_REGNUM);
2535 set_gdbarch_pc_regnum (gdbarch, ARM_PC_REGNUM);
2536 set_gdbarch_register_byte (gdbarch, arm_register_byte);
2537 set_gdbarch_register_bytes (gdbarch,
2538 (NUM_GREGS * INT_REGISTER_RAW_SIZE
2539 + NUM_FREGS * FP_REGISTER_RAW_SIZE
2540 + NUM_SREGS * STATUS_REGISTER_SIZE));
2541 set_gdbarch_num_regs (gdbarch, NUM_GREGS + NUM_FREGS + NUM_SREGS);
2542 set_gdbarch_register_raw_size (gdbarch, arm_register_raw_size);
2543 set_gdbarch_register_virtual_size (gdbarch, arm_register_virtual_size);
2544 set_gdbarch_max_register_raw_size (gdbarch, FP_REGISTER_RAW_SIZE);
2545 set_gdbarch_max_register_virtual_size (gdbarch, FP_REGISTER_VIRTUAL_SIZE);
2546 set_gdbarch_register_virtual_type (gdbarch, arm_register_type);
2547
2548 /* Integer registers are 4 bytes. */
2549 set_gdbarch_register_size (gdbarch, 4);
2550 set_gdbarch_register_name (gdbarch, arm_register_name);
2551
2552 /* Returning results. */
2553 set_gdbarch_extract_return_value (gdbarch, arm_extract_return_value);
2554 set_gdbarch_store_return_value (gdbarch, arm_store_return_value);
2555 set_gdbarch_store_struct_return (gdbarch, arm_store_struct_return);
2556 set_gdbarch_use_struct_convention (gdbarch, arm_use_struct_convention);
2557 set_gdbarch_extract_struct_value_address (gdbarch,
2558 arm_extract_struct_value_address);
2559
2560 /* Single stepping. */
2561 /* XXX For an RDI target we should ask the target if it can single-step. */
2562 set_gdbarch_software_single_step (gdbarch, arm_software_single_step);
2563
2564 /* Minsymbol frobbing. */
2565 set_gdbarch_elf_make_msymbol_special (gdbarch, arm_elf_make_msymbol_special);
2566 set_gdbarch_coff_make_msymbol_special (gdbarch,
2567 arm_coff_make_msymbol_special);
2568
2569 /* XXX We can't do this until NUM_REGS is set for the architecture.
2570 Even then, we can't use SIZEOF_FRAME_SAVED_REGS, since that still
2571 references the old architecture vector, not the one we are
2572 building here. */
2573 if (prologue_cache.saved_regs != NULL)
2574 xfree (prologue_cache.saved_regs);
2575
2576 prologue_cache.saved_regs = (CORE_ADDR *)
2577 xcalloc (1, (sizeof (CORE_ADDR)
2578 * (NUM_GREGS + NUM_FREGS + NUM_SREGS + NUM_PSEUDO_REGS)));
2579
2580 return gdbarch;
2581 }
2582
2583 void
2584 _initialize_arm_tdep (void)
2585 {
2586 struct ui_file *stb;
2587 long length;
2588 struct cmd_list_element *new_cmd;
2589 const char *setname;
2590 const char *setdesc;
2591 const char **regnames;
2592 int numregs, i, j;
2593 static char *helptext;
2594
2595 if (GDB_MULTI_ARCH)
2596 register_gdbarch_init (bfd_arch_arm, arm_gdbarch_init);
2597
2598 tm_print_insn = gdb_print_insn_arm;
2599
2600 /* Get the number of possible sets of register names defined in opcodes. */
2601 num_flavor_options = get_arm_regname_num_options ();
2602
2603 /* Sync the opcode insn printer with our register viewer: */
2604 parse_arm_disassembler_option ("reg-names-std");
2605
2606 /* Begin creating the help text. */
2607 stb = mem_fileopen ();
2608 fprintf_unfiltered (stb, "Set the disassembly flavor.\n\
2609 The valid values are:\n");
2610
2611 /* Initialize the array that will be passed to add_set_enum_cmd(). */
2612 valid_flavors = xmalloc ((num_flavor_options + 1) * sizeof (char *));
2613 for (i = 0; i < num_flavor_options; i++)
2614 {
2615 numregs = get_arm_regnames (i, &setname, &setdesc, &regnames);
2616 valid_flavors[i] = setname;
2617 fprintf_unfiltered (stb, "%s - %s\n", setname,
2618 setdesc);
2619 /* Copy the default names (if found) and synchronize disassembler. */
2620 if (!strcmp (setname, "std"))
2621 {
2622 disassembly_flavor = setname;
2623 current_option = i;
2624 for (j = 0; j < numregs; j++)
2625 arm_register_names[j] = (char *) regnames[j];
2626 set_arm_regname_option (i);
2627 }
2628 }
2629 /* Mark the end of valid options. */
2630 valid_flavors[num_flavor_options] = NULL;
2631
2632 /* Finish the creation of the help text. */
2633 fprintf_unfiltered (stb, "The default is \"std\".");
2634 helptext = ui_file_xstrdup (stb, &length);
2635 ui_file_delete (stb);
2636
2637 /* Add the disassembly-flavor command */
2638 new_cmd = add_set_enum_cmd ("disassembly-flavor", no_class,
2639 valid_flavors,
2640 &disassembly_flavor,
2641 helptext,
2642 &setlist);
2643 set_cmd_sfunc (new_cmd, set_disassembly_flavor_sfunc);
2644 add_show_from_set (new_cmd, &showlist);
2645
2646 /* ??? Maybe this should be a boolean. */
2647 add_show_from_set (add_set_cmd ("apcs32", no_class,
2648 var_zinteger, (char *) &arm_apcs_32,
2649 "Set usage of ARM 32-bit mode.\n", &setlist),
2650 &showlist);
2651
2652 /* Add the deprecated "othernames" command */
2653
2654 add_com ("othernames", class_obscure, arm_othernames,
2655 "Switch to the next set of register names.");
2656
2657 /* Fill in the prologue_cache fields. */
2658 prologue_cache.saved_regs = NULL;
2659 prologue_cache.extra_info = (struct frame_extra_info *)
2660 xcalloc (1, sizeof (struct frame_extra_info));
2661 }