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