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