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