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