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