* mips-tdep.c (mips_float_register_p): New function.
[deliverable/binutils-gdb.git] / gdb / arm-tdep.c
1 /* Common target dependent code for GDB on ARM systems.
2
3 Copyright (C) 1988-1989, 1991-1993, 1995-1996, 1998-2012 Free
4 Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include <ctype.h> /* XXX for isupper (). */
22
23 #include "defs.h"
24 #include "frame.h"
25 #include "inferior.h"
26 #include "gdbcmd.h"
27 #include "gdbcore.h"
28 #include "gdb_string.h"
29 #include "dis-asm.h" /* For register styles. */
30 #include "regcache.h"
31 #include "reggroups.h"
32 #include "doublest.h"
33 #include "value.h"
34 #include "arch-utils.h"
35 #include "osabi.h"
36 #include "frame-unwind.h"
37 #include "frame-base.h"
38 #include "trad-frame.h"
39 #include "objfiles.h"
40 #include "dwarf2-frame.h"
41 #include "gdbtypes.h"
42 #include "prologue-value.h"
43 #include "remote.h"
44 #include "target-descriptions.h"
45 #include "user-regs.h"
46 #include "observer.h"
47
48 #include "arm-tdep.h"
49 #include "gdb/sim-arm.h"
50
51 #include "elf-bfd.h"
52 #include "coff/internal.h"
53 #include "elf/arm.h"
54
55 #include "gdb_assert.h"
56 #include "vec.h"
57
58 #include "record.h"
59
60 #include "features/arm-with-m.c"
61 #include "features/arm-with-m-fpa-layout.c"
62 #include "features/arm-with-iwmmxt.c"
63 #include "features/arm-with-vfpv2.c"
64 #include "features/arm-with-vfpv3.c"
65 #include "features/arm-with-neon.c"
66
67 static int arm_debug;
68
69 /* Macros for setting and testing a bit in a minimal symbol that marks
70 it as Thumb function. The MSB of the minimal symbol's "info" field
71 is used for this purpose.
72
73 MSYMBOL_SET_SPECIAL Actually sets the "special" bit.
74 MSYMBOL_IS_SPECIAL Tests the "special" bit in a minimal symbol. */
75
76 #define MSYMBOL_SET_SPECIAL(msym) \
77 MSYMBOL_TARGET_FLAG_1 (msym) = 1
78
79 #define MSYMBOL_IS_SPECIAL(msym) \
80 MSYMBOL_TARGET_FLAG_1 (msym)
81
82 /* Per-objfile data used for mapping symbols. */
83 static const struct objfile_data *arm_objfile_data_key;
84
85 struct arm_mapping_symbol
86 {
87 bfd_vma value;
88 char type;
89 };
90 typedef struct arm_mapping_symbol arm_mapping_symbol_s;
91 DEF_VEC_O(arm_mapping_symbol_s);
92
93 struct arm_per_objfile
94 {
95 VEC(arm_mapping_symbol_s) **section_maps;
96 };
97
98 /* The list of available "set arm ..." and "show arm ..." commands. */
99 static struct cmd_list_element *setarmcmdlist = NULL;
100 static struct cmd_list_element *showarmcmdlist = NULL;
101
102 /* The type of floating-point to use. Keep this in sync with enum
103 arm_float_model, and the help string in _initialize_arm_tdep. */
104 static const char *const fp_model_strings[] =
105 {
106 "auto",
107 "softfpa",
108 "fpa",
109 "softvfp",
110 "vfp",
111 NULL
112 };
113
114 /* A variable that can be configured by the user. */
115 static enum arm_float_model arm_fp_model = ARM_FLOAT_AUTO;
116 static const char *current_fp_model = "auto";
117
118 /* The ABI to use. Keep this in sync with arm_abi_kind. */
119 static const char *const arm_abi_strings[] =
120 {
121 "auto",
122 "APCS",
123 "AAPCS",
124 NULL
125 };
126
127 /* A variable that can be configured by the user. */
128 static enum arm_abi_kind arm_abi_global = ARM_ABI_AUTO;
129 static const char *arm_abi_string = "auto";
130
131 /* The execution mode to assume. */
132 static const char *const arm_mode_strings[] =
133 {
134 "auto",
135 "arm",
136 "thumb",
137 NULL
138 };
139
140 static const char *arm_fallback_mode_string = "auto";
141 static const char *arm_force_mode_string = "auto";
142
143 /* Internal override of the execution mode. -1 means no override,
144 0 means override to ARM mode, 1 means override to Thumb mode.
145 The effect is the same as if arm_force_mode has been set by the
146 user (except the internal override has precedence over a user's
147 arm_force_mode override). */
148 static int arm_override_mode = -1;
149
150 /* Number of different reg name sets (options). */
151 static int num_disassembly_options;
152
153 /* The standard register names, and all the valid aliases for them. Note
154 that `fp', `sp' and `pc' are not added in this alias list, because they
155 have been added as builtin user registers in
156 std-regs.c:_initialize_frame_reg. */
157 static const struct
158 {
159 const char *name;
160 int regnum;
161 } arm_register_aliases[] = {
162 /* Basic register numbers. */
163 { "r0", 0 },
164 { "r1", 1 },
165 { "r2", 2 },
166 { "r3", 3 },
167 { "r4", 4 },
168 { "r5", 5 },
169 { "r6", 6 },
170 { "r7", 7 },
171 { "r8", 8 },
172 { "r9", 9 },
173 { "r10", 10 },
174 { "r11", 11 },
175 { "r12", 12 },
176 { "r13", 13 },
177 { "r14", 14 },
178 { "r15", 15 },
179 /* Synonyms (argument and variable registers). */
180 { "a1", 0 },
181 { "a2", 1 },
182 { "a3", 2 },
183 { "a4", 3 },
184 { "v1", 4 },
185 { "v2", 5 },
186 { "v3", 6 },
187 { "v4", 7 },
188 { "v5", 8 },
189 { "v6", 9 },
190 { "v7", 10 },
191 { "v8", 11 },
192 /* Other platform-specific names for r9. */
193 { "sb", 9 },
194 { "tr", 9 },
195 /* Special names. */
196 { "ip", 12 },
197 { "lr", 14 },
198 /* Names used by GCC (not listed in the ARM EABI). */
199 { "sl", 10 },
200 /* A special name from the older ATPCS. */
201 { "wr", 7 },
202 };
203
204 static const char *const arm_register_names[] =
205 {"r0", "r1", "r2", "r3", /* 0 1 2 3 */
206 "r4", "r5", "r6", "r7", /* 4 5 6 7 */
207 "r8", "r9", "r10", "r11", /* 8 9 10 11 */
208 "r12", "sp", "lr", "pc", /* 12 13 14 15 */
209 "f0", "f1", "f2", "f3", /* 16 17 18 19 */
210 "f4", "f5", "f6", "f7", /* 20 21 22 23 */
211 "fps", "cpsr" }; /* 24 25 */
212
213 /* Valid register name styles. */
214 static const char **valid_disassembly_styles;
215
216 /* Disassembly style to use. Default to "std" register names. */
217 static const char *disassembly_style;
218
219 /* This is used to keep the bfd arch_info in sync with the disassembly
220 style. */
221 static void set_disassembly_style_sfunc(char *, int,
222 struct cmd_list_element *);
223 static void set_disassembly_style (void);
224
225 static void convert_from_extended (const struct floatformat *, const void *,
226 void *, int);
227 static void convert_to_extended (const struct floatformat *, void *,
228 const void *, int);
229
230 static enum register_status arm_neon_quad_read (struct gdbarch *gdbarch,
231 struct regcache *regcache,
232 int regnum, gdb_byte *buf);
233 static void arm_neon_quad_write (struct gdbarch *gdbarch,
234 struct regcache *regcache,
235 int regnum, const gdb_byte *buf);
236
237 static int thumb_insn_size (unsigned short inst1);
238
239 struct arm_prologue_cache
240 {
241 /* The stack pointer at the time this frame was created; i.e. the
242 caller's stack pointer when this function was called. It is used
243 to identify this frame. */
244 CORE_ADDR prev_sp;
245
246 /* The frame base for this frame is just prev_sp - frame size.
247 FRAMESIZE is the distance from the frame pointer to the
248 initial stack pointer. */
249
250 int framesize;
251
252 /* The register used to hold the frame pointer for this frame. */
253 int framereg;
254
255 /* Saved register offsets. */
256 struct trad_frame_saved_reg *saved_regs;
257 };
258
259 static CORE_ADDR arm_analyze_prologue (struct gdbarch *gdbarch,
260 CORE_ADDR prologue_start,
261 CORE_ADDR prologue_end,
262 struct arm_prologue_cache *cache);
263
264 /* Architecture version for displaced stepping. This effects the behaviour of
265 certain instructions, and really should not be hard-wired. */
266
267 #define DISPLACED_STEPPING_ARCH_VERSION 5
268
269 /* Addresses for calling Thumb functions have the bit 0 set.
270 Here are some macros to test, set, or clear bit 0 of addresses. */
271 #define IS_THUMB_ADDR(addr) ((addr) & 1)
272 #define MAKE_THUMB_ADDR(addr) ((addr) | 1)
273 #define UNMAKE_THUMB_ADDR(addr) ((addr) & ~1)
274
275 /* Set to true if the 32-bit mode is in use. */
276
277 int arm_apcs_32 = 1;
278
279 /* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
280
281 int
282 arm_psr_thumb_bit (struct gdbarch *gdbarch)
283 {
284 if (gdbarch_tdep (gdbarch)->is_m)
285 return XPSR_T;
286 else
287 return CPSR_T;
288 }
289
290 /* Determine if FRAME is executing in Thumb mode. */
291
292 int
293 arm_frame_is_thumb (struct frame_info *frame)
294 {
295 CORE_ADDR cpsr;
296 ULONGEST t_bit = arm_psr_thumb_bit (get_frame_arch (frame));
297
298 /* Every ARM frame unwinder can unwind the T bit of the CPSR, either
299 directly (from a signal frame or dummy frame) or by interpreting
300 the saved LR (from a prologue or DWARF frame). So consult it and
301 trust the unwinders. */
302 cpsr = get_frame_register_unsigned (frame, ARM_PS_REGNUM);
303
304 return (cpsr & t_bit) != 0;
305 }
306
307 /* Callback for VEC_lower_bound. */
308
309 static inline int
310 arm_compare_mapping_symbols (const struct arm_mapping_symbol *lhs,
311 const struct arm_mapping_symbol *rhs)
312 {
313 return lhs->value < rhs->value;
314 }
315
316 /* Search for the mapping symbol covering MEMADDR. If one is found,
317 return its type. Otherwise, return 0. If START is non-NULL,
318 set *START to the location of the mapping symbol. */
319
320 static char
321 arm_find_mapping_symbol (CORE_ADDR memaddr, CORE_ADDR *start)
322 {
323 struct obj_section *sec;
324
325 /* If there are mapping symbols, consult them. */
326 sec = find_pc_section (memaddr);
327 if (sec != NULL)
328 {
329 struct arm_per_objfile *data;
330 VEC(arm_mapping_symbol_s) *map;
331 struct arm_mapping_symbol map_key = { memaddr - obj_section_addr (sec),
332 0 };
333 unsigned int idx;
334
335 data = objfile_data (sec->objfile, arm_objfile_data_key);
336 if (data != NULL)
337 {
338 map = data->section_maps[sec->the_bfd_section->index];
339 if (!VEC_empty (arm_mapping_symbol_s, map))
340 {
341 struct arm_mapping_symbol *map_sym;
342
343 idx = VEC_lower_bound (arm_mapping_symbol_s, map, &map_key,
344 arm_compare_mapping_symbols);
345
346 /* VEC_lower_bound finds the earliest ordered insertion
347 point. If the following symbol starts at this exact
348 address, we use that; otherwise, the preceding
349 mapping symbol covers this address. */
350 if (idx < VEC_length (arm_mapping_symbol_s, map))
351 {
352 map_sym = VEC_index (arm_mapping_symbol_s, map, idx);
353 if (map_sym->value == map_key.value)
354 {
355 if (start)
356 *start = map_sym->value + obj_section_addr (sec);
357 return map_sym->type;
358 }
359 }
360
361 if (idx > 0)
362 {
363 map_sym = VEC_index (arm_mapping_symbol_s, map, idx - 1);
364 if (start)
365 *start = map_sym->value + obj_section_addr (sec);
366 return map_sym->type;
367 }
368 }
369 }
370 }
371
372 return 0;
373 }
374
375 /* Determine if the program counter specified in MEMADDR is in a Thumb
376 function. This function should be called for addresses unrelated to
377 any executing frame; otherwise, prefer arm_frame_is_thumb. */
378
379 int
380 arm_pc_is_thumb (struct gdbarch *gdbarch, CORE_ADDR memaddr)
381 {
382 struct obj_section *sec;
383 struct minimal_symbol *sym;
384 char type;
385 struct displaced_step_closure* dsc
386 = get_displaced_step_closure_by_addr(memaddr);
387
388 /* If checking the mode of displaced instruction in copy area, the mode
389 should be determined by instruction on the original address. */
390 if (dsc)
391 {
392 if (debug_displaced)
393 fprintf_unfiltered (gdb_stdlog,
394 "displaced: check mode of %.8lx instead of %.8lx\n",
395 (unsigned long) dsc->insn_addr,
396 (unsigned long) memaddr);
397 memaddr = dsc->insn_addr;
398 }
399
400 /* If bit 0 of the address is set, assume this is a Thumb address. */
401 if (IS_THUMB_ADDR (memaddr))
402 return 1;
403
404 /* Respect internal mode override if active. */
405 if (arm_override_mode != -1)
406 return arm_override_mode;
407
408 /* If the user wants to override the symbol table, let him. */
409 if (strcmp (arm_force_mode_string, "arm") == 0)
410 return 0;
411 if (strcmp (arm_force_mode_string, "thumb") == 0)
412 return 1;
413
414 /* ARM v6-M and v7-M are always in Thumb mode. */
415 if (gdbarch_tdep (gdbarch)->is_m)
416 return 1;
417
418 /* If there are mapping symbols, consult them. */
419 type = arm_find_mapping_symbol (memaddr, NULL);
420 if (type)
421 return type == 't';
422
423 /* Thumb functions have a "special" bit set in minimal symbols. */
424 sym = lookup_minimal_symbol_by_pc (memaddr);
425 if (sym)
426 return (MSYMBOL_IS_SPECIAL (sym));
427
428 /* If the user wants to override the fallback mode, let them. */
429 if (strcmp (arm_fallback_mode_string, "arm") == 0)
430 return 0;
431 if (strcmp (arm_fallback_mode_string, "thumb") == 0)
432 return 1;
433
434 /* If we couldn't find any symbol, but we're talking to a running
435 target, then trust the current value of $cpsr. This lets
436 "display/i $pc" always show the correct mode (though if there is
437 a symbol table we will not reach here, so it still may not be
438 displayed in the mode it will be executed). */
439 if (target_has_registers)
440 return arm_frame_is_thumb (get_current_frame ());
441
442 /* Otherwise we're out of luck; we assume ARM. */
443 return 0;
444 }
445
446 /* Remove useless bits from addresses in a running program. */
447 static CORE_ADDR
448 arm_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR val)
449 {
450 if (arm_apcs_32)
451 return UNMAKE_THUMB_ADDR (val);
452 else
453 return (val & 0x03fffffc);
454 }
455
456 /* When reading symbols, we need to zap the low bit of the address,
457 which may be set to 1 for Thumb functions. */
458 static CORE_ADDR
459 arm_smash_text_address (struct gdbarch *gdbarch, CORE_ADDR val)
460 {
461 return val & ~1;
462 }
463
464 /* Return 1 if PC is the start of a compiler helper function which
465 can be safely ignored during prologue skipping. IS_THUMB is true
466 if the function is known to be a Thumb function due to the way it
467 is being called. */
468 static int
469 skip_prologue_function (struct gdbarch *gdbarch, CORE_ADDR pc, int is_thumb)
470 {
471 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
472 struct minimal_symbol *msym;
473
474 msym = lookup_minimal_symbol_by_pc (pc);
475 if (msym != NULL
476 && SYMBOL_VALUE_ADDRESS (msym) == pc
477 && SYMBOL_LINKAGE_NAME (msym) != NULL)
478 {
479 const char *name = SYMBOL_LINKAGE_NAME (msym);
480
481 /* The GNU linker's Thumb call stub to foo is named
482 __foo_from_thumb. */
483 if (strstr (name, "_from_thumb") != NULL)
484 name += 2;
485
486 /* On soft-float targets, __truncdfsf2 is called to convert promoted
487 arguments to their argument types in non-prototyped
488 functions. */
489 if (strncmp (name, "__truncdfsf2", strlen ("__truncdfsf2")) == 0)
490 return 1;
491 if (strncmp (name, "__aeabi_d2f", strlen ("__aeabi_d2f")) == 0)
492 return 1;
493
494 /* Internal functions related to thread-local storage. */
495 if (strncmp (name, "__tls_get_addr", strlen ("__tls_get_addr")) == 0)
496 return 1;
497 if (strncmp (name, "__aeabi_read_tp", strlen ("__aeabi_read_tp")) == 0)
498 return 1;
499 }
500 else
501 {
502 /* If we run against a stripped glibc, we may be unable to identify
503 special functions by name. Check for one important case,
504 __aeabi_read_tp, by comparing the *code* against the default
505 implementation (this is hand-written ARM assembler in glibc). */
506
507 if (!is_thumb
508 && read_memory_unsigned_integer (pc, 4, byte_order_for_code)
509 == 0xe3e00a0f /* mov r0, #0xffff0fff */
510 && read_memory_unsigned_integer (pc + 4, 4, byte_order_for_code)
511 == 0xe240f01f) /* sub pc, r0, #31 */
512 return 1;
513 }
514
515 return 0;
516 }
517
518 /* Support routines for instruction parsing. */
519 #define submask(x) ((1L << ((x) + 1)) - 1)
520 #define bit(obj,st) (((obj) >> (st)) & 1)
521 #define bits(obj,st,fn) (((obj) >> (st)) & submask ((fn) - (st)))
522 #define sbits(obj,st,fn) \
523 ((long) (bits(obj,st,fn) | ((long) bit(obj,fn) * ~ submask (fn - st))))
524 #define BranchDest(addr,instr) \
525 ((CORE_ADDR) (((long) (addr)) + 8 + (sbits (instr, 0, 23) << 2)))
526
527 /* Extract the immediate from instruction movw/movt of encoding T. INSN1 is
528 the first 16-bit of instruction, and INSN2 is the second 16-bit of
529 instruction. */
530 #define EXTRACT_MOVW_MOVT_IMM_T(insn1, insn2) \
531 ((bits ((insn1), 0, 3) << 12) \
532 | (bits ((insn1), 10, 10) << 11) \
533 | (bits ((insn2), 12, 14) << 8) \
534 | bits ((insn2), 0, 7))
535
536 /* Extract the immediate from instruction movw/movt of encoding A. INSN is
537 the 32-bit instruction. */
538 #define EXTRACT_MOVW_MOVT_IMM_A(insn) \
539 ((bits ((insn), 16, 19) << 12) \
540 | bits ((insn), 0, 11))
541
542 /* Decode immediate value; implements ThumbExpandImmediate pseudo-op. */
543
544 static unsigned int
545 thumb_expand_immediate (unsigned int imm)
546 {
547 unsigned int count = imm >> 7;
548
549 if (count < 8)
550 switch (count / 2)
551 {
552 case 0:
553 return imm & 0xff;
554 case 1:
555 return (imm & 0xff) | ((imm & 0xff) << 16);
556 case 2:
557 return ((imm & 0xff) << 8) | ((imm & 0xff) << 24);
558 case 3:
559 return (imm & 0xff) | ((imm & 0xff) << 8)
560 | ((imm & 0xff) << 16) | ((imm & 0xff) << 24);
561 }
562
563 return (0x80 | (imm & 0x7f)) << (32 - count);
564 }
565
566 /* Return 1 if the 16-bit Thumb instruction INST might change
567 control flow, 0 otherwise. */
568
569 static int
570 thumb_instruction_changes_pc (unsigned short inst)
571 {
572 if ((inst & 0xff00) == 0xbd00) /* pop {rlist, pc} */
573 return 1;
574
575 if ((inst & 0xf000) == 0xd000) /* conditional branch */
576 return 1;
577
578 if ((inst & 0xf800) == 0xe000) /* unconditional branch */
579 return 1;
580
581 if ((inst & 0xff00) == 0x4700) /* bx REG, blx REG */
582 return 1;
583
584 if ((inst & 0xff87) == 0x4687) /* mov pc, REG */
585 return 1;
586
587 if ((inst & 0xf500) == 0xb100) /* CBNZ or CBZ. */
588 return 1;
589
590 return 0;
591 }
592
593 /* Return 1 if the 32-bit Thumb instruction in INST1 and INST2
594 might change control flow, 0 otherwise. */
595
596 static int
597 thumb2_instruction_changes_pc (unsigned short inst1, unsigned short inst2)
598 {
599 if ((inst1 & 0xf800) == 0xf000 && (inst2 & 0x8000) == 0x8000)
600 {
601 /* Branches and miscellaneous control instructions. */
602
603 if ((inst2 & 0x1000) != 0 || (inst2 & 0xd001) == 0xc000)
604 {
605 /* B, BL, BLX. */
606 return 1;
607 }
608 else if (inst1 == 0xf3de && (inst2 & 0xff00) == 0x3f00)
609 {
610 /* SUBS PC, LR, #imm8. */
611 return 1;
612 }
613 else if ((inst2 & 0xd000) == 0x8000 && (inst1 & 0x0380) != 0x0380)
614 {
615 /* Conditional branch. */
616 return 1;
617 }
618
619 return 0;
620 }
621
622 if ((inst1 & 0xfe50) == 0xe810)
623 {
624 /* Load multiple or RFE. */
625
626 if (bit (inst1, 7) && !bit (inst1, 8))
627 {
628 /* LDMIA or POP */
629 if (bit (inst2, 15))
630 return 1;
631 }
632 else if (!bit (inst1, 7) && bit (inst1, 8))
633 {
634 /* LDMDB */
635 if (bit (inst2, 15))
636 return 1;
637 }
638 else if (bit (inst1, 7) && bit (inst1, 8))
639 {
640 /* RFEIA */
641 return 1;
642 }
643 else if (!bit (inst1, 7) && !bit (inst1, 8))
644 {
645 /* RFEDB */
646 return 1;
647 }
648
649 return 0;
650 }
651
652 if ((inst1 & 0xffef) == 0xea4f && (inst2 & 0xfff0) == 0x0f00)
653 {
654 /* MOV PC or MOVS PC. */
655 return 1;
656 }
657
658 if ((inst1 & 0xff70) == 0xf850 && (inst2 & 0xf000) == 0xf000)
659 {
660 /* LDR PC. */
661 if (bits (inst1, 0, 3) == 15)
662 return 1;
663 if (bit (inst1, 7))
664 return 1;
665 if (bit (inst2, 11))
666 return 1;
667 if ((inst2 & 0x0fc0) == 0x0000)
668 return 1;
669
670 return 0;
671 }
672
673 if ((inst1 & 0xfff0) == 0xe8d0 && (inst2 & 0xfff0) == 0xf000)
674 {
675 /* TBB. */
676 return 1;
677 }
678
679 if ((inst1 & 0xfff0) == 0xe8d0 && (inst2 & 0xfff0) == 0xf010)
680 {
681 /* TBH. */
682 return 1;
683 }
684
685 return 0;
686 }
687
688 /* Analyze a Thumb prologue, looking for a recognizable stack frame
689 and frame pointer. Scan until we encounter a store that could
690 clobber the stack frame unexpectedly, or an unknown instruction.
691 Return the last address which is definitely safe to skip for an
692 initial breakpoint. */
693
694 static CORE_ADDR
695 thumb_analyze_prologue (struct gdbarch *gdbarch,
696 CORE_ADDR start, CORE_ADDR limit,
697 struct arm_prologue_cache *cache)
698 {
699 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
700 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
701 int i;
702 pv_t regs[16];
703 struct pv_area *stack;
704 struct cleanup *back_to;
705 CORE_ADDR offset;
706 CORE_ADDR unrecognized_pc = 0;
707
708 for (i = 0; i < 16; i++)
709 regs[i] = pv_register (i, 0);
710 stack = make_pv_area (ARM_SP_REGNUM, gdbarch_addr_bit (gdbarch));
711 back_to = make_cleanup_free_pv_area (stack);
712
713 while (start < limit)
714 {
715 unsigned short insn;
716
717 insn = read_memory_unsigned_integer (start, 2, byte_order_for_code);
718
719 if ((insn & 0xfe00) == 0xb400) /* push { rlist } */
720 {
721 int regno;
722 int mask;
723
724 if (pv_area_store_would_trash (stack, regs[ARM_SP_REGNUM]))
725 break;
726
727 /* Bits 0-7 contain a mask for registers R0-R7. Bit 8 says
728 whether to save LR (R14). */
729 mask = (insn & 0xff) | ((insn & 0x100) << 6);
730
731 /* Calculate offsets of saved R0-R7 and LR. */
732 for (regno = ARM_LR_REGNUM; regno >= 0; regno--)
733 if (mask & (1 << regno))
734 {
735 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM],
736 -4);
737 pv_area_store (stack, regs[ARM_SP_REGNUM], 4, regs[regno]);
738 }
739 }
740 else if ((insn & 0xff00) == 0xb000) /* add sp, #simm OR
741 sub sp, #simm */
742 {
743 offset = (insn & 0x7f) << 2; /* get scaled offset */
744 if (insn & 0x80) /* Check for SUB. */
745 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM],
746 -offset);
747 else
748 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM],
749 offset);
750 }
751 else if ((insn & 0xf800) == 0xa800) /* add Rd, sp, #imm */
752 regs[bits (insn, 8, 10)] = pv_add_constant (regs[ARM_SP_REGNUM],
753 (insn & 0xff) << 2);
754 else if ((insn & 0xfe00) == 0x1c00 /* add Rd, Rn, #imm */
755 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM))
756 regs[bits (insn, 0, 2)] = pv_add_constant (regs[bits (insn, 3, 5)],
757 bits (insn, 6, 8));
758 else if ((insn & 0xf800) == 0x3000 /* add Rd, #imm */
759 && pv_is_register (regs[bits (insn, 8, 10)], ARM_SP_REGNUM))
760 regs[bits (insn, 8, 10)] = pv_add_constant (regs[bits (insn, 8, 10)],
761 bits (insn, 0, 7));
762 else if ((insn & 0xfe00) == 0x1800 /* add Rd, Rn, Rm */
763 && pv_is_register (regs[bits (insn, 6, 8)], ARM_SP_REGNUM)
764 && pv_is_constant (regs[bits (insn, 3, 5)]))
765 regs[bits (insn, 0, 2)] = pv_add (regs[bits (insn, 3, 5)],
766 regs[bits (insn, 6, 8)]);
767 else if ((insn & 0xff00) == 0x4400 /* add Rd, Rm */
768 && pv_is_constant (regs[bits (insn, 3, 6)]))
769 {
770 int rd = (bit (insn, 7) << 3) + bits (insn, 0, 2);
771 int rm = bits (insn, 3, 6);
772 regs[rd] = pv_add (regs[rd], regs[rm]);
773 }
774 else if ((insn & 0xff00) == 0x4600) /* mov hi, lo or mov lo, hi */
775 {
776 int dst_reg = (insn & 0x7) + ((insn & 0x80) >> 4);
777 int src_reg = (insn & 0x78) >> 3;
778 regs[dst_reg] = regs[src_reg];
779 }
780 else if ((insn & 0xf800) == 0x9000) /* str rd, [sp, #off] */
781 {
782 /* Handle stores to the stack. Normally pushes are used,
783 but with GCC -mtpcs-frame, there may be other stores
784 in the prologue to create the frame. */
785 int regno = (insn >> 8) & 0x7;
786 pv_t addr;
787
788 offset = (insn & 0xff) << 2;
789 addr = pv_add_constant (regs[ARM_SP_REGNUM], offset);
790
791 if (pv_area_store_would_trash (stack, addr))
792 break;
793
794 pv_area_store (stack, addr, 4, regs[regno]);
795 }
796 else if ((insn & 0xf800) == 0x6000) /* str rd, [rn, #off] */
797 {
798 int rd = bits (insn, 0, 2);
799 int rn = bits (insn, 3, 5);
800 pv_t addr;
801
802 offset = bits (insn, 6, 10) << 2;
803 addr = pv_add_constant (regs[rn], offset);
804
805 if (pv_area_store_would_trash (stack, addr))
806 break;
807
808 pv_area_store (stack, addr, 4, regs[rd]);
809 }
810 else if (((insn & 0xf800) == 0x7000 /* strb Rd, [Rn, #off] */
811 || (insn & 0xf800) == 0x8000) /* strh Rd, [Rn, #off] */
812 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM))
813 /* Ignore stores of argument registers to the stack. */
814 ;
815 else if ((insn & 0xf800) == 0xc800 /* ldmia Rn!, { registers } */
816 && pv_is_register (regs[bits (insn, 8, 10)], ARM_SP_REGNUM))
817 /* Ignore block loads from the stack, potentially copying
818 parameters from memory. */
819 ;
820 else if ((insn & 0xf800) == 0x9800 /* ldr Rd, [Rn, #immed] */
821 || ((insn & 0xf800) == 0x6800 /* ldr Rd, [sp, #immed] */
822 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM)))
823 /* Similarly ignore single loads from the stack. */
824 ;
825 else if ((insn & 0xffc0) == 0x0000 /* lsls Rd, Rm, #0 */
826 || (insn & 0xffc0) == 0x1c00) /* add Rd, Rn, #0 */
827 /* Skip register copies, i.e. saves to another register
828 instead of the stack. */
829 ;
830 else if ((insn & 0xf800) == 0x2000) /* movs Rd, #imm */
831 /* Recognize constant loads; even with small stacks these are necessary
832 on Thumb. */
833 regs[bits (insn, 8, 10)] = pv_constant (bits (insn, 0, 7));
834 else if ((insn & 0xf800) == 0x4800) /* ldr Rd, [pc, #imm] */
835 {
836 /* Constant pool loads, for the same reason. */
837 unsigned int constant;
838 CORE_ADDR loc;
839
840 loc = start + 4 + bits (insn, 0, 7) * 4;
841 constant = read_memory_unsigned_integer (loc, 4, byte_order);
842 regs[bits (insn, 8, 10)] = pv_constant (constant);
843 }
844 else if (thumb_insn_size (insn) == 4) /* 32-bit Thumb-2 instructions. */
845 {
846 unsigned short inst2;
847
848 inst2 = read_memory_unsigned_integer (start + 2, 2,
849 byte_order_for_code);
850
851 if ((insn & 0xf800) == 0xf000 && (inst2 & 0xe800) == 0xe800)
852 {
853 /* BL, BLX. Allow some special function calls when
854 skipping the prologue; GCC generates these before
855 storing arguments to the stack. */
856 CORE_ADDR nextpc;
857 int j1, j2, imm1, imm2;
858
859 imm1 = sbits (insn, 0, 10);
860 imm2 = bits (inst2, 0, 10);
861 j1 = bit (inst2, 13);
862 j2 = bit (inst2, 11);
863
864 offset = ((imm1 << 12) + (imm2 << 1));
865 offset ^= ((!j2) << 22) | ((!j1) << 23);
866
867 nextpc = start + 4 + offset;
868 /* For BLX make sure to clear the low bits. */
869 if (bit (inst2, 12) == 0)
870 nextpc = nextpc & 0xfffffffc;
871
872 if (!skip_prologue_function (gdbarch, nextpc,
873 bit (inst2, 12) != 0))
874 break;
875 }
876
877 else if ((insn & 0xffd0) == 0xe900 /* stmdb Rn{!},
878 { registers } */
879 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
880 {
881 pv_t addr = regs[bits (insn, 0, 3)];
882 int regno;
883
884 if (pv_area_store_would_trash (stack, addr))
885 break;
886
887 /* Calculate offsets of saved registers. */
888 for (regno = ARM_LR_REGNUM; regno >= 0; regno--)
889 if (inst2 & (1 << regno))
890 {
891 addr = pv_add_constant (addr, -4);
892 pv_area_store (stack, addr, 4, regs[regno]);
893 }
894
895 if (insn & 0x0020)
896 regs[bits (insn, 0, 3)] = addr;
897 }
898
899 else if ((insn & 0xff50) == 0xe940 /* strd Rt, Rt2,
900 [Rn, #+/-imm]{!} */
901 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
902 {
903 int regno1 = bits (inst2, 12, 15);
904 int regno2 = bits (inst2, 8, 11);
905 pv_t addr = regs[bits (insn, 0, 3)];
906
907 offset = inst2 & 0xff;
908 if (insn & 0x0080)
909 addr = pv_add_constant (addr, offset);
910 else
911 addr = pv_add_constant (addr, -offset);
912
913 if (pv_area_store_would_trash (stack, addr))
914 break;
915
916 pv_area_store (stack, addr, 4, regs[regno1]);
917 pv_area_store (stack, pv_add_constant (addr, 4),
918 4, regs[regno2]);
919
920 if (insn & 0x0020)
921 regs[bits (insn, 0, 3)] = addr;
922 }
923
924 else if ((insn & 0xfff0) == 0xf8c0 /* str Rt,[Rn,+/-#imm]{!} */
925 && (inst2 & 0x0c00) == 0x0c00
926 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
927 {
928 int regno = bits (inst2, 12, 15);
929 pv_t addr = regs[bits (insn, 0, 3)];
930
931 offset = inst2 & 0xff;
932 if (inst2 & 0x0200)
933 addr = pv_add_constant (addr, offset);
934 else
935 addr = pv_add_constant (addr, -offset);
936
937 if (pv_area_store_would_trash (stack, addr))
938 break;
939
940 pv_area_store (stack, addr, 4, regs[regno]);
941
942 if (inst2 & 0x0100)
943 regs[bits (insn, 0, 3)] = addr;
944 }
945
946 else if ((insn & 0xfff0) == 0xf8c0 /* str.w Rt,[Rn,#imm] */
947 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
948 {
949 int regno = bits (inst2, 12, 15);
950 pv_t addr;
951
952 offset = inst2 & 0xfff;
953 addr = pv_add_constant (regs[bits (insn, 0, 3)], offset);
954
955 if (pv_area_store_would_trash (stack, addr))
956 break;
957
958 pv_area_store (stack, addr, 4, regs[regno]);
959 }
960
961 else if ((insn & 0xffd0) == 0xf880 /* str{bh}.w Rt,[Rn,#imm] */
962 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
963 /* Ignore stores of argument registers to the stack. */
964 ;
965
966 else if ((insn & 0xffd0) == 0xf800 /* str{bh} Rt,[Rn,#+/-imm] */
967 && (inst2 & 0x0d00) == 0x0c00
968 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
969 /* Ignore stores of argument registers to the stack. */
970 ;
971
972 else if ((insn & 0xffd0) == 0xe890 /* ldmia Rn[!],
973 { registers } */
974 && (inst2 & 0x8000) == 0x0000
975 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
976 /* Ignore block loads from the stack, potentially copying
977 parameters from memory. */
978 ;
979
980 else if ((insn & 0xffb0) == 0xe950 /* ldrd Rt, Rt2,
981 [Rn, #+/-imm] */
982 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
983 /* Similarly ignore dual loads from the stack. */
984 ;
985
986 else if ((insn & 0xfff0) == 0xf850 /* ldr Rt,[Rn,#+/-imm] */
987 && (inst2 & 0x0d00) == 0x0c00
988 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
989 /* Similarly ignore single loads from the stack. */
990 ;
991
992 else if ((insn & 0xfff0) == 0xf8d0 /* ldr.w Rt,[Rn,#imm] */
993 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
994 /* Similarly ignore single loads from the stack. */
995 ;
996
997 else if ((insn & 0xfbf0) == 0xf100 /* add.w Rd, Rn, #imm */
998 && (inst2 & 0x8000) == 0x0000)
999 {
1000 unsigned int imm = ((bits (insn, 10, 10) << 11)
1001 | (bits (inst2, 12, 14) << 8)
1002 | bits (inst2, 0, 7));
1003
1004 regs[bits (inst2, 8, 11)]
1005 = pv_add_constant (regs[bits (insn, 0, 3)],
1006 thumb_expand_immediate (imm));
1007 }
1008
1009 else if ((insn & 0xfbf0) == 0xf200 /* addw Rd, Rn, #imm */
1010 && (inst2 & 0x8000) == 0x0000)
1011 {
1012 unsigned int imm = ((bits (insn, 10, 10) << 11)
1013 | (bits (inst2, 12, 14) << 8)
1014 | bits (inst2, 0, 7));
1015
1016 regs[bits (inst2, 8, 11)]
1017 = pv_add_constant (regs[bits (insn, 0, 3)], imm);
1018 }
1019
1020 else if ((insn & 0xfbf0) == 0xf1a0 /* sub.w Rd, Rn, #imm */
1021 && (inst2 & 0x8000) == 0x0000)
1022 {
1023 unsigned int imm = ((bits (insn, 10, 10) << 11)
1024 | (bits (inst2, 12, 14) << 8)
1025 | bits (inst2, 0, 7));
1026
1027 regs[bits (inst2, 8, 11)]
1028 = pv_add_constant (regs[bits (insn, 0, 3)],
1029 - (CORE_ADDR) thumb_expand_immediate (imm));
1030 }
1031
1032 else if ((insn & 0xfbf0) == 0xf2a0 /* subw Rd, Rn, #imm */
1033 && (inst2 & 0x8000) == 0x0000)
1034 {
1035 unsigned int imm = ((bits (insn, 10, 10) << 11)
1036 | (bits (inst2, 12, 14) << 8)
1037 | bits (inst2, 0, 7));
1038
1039 regs[bits (inst2, 8, 11)]
1040 = pv_add_constant (regs[bits (insn, 0, 3)], - (CORE_ADDR) imm);
1041 }
1042
1043 else if ((insn & 0xfbff) == 0xf04f) /* mov.w Rd, #const */
1044 {
1045 unsigned int imm = ((bits (insn, 10, 10) << 11)
1046 | (bits (inst2, 12, 14) << 8)
1047 | bits (inst2, 0, 7));
1048
1049 regs[bits (inst2, 8, 11)]
1050 = pv_constant (thumb_expand_immediate (imm));
1051 }
1052
1053 else if ((insn & 0xfbf0) == 0xf240) /* movw Rd, #const */
1054 {
1055 unsigned int imm
1056 = EXTRACT_MOVW_MOVT_IMM_T (insn, inst2);
1057
1058 regs[bits (inst2, 8, 11)] = pv_constant (imm);
1059 }
1060
1061 else if (insn == 0xea5f /* mov.w Rd,Rm */
1062 && (inst2 & 0xf0f0) == 0)
1063 {
1064 int dst_reg = (inst2 & 0x0f00) >> 8;
1065 int src_reg = inst2 & 0xf;
1066 regs[dst_reg] = regs[src_reg];
1067 }
1068
1069 else if ((insn & 0xff7f) == 0xf85f) /* ldr.w Rt,<label> */
1070 {
1071 /* Constant pool loads. */
1072 unsigned int constant;
1073 CORE_ADDR loc;
1074
1075 offset = bits (insn, 0, 11);
1076 if (insn & 0x0080)
1077 loc = start + 4 + offset;
1078 else
1079 loc = start + 4 - offset;
1080
1081 constant = read_memory_unsigned_integer (loc, 4, byte_order);
1082 regs[bits (inst2, 12, 15)] = pv_constant (constant);
1083 }
1084
1085 else if ((insn & 0xff7f) == 0xe95f) /* ldrd Rt,Rt2,<label> */
1086 {
1087 /* Constant pool loads. */
1088 unsigned int constant;
1089 CORE_ADDR loc;
1090
1091 offset = bits (insn, 0, 7) << 2;
1092 if (insn & 0x0080)
1093 loc = start + 4 + offset;
1094 else
1095 loc = start + 4 - offset;
1096
1097 constant = read_memory_unsigned_integer (loc, 4, byte_order);
1098 regs[bits (inst2, 12, 15)] = pv_constant (constant);
1099
1100 constant = read_memory_unsigned_integer (loc + 4, 4, byte_order);
1101 regs[bits (inst2, 8, 11)] = pv_constant (constant);
1102 }
1103
1104 else if (thumb2_instruction_changes_pc (insn, inst2))
1105 {
1106 /* Don't scan past anything that might change control flow. */
1107 break;
1108 }
1109 else
1110 {
1111 /* The optimizer might shove anything into the prologue,
1112 so we just skip what we don't recognize. */
1113 unrecognized_pc = start;
1114 }
1115
1116 start += 2;
1117 }
1118 else if (thumb_instruction_changes_pc (insn))
1119 {
1120 /* Don't scan past anything that might change control flow. */
1121 break;
1122 }
1123 else
1124 {
1125 /* The optimizer might shove anything into the prologue,
1126 so we just skip what we don't recognize. */
1127 unrecognized_pc = start;
1128 }
1129
1130 start += 2;
1131 }
1132
1133 if (arm_debug)
1134 fprintf_unfiltered (gdb_stdlog, "Prologue scan stopped at %s\n",
1135 paddress (gdbarch, start));
1136
1137 if (unrecognized_pc == 0)
1138 unrecognized_pc = start;
1139
1140 if (cache == NULL)
1141 {
1142 do_cleanups (back_to);
1143 return unrecognized_pc;
1144 }
1145
1146 if (pv_is_register (regs[ARM_FP_REGNUM], ARM_SP_REGNUM))
1147 {
1148 /* Frame pointer is fp. Frame size is constant. */
1149 cache->framereg = ARM_FP_REGNUM;
1150 cache->framesize = -regs[ARM_FP_REGNUM].k;
1151 }
1152 else if (pv_is_register (regs[THUMB_FP_REGNUM], ARM_SP_REGNUM))
1153 {
1154 /* Frame pointer is r7. Frame size is constant. */
1155 cache->framereg = THUMB_FP_REGNUM;
1156 cache->framesize = -regs[THUMB_FP_REGNUM].k;
1157 }
1158 else
1159 {
1160 /* Try the stack pointer... this is a bit desperate. */
1161 cache->framereg = ARM_SP_REGNUM;
1162 cache->framesize = -regs[ARM_SP_REGNUM].k;
1163 }
1164
1165 for (i = 0; i < 16; i++)
1166 if (pv_area_find_reg (stack, gdbarch, i, &offset))
1167 cache->saved_regs[i].addr = offset;
1168
1169 do_cleanups (back_to);
1170 return unrecognized_pc;
1171 }
1172
1173
1174 /* Try to analyze the instructions starting from PC, which load symbol
1175 __stack_chk_guard. Return the address of instruction after loading this
1176 symbol, set the dest register number to *BASEREG, and set the size of
1177 instructions for loading symbol in OFFSET. Return 0 if instructions are
1178 not recognized. */
1179
1180 static CORE_ADDR
1181 arm_analyze_load_stack_chk_guard(CORE_ADDR pc, struct gdbarch *gdbarch,
1182 unsigned int *destreg, int *offset)
1183 {
1184 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1185 int is_thumb = arm_pc_is_thumb (gdbarch, pc);
1186 unsigned int low, high, address;
1187
1188 address = 0;
1189 if (is_thumb)
1190 {
1191 unsigned short insn1
1192 = read_memory_unsigned_integer (pc, 2, byte_order_for_code);
1193
1194 if ((insn1 & 0xf800) == 0x4800) /* ldr Rd, #immed */
1195 {
1196 *destreg = bits (insn1, 8, 10);
1197 *offset = 2;
1198 address = bits (insn1, 0, 7);
1199 }
1200 else if ((insn1 & 0xfbf0) == 0xf240) /* movw Rd, #const */
1201 {
1202 unsigned short insn2
1203 = read_memory_unsigned_integer (pc + 2, 2, byte_order_for_code);
1204
1205 low = EXTRACT_MOVW_MOVT_IMM_T (insn1, insn2);
1206
1207 insn1
1208 = read_memory_unsigned_integer (pc + 4, 2, byte_order_for_code);
1209 insn2
1210 = read_memory_unsigned_integer (pc + 6, 2, byte_order_for_code);
1211
1212 /* movt Rd, #const */
1213 if ((insn1 & 0xfbc0) == 0xf2c0)
1214 {
1215 high = EXTRACT_MOVW_MOVT_IMM_T (insn1, insn2);
1216 *destreg = bits (insn2, 8, 11);
1217 *offset = 8;
1218 address = (high << 16 | low);
1219 }
1220 }
1221 }
1222 else
1223 {
1224 unsigned int insn
1225 = read_memory_unsigned_integer (pc, 4, byte_order_for_code);
1226
1227 if ((insn & 0x0e5f0000) == 0x041f0000) /* ldr Rd, #immed */
1228 {
1229 address = bits (insn, 0, 11);
1230 *destreg = bits (insn, 12, 15);
1231 *offset = 4;
1232 }
1233 else if ((insn & 0x0ff00000) == 0x03000000) /* movw Rd, #const */
1234 {
1235 low = EXTRACT_MOVW_MOVT_IMM_A (insn);
1236
1237 insn
1238 = read_memory_unsigned_integer (pc + 4, 4, byte_order_for_code);
1239
1240 if ((insn & 0x0ff00000) == 0x03400000) /* movt Rd, #const */
1241 {
1242 high = EXTRACT_MOVW_MOVT_IMM_A (insn);
1243 *destreg = bits (insn, 12, 15);
1244 *offset = 8;
1245 address = (high << 16 | low);
1246 }
1247 }
1248 }
1249
1250 return address;
1251 }
1252
1253 /* Try to skip a sequence of instructions used for stack protector. If PC
1254 points to the first instruction of this sequence, return the address of
1255 first instruction after this sequence, otherwise, return original PC.
1256
1257 On arm, this sequence of instructions is composed of mainly three steps,
1258 Step 1: load symbol __stack_chk_guard,
1259 Step 2: load from address of __stack_chk_guard,
1260 Step 3: store it to somewhere else.
1261
1262 Usually, instructions on step 2 and step 3 are the same on various ARM
1263 architectures. On step 2, it is one instruction 'ldr Rx, [Rn, #0]', and
1264 on step 3, it is also one instruction 'str Rx, [r7, #immd]'. However,
1265 instructions in step 1 vary from different ARM architectures. On ARMv7,
1266 they are,
1267
1268 movw Rn, #:lower16:__stack_chk_guard
1269 movt Rn, #:upper16:__stack_chk_guard
1270
1271 On ARMv5t, it is,
1272
1273 ldr Rn, .Label
1274 ....
1275 .Lable:
1276 .word __stack_chk_guard
1277
1278 Since ldr/str is a very popular instruction, we can't use them as
1279 'fingerprint' or 'signature' of stack protector sequence. Here we choose
1280 sequence {movw/movt, ldr}/ldr/str plus symbol __stack_chk_guard, if not
1281 stripped, as the 'fingerprint' of a stack protector cdoe sequence. */
1282
1283 static CORE_ADDR
1284 arm_skip_stack_protector(CORE_ADDR pc, struct gdbarch *gdbarch)
1285 {
1286 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1287 unsigned int address, basereg;
1288 struct minimal_symbol *stack_chk_guard;
1289 int offset;
1290 int is_thumb = arm_pc_is_thumb (gdbarch, pc);
1291 CORE_ADDR addr;
1292
1293 /* Try to parse the instructions in Step 1. */
1294 addr = arm_analyze_load_stack_chk_guard (pc, gdbarch,
1295 &basereg, &offset);
1296 if (!addr)
1297 return pc;
1298
1299 stack_chk_guard = lookup_minimal_symbol_by_pc (addr);
1300 /* If name of symbol doesn't start with '__stack_chk_guard', this
1301 instruction sequence is not for stack protector. If symbol is
1302 removed, we conservatively think this sequence is for stack protector. */
1303 if (stack_chk_guard
1304 && strncmp (SYMBOL_LINKAGE_NAME (stack_chk_guard), "__stack_chk_guard",
1305 strlen ("__stack_chk_guard")) != 0)
1306 return pc;
1307
1308 if (is_thumb)
1309 {
1310 unsigned int destreg;
1311 unsigned short insn
1312 = read_memory_unsigned_integer (pc + offset, 2, byte_order_for_code);
1313
1314 /* Step 2: ldr Rd, [Rn, #immed], encoding T1. */
1315 if ((insn & 0xf800) != 0x6800)
1316 return pc;
1317 if (bits (insn, 3, 5) != basereg)
1318 return pc;
1319 destreg = bits (insn, 0, 2);
1320
1321 insn = read_memory_unsigned_integer (pc + offset + 2, 2,
1322 byte_order_for_code);
1323 /* Step 3: str Rd, [Rn, #immed], encoding T1. */
1324 if ((insn & 0xf800) != 0x6000)
1325 return pc;
1326 if (destreg != bits (insn, 0, 2))
1327 return pc;
1328 }
1329 else
1330 {
1331 unsigned int destreg;
1332 unsigned int insn
1333 = read_memory_unsigned_integer (pc + offset, 4, byte_order_for_code);
1334
1335 /* Step 2: ldr Rd, [Rn, #immed], encoding A1. */
1336 if ((insn & 0x0e500000) != 0x04100000)
1337 return pc;
1338 if (bits (insn, 16, 19) != basereg)
1339 return pc;
1340 destreg = bits (insn, 12, 15);
1341 /* Step 3: str Rd, [Rn, #immed], encoding A1. */
1342 insn = read_memory_unsigned_integer (pc + offset + 4,
1343 4, byte_order_for_code);
1344 if ((insn & 0x0e500000) != 0x04000000)
1345 return pc;
1346 if (bits (insn, 12, 15) != destreg)
1347 return pc;
1348 }
1349 /* The size of total two instructions ldr/str is 4 on Thumb-2, while 8
1350 on arm. */
1351 if (is_thumb)
1352 return pc + offset + 4;
1353 else
1354 return pc + offset + 8;
1355 }
1356
1357 /* Advance the PC across any function entry prologue instructions to
1358 reach some "real" code.
1359
1360 The APCS (ARM Procedure Call Standard) defines the following
1361 prologue:
1362
1363 mov ip, sp
1364 [stmfd sp!, {a1,a2,a3,a4}]
1365 stmfd sp!, {...,fp,ip,lr,pc}
1366 [stfe f7, [sp, #-12]!]
1367 [stfe f6, [sp, #-12]!]
1368 [stfe f5, [sp, #-12]!]
1369 [stfe f4, [sp, #-12]!]
1370 sub fp, ip, #nn @@ nn == 20 or 4 depending on second insn. */
1371
1372 static CORE_ADDR
1373 arm_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
1374 {
1375 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1376 unsigned long inst;
1377 CORE_ADDR skip_pc;
1378 CORE_ADDR func_addr, limit_pc;
1379 struct symtab_and_line sal;
1380
1381 /* See if we can determine the end of the prologue via the symbol table.
1382 If so, then return either PC, or the PC after the prologue, whichever
1383 is greater. */
1384 if (find_pc_partial_function (pc, NULL, &func_addr, NULL))
1385 {
1386 CORE_ADDR post_prologue_pc
1387 = skip_prologue_using_sal (gdbarch, func_addr);
1388 struct symtab *s = find_pc_symtab (func_addr);
1389
1390 if (post_prologue_pc)
1391 post_prologue_pc
1392 = arm_skip_stack_protector (post_prologue_pc, gdbarch);
1393
1394
1395 /* GCC always emits a line note before the prologue and another
1396 one after, even if the two are at the same address or on the
1397 same line. Take advantage of this so that we do not need to
1398 know every instruction that might appear in the prologue. We
1399 will have producer information for most binaries; if it is
1400 missing (e.g. for -gstabs), assuming the GNU tools. */
1401 if (post_prologue_pc
1402 && (s == NULL
1403 || s->producer == NULL
1404 || strncmp (s->producer, "GNU ", sizeof ("GNU ") - 1) == 0))
1405 return post_prologue_pc;
1406
1407 if (post_prologue_pc != 0)
1408 {
1409 CORE_ADDR analyzed_limit;
1410
1411 /* For non-GCC compilers, make sure the entire line is an
1412 acceptable prologue; GDB will round this function's
1413 return value up to the end of the following line so we
1414 can not skip just part of a line (and we do not want to).
1415
1416 RealView does not treat the prologue specially, but does
1417 associate prologue code with the opening brace; so this
1418 lets us skip the first line if we think it is the opening
1419 brace. */
1420 if (arm_pc_is_thumb (gdbarch, func_addr))
1421 analyzed_limit = thumb_analyze_prologue (gdbarch, func_addr,
1422 post_prologue_pc, NULL);
1423 else
1424 analyzed_limit = arm_analyze_prologue (gdbarch, func_addr,
1425 post_prologue_pc, NULL);
1426
1427 if (analyzed_limit != post_prologue_pc)
1428 return func_addr;
1429
1430 return post_prologue_pc;
1431 }
1432 }
1433
1434 /* Can't determine prologue from the symbol table, need to examine
1435 instructions. */
1436
1437 /* Find an upper limit on the function prologue using the debug
1438 information. If the debug information could not be used to provide
1439 that bound, then use an arbitrary large number as the upper bound. */
1440 /* Like arm_scan_prologue, stop no later than pc + 64. */
1441 limit_pc = skip_prologue_using_sal (gdbarch, pc);
1442 if (limit_pc == 0)
1443 limit_pc = pc + 64; /* Magic. */
1444
1445
1446 /* Check if this is Thumb code. */
1447 if (arm_pc_is_thumb (gdbarch, pc))
1448 return thumb_analyze_prologue (gdbarch, pc, limit_pc, NULL);
1449
1450 for (skip_pc = pc; skip_pc < limit_pc; skip_pc += 4)
1451 {
1452 inst = read_memory_unsigned_integer (skip_pc, 4, byte_order_for_code);
1453
1454 /* "mov ip, sp" is no longer a required part of the prologue. */
1455 if (inst == 0xe1a0c00d) /* mov ip, sp */
1456 continue;
1457
1458 if ((inst & 0xfffff000) == 0xe28dc000) /* add ip, sp #n */
1459 continue;
1460
1461 if ((inst & 0xfffff000) == 0xe24dc000) /* sub ip, sp #n */
1462 continue;
1463
1464 /* Some prologues begin with "str lr, [sp, #-4]!". */
1465 if (inst == 0xe52de004) /* str lr, [sp, #-4]! */
1466 continue;
1467
1468 if ((inst & 0xfffffff0) == 0xe92d0000) /* stmfd sp!,{a1,a2,a3,a4} */
1469 continue;
1470
1471 if ((inst & 0xfffff800) == 0xe92dd800) /* stmfd sp!,{fp,ip,lr,pc} */
1472 continue;
1473
1474 /* Any insns after this point may float into the code, if it makes
1475 for better instruction scheduling, so we skip them only if we
1476 find them, but still consider the function to be frame-ful. */
1477
1478 /* We may have either one sfmfd instruction here, or several stfe
1479 insns, depending on the version of floating point code we
1480 support. */
1481 if ((inst & 0xffbf0fff) == 0xec2d0200) /* sfmfd fn, <cnt>, [sp]! */
1482 continue;
1483
1484 if ((inst & 0xffff8fff) == 0xed6d0103) /* stfe fn, [sp, #-12]! */
1485 continue;
1486
1487 if ((inst & 0xfffff000) == 0xe24cb000) /* sub fp, ip, #nn */
1488 continue;
1489
1490 if ((inst & 0xfffff000) == 0xe24dd000) /* sub sp, sp, #nn */
1491 continue;
1492
1493 if ((inst & 0xffffc000) == 0xe54b0000 /* strb r(0123),[r11,#-nn] */
1494 || (inst & 0xffffc0f0) == 0xe14b00b0 /* strh r(0123),[r11,#-nn] */
1495 || (inst & 0xffffc000) == 0xe50b0000) /* str r(0123),[r11,#-nn] */
1496 continue;
1497
1498 if ((inst & 0xffffc000) == 0xe5cd0000 /* strb r(0123),[sp,#nn] */
1499 || (inst & 0xffffc0f0) == 0xe1cd00b0 /* strh r(0123),[sp,#nn] */
1500 || (inst & 0xffffc000) == 0xe58d0000) /* str r(0123),[sp,#nn] */
1501 continue;
1502
1503 /* Un-recognized instruction; stop scanning. */
1504 break;
1505 }
1506
1507 return skip_pc; /* End of prologue. */
1508 }
1509
1510 /* *INDENT-OFF* */
1511 /* Function: thumb_scan_prologue (helper function for arm_scan_prologue)
1512 This function decodes a Thumb function prologue to determine:
1513 1) the size of the stack frame
1514 2) which registers are saved on it
1515 3) the offsets of saved regs
1516 4) the offset from the stack pointer to the frame pointer
1517
1518 A typical Thumb function prologue would create this stack frame
1519 (offsets relative to FP)
1520 old SP -> 24 stack parameters
1521 20 LR
1522 16 R7
1523 R7 -> 0 local variables (16 bytes)
1524 SP -> -12 additional stack space (12 bytes)
1525 The frame size would thus be 36 bytes, and the frame offset would be
1526 12 bytes. The frame register is R7.
1527
1528 The comments for thumb_skip_prolog() describe the algorithm we use
1529 to detect the end of the prolog. */
1530 /* *INDENT-ON* */
1531
1532 static void
1533 thumb_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR prev_pc,
1534 CORE_ADDR block_addr, struct arm_prologue_cache *cache)
1535 {
1536 CORE_ADDR prologue_start;
1537 CORE_ADDR prologue_end;
1538 CORE_ADDR current_pc;
1539
1540 if (find_pc_partial_function (block_addr, NULL, &prologue_start,
1541 &prologue_end))
1542 {
1543 /* See comment in arm_scan_prologue for an explanation of
1544 this heuristics. */
1545 if (prologue_end > prologue_start + 64)
1546 {
1547 prologue_end = prologue_start + 64;
1548 }
1549 }
1550 else
1551 /* We're in the boondocks: we have no idea where the start of the
1552 function is. */
1553 return;
1554
1555 prologue_end = min (prologue_end, prev_pc);
1556
1557 thumb_analyze_prologue (gdbarch, prologue_start, prologue_end, cache);
1558 }
1559
1560 /* Return 1 if THIS_INSTR might change control flow, 0 otherwise. */
1561
1562 static int
1563 arm_instruction_changes_pc (uint32_t this_instr)
1564 {
1565 if (bits (this_instr, 28, 31) == INST_NV)
1566 /* Unconditional instructions. */
1567 switch (bits (this_instr, 24, 27))
1568 {
1569 case 0xa:
1570 case 0xb:
1571 /* Branch with Link and change to Thumb. */
1572 return 1;
1573 case 0xc:
1574 case 0xd:
1575 case 0xe:
1576 /* Coprocessor register transfer. */
1577 if (bits (this_instr, 12, 15) == 15)
1578 error (_("Invalid update to pc in instruction"));
1579 return 0;
1580 default:
1581 return 0;
1582 }
1583 else
1584 switch (bits (this_instr, 25, 27))
1585 {
1586 case 0x0:
1587 if (bits (this_instr, 23, 24) == 2 && bit (this_instr, 20) == 0)
1588 {
1589 /* Multiplies and extra load/stores. */
1590 if (bit (this_instr, 4) == 1 && bit (this_instr, 7) == 1)
1591 /* Neither multiplies nor extension load/stores are allowed
1592 to modify PC. */
1593 return 0;
1594
1595 /* Otherwise, miscellaneous instructions. */
1596
1597 /* BX <reg>, BXJ <reg>, BLX <reg> */
1598 if (bits (this_instr, 4, 27) == 0x12fff1
1599 || bits (this_instr, 4, 27) == 0x12fff2
1600 || bits (this_instr, 4, 27) == 0x12fff3)
1601 return 1;
1602
1603 /* Other miscellaneous instructions are unpredictable if they
1604 modify PC. */
1605 return 0;
1606 }
1607 /* Data processing instruction. Fall through. */
1608
1609 case 0x1:
1610 if (bits (this_instr, 12, 15) == 15)
1611 return 1;
1612 else
1613 return 0;
1614
1615 case 0x2:
1616 case 0x3:
1617 /* Media instructions and architecturally undefined instructions. */
1618 if (bits (this_instr, 25, 27) == 3 && bit (this_instr, 4) == 1)
1619 return 0;
1620
1621 /* Stores. */
1622 if (bit (this_instr, 20) == 0)
1623 return 0;
1624
1625 /* Loads. */
1626 if (bits (this_instr, 12, 15) == ARM_PC_REGNUM)
1627 return 1;
1628 else
1629 return 0;
1630
1631 case 0x4:
1632 /* Load/store multiple. */
1633 if (bit (this_instr, 20) == 1 && bit (this_instr, 15) == 1)
1634 return 1;
1635 else
1636 return 0;
1637
1638 case 0x5:
1639 /* Branch and branch with link. */
1640 return 1;
1641
1642 case 0x6:
1643 case 0x7:
1644 /* Coprocessor transfers or SWIs can not affect PC. */
1645 return 0;
1646
1647 default:
1648 internal_error (__FILE__, __LINE__, _("bad value in switch"));
1649 }
1650 }
1651
1652 /* Analyze an ARM mode prologue starting at PROLOGUE_START and
1653 continuing no further than PROLOGUE_END. If CACHE is non-NULL,
1654 fill it in. Return the first address not recognized as a prologue
1655 instruction.
1656
1657 We recognize all the instructions typically found in ARM prologues,
1658 plus harmless instructions which can be skipped (either for analysis
1659 purposes, or a more restrictive set that can be skipped when finding
1660 the end of the prologue). */
1661
1662 static CORE_ADDR
1663 arm_analyze_prologue (struct gdbarch *gdbarch,
1664 CORE_ADDR prologue_start, CORE_ADDR prologue_end,
1665 struct arm_prologue_cache *cache)
1666 {
1667 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1668 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1669 int regno;
1670 CORE_ADDR offset, current_pc;
1671 pv_t regs[ARM_FPS_REGNUM];
1672 struct pv_area *stack;
1673 struct cleanup *back_to;
1674 int framereg, framesize;
1675 CORE_ADDR unrecognized_pc = 0;
1676
1677 /* Search the prologue looking for instructions that set up the
1678 frame pointer, adjust the stack pointer, and save registers.
1679
1680 Be careful, however, and if it doesn't look like a prologue,
1681 don't try to scan it. If, for instance, a frameless function
1682 begins with stmfd sp!, then we will tell ourselves there is
1683 a frame, which will confuse stack traceback, as well as "finish"
1684 and other operations that rely on a knowledge of the stack
1685 traceback. */
1686
1687 for (regno = 0; regno < ARM_FPS_REGNUM; regno++)
1688 regs[regno] = pv_register (regno, 0);
1689 stack = make_pv_area (ARM_SP_REGNUM, gdbarch_addr_bit (gdbarch));
1690 back_to = make_cleanup_free_pv_area (stack);
1691
1692 for (current_pc = prologue_start;
1693 current_pc < prologue_end;
1694 current_pc += 4)
1695 {
1696 unsigned int insn
1697 = read_memory_unsigned_integer (current_pc, 4, byte_order_for_code);
1698
1699 if (insn == 0xe1a0c00d) /* mov ip, sp */
1700 {
1701 regs[ARM_IP_REGNUM] = regs[ARM_SP_REGNUM];
1702 continue;
1703 }
1704 else if ((insn & 0xfff00000) == 0xe2800000 /* add Rd, Rn, #n */
1705 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1706 {
1707 unsigned imm = insn & 0xff; /* immediate value */
1708 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1709 int rd = bits (insn, 12, 15);
1710 imm = (imm >> rot) | (imm << (32 - rot));
1711 regs[rd] = pv_add_constant (regs[bits (insn, 16, 19)], imm);
1712 continue;
1713 }
1714 else if ((insn & 0xfff00000) == 0xe2400000 /* sub Rd, Rn, #n */
1715 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1716 {
1717 unsigned imm = insn & 0xff; /* immediate value */
1718 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1719 int rd = bits (insn, 12, 15);
1720 imm = (imm >> rot) | (imm << (32 - rot));
1721 regs[rd] = pv_add_constant (regs[bits (insn, 16, 19)], -imm);
1722 continue;
1723 }
1724 else if ((insn & 0xffff0fff) == 0xe52d0004) /* str Rd,
1725 [sp, #-4]! */
1726 {
1727 if (pv_area_store_would_trash (stack, regs[ARM_SP_REGNUM]))
1728 break;
1729 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -4);
1730 pv_area_store (stack, regs[ARM_SP_REGNUM], 4,
1731 regs[bits (insn, 12, 15)]);
1732 continue;
1733 }
1734 else if ((insn & 0xffff0000) == 0xe92d0000)
1735 /* stmfd sp!, {..., fp, ip, lr, pc}
1736 or
1737 stmfd sp!, {a1, a2, a3, a4} */
1738 {
1739 int mask = insn & 0xffff;
1740
1741 if (pv_area_store_would_trash (stack, regs[ARM_SP_REGNUM]))
1742 break;
1743
1744 /* Calculate offsets of saved registers. */
1745 for (regno = ARM_PC_REGNUM; regno >= 0; regno--)
1746 if (mask & (1 << regno))
1747 {
1748 regs[ARM_SP_REGNUM]
1749 = pv_add_constant (regs[ARM_SP_REGNUM], -4);
1750 pv_area_store (stack, regs[ARM_SP_REGNUM], 4, regs[regno]);
1751 }
1752 }
1753 else if ((insn & 0xffff0000) == 0xe54b0000 /* strb rx,[r11,#-n] */
1754 || (insn & 0xffff00f0) == 0xe14b00b0 /* strh rx,[r11,#-n] */
1755 || (insn & 0xffffc000) == 0xe50b0000) /* str rx,[r11,#-n] */
1756 {
1757 /* No need to add this to saved_regs -- it's just an arg reg. */
1758 continue;
1759 }
1760 else if ((insn & 0xffff0000) == 0xe5cd0000 /* strb rx,[sp,#n] */
1761 || (insn & 0xffff00f0) == 0xe1cd00b0 /* strh rx,[sp,#n] */
1762 || (insn & 0xffffc000) == 0xe58d0000) /* str rx,[sp,#n] */
1763 {
1764 /* No need to add this to saved_regs -- it's just an arg reg. */
1765 continue;
1766 }
1767 else if ((insn & 0xfff00000) == 0xe8800000 /* stm Rn,
1768 { registers } */
1769 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1770 {
1771 /* No need to add this to saved_regs -- it's just arg regs. */
1772 continue;
1773 }
1774 else if ((insn & 0xfffff000) == 0xe24cb000) /* sub fp, ip #n */
1775 {
1776 unsigned imm = insn & 0xff; /* immediate value */
1777 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1778 imm = (imm >> rot) | (imm << (32 - rot));
1779 regs[ARM_FP_REGNUM] = pv_add_constant (regs[ARM_IP_REGNUM], -imm);
1780 }
1781 else if ((insn & 0xfffff000) == 0xe24dd000) /* sub sp, sp #n */
1782 {
1783 unsigned imm = insn & 0xff; /* immediate value */
1784 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1785 imm = (imm >> rot) | (imm << (32 - rot));
1786 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -imm);
1787 }
1788 else if ((insn & 0xffff7fff) == 0xed6d0103 /* stfe f?,
1789 [sp, -#c]! */
1790 && gdbarch_tdep (gdbarch)->have_fpa_registers)
1791 {
1792 if (pv_area_store_would_trash (stack, regs[ARM_SP_REGNUM]))
1793 break;
1794
1795 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -12);
1796 regno = ARM_F0_REGNUM + ((insn >> 12) & 0x07);
1797 pv_area_store (stack, regs[ARM_SP_REGNUM], 12, regs[regno]);
1798 }
1799 else if ((insn & 0xffbf0fff) == 0xec2d0200 /* sfmfd f0, 4,
1800 [sp!] */
1801 && gdbarch_tdep (gdbarch)->have_fpa_registers)
1802 {
1803 int n_saved_fp_regs;
1804 unsigned int fp_start_reg, fp_bound_reg;
1805
1806 if (pv_area_store_would_trash (stack, regs[ARM_SP_REGNUM]))
1807 break;
1808
1809 if ((insn & 0x800) == 0x800) /* N0 is set */
1810 {
1811 if ((insn & 0x40000) == 0x40000) /* N1 is set */
1812 n_saved_fp_regs = 3;
1813 else
1814 n_saved_fp_regs = 1;
1815 }
1816 else
1817 {
1818 if ((insn & 0x40000) == 0x40000) /* N1 is set */
1819 n_saved_fp_regs = 2;
1820 else
1821 n_saved_fp_regs = 4;
1822 }
1823
1824 fp_start_reg = ARM_F0_REGNUM + ((insn >> 12) & 0x7);
1825 fp_bound_reg = fp_start_reg + n_saved_fp_regs;
1826 for (; fp_start_reg < fp_bound_reg; fp_start_reg++)
1827 {
1828 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -12);
1829 pv_area_store (stack, regs[ARM_SP_REGNUM], 12,
1830 regs[fp_start_reg++]);
1831 }
1832 }
1833 else if ((insn & 0xff000000) == 0xeb000000 && cache == NULL) /* bl */
1834 {
1835 /* Allow some special function calls when skipping the
1836 prologue; GCC generates these before storing arguments to
1837 the stack. */
1838 CORE_ADDR dest = BranchDest (current_pc, insn);
1839
1840 if (skip_prologue_function (gdbarch, dest, 0))
1841 continue;
1842 else
1843 break;
1844 }
1845 else if ((insn & 0xf0000000) != 0xe0000000)
1846 break; /* Condition not true, exit early. */
1847 else if (arm_instruction_changes_pc (insn))
1848 /* Don't scan past anything that might change control flow. */
1849 break;
1850 else if ((insn & 0xfe500000) == 0xe8100000 /* ldm */
1851 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1852 /* Ignore block loads from the stack, potentially copying
1853 parameters from memory. */
1854 continue;
1855 else if ((insn & 0xfc500000) == 0xe4100000
1856 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1857 /* Similarly ignore single loads from the stack. */
1858 continue;
1859 else if ((insn & 0xffff0ff0) == 0xe1a00000)
1860 /* MOV Rd, Rm. Skip register copies, i.e. saves to another
1861 register instead of the stack. */
1862 continue;
1863 else
1864 {
1865 /* The optimizer might shove anything into the prologue,
1866 so we just skip what we don't recognize. */
1867 unrecognized_pc = current_pc;
1868 continue;
1869 }
1870 }
1871
1872 if (unrecognized_pc == 0)
1873 unrecognized_pc = current_pc;
1874
1875 /* The frame size is just the distance from the frame register
1876 to the original stack pointer. */
1877 if (pv_is_register (regs[ARM_FP_REGNUM], ARM_SP_REGNUM))
1878 {
1879 /* Frame pointer is fp. */
1880 framereg = ARM_FP_REGNUM;
1881 framesize = -regs[ARM_FP_REGNUM].k;
1882 }
1883 else
1884 {
1885 /* Try the stack pointer... this is a bit desperate. */
1886 framereg = ARM_SP_REGNUM;
1887 framesize = -regs[ARM_SP_REGNUM].k;
1888 }
1889
1890 if (cache)
1891 {
1892 cache->framereg = framereg;
1893 cache->framesize = framesize;
1894
1895 for (regno = 0; regno < ARM_FPS_REGNUM; regno++)
1896 if (pv_area_find_reg (stack, gdbarch, regno, &offset))
1897 cache->saved_regs[regno].addr = offset;
1898 }
1899
1900 if (arm_debug)
1901 fprintf_unfiltered (gdb_stdlog, "Prologue scan stopped at %s\n",
1902 paddress (gdbarch, unrecognized_pc));
1903
1904 do_cleanups (back_to);
1905 return unrecognized_pc;
1906 }
1907
1908 static void
1909 arm_scan_prologue (struct frame_info *this_frame,
1910 struct arm_prologue_cache *cache)
1911 {
1912 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1913 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1914 int regno;
1915 CORE_ADDR prologue_start, prologue_end, current_pc;
1916 CORE_ADDR prev_pc = get_frame_pc (this_frame);
1917 CORE_ADDR block_addr = get_frame_address_in_block (this_frame);
1918 pv_t regs[ARM_FPS_REGNUM];
1919 struct pv_area *stack;
1920 struct cleanup *back_to;
1921 CORE_ADDR offset;
1922
1923 /* Assume there is no frame until proven otherwise. */
1924 cache->framereg = ARM_SP_REGNUM;
1925 cache->framesize = 0;
1926
1927 /* Check for Thumb prologue. */
1928 if (arm_frame_is_thumb (this_frame))
1929 {
1930 thumb_scan_prologue (gdbarch, prev_pc, block_addr, cache);
1931 return;
1932 }
1933
1934 /* Find the function prologue. If we can't find the function in
1935 the symbol table, peek in the stack frame to find the PC. */
1936 if (find_pc_partial_function (block_addr, NULL, &prologue_start,
1937 &prologue_end))
1938 {
1939 /* One way to find the end of the prologue (which works well
1940 for unoptimized code) is to do the following:
1941
1942 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
1943
1944 if (sal.line == 0)
1945 prologue_end = prev_pc;
1946 else if (sal.end < prologue_end)
1947 prologue_end = sal.end;
1948
1949 This mechanism is very accurate so long as the optimizer
1950 doesn't move any instructions from the function body into the
1951 prologue. If this happens, sal.end will be the last
1952 instruction in the first hunk of prologue code just before
1953 the first instruction that the scheduler has moved from
1954 the body to the prologue.
1955
1956 In order to make sure that we scan all of the prologue
1957 instructions, we use a slightly less accurate mechanism which
1958 may scan more than necessary. To help compensate for this
1959 lack of accuracy, the prologue scanning loop below contains
1960 several clauses which'll cause the loop to terminate early if
1961 an implausible prologue instruction is encountered.
1962
1963 The expression
1964
1965 prologue_start + 64
1966
1967 is a suitable endpoint since it accounts for the largest
1968 possible prologue plus up to five instructions inserted by
1969 the scheduler. */
1970
1971 if (prologue_end > prologue_start + 64)
1972 {
1973 prologue_end = prologue_start + 64; /* See above. */
1974 }
1975 }
1976 else
1977 {
1978 /* We have no symbol information. Our only option is to assume this
1979 function has a standard stack frame and the normal frame register.
1980 Then, we can find the value of our frame pointer on entrance to
1981 the callee (or at the present moment if this is the innermost frame).
1982 The value stored there should be the address of the stmfd + 8. */
1983 CORE_ADDR frame_loc;
1984 LONGEST return_value;
1985
1986 frame_loc = get_frame_register_unsigned (this_frame, ARM_FP_REGNUM);
1987 if (!safe_read_memory_integer (frame_loc, 4, byte_order, &return_value))
1988 return;
1989 else
1990 {
1991 prologue_start = gdbarch_addr_bits_remove
1992 (gdbarch, return_value) - 8;
1993 prologue_end = prologue_start + 64; /* See above. */
1994 }
1995 }
1996
1997 if (prev_pc < prologue_end)
1998 prologue_end = prev_pc;
1999
2000 arm_analyze_prologue (gdbarch, prologue_start, prologue_end, cache);
2001 }
2002
2003 static struct arm_prologue_cache *
2004 arm_make_prologue_cache (struct frame_info *this_frame)
2005 {
2006 int reg;
2007 struct arm_prologue_cache *cache;
2008 CORE_ADDR unwound_fp;
2009
2010 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2011 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2012
2013 arm_scan_prologue (this_frame, cache);
2014
2015 unwound_fp = get_frame_register_unsigned (this_frame, cache->framereg);
2016 if (unwound_fp == 0)
2017 return cache;
2018
2019 cache->prev_sp = unwound_fp + cache->framesize;
2020
2021 /* Calculate actual addresses of saved registers using offsets
2022 determined by arm_scan_prologue. */
2023 for (reg = 0; reg < gdbarch_num_regs (get_frame_arch (this_frame)); reg++)
2024 if (trad_frame_addr_p (cache->saved_regs, reg))
2025 cache->saved_regs[reg].addr += cache->prev_sp;
2026
2027 return cache;
2028 }
2029
2030 /* Our frame ID for a normal frame is the current function's starting PC
2031 and the caller's SP when we were called. */
2032
2033 static void
2034 arm_prologue_this_id (struct frame_info *this_frame,
2035 void **this_cache,
2036 struct frame_id *this_id)
2037 {
2038 struct arm_prologue_cache *cache;
2039 struct frame_id id;
2040 CORE_ADDR pc, func;
2041
2042 if (*this_cache == NULL)
2043 *this_cache = arm_make_prologue_cache (this_frame);
2044 cache = *this_cache;
2045
2046 /* This is meant to halt the backtrace at "_start". */
2047 pc = get_frame_pc (this_frame);
2048 if (pc <= gdbarch_tdep (get_frame_arch (this_frame))->lowest_pc)
2049 return;
2050
2051 /* If we've hit a wall, stop. */
2052 if (cache->prev_sp == 0)
2053 return;
2054
2055 /* Use function start address as part of the frame ID. If we cannot
2056 identify the start address (due to missing symbol information),
2057 fall back to just using the current PC. */
2058 func = get_frame_func (this_frame);
2059 if (!func)
2060 func = pc;
2061
2062 id = frame_id_build (cache->prev_sp, func);
2063 *this_id = id;
2064 }
2065
2066 static struct value *
2067 arm_prologue_prev_register (struct frame_info *this_frame,
2068 void **this_cache,
2069 int prev_regnum)
2070 {
2071 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2072 struct arm_prologue_cache *cache;
2073
2074 if (*this_cache == NULL)
2075 *this_cache = arm_make_prologue_cache (this_frame);
2076 cache = *this_cache;
2077
2078 /* If we are asked to unwind the PC, then we need to return the LR
2079 instead. The prologue may save PC, but it will point into this
2080 frame's prologue, not the next frame's resume location. Also
2081 strip the saved T bit. A valid LR may have the low bit set, but
2082 a valid PC never does. */
2083 if (prev_regnum == ARM_PC_REGNUM)
2084 {
2085 CORE_ADDR lr;
2086
2087 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
2088 return frame_unwind_got_constant (this_frame, prev_regnum,
2089 arm_addr_bits_remove (gdbarch, lr));
2090 }
2091
2092 /* SP is generally not saved to the stack, but this frame is
2093 identified by the next frame's stack pointer at the time of the call.
2094 The value was already reconstructed into PREV_SP. */
2095 if (prev_regnum == ARM_SP_REGNUM)
2096 return frame_unwind_got_constant (this_frame, prev_regnum, cache->prev_sp);
2097
2098 /* The CPSR may have been changed by the call instruction and by the
2099 called function. The only bit we can reconstruct is the T bit,
2100 by checking the low bit of LR as of the call. This is a reliable
2101 indicator of Thumb-ness except for some ARM v4T pre-interworking
2102 Thumb code, which could get away with a clear low bit as long as
2103 the called function did not use bx. Guess that all other
2104 bits are unchanged; the condition flags are presumably lost,
2105 but the processor status is likely valid. */
2106 if (prev_regnum == ARM_PS_REGNUM)
2107 {
2108 CORE_ADDR lr, cpsr;
2109 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
2110
2111 cpsr = get_frame_register_unsigned (this_frame, prev_regnum);
2112 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
2113 if (IS_THUMB_ADDR (lr))
2114 cpsr |= t_bit;
2115 else
2116 cpsr &= ~t_bit;
2117 return frame_unwind_got_constant (this_frame, prev_regnum, cpsr);
2118 }
2119
2120 return trad_frame_get_prev_register (this_frame, cache->saved_regs,
2121 prev_regnum);
2122 }
2123
2124 struct frame_unwind arm_prologue_unwind = {
2125 NORMAL_FRAME,
2126 default_frame_unwind_stop_reason,
2127 arm_prologue_this_id,
2128 arm_prologue_prev_register,
2129 NULL,
2130 default_frame_sniffer
2131 };
2132
2133 /* Maintain a list of ARM exception table entries per objfile, similar to the
2134 list of mapping symbols. We only cache entries for standard ARM-defined
2135 personality routines; the cache will contain only the frame unwinding
2136 instructions associated with the entry (not the descriptors). */
2137
2138 static const struct objfile_data *arm_exidx_data_key;
2139
2140 struct arm_exidx_entry
2141 {
2142 bfd_vma addr;
2143 gdb_byte *entry;
2144 };
2145 typedef struct arm_exidx_entry arm_exidx_entry_s;
2146 DEF_VEC_O(arm_exidx_entry_s);
2147
2148 struct arm_exidx_data
2149 {
2150 VEC(arm_exidx_entry_s) **section_maps;
2151 };
2152
2153 static void
2154 arm_exidx_data_free (struct objfile *objfile, void *arg)
2155 {
2156 struct arm_exidx_data *data = arg;
2157 unsigned int i;
2158
2159 for (i = 0; i < objfile->obfd->section_count; i++)
2160 VEC_free (arm_exidx_entry_s, data->section_maps[i]);
2161 }
2162
2163 static inline int
2164 arm_compare_exidx_entries (const struct arm_exidx_entry *lhs,
2165 const struct arm_exidx_entry *rhs)
2166 {
2167 return lhs->addr < rhs->addr;
2168 }
2169
2170 static struct obj_section *
2171 arm_obj_section_from_vma (struct objfile *objfile, bfd_vma vma)
2172 {
2173 struct obj_section *osect;
2174
2175 ALL_OBJFILE_OSECTIONS (objfile, osect)
2176 if (bfd_get_section_flags (objfile->obfd,
2177 osect->the_bfd_section) & SEC_ALLOC)
2178 {
2179 bfd_vma start, size;
2180 start = bfd_get_section_vma (objfile->obfd, osect->the_bfd_section);
2181 size = bfd_get_section_size (osect->the_bfd_section);
2182
2183 if (start <= vma && vma < start + size)
2184 return osect;
2185 }
2186
2187 return NULL;
2188 }
2189
2190 /* Parse contents of exception table and exception index sections
2191 of OBJFILE, and fill in the exception table entry cache.
2192
2193 For each entry that refers to a standard ARM-defined personality
2194 routine, extract the frame unwinding instructions (from either
2195 the index or the table section). The unwinding instructions
2196 are normalized by:
2197 - extracting them from the rest of the table data
2198 - converting to host endianness
2199 - appending the implicit 0xb0 ("Finish") code
2200
2201 The extracted and normalized instructions are stored for later
2202 retrieval by the arm_find_exidx_entry routine. */
2203
2204 static void
2205 arm_exidx_new_objfile (struct objfile *objfile)
2206 {
2207 struct cleanup *cleanups;
2208 struct arm_exidx_data *data;
2209 asection *exidx, *extab;
2210 bfd_vma exidx_vma = 0, extab_vma = 0;
2211 bfd_size_type exidx_size = 0, extab_size = 0;
2212 gdb_byte *exidx_data = NULL, *extab_data = NULL;
2213 LONGEST i;
2214
2215 /* If we've already touched this file, do nothing. */
2216 if (!objfile || objfile_data (objfile, arm_exidx_data_key) != NULL)
2217 return;
2218 cleanups = make_cleanup (null_cleanup, NULL);
2219
2220 /* Read contents of exception table and index. */
2221 exidx = bfd_get_section_by_name (objfile->obfd, ".ARM.exidx");
2222 if (exidx)
2223 {
2224 exidx_vma = bfd_section_vma (objfile->obfd, exidx);
2225 exidx_size = bfd_get_section_size (exidx);
2226 exidx_data = xmalloc (exidx_size);
2227 make_cleanup (xfree, exidx_data);
2228
2229 if (!bfd_get_section_contents (objfile->obfd, exidx,
2230 exidx_data, 0, exidx_size))
2231 {
2232 do_cleanups (cleanups);
2233 return;
2234 }
2235 }
2236
2237 extab = bfd_get_section_by_name (objfile->obfd, ".ARM.extab");
2238 if (extab)
2239 {
2240 extab_vma = bfd_section_vma (objfile->obfd, extab);
2241 extab_size = bfd_get_section_size (extab);
2242 extab_data = xmalloc (extab_size);
2243 make_cleanup (xfree, extab_data);
2244
2245 if (!bfd_get_section_contents (objfile->obfd, extab,
2246 extab_data, 0, extab_size))
2247 {
2248 do_cleanups (cleanups);
2249 return;
2250 }
2251 }
2252
2253 /* Allocate exception table data structure. */
2254 data = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct arm_exidx_data);
2255 set_objfile_data (objfile, arm_exidx_data_key, data);
2256 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
2257 objfile->obfd->section_count,
2258 VEC(arm_exidx_entry_s) *);
2259
2260 /* Fill in exception table. */
2261 for (i = 0; i < exidx_size / 8; i++)
2262 {
2263 struct arm_exidx_entry new_exidx_entry;
2264 bfd_vma idx = bfd_h_get_32 (objfile->obfd, exidx_data + i * 8);
2265 bfd_vma val = bfd_h_get_32 (objfile->obfd, exidx_data + i * 8 + 4);
2266 bfd_vma addr = 0, word = 0;
2267 int n_bytes = 0, n_words = 0;
2268 struct obj_section *sec;
2269 gdb_byte *entry = NULL;
2270
2271 /* Extract address of start of function. */
2272 idx = ((idx & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2273 idx += exidx_vma + i * 8;
2274
2275 /* Find section containing function and compute section offset. */
2276 sec = arm_obj_section_from_vma (objfile, idx);
2277 if (sec == NULL)
2278 continue;
2279 idx -= bfd_get_section_vma (objfile->obfd, sec->the_bfd_section);
2280
2281 /* Determine address of exception table entry. */
2282 if (val == 1)
2283 {
2284 /* EXIDX_CANTUNWIND -- no exception table entry present. */
2285 }
2286 else if ((val & 0xff000000) == 0x80000000)
2287 {
2288 /* Exception table entry embedded in .ARM.exidx
2289 -- must be short form. */
2290 word = val;
2291 n_bytes = 3;
2292 }
2293 else if (!(val & 0x80000000))
2294 {
2295 /* Exception table entry in .ARM.extab. */
2296 addr = ((val & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2297 addr += exidx_vma + i * 8 + 4;
2298
2299 if (addr >= extab_vma && addr + 4 <= extab_vma + extab_size)
2300 {
2301 word = bfd_h_get_32 (objfile->obfd,
2302 extab_data + addr - extab_vma);
2303 addr += 4;
2304
2305 if ((word & 0xff000000) == 0x80000000)
2306 {
2307 /* Short form. */
2308 n_bytes = 3;
2309 }
2310 else if ((word & 0xff000000) == 0x81000000
2311 || (word & 0xff000000) == 0x82000000)
2312 {
2313 /* Long form. */
2314 n_bytes = 2;
2315 n_words = ((word >> 16) & 0xff);
2316 }
2317 else if (!(word & 0x80000000))
2318 {
2319 bfd_vma pers;
2320 struct obj_section *pers_sec;
2321 int gnu_personality = 0;
2322
2323 /* Custom personality routine. */
2324 pers = ((word & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2325 pers = UNMAKE_THUMB_ADDR (pers + addr - 4);
2326
2327 /* Check whether we've got one of the variants of the
2328 GNU personality routines. */
2329 pers_sec = arm_obj_section_from_vma (objfile, pers);
2330 if (pers_sec)
2331 {
2332 static const char *personality[] =
2333 {
2334 "__gcc_personality_v0",
2335 "__gxx_personality_v0",
2336 "__gcj_personality_v0",
2337 "__gnu_objc_personality_v0",
2338 NULL
2339 };
2340
2341 CORE_ADDR pc = pers + obj_section_offset (pers_sec);
2342 int k;
2343
2344 for (k = 0; personality[k]; k++)
2345 if (lookup_minimal_symbol_by_pc_name
2346 (pc, personality[k], objfile))
2347 {
2348 gnu_personality = 1;
2349 break;
2350 }
2351 }
2352
2353 /* If so, the next word contains a word count in the high
2354 byte, followed by the same unwind instructions as the
2355 pre-defined forms. */
2356 if (gnu_personality
2357 && addr + 4 <= extab_vma + extab_size)
2358 {
2359 word = bfd_h_get_32 (objfile->obfd,
2360 extab_data + addr - extab_vma);
2361 addr += 4;
2362 n_bytes = 3;
2363 n_words = ((word >> 24) & 0xff);
2364 }
2365 }
2366 }
2367 }
2368
2369 /* Sanity check address. */
2370 if (n_words)
2371 if (addr < extab_vma || addr + 4 * n_words > extab_vma + extab_size)
2372 n_words = n_bytes = 0;
2373
2374 /* The unwind instructions reside in WORD (only the N_BYTES least
2375 significant bytes are valid), followed by N_WORDS words in the
2376 extab section starting at ADDR. */
2377 if (n_bytes || n_words)
2378 {
2379 gdb_byte *p = entry = obstack_alloc (&objfile->objfile_obstack,
2380 n_bytes + n_words * 4 + 1);
2381
2382 while (n_bytes--)
2383 *p++ = (gdb_byte) ((word >> (8 * n_bytes)) & 0xff);
2384
2385 while (n_words--)
2386 {
2387 word = bfd_h_get_32 (objfile->obfd,
2388 extab_data + addr - extab_vma);
2389 addr += 4;
2390
2391 *p++ = (gdb_byte) ((word >> 24) & 0xff);
2392 *p++ = (gdb_byte) ((word >> 16) & 0xff);
2393 *p++ = (gdb_byte) ((word >> 8) & 0xff);
2394 *p++ = (gdb_byte) (word & 0xff);
2395 }
2396
2397 /* Implied "Finish" to terminate the list. */
2398 *p++ = 0xb0;
2399 }
2400
2401 /* Push entry onto vector. They are guaranteed to always
2402 appear in order of increasing addresses. */
2403 new_exidx_entry.addr = idx;
2404 new_exidx_entry.entry = entry;
2405 VEC_safe_push (arm_exidx_entry_s,
2406 data->section_maps[sec->the_bfd_section->index],
2407 &new_exidx_entry);
2408 }
2409
2410 do_cleanups (cleanups);
2411 }
2412
2413 /* Search for the exception table entry covering MEMADDR. If one is found,
2414 return a pointer to its data. Otherwise, return 0. If START is non-NULL,
2415 set *START to the start of the region covered by this entry. */
2416
2417 static gdb_byte *
2418 arm_find_exidx_entry (CORE_ADDR memaddr, CORE_ADDR *start)
2419 {
2420 struct obj_section *sec;
2421
2422 sec = find_pc_section (memaddr);
2423 if (sec != NULL)
2424 {
2425 struct arm_exidx_data *data;
2426 VEC(arm_exidx_entry_s) *map;
2427 struct arm_exidx_entry map_key = { memaddr - obj_section_addr (sec), 0 };
2428 unsigned int idx;
2429
2430 data = objfile_data (sec->objfile, arm_exidx_data_key);
2431 if (data != NULL)
2432 {
2433 map = data->section_maps[sec->the_bfd_section->index];
2434 if (!VEC_empty (arm_exidx_entry_s, map))
2435 {
2436 struct arm_exidx_entry *map_sym;
2437
2438 idx = VEC_lower_bound (arm_exidx_entry_s, map, &map_key,
2439 arm_compare_exidx_entries);
2440
2441 /* VEC_lower_bound finds the earliest ordered insertion
2442 point. If the following symbol starts at this exact
2443 address, we use that; otherwise, the preceding
2444 exception table entry covers this address. */
2445 if (idx < VEC_length (arm_exidx_entry_s, map))
2446 {
2447 map_sym = VEC_index (arm_exidx_entry_s, map, idx);
2448 if (map_sym->addr == map_key.addr)
2449 {
2450 if (start)
2451 *start = map_sym->addr + obj_section_addr (sec);
2452 return map_sym->entry;
2453 }
2454 }
2455
2456 if (idx > 0)
2457 {
2458 map_sym = VEC_index (arm_exidx_entry_s, map, idx - 1);
2459 if (start)
2460 *start = map_sym->addr + obj_section_addr (sec);
2461 return map_sym->entry;
2462 }
2463 }
2464 }
2465 }
2466
2467 return NULL;
2468 }
2469
2470 /* Given the current frame THIS_FRAME, and its associated frame unwinding
2471 instruction list from the ARM exception table entry ENTRY, allocate and
2472 return a prologue cache structure describing how to unwind this frame.
2473
2474 Return NULL if the unwinding instruction list contains a "spare",
2475 "reserved" or "refuse to unwind" instruction as defined in section
2476 "9.3 Frame unwinding instructions" of the "Exception Handling ABI
2477 for the ARM Architecture" document. */
2478
2479 static struct arm_prologue_cache *
2480 arm_exidx_fill_cache (struct frame_info *this_frame, gdb_byte *entry)
2481 {
2482 CORE_ADDR vsp = 0;
2483 int vsp_valid = 0;
2484
2485 struct arm_prologue_cache *cache;
2486 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2487 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2488
2489 for (;;)
2490 {
2491 gdb_byte insn;
2492
2493 /* Whenever we reload SP, we actually have to retrieve its
2494 actual value in the current frame. */
2495 if (!vsp_valid)
2496 {
2497 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2498 {
2499 int reg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2500 vsp = get_frame_register_unsigned (this_frame, reg);
2501 }
2502 else
2503 {
2504 CORE_ADDR addr = cache->saved_regs[ARM_SP_REGNUM].addr;
2505 vsp = get_frame_memory_unsigned (this_frame, addr, 4);
2506 }
2507
2508 vsp_valid = 1;
2509 }
2510
2511 /* Decode next unwind instruction. */
2512 insn = *entry++;
2513
2514 if ((insn & 0xc0) == 0)
2515 {
2516 int offset = insn & 0x3f;
2517 vsp += (offset << 2) + 4;
2518 }
2519 else if ((insn & 0xc0) == 0x40)
2520 {
2521 int offset = insn & 0x3f;
2522 vsp -= (offset << 2) + 4;
2523 }
2524 else if ((insn & 0xf0) == 0x80)
2525 {
2526 int mask = ((insn & 0xf) << 8) | *entry++;
2527 int i;
2528
2529 /* The special case of an all-zero mask identifies
2530 "Refuse to unwind". We return NULL to fall back
2531 to the prologue analyzer. */
2532 if (mask == 0)
2533 return NULL;
2534
2535 /* Pop registers r4..r15 under mask. */
2536 for (i = 0; i < 12; i++)
2537 if (mask & (1 << i))
2538 {
2539 cache->saved_regs[4 + i].addr = vsp;
2540 vsp += 4;
2541 }
2542
2543 /* Special-case popping SP -- we need to reload vsp. */
2544 if (mask & (1 << (ARM_SP_REGNUM - 4)))
2545 vsp_valid = 0;
2546 }
2547 else if ((insn & 0xf0) == 0x90)
2548 {
2549 int reg = insn & 0xf;
2550
2551 /* Reserved cases. */
2552 if (reg == ARM_SP_REGNUM || reg == ARM_PC_REGNUM)
2553 return NULL;
2554
2555 /* Set SP from another register and mark VSP for reload. */
2556 cache->saved_regs[ARM_SP_REGNUM] = cache->saved_regs[reg];
2557 vsp_valid = 0;
2558 }
2559 else if ((insn & 0xf0) == 0xa0)
2560 {
2561 int count = insn & 0x7;
2562 int pop_lr = (insn & 0x8) != 0;
2563 int i;
2564
2565 /* Pop r4..r[4+count]. */
2566 for (i = 0; i <= count; i++)
2567 {
2568 cache->saved_regs[4 + i].addr = vsp;
2569 vsp += 4;
2570 }
2571
2572 /* If indicated by flag, pop LR as well. */
2573 if (pop_lr)
2574 {
2575 cache->saved_regs[ARM_LR_REGNUM].addr = vsp;
2576 vsp += 4;
2577 }
2578 }
2579 else if (insn == 0xb0)
2580 {
2581 /* We could only have updated PC by popping into it; if so, it
2582 will show up as address. Otherwise, copy LR into PC. */
2583 if (!trad_frame_addr_p (cache->saved_regs, ARM_PC_REGNUM))
2584 cache->saved_regs[ARM_PC_REGNUM]
2585 = cache->saved_regs[ARM_LR_REGNUM];
2586
2587 /* We're done. */
2588 break;
2589 }
2590 else if (insn == 0xb1)
2591 {
2592 int mask = *entry++;
2593 int i;
2594
2595 /* All-zero mask and mask >= 16 is "spare". */
2596 if (mask == 0 || mask >= 16)
2597 return NULL;
2598
2599 /* Pop r0..r3 under mask. */
2600 for (i = 0; i < 4; i++)
2601 if (mask & (1 << i))
2602 {
2603 cache->saved_regs[i].addr = vsp;
2604 vsp += 4;
2605 }
2606 }
2607 else if (insn == 0xb2)
2608 {
2609 ULONGEST offset = 0;
2610 unsigned shift = 0;
2611
2612 do
2613 {
2614 offset |= (*entry & 0x7f) << shift;
2615 shift += 7;
2616 }
2617 while (*entry++ & 0x80);
2618
2619 vsp += 0x204 + (offset << 2);
2620 }
2621 else if (insn == 0xb3)
2622 {
2623 int start = *entry >> 4;
2624 int count = (*entry++) & 0xf;
2625 int i;
2626
2627 /* Only registers D0..D15 are valid here. */
2628 if (start + count >= 16)
2629 return NULL;
2630
2631 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2632 for (i = 0; i <= count; i++)
2633 {
2634 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2635 vsp += 8;
2636 }
2637
2638 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2639 vsp += 4;
2640 }
2641 else if ((insn & 0xf8) == 0xb8)
2642 {
2643 int count = insn & 0x7;
2644 int i;
2645
2646 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2647 for (i = 0; i <= count; i++)
2648 {
2649 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2650 vsp += 8;
2651 }
2652
2653 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2654 vsp += 4;
2655 }
2656 else if (insn == 0xc6)
2657 {
2658 int start = *entry >> 4;
2659 int count = (*entry++) & 0xf;
2660 int i;
2661
2662 /* Only registers WR0..WR15 are valid. */
2663 if (start + count >= 16)
2664 return NULL;
2665
2666 /* Pop iwmmx registers WR[start]..WR[start+count]. */
2667 for (i = 0; i <= count; i++)
2668 {
2669 cache->saved_regs[ARM_WR0_REGNUM + start + i].addr = vsp;
2670 vsp += 8;
2671 }
2672 }
2673 else if (insn == 0xc7)
2674 {
2675 int mask = *entry++;
2676 int i;
2677
2678 /* All-zero mask and mask >= 16 is "spare". */
2679 if (mask == 0 || mask >= 16)
2680 return NULL;
2681
2682 /* Pop iwmmx general-purpose registers WCGR0..WCGR3 under mask. */
2683 for (i = 0; i < 4; i++)
2684 if (mask & (1 << i))
2685 {
2686 cache->saved_regs[ARM_WCGR0_REGNUM + i].addr = vsp;
2687 vsp += 4;
2688 }
2689 }
2690 else if ((insn & 0xf8) == 0xc0)
2691 {
2692 int count = insn & 0x7;
2693 int i;
2694
2695 /* Pop iwmmx registers WR[10]..WR[10+count]. */
2696 for (i = 0; i <= count; i++)
2697 {
2698 cache->saved_regs[ARM_WR0_REGNUM + 10 + i].addr = vsp;
2699 vsp += 8;
2700 }
2701 }
2702 else if (insn == 0xc8)
2703 {
2704 int start = *entry >> 4;
2705 int count = (*entry++) & 0xf;
2706 int i;
2707
2708 /* Only registers D0..D31 are valid. */
2709 if (start + count >= 16)
2710 return NULL;
2711
2712 /* Pop VFP double-precision registers
2713 D[16+start]..D[16+start+count]. */
2714 for (i = 0; i <= count; i++)
2715 {
2716 cache->saved_regs[ARM_D0_REGNUM + 16 + start + i].addr = vsp;
2717 vsp += 8;
2718 }
2719 }
2720 else if (insn == 0xc9)
2721 {
2722 int start = *entry >> 4;
2723 int count = (*entry++) & 0xf;
2724 int i;
2725
2726 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2727 for (i = 0; i <= count; i++)
2728 {
2729 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2730 vsp += 8;
2731 }
2732 }
2733 else if ((insn & 0xf8) == 0xd0)
2734 {
2735 int count = insn & 0x7;
2736 int i;
2737
2738 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2739 for (i = 0; i <= count; i++)
2740 {
2741 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2742 vsp += 8;
2743 }
2744 }
2745 else
2746 {
2747 /* Everything else is "spare". */
2748 return NULL;
2749 }
2750 }
2751
2752 /* If we restore SP from a register, assume this was the frame register.
2753 Otherwise just fall back to SP as frame register. */
2754 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2755 cache->framereg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2756 else
2757 cache->framereg = ARM_SP_REGNUM;
2758
2759 /* Determine offset to previous frame. */
2760 cache->framesize
2761 = vsp - get_frame_register_unsigned (this_frame, cache->framereg);
2762
2763 /* We already got the previous SP. */
2764 cache->prev_sp = vsp;
2765
2766 return cache;
2767 }
2768
2769 /* Unwinding via ARM exception table entries. Note that the sniffer
2770 already computes a filled-in prologue cache, which is then used
2771 with the same arm_prologue_this_id and arm_prologue_prev_register
2772 routines also used for prologue-parsing based unwinding. */
2773
2774 static int
2775 arm_exidx_unwind_sniffer (const struct frame_unwind *self,
2776 struct frame_info *this_frame,
2777 void **this_prologue_cache)
2778 {
2779 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2780 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
2781 CORE_ADDR addr_in_block, exidx_region, func_start;
2782 struct arm_prologue_cache *cache;
2783 gdb_byte *entry;
2784
2785 /* See if we have an ARM exception table entry covering this address. */
2786 addr_in_block = get_frame_address_in_block (this_frame);
2787 entry = arm_find_exidx_entry (addr_in_block, &exidx_region);
2788 if (!entry)
2789 return 0;
2790
2791 /* The ARM exception table does not describe unwind information
2792 for arbitrary PC values, but is guaranteed to be correct only
2793 at call sites. We have to decide here whether we want to use
2794 ARM exception table information for this frame, or fall back
2795 to using prologue parsing. (Note that if we have DWARF CFI,
2796 this sniffer isn't even called -- CFI is always preferred.)
2797
2798 Before we make this decision, however, we check whether we
2799 actually have *symbol* information for the current frame.
2800 If not, prologue parsing would not work anyway, so we might
2801 as well use the exception table and hope for the best. */
2802 if (find_pc_partial_function (addr_in_block, NULL, &func_start, NULL))
2803 {
2804 int exc_valid = 0;
2805
2806 /* If the next frame is "normal", we are at a call site in this
2807 frame, so exception information is guaranteed to be valid. */
2808 if (get_next_frame (this_frame)
2809 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME)
2810 exc_valid = 1;
2811
2812 /* We also assume exception information is valid if we're currently
2813 blocked in a system call. The system library is supposed to
2814 ensure this, so that e.g. pthread cancellation works. */
2815 if (arm_frame_is_thumb (this_frame))
2816 {
2817 LONGEST insn;
2818
2819 if (safe_read_memory_integer (get_frame_pc (this_frame) - 2, 2,
2820 byte_order_for_code, &insn)
2821 && (insn & 0xff00) == 0xdf00 /* svc */)
2822 exc_valid = 1;
2823 }
2824 else
2825 {
2826 LONGEST insn;
2827
2828 if (safe_read_memory_integer (get_frame_pc (this_frame) - 4, 4,
2829 byte_order_for_code, &insn)
2830 && (insn & 0x0f000000) == 0x0f000000 /* svc */)
2831 exc_valid = 1;
2832 }
2833
2834 /* Bail out if we don't know that exception information is valid. */
2835 if (!exc_valid)
2836 return 0;
2837
2838 /* The ARM exception index does not mark the *end* of the region
2839 covered by the entry, and some functions will not have any entry.
2840 To correctly recognize the end of the covered region, the linker
2841 should have inserted dummy records with a CANTUNWIND marker.
2842
2843 Unfortunately, current versions of GNU ld do not reliably do
2844 this, and thus we may have found an incorrect entry above.
2845 As a (temporary) sanity check, we only use the entry if it
2846 lies *within* the bounds of the function. Note that this check
2847 might reject perfectly valid entries that just happen to cover
2848 multiple functions; therefore this check ought to be removed
2849 once the linker is fixed. */
2850 if (func_start > exidx_region)
2851 return 0;
2852 }
2853
2854 /* Decode the list of unwinding instructions into a prologue cache.
2855 Note that this may fail due to e.g. a "refuse to unwind" code. */
2856 cache = arm_exidx_fill_cache (this_frame, entry);
2857 if (!cache)
2858 return 0;
2859
2860 *this_prologue_cache = cache;
2861 return 1;
2862 }
2863
2864 struct frame_unwind arm_exidx_unwind = {
2865 NORMAL_FRAME,
2866 default_frame_unwind_stop_reason,
2867 arm_prologue_this_id,
2868 arm_prologue_prev_register,
2869 NULL,
2870 arm_exidx_unwind_sniffer
2871 };
2872
2873 static struct arm_prologue_cache *
2874 arm_make_stub_cache (struct frame_info *this_frame)
2875 {
2876 struct arm_prologue_cache *cache;
2877
2878 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2879 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2880
2881 cache->prev_sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
2882
2883 return cache;
2884 }
2885
2886 /* Our frame ID for a stub frame is the current SP and LR. */
2887
2888 static void
2889 arm_stub_this_id (struct frame_info *this_frame,
2890 void **this_cache,
2891 struct frame_id *this_id)
2892 {
2893 struct arm_prologue_cache *cache;
2894
2895 if (*this_cache == NULL)
2896 *this_cache = arm_make_stub_cache (this_frame);
2897 cache = *this_cache;
2898
2899 *this_id = frame_id_build (cache->prev_sp, get_frame_pc (this_frame));
2900 }
2901
2902 static int
2903 arm_stub_unwind_sniffer (const struct frame_unwind *self,
2904 struct frame_info *this_frame,
2905 void **this_prologue_cache)
2906 {
2907 CORE_ADDR addr_in_block;
2908 char dummy[4];
2909
2910 addr_in_block = get_frame_address_in_block (this_frame);
2911 if (in_plt_section (addr_in_block, NULL)
2912 /* We also use the stub winder if the target memory is unreadable
2913 to avoid having the prologue unwinder trying to read it. */
2914 || target_read_memory (get_frame_pc (this_frame), dummy, 4) != 0)
2915 return 1;
2916
2917 return 0;
2918 }
2919
2920 struct frame_unwind arm_stub_unwind = {
2921 NORMAL_FRAME,
2922 default_frame_unwind_stop_reason,
2923 arm_stub_this_id,
2924 arm_prologue_prev_register,
2925 NULL,
2926 arm_stub_unwind_sniffer
2927 };
2928
2929 static CORE_ADDR
2930 arm_normal_frame_base (struct frame_info *this_frame, void **this_cache)
2931 {
2932 struct arm_prologue_cache *cache;
2933
2934 if (*this_cache == NULL)
2935 *this_cache = arm_make_prologue_cache (this_frame);
2936 cache = *this_cache;
2937
2938 return cache->prev_sp - cache->framesize;
2939 }
2940
2941 struct frame_base arm_normal_base = {
2942 &arm_prologue_unwind,
2943 arm_normal_frame_base,
2944 arm_normal_frame_base,
2945 arm_normal_frame_base
2946 };
2947
2948 /* Assuming THIS_FRAME is a dummy, return the frame ID of that
2949 dummy frame. The frame ID's base needs to match the TOS value
2950 saved by save_dummy_frame_tos() and returned from
2951 arm_push_dummy_call, and the PC needs to match the dummy frame's
2952 breakpoint. */
2953
2954 static struct frame_id
2955 arm_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
2956 {
2957 return frame_id_build (get_frame_register_unsigned (this_frame,
2958 ARM_SP_REGNUM),
2959 get_frame_pc (this_frame));
2960 }
2961
2962 /* Given THIS_FRAME, find the previous frame's resume PC (which will
2963 be used to construct the previous frame's ID, after looking up the
2964 containing function). */
2965
2966 static CORE_ADDR
2967 arm_unwind_pc (struct gdbarch *gdbarch, struct frame_info *this_frame)
2968 {
2969 CORE_ADDR pc;
2970 pc = frame_unwind_register_unsigned (this_frame, ARM_PC_REGNUM);
2971 return arm_addr_bits_remove (gdbarch, pc);
2972 }
2973
2974 static CORE_ADDR
2975 arm_unwind_sp (struct gdbarch *gdbarch, struct frame_info *this_frame)
2976 {
2977 return frame_unwind_register_unsigned (this_frame, ARM_SP_REGNUM);
2978 }
2979
2980 static struct value *
2981 arm_dwarf2_prev_register (struct frame_info *this_frame, void **this_cache,
2982 int regnum)
2983 {
2984 struct gdbarch * gdbarch = get_frame_arch (this_frame);
2985 CORE_ADDR lr, cpsr;
2986 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
2987
2988 switch (regnum)
2989 {
2990 case ARM_PC_REGNUM:
2991 /* The PC is normally copied from the return column, which
2992 describes saves of LR. However, that version may have an
2993 extra bit set to indicate Thumb state. The bit is not
2994 part of the PC. */
2995 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
2996 return frame_unwind_got_constant (this_frame, regnum,
2997 arm_addr_bits_remove (gdbarch, lr));
2998
2999 case ARM_PS_REGNUM:
3000 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
3001 cpsr = get_frame_register_unsigned (this_frame, regnum);
3002 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
3003 if (IS_THUMB_ADDR (lr))
3004 cpsr |= t_bit;
3005 else
3006 cpsr &= ~t_bit;
3007 return frame_unwind_got_constant (this_frame, regnum, cpsr);
3008
3009 default:
3010 internal_error (__FILE__, __LINE__,
3011 _("Unexpected register %d"), regnum);
3012 }
3013 }
3014
3015 static void
3016 arm_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
3017 struct dwarf2_frame_state_reg *reg,
3018 struct frame_info *this_frame)
3019 {
3020 switch (regnum)
3021 {
3022 case ARM_PC_REGNUM:
3023 case ARM_PS_REGNUM:
3024 reg->how = DWARF2_FRAME_REG_FN;
3025 reg->loc.fn = arm_dwarf2_prev_register;
3026 break;
3027 case ARM_SP_REGNUM:
3028 reg->how = DWARF2_FRAME_REG_CFA;
3029 break;
3030 }
3031 }
3032
3033 /* Return true if we are in the function's epilogue, i.e. after the
3034 instruction that destroyed the function's stack frame. */
3035
3036 static int
3037 thumb_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
3038 {
3039 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3040 unsigned int insn, insn2;
3041 int found_return = 0, found_stack_adjust = 0;
3042 CORE_ADDR func_start, func_end;
3043 CORE_ADDR scan_pc;
3044 gdb_byte buf[4];
3045
3046 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3047 return 0;
3048
3049 /* The epilogue is a sequence of instructions along the following lines:
3050
3051 - add stack frame size to SP or FP
3052 - [if frame pointer used] restore SP from FP
3053 - restore registers from SP [may include PC]
3054 - a return-type instruction [if PC wasn't already restored]
3055
3056 In a first pass, we scan forward from the current PC and verify the
3057 instructions we find as compatible with this sequence, ending in a
3058 return instruction.
3059
3060 However, this is not sufficient to distinguish indirect function calls
3061 within a function from indirect tail calls in the epilogue in some cases.
3062 Therefore, if we didn't already find any SP-changing instruction during
3063 forward scan, we add a backward scanning heuristic to ensure we actually
3064 are in the epilogue. */
3065
3066 scan_pc = pc;
3067 while (scan_pc < func_end && !found_return)
3068 {
3069 if (target_read_memory (scan_pc, buf, 2))
3070 break;
3071
3072 scan_pc += 2;
3073 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3074
3075 if ((insn & 0xff80) == 0x4700) /* bx <Rm> */
3076 found_return = 1;
3077 else if (insn == 0x46f7) /* mov pc, lr */
3078 found_return = 1;
3079 else if (insn == 0x46bd) /* mov sp, r7 */
3080 found_stack_adjust = 1;
3081 else if ((insn & 0xff00) == 0xb000) /* add sp, imm or sub sp, imm */
3082 found_stack_adjust = 1;
3083 else if ((insn & 0xfe00) == 0xbc00) /* pop <registers> */
3084 {
3085 found_stack_adjust = 1;
3086 if (insn & 0x0100) /* <registers> include PC. */
3087 found_return = 1;
3088 }
3089 else if (thumb_insn_size (insn) == 4) /* 32-bit Thumb-2 instruction */
3090 {
3091 if (target_read_memory (scan_pc, buf, 2))
3092 break;
3093
3094 scan_pc += 2;
3095 insn2 = extract_unsigned_integer (buf, 2, byte_order_for_code);
3096
3097 if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3098 {
3099 found_stack_adjust = 1;
3100 if (insn2 & 0x8000) /* <registers> include PC. */
3101 found_return = 1;
3102 }
3103 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3104 && (insn2 & 0x0fff) == 0x0b04)
3105 {
3106 found_stack_adjust = 1;
3107 if ((insn2 & 0xf000) == 0xf000) /* <Rt> is PC. */
3108 found_return = 1;
3109 }
3110 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3111 && (insn2 & 0x0e00) == 0x0a00)
3112 found_stack_adjust = 1;
3113 else
3114 break;
3115 }
3116 else
3117 break;
3118 }
3119
3120 if (!found_return)
3121 return 0;
3122
3123 /* Since any instruction in the epilogue sequence, with the possible
3124 exception of return itself, updates the stack pointer, we need to
3125 scan backwards for at most one instruction. Try either a 16-bit or
3126 a 32-bit instruction. This is just a heuristic, so we do not worry
3127 too much about false positives. */
3128
3129 if (!found_stack_adjust)
3130 {
3131 if (pc - 4 < func_start)
3132 return 0;
3133 if (target_read_memory (pc - 4, buf, 4))
3134 return 0;
3135
3136 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3137 insn2 = extract_unsigned_integer (buf + 2, 2, byte_order_for_code);
3138
3139 if (insn2 == 0x46bd) /* mov sp, r7 */
3140 found_stack_adjust = 1;
3141 else if ((insn2 & 0xff00) == 0xb000) /* add sp, imm or sub sp, imm */
3142 found_stack_adjust = 1;
3143 else if ((insn2 & 0xff00) == 0xbc00) /* pop <registers> without PC */
3144 found_stack_adjust = 1;
3145 else if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3146 found_stack_adjust = 1;
3147 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3148 && (insn2 & 0x0fff) == 0x0b04)
3149 found_stack_adjust = 1;
3150 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3151 && (insn2 & 0x0e00) == 0x0a00)
3152 found_stack_adjust = 1;
3153 }
3154
3155 return found_stack_adjust;
3156 }
3157
3158 /* Return true if we are in the function's epilogue, i.e. after the
3159 instruction that destroyed the function's stack frame. */
3160
3161 static int
3162 arm_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
3163 {
3164 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3165 unsigned int insn;
3166 int found_return, found_stack_adjust;
3167 CORE_ADDR func_start, func_end;
3168
3169 if (arm_pc_is_thumb (gdbarch, pc))
3170 return thumb_in_function_epilogue_p (gdbarch, pc);
3171
3172 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3173 return 0;
3174
3175 /* We are in the epilogue if the previous instruction was a stack
3176 adjustment and the next instruction is a possible return (bx, mov
3177 pc, or pop). We could have to scan backwards to find the stack
3178 adjustment, or forwards to find the return, but this is a decent
3179 approximation. First scan forwards. */
3180
3181 found_return = 0;
3182 insn = read_memory_unsigned_integer (pc, 4, byte_order_for_code);
3183 if (bits (insn, 28, 31) != INST_NV)
3184 {
3185 if ((insn & 0x0ffffff0) == 0x012fff10)
3186 /* BX. */
3187 found_return = 1;
3188 else if ((insn & 0x0ffffff0) == 0x01a0f000)
3189 /* MOV PC. */
3190 found_return = 1;
3191 else if ((insn & 0x0fff0000) == 0x08bd0000
3192 && (insn & 0x0000c000) != 0)
3193 /* POP (LDMIA), including PC or LR. */
3194 found_return = 1;
3195 }
3196
3197 if (!found_return)
3198 return 0;
3199
3200 /* Scan backwards. This is just a heuristic, so do not worry about
3201 false positives from mode changes. */
3202
3203 if (pc < func_start + 4)
3204 return 0;
3205
3206 found_stack_adjust = 0;
3207 insn = read_memory_unsigned_integer (pc - 4, 4, byte_order_for_code);
3208 if (bits (insn, 28, 31) != INST_NV)
3209 {
3210 if ((insn & 0x0df0f000) == 0x0080d000)
3211 /* ADD SP (register or immediate). */
3212 found_stack_adjust = 1;
3213 else if ((insn & 0x0df0f000) == 0x0040d000)
3214 /* SUB SP (register or immediate). */
3215 found_stack_adjust = 1;
3216 else if ((insn & 0x0ffffff0) == 0x01a0d000)
3217 /* MOV SP. */
3218 found_stack_adjust = 1;
3219 else if ((insn & 0x0fff0000) == 0x08bd0000)
3220 /* POP (LDMIA). */
3221 found_stack_adjust = 1;
3222 }
3223
3224 if (found_stack_adjust)
3225 return 1;
3226
3227 return 0;
3228 }
3229
3230
3231 /* When arguments must be pushed onto the stack, they go on in reverse
3232 order. The code below implements a FILO (stack) to do this. */
3233
3234 struct stack_item
3235 {
3236 int len;
3237 struct stack_item *prev;
3238 void *data;
3239 };
3240
3241 static struct stack_item *
3242 push_stack_item (struct stack_item *prev, const void *contents, int len)
3243 {
3244 struct stack_item *si;
3245 si = xmalloc (sizeof (struct stack_item));
3246 si->data = xmalloc (len);
3247 si->len = len;
3248 si->prev = prev;
3249 memcpy (si->data, contents, len);
3250 return si;
3251 }
3252
3253 static struct stack_item *
3254 pop_stack_item (struct stack_item *si)
3255 {
3256 struct stack_item *dead = si;
3257 si = si->prev;
3258 xfree (dead->data);
3259 xfree (dead);
3260 return si;
3261 }
3262
3263
3264 /* Return the alignment (in bytes) of the given type. */
3265
3266 static int
3267 arm_type_align (struct type *t)
3268 {
3269 int n;
3270 int align;
3271 int falign;
3272
3273 t = check_typedef (t);
3274 switch (TYPE_CODE (t))
3275 {
3276 default:
3277 /* Should never happen. */
3278 internal_error (__FILE__, __LINE__, _("unknown type alignment"));
3279 return 4;
3280
3281 case TYPE_CODE_PTR:
3282 case TYPE_CODE_ENUM:
3283 case TYPE_CODE_INT:
3284 case TYPE_CODE_FLT:
3285 case TYPE_CODE_SET:
3286 case TYPE_CODE_RANGE:
3287 case TYPE_CODE_BITSTRING:
3288 case TYPE_CODE_REF:
3289 case TYPE_CODE_CHAR:
3290 case TYPE_CODE_BOOL:
3291 return TYPE_LENGTH (t);
3292
3293 case TYPE_CODE_ARRAY:
3294 case TYPE_CODE_COMPLEX:
3295 /* TODO: What about vector types? */
3296 return arm_type_align (TYPE_TARGET_TYPE (t));
3297
3298 case TYPE_CODE_STRUCT:
3299 case TYPE_CODE_UNION:
3300 align = 1;
3301 for (n = 0; n < TYPE_NFIELDS (t); n++)
3302 {
3303 falign = arm_type_align (TYPE_FIELD_TYPE (t, n));
3304 if (falign > align)
3305 align = falign;
3306 }
3307 return align;
3308 }
3309 }
3310
3311 /* Possible base types for a candidate for passing and returning in
3312 VFP registers. */
3313
3314 enum arm_vfp_cprc_base_type
3315 {
3316 VFP_CPRC_UNKNOWN,
3317 VFP_CPRC_SINGLE,
3318 VFP_CPRC_DOUBLE,
3319 VFP_CPRC_VEC64,
3320 VFP_CPRC_VEC128
3321 };
3322
3323 /* The length of one element of base type B. */
3324
3325 static unsigned
3326 arm_vfp_cprc_unit_length (enum arm_vfp_cprc_base_type b)
3327 {
3328 switch (b)
3329 {
3330 case VFP_CPRC_SINGLE:
3331 return 4;
3332 case VFP_CPRC_DOUBLE:
3333 return 8;
3334 case VFP_CPRC_VEC64:
3335 return 8;
3336 case VFP_CPRC_VEC128:
3337 return 16;
3338 default:
3339 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3340 (int) b);
3341 }
3342 }
3343
3344 /* The character ('s', 'd' or 'q') for the type of VFP register used
3345 for passing base type B. */
3346
3347 static int
3348 arm_vfp_cprc_reg_char (enum arm_vfp_cprc_base_type b)
3349 {
3350 switch (b)
3351 {
3352 case VFP_CPRC_SINGLE:
3353 return 's';
3354 case VFP_CPRC_DOUBLE:
3355 return 'd';
3356 case VFP_CPRC_VEC64:
3357 return 'd';
3358 case VFP_CPRC_VEC128:
3359 return 'q';
3360 default:
3361 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3362 (int) b);
3363 }
3364 }
3365
3366 /* Determine whether T may be part of a candidate for passing and
3367 returning in VFP registers, ignoring the limit on the total number
3368 of components. If *BASE_TYPE is VFP_CPRC_UNKNOWN, set it to the
3369 classification of the first valid component found; if it is not
3370 VFP_CPRC_UNKNOWN, all components must have the same classification
3371 as *BASE_TYPE. If it is found that T contains a type not permitted
3372 for passing and returning in VFP registers, a type differently
3373 classified from *BASE_TYPE, or two types differently classified
3374 from each other, return -1, otherwise return the total number of
3375 base-type elements found (possibly 0 in an empty structure or
3376 array). Vectors and complex types are not currently supported,
3377 matching the generic AAPCS support. */
3378
3379 static int
3380 arm_vfp_cprc_sub_candidate (struct type *t,
3381 enum arm_vfp_cprc_base_type *base_type)
3382 {
3383 t = check_typedef (t);
3384 switch (TYPE_CODE (t))
3385 {
3386 case TYPE_CODE_FLT:
3387 switch (TYPE_LENGTH (t))
3388 {
3389 case 4:
3390 if (*base_type == VFP_CPRC_UNKNOWN)
3391 *base_type = VFP_CPRC_SINGLE;
3392 else if (*base_type != VFP_CPRC_SINGLE)
3393 return -1;
3394 return 1;
3395
3396 case 8:
3397 if (*base_type == VFP_CPRC_UNKNOWN)
3398 *base_type = VFP_CPRC_DOUBLE;
3399 else if (*base_type != VFP_CPRC_DOUBLE)
3400 return -1;
3401 return 1;
3402
3403 default:
3404 return -1;
3405 }
3406 break;
3407
3408 case TYPE_CODE_ARRAY:
3409 {
3410 int count;
3411 unsigned unitlen;
3412 count = arm_vfp_cprc_sub_candidate (TYPE_TARGET_TYPE (t), base_type);
3413 if (count == -1)
3414 return -1;
3415 if (TYPE_LENGTH (t) == 0)
3416 {
3417 gdb_assert (count == 0);
3418 return 0;
3419 }
3420 else if (count == 0)
3421 return -1;
3422 unitlen = arm_vfp_cprc_unit_length (*base_type);
3423 gdb_assert ((TYPE_LENGTH (t) % unitlen) == 0);
3424 return TYPE_LENGTH (t) / unitlen;
3425 }
3426 break;
3427
3428 case TYPE_CODE_STRUCT:
3429 {
3430 int count = 0;
3431 unsigned unitlen;
3432 int i;
3433 for (i = 0; i < TYPE_NFIELDS (t); i++)
3434 {
3435 int sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3436 base_type);
3437 if (sub_count == -1)
3438 return -1;
3439 count += sub_count;
3440 }
3441 if (TYPE_LENGTH (t) == 0)
3442 {
3443 gdb_assert (count == 0);
3444 return 0;
3445 }
3446 else if (count == 0)
3447 return -1;
3448 unitlen = arm_vfp_cprc_unit_length (*base_type);
3449 if (TYPE_LENGTH (t) != unitlen * count)
3450 return -1;
3451 return count;
3452 }
3453
3454 case TYPE_CODE_UNION:
3455 {
3456 int count = 0;
3457 unsigned unitlen;
3458 int i;
3459 for (i = 0; i < TYPE_NFIELDS (t); i++)
3460 {
3461 int sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3462 base_type);
3463 if (sub_count == -1)
3464 return -1;
3465 count = (count > sub_count ? count : sub_count);
3466 }
3467 if (TYPE_LENGTH (t) == 0)
3468 {
3469 gdb_assert (count == 0);
3470 return 0;
3471 }
3472 else if (count == 0)
3473 return -1;
3474 unitlen = arm_vfp_cprc_unit_length (*base_type);
3475 if (TYPE_LENGTH (t) != unitlen * count)
3476 return -1;
3477 return count;
3478 }
3479
3480 default:
3481 break;
3482 }
3483
3484 return -1;
3485 }
3486
3487 /* Determine whether T is a VFP co-processor register candidate (CPRC)
3488 if passed to or returned from a non-variadic function with the VFP
3489 ABI in effect. Return 1 if it is, 0 otherwise. If it is, set
3490 *BASE_TYPE to the base type for T and *COUNT to the number of
3491 elements of that base type before returning. */
3492
3493 static int
3494 arm_vfp_call_candidate (struct type *t, enum arm_vfp_cprc_base_type *base_type,
3495 int *count)
3496 {
3497 enum arm_vfp_cprc_base_type b = VFP_CPRC_UNKNOWN;
3498 int c = arm_vfp_cprc_sub_candidate (t, &b);
3499 if (c <= 0 || c > 4)
3500 return 0;
3501 *base_type = b;
3502 *count = c;
3503 return 1;
3504 }
3505
3506 /* Return 1 if the VFP ABI should be used for passing arguments to and
3507 returning values from a function of type FUNC_TYPE, 0
3508 otherwise. */
3509
3510 static int
3511 arm_vfp_abi_for_function (struct gdbarch *gdbarch, struct type *func_type)
3512 {
3513 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3514 /* Variadic functions always use the base ABI. Assume that functions
3515 without debug info are not variadic. */
3516 if (func_type && TYPE_VARARGS (check_typedef (func_type)))
3517 return 0;
3518 /* The VFP ABI is only supported as a variant of AAPCS. */
3519 if (tdep->arm_abi != ARM_ABI_AAPCS)
3520 return 0;
3521 return gdbarch_tdep (gdbarch)->fp_model == ARM_FLOAT_VFP;
3522 }
3523
3524 /* We currently only support passing parameters in integer registers, which
3525 conforms with GCC's default model, and VFP argument passing following
3526 the VFP variant of AAPCS. Several other variants exist and
3527 we should probably support some of them based on the selected ABI. */
3528
3529 static CORE_ADDR
3530 arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
3531 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
3532 struct value **args, CORE_ADDR sp, int struct_return,
3533 CORE_ADDR struct_addr)
3534 {
3535 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3536 int argnum;
3537 int argreg;
3538 int nstack;
3539 struct stack_item *si = NULL;
3540 int use_vfp_abi;
3541 struct type *ftype;
3542 unsigned vfp_regs_free = (1 << 16) - 1;
3543
3544 /* Determine the type of this function and whether the VFP ABI
3545 applies. */
3546 ftype = check_typedef (value_type (function));
3547 if (TYPE_CODE (ftype) == TYPE_CODE_PTR)
3548 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
3549 use_vfp_abi = arm_vfp_abi_for_function (gdbarch, ftype);
3550
3551 /* Set the return address. For the ARM, the return breakpoint is
3552 always at BP_ADDR. */
3553 if (arm_pc_is_thumb (gdbarch, bp_addr))
3554 bp_addr |= 1;
3555 regcache_cooked_write_unsigned (regcache, ARM_LR_REGNUM, bp_addr);
3556
3557 /* Walk through the list of args and determine how large a temporary
3558 stack is required. Need to take care here as structs may be
3559 passed on the stack, and we have to push them. */
3560 nstack = 0;
3561
3562 argreg = ARM_A1_REGNUM;
3563 nstack = 0;
3564
3565 /* The struct_return pointer occupies the first parameter
3566 passing register. */
3567 if (struct_return)
3568 {
3569 if (arm_debug)
3570 fprintf_unfiltered (gdb_stdlog, "struct return in %s = %s\n",
3571 gdbarch_register_name (gdbarch, argreg),
3572 paddress (gdbarch, struct_addr));
3573 regcache_cooked_write_unsigned (regcache, argreg, struct_addr);
3574 argreg++;
3575 }
3576
3577 for (argnum = 0; argnum < nargs; argnum++)
3578 {
3579 int len;
3580 struct type *arg_type;
3581 struct type *target_type;
3582 enum type_code typecode;
3583 const bfd_byte *val;
3584 int align;
3585 enum arm_vfp_cprc_base_type vfp_base_type;
3586 int vfp_base_count;
3587 int may_use_core_reg = 1;
3588
3589 arg_type = check_typedef (value_type (args[argnum]));
3590 len = TYPE_LENGTH (arg_type);
3591 target_type = TYPE_TARGET_TYPE (arg_type);
3592 typecode = TYPE_CODE (arg_type);
3593 val = value_contents (args[argnum]);
3594
3595 align = arm_type_align (arg_type);
3596 /* Round alignment up to a whole number of words. */
3597 align = (align + INT_REGISTER_SIZE - 1) & ~(INT_REGISTER_SIZE - 1);
3598 /* Different ABIs have different maximum alignments. */
3599 if (gdbarch_tdep (gdbarch)->arm_abi == ARM_ABI_APCS)
3600 {
3601 /* The APCS ABI only requires word alignment. */
3602 align = INT_REGISTER_SIZE;
3603 }
3604 else
3605 {
3606 /* The AAPCS requires at most doubleword alignment. */
3607 if (align > INT_REGISTER_SIZE * 2)
3608 align = INT_REGISTER_SIZE * 2;
3609 }
3610
3611 if (use_vfp_abi
3612 && arm_vfp_call_candidate (arg_type, &vfp_base_type,
3613 &vfp_base_count))
3614 {
3615 int regno;
3616 int unit_length;
3617 int shift;
3618 unsigned mask;
3619
3620 /* Because this is a CPRC it cannot go in a core register or
3621 cause a core register to be skipped for alignment.
3622 Either it goes in VFP registers and the rest of this loop
3623 iteration is skipped for this argument, or it goes on the
3624 stack (and the stack alignment code is correct for this
3625 case). */
3626 may_use_core_reg = 0;
3627
3628 unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
3629 shift = unit_length / 4;
3630 mask = (1 << (shift * vfp_base_count)) - 1;
3631 for (regno = 0; regno < 16; regno += shift)
3632 if (((vfp_regs_free >> regno) & mask) == mask)
3633 break;
3634
3635 if (regno < 16)
3636 {
3637 int reg_char;
3638 int reg_scaled;
3639 int i;
3640
3641 vfp_regs_free &= ~(mask << regno);
3642 reg_scaled = regno / shift;
3643 reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
3644 for (i = 0; i < vfp_base_count; i++)
3645 {
3646 char name_buf[4];
3647 int regnum;
3648 if (reg_char == 'q')
3649 arm_neon_quad_write (gdbarch, regcache, reg_scaled + i,
3650 val + i * unit_length);
3651 else
3652 {
3653 sprintf (name_buf, "%c%d", reg_char, reg_scaled + i);
3654 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
3655 strlen (name_buf));
3656 regcache_cooked_write (regcache, regnum,
3657 val + i * unit_length);
3658 }
3659 }
3660 continue;
3661 }
3662 else
3663 {
3664 /* This CPRC could not go in VFP registers, so all VFP
3665 registers are now marked as used. */
3666 vfp_regs_free = 0;
3667 }
3668 }
3669
3670 /* Push stack padding for dowubleword alignment. */
3671 if (nstack & (align - 1))
3672 {
3673 si = push_stack_item (si, val, INT_REGISTER_SIZE);
3674 nstack += INT_REGISTER_SIZE;
3675 }
3676
3677 /* Doubleword aligned quantities must go in even register pairs. */
3678 if (may_use_core_reg
3679 && argreg <= ARM_LAST_ARG_REGNUM
3680 && align > INT_REGISTER_SIZE
3681 && argreg & 1)
3682 argreg++;
3683
3684 /* If the argument is a pointer to a function, and it is a
3685 Thumb function, create a LOCAL copy of the value and set
3686 the THUMB bit in it. */
3687 if (TYPE_CODE_PTR == typecode
3688 && target_type != NULL
3689 && TYPE_CODE_FUNC == TYPE_CODE (check_typedef (target_type)))
3690 {
3691 CORE_ADDR regval = extract_unsigned_integer (val, len, byte_order);
3692 if (arm_pc_is_thumb (gdbarch, regval))
3693 {
3694 bfd_byte *copy = alloca (len);
3695 store_unsigned_integer (copy, len, byte_order,
3696 MAKE_THUMB_ADDR (regval));
3697 val = copy;
3698 }
3699 }
3700
3701 /* Copy the argument to general registers or the stack in
3702 register-sized pieces. Large arguments are split between
3703 registers and stack. */
3704 while (len > 0)
3705 {
3706 int partial_len = len < INT_REGISTER_SIZE ? len : INT_REGISTER_SIZE;
3707
3708 if (may_use_core_reg && argreg <= ARM_LAST_ARG_REGNUM)
3709 {
3710 /* The argument is being passed in a general purpose
3711 register. */
3712 CORE_ADDR regval
3713 = extract_unsigned_integer (val, partial_len, byte_order);
3714 if (byte_order == BFD_ENDIAN_BIG)
3715 regval <<= (INT_REGISTER_SIZE - partial_len) * 8;
3716 if (arm_debug)
3717 fprintf_unfiltered (gdb_stdlog, "arg %d in %s = 0x%s\n",
3718 argnum,
3719 gdbarch_register_name
3720 (gdbarch, argreg),
3721 phex (regval, INT_REGISTER_SIZE));
3722 regcache_cooked_write_unsigned (regcache, argreg, regval);
3723 argreg++;
3724 }
3725 else
3726 {
3727 /* Push the arguments onto the stack. */
3728 if (arm_debug)
3729 fprintf_unfiltered (gdb_stdlog, "arg %d @ sp + %d\n",
3730 argnum, nstack);
3731 si = push_stack_item (si, val, INT_REGISTER_SIZE);
3732 nstack += INT_REGISTER_SIZE;
3733 }
3734
3735 len -= partial_len;
3736 val += partial_len;
3737 }
3738 }
3739 /* If we have an odd number of words to push, then decrement the stack
3740 by one word now, so first stack argument will be dword aligned. */
3741 if (nstack & 4)
3742 sp -= 4;
3743
3744 while (si)
3745 {
3746 sp -= si->len;
3747 write_memory (sp, si->data, si->len);
3748 si = pop_stack_item (si);
3749 }
3750
3751 /* Finally, update teh SP register. */
3752 regcache_cooked_write_unsigned (regcache, ARM_SP_REGNUM, sp);
3753
3754 return sp;
3755 }
3756
3757
3758 /* Always align the frame to an 8-byte boundary. This is required on
3759 some platforms and harmless on the rest. */
3760
3761 static CORE_ADDR
3762 arm_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
3763 {
3764 /* Align the stack to eight bytes. */
3765 return sp & ~ (CORE_ADDR) 7;
3766 }
3767
3768 static void
3769 print_fpu_flags (int flags)
3770 {
3771 if (flags & (1 << 0))
3772 fputs ("IVO ", stdout);
3773 if (flags & (1 << 1))
3774 fputs ("DVZ ", stdout);
3775 if (flags & (1 << 2))
3776 fputs ("OFL ", stdout);
3777 if (flags & (1 << 3))
3778 fputs ("UFL ", stdout);
3779 if (flags & (1 << 4))
3780 fputs ("INX ", stdout);
3781 putchar ('\n');
3782 }
3783
3784 /* Print interesting information about the floating point processor
3785 (if present) or emulator. */
3786 static void
3787 arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
3788 struct frame_info *frame, const char *args)
3789 {
3790 unsigned long status = get_frame_register_unsigned (frame, ARM_FPS_REGNUM);
3791 int type;
3792
3793 type = (status >> 24) & 127;
3794 if (status & (1 << 31))
3795 printf (_("Hardware FPU type %d\n"), type);
3796 else
3797 printf (_("Software FPU type %d\n"), type);
3798 /* i18n: [floating point unit] mask */
3799 fputs (_("mask: "), stdout);
3800 print_fpu_flags (status >> 16);
3801 /* i18n: [floating point unit] flags */
3802 fputs (_("flags: "), stdout);
3803 print_fpu_flags (status);
3804 }
3805
3806 /* Construct the ARM extended floating point type. */
3807 static struct type *
3808 arm_ext_type (struct gdbarch *gdbarch)
3809 {
3810 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3811
3812 if (!tdep->arm_ext_type)
3813 tdep->arm_ext_type
3814 = arch_float_type (gdbarch, -1, "builtin_type_arm_ext",
3815 floatformats_arm_ext);
3816
3817 return tdep->arm_ext_type;
3818 }
3819
3820 static struct type *
3821 arm_neon_double_type (struct gdbarch *gdbarch)
3822 {
3823 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3824
3825 if (tdep->neon_double_type == NULL)
3826 {
3827 struct type *t, *elem;
3828
3829 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_d",
3830 TYPE_CODE_UNION);
3831 elem = builtin_type (gdbarch)->builtin_uint8;
3832 append_composite_type_field (t, "u8", init_vector_type (elem, 8));
3833 elem = builtin_type (gdbarch)->builtin_uint16;
3834 append_composite_type_field (t, "u16", init_vector_type (elem, 4));
3835 elem = builtin_type (gdbarch)->builtin_uint32;
3836 append_composite_type_field (t, "u32", init_vector_type (elem, 2));
3837 elem = builtin_type (gdbarch)->builtin_uint64;
3838 append_composite_type_field (t, "u64", elem);
3839 elem = builtin_type (gdbarch)->builtin_float;
3840 append_composite_type_field (t, "f32", init_vector_type (elem, 2));
3841 elem = builtin_type (gdbarch)->builtin_double;
3842 append_composite_type_field (t, "f64", elem);
3843
3844 TYPE_VECTOR (t) = 1;
3845 TYPE_NAME (t) = "neon_d";
3846 tdep->neon_double_type = t;
3847 }
3848
3849 return tdep->neon_double_type;
3850 }
3851
3852 /* FIXME: The vector types are not correctly ordered on big-endian
3853 targets. Just as s0 is the low bits of d0, d0[0] is also the low
3854 bits of d0 - regardless of what unit size is being held in d0. So
3855 the offset of the first uint8 in d0 is 7, but the offset of the
3856 first float is 4. This code works as-is for little-endian
3857 targets. */
3858
3859 static struct type *
3860 arm_neon_quad_type (struct gdbarch *gdbarch)
3861 {
3862 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3863
3864 if (tdep->neon_quad_type == NULL)
3865 {
3866 struct type *t, *elem;
3867
3868 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_q",
3869 TYPE_CODE_UNION);
3870 elem = builtin_type (gdbarch)->builtin_uint8;
3871 append_composite_type_field (t, "u8", init_vector_type (elem, 16));
3872 elem = builtin_type (gdbarch)->builtin_uint16;
3873 append_composite_type_field (t, "u16", init_vector_type (elem, 8));
3874 elem = builtin_type (gdbarch)->builtin_uint32;
3875 append_composite_type_field (t, "u32", init_vector_type (elem, 4));
3876 elem = builtin_type (gdbarch)->builtin_uint64;
3877 append_composite_type_field (t, "u64", init_vector_type (elem, 2));
3878 elem = builtin_type (gdbarch)->builtin_float;
3879 append_composite_type_field (t, "f32", init_vector_type (elem, 4));
3880 elem = builtin_type (gdbarch)->builtin_double;
3881 append_composite_type_field (t, "f64", init_vector_type (elem, 2));
3882
3883 TYPE_VECTOR (t) = 1;
3884 TYPE_NAME (t) = "neon_q";
3885 tdep->neon_quad_type = t;
3886 }
3887
3888 return tdep->neon_quad_type;
3889 }
3890
3891 /* Return the GDB type object for the "standard" data type of data in
3892 register N. */
3893
3894 static struct type *
3895 arm_register_type (struct gdbarch *gdbarch, int regnum)
3896 {
3897 int num_regs = gdbarch_num_regs (gdbarch);
3898
3899 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
3900 && regnum >= num_regs && regnum < num_regs + 32)
3901 return builtin_type (gdbarch)->builtin_float;
3902
3903 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
3904 && regnum >= num_regs + 32 && regnum < num_regs + 32 + 16)
3905 return arm_neon_quad_type (gdbarch);
3906
3907 /* If the target description has register information, we are only
3908 in this function so that we can override the types of
3909 double-precision registers for NEON. */
3910 if (tdesc_has_registers (gdbarch_target_desc (gdbarch)))
3911 {
3912 struct type *t = tdesc_register_type (gdbarch, regnum);
3913
3914 if (regnum >= ARM_D0_REGNUM && regnum < ARM_D0_REGNUM + 32
3915 && TYPE_CODE (t) == TYPE_CODE_FLT
3916 && gdbarch_tdep (gdbarch)->have_neon)
3917 return arm_neon_double_type (gdbarch);
3918 else
3919 return t;
3920 }
3921
3922 if (regnum >= ARM_F0_REGNUM && regnum < ARM_F0_REGNUM + NUM_FREGS)
3923 {
3924 if (!gdbarch_tdep (gdbarch)->have_fpa_registers)
3925 return builtin_type (gdbarch)->builtin_void;
3926
3927 return arm_ext_type (gdbarch);
3928 }
3929 else if (regnum == ARM_SP_REGNUM)
3930 return builtin_type (gdbarch)->builtin_data_ptr;
3931 else if (regnum == ARM_PC_REGNUM)
3932 return builtin_type (gdbarch)->builtin_func_ptr;
3933 else if (regnum >= ARRAY_SIZE (arm_register_names))
3934 /* These registers are only supported on targets which supply
3935 an XML description. */
3936 return builtin_type (gdbarch)->builtin_int0;
3937 else
3938 return builtin_type (gdbarch)->builtin_uint32;
3939 }
3940
3941 /* Map a DWARF register REGNUM onto the appropriate GDB register
3942 number. */
3943
3944 static int
3945 arm_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
3946 {
3947 /* Core integer regs. */
3948 if (reg >= 0 && reg <= 15)
3949 return reg;
3950
3951 /* Legacy FPA encoding. These were once used in a way which
3952 overlapped with VFP register numbering, so their use is
3953 discouraged, but GDB doesn't support the ARM toolchain
3954 which used them for VFP. */
3955 if (reg >= 16 && reg <= 23)
3956 return ARM_F0_REGNUM + reg - 16;
3957
3958 /* New assignments for the FPA registers. */
3959 if (reg >= 96 && reg <= 103)
3960 return ARM_F0_REGNUM + reg - 96;
3961
3962 /* WMMX register assignments. */
3963 if (reg >= 104 && reg <= 111)
3964 return ARM_WCGR0_REGNUM + reg - 104;
3965
3966 if (reg >= 112 && reg <= 127)
3967 return ARM_WR0_REGNUM + reg - 112;
3968
3969 if (reg >= 192 && reg <= 199)
3970 return ARM_WC0_REGNUM + reg - 192;
3971
3972 /* VFP v2 registers. A double precision value is actually
3973 in d1 rather than s2, but the ABI only defines numbering
3974 for the single precision registers. This will "just work"
3975 in GDB for little endian targets (we'll read eight bytes,
3976 starting in s0 and then progressing to s1), but will be
3977 reversed on big endian targets with VFP. This won't
3978 be a problem for the new Neon quad registers; you're supposed
3979 to use DW_OP_piece for those. */
3980 if (reg >= 64 && reg <= 95)
3981 {
3982 char name_buf[4];
3983
3984 sprintf (name_buf, "s%d", reg - 64);
3985 return user_reg_map_name_to_regnum (gdbarch, name_buf,
3986 strlen (name_buf));
3987 }
3988
3989 /* VFP v3 / Neon registers. This range is also used for VFP v2
3990 registers, except that it now describes d0 instead of s0. */
3991 if (reg >= 256 && reg <= 287)
3992 {
3993 char name_buf[4];
3994
3995 sprintf (name_buf, "d%d", reg - 256);
3996 return user_reg_map_name_to_regnum (gdbarch, name_buf,
3997 strlen (name_buf));
3998 }
3999
4000 return -1;
4001 }
4002
4003 /* Map GDB internal REGNUM onto the Arm simulator register numbers. */
4004 static int
4005 arm_register_sim_regno (struct gdbarch *gdbarch, int regnum)
4006 {
4007 int reg = regnum;
4008 gdb_assert (reg >= 0 && reg < gdbarch_num_regs (gdbarch));
4009
4010 if (regnum >= ARM_WR0_REGNUM && regnum <= ARM_WR15_REGNUM)
4011 return regnum - ARM_WR0_REGNUM + SIM_ARM_IWMMXT_COP0R0_REGNUM;
4012
4013 if (regnum >= ARM_WC0_REGNUM && regnum <= ARM_WC7_REGNUM)
4014 return regnum - ARM_WC0_REGNUM + SIM_ARM_IWMMXT_COP1R0_REGNUM;
4015
4016 if (regnum >= ARM_WCGR0_REGNUM && regnum <= ARM_WCGR7_REGNUM)
4017 return regnum - ARM_WCGR0_REGNUM + SIM_ARM_IWMMXT_COP1R8_REGNUM;
4018
4019 if (reg < NUM_GREGS)
4020 return SIM_ARM_R0_REGNUM + reg;
4021 reg -= NUM_GREGS;
4022
4023 if (reg < NUM_FREGS)
4024 return SIM_ARM_FP0_REGNUM + reg;
4025 reg -= NUM_FREGS;
4026
4027 if (reg < NUM_SREGS)
4028 return SIM_ARM_FPS_REGNUM + reg;
4029 reg -= NUM_SREGS;
4030
4031 internal_error (__FILE__, __LINE__, _("Bad REGNUM %d"), regnum);
4032 }
4033
4034 /* NOTE: cagney/2001-08-20: Both convert_from_extended() and
4035 convert_to_extended() use floatformat_arm_ext_littlebyte_bigword.
4036 It is thought that this is is the floating-point register format on
4037 little-endian systems. */
4038
4039 static void
4040 convert_from_extended (const struct floatformat *fmt, const void *ptr,
4041 void *dbl, int endianess)
4042 {
4043 DOUBLEST d;
4044
4045 if (endianess == BFD_ENDIAN_BIG)
4046 floatformat_to_doublest (&floatformat_arm_ext_big, ptr, &d);
4047 else
4048 floatformat_to_doublest (&floatformat_arm_ext_littlebyte_bigword,
4049 ptr, &d);
4050 floatformat_from_doublest (fmt, &d, dbl);
4051 }
4052
4053 static void
4054 convert_to_extended (const struct floatformat *fmt, void *dbl, const void *ptr,
4055 int endianess)
4056 {
4057 DOUBLEST d;
4058
4059 floatformat_to_doublest (fmt, ptr, &d);
4060 if (endianess == BFD_ENDIAN_BIG)
4061 floatformat_from_doublest (&floatformat_arm_ext_big, &d, dbl);
4062 else
4063 floatformat_from_doublest (&floatformat_arm_ext_littlebyte_bigword,
4064 &d, dbl);
4065 }
4066
4067 static int
4068 condition_true (unsigned long cond, unsigned long status_reg)
4069 {
4070 if (cond == INST_AL || cond == INST_NV)
4071 return 1;
4072
4073 switch (cond)
4074 {
4075 case INST_EQ:
4076 return ((status_reg & FLAG_Z) != 0);
4077 case INST_NE:
4078 return ((status_reg & FLAG_Z) == 0);
4079 case INST_CS:
4080 return ((status_reg & FLAG_C) != 0);
4081 case INST_CC:
4082 return ((status_reg & FLAG_C) == 0);
4083 case INST_MI:
4084 return ((status_reg & FLAG_N) != 0);
4085 case INST_PL:
4086 return ((status_reg & FLAG_N) == 0);
4087 case INST_VS:
4088 return ((status_reg & FLAG_V) != 0);
4089 case INST_VC:
4090 return ((status_reg & FLAG_V) == 0);
4091 case INST_HI:
4092 return ((status_reg & (FLAG_C | FLAG_Z)) == FLAG_C);
4093 case INST_LS:
4094 return ((status_reg & (FLAG_C | FLAG_Z)) != FLAG_C);
4095 case INST_GE:
4096 return (((status_reg & FLAG_N) == 0) == ((status_reg & FLAG_V) == 0));
4097 case INST_LT:
4098 return (((status_reg & FLAG_N) == 0) != ((status_reg & FLAG_V) == 0));
4099 case INST_GT:
4100 return (((status_reg & FLAG_Z) == 0)
4101 && (((status_reg & FLAG_N) == 0)
4102 == ((status_reg & FLAG_V) == 0)));
4103 case INST_LE:
4104 return (((status_reg & FLAG_Z) != 0)
4105 || (((status_reg & FLAG_N) == 0)
4106 != ((status_reg & FLAG_V) == 0)));
4107 }
4108 return 1;
4109 }
4110
4111 static unsigned long
4112 shifted_reg_val (struct frame_info *frame, unsigned long inst, int carry,
4113 unsigned long pc_val, unsigned long status_reg)
4114 {
4115 unsigned long res, shift;
4116 int rm = bits (inst, 0, 3);
4117 unsigned long shifttype = bits (inst, 5, 6);
4118
4119 if (bit (inst, 4))
4120 {
4121 int rs = bits (inst, 8, 11);
4122 shift = (rs == 15 ? pc_val + 8
4123 : get_frame_register_unsigned (frame, rs)) & 0xFF;
4124 }
4125 else
4126 shift = bits (inst, 7, 11);
4127
4128 res = (rm == ARM_PC_REGNUM
4129 ? (pc_val + (bit (inst, 4) ? 12 : 8))
4130 : get_frame_register_unsigned (frame, rm));
4131
4132 switch (shifttype)
4133 {
4134 case 0: /* LSL */
4135 res = shift >= 32 ? 0 : res << shift;
4136 break;
4137
4138 case 1: /* LSR */
4139 res = shift >= 32 ? 0 : res >> shift;
4140 break;
4141
4142 case 2: /* ASR */
4143 if (shift >= 32)
4144 shift = 31;
4145 res = ((res & 0x80000000L)
4146 ? ~((~res) >> shift) : res >> shift);
4147 break;
4148
4149 case 3: /* ROR/RRX */
4150 shift &= 31;
4151 if (shift == 0)
4152 res = (res >> 1) | (carry ? 0x80000000L : 0);
4153 else
4154 res = (res >> shift) | (res << (32 - shift));
4155 break;
4156 }
4157
4158 return res & 0xffffffff;
4159 }
4160
4161 /* Return number of 1-bits in VAL. */
4162
4163 static int
4164 bitcount (unsigned long val)
4165 {
4166 int nbits;
4167 for (nbits = 0; val != 0; nbits++)
4168 val &= val - 1; /* Delete rightmost 1-bit in val. */
4169 return nbits;
4170 }
4171
4172 /* Return the size in bytes of the complete Thumb instruction whose
4173 first halfword is INST1. */
4174
4175 static int
4176 thumb_insn_size (unsigned short inst1)
4177 {
4178 if ((inst1 & 0xe000) == 0xe000 && (inst1 & 0x1800) != 0)
4179 return 4;
4180 else
4181 return 2;
4182 }
4183
4184 static int
4185 thumb_advance_itstate (unsigned int itstate)
4186 {
4187 /* Preserve IT[7:5], the first three bits of the condition. Shift
4188 the upcoming condition flags left by one bit. */
4189 itstate = (itstate & 0xe0) | ((itstate << 1) & 0x1f);
4190
4191 /* If we have finished the IT block, clear the state. */
4192 if ((itstate & 0x0f) == 0)
4193 itstate = 0;
4194
4195 return itstate;
4196 }
4197
4198 /* Find the next PC after the current instruction executes. In some
4199 cases we can not statically determine the answer (see the IT state
4200 handling in this function); in that case, a breakpoint may be
4201 inserted in addition to the returned PC, which will be used to set
4202 another breakpoint by our caller. */
4203
4204 static CORE_ADDR
4205 thumb_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc)
4206 {
4207 struct gdbarch *gdbarch = get_frame_arch (frame);
4208 struct address_space *aspace = get_frame_address_space (frame);
4209 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4210 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
4211 unsigned long pc_val = ((unsigned long) pc) + 4; /* PC after prefetch */
4212 unsigned short inst1;
4213 CORE_ADDR nextpc = pc + 2; /* Default is next instruction. */
4214 unsigned long offset;
4215 ULONGEST status, itstate;
4216
4217 nextpc = MAKE_THUMB_ADDR (nextpc);
4218 pc_val = MAKE_THUMB_ADDR (pc_val);
4219
4220 inst1 = read_memory_unsigned_integer (pc, 2, byte_order_for_code);
4221
4222 /* Thumb-2 conditional execution support. There are eight bits in
4223 the CPSR which describe conditional execution state. Once
4224 reconstructed (they're in a funny order), the low five bits
4225 describe the low bit of the condition for each instruction and
4226 how many instructions remain. The high three bits describe the
4227 base condition. One of the low four bits will be set if an IT
4228 block is active. These bits read as zero on earlier
4229 processors. */
4230 status = get_frame_register_unsigned (frame, ARM_PS_REGNUM);
4231 itstate = ((status >> 8) & 0xfc) | ((status >> 25) & 0x3);
4232
4233 /* If-Then handling. On GNU/Linux, where this routine is used, we
4234 use an undefined instruction as a breakpoint. Unlike BKPT, IT
4235 can disable execution of the undefined instruction. So we might
4236 miss the breakpoint if we set it on a skipped conditional
4237 instruction. Because conditional instructions can change the
4238 flags, affecting the execution of further instructions, we may
4239 need to set two breakpoints. */
4240
4241 if (gdbarch_tdep (gdbarch)->thumb2_breakpoint != NULL)
4242 {
4243 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
4244 {
4245 /* An IT instruction. Because this instruction does not
4246 modify the flags, we can accurately predict the next
4247 executed instruction. */
4248 itstate = inst1 & 0x00ff;
4249 pc += thumb_insn_size (inst1);
4250
4251 while (itstate != 0 && ! condition_true (itstate >> 4, status))
4252 {
4253 inst1 = read_memory_unsigned_integer (pc, 2,
4254 byte_order_for_code);
4255 pc += thumb_insn_size (inst1);
4256 itstate = thumb_advance_itstate (itstate);
4257 }
4258
4259 return MAKE_THUMB_ADDR (pc);
4260 }
4261 else if (itstate != 0)
4262 {
4263 /* We are in a conditional block. Check the condition. */
4264 if (! condition_true (itstate >> 4, status))
4265 {
4266 /* Advance to the next executed instruction. */
4267 pc += thumb_insn_size (inst1);
4268 itstate = thumb_advance_itstate (itstate);
4269
4270 while (itstate != 0 && ! condition_true (itstate >> 4, status))
4271 {
4272 inst1 = read_memory_unsigned_integer (pc, 2,
4273 byte_order_for_code);
4274 pc += thumb_insn_size (inst1);
4275 itstate = thumb_advance_itstate (itstate);
4276 }
4277
4278 return MAKE_THUMB_ADDR (pc);
4279 }
4280 else if ((itstate & 0x0f) == 0x08)
4281 {
4282 /* This is the last instruction of the conditional
4283 block, and it is executed. We can handle it normally
4284 because the following instruction is not conditional,
4285 and we must handle it normally because it is
4286 permitted to branch. Fall through. */
4287 }
4288 else
4289 {
4290 int cond_negated;
4291
4292 /* There are conditional instructions after this one.
4293 If this instruction modifies the flags, then we can
4294 not predict what the next executed instruction will
4295 be. Fortunately, this instruction is architecturally
4296 forbidden to branch; we know it will fall through.
4297 Start by skipping past it. */
4298 pc += thumb_insn_size (inst1);
4299 itstate = thumb_advance_itstate (itstate);
4300
4301 /* Set a breakpoint on the following instruction. */
4302 gdb_assert ((itstate & 0x0f) != 0);
4303 arm_insert_single_step_breakpoint (gdbarch, aspace,
4304 MAKE_THUMB_ADDR (pc));
4305 cond_negated = (itstate >> 4) & 1;
4306
4307 /* Skip all following instructions with the same
4308 condition. If there is a later instruction in the IT
4309 block with the opposite condition, set the other
4310 breakpoint there. If not, then set a breakpoint on
4311 the instruction after the IT block. */
4312 do
4313 {
4314 inst1 = read_memory_unsigned_integer (pc, 2,
4315 byte_order_for_code);
4316 pc += thumb_insn_size (inst1);
4317 itstate = thumb_advance_itstate (itstate);
4318 }
4319 while (itstate != 0 && ((itstate >> 4) & 1) == cond_negated);
4320
4321 return MAKE_THUMB_ADDR (pc);
4322 }
4323 }
4324 }
4325 else if (itstate & 0x0f)
4326 {
4327 /* We are in a conditional block. Check the condition. */
4328 int cond = itstate >> 4;
4329
4330 if (! condition_true (cond, status))
4331 /* Advance to the next instruction. All the 32-bit
4332 instructions share a common prefix. */
4333 return MAKE_THUMB_ADDR (pc + thumb_insn_size (inst1));
4334
4335 /* Otherwise, handle the instruction normally. */
4336 }
4337
4338 if ((inst1 & 0xff00) == 0xbd00) /* pop {rlist, pc} */
4339 {
4340 CORE_ADDR sp;
4341
4342 /* Fetch the saved PC from the stack. It's stored above
4343 all of the other registers. */
4344 offset = bitcount (bits (inst1, 0, 7)) * INT_REGISTER_SIZE;
4345 sp = get_frame_register_unsigned (frame, ARM_SP_REGNUM);
4346 nextpc = read_memory_unsigned_integer (sp + offset, 4, byte_order);
4347 }
4348 else if ((inst1 & 0xf000) == 0xd000) /* conditional branch */
4349 {
4350 unsigned long cond = bits (inst1, 8, 11);
4351 if (cond == 0x0f) /* 0x0f = SWI */
4352 {
4353 struct gdbarch_tdep *tdep;
4354 tdep = gdbarch_tdep (gdbarch);
4355
4356 if (tdep->syscall_next_pc != NULL)
4357 nextpc = tdep->syscall_next_pc (frame);
4358
4359 }
4360 else if (cond != 0x0f && condition_true (cond, status))
4361 nextpc = pc_val + (sbits (inst1, 0, 7) << 1);
4362 }
4363 else if ((inst1 & 0xf800) == 0xe000) /* unconditional branch */
4364 {
4365 nextpc = pc_val + (sbits (inst1, 0, 10) << 1);
4366 }
4367 else if (thumb_insn_size (inst1) == 4) /* 32-bit instruction */
4368 {
4369 unsigned short inst2;
4370 inst2 = read_memory_unsigned_integer (pc + 2, 2, byte_order_for_code);
4371
4372 /* Default to the next instruction. */
4373 nextpc = pc + 4;
4374 nextpc = MAKE_THUMB_ADDR (nextpc);
4375
4376 if ((inst1 & 0xf800) == 0xf000 && (inst2 & 0x8000) == 0x8000)
4377 {
4378 /* Branches and miscellaneous control instructions. */
4379
4380 if ((inst2 & 0x1000) != 0 || (inst2 & 0xd001) == 0xc000)
4381 {
4382 /* B, BL, BLX. */
4383 int j1, j2, imm1, imm2;
4384
4385 imm1 = sbits (inst1, 0, 10);
4386 imm2 = bits (inst2, 0, 10);
4387 j1 = bit (inst2, 13);
4388 j2 = bit (inst2, 11);
4389
4390 offset = ((imm1 << 12) + (imm2 << 1));
4391 offset ^= ((!j2) << 22) | ((!j1) << 23);
4392
4393 nextpc = pc_val + offset;
4394 /* For BLX make sure to clear the low bits. */
4395 if (bit (inst2, 12) == 0)
4396 nextpc = nextpc & 0xfffffffc;
4397 }
4398 else if (inst1 == 0xf3de && (inst2 & 0xff00) == 0x3f00)
4399 {
4400 /* SUBS PC, LR, #imm8. */
4401 nextpc = get_frame_register_unsigned (frame, ARM_LR_REGNUM);
4402 nextpc -= inst2 & 0x00ff;
4403 }
4404 else if ((inst2 & 0xd000) == 0x8000 && (inst1 & 0x0380) != 0x0380)
4405 {
4406 /* Conditional branch. */
4407 if (condition_true (bits (inst1, 6, 9), status))
4408 {
4409 int sign, j1, j2, imm1, imm2;
4410
4411 sign = sbits (inst1, 10, 10);
4412 imm1 = bits (inst1, 0, 5);
4413 imm2 = bits (inst2, 0, 10);
4414 j1 = bit (inst2, 13);
4415 j2 = bit (inst2, 11);
4416
4417 offset = (sign << 20) + (j2 << 19) + (j1 << 18);
4418 offset += (imm1 << 12) + (imm2 << 1);
4419
4420 nextpc = pc_val + offset;
4421 }
4422 }
4423 }
4424 else if ((inst1 & 0xfe50) == 0xe810)
4425 {
4426 /* Load multiple or RFE. */
4427 int rn, offset, load_pc = 1;
4428
4429 rn = bits (inst1, 0, 3);
4430 if (bit (inst1, 7) && !bit (inst1, 8))
4431 {
4432 /* LDMIA or POP */
4433 if (!bit (inst2, 15))
4434 load_pc = 0;
4435 offset = bitcount (inst2) * 4 - 4;
4436 }
4437 else if (!bit (inst1, 7) && bit (inst1, 8))
4438 {
4439 /* LDMDB */
4440 if (!bit (inst2, 15))
4441 load_pc = 0;
4442 offset = -4;
4443 }
4444 else if (bit (inst1, 7) && bit (inst1, 8))
4445 {
4446 /* RFEIA */
4447 offset = 0;
4448 }
4449 else if (!bit (inst1, 7) && !bit (inst1, 8))
4450 {
4451 /* RFEDB */
4452 offset = -8;
4453 }
4454 else
4455 load_pc = 0;
4456
4457 if (load_pc)
4458 {
4459 CORE_ADDR addr = get_frame_register_unsigned (frame, rn);
4460 nextpc = get_frame_memory_unsigned (frame, addr + offset, 4);
4461 }
4462 }
4463 else if ((inst1 & 0xffef) == 0xea4f && (inst2 & 0xfff0) == 0x0f00)
4464 {
4465 /* MOV PC or MOVS PC. */
4466 nextpc = get_frame_register_unsigned (frame, bits (inst2, 0, 3));
4467 nextpc = MAKE_THUMB_ADDR (nextpc);
4468 }
4469 else if ((inst1 & 0xff70) == 0xf850 && (inst2 & 0xf000) == 0xf000)
4470 {
4471 /* LDR PC. */
4472 CORE_ADDR base;
4473 int rn, load_pc = 1;
4474
4475 rn = bits (inst1, 0, 3);
4476 base = get_frame_register_unsigned (frame, rn);
4477 if (rn == ARM_PC_REGNUM)
4478 {
4479 base = (base + 4) & ~(CORE_ADDR) 0x3;
4480 if (bit (inst1, 7))
4481 base += bits (inst2, 0, 11);
4482 else
4483 base -= bits (inst2, 0, 11);
4484 }
4485 else if (bit (inst1, 7))
4486 base += bits (inst2, 0, 11);
4487 else if (bit (inst2, 11))
4488 {
4489 if (bit (inst2, 10))
4490 {
4491 if (bit (inst2, 9))
4492 base += bits (inst2, 0, 7);
4493 else
4494 base -= bits (inst2, 0, 7);
4495 }
4496 }
4497 else if ((inst2 & 0x0fc0) == 0x0000)
4498 {
4499 int shift = bits (inst2, 4, 5), rm = bits (inst2, 0, 3);
4500 base += get_frame_register_unsigned (frame, rm) << shift;
4501 }
4502 else
4503 /* Reserved. */
4504 load_pc = 0;
4505
4506 if (load_pc)
4507 nextpc = get_frame_memory_unsigned (frame, base, 4);
4508 }
4509 else if ((inst1 & 0xfff0) == 0xe8d0 && (inst2 & 0xfff0) == 0xf000)
4510 {
4511 /* TBB. */
4512 CORE_ADDR tbl_reg, table, offset, length;
4513
4514 tbl_reg = bits (inst1, 0, 3);
4515 if (tbl_reg == 0x0f)
4516 table = pc + 4; /* Regcache copy of PC isn't right yet. */
4517 else
4518 table = get_frame_register_unsigned (frame, tbl_reg);
4519
4520 offset = get_frame_register_unsigned (frame, bits (inst2, 0, 3));
4521 length = 2 * get_frame_memory_unsigned (frame, table + offset, 1);
4522 nextpc = pc_val + length;
4523 }
4524 else if ((inst1 & 0xfff0) == 0xe8d0 && (inst2 & 0xfff0) == 0xf010)
4525 {
4526 /* TBH. */
4527 CORE_ADDR tbl_reg, table, offset, length;
4528
4529 tbl_reg = bits (inst1, 0, 3);
4530 if (tbl_reg == 0x0f)
4531 table = pc + 4; /* Regcache copy of PC isn't right yet. */
4532 else
4533 table = get_frame_register_unsigned (frame, tbl_reg);
4534
4535 offset = 2 * get_frame_register_unsigned (frame, bits (inst2, 0, 3));
4536 length = 2 * get_frame_memory_unsigned (frame, table + offset, 2);
4537 nextpc = pc_val + length;
4538 }
4539 }
4540 else if ((inst1 & 0xff00) == 0x4700) /* bx REG, blx REG */
4541 {
4542 if (bits (inst1, 3, 6) == 0x0f)
4543 nextpc = pc_val;
4544 else
4545 nextpc = get_frame_register_unsigned (frame, bits (inst1, 3, 6));
4546 }
4547 else if ((inst1 & 0xff87) == 0x4687) /* mov pc, REG */
4548 {
4549 if (bits (inst1, 3, 6) == 0x0f)
4550 nextpc = pc_val;
4551 else
4552 nextpc = get_frame_register_unsigned (frame, bits (inst1, 3, 6));
4553
4554 nextpc = MAKE_THUMB_ADDR (nextpc);
4555 }
4556 else if ((inst1 & 0xf500) == 0xb100)
4557 {
4558 /* CBNZ or CBZ. */
4559 int imm = (bit (inst1, 9) << 6) + (bits (inst1, 3, 7) << 1);
4560 ULONGEST reg = get_frame_register_unsigned (frame, bits (inst1, 0, 2));
4561
4562 if (bit (inst1, 11) && reg != 0)
4563 nextpc = pc_val + imm;
4564 else if (!bit (inst1, 11) && reg == 0)
4565 nextpc = pc_val + imm;
4566 }
4567 return nextpc;
4568 }
4569
4570 /* Get the raw next address. PC is the current program counter, in
4571 FRAME, which is assumed to be executing in ARM mode.
4572
4573 The value returned has the execution state of the next instruction
4574 encoded in it. Use IS_THUMB_ADDR () to see whether the instruction is
4575 in Thumb-State, and gdbarch_addr_bits_remove () to get the plain memory
4576 address. */
4577
4578 static CORE_ADDR
4579 arm_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc)
4580 {
4581 struct gdbarch *gdbarch = get_frame_arch (frame);
4582 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4583 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
4584 unsigned long pc_val;
4585 unsigned long this_instr;
4586 unsigned long status;
4587 CORE_ADDR nextpc;
4588
4589 pc_val = (unsigned long) pc;
4590 this_instr = read_memory_unsigned_integer (pc, 4, byte_order_for_code);
4591
4592 status = get_frame_register_unsigned (frame, ARM_PS_REGNUM);
4593 nextpc = (CORE_ADDR) (pc_val + 4); /* Default case */
4594
4595 if (bits (this_instr, 28, 31) == INST_NV)
4596 switch (bits (this_instr, 24, 27))
4597 {
4598 case 0xa:
4599 case 0xb:
4600 {
4601 /* Branch with Link and change to Thumb. */
4602 nextpc = BranchDest (pc, this_instr);
4603 nextpc |= bit (this_instr, 24) << 1;
4604 nextpc = MAKE_THUMB_ADDR (nextpc);
4605 break;
4606 }
4607 case 0xc:
4608 case 0xd:
4609 case 0xe:
4610 /* Coprocessor register transfer. */
4611 if (bits (this_instr, 12, 15) == 15)
4612 error (_("Invalid update to pc in instruction"));
4613 break;
4614 }
4615 else if (condition_true (bits (this_instr, 28, 31), status))
4616 {
4617 switch (bits (this_instr, 24, 27))
4618 {
4619 case 0x0:
4620 case 0x1: /* data processing */
4621 case 0x2:
4622 case 0x3:
4623 {
4624 unsigned long operand1, operand2, result = 0;
4625 unsigned long rn;
4626 int c;
4627
4628 if (bits (this_instr, 12, 15) != 15)
4629 break;
4630
4631 if (bits (this_instr, 22, 25) == 0
4632 && bits (this_instr, 4, 7) == 9) /* multiply */
4633 error (_("Invalid update to pc in instruction"));
4634
4635 /* BX <reg>, BLX <reg> */
4636 if (bits (this_instr, 4, 27) == 0x12fff1
4637 || bits (this_instr, 4, 27) == 0x12fff3)
4638 {
4639 rn = bits (this_instr, 0, 3);
4640 nextpc = ((rn == ARM_PC_REGNUM)
4641 ? (pc_val + 8)
4642 : get_frame_register_unsigned (frame, rn));
4643
4644 return nextpc;
4645 }
4646
4647 /* Multiply into PC. */
4648 c = (status & FLAG_C) ? 1 : 0;
4649 rn = bits (this_instr, 16, 19);
4650 operand1 = ((rn == ARM_PC_REGNUM)
4651 ? (pc_val + 8)
4652 : get_frame_register_unsigned (frame, rn));
4653
4654 if (bit (this_instr, 25))
4655 {
4656 unsigned long immval = bits (this_instr, 0, 7);
4657 unsigned long rotate = 2 * bits (this_instr, 8, 11);
4658 operand2 = ((immval >> rotate) | (immval << (32 - rotate)))
4659 & 0xffffffff;
4660 }
4661 else /* operand 2 is a shifted register. */
4662 operand2 = shifted_reg_val (frame, this_instr, c,
4663 pc_val, status);
4664
4665 switch (bits (this_instr, 21, 24))
4666 {
4667 case 0x0: /*and */
4668 result = operand1 & operand2;
4669 break;
4670
4671 case 0x1: /*eor */
4672 result = operand1 ^ operand2;
4673 break;
4674
4675 case 0x2: /*sub */
4676 result = operand1 - operand2;
4677 break;
4678
4679 case 0x3: /*rsb */
4680 result = operand2 - operand1;
4681 break;
4682
4683 case 0x4: /*add */
4684 result = operand1 + operand2;
4685 break;
4686
4687 case 0x5: /*adc */
4688 result = operand1 + operand2 + c;
4689 break;
4690
4691 case 0x6: /*sbc */
4692 result = operand1 - operand2 + c;
4693 break;
4694
4695 case 0x7: /*rsc */
4696 result = operand2 - operand1 + c;
4697 break;
4698
4699 case 0x8:
4700 case 0x9:
4701 case 0xa:
4702 case 0xb: /* tst, teq, cmp, cmn */
4703 result = (unsigned long) nextpc;
4704 break;
4705
4706 case 0xc: /*orr */
4707 result = operand1 | operand2;
4708 break;
4709
4710 case 0xd: /*mov */
4711 /* Always step into a function. */
4712 result = operand2;
4713 break;
4714
4715 case 0xe: /*bic */
4716 result = operand1 & ~operand2;
4717 break;
4718
4719 case 0xf: /*mvn */
4720 result = ~operand2;
4721 break;
4722 }
4723
4724 /* In 26-bit APCS the bottom two bits of the result are
4725 ignored, and we always end up in ARM state. */
4726 if (!arm_apcs_32)
4727 nextpc = arm_addr_bits_remove (gdbarch, result);
4728 else
4729 nextpc = result;
4730
4731 break;
4732 }
4733
4734 case 0x4:
4735 case 0x5: /* data transfer */
4736 case 0x6:
4737 case 0x7:
4738 if (bit (this_instr, 20))
4739 {
4740 /* load */
4741 if (bits (this_instr, 12, 15) == 15)
4742 {
4743 /* rd == pc */
4744 unsigned long rn;
4745 unsigned long base;
4746
4747 if (bit (this_instr, 22))
4748 error (_("Invalid update to pc in instruction"));
4749
4750 /* byte write to PC */
4751 rn = bits (this_instr, 16, 19);
4752 base = ((rn == ARM_PC_REGNUM)
4753 ? (pc_val + 8)
4754 : get_frame_register_unsigned (frame, rn));
4755
4756 if (bit (this_instr, 24))
4757 {
4758 /* pre-indexed */
4759 int c = (status & FLAG_C) ? 1 : 0;
4760 unsigned long offset =
4761 (bit (this_instr, 25)
4762 ? shifted_reg_val (frame, this_instr, c, pc_val, status)
4763 : bits (this_instr, 0, 11));
4764
4765 if (bit (this_instr, 23))
4766 base += offset;
4767 else
4768 base -= offset;
4769 }
4770 nextpc =
4771 (CORE_ADDR) read_memory_unsigned_integer ((CORE_ADDR) base,
4772 4, byte_order);
4773 }
4774 }
4775 break;
4776
4777 case 0x8:
4778 case 0x9: /* block transfer */
4779 if (bit (this_instr, 20))
4780 {
4781 /* LDM */
4782 if (bit (this_instr, 15))
4783 {
4784 /* loading pc */
4785 int offset = 0;
4786 unsigned long rn_val
4787 = get_frame_register_unsigned (frame,
4788 bits (this_instr, 16, 19));
4789
4790 if (bit (this_instr, 23))
4791 {
4792 /* up */
4793 unsigned long reglist = bits (this_instr, 0, 14);
4794 offset = bitcount (reglist) * 4;
4795 if (bit (this_instr, 24)) /* pre */
4796 offset += 4;
4797 }
4798 else if (bit (this_instr, 24))
4799 offset = -4;
4800
4801 nextpc =
4802 (CORE_ADDR) read_memory_unsigned_integer ((CORE_ADDR)
4803 (rn_val + offset),
4804 4, byte_order);
4805 }
4806 }
4807 break;
4808
4809 case 0xb: /* branch & link */
4810 case 0xa: /* branch */
4811 {
4812 nextpc = BranchDest (pc, this_instr);
4813 break;
4814 }
4815
4816 case 0xc:
4817 case 0xd:
4818 case 0xe: /* coproc ops */
4819 break;
4820 case 0xf: /* SWI */
4821 {
4822 struct gdbarch_tdep *tdep;
4823 tdep = gdbarch_tdep (gdbarch);
4824
4825 if (tdep->syscall_next_pc != NULL)
4826 nextpc = tdep->syscall_next_pc (frame);
4827
4828 }
4829 break;
4830
4831 default:
4832 fprintf_filtered (gdb_stderr, _("Bad bit-field extraction\n"));
4833 return (pc);
4834 }
4835 }
4836
4837 return nextpc;
4838 }
4839
4840 /* Determine next PC after current instruction executes. Will call either
4841 arm_get_next_pc_raw or thumb_get_next_pc_raw. Error out if infinite
4842 loop is detected. */
4843
4844 CORE_ADDR
4845 arm_get_next_pc (struct frame_info *frame, CORE_ADDR pc)
4846 {
4847 CORE_ADDR nextpc;
4848
4849 if (arm_frame_is_thumb (frame))
4850 {
4851 nextpc = thumb_get_next_pc_raw (frame, pc);
4852 if (nextpc == MAKE_THUMB_ADDR (pc))
4853 error (_("Infinite loop detected"));
4854 }
4855 else
4856 {
4857 nextpc = arm_get_next_pc_raw (frame, pc);
4858 if (nextpc == pc)
4859 error (_("Infinite loop detected"));
4860 }
4861
4862 return nextpc;
4863 }
4864
4865 /* Like insert_single_step_breakpoint, but make sure we use a breakpoint
4866 of the appropriate mode (as encoded in the PC value), even if this
4867 differs from what would be expected according to the symbol tables. */
4868
4869 void
4870 arm_insert_single_step_breakpoint (struct gdbarch *gdbarch,
4871 struct address_space *aspace,
4872 CORE_ADDR pc)
4873 {
4874 struct cleanup *old_chain
4875 = make_cleanup_restore_integer (&arm_override_mode);
4876
4877 arm_override_mode = IS_THUMB_ADDR (pc);
4878 pc = gdbarch_addr_bits_remove (gdbarch, pc);
4879
4880 insert_single_step_breakpoint (gdbarch, aspace, pc);
4881
4882 do_cleanups (old_chain);
4883 }
4884
4885 /* Checks for an atomic sequence of instructions beginning with a LDREX{,B,H,D}
4886 instruction and ending with a STREX{,B,H,D} instruction. If such a sequence
4887 is found, attempt to step through it. A breakpoint is placed at the end of
4888 the sequence. */
4889
4890 static int
4891 thumb_deal_with_atomic_sequence_raw (struct frame_info *frame)
4892 {
4893 struct gdbarch *gdbarch = get_frame_arch (frame);
4894 struct address_space *aspace = get_frame_address_space (frame);
4895 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
4896 CORE_ADDR pc = get_frame_pc (frame);
4897 CORE_ADDR breaks[2] = {-1, -1};
4898 CORE_ADDR loc = pc;
4899 unsigned short insn1, insn2;
4900 int insn_count;
4901 int index;
4902 int last_breakpoint = 0; /* Defaults to 0 (no breakpoints placed). */
4903 const int atomic_sequence_length = 16; /* Instruction sequence length. */
4904 ULONGEST status, itstate;
4905
4906 /* We currently do not support atomic sequences within an IT block. */
4907 status = get_frame_register_unsigned (frame, ARM_PS_REGNUM);
4908 itstate = ((status >> 8) & 0xfc) | ((status >> 25) & 0x3);
4909 if (itstate & 0x0f)
4910 return 0;
4911
4912 /* Assume all atomic sequences start with a ldrex{,b,h,d} instruction. */
4913 insn1 = read_memory_unsigned_integer (loc, 2, byte_order_for_code);
4914 loc += 2;
4915 if (thumb_insn_size (insn1) != 4)
4916 return 0;
4917
4918 insn2 = read_memory_unsigned_integer (loc, 2, byte_order_for_code);
4919 loc += 2;
4920 if (!((insn1 & 0xfff0) == 0xe850
4921 || ((insn1 & 0xfff0) == 0xe8d0 && (insn2 & 0x00c0) == 0x0040)))
4922 return 0;
4923
4924 /* Assume that no atomic sequence is longer than "atomic_sequence_length"
4925 instructions. */
4926 for (insn_count = 0; insn_count < atomic_sequence_length; ++insn_count)
4927 {
4928 insn1 = read_memory_unsigned_integer (loc, 2, byte_order_for_code);
4929 loc += 2;
4930
4931 if (thumb_insn_size (insn1) != 4)
4932 {
4933 /* Assume that there is at most one conditional branch in the
4934 atomic sequence. If a conditional branch is found, put a
4935 breakpoint in its destination address. */
4936 if ((insn1 & 0xf000) == 0xd000 && bits (insn1, 8, 11) != 0x0f)
4937 {
4938 if (last_breakpoint > 0)
4939 return 0; /* More than one conditional branch found,
4940 fallback to the standard code. */
4941
4942 breaks[1] = loc + 2 + (sbits (insn1, 0, 7) << 1);
4943 last_breakpoint++;
4944 }
4945
4946 /* We do not support atomic sequences that use any *other*
4947 instructions but conditional branches to change the PC.
4948 Fall back to standard code to avoid losing control of
4949 execution. */
4950 else if (thumb_instruction_changes_pc (insn1))
4951 return 0;
4952 }
4953 else
4954 {
4955 insn2 = read_memory_unsigned_integer (loc, 2, byte_order_for_code);
4956 loc += 2;
4957
4958 /* Assume that there is at most one conditional branch in the
4959 atomic sequence. If a conditional branch is found, put a
4960 breakpoint in its destination address. */
4961 if ((insn1 & 0xf800) == 0xf000
4962 && (insn2 & 0xd000) == 0x8000
4963 && (insn1 & 0x0380) != 0x0380)
4964 {
4965 int sign, j1, j2, imm1, imm2;
4966 unsigned int offset;
4967
4968 sign = sbits (insn1, 10, 10);
4969 imm1 = bits (insn1, 0, 5);
4970 imm2 = bits (insn2, 0, 10);
4971 j1 = bit (insn2, 13);
4972 j2 = bit (insn2, 11);
4973
4974 offset = (sign << 20) + (j2 << 19) + (j1 << 18);
4975 offset += (imm1 << 12) + (imm2 << 1);
4976
4977 if (last_breakpoint > 0)
4978 return 0; /* More than one conditional branch found,
4979 fallback to the standard code. */
4980
4981 breaks[1] = loc + offset;
4982 last_breakpoint++;
4983 }
4984
4985 /* We do not support atomic sequences that use any *other*
4986 instructions but conditional branches to change the PC.
4987 Fall back to standard code to avoid losing control of
4988 execution. */
4989 else if (thumb2_instruction_changes_pc (insn1, insn2))
4990 return 0;
4991
4992 /* If we find a strex{,b,h,d}, we're done. */
4993 if ((insn1 & 0xfff0) == 0xe840
4994 || ((insn1 & 0xfff0) == 0xe8c0 && (insn2 & 0x00c0) == 0x0040))
4995 break;
4996 }
4997 }
4998
4999 /* If we didn't find the strex{,b,h,d}, we cannot handle the sequence. */
5000 if (insn_count == atomic_sequence_length)
5001 return 0;
5002
5003 /* Insert a breakpoint right after the end of the atomic sequence. */
5004 breaks[0] = loc;
5005
5006 /* Check for duplicated breakpoints. Check also for a breakpoint
5007 placed (branch instruction's destination) anywhere in sequence. */
5008 if (last_breakpoint
5009 && (breaks[1] == breaks[0]
5010 || (breaks[1] >= pc && breaks[1] < loc)))
5011 last_breakpoint = 0;
5012
5013 /* Effectively inserts the breakpoints. */
5014 for (index = 0; index <= last_breakpoint; index++)
5015 arm_insert_single_step_breakpoint (gdbarch, aspace,
5016 MAKE_THUMB_ADDR (breaks[index]));
5017
5018 return 1;
5019 }
5020
5021 static int
5022 arm_deal_with_atomic_sequence_raw (struct frame_info *frame)
5023 {
5024 struct gdbarch *gdbarch = get_frame_arch (frame);
5025 struct address_space *aspace = get_frame_address_space (frame);
5026 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
5027 CORE_ADDR pc = get_frame_pc (frame);
5028 CORE_ADDR breaks[2] = {-1, -1};
5029 CORE_ADDR loc = pc;
5030 unsigned int insn;
5031 int insn_count;
5032 int index;
5033 int last_breakpoint = 0; /* Defaults to 0 (no breakpoints placed). */
5034 const int atomic_sequence_length = 16; /* Instruction sequence length. */
5035
5036 /* Assume all atomic sequences start with a ldrex{,b,h,d} instruction.
5037 Note that we do not currently support conditionally executed atomic
5038 instructions. */
5039 insn = read_memory_unsigned_integer (loc, 4, byte_order_for_code);
5040 loc += 4;
5041 if ((insn & 0xff9000f0) != 0xe1900090)
5042 return 0;
5043
5044 /* Assume that no atomic sequence is longer than "atomic_sequence_length"
5045 instructions. */
5046 for (insn_count = 0; insn_count < atomic_sequence_length; ++insn_count)
5047 {
5048 insn = read_memory_unsigned_integer (loc, 4, byte_order_for_code);
5049 loc += 4;
5050
5051 /* Assume that there is at most one conditional branch in the atomic
5052 sequence. If a conditional branch is found, put a breakpoint in
5053 its destination address. */
5054 if (bits (insn, 24, 27) == 0xa)
5055 {
5056 if (last_breakpoint > 0)
5057 return 0; /* More than one conditional branch found, fallback
5058 to the standard single-step code. */
5059
5060 breaks[1] = BranchDest (loc - 4, insn);
5061 last_breakpoint++;
5062 }
5063
5064 /* We do not support atomic sequences that use any *other* instructions
5065 but conditional branches to change the PC. Fall back to standard
5066 code to avoid losing control of execution. */
5067 else if (arm_instruction_changes_pc (insn))
5068 return 0;
5069
5070 /* If we find a strex{,b,h,d}, we're done. */
5071 if ((insn & 0xff9000f0) == 0xe1800090)
5072 break;
5073 }
5074
5075 /* If we didn't find the strex{,b,h,d}, we cannot handle the sequence. */
5076 if (insn_count == atomic_sequence_length)
5077 return 0;
5078
5079 /* Insert a breakpoint right after the end of the atomic sequence. */
5080 breaks[0] = loc;
5081
5082 /* Check for duplicated breakpoints. Check also for a breakpoint
5083 placed (branch instruction's destination) anywhere in sequence. */
5084 if (last_breakpoint
5085 && (breaks[1] == breaks[0]
5086 || (breaks[1] >= pc && breaks[1] < loc)))
5087 last_breakpoint = 0;
5088
5089 /* Effectively inserts the breakpoints. */
5090 for (index = 0; index <= last_breakpoint; index++)
5091 arm_insert_single_step_breakpoint (gdbarch, aspace, breaks[index]);
5092
5093 return 1;
5094 }
5095
5096 int
5097 arm_deal_with_atomic_sequence (struct frame_info *frame)
5098 {
5099 if (arm_frame_is_thumb (frame))
5100 return thumb_deal_with_atomic_sequence_raw (frame);
5101 else
5102 return arm_deal_with_atomic_sequence_raw (frame);
5103 }
5104
5105 /* single_step() is called just before we want to resume the inferior,
5106 if we want to single-step it but there is no hardware or kernel
5107 single-step support. We find the target of the coming instruction
5108 and breakpoint it. */
5109
5110 int
5111 arm_software_single_step (struct frame_info *frame)
5112 {
5113 struct gdbarch *gdbarch = get_frame_arch (frame);
5114 struct address_space *aspace = get_frame_address_space (frame);
5115 CORE_ADDR next_pc;
5116
5117 if (arm_deal_with_atomic_sequence (frame))
5118 return 1;
5119
5120 next_pc = arm_get_next_pc (frame, get_frame_pc (frame));
5121 arm_insert_single_step_breakpoint (gdbarch, aspace, next_pc);
5122
5123 return 1;
5124 }
5125
5126 /* Given BUF, which is OLD_LEN bytes ending at ENDADDR, expand
5127 the buffer to be NEW_LEN bytes ending at ENDADDR. Return
5128 NULL if an error occurs. BUF is freed. */
5129
5130 static gdb_byte *
5131 extend_buffer_earlier (gdb_byte *buf, CORE_ADDR endaddr,
5132 int old_len, int new_len)
5133 {
5134 gdb_byte *new_buf, *middle;
5135 int bytes_to_read = new_len - old_len;
5136
5137 new_buf = xmalloc (new_len);
5138 memcpy (new_buf + bytes_to_read, buf, old_len);
5139 xfree (buf);
5140 if (target_read_memory (endaddr - new_len, new_buf, bytes_to_read) != 0)
5141 {
5142 xfree (new_buf);
5143 return NULL;
5144 }
5145 return new_buf;
5146 }
5147
5148 /* An IT block is at most the 2-byte IT instruction followed by
5149 four 4-byte instructions. The furthest back we must search to
5150 find an IT block that affects the current instruction is thus
5151 2 + 3 * 4 == 14 bytes. */
5152 #define MAX_IT_BLOCK_PREFIX 14
5153
5154 /* Use a quick scan if there are more than this many bytes of
5155 code. */
5156 #define IT_SCAN_THRESHOLD 32
5157
5158 /* Adjust a breakpoint's address to move breakpoints out of IT blocks.
5159 A breakpoint in an IT block may not be hit, depending on the
5160 condition flags. */
5161 static CORE_ADDR
5162 arm_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
5163 {
5164 gdb_byte *buf;
5165 char map_type;
5166 CORE_ADDR boundary, func_start;
5167 int buf_len, buf2_len;
5168 enum bfd_endian order = gdbarch_byte_order_for_code (gdbarch);
5169 int i, any, last_it, last_it_count;
5170
5171 /* If we are using BKPT breakpoints, none of this is necessary. */
5172 if (gdbarch_tdep (gdbarch)->thumb2_breakpoint == NULL)
5173 return bpaddr;
5174
5175 /* ARM mode does not have this problem. */
5176 if (!arm_pc_is_thumb (gdbarch, bpaddr))
5177 return bpaddr;
5178
5179 /* We are setting a breakpoint in Thumb code that could potentially
5180 contain an IT block. The first step is to find how much Thumb
5181 code there is; we do not need to read outside of known Thumb
5182 sequences. */
5183 map_type = arm_find_mapping_symbol (bpaddr, &boundary);
5184 if (map_type == 0)
5185 /* Thumb-2 code must have mapping symbols to have a chance. */
5186 return bpaddr;
5187
5188 bpaddr = gdbarch_addr_bits_remove (gdbarch, bpaddr);
5189
5190 if (find_pc_partial_function (bpaddr, NULL, &func_start, NULL)
5191 && func_start > boundary)
5192 boundary = func_start;
5193
5194 /* Search for a candidate IT instruction. We have to do some fancy
5195 footwork to distinguish a real IT instruction from the second
5196 half of a 32-bit instruction, but there is no need for that if
5197 there's no candidate. */
5198 buf_len = min (bpaddr - boundary, MAX_IT_BLOCK_PREFIX);
5199 if (buf_len == 0)
5200 /* No room for an IT instruction. */
5201 return bpaddr;
5202
5203 buf = xmalloc (buf_len);
5204 if (target_read_memory (bpaddr - buf_len, buf, buf_len) != 0)
5205 return bpaddr;
5206 any = 0;
5207 for (i = 0; i < buf_len; i += 2)
5208 {
5209 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
5210 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
5211 {
5212 any = 1;
5213 break;
5214 }
5215 }
5216 if (any == 0)
5217 {
5218 xfree (buf);
5219 return bpaddr;
5220 }
5221
5222 /* OK, the code bytes before this instruction contain at least one
5223 halfword which resembles an IT instruction. We know that it's
5224 Thumb code, but there are still two possibilities. Either the
5225 halfword really is an IT instruction, or it is the second half of
5226 a 32-bit Thumb instruction. The only way we can tell is to
5227 scan forwards from a known instruction boundary. */
5228 if (bpaddr - boundary > IT_SCAN_THRESHOLD)
5229 {
5230 int definite;
5231
5232 /* There's a lot of code before this instruction. Start with an
5233 optimistic search; it's easy to recognize halfwords that can
5234 not be the start of a 32-bit instruction, and use that to
5235 lock on to the instruction boundaries. */
5236 buf = extend_buffer_earlier (buf, bpaddr, buf_len, IT_SCAN_THRESHOLD);
5237 if (buf == NULL)
5238 return bpaddr;
5239 buf_len = IT_SCAN_THRESHOLD;
5240
5241 definite = 0;
5242 for (i = 0; i < buf_len - sizeof (buf) && ! definite; i += 2)
5243 {
5244 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
5245 if (thumb_insn_size (inst1) == 2)
5246 {
5247 definite = 1;
5248 break;
5249 }
5250 }
5251
5252 /* At this point, if DEFINITE, BUF[I] is the first place we
5253 are sure that we know the instruction boundaries, and it is far
5254 enough from BPADDR that we could not miss an IT instruction
5255 affecting BPADDR. If ! DEFINITE, give up - start from a
5256 known boundary. */
5257 if (! definite)
5258 {
5259 buf = extend_buffer_earlier (buf, bpaddr, buf_len,
5260 bpaddr - boundary);
5261 if (buf == NULL)
5262 return bpaddr;
5263 buf_len = bpaddr - boundary;
5264 i = 0;
5265 }
5266 }
5267 else
5268 {
5269 buf = extend_buffer_earlier (buf, bpaddr, buf_len, bpaddr - boundary);
5270 if (buf == NULL)
5271 return bpaddr;
5272 buf_len = bpaddr - boundary;
5273 i = 0;
5274 }
5275
5276 /* Scan forwards. Find the last IT instruction before BPADDR. */
5277 last_it = -1;
5278 last_it_count = 0;
5279 while (i < buf_len)
5280 {
5281 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
5282 last_it_count--;
5283 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
5284 {
5285 last_it = i;
5286 if (inst1 & 0x0001)
5287 last_it_count = 4;
5288 else if (inst1 & 0x0002)
5289 last_it_count = 3;
5290 else if (inst1 & 0x0004)
5291 last_it_count = 2;
5292 else
5293 last_it_count = 1;
5294 }
5295 i += thumb_insn_size (inst1);
5296 }
5297
5298 xfree (buf);
5299
5300 if (last_it == -1)
5301 /* There wasn't really an IT instruction after all. */
5302 return bpaddr;
5303
5304 if (last_it_count < 1)
5305 /* It was too far away. */
5306 return bpaddr;
5307
5308 /* This really is a trouble spot. Move the breakpoint to the IT
5309 instruction. */
5310 return bpaddr - buf_len + last_it;
5311 }
5312
5313 /* ARM displaced stepping support.
5314
5315 Generally ARM displaced stepping works as follows:
5316
5317 1. When an instruction is to be single-stepped, it is first decoded by
5318 arm_process_displaced_insn (called from arm_displaced_step_copy_insn).
5319 Depending on the type of instruction, it is then copied to a scratch
5320 location, possibly in a modified form. The copy_* set of functions
5321 performs such modification, as necessary. A breakpoint is placed after
5322 the modified instruction in the scratch space to return control to GDB.
5323 Note in particular that instructions which modify the PC will no longer
5324 do so after modification.
5325
5326 2. The instruction is single-stepped, by setting the PC to the scratch
5327 location address, and resuming. Control returns to GDB when the
5328 breakpoint is hit.
5329
5330 3. A cleanup function (cleanup_*) is called corresponding to the copy_*
5331 function used for the current instruction. This function's job is to
5332 put the CPU/memory state back to what it would have been if the
5333 instruction had been executed unmodified in its original location. */
5334
5335 /* NOP instruction (mov r0, r0). */
5336 #define ARM_NOP 0xe1a00000
5337 #define THUMB_NOP 0x4600
5338
5339 /* Helper for register reads for displaced stepping. In particular, this
5340 returns the PC as it would be seen by the instruction at its original
5341 location. */
5342
5343 ULONGEST
5344 displaced_read_reg (struct regcache *regs, struct displaced_step_closure *dsc,
5345 int regno)
5346 {
5347 ULONGEST ret;
5348 CORE_ADDR from = dsc->insn_addr;
5349
5350 if (regno == ARM_PC_REGNUM)
5351 {
5352 /* Compute pipeline offset:
5353 - When executing an ARM instruction, PC reads as the address of the
5354 current instruction plus 8.
5355 - When executing a Thumb instruction, PC reads as the address of the
5356 current instruction plus 4. */
5357
5358 if (!dsc->is_thumb)
5359 from += 8;
5360 else
5361 from += 4;
5362
5363 if (debug_displaced)
5364 fprintf_unfiltered (gdb_stdlog, "displaced: read pc value %.8lx\n",
5365 (unsigned long) from);
5366 return (ULONGEST) from;
5367 }
5368 else
5369 {
5370 regcache_cooked_read_unsigned (regs, regno, &ret);
5371 if (debug_displaced)
5372 fprintf_unfiltered (gdb_stdlog, "displaced: read r%d value %.8lx\n",
5373 regno, (unsigned long) ret);
5374 return ret;
5375 }
5376 }
5377
5378 static int
5379 displaced_in_arm_mode (struct regcache *regs)
5380 {
5381 ULONGEST ps;
5382 ULONGEST t_bit = arm_psr_thumb_bit (get_regcache_arch (regs));
5383
5384 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
5385
5386 return (ps & t_bit) == 0;
5387 }
5388
5389 /* Write to the PC as from a branch instruction. */
5390
5391 static void
5392 branch_write_pc (struct regcache *regs, struct displaced_step_closure *dsc,
5393 ULONGEST val)
5394 {
5395 if (!dsc->is_thumb)
5396 /* Note: If bits 0/1 are set, this branch would be unpredictable for
5397 architecture versions < 6. */
5398 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
5399 val & ~(ULONGEST) 0x3);
5400 else
5401 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
5402 val & ~(ULONGEST) 0x1);
5403 }
5404
5405 /* Write to the PC as from a branch-exchange instruction. */
5406
5407 static void
5408 bx_write_pc (struct regcache *regs, ULONGEST val)
5409 {
5410 ULONGEST ps;
5411 ULONGEST t_bit = arm_psr_thumb_bit (get_regcache_arch (regs));
5412
5413 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
5414
5415 if ((val & 1) == 1)
5416 {
5417 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps | t_bit);
5418 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffe);
5419 }
5420 else if ((val & 2) == 0)
5421 {
5422 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
5423 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val);
5424 }
5425 else
5426 {
5427 /* Unpredictable behaviour. Try to do something sensible (switch to ARM
5428 mode, align dest to 4 bytes). */
5429 warning (_("Single-stepping BX to non-word-aligned ARM instruction."));
5430 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
5431 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffc);
5432 }
5433 }
5434
5435 /* Write to the PC as if from a load instruction. */
5436
5437 static void
5438 load_write_pc (struct regcache *regs, struct displaced_step_closure *dsc,
5439 ULONGEST val)
5440 {
5441 if (DISPLACED_STEPPING_ARCH_VERSION >= 5)
5442 bx_write_pc (regs, val);
5443 else
5444 branch_write_pc (regs, dsc, val);
5445 }
5446
5447 /* Write to the PC as if from an ALU instruction. */
5448
5449 static void
5450 alu_write_pc (struct regcache *regs, struct displaced_step_closure *dsc,
5451 ULONGEST val)
5452 {
5453 if (DISPLACED_STEPPING_ARCH_VERSION >= 7 && !dsc->is_thumb)
5454 bx_write_pc (regs, val);
5455 else
5456 branch_write_pc (regs, dsc, val);
5457 }
5458
5459 /* Helper for writing to registers for displaced stepping. Writing to the PC
5460 has a varying effects depending on the instruction which does the write:
5461 this is controlled by the WRITE_PC argument. */
5462
5463 void
5464 displaced_write_reg (struct regcache *regs, struct displaced_step_closure *dsc,
5465 int regno, ULONGEST val, enum pc_write_style write_pc)
5466 {
5467 if (regno == ARM_PC_REGNUM)
5468 {
5469 if (debug_displaced)
5470 fprintf_unfiltered (gdb_stdlog, "displaced: writing pc %.8lx\n",
5471 (unsigned long) val);
5472 switch (write_pc)
5473 {
5474 case BRANCH_WRITE_PC:
5475 branch_write_pc (regs, dsc, val);
5476 break;
5477
5478 case BX_WRITE_PC:
5479 bx_write_pc (regs, val);
5480 break;
5481
5482 case LOAD_WRITE_PC:
5483 load_write_pc (regs, dsc, val);
5484 break;
5485
5486 case ALU_WRITE_PC:
5487 alu_write_pc (regs, dsc, val);
5488 break;
5489
5490 case CANNOT_WRITE_PC:
5491 warning (_("Instruction wrote to PC in an unexpected way when "
5492 "single-stepping"));
5493 break;
5494
5495 default:
5496 internal_error (__FILE__, __LINE__,
5497 _("Invalid argument to displaced_write_reg"));
5498 }
5499
5500 dsc->wrote_to_pc = 1;
5501 }
5502 else
5503 {
5504 if (debug_displaced)
5505 fprintf_unfiltered (gdb_stdlog, "displaced: writing r%d value %.8lx\n",
5506 regno, (unsigned long) val);
5507 regcache_cooked_write_unsigned (regs, regno, val);
5508 }
5509 }
5510
5511 /* This function is used to concisely determine if an instruction INSN
5512 references PC. Register fields of interest in INSN should have the
5513 corresponding fields of BITMASK set to 0b1111. The function
5514 returns return 1 if any of these fields in INSN reference the PC
5515 (also 0b1111, r15), else it returns 0. */
5516
5517 static int
5518 insn_references_pc (uint32_t insn, uint32_t bitmask)
5519 {
5520 uint32_t lowbit = 1;
5521
5522 while (bitmask != 0)
5523 {
5524 uint32_t mask;
5525
5526 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1)
5527 ;
5528
5529 if (!lowbit)
5530 break;
5531
5532 mask = lowbit * 0xf;
5533
5534 if ((insn & mask) == mask)
5535 return 1;
5536
5537 bitmask &= ~mask;
5538 }
5539
5540 return 0;
5541 }
5542
5543 /* The simplest copy function. Many instructions have the same effect no
5544 matter what address they are executed at: in those cases, use this. */
5545
5546 static int
5547 arm_copy_unmodified (struct gdbarch *gdbarch, uint32_t insn,
5548 const char *iname, struct displaced_step_closure *dsc)
5549 {
5550 if (debug_displaced)
5551 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx, "
5552 "opcode/class '%s' unmodified\n", (unsigned long) insn,
5553 iname);
5554
5555 dsc->modinsn[0] = insn;
5556
5557 return 0;
5558 }
5559
5560 static int
5561 thumb_copy_unmodified_32bit (struct gdbarch *gdbarch, uint16_t insn1,
5562 uint16_t insn2, const char *iname,
5563 struct displaced_step_closure *dsc)
5564 {
5565 if (debug_displaced)
5566 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x %.4x, "
5567 "opcode/class '%s' unmodified\n", insn1, insn2,
5568 iname);
5569
5570 dsc->modinsn[0] = insn1;
5571 dsc->modinsn[1] = insn2;
5572 dsc->numinsns = 2;
5573
5574 return 0;
5575 }
5576
5577 /* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
5578 modification. */
5579 static int
5580 thumb_copy_unmodified_16bit (struct gdbarch *gdbarch, unsigned int insn,
5581 const char *iname,
5582 struct displaced_step_closure *dsc)
5583 {
5584 if (debug_displaced)
5585 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x, "
5586 "opcode/class '%s' unmodified\n", insn,
5587 iname);
5588
5589 dsc->modinsn[0] = insn;
5590
5591 return 0;
5592 }
5593
5594 /* Preload instructions with immediate offset. */
5595
5596 static void
5597 cleanup_preload (struct gdbarch *gdbarch,
5598 struct regcache *regs, struct displaced_step_closure *dsc)
5599 {
5600 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5601 if (!dsc->u.preload.immed)
5602 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5603 }
5604
5605 static void
5606 install_preload (struct gdbarch *gdbarch, struct regcache *regs,
5607 struct displaced_step_closure *dsc, unsigned int rn)
5608 {
5609 ULONGEST rn_val;
5610 /* Preload instructions:
5611
5612 {pli/pld} [rn, #+/-imm]
5613 ->
5614 {pli/pld} [r0, #+/-imm]. */
5615
5616 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5617 rn_val = displaced_read_reg (regs, dsc, rn);
5618 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
5619 dsc->u.preload.immed = 1;
5620
5621 dsc->cleanup = &cleanup_preload;
5622 }
5623
5624 static int
5625 arm_copy_preload (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
5626 struct displaced_step_closure *dsc)
5627 {
5628 unsigned int rn = bits (insn, 16, 19);
5629
5630 if (!insn_references_pc (insn, 0x000f0000ul))
5631 return arm_copy_unmodified (gdbarch, insn, "preload", dsc);
5632
5633 if (debug_displaced)
5634 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
5635 (unsigned long) insn);
5636
5637 dsc->modinsn[0] = insn & 0xfff0ffff;
5638
5639 install_preload (gdbarch, regs, dsc, rn);
5640
5641 return 0;
5642 }
5643
5644 static int
5645 thumb2_copy_preload (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
5646 struct regcache *regs, struct displaced_step_closure *dsc)
5647 {
5648 unsigned int rn = bits (insn1, 0, 3);
5649 unsigned int u_bit = bit (insn1, 7);
5650 int imm12 = bits (insn2, 0, 11);
5651 ULONGEST pc_val;
5652
5653 if (rn != ARM_PC_REGNUM)
5654 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "preload", dsc);
5655
5656 /* PC is only allowed to use in PLI (immediate,literal) Encoding T3, and
5657 PLD (literal) Encoding T1. */
5658 if (debug_displaced)
5659 fprintf_unfiltered (gdb_stdlog,
5660 "displaced: copying pld/pli pc (0x%x) %c imm12 %.4x\n",
5661 (unsigned int) dsc->insn_addr, u_bit ? '+' : '-',
5662 imm12);
5663
5664 if (!u_bit)
5665 imm12 = -1 * imm12;
5666
5667 /* Rewrite instruction {pli/pld} PC imm12 into:
5668 Prepare: tmp[0] <- r0, tmp[1] <- r1, r0 <- pc, r1 <- imm12
5669
5670 {pli/pld} [r0, r1]
5671
5672 Cleanup: r0 <- tmp[0], r1 <- tmp[1]. */
5673
5674 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5675 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5676
5677 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
5678
5679 displaced_write_reg (regs, dsc, 0, pc_val, CANNOT_WRITE_PC);
5680 displaced_write_reg (regs, dsc, 1, imm12, CANNOT_WRITE_PC);
5681 dsc->u.preload.immed = 0;
5682
5683 /* {pli/pld} [r0, r1] */
5684 dsc->modinsn[0] = insn1 & 0xfff0;
5685 dsc->modinsn[1] = 0xf001;
5686 dsc->numinsns = 2;
5687
5688 dsc->cleanup = &cleanup_preload;
5689 return 0;
5690 }
5691
5692 /* Preload instructions with register offset. */
5693
5694 static void
5695 install_preload_reg(struct gdbarch *gdbarch, struct regcache *regs,
5696 struct displaced_step_closure *dsc, unsigned int rn,
5697 unsigned int rm)
5698 {
5699 ULONGEST rn_val, rm_val;
5700
5701 /* Preload register-offset instructions:
5702
5703 {pli/pld} [rn, rm {, shift}]
5704 ->
5705 {pli/pld} [r0, r1 {, shift}]. */
5706
5707 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5708 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5709 rn_val = displaced_read_reg (regs, dsc, rn);
5710 rm_val = displaced_read_reg (regs, dsc, rm);
5711 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
5712 displaced_write_reg (regs, dsc, 1, rm_val, CANNOT_WRITE_PC);
5713 dsc->u.preload.immed = 0;
5714
5715 dsc->cleanup = &cleanup_preload;
5716 }
5717
5718 static int
5719 arm_copy_preload_reg (struct gdbarch *gdbarch, uint32_t insn,
5720 struct regcache *regs,
5721 struct displaced_step_closure *dsc)
5722 {
5723 unsigned int rn = bits (insn, 16, 19);
5724 unsigned int rm = bits (insn, 0, 3);
5725
5726
5727 if (!insn_references_pc (insn, 0x000f000ful))
5728 return arm_copy_unmodified (gdbarch, insn, "preload reg", dsc);
5729
5730 if (debug_displaced)
5731 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
5732 (unsigned long) insn);
5733
5734 dsc->modinsn[0] = (insn & 0xfff0fff0) | 0x1;
5735
5736 install_preload_reg (gdbarch, regs, dsc, rn, rm);
5737 return 0;
5738 }
5739
5740 /* Copy/cleanup coprocessor load and store instructions. */
5741
5742 static void
5743 cleanup_copro_load_store (struct gdbarch *gdbarch,
5744 struct regcache *regs,
5745 struct displaced_step_closure *dsc)
5746 {
5747 ULONGEST rn_val = displaced_read_reg (regs, dsc, 0);
5748
5749 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5750
5751 if (dsc->u.ldst.writeback)
5752 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, LOAD_WRITE_PC);
5753 }
5754
5755 static void
5756 install_copro_load_store (struct gdbarch *gdbarch, struct regcache *regs,
5757 struct displaced_step_closure *dsc,
5758 int writeback, unsigned int rn)
5759 {
5760 ULONGEST rn_val;
5761
5762 /* Coprocessor load/store instructions:
5763
5764 {stc/stc2} [<Rn>, #+/-imm] (and other immediate addressing modes)
5765 ->
5766 {stc/stc2} [r0, #+/-imm].
5767
5768 ldc/ldc2 are handled identically. */
5769
5770 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5771 rn_val = displaced_read_reg (regs, dsc, rn);
5772 /* PC should be 4-byte aligned. */
5773 rn_val = rn_val & 0xfffffffc;
5774 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
5775
5776 dsc->u.ldst.writeback = writeback;
5777 dsc->u.ldst.rn = rn;
5778
5779 dsc->cleanup = &cleanup_copro_load_store;
5780 }
5781
5782 static int
5783 arm_copy_copro_load_store (struct gdbarch *gdbarch, uint32_t insn,
5784 struct regcache *regs,
5785 struct displaced_step_closure *dsc)
5786 {
5787 unsigned int rn = bits (insn, 16, 19);
5788
5789 if (!insn_references_pc (insn, 0x000f0000ul))
5790 return arm_copy_unmodified (gdbarch, insn, "copro load/store", dsc);
5791
5792 if (debug_displaced)
5793 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
5794 "load/store insn %.8lx\n", (unsigned long) insn);
5795
5796 dsc->modinsn[0] = insn & 0xfff0ffff;
5797
5798 install_copro_load_store (gdbarch, regs, dsc, bit (insn, 25), rn);
5799
5800 return 0;
5801 }
5802
5803 static int
5804 thumb2_copy_copro_load_store (struct gdbarch *gdbarch, uint16_t insn1,
5805 uint16_t insn2, struct regcache *regs,
5806 struct displaced_step_closure *dsc)
5807 {
5808 unsigned int rn = bits (insn1, 0, 3);
5809
5810 if (rn != ARM_PC_REGNUM)
5811 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
5812 "copro load/store", dsc);
5813
5814 if (debug_displaced)
5815 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
5816 "load/store insn %.4x%.4x\n", insn1, insn2);
5817
5818 dsc->modinsn[0] = insn1 & 0xfff0;
5819 dsc->modinsn[1] = insn2;
5820 dsc->numinsns = 2;
5821
5822 /* This function is called for copying instruction LDC/LDC2/VLDR, which
5823 doesn't support writeback, so pass 0. */
5824 install_copro_load_store (gdbarch, regs, dsc, 0, rn);
5825
5826 return 0;
5827 }
5828
5829 /* Clean up branch instructions (actually perform the branch, by setting
5830 PC). */
5831
5832 static void
5833 cleanup_branch (struct gdbarch *gdbarch, struct regcache *regs,
5834 struct displaced_step_closure *dsc)
5835 {
5836 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
5837 int branch_taken = condition_true (dsc->u.branch.cond, status);
5838 enum pc_write_style write_pc = dsc->u.branch.exchange
5839 ? BX_WRITE_PC : BRANCH_WRITE_PC;
5840
5841 if (!branch_taken)
5842 return;
5843
5844 if (dsc->u.branch.link)
5845 {
5846 /* The value of LR should be the next insn of current one. In order
5847 not to confuse logic hanlding later insn `bx lr', if current insn mode
5848 is Thumb, the bit 0 of LR value should be set to 1. */
5849 ULONGEST next_insn_addr = dsc->insn_addr + dsc->insn_size;
5850
5851 if (dsc->is_thumb)
5852 next_insn_addr |= 0x1;
5853
5854 displaced_write_reg (regs, dsc, ARM_LR_REGNUM, next_insn_addr,
5855 CANNOT_WRITE_PC);
5856 }
5857
5858 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->u.branch.dest, write_pc);
5859 }
5860
5861 /* Copy B/BL/BLX instructions with immediate destinations. */
5862
5863 static void
5864 install_b_bl_blx (struct gdbarch *gdbarch, struct regcache *regs,
5865 struct displaced_step_closure *dsc,
5866 unsigned int cond, int exchange, int link, long offset)
5867 {
5868 /* Implement "BL<cond> <label>" as:
5869
5870 Preparation: cond <- instruction condition
5871 Insn: mov r0, r0 (nop)
5872 Cleanup: if (condition true) { r14 <- pc; pc <- label }.
5873
5874 B<cond> similar, but don't set r14 in cleanup. */
5875
5876 dsc->u.branch.cond = cond;
5877 dsc->u.branch.link = link;
5878 dsc->u.branch.exchange = exchange;
5879
5880 dsc->u.branch.dest = dsc->insn_addr;
5881 if (link && exchange)
5882 /* For BLX, offset is computed from the Align (PC, 4). */
5883 dsc->u.branch.dest = dsc->u.branch.dest & 0xfffffffc;
5884
5885 if (dsc->is_thumb)
5886 dsc->u.branch.dest += 4 + offset;
5887 else
5888 dsc->u.branch.dest += 8 + offset;
5889
5890 dsc->cleanup = &cleanup_branch;
5891 }
5892 static int
5893 arm_copy_b_bl_blx (struct gdbarch *gdbarch, uint32_t insn,
5894 struct regcache *regs, struct displaced_step_closure *dsc)
5895 {
5896 unsigned int cond = bits (insn, 28, 31);
5897 int exchange = (cond == 0xf);
5898 int link = exchange || bit (insn, 24);
5899 long offset;
5900
5901 if (debug_displaced)
5902 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s immediate insn "
5903 "%.8lx\n", (exchange) ? "blx" : (link) ? "bl" : "b",
5904 (unsigned long) insn);
5905 if (exchange)
5906 /* For BLX, set bit 0 of the destination. The cleanup_branch function will
5907 then arrange the switch into Thumb mode. */
5908 offset = (bits (insn, 0, 23) << 2) | (bit (insn, 24) << 1) | 1;
5909 else
5910 offset = bits (insn, 0, 23) << 2;
5911
5912 if (bit (offset, 25))
5913 offset = offset | ~0x3ffffff;
5914
5915 dsc->modinsn[0] = ARM_NOP;
5916
5917 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
5918 return 0;
5919 }
5920
5921 static int
5922 thumb2_copy_b_bl_blx (struct gdbarch *gdbarch, uint16_t insn1,
5923 uint16_t insn2, struct regcache *regs,
5924 struct displaced_step_closure *dsc)
5925 {
5926 int link = bit (insn2, 14);
5927 int exchange = link && !bit (insn2, 12);
5928 int cond = INST_AL;
5929 long offset = 0;
5930 int j1 = bit (insn2, 13);
5931 int j2 = bit (insn2, 11);
5932 int s = sbits (insn1, 10, 10);
5933 int i1 = !(j1 ^ bit (insn1, 10));
5934 int i2 = !(j2 ^ bit (insn1, 10));
5935
5936 if (!link && !exchange) /* B */
5937 {
5938 offset = (bits (insn2, 0, 10) << 1);
5939 if (bit (insn2, 12)) /* Encoding T4 */
5940 {
5941 offset |= (bits (insn1, 0, 9) << 12)
5942 | (i2 << 22)
5943 | (i1 << 23)
5944 | (s << 24);
5945 cond = INST_AL;
5946 }
5947 else /* Encoding T3 */
5948 {
5949 offset |= (bits (insn1, 0, 5) << 12)
5950 | (j1 << 18)
5951 | (j2 << 19)
5952 | (s << 20);
5953 cond = bits (insn1, 6, 9);
5954 }
5955 }
5956 else
5957 {
5958 offset = (bits (insn1, 0, 9) << 12);
5959 offset |= ((i2 << 22) | (i1 << 23) | (s << 24));
5960 offset |= exchange ?
5961 (bits (insn2, 1, 10) << 2) : (bits (insn2, 0, 10) << 1);
5962 }
5963
5964 if (debug_displaced)
5965 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s insn "
5966 "%.4x %.4x with offset %.8lx\n",
5967 link ? (exchange) ? "blx" : "bl" : "b",
5968 insn1, insn2, offset);
5969
5970 dsc->modinsn[0] = THUMB_NOP;
5971
5972 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
5973 return 0;
5974 }
5975
5976 /* Copy B Thumb instructions. */
5977 static int
5978 thumb_copy_b (struct gdbarch *gdbarch, unsigned short insn,
5979 struct displaced_step_closure *dsc)
5980 {
5981 unsigned int cond = 0;
5982 int offset = 0;
5983 unsigned short bit_12_15 = bits (insn, 12, 15);
5984 CORE_ADDR from = dsc->insn_addr;
5985
5986 if (bit_12_15 == 0xd)
5987 {
5988 /* offset = SignExtend (imm8:0, 32) */
5989 offset = sbits ((insn << 1), 0, 8);
5990 cond = bits (insn, 8, 11);
5991 }
5992 else if (bit_12_15 == 0xe) /* Encoding T2 */
5993 {
5994 offset = sbits ((insn << 1), 0, 11);
5995 cond = INST_AL;
5996 }
5997
5998 if (debug_displaced)
5999 fprintf_unfiltered (gdb_stdlog,
6000 "displaced: copying b immediate insn %.4x "
6001 "with offset %d\n", insn, offset);
6002
6003 dsc->u.branch.cond = cond;
6004 dsc->u.branch.link = 0;
6005 dsc->u.branch.exchange = 0;
6006 dsc->u.branch.dest = from + 4 + offset;
6007
6008 dsc->modinsn[0] = THUMB_NOP;
6009
6010 dsc->cleanup = &cleanup_branch;
6011
6012 return 0;
6013 }
6014
6015 /* Copy BX/BLX with register-specified destinations. */
6016
6017 static void
6018 install_bx_blx_reg (struct gdbarch *gdbarch, struct regcache *regs,
6019 struct displaced_step_closure *dsc, int link,
6020 unsigned int cond, unsigned int rm)
6021 {
6022 /* Implement {BX,BLX}<cond> <reg>" as:
6023
6024 Preparation: cond <- instruction condition
6025 Insn: mov r0, r0 (nop)
6026 Cleanup: if (condition true) { r14 <- pc; pc <- dest; }.
6027
6028 Don't set r14 in cleanup for BX. */
6029
6030 dsc->u.branch.dest = displaced_read_reg (regs, dsc, rm);
6031
6032 dsc->u.branch.cond = cond;
6033 dsc->u.branch.link = link;
6034
6035 dsc->u.branch.exchange = 1;
6036
6037 dsc->cleanup = &cleanup_branch;
6038 }
6039
6040 static int
6041 arm_copy_bx_blx_reg (struct gdbarch *gdbarch, uint32_t insn,
6042 struct regcache *regs, struct displaced_step_closure *dsc)
6043 {
6044 unsigned int cond = bits (insn, 28, 31);
6045 /* BX: x12xxx1x
6046 BLX: x12xxx3x. */
6047 int link = bit (insn, 5);
6048 unsigned int rm = bits (insn, 0, 3);
6049
6050 if (debug_displaced)
6051 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx",
6052 (unsigned long) insn);
6053
6054 dsc->modinsn[0] = ARM_NOP;
6055
6056 install_bx_blx_reg (gdbarch, regs, dsc, link, cond, rm);
6057 return 0;
6058 }
6059
6060 static int
6061 thumb_copy_bx_blx_reg (struct gdbarch *gdbarch, uint16_t insn,
6062 struct regcache *regs,
6063 struct displaced_step_closure *dsc)
6064 {
6065 int link = bit (insn, 7);
6066 unsigned int rm = bits (insn, 3, 6);
6067
6068 if (debug_displaced)
6069 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x",
6070 (unsigned short) insn);
6071
6072 dsc->modinsn[0] = THUMB_NOP;
6073
6074 install_bx_blx_reg (gdbarch, regs, dsc, link, INST_AL, rm);
6075
6076 return 0;
6077 }
6078
6079
6080 /* Copy/cleanup arithmetic/logic instruction with immediate RHS. */
6081
6082 static void
6083 cleanup_alu_imm (struct gdbarch *gdbarch,
6084 struct regcache *regs, struct displaced_step_closure *dsc)
6085 {
6086 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
6087 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
6088 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
6089 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
6090 }
6091
6092 static int
6093 arm_copy_alu_imm (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
6094 struct displaced_step_closure *dsc)
6095 {
6096 unsigned int rn = bits (insn, 16, 19);
6097 unsigned int rd = bits (insn, 12, 15);
6098 unsigned int op = bits (insn, 21, 24);
6099 int is_mov = (op == 0xd);
6100 ULONGEST rd_val, rn_val;
6101
6102 if (!insn_references_pc (insn, 0x000ff000ul))
6103 return arm_copy_unmodified (gdbarch, insn, "ALU immediate", dsc);
6104
6105 if (debug_displaced)
6106 fprintf_unfiltered (gdb_stdlog, "displaced: copying immediate %s insn "
6107 "%.8lx\n", is_mov ? "move" : "ALU",
6108 (unsigned long) insn);
6109
6110 /* Instruction is of form:
6111
6112 <op><cond> rd, [rn,] #imm
6113
6114 Rewrite as:
6115
6116 Preparation: tmp1, tmp2 <- r0, r1;
6117 r0, r1 <- rd, rn
6118 Insn: <op><cond> r0, r1, #imm
6119 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
6120 */
6121
6122 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6123 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
6124 rn_val = displaced_read_reg (regs, dsc, rn);
6125 rd_val = displaced_read_reg (regs, dsc, rd);
6126 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
6127 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
6128 dsc->rd = rd;
6129
6130 if (is_mov)
6131 dsc->modinsn[0] = insn & 0xfff00fff;
6132 else
6133 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x10000;
6134
6135 dsc->cleanup = &cleanup_alu_imm;
6136
6137 return 0;
6138 }
6139
6140 static int
6141 thumb2_copy_alu_imm (struct gdbarch *gdbarch, uint16_t insn1,
6142 uint16_t insn2, struct regcache *regs,
6143 struct displaced_step_closure *dsc)
6144 {
6145 unsigned int op = bits (insn1, 5, 8);
6146 unsigned int rn, rm, rd;
6147 ULONGEST rd_val, rn_val;
6148
6149 rn = bits (insn1, 0, 3); /* Rn */
6150 rm = bits (insn2, 0, 3); /* Rm */
6151 rd = bits (insn2, 8, 11); /* Rd */
6152
6153 /* This routine is only called for instruction MOV. */
6154 gdb_assert (op == 0x2 && rn == 0xf);
6155
6156 if (rm != ARM_PC_REGNUM && rd != ARM_PC_REGNUM)
6157 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ALU imm", dsc);
6158
6159 if (debug_displaced)
6160 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.4x%.4x\n",
6161 "ALU", insn1, insn2);
6162
6163 /* Instruction is of form:
6164
6165 <op><cond> rd, [rn,] #imm
6166
6167 Rewrite as:
6168
6169 Preparation: tmp1, tmp2 <- r0, r1;
6170 r0, r1 <- rd, rn
6171 Insn: <op><cond> r0, r1, #imm
6172 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
6173 */
6174
6175 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6176 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
6177 rn_val = displaced_read_reg (regs, dsc, rn);
6178 rd_val = displaced_read_reg (regs, dsc, rd);
6179 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
6180 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
6181 dsc->rd = rd;
6182
6183 dsc->modinsn[0] = insn1;
6184 dsc->modinsn[1] = ((insn2 & 0xf0f0) | 0x1);
6185 dsc->numinsns = 2;
6186
6187 dsc->cleanup = &cleanup_alu_imm;
6188
6189 return 0;
6190 }
6191
6192 /* Copy/cleanup arithmetic/logic insns with register RHS. */
6193
6194 static void
6195 cleanup_alu_reg (struct gdbarch *gdbarch,
6196 struct regcache *regs, struct displaced_step_closure *dsc)
6197 {
6198 ULONGEST rd_val;
6199 int i;
6200
6201 rd_val = displaced_read_reg (regs, dsc, 0);
6202
6203 for (i = 0; i < 3; i++)
6204 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
6205
6206 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
6207 }
6208
6209 static void
6210 install_alu_reg (struct gdbarch *gdbarch, struct regcache *regs,
6211 struct displaced_step_closure *dsc,
6212 unsigned int rd, unsigned int rn, unsigned int rm)
6213 {
6214 ULONGEST rd_val, rn_val, rm_val;
6215
6216 /* Instruction is of form:
6217
6218 <op><cond> rd, [rn,] rm [, <shift>]
6219
6220 Rewrite as:
6221
6222 Preparation: tmp1, tmp2, tmp3 <- r0, r1, r2;
6223 r0, r1, r2 <- rd, rn, rm
6224 Insn: <op><cond> r0, r1, r2 [, <shift>]
6225 Cleanup: rd <- r0; r0, r1, r2 <- tmp1, tmp2, tmp3
6226 */
6227
6228 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6229 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
6230 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
6231 rd_val = displaced_read_reg (regs, dsc, rd);
6232 rn_val = displaced_read_reg (regs, dsc, rn);
6233 rm_val = displaced_read_reg (regs, dsc, rm);
6234 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
6235 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
6236 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
6237 dsc->rd = rd;
6238
6239 dsc->cleanup = &cleanup_alu_reg;
6240 }
6241
6242 static int
6243 arm_copy_alu_reg (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
6244 struct displaced_step_closure *dsc)
6245 {
6246 unsigned int op = bits (insn, 21, 24);
6247 int is_mov = (op == 0xd);
6248
6249 if (!insn_references_pc (insn, 0x000ff00ful))
6250 return arm_copy_unmodified (gdbarch, insn, "ALU reg", dsc);
6251
6252 if (debug_displaced)
6253 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.8lx\n",
6254 is_mov ? "move" : "ALU", (unsigned long) insn);
6255
6256 if (is_mov)
6257 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x2;
6258 else
6259 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x10002;
6260
6261 install_alu_reg (gdbarch, regs, dsc, bits (insn, 12, 15), bits (insn, 16, 19),
6262 bits (insn, 0, 3));
6263 return 0;
6264 }
6265
6266 static int
6267 thumb_copy_alu_reg (struct gdbarch *gdbarch, uint16_t insn,
6268 struct regcache *regs,
6269 struct displaced_step_closure *dsc)
6270 {
6271 unsigned rn, rm, rd;
6272
6273 rd = bits (insn, 3, 6);
6274 rn = (bit (insn, 7) << 3) | bits (insn, 0, 2);
6275 rm = 2;
6276
6277 if (rd != ARM_PC_REGNUM && rn != ARM_PC_REGNUM)
6278 return thumb_copy_unmodified_16bit (gdbarch, insn, "ALU reg", dsc);
6279
6280 if (debug_displaced)
6281 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.4x\n",
6282 "ALU", (unsigned short) insn);
6283
6284 dsc->modinsn[0] = ((insn & 0xff00) | 0x08);
6285
6286 install_alu_reg (gdbarch, regs, dsc, rd, rn, rm);
6287
6288 return 0;
6289 }
6290
6291 /* Cleanup/copy arithmetic/logic insns with shifted register RHS. */
6292
6293 static void
6294 cleanup_alu_shifted_reg (struct gdbarch *gdbarch,
6295 struct regcache *regs,
6296 struct displaced_step_closure *dsc)
6297 {
6298 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
6299 int i;
6300
6301 for (i = 0; i < 4; i++)
6302 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
6303
6304 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
6305 }
6306
6307 static void
6308 install_alu_shifted_reg (struct gdbarch *gdbarch, struct regcache *regs,
6309 struct displaced_step_closure *dsc,
6310 unsigned int rd, unsigned int rn, unsigned int rm,
6311 unsigned rs)
6312 {
6313 int i;
6314 ULONGEST rd_val, rn_val, rm_val, rs_val;
6315
6316 /* Instruction is of form:
6317
6318 <op><cond> rd, [rn,] rm, <shift> rs
6319
6320 Rewrite as:
6321
6322 Preparation: tmp1, tmp2, tmp3, tmp4 <- r0, r1, r2, r3
6323 r0, r1, r2, r3 <- rd, rn, rm, rs
6324 Insn: <op><cond> r0, r1, r2, <shift> r3
6325 Cleanup: tmp5 <- r0
6326 r0, r1, r2, r3 <- tmp1, tmp2, tmp3, tmp4
6327 rd <- tmp5
6328 */
6329
6330 for (i = 0; i < 4; i++)
6331 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
6332
6333 rd_val = displaced_read_reg (regs, dsc, rd);
6334 rn_val = displaced_read_reg (regs, dsc, rn);
6335 rm_val = displaced_read_reg (regs, dsc, rm);
6336 rs_val = displaced_read_reg (regs, dsc, rs);
6337 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
6338 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
6339 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
6340 displaced_write_reg (regs, dsc, 3, rs_val, CANNOT_WRITE_PC);
6341 dsc->rd = rd;
6342 dsc->cleanup = &cleanup_alu_shifted_reg;
6343 }
6344
6345 static int
6346 arm_copy_alu_shifted_reg (struct gdbarch *gdbarch, uint32_t insn,
6347 struct regcache *regs,
6348 struct displaced_step_closure *dsc)
6349 {
6350 unsigned int op = bits (insn, 21, 24);
6351 int is_mov = (op == 0xd);
6352 unsigned int rd, rn, rm, rs;
6353
6354 if (!insn_references_pc (insn, 0x000fff0ful))
6355 return arm_copy_unmodified (gdbarch, insn, "ALU shifted reg", dsc);
6356
6357 if (debug_displaced)
6358 fprintf_unfiltered (gdb_stdlog, "displaced: copying shifted reg %s insn "
6359 "%.8lx\n", is_mov ? "move" : "ALU",
6360 (unsigned long) insn);
6361
6362 rn = bits (insn, 16, 19);
6363 rm = bits (insn, 0, 3);
6364 rs = bits (insn, 8, 11);
6365 rd = bits (insn, 12, 15);
6366
6367 if (is_mov)
6368 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x302;
6369 else
6370 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x10302;
6371
6372 install_alu_shifted_reg (gdbarch, regs, dsc, rd, rn, rm, rs);
6373
6374 return 0;
6375 }
6376
6377 /* Clean up load instructions. */
6378
6379 static void
6380 cleanup_load (struct gdbarch *gdbarch, struct regcache *regs,
6381 struct displaced_step_closure *dsc)
6382 {
6383 ULONGEST rt_val, rt_val2 = 0, rn_val;
6384
6385 rt_val = displaced_read_reg (regs, dsc, 0);
6386 if (dsc->u.ldst.xfersize == 8)
6387 rt_val2 = displaced_read_reg (regs, dsc, 1);
6388 rn_val = displaced_read_reg (regs, dsc, 2);
6389
6390 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
6391 if (dsc->u.ldst.xfersize > 4)
6392 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
6393 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
6394 if (!dsc->u.ldst.immed)
6395 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
6396
6397 /* Handle register writeback. */
6398 if (dsc->u.ldst.writeback)
6399 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
6400 /* Put result in right place. */
6401 displaced_write_reg (regs, dsc, dsc->rd, rt_val, LOAD_WRITE_PC);
6402 if (dsc->u.ldst.xfersize == 8)
6403 displaced_write_reg (regs, dsc, dsc->rd + 1, rt_val2, LOAD_WRITE_PC);
6404 }
6405
6406 /* Clean up store instructions. */
6407
6408 static void
6409 cleanup_store (struct gdbarch *gdbarch, struct regcache *regs,
6410 struct displaced_step_closure *dsc)
6411 {
6412 ULONGEST rn_val = displaced_read_reg (regs, dsc, 2);
6413
6414 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
6415 if (dsc->u.ldst.xfersize > 4)
6416 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
6417 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
6418 if (!dsc->u.ldst.immed)
6419 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
6420 if (!dsc->u.ldst.restore_r4)
6421 displaced_write_reg (regs, dsc, 4, dsc->tmp[4], CANNOT_WRITE_PC);
6422
6423 /* Writeback. */
6424 if (dsc->u.ldst.writeback)
6425 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
6426 }
6427
6428 /* Copy "extra" load/store instructions. These are halfword/doubleword
6429 transfers, which have a different encoding to byte/word transfers. */
6430
6431 static int
6432 arm_copy_extra_ld_st (struct gdbarch *gdbarch, uint32_t insn, int unpriveleged,
6433 struct regcache *regs, struct displaced_step_closure *dsc)
6434 {
6435 unsigned int op1 = bits (insn, 20, 24);
6436 unsigned int op2 = bits (insn, 5, 6);
6437 unsigned int rt = bits (insn, 12, 15);
6438 unsigned int rn = bits (insn, 16, 19);
6439 unsigned int rm = bits (insn, 0, 3);
6440 char load[12] = {0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1};
6441 char bytesize[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2};
6442 int immed = (op1 & 0x4) != 0;
6443 int opcode;
6444 ULONGEST rt_val, rt_val2 = 0, rn_val, rm_val = 0;
6445
6446 if (!insn_references_pc (insn, 0x000ff00ful))
6447 return arm_copy_unmodified (gdbarch, insn, "extra load/store", dsc);
6448
6449 if (debug_displaced)
6450 fprintf_unfiltered (gdb_stdlog, "displaced: copying %sextra load/store "
6451 "insn %.8lx\n", unpriveleged ? "unpriveleged " : "",
6452 (unsigned long) insn);
6453
6454 opcode = ((op2 << 2) | (op1 & 0x1) | ((op1 & 0x4) >> 1)) - 4;
6455
6456 if (opcode < 0)
6457 internal_error (__FILE__, __LINE__,
6458 _("copy_extra_ld_st: instruction decode error"));
6459
6460 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6461 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
6462 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
6463 if (!immed)
6464 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
6465
6466 rt_val = displaced_read_reg (regs, dsc, rt);
6467 if (bytesize[opcode] == 8)
6468 rt_val2 = displaced_read_reg (regs, dsc, rt + 1);
6469 rn_val = displaced_read_reg (regs, dsc, rn);
6470 if (!immed)
6471 rm_val = displaced_read_reg (regs, dsc, rm);
6472
6473 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
6474 if (bytesize[opcode] == 8)
6475 displaced_write_reg (regs, dsc, 1, rt_val2, CANNOT_WRITE_PC);
6476 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
6477 if (!immed)
6478 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
6479
6480 dsc->rd = rt;
6481 dsc->u.ldst.xfersize = bytesize[opcode];
6482 dsc->u.ldst.rn = rn;
6483 dsc->u.ldst.immed = immed;
6484 dsc->u.ldst.writeback = bit (insn, 24) == 0 || bit (insn, 21) != 0;
6485 dsc->u.ldst.restore_r4 = 0;
6486
6487 if (immed)
6488 /* {ldr,str}<width><cond> rt, [rt2,] [rn, #imm]
6489 ->
6490 {ldr,str}<width><cond> r0, [r1,] [r2, #imm]. */
6491 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
6492 else
6493 /* {ldr,str}<width><cond> rt, [rt2,] [rn, +/-rm]
6494 ->
6495 {ldr,str}<width><cond> r0, [r1,] [r2, +/-r3]. */
6496 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
6497
6498 dsc->cleanup = load[opcode] ? &cleanup_load : &cleanup_store;
6499
6500 return 0;
6501 }
6502
6503 /* Copy byte/half word/word loads and stores. */
6504
6505 static void
6506 install_load_store (struct gdbarch *gdbarch, struct regcache *regs,
6507 struct displaced_step_closure *dsc, int load,
6508 int immed, int writeback, int size, int usermode,
6509 int rt, int rm, int rn)
6510 {
6511 ULONGEST rt_val, rn_val, rm_val = 0;
6512
6513 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6514 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
6515 if (!immed)
6516 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
6517 if (!load)
6518 dsc->tmp[4] = displaced_read_reg (regs, dsc, 4);
6519
6520 rt_val = displaced_read_reg (regs, dsc, rt);
6521 rn_val = displaced_read_reg (regs, dsc, rn);
6522 if (!immed)
6523 rm_val = displaced_read_reg (regs, dsc, rm);
6524
6525 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
6526 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
6527 if (!immed)
6528 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
6529 dsc->rd = rt;
6530 dsc->u.ldst.xfersize = size;
6531 dsc->u.ldst.rn = rn;
6532 dsc->u.ldst.immed = immed;
6533 dsc->u.ldst.writeback = writeback;
6534
6535 /* To write PC we can do:
6536
6537 Before this sequence of instructions:
6538 r0 is the PC value got from displaced_read_reg, so r0 = from + 8;
6539 r2 is the Rn value got from dispalced_read_reg.
6540
6541 Insn1: push {pc} Write address of STR instruction + offset on stack
6542 Insn2: pop {r4} Read it back from stack, r4 = addr(Insn1) + offset
6543 Insn3: sub r4, r4, pc r4 = addr(Insn1) + offset - pc
6544 = addr(Insn1) + offset - addr(Insn3) - 8
6545 = offset - 16
6546 Insn4: add r4, r4, #8 r4 = offset - 8
6547 Insn5: add r0, r0, r4 r0 = from + 8 + offset - 8
6548 = from + offset
6549 Insn6: str r0, [r2, #imm] (or str r0, [r2, r3])
6550
6551 Otherwise we don't know what value to write for PC, since the offset is
6552 architecture-dependent (sometimes PC+8, sometimes PC+12). More details
6553 of this can be found in Section "Saving from r15" in
6554 http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
6555
6556 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
6557 }
6558
6559
6560 static int
6561 thumb2_copy_load_literal (struct gdbarch *gdbarch, uint16_t insn1,
6562 uint16_t insn2, struct regcache *regs,
6563 struct displaced_step_closure *dsc, int size)
6564 {
6565 unsigned int u_bit = bit (insn1, 7);
6566 unsigned int rt = bits (insn2, 12, 15);
6567 int imm12 = bits (insn2, 0, 11);
6568 ULONGEST pc_val;
6569
6570 if (debug_displaced)
6571 fprintf_unfiltered (gdb_stdlog,
6572 "displaced: copying ldr pc (0x%x) R%d %c imm12 %.4x\n",
6573 (unsigned int) dsc->insn_addr, rt, u_bit ? '+' : '-',
6574 imm12);
6575
6576 if (!u_bit)
6577 imm12 = -1 * imm12;
6578
6579 /* Rewrite instruction LDR Rt imm12 into:
6580
6581 Prepare: tmp[0] <- r0, tmp[1] <- r2, tmp[2] <- r3, r2 <- pc, r3 <- imm12
6582
6583 LDR R0, R2, R3,
6584
6585 Cleanup: rt <- r0, r0 <- tmp[0], r2 <- tmp[1], r3 <- tmp[2]. */
6586
6587
6588 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
6589 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
6590 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
6591
6592 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
6593
6594 pc_val = pc_val & 0xfffffffc;
6595
6596 displaced_write_reg (regs, dsc, 2, pc_val, CANNOT_WRITE_PC);
6597 displaced_write_reg (regs, dsc, 3, imm12, CANNOT_WRITE_PC);
6598
6599 dsc->rd = rt;
6600
6601 dsc->u.ldst.xfersize = size;
6602 dsc->u.ldst.immed = 0;
6603 dsc->u.ldst.writeback = 0;
6604 dsc->u.ldst.restore_r4 = 0;
6605
6606 /* LDR R0, R2, R3 */
6607 dsc->modinsn[0] = 0xf852;
6608 dsc->modinsn[1] = 0x3;
6609 dsc->numinsns = 2;
6610
6611 dsc->cleanup = &cleanup_load;
6612
6613 return 0;
6614 }
6615
6616 static int
6617 thumb2_copy_load_reg_imm (struct gdbarch *gdbarch, uint16_t insn1,
6618 uint16_t insn2, struct regcache *regs,
6619 struct displaced_step_closure *dsc,
6620 int writeback, int immed)
6621 {
6622 unsigned int rt = bits (insn2, 12, 15);
6623 unsigned int rn = bits (insn1, 0, 3);
6624 unsigned int rm = bits (insn2, 0, 3); /* Only valid if !immed. */
6625 /* In LDR (register), there is also a register Rm, which is not allowed to
6626 be PC, so we don't have to check it. */
6627
6628 if (rt != ARM_PC_REGNUM && rn != ARM_PC_REGNUM)
6629 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "load",
6630 dsc);
6631
6632 if (debug_displaced)
6633 fprintf_unfiltered (gdb_stdlog,
6634 "displaced: copying ldr r%d [r%d] insn %.4x%.4x\n",
6635 rt, rn, insn1, insn2);
6636
6637 install_load_store (gdbarch, regs, dsc, 1, immed, writeback, 4,
6638 0, rt, rm, rn);
6639
6640 dsc->u.ldst.restore_r4 = 0;
6641
6642 if (immed)
6643 /* ldr[b]<cond> rt, [rn, #imm], etc.
6644 ->
6645 ldr[b]<cond> r0, [r2, #imm]. */
6646 {
6647 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
6648 dsc->modinsn[1] = insn2 & 0x0fff;
6649 }
6650 else
6651 /* ldr[b]<cond> rt, [rn, rm], etc.
6652 ->
6653 ldr[b]<cond> r0, [r2, r3]. */
6654 {
6655 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
6656 dsc->modinsn[1] = (insn2 & 0x0ff0) | 0x3;
6657 }
6658
6659 dsc->numinsns = 2;
6660
6661 return 0;
6662 }
6663
6664
6665 static int
6666 arm_copy_ldr_str_ldrb_strb (struct gdbarch *gdbarch, uint32_t insn,
6667 struct regcache *regs,
6668 struct displaced_step_closure *dsc,
6669 int load, int size, int usermode)
6670 {
6671 int immed = !bit (insn, 25);
6672 int writeback = (bit (insn, 24) == 0 || bit (insn, 21) != 0);
6673 unsigned int rt = bits (insn, 12, 15);
6674 unsigned int rn = bits (insn, 16, 19);
6675 unsigned int rm = bits (insn, 0, 3); /* Only valid if !immed. */
6676
6677 if (!insn_references_pc (insn, 0x000ff00ful))
6678 return arm_copy_unmodified (gdbarch, insn, "load/store", dsc);
6679
6680 if (debug_displaced)
6681 fprintf_unfiltered (gdb_stdlog,
6682 "displaced: copying %s%s r%d [r%d] insn %.8lx\n",
6683 load ? (size == 1 ? "ldrb" : "ldr")
6684 : (size == 1 ? "strb" : "str"), usermode ? "t" : "",
6685 rt, rn,
6686 (unsigned long) insn);
6687
6688 install_load_store (gdbarch, regs, dsc, load, immed, writeback, size,
6689 usermode, rt, rm, rn);
6690
6691 if (load || rt != ARM_PC_REGNUM)
6692 {
6693 dsc->u.ldst.restore_r4 = 0;
6694
6695 if (immed)
6696 /* {ldr,str}[b]<cond> rt, [rn, #imm], etc.
6697 ->
6698 {ldr,str}[b]<cond> r0, [r2, #imm]. */
6699 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
6700 else
6701 /* {ldr,str}[b]<cond> rt, [rn, rm], etc.
6702 ->
6703 {ldr,str}[b]<cond> r0, [r2, r3]. */
6704 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
6705 }
6706 else
6707 {
6708 /* We need to use r4 as scratch. Make sure it's restored afterwards. */
6709 dsc->u.ldst.restore_r4 = 1;
6710 dsc->modinsn[0] = 0xe92d8000; /* push {pc} */
6711 dsc->modinsn[1] = 0xe8bd0010; /* pop {r4} */
6712 dsc->modinsn[2] = 0xe044400f; /* sub r4, r4, pc. */
6713 dsc->modinsn[3] = 0xe2844008; /* add r4, r4, #8. */
6714 dsc->modinsn[4] = 0xe0800004; /* add r0, r0, r4. */
6715
6716 /* As above. */
6717 if (immed)
6718 dsc->modinsn[5] = (insn & 0xfff00fff) | 0x20000;
6719 else
6720 dsc->modinsn[5] = (insn & 0xfff00ff0) | 0x20003;
6721
6722 dsc->numinsns = 6;
6723 }
6724
6725 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
6726
6727 return 0;
6728 }
6729
6730 /* Cleanup LDM instructions with fully-populated register list. This is an
6731 unfortunate corner case: it's impossible to implement correctly by modifying
6732 the instruction. The issue is as follows: we have an instruction,
6733
6734 ldm rN, {r0-r15}
6735
6736 which we must rewrite to avoid loading PC. A possible solution would be to
6737 do the load in two halves, something like (with suitable cleanup
6738 afterwards):
6739
6740 mov r8, rN
6741 ldm[id][ab] r8!, {r0-r7}
6742 str r7, <temp>
6743 ldm[id][ab] r8, {r7-r14}
6744 <bkpt>
6745
6746 but at present there's no suitable place for <temp>, since the scratch space
6747 is overwritten before the cleanup routine is called. For now, we simply
6748 emulate the instruction. */
6749
6750 static void
6751 cleanup_block_load_all (struct gdbarch *gdbarch, struct regcache *regs,
6752 struct displaced_step_closure *dsc)
6753 {
6754 int inc = dsc->u.block.increment;
6755 int bump_before = dsc->u.block.before ? (inc ? 4 : -4) : 0;
6756 int bump_after = dsc->u.block.before ? 0 : (inc ? 4 : -4);
6757 uint32_t regmask = dsc->u.block.regmask;
6758 int regno = inc ? 0 : 15;
6759 CORE_ADDR xfer_addr = dsc->u.block.xfer_addr;
6760 int exception_return = dsc->u.block.load && dsc->u.block.user
6761 && (regmask & 0x8000) != 0;
6762 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
6763 int do_transfer = condition_true (dsc->u.block.cond, status);
6764 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
6765
6766 if (!do_transfer)
6767 return;
6768
6769 /* If the instruction is ldm rN, {...pc}^, I don't think there's anything
6770 sensible we can do here. Complain loudly. */
6771 if (exception_return)
6772 error (_("Cannot single-step exception return"));
6773
6774 /* We don't handle any stores here for now. */
6775 gdb_assert (dsc->u.block.load != 0);
6776
6777 if (debug_displaced)
6778 fprintf_unfiltered (gdb_stdlog, "displaced: emulating block transfer: "
6779 "%s %s %s\n", dsc->u.block.load ? "ldm" : "stm",
6780 dsc->u.block.increment ? "inc" : "dec",
6781 dsc->u.block.before ? "before" : "after");
6782
6783 while (regmask)
6784 {
6785 uint32_t memword;
6786
6787 if (inc)
6788 while (regno <= ARM_PC_REGNUM && (regmask & (1 << regno)) == 0)
6789 regno++;
6790 else
6791 while (regno >= 0 && (regmask & (1 << regno)) == 0)
6792 regno--;
6793
6794 xfer_addr += bump_before;
6795
6796 memword = read_memory_unsigned_integer (xfer_addr, 4, byte_order);
6797 displaced_write_reg (regs, dsc, regno, memword, LOAD_WRITE_PC);
6798
6799 xfer_addr += bump_after;
6800
6801 regmask &= ~(1 << regno);
6802 }
6803
6804 if (dsc->u.block.writeback)
6805 displaced_write_reg (regs, dsc, dsc->u.block.rn, xfer_addr,
6806 CANNOT_WRITE_PC);
6807 }
6808
6809 /* Clean up an STM which included the PC in the register list. */
6810
6811 static void
6812 cleanup_block_store_pc (struct gdbarch *gdbarch, struct regcache *regs,
6813 struct displaced_step_closure *dsc)
6814 {
6815 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
6816 int store_executed = condition_true (dsc->u.block.cond, status);
6817 CORE_ADDR pc_stored_at, transferred_regs = bitcount (dsc->u.block.regmask);
6818 CORE_ADDR stm_insn_addr;
6819 uint32_t pc_val;
6820 long offset;
6821 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
6822
6823 /* If condition code fails, there's nothing else to do. */
6824 if (!store_executed)
6825 return;
6826
6827 if (dsc->u.block.increment)
6828 {
6829 pc_stored_at = dsc->u.block.xfer_addr + 4 * transferred_regs;
6830
6831 if (dsc->u.block.before)
6832 pc_stored_at += 4;
6833 }
6834 else
6835 {
6836 pc_stored_at = dsc->u.block.xfer_addr;
6837
6838 if (dsc->u.block.before)
6839 pc_stored_at -= 4;
6840 }
6841
6842 pc_val = read_memory_unsigned_integer (pc_stored_at, 4, byte_order);
6843 stm_insn_addr = dsc->scratch_base;
6844 offset = pc_val - stm_insn_addr;
6845
6846 if (debug_displaced)
6847 fprintf_unfiltered (gdb_stdlog, "displaced: detected PC offset %.8lx for "
6848 "STM instruction\n", offset);
6849
6850 /* Rewrite the stored PC to the proper value for the non-displaced original
6851 instruction. */
6852 write_memory_unsigned_integer (pc_stored_at, 4, byte_order,
6853 dsc->insn_addr + offset);
6854 }
6855
6856 /* Clean up an LDM which includes the PC in the register list. We clumped all
6857 the registers in the transferred list into a contiguous range r0...rX (to
6858 avoid loading PC directly and losing control of the debugged program), so we
6859 must undo that here. */
6860
6861 static void
6862 cleanup_block_load_pc (struct gdbarch *gdbarch,
6863 struct regcache *regs,
6864 struct displaced_step_closure *dsc)
6865 {
6866 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
6867 int load_executed = condition_true (dsc->u.block.cond, status), i;
6868 unsigned int mask = dsc->u.block.regmask, write_reg = ARM_PC_REGNUM;
6869 unsigned int regs_loaded = bitcount (mask);
6870 unsigned int num_to_shuffle = regs_loaded, clobbered;
6871
6872 /* The method employed here will fail if the register list is fully populated
6873 (we need to avoid loading PC directly). */
6874 gdb_assert (num_to_shuffle < 16);
6875
6876 if (!load_executed)
6877 return;
6878
6879 clobbered = (1 << num_to_shuffle) - 1;
6880
6881 while (num_to_shuffle > 0)
6882 {
6883 if ((mask & (1 << write_reg)) != 0)
6884 {
6885 unsigned int read_reg = num_to_shuffle - 1;
6886
6887 if (read_reg != write_reg)
6888 {
6889 ULONGEST rval = displaced_read_reg (regs, dsc, read_reg);
6890 displaced_write_reg (regs, dsc, write_reg, rval, LOAD_WRITE_PC);
6891 if (debug_displaced)
6892 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: move "
6893 "loaded register r%d to r%d\n"), read_reg,
6894 write_reg);
6895 }
6896 else if (debug_displaced)
6897 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: register "
6898 "r%d already in the right place\n"),
6899 write_reg);
6900
6901 clobbered &= ~(1 << write_reg);
6902
6903 num_to_shuffle--;
6904 }
6905
6906 write_reg--;
6907 }
6908
6909 /* Restore any registers we scribbled over. */
6910 for (write_reg = 0; clobbered != 0; write_reg++)
6911 {
6912 if ((clobbered & (1 << write_reg)) != 0)
6913 {
6914 displaced_write_reg (regs, dsc, write_reg, dsc->tmp[write_reg],
6915 CANNOT_WRITE_PC);
6916 if (debug_displaced)
6917 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: restored "
6918 "clobbered register r%d\n"), write_reg);
6919 clobbered &= ~(1 << write_reg);
6920 }
6921 }
6922
6923 /* Perform register writeback manually. */
6924 if (dsc->u.block.writeback)
6925 {
6926 ULONGEST new_rn_val = dsc->u.block.xfer_addr;
6927
6928 if (dsc->u.block.increment)
6929 new_rn_val += regs_loaded * 4;
6930 else
6931 new_rn_val -= regs_loaded * 4;
6932
6933 displaced_write_reg (regs, dsc, dsc->u.block.rn, new_rn_val,
6934 CANNOT_WRITE_PC);
6935 }
6936 }
6937
6938 /* Handle ldm/stm, apart from some tricky cases which are unlikely to occur
6939 in user-level code (in particular exception return, ldm rn, {...pc}^). */
6940
6941 static int
6942 arm_copy_block_xfer (struct gdbarch *gdbarch, uint32_t insn,
6943 struct regcache *regs,
6944 struct displaced_step_closure *dsc)
6945 {
6946 int load = bit (insn, 20);
6947 int user = bit (insn, 22);
6948 int increment = bit (insn, 23);
6949 int before = bit (insn, 24);
6950 int writeback = bit (insn, 21);
6951 int rn = bits (insn, 16, 19);
6952
6953 /* Block transfers which don't mention PC can be run directly
6954 out-of-line. */
6955 if (rn != ARM_PC_REGNUM && (insn & 0x8000) == 0)
6956 return arm_copy_unmodified (gdbarch, insn, "ldm/stm", dsc);
6957
6958 if (rn == ARM_PC_REGNUM)
6959 {
6960 warning (_("displaced: Unpredictable LDM or STM with "
6961 "base register r15"));
6962 return arm_copy_unmodified (gdbarch, insn, "unpredictable ldm/stm", dsc);
6963 }
6964
6965 if (debug_displaced)
6966 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
6967 "%.8lx\n", (unsigned long) insn);
6968
6969 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
6970 dsc->u.block.rn = rn;
6971
6972 dsc->u.block.load = load;
6973 dsc->u.block.user = user;
6974 dsc->u.block.increment = increment;
6975 dsc->u.block.before = before;
6976 dsc->u.block.writeback = writeback;
6977 dsc->u.block.cond = bits (insn, 28, 31);
6978
6979 dsc->u.block.regmask = insn & 0xffff;
6980
6981 if (load)
6982 {
6983 if ((insn & 0xffff) == 0xffff)
6984 {
6985 /* LDM with a fully-populated register list. This case is
6986 particularly tricky. Implement for now by fully emulating the
6987 instruction (which might not behave perfectly in all cases, but
6988 these instructions should be rare enough for that not to matter
6989 too much). */
6990 dsc->modinsn[0] = ARM_NOP;
6991
6992 dsc->cleanup = &cleanup_block_load_all;
6993 }
6994 else
6995 {
6996 /* LDM of a list of registers which includes PC. Implement by
6997 rewriting the list of registers to be transferred into a
6998 contiguous chunk r0...rX before doing the transfer, then shuffling
6999 registers into the correct places in the cleanup routine. */
7000 unsigned int regmask = insn & 0xffff;
7001 unsigned int num_in_list = bitcount (regmask), new_regmask, bit = 1;
7002 unsigned int to = 0, from = 0, i, new_rn;
7003
7004 for (i = 0; i < num_in_list; i++)
7005 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
7006
7007 /* Writeback makes things complicated. We need to avoid clobbering
7008 the base register with one of the registers in our modified
7009 register list, but just using a different register can't work in
7010 all cases, e.g.:
7011
7012 ldm r14!, {r0-r13,pc}
7013
7014 which would need to be rewritten as:
7015
7016 ldm rN!, {r0-r14}
7017
7018 but that can't work, because there's no free register for N.
7019
7020 Solve this by turning off the writeback bit, and emulating
7021 writeback manually in the cleanup routine. */
7022
7023 if (writeback)
7024 insn &= ~(1 << 21);
7025
7026 new_regmask = (1 << num_in_list) - 1;
7027
7028 if (debug_displaced)
7029 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
7030 "{..., pc}: original reg list %.4x, modified "
7031 "list %.4x\n"), rn, writeback ? "!" : "",
7032 (int) insn & 0xffff, new_regmask);
7033
7034 dsc->modinsn[0] = (insn & ~0xffff) | (new_regmask & 0xffff);
7035
7036 dsc->cleanup = &cleanup_block_load_pc;
7037 }
7038 }
7039 else
7040 {
7041 /* STM of a list of registers which includes PC. Run the instruction
7042 as-is, but out of line: this will store the wrong value for the PC,
7043 so we must manually fix up the memory in the cleanup routine.
7044 Doing things this way has the advantage that we can auto-detect
7045 the offset of the PC write (which is architecture-dependent) in
7046 the cleanup routine. */
7047 dsc->modinsn[0] = insn;
7048
7049 dsc->cleanup = &cleanup_block_store_pc;
7050 }
7051
7052 return 0;
7053 }
7054
7055 static int
7056 thumb2_copy_block_xfer (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
7057 struct regcache *regs,
7058 struct displaced_step_closure *dsc)
7059 {
7060 int rn = bits (insn1, 0, 3);
7061 int load = bit (insn1, 4);
7062 int writeback = bit (insn1, 5);
7063
7064 /* Block transfers which don't mention PC can be run directly
7065 out-of-line. */
7066 if (rn != ARM_PC_REGNUM && (insn2 & 0x8000) == 0)
7067 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ldm/stm", dsc);
7068
7069 if (rn == ARM_PC_REGNUM)
7070 {
7071 warning (_("displaced: Unpredictable LDM or STM with "
7072 "base register r15"));
7073 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7074 "unpredictable ldm/stm", dsc);
7075 }
7076
7077 if (debug_displaced)
7078 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
7079 "%.4x%.4x\n", insn1, insn2);
7080
7081 /* Clear bit 13, since it should be always zero. */
7082 dsc->u.block.regmask = (insn2 & 0xdfff);
7083 dsc->u.block.rn = rn;
7084
7085 dsc->u.block.load = load;
7086 dsc->u.block.user = 0;
7087 dsc->u.block.increment = bit (insn1, 7);
7088 dsc->u.block.before = bit (insn1, 8);
7089 dsc->u.block.writeback = writeback;
7090 dsc->u.block.cond = INST_AL;
7091 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
7092
7093 if (load)
7094 {
7095 if (dsc->u.block.regmask == 0xffff)
7096 {
7097 /* This branch is impossible to happen. */
7098 gdb_assert (0);
7099 }
7100 else
7101 {
7102 unsigned int regmask = dsc->u.block.regmask;
7103 unsigned int num_in_list = bitcount (regmask), new_regmask, bit = 1;
7104 unsigned int to = 0, from = 0, i, new_rn;
7105
7106 for (i = 0; i < num_in_list; i++)
7107 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
7108
7109 if (writeback)
7110 insn1 &= ~(1 << 5);
7111
7112 new_regmask = (1 << num_in_list) - 1;
7113
7114 if (debug_displaced)
7115 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
7116 "{..., pc}: original reg list %.4x, modified "
7117 "list %.4x\n"), rn, writeback ? "!" : "",
7118 (int) dsc->u.block.regmask, new_regmask);
7119
7120 dsc->modinsn[0] = insn1;
7121 dsc->modinsn[1] = (new_regmask & 0xffff);
7122 dsc->numinsns = 2;
7123
7124 dsc->cleanup = &cleanup_block_load_pc;
7125 }
7126 }
7127 else
7128 {
7129 dsc->modinsn[0] = insn1;
7130 dsc->modinsn[1] = insn2;
7131 dsc->numinsns = 2;
7132 dsc->cleanup = &cleanup_block_store_pc;
7133 }
7134 return 0;
7135 }
7136
7137 /* Cleanup/copy SVC (SWI) instructions. These two functions are overridden
7138 for Linux, where some SVC instructions must be treated specially. */
7139
7140 static void
7141 cleanup_svc (struct gdbarch *gdbarch, struct regcache *regs,
7142 struct displaced_step_closure *dsc)
7143 {
7144 CORE_ADDR resume_addr = dsc->insn_addr + dsc->insn_size;
7145
7146 if (debug_displaced)
7147 fprintf_unfiltered (gdb_stdlog, "displaced: cleanup for svc, resume at "
7148 "%.8lx\n", (unsigned long) resume_addr);
7149
7150 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, resume_addr, BRANCH_WRITE_PC);
7151 }
7152
7153
7154 /* Common copy routine for svc instruciton. */
7155
7156 static int
7157 install_svc (struct gdbarch *gdbarch, struct regcache *regs,
7158 struct displaced_step_closure *dsc)
7159 {
7160 /* Preparation: none.
7161 Insn: unmodified svc.
7162 Cleanup: pc <- insn_addr + insn_size. */
7163
7164 /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
7165 instruction. */
7166 dsc->wrote_to_pc = 1;
7167
7168 /* Allow OS-specific code to override SVC handling. */
7169 if (dsc->u.svc.copy_svc_os)
7170 return dsc->u.svc.copy_svc_os (gdbarch, regs, dsc);
7171 else
7172 {
7173 dsc->cleanup = &cleanup_svc;
7174 return 0;
7175 }
7176 }
7177
7178 static int
7179 arm_copy_svc (struct gdbarch *gdbarch, uint32_t insn,
7180 struct regcache *regs, struct displaced_step_closure *dsc)
7181 {
7182
7183 if (debug_displaced)
7184 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.8lx\n",
7185 (unsigned long) insn);
7186
7187 dsc->modinsn[0] = insn;
7188
7189 return install_svc (gdbarch, regs, dsc);
7190 }
7191
7192 static int
7193 thumb_copy_svc (struct gdbarch *gdbarch, uint16_t insn,
7194 struct regcache *regs, struct displaced_step_closure *dsc)
7195 {
7196
7197 if (debug_displaced)
7198 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.4x\n",
7199 insn);
7200
7201 dsc->modinsn[0] = insn;
7202
7203 return install_svc (gdbarch, regs, dsc);
7204 }
7205
7206 /* Copy undefined instructions. */
7207
7208 static int
7209 arm_copy_undef (struct gdbarch *gdbarch, uint32_t insn,
7210 struct displaced_step_closure *dsc)
7211 {
7212 if (debug_displaced)
7213 fprintf_unfiltered (gdb_stdlog,
7214 "displaced: copying undefined insn %.8lx\n",
7215 (unsigned long) insn);
7216
7217 dsc->modinsn[0] = insn;
7218
7219 return 0;
7220 }
7221
7222 static int
7223 thumb_32bit_copy_undef (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
7224 struct displaced_step_closure *dsc)
7225 {
7226
7227 if (debug_displaced)
7228 fprintf_unfiltered (gdb_stdlog, "displaced: copying undefined insn "
7229 "%.4x %.4x\n", (unsigned short) insn1,
7230 (unsigned short) insn2);
7231
7232 dsc->modinsn[0] = insn1;
7233 dsc->modinsn[1] = insn2;
7234 dsc->numinsns = 2;
7235
7236 return 0;
7237 }
7238
7239 /* Copy unpredictable instructions. */
7240
7241 static int
7242 arm_copy_unpred (struct gdbarch *gdbarch, uint32_t insn,
7243 struct displaced_step_closure *dsc)
7244 {
7245 if (debug_displaced)
7246 fprintf_unfiltered (gdb_stdlog, "displaced: copying unpredictable insn "
7247 "%.8lx\n", (unsigned long) insn);
7248
7249 dsc->modinsn[0] = insn;
7250
7251 return 0;
7252 }
7253
7254 /* The decode_* functions are instruction decoding helpers. They mostly follow
7255 the presentation in the ARM ARM. */
7256
7257 static int
7258 arm_decode_misc_memhint_neon (struct gdbarch *gdbarch, uint32_t insn,
7259 struct regcache *regs,
7260 struct displaced_step_closure *dsc)
7261 {
7262 unsigned int op1 = bits (insn, 20, 26), op2 = bits (insn, 4, 7);
7263 unsigned int rn = bits (insn, 16, 19);
7264
7265 if (op1 == 0x10 && (op2 & 0x2) == 0x0 && (rn & 0xe) == 0x0)
7266 return arm_copy_unmodified (gdbarch, insn, "cps", dsc);
7267 else if (op1 == 0x10 && op2 == 0x0 && (rn & 0xe) == 0x1)
7268 return arm_copy_unmodified (gdbarch, insn, "setend", dsc);
7269 else if ((op1 & 0x60) == 0x20)
7270 return arm_copy_unmodified (gdbarch, insn, "neon dataproc", dsc);
7271 else if ((op1 & 0x71) == 0x40)
7272 return arm_copy_unmodified (gdbarch, insn, "neon elt/struct load/store",
7273 dsc);
7274 else if ((op1 & 0x77) == 0x41)
7275 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
7276 else if ((op1 & 0x77) == 0x45)
7277 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pli. */
7278 else if ((op1 & 0x77) == 0x51)
7279 {
7280 if (rn != 0xf)
7281 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
7282 else
7283 return arm_copy_unpred (gdbarch, insn, dsc);
7284 }
7285 else if ((op1 & 0x77) == 0x55)
7286 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
7287 else if (op1 == 0x57)
7288 switch (op2)
7289 {
7290 case 0x1: return arm_copy_unmodified (gdbarch, insn, "clrex", dsc);
7291 case 0x4: return arm_copy_unmodified (gdbarch, insn, "dsb", dsc);
7292 case 0x5: return arm_copy_unmodified (gdbarch, insn, "dmb", dsc);
7293 case 0x6: return arm_copy_unmodified (gdbarch, insn, "isb", dsc);
7294 default: return arm_copy_unpred (gdbarch, insn, dsc);
7295 }
7296 else if ((op1 & 0x63) == 0x43)
7297 return arm_copy_unpred (gdbarch, insn, dsc);
7298 else if ((op2 & 0x1) == 0x0)
7299 switch (op1 & ~0x80)
7300 {
7301 case 0x61:
7302 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
7303 case 0x65:
7304 return arm_copy_preload_reg (gdbarch, insn, regs, dsc); /* pli reg. */
7305 case 0x71: case 0x75:
7306 /* pld/pldw reg. */
7307 return arm_copy_preload_reg (gdbarch, insn, regs, dsc);
7308 case 0x63: case 0x67: case 0x73: case 0x77:
7309 return arm_copy_unpred (gdbarch, insn, dsc);
7310 default:
7311 return arm_copy_undef (gdbarch, insn, dsc);
7312 }
7313 else
7314 return arm_copy_undef (gdbarch, insn, dsc); /* Probably unreachable. */
7315 }
7316
7317 static int
7318 arm_decode_unconditional (struct gdbarch *gdbarch, uint32_t insn,
7319 struct regcache *regs,
7320 struct displaced_step_closure *dsc)
7321 {
7322 if (bit (insn, 27) == 0)
7323 return arm_decode_misc_memhint_neon (gdbarch, insn, regs, dsc);
7324 /* Switch on bits: 0bxxxxx321xxx0xxxxxxxxxxxxxxxxxxxx. */
7325 else switch (((insn & 0x7000000) >> 23) | ((insn & 0x100000) >> 20))
7326 {
7327 case 0x0: case 0x2:
7328 return arm_copy_unmodified (gdbarch, insn, "srs", dsc);
7329
7330 case 0x1: case 0x3:
7331 return arm_copy_unmodified (gdbarch, insn, "rfe", dsc);
7332
7333 case 0x4: case 0x5: case 0x6: case 0x7:
7334 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
7335
7336 case 0x8:
7337 switch ((insn & 0xe00000) >> 21)
7338 {
7339 case 0x1: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
7340 /* stc/stc2. */
7341 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7342
7343 case 0x2:
7344 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
7345
7346 default:
7347 return arm_copy_undef (gdbarch, insn, dsc);
7348 }
7349
7350 case 0x9:
7351 {
7352 int rn_f = (bits (insn, 16, 19) == 0xf);
7353 switch ((insn & 0xe00000) >> 21)
7354 {
7355 case 0x1: case 0x3:
7356 /* ldc/ldc2 imm (undefined for rn == pc). */
7357 return rn_f ? arm_copy_undef (gdbarch, insn, dsc)
7358 : arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7359
7360 case 0x2:
7361 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
7362
7363 case 0x4: case 0x5: case 0x6: case 0x7:
7364 /* ldc/ldc2 lit (undefined for rn != pc). */
7365 return rn_f ? arm_copy_copro_load_store (gdbarch, insn, regs, dsc)
7366 : arm_copy_undef (gdbarch, insn, dsc);
7367
7368 default:
7369 return arm_copy_undef (gdbarch, insn, dsc);
7370 }
7371 }
7372
7373 case 0xa:
7374 return arm_copy_unmodified (gdbarch, insn, "stc/stc2", dsc);
7375
7376 case 0xb:
7377 if (bits (insn, 16, 19) == 0xf)
7378 /* ldc/ldc2 lit. */
7379 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7380 else
7381 return arm_copy_undef (gdbarch, insn, dsc);
7382
7383 case 0xc:
7384 if (bit (insn, 4))
7385 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
7386 else
7387 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
7388
7389 case 0xd:
7390 if (bit (insn, 4))
7391 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
7392 else
7393 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
7394
7395 default:
7396 return arm_copy_undef (gdbarch, insn, dsc);
7397 }
7398 }
7399
7400 /* Decode miscellaneous instructions in dp/misc encoding space. */
7401
7402 static int
7403 arm_decode_miscellaneous (struct gdbarch *gdbarch, uint32_t insn,
7404 struct regcache *regs,
7405 struct displaced_step_closure *dsc)
7406 {
7407 unsigned int op2 = bits (insn, 4, 6);
7408 unsigned int op = bits (insn, 21, 22);
7409 unsigned int op1 = bits (insn, 16, 19);
7410
7411 switch (op2)
7412 {
7413 case 0x0:
7414 return arm_copy_unmodified (gdbarch, insn, "mrs/msr", dsc);
7415
7416 case 0x1:
7417 if (op == 0x1) /* bx. */
7418 return arm_copy_bx_blx_reg (gdbarch, insn, regs, dsc);
7419 else if (op == 0x3)
7420 return arm_copy_unmodified (gdbarch, insn, "clz", dsc);
7421 else
7422 return arm_copy_undef (gdbarch, insn, dsc);
7423
7424 case 0x2:
7425 if (op == 0x1)
7426 /* Not really supported. */
7427 return arm_copy_unmodified (gdbarch, insn, "bxj", dsc);
7428 else
7429 return arm_copy_undef (gdbarch, insn, dsc);
7430
7431 case 0x3:
7432 if (op == 0x1)
7433 return arm_copy_bx_blx_reg (gdbarch, insn,
7434 regs, dsc); /* blx register. */
7435 else
7436 return arm_copy_undef (gdbarch, insn, dsc);
7437
7438 case 0x5:
7439 return arm_copy_unmodified (gdbarch, insn, "saturating add/sub", dsc);
7440
7441 case 0x7:
7442 if (op == 0x1)
7443 return arm_copy_unmodified (gdbarch, insn, "bkpt", dsc);
7444 else if (op == 0x3)
7445 /* Not really supported. */
7446 return arm_copy_unmodified (gdbarch, insn, "smc", dsc);
7447
7448 default:
7449 return arm_copy_undef (gdbarch, insn, dsc);
7450 }
7451 }
7452
7453 static int
7454 arm_decode_dp_misc (struct gdbarch *gdbarch, uint32_t insn,
7455 struct regcache *regs,
7456 struct displaced_step_closure *dsc)
7457 {
7458 if (bit (insn, 25))
7459 switch (bits (insn, 20, 24))
7460 {
7461 case 0x10:
7462 return arm_copy_unmodified (gdbarch, insn, "movw", dsc);
7463
7464 case 0x14:
7465 return arm_copy_unmodified (gdbarch, insn, "movt", dsc);
7466
7467 case 0x12: case 0x16:
7468 return arm_copy_unmodified (gdbarch, insn, "msr imm", dsc);
7469
7470 default:
7471 return arm_copy_alu_imm (gdbarch, insn, regs, dsc);
7472 }
7473 else
7474 {
7475 uint32_t op1 = bits (insn, 20, 24), op2 = bits (insn, 4, 7);
7476
7477 if ((op1 & 0x19) != 0x10 && (op2 & 0x1) == 0x0)
7478 return arm_copy_alu_reg (gdbarch, insn, regs, dsc);
7479 else if ((op1 & 0x19) != 0x10 && (op2 & 0x9) == 0x1)
7480 return arm_copy_alu_shifted_reg (gdbarch, insn, regs, dsc);
7481 else if ((op1 & 0x19) == 0x10 && (op2 & 0x8) == 0x0)
7482 return arm_decode_miscellaneous (gdbarch, insn, regs, dsc);
7483 else if ((op1 & 0x19) == 0x10 && (op2 & 0x9) == 0x8)
7484 return arm_copy_unmodified (gdbarch, insn, "halfword mul/mla", dsc);
7485 else if ((op1 & 0x10) == 0x00 && op2 == 0x9)
7486 return arm_copy_unmodified (gdbarch, insn, "mul/mla", dsc);
7487 else if ((op1 & 0x10) == 0x10 && op2 == 0x9)
7488 return arm_copy_unmodified (gdbarch, insn, "synch", dsc);
7489 else if (op2 == 0xb || (op2 & 0xd) == 0xd)
7490 /* 2nd arg means "unpriveleged". */
7491 return arm_copy_extra_ld_st (gdbarch, insn, (op1 & 0x12) == 0x02, regs,
7492 dsc);
7493 }
7494
7495 /* Should be unreachable. */
7496 return 1;
7497 }
7498
7499 static int
7500 arm_decode_ld_st_word_ubyte (struct gdbarch *gdbarch, uint32_t insn,
7501 struct regcache *regs,
7502 struct displaced_step_closure *dsc)
7503 {
7504 int a = bit (insn, 25), b = bit (insn, 4);
7505 uint32_t op1 = bits (insn, 20, 24);
7506 int rn_f = bits (insn, 16, 19) == 0xf;
7507
7508 if ((!a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02)
7509 || (a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02 && !b))
7510 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 0);
7511 else if ((!a && (op1 & 0x17) == 0x02)
7512 || (a && (op1 & 0x17) == 0x02 && !b))
7513 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 1);
7514 else if ((!a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03)
7515 || (a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03 && !b))
7516 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 0);
7517 else if ((!a && (op1 & 0x17) == 0x03)
7518 || (a && (op1 & 0x17) == 0x03 && !b))
7519 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 1);
7520 else if ((!a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06)
7521 || (a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06 && !b))
7522 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 0);
7523 else if ((!a && (op1 & 0x17) == 0x06)
7524 || (a && (op1 & 0x17) == 0x06 && !b))
7525 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 1);
7526 else if ((!a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07)
7527 || (a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07 && !b))
7528 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 0);
7529 else if ((!a && (op1 & 0x17) == 0x07)
7530 || (a && (op1 & 0x17) == 0x07 && !b))
7531 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 1);
7532
7533 /* Should be unreachable. */
7534 return 1;
7535 }
7536
7537 static int
7538 arm_decode_media (struct gdbarch *gdbarch, uint32_t insn,
7539 struct displaced_step_closure *dsc)
7540 {
7541 switch (bits (insn, 20, 24))
7542 {
7543 case 0x00: case 0x01: case 0x02: case 0x03:
7544 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub signed", dsc);
7545
7546 case 0x04: case 0x05: case 0x06: case 0x07:
7547 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub unsigned", dsc);
7548
7549 case 0x08: case 0x09: case 0x0a: case 0x0b:
7550 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
7551 return arm_copy_unmodified (gdbarch, insn,
7552 "decode/pack/unpack/saturate/reverse", dsc);
7553
7554 case 0x18:
7555 if (bits (insn, 5, 7) == 0) /* op2. */
7556 {
7557 if (bits (insn, 12, 15) == 0xf)
7558 return arm_copy_unmodified (gdbarch, insn, "usad8", dsc);
7559 else
7560 return arm_copy_unmodified (gdbarch, insn, "usada8", dsc);
7561 }
7562 else
7563 return arm_copy_undef (gdbarch, insn, dsc);
7564
7565 case 0x1a: case 0x1b:
7566 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7567 return arm_copy_unmodified (gdbarch, insn, "sbfx", dsc);
7568 else
7569 return arm_copy_undef (gdbarch, insn, dsc);
7570
7571 case 0x1c: case 0x1d:
7572 if (bits (insn, 5, 6) == 0x0) /* op2[1:0]. */
7573 {
7574 if (bits (insn, 0, 3) == 0xf)
7575 return arm_copy_unmodified (gdbarch, insn, "bfc", dsc);
7576 else
7577 return arm_copy_unmodified (gdbarch, insn, "bfi", dsc);
7578 }
7579 else
7580 return arm_copy_undef (gdbarch, insn, dsc);
7581
7582 case 0x1e: case 0x1f:
7583 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7584 return arm_copy_unmodified (gdbarch, insn, "ubfx", dsc);
7585 else
7586 return arm_copy_undef (gdbarch, insn, dsc);
7587 }
7588
7589 /* Should be unreachable. */
7590 return 1;
7591 }
7592
7593 static int
7594 arm_decode_b_bl_ldmstm (struct gdbarch *gdbarch, int32_t insn,
7595 struct regcache *regs,
7596 struct displaced_step_closure *dsc)
7597 {
7598 if (bit (insn, 25))
7599 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
7600 else
7601 return arm_copy_block_xfer (gdbarch, insn, regs, dsc);
7602 }
7603
7604 static int
7605 arm_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint32_t insn,
7606 struct regcache *regs,
7607 struct displaced_step_closure *dsc)
7608 {
7609 unsigned int opcode = bits (insn, 20, 24);
7610
7611 switch (opcode)
7612 {
7613 case 0x04: case 0x05: /* VFP/Neon mrrc/mcrr. */
7614 return arm_copy_unmodified (gdbarch, insn, "vfp/neon mrrc/mcrr", dsc);
7615
7616 case 0x08: case 0x0a: case 0x0c: case 0x0e:
7617 case 0x12: case 0x16:
7618 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vstm/vpush", dsc);
7619
7620 case 0x09: case 0x0b: case 0x0d: case 0x0f:
7621 case 0x13: case 0x17:
7622 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vldm/vpop", dsc);
7623
7624 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
7625 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
7626 /* Note: no writeback for these instructions. Bit 25 will always be
7627 zero though (via caller), so the following works OK. */
7628 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7629 }
7630
7631 /* Should be unreachable. */
7632 return 1;
7633 }
7634
7635 /* Decode shifted register instructions. */
7636
7637 static int
7638 thumb2_decode_dp_shift_reg (struct gdbarch *gdbarch, uint16_t insn1,
7639 uint16_t insn2, struct regcache *regs,
7640 struct displaced_step_closure *dsc)
7641 {
7642 /* PC is only allowed to be used in instruction MOV. */
7643
7644 unsigned int op = bits (insn1, 5, 8);
7645 unsigned int rn = bits (insn1, 0, 3);
7646
7647 if (op == 0x2 && rn == 0xf) /* MOV */
7648 return thumb2_copy_alu_imm (gdbarch, insn1, insn2, regs, dsc);
7649 else
7650 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7651 "dp (shift reg)", dsc);
7652 }
7653
7654
7655 /* Decode extension register load/store. Exactly the same as
7656 arm_decode_ext_reg_ld_st. */
7657
7658 static int
7659 thumb2_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint16_t insn1,
7660 uint16_t insn2, struct regcache *regs,
7661 struct displaced_step_closure *dsc)
7662 {
7663 unsigned int opcode = bits (insn1, 4, 8);
7664
7665 switch (opcode)
7666 {
7667 case 0x04: case 0x05:
7668 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7669 "vfp/neon vmov", dsc);
7670
7671 case 0x08: case 0x0c: /* 01x00 */
7672 case 0x0a: case 0x0e: /* 01x10 */
7673 case 0x12: case 0x16: /* 10x10 */
7674 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7675 "vfp/neon vstm/vpush", dsc);
7676
7677 case 0x09: case 0x0d: /* 01x01 */
7678 case 0x0b: case 0x0f: /* 01x11 */
7679 case 0x13: case 0x17: /* 10x11 */
7680 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7681 "vfp/neon vldm/vpop", dsc);
7682
7683 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
7684 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7685 "vstr", dsc);
7686 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
7687 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2, regs, dsc);
7688 }
7689
7690 /* Should be unreachable. */
7691 return 1;
7692 }
7693
7694 static int
7695 arm_decode_svc_copro (struct gdbarch *gdbarch, uint32_t insn, CORE_ADDR to,
7696 struct regcache *regs, struct displaced_step_closure *dsc)
7697 {
7698 unsigned int op1 = bits (insn, 20, 25);
7699 int op = bit (insn, 4);
7700 unsigned int coproc = bits (insn, 8, 11);
7701 unsigned int rn = bits (insn, 16, 19);
7702
7703 if ((op1 & 0x20) == 0x00 && (op1 & 0x3a) != 0x00 && (coproc & 0xe) == 0xa)
7704 return arm_decode_ext_reg_ld_st (gdbarch, insn, regs, dsc);
7705 else if ((op1 & 0x21) == 0x00 && (op1 & 0x3a) != 0x00
7706 && (coproc & 0xe) != 0xa)
7707 /* stc/stc2. */
7708 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7709 else if ((op1 & 0x21) == 0x01 && (op1 & 0x3a) != 0x00
7710 && (coproc & 0xe) != 0xa)
7711 /* ldc/ldc2 imm/lit. */
7712 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
7713 else if ((op1 & 0x3e) == 0x00)
7714 return arm_copy_undef (gdbarch, insn, dsc);
7715 else if ((op1 & 0x3e) == 0x04 && (coproc & 0xe) == 0xa)
7716 return arm_copy_unmodified (gdbarch, insn, "neon 64bit xfer", dsc);
7717 else if (op1 == 0x04 && (coproc & 0xe) != 0xa)
7718 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
7719 else if (op1 == 0x05 && (coproc & 0xe) != 0xa)
7720 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
7721 else if ((op1 & 0x30) == 0x20 && !op)
7722 {
7723 if ((coproc & 0xe) == 0xa)
7724 return arm_copy_unmodified (gdbarch, insn, "vfp dataproc", dsc);
7725 else
7726 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
7727 }
7728 else if ((op1 & 0x30) == 0x20 && op)
7729 return arm_copy_unmodified (gdbarch, insn, "neon 8/16/32 bit xfer", dsc);
7730 else if ((op1 & 0x31) == 0x20 && op && (coproc & 0xe) != 0xa)
7731 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
7732 else if ((op1 & 0x31) == 0x21 && op && (coproc & 0xe) != 0xa)
7733 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
7734 else if ((op1 & 0x30) == 0x30)
7735 return arm_copy_svc (gdbarch, insn, regs, dsc);
7736 else
7737 return arm_copy_undef (gdbarch, insn, dsc); /* Possibly unreachable. */
7738 }
7739
7740 static int
7741 thumb2_decode_svc_copro (struct gdbarch *gdbarch, uint16_t insn1,
7742 uint16_t insn2, struct regcache *regs,
7743 struct displaced_step_closure *dsc)
7744 {
7745 unsigned int coproc = bits (insn2, 8, 11);
7746 unsigned int op1 = bits (insn1, 4, 9);
7747 unsigned int bit_5_8 = bits (insn1, 5, 8);
7748 unsigned int bit_9 = bit (insn1, 9);
7749 unsigned int bit_4 = bit (insn1, 4);
7750 unsigned int rn = bits (insn1, 0, 3);
7751
7752 if (bit_9 == 0)
7753 {
7754 if (bit_5_8 == 2)
7755 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7756 "neon 64bit xfer/mrrc/mrrc2/mcrr/mcrr2",
7757 dsc);
7758 else if (bit_5_8 == 0) /* UNDEFINED. */
7759 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
7760 else
7761 {
7762 /*coproc is 101x. SIMD/VFP, ext registers load/store. */
7763 if ((coproc & 0xe) == 0xa)
7764 return thumb2_decode_ext_reg_ld_st (gdbarch, insn1, insn2, regs,
7765 dsc);
7766 else /* coproc is not 101x. */
7767 {
7768 if (bit_4 == 0) /* STC/STC2. */
7769 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7770 "stc/stc2", dsc);
7771 else /* LDC/LDC2 {literal, immeidate}. */
7772 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2,
7773 regs, dsc);
7774 }
7775 }
7776 }
7777 else
7778 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "coproc", dsc);
7779
7780 return 0;
7781 }
7782
7783 static void
7784 install_pc_relative (struct gdbarch *gdbarch, struct regcache *regs,
7785 struct displaced_step_closure *dsc, int rd)
7786 {
7787 /* ADR Rd, #imm
7788
7789 Rewrite as:
7790
7791 Preparation: Rd <- PC
7792 Insn: ADD Rd, #imm
7793 Cleanup: Null.
7794 */
7795
7796 /* Rd <- PC */
7797 int val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
7798 displaced_write_reg (regs, dsc, rd, val, CANNOT_WRITE_PC);
7799 }
7800
7801 static int
7802 thumb_copy_pc_relative_16bit (struct gdbarch *gdbarch, struct regcache *regs,
7803 struct displaced_step_closure *dsc,
7804 int rd, unsigned int imm)
7805 {
7806
7807 /* Encoding T2: ADDS Rd, #imm */
7808 dsc->modinsn[0] = (0x3000 | (rd << 8) | imm);
7809
7810 install_pc_relative (gdbarch, regs, dsc, rd);
7811
7812 return 0;
7813 }
7814
7815 static int
7816 thumb_decode_pc_relative_16bit (struct gdbarch *gdbarch, uint16_t insn,
7817 struct regcache *regs,
7818 struct displaced_step_closure *dsc)
7819 {
7820 unsigned int rd = bits (insn, 8, 10);
7821 unsigned int imm8 = bits (insn, 0, 7);
7822
7823 if (debug_displaced)
7824 fprintf_unfiltered (gdb_stdlog,
7825 "displaced: copying thumb adr r%d, #%d insn %.4x\n",
7826 rd, imm8, insn);
7827
7828 return thumb_copy_pc_relative_16bit (gdbarch, regs, dsc, rd, imm8);
7829 }
7830
7831 static int
7832 thumb_copy_pc_relative_32bit (struct gdbarch *gdbarch, uint16_t insn1,
7833 uint16_t insn2, struct regcache *regs,
7834 struct displaced_step_closure *dsc)
7835 {
7836 unsigned int rd = bits (insn2, 8, 11);
7837 /* Since immediate has the same encoding in ADR ADD and SUB, so we simply
7838 extract raw immediate encoding rather than computing immediate. When
7839 generating ADD or SUB instruction, we can simply perform OR operation to
7840 set immediate into ADD. */
7841 unsigned int imm_3_8 = insn2 & 0x70ff;
7842 unsigned int imm_i = insn1 & 0x0400; /* Clear all bits except bit 10. */
7843
7844 if (debug_displaced)
7845 fprintf_unfiltered (gdb_stdlog,
7846 "displaced: copying thumb adr r%d, #%d:%d insn %.4x%.4x\n",
7847 rd, imm_i, imm_3_8, insn1, insn2);
7848
7849 if (bit (insn1, 7)) /* Encoding T2 */
7850 {
7851 /* Encoding T3: SUB Rd, Rd, #imm */
7852 dsc->modinsn[0] = (0xf1a0 | rd | imm_i);
7853 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
7854 }
7855 else /* Encoding T3 */
7856 {
7857 /* Encoding T3: ADD Rd, Rd, #imm */
7858 dsc->modinsn[0] = (0xf100 | rd | imm_i);
7859 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
7860 }
7861 dsc->numinsns = 2;
7862
7863 install_pc_relative (gdbarch, regs, dsc, rd);
7864
7865 return 0;
7866 }
7867
7868 static int
7869 thumb_copy_16bit_ldr_literal (struct gdbarch *gdbarch, unsigned short insn1,
7870 struct regcache *regs,
7871 struct displaced_step_closure *dsc)
7872 {
7873 unsigned int rt = bits (insn1, 8, 10);
7874 unsigned int pc;
7875 int imm8 = (bits (insn1, 0, 7) << 2);
7876 CORE_ADDR from = dsc->insn_addr;
7877
7878 /* LDR Rd, #imm8
7879
7880 Rwrite as:
7881
7882 Preparation: tmp0 <- R0, tmp2 <- R2, tmp3 <- R3, R2 <- PC, R3 <- #imm8;
7883
7884 Insn: LDR R0, [R2, R3];
7885 Cleanup: R2 <- tmp2, R3 <- tmp3, Rd <- R0, R0 <- tmp0 */
7886
7887 if (debug_displaced)
7888 fprintf_unfiltered (gdb_stdlog,
7889 "displaced: copying thumb ldr r%d [pc #%d]\n"
7890 , rt, imm8);
7891
7892 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
7893 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
7894 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
7895 pc = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
7896 /* The assembler calculates the required value of the offset from the
7897 Align(PC,4) value of this instruction to the label. */
7898 pc = pc & 0xfffffffc;
7899
7900 displaced_write_reg (regs, dsc, 2, pc, CANNOT_WRITE_PC);
7901 displaced_write_reg (regs, dsc, 3, imm8, CANNOT_WRITE_PC);
7902
7903 dsc->rd = rt;
7904 dsc->u.ldst.xfersize = 4;
7905 dsc->u.ldst.rn = 0;
7906 dsc->u.ldst.immed = 0;
7907 dsc->u.ldst.writeback = 0;
7908 dsc->u.ldst.restore_r4 = 0;
7909
7910 dsc->modinsn[0] = 0x58d0; /* ldr r0, [r2, r3]*/
7911
7912 dsc->cleanup = &cleanup_load;
7913
7914 return 0;
7915 }
7916
7917 /* Copy Thumb cbnz/cbz insruction. */
7918
7919 static int
7920 thumb_copy_cbnz_cbz (struct gdbarch *gdbarch, uint16_t insn1,
7921 struct regcache *regs,
7922 struct displaced_step_closure *dsc)
7923 {
7924 int non_zero = bit (insn1, 11);
7925 unsigned int imm5 = (bit (insn1, 9) << 6) | (bits (insn1, 3, 7) << 1);
7926 CORE_ADDR from = dsc->insn_addr;
7927 int rn = bits (insn1, 0, 2);
7928 int rn_val = displaced_read_reg (regs, dsc, rn);
7929
7930 dsc->u.branch.cond = (rn_val && non_zero) || (!rn_val && !non_zero);
7931 /* CBNZ and CBZ do not affect the condition flags. If condition is true,
7932 set it INST_AL, so cleanup_branch will know branch is taken, otherwise,
7933 condition is false, let it be, cleanup_branch will do nothing. */
7934 if (dsc->u.branch.cond)
7935 {
7936 dsc->u.branch.cond = INST_AL;
7937 dsc->u.branch.dest = from + 4 + imm5;
7938 }
7939 else
7940 dsc->u.branch.dest = from + 2;
7941
7942 dsc->u.branch.link = 0;
7943 dsc->u.branch.exchange = 0;
7944
7945 if (debug_displaced)
7946 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s [r%d = 0x%x]"
7947 " insn %.4x to %.8lx\n", non_zero ? "cbnz" : "cbz",
7948 rn, rn_val, insn1, dsc->u.branch.dest);
7949
7950 dsc->modinsn[0] = THUMB_NOP;
7951
7952 dsc->cleanup = &cleanup_branch;
7953 return 0;
7954 }
7955
7956 /* Copy Table Branch Byte/Halfword */
7957 static int
7958 thumb2_copy_table_branch (struct gdbarch *gdbarch, uint16_t insn1,
7959 uint16_t insn2, struct regcache *regs,
7960 struct displaced_step_closure *dsc)
7961 {
7962 ULONGEST rn_val, rm_val;
7963 int is_tbh = bit (insn2, 4);
7964 CORE_ADDR halfwords = 0;
7965 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7966
7967 rn_val = displaced_read_reg (regs, dsc, bits (insn1, 0, 3));
7968 rm_val = displaced_read_reg (regs, dsc, bits (insn2, 0, 3));
7969
7970 if (is_tbh)
7971 {
7972 gdb_byte buf[2];
7973
7974 target_read_memory (rn_val + 2 * rm_val, buf, 2);
7975 halfwords = extract_unsigned_integer (buf, 2, byte_order);
7976 }
7977 else
7978 {
7979 gdb_byte buf[1];
7980
7981 target_read_memory (rn_val + rm_val, buf, 1);
7982 halfwords = extract_unsigned_integer (buf, 1, byte_order);
7983 }
7984
7985 if (debug_displaced)
7986 fprintf_unfiltered (gdb_stdlog, "displaced: %s base 0x%x offset 0x%x"
7987 " offset 0x%x\n", is_tbh ? "tbh" : "tbb",
7988 (unsigned int) rn_val, (unsigned int) rm_val,
7989 (unsigned int) halfwords);
7990
7991 dsc->u.branch.cond = INST_AL;
7992 dsc->u.branch.link = 0;
7993 dsc->u.branch.exchange = 0;
7994 dsc->u.branch.dest = dsc->insn_addr + 4 + 2 * halfwords;
7995
7996 dsc->cleanup = &cleanup_branch;
7997
7998 return 0;
7999 }
8000
8001 static void
8002 cleanup_pop_pc_16bit_all (struct gdbarch *gdbarch, struct regcache *regs,
8003 struct displaced_step_closure *dsc)
8004 {
8005 /* PC <- r7 */
8006 int val = displaced_read_reg (regs, dsc, 7);
8007 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, val, BX_WRITE_PC);
8008
8009 /* r7 <- r8 */
8010 val = displaced_read_reg (regs, dsc, 8);
8011 displaced_write_reg (regs, dsc, 7, val, CANNOT_WRITE_PC);
8012
8013 /* r8 <- tmp[0] */
8014 displaced_write_reg (regs, dsc, 8, dsc->tmp[0], CANNOT_WRITE_PC);
8015
8016 }
8017
8018 static int
8019 thumb_copy_pop_pc_16bit (struct gdbarch *gdbarch, unsigned short insn1,
8020 struct regcache *regs,
8021 struct displaced_step_closure *dsc)
8022 {
8023 dsc->u.block.regmask = insn1 & 0x00ff;
8024
8025 /* Rewrite instruction: POP {rX, rY, ...,rZ, PC}
8026 to :
8027
8028 (1) register list is full, that is, r0-r7 are used.
8029 Prepare: tmp[0] <- r8
8030
8031 POP {r0, r1, ...., r6, r7}; remove PC from reglist
8032 MOV r8, r7; Move value of r7 to r8;
8033 POP {r7}; Store PC value into r7.
8034
8035 Cleanup: PC <- r7, r7 <- r8, r8 <-tmp[0]
8036
8037 (2) register list is not full, supposing there are N registers in
8038 register list (except PC, 0 <= N <= 7).
8039 Prepare: for each i, 0 - N, tmp[i] <- ri.
8040
8041 POP {r0, r1, ...., rN};
8042
8043 Cleanup: Set registers in original reglist from r0 - rN. Restore r0 - rN
8044 from tmp[] properly.
8045 */
8046 if (debug_displaced)
8047 fprintf_unfiltered (gdb_stdlog,
8048 "displaced: copying thumb pop {%.8x, pc} insn %.4x\n",
8049 dsc->u.block.regmask, insn1);
8050
8051 if (dsc->u.block.regmask == 0xff)
8052 {
8053 dsc->tmp[0] = displaced_read_reg (regs, dsc, 8);
8054
8055 dsc->modinsn[0] = (insn1 & 0xfeff); /* POP {r0,r1,...,r6, r7} */
8056 dsc->modinsn[1] = 0x46b8; /* MOV r8, r7 */
8057 dsc->modinsn[2] = 0xbc80; /* POP {r7} */
8058
8059 dsc->numinsns = 3;
8060 dsc->cleanup = &cleanup_pop_pc_16bit_all;
8061 }
8062 else
8063 {
8064 unsigned int num_in_list = bitcount (dsc->u.block.regmask);
8065 unsigned int new_regmask, bit = 1;
8066 unsigned int to = 0, from = 0, i, new_rn;
8067
8068 for (i = 0; i < num_in_list + 1; i++)
8069 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
8070
8071 new_regmask = (1 << (num_in_list + 1)) - 1;
8072
8073 if (debug_displaced)
8074 fprintf_unfiltered (gdb_stdlog, _("displaced: POP "
8075 "{..., pc}: original reg list %.4x,"
8076 " modified list %.4x\n"),
8077 (int) dsc->u.block.regmask, new_regmask);
8078
8079 dsc->u.block.regmask |= 0x8000;
8080 dsc->u.block.writeback = 0;
8081 dsc->u.block.cond = INST_AL;
8082
8083 dsc->modinsn[0] = (insn1 & ~0x1ff) | (new_regmask & 0xff);
8084
8085 dsc->cleanup = &cleanup_block_load_pc;
8086 }
8087
8088 return 0;
8089 }
8090
8091 static void
8092 thumb_process_displaced_16bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
8093 struct regcache *regs,
8094 struct displaced_step_closure *dsc)
8095 {
8096 unsigned short op_bit_12_15 = bits (insn1, 12, 15);
8097 unsigned short op_bit_10_11 = bits (insn1, 10, 11);
8098 int err = 0;
8099
8100 /* 16-bit thumb instructions. */
8101 switch (op_bit_12_15)
8102 {
8103 /* Shift (imme), add, subtract, move and compare. */
8104 case 0: case 1: case 2: case 3:
8105 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
8106 "shift/add/sub/mov/cmp",
8107 dsc);
8108 break;
8109 case 4:
8110 switch (op_bit_10_11)
8111 {
8112 case 0: /* Data-processing */
8113 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
8114 "data-processing",
8115 dsc);
8116 break;
8117 case 1: /* Special data instructions and branch and exchange. */
8118 {
8119 unsigned short op = bits (insn1, 7, 9);
8120 if (op == 6 || op == 7) /* BX or BLX */
8121 err = thumb_copy_bx_blx_reg (gdbarch, insn1, regs, dsc);
8122 else if (bits (insn1, 6, 7) != 0) /* ADD/MOV/CMP high registers. */
8123 err = thumb_copy_alu_reg (gdbarch, insn1, regs, dsc);
8124 else
8125 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "special data",
8126 dsc);
8127 }
8128 break;
8129 default: /* LDR (literal) */
8130 err = thumb_copy_16bit_ldr_literal (gdbarch, insn1, regs, dsc);
8131 }
8132 break;
8133 case 5: case 6: case 7: case 8: case 9: /* Load/Store single data item */
8134 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldr/str", dsc);
8135 break;
8136 case 10:
8137 if (op_bit_10_11 < 2) /* Generate PC-relative address */
8138 err = thumb_decode_pc_relative_16bit (gdbarch, insn1, regs, dsc);
8139 else /* Generate SP-relative address */
8140 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "sp-relative", dsc);
8141 break;
8142 case 11: /* Misc 16-bit instructions */
8143 {
8144 switch (bits (insn1, 8, 11))
8145 {
8146 case 1: case 3: case 9: case 11: /* CBNZ, CBZ */
8147 err = thumb_copy_cbnz_cbz (gdbarch, insn1, regs, dsc);
8148 break;
8149 case 12: case 13: /* POP */
8150 if (bit (insn1, 8)) /* PC is in register list. */
8151 err = thumb_copy_pop_pc_16bit (gdbarch, insn1, regs, dsc);
8152 else
8153 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "pop", dsc);
8154 break;
8155 case 15: /* If-Then, and hints */
8156 if (bits (insn1, 0, 3))
8157 /* If-Then makes up to four following instructions conditional.
8158 IT instruction itself is not conditional, so handle it as a
8159 common unmodified instruction. */
8160 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "If-Then",
8161 dsc);
8162 else
8163 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "hints", dsc);
8164 break;
8165 default:
8166 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "misc", dsc);
8167 }
8168 }
8169 break;
8170 case 12:
8171 if (op_bit_10_11 < 2) /* Store multiple registers */
8172 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "stm", dsc);
8173 else /* Load multiple registers */
8174 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldm", dsc);
8175 break;
8176 case 13: /* Conditional branch and supervisor call */
8177 if (bits (insn1, 9, 11) != 7) /* conditional branch */
8178 err = thumb_copy_b (gdbarch, insn1, dsc);
8179 else
8180 err = thumb_copy_svc (gdbarch, insn1, regs, dsc);
8181 break;
8182 case 14: /* Unconditional branch */
8183 err = thumb_copy_b (gdbarch, insn1, dsc);
8184 break;
8185 default:
8186 err = 1;
8187 }
8188
8189 if (err)
8190 internal_error (__FILE__, __LINE__,
8191 _("thumb_process_displaced_16bit_insn: Instruction decode error"));
8192 }
8193
8194 static int
8195 decode_thumb_32bit_ld_mem_hints (struct gdbarch *gdbarch,
8196 uint16_t insn1, uint16_t insn2,
8197 struct regcache *regs,
8198 struct displaced_step_closure *dsc)
8199 {
8200 int rt = bits (insn2, 12, 15);
8201 int rn = bits (insn1, 0, 3);
8202 int op1 = bits (insn1, 7, 8);
8203 int err = 0;
8204
8205 switch (bits (insn1, 5, 6))
8206 {
8207 case 0: /* Load byte and memory hints */
8208 if (rt == 0xf) /* PLD/PLI */
8209 {
8210 if (rn == 0xf)
8211 /* PLD literal or Encoding T3 of PLI(immediate, literal). */
8212 return thumb2_copy_preload (gdbarch, insn1, insn2, regs, dsc);
8213 else
8214 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8215 "pli/pld", dsc);
8216 }
8217 else
8218 {
8219 if (rn == 0xf) /* LDRB/LDRSB (literal) */
8220 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
8221 1);
8222 else
8223 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8224 "ldrb{reg, immediate}/ldrbt",
8225 dsc);
8226 }
8227
8228 break;
8229 case 1: /* Load halfword and memory hints. */
8230 if (rt == 0xf) /* PLD{W} and Unalloc memory hint. */
8231 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8232 "pld/unalloc memhint", dsc);
8233 else
8234 {
8235 if (rn == 0xf)
8236 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
8237 2);
8238 else
8239 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8240 "ldrh/ldrht", dsc);
8241 }
8242 break;
8243 case 2: /* Load word */
8244 {
8245 int insn2_bit_8_11 = bits (insn2, 8, 11);
8246
8247 if (rn == 0xf)
8248 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc, 4);
8249 else if (op1 == 0x1) /* Encoding T3 */
8250 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs, dsc,
8251 0, 1);
8252 else /* op1 == 0x0 */
8253 {
8254 if (insn2_bit_8_11 == 0xc || (insn2_bit_8_11 & 0x9) == 0x9)
8255 /* LDR (immediate) */
8256 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
8257 dsc, bit (insn2, 8), 1);
8258 else if (insn2_bit_8_11 == 0xe) /* LDRT */
8259 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8260 "ldrt", dsc);
8261 else
8262 /* LDR (register) */
8263 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
8264 dsc, 0, 0);
8265 }
8266 break;
8267 }
8268 default:
8269 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
8270 break;
8271 }
8272 return 0;
8273 }
8274
8275 static void
8276 thumb_process_displaced_32bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
8277 uint16_t insn2, struct regcache *regs,
8278 struct displaced_step_closure *dsc)
8279 {
8280 int err = 0;
8281 unsigned short op = bit (insn2, 15);
8282 unsigned int op1 = bits (insn1, 11, 12);
8283
8284 switch (op1)
8285 {
8286 case 1:
8287 {
8288 switch (bits (insn1, 9, 10))
8289 {
8290 case 0:
8291 if (bit (insn1, 6))
8292 {
8293 /* Load/store {dual, execlusive}, table branch. */
8294 if (bits (insn1, 7, 8) == 1 && bits (insn1, 4, 5) == 1
8295 && bits (insn2, 5, 7) == 0)
8296 err = thumb2_copy_table_branch (gdbarch, insn1, insn2, regs,
8297 dsc);
8298 else
8299 /* PC is not allowed to use in load/store {dual, exclusive}
8300 instructions. */
8301 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8302 "load/store dual/ex", dsc);
8303 }
8304 else /* load/store multiple */
8305 {
8306 switch (bits (insn1, 7, 8))
8307 {
8308 case 0: case 3: /* SRS, RFE */
8309 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8310 "srs/rfe", dsc);
8311 break;
8312 case 1: case 2: /* LDM/STM/PUSH/POP */
8313 err = thumb2_copy_block_xfer (gdbarch, insn1, insn2, regs, dsc);
8314 break;
8315 }
8316 }
8317 break;
8318
8319 case 1:
8320 /* Data-processing (shift register). */
8321 err = thumb2_decode_dp_shift_reg (gdbarch, insn1, insn2, regs,
8322 dsc);
8323 break;
8324 default: /* Coprocessor instructions. */
8325 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
8326 break;
8327 }
8328 break;
8329 }
8330 case 2: /* op1 = 2 */
8331 if (op) /* Branch and misc control. */
8332 {
8333 if (bit (insn2, 14) /* BLX/BL */
8334 || bit (insn2, 12) /* Unconditional branch */
8335 || (bits (insn1, 7, 9) != 0x7)) /* Conditional branch */
8336 err = thumb2_copy_b_bl_blx (gdbarch, insn1, insn2, regs, dsc);
8337 else
8338 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8339 "misc ctrl", dsc);
8340 }
8341 else
8342 {
8343 if (bit (insn1, 9)) /* Data processing (plain binary imm). */
8344 {
8345 int op = bits (insn1, 4, 8);
8346 int rn = bits (insn1, 0, 3);
8347 if ((op == 0 || op == 0xa) && rn == 0xf)
8348 err = thumb_copy_pc_relative_32bit (gdbarch, insn1, insn2,
8349 regs, dsc);
8350 else
8351 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8352 "dp/pb", dsc);
8353 }
8354 else /* Data processing (modified immeidate) */
8355 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8356 "dp/mi", dsc);
8357 }
8358 break;
8359 case 3: /* op1 = 3 */
8360 switch (bits (insn1, 9, 10))
8361 {
8362 case 0:
8363 if (bit (insn1, 4))
8364 err = decode_thumb_32bit_ld_mem_hints (gdbarch, insn1, insn2,
8365 regs, dsc);
8366 else /* NEON Load/Store and Store single data item */
8367 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8368 "neon elt/struct load/store",
8369 dsc);
8370 break;
8371 case 1: /* op1 = 3, bits (9, 10) == 1 */
8372 switch (bits (insn1, 7, 8))
8373 {
8374 case 0: case 1: /* Data processing (register) */
8375 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8376 "dp(reg)", dsc);
8377 break;
8378 case 2: /* Multiply and absolute difference */
8379 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8380 "mul/mua/diff", dsc);
8381 break;
8382 case 3: /* Long multiply and divide */
8383 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
8384 "lmul/lmua", dsc);
8385 break;
8386 }
8387 break;
8388 default: /* Coprocessor instructions */
8389 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
8390 break;
8391 }
8392 break;
8393 default:
8394 err = 1;
8395 }
8396
8397 if (err)
8398 internal_error (__FILE__, __LINE__,
8399 _("thumb_process_displaced_32bit_insn: Instruction decode error"));
8400
8401 }
8402
8403 static void
8404 thumb_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
8405 CORE_ADDR to, struct regcache *regs,
8406 struct displaced_step_closure *dsc)
8407 {
8408 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
8409 uint16_t insn1
8410 = read_memory_unsigned_integer (from, 2, byte_order_for_code);
8411
8412 if (debug_displaced)
8413 fprintf_unfiltered (gdb_stdlog, "displaced: process thumb insn %.4x "
8414 "at %.8lx\n", insn1, (unsigned long) from);
8415
8416 dsc->is_thumb = 1;
8417 dsc->insn_size = thumb_insn_size (insn1);
8418 if (thumb_insn_size (insn1) == 4)
8419 {
8420 uint16_t insn2
8421 = read_memory_unsigned_integer (from + 2, 2, byte_order_for_code);
8422 thumb_process_displaced_32bit_insn (gdbarch, insn1, insn2, regs, dsc);
8423 }
8424 else
8425 thumb_process_displaced_16bit_insn (gdbarch, insn1, regs, dsc);
8426 }
8427
8428 void
8429 arm_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
8430 CORE_ADDR to, struct regcache *regs,
8431 struct displaced_step_closure *dsc)
8432 {
8433 int err = 0;
8434 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
8435 uint32_t insn;
8436
8437 /* Most displaced instructions use a 1-instruction scratch space, so set this
8438 here and override below if/when necessary. */
8439 dsc->numinsns = 1;
8440 dsc->insn_addr = from;
8441 dsc->scratch_base = to;
8442 dsc->cleanup = NULL;
8443 dsc->wrote_to_pc = 0;
8444
8445 if (!displaced_in_arm_mode (regs))
8446 return thumb_process_displaced_insn (gdbarch, from, to, regs, dsc);
8447
8448 dsc->is_thumb = 0;
8449 dsc->insn_size = 4;
8450 insn = read_memory_unsigned_integer (from, 4, byte_order_for_code);
8451 if (debug_displaced)
8452 fprintf_unfiltered (gdb_stdlog, "displaced: stepping insn %.8lx "
8453 "at %.8lx\n", (unsigned long) insn,
8454 (unsigned long) from);
8455
8456 if ((insn & 0xf0000000) == 0xf0000000)
8457 err = arm_decode_unconditional (gdbarch, insn, regs, dsc);
8458 else switch (((insn & 0x10) >> 4) | ((insn & 0xe000000) >> 24))
8459 {
8460 case 0x0: case 0x1: case 0x2: case 0x3:
8461 err = arm_decode_dp_misc (gdbarch, insn, regs, dsc);
8462 break;
8463
8464 case 0x4: case 0x5: case 0x6:
8465 err = arm_decode_ld_st_word_ubyte (gdbarch, insn, regs, dsc);
8466 break;
8467
8468 case 0x7:
8469 err = arm_decode_media (gdbarch, insn, dsc);
8470 break;
8471
8472 case 0x8: case 0x9: case 0xa: case 0xb:
8473 err = arm_decode_b_bl_ldmstm (gdbarch, insn, regs, dsc);
8474 break;
8475
8476 case 0xc: case 0xd: case 0xe: case 0xf:
8477 err = arm_decode_svc_copro (gdbarch, insn, to, regs, dsc);
8478 break;
8479 }
8480
8481 if (err)
8482 internal_error (__FILE__, __LINE__,
8483 _("arm_process_displaced_insn: Instruction decode error"));
8484 }
8485
8486 /* Actually set up the scratch space for a displaced instruction. */
8487
8488 void
8489 arm_displaced_init_closure (struct gdbarch *gdbarch, CORE_ADDR from,
8490 CORE_ADDR to, struct displaced_step_closure *dsc)
8491 {
8492 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
8493 unsigned int i, len, offset;
8494 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
8495 int size = dsc->is_thumb? 2 : 4;
8496 const unsigned char *bkp_insn;
8497
8498 offset = 0;
8499 /* Poke modified instruction(s). */
8500 for (i = 0; i < dsc->numinsns; i++)
8501 {
8502 if (debug_displaced)
8503 {
8504 fprintf_unfiltered (gdb_stdlog, "displaced: writing insn ");
8505 if (size == 4)
8506 fprintf_unfiltered (gdb_stdlog, "%.8lx",
8507 dsc->modinsn[i]);
8508 else if (size == 2)
8509 fprintf_unfiltered (gdb_stdlog, "%.4x",
8510 (unsigned short)dsc->modinsn[i]);
8511
8512 fprintf_unfiltered (gdb_stdlog, " at %.8lx\n",
8513 (unsigned long) to + offset);
8514
8515 }
8516 write_memory_unsigned_integer (to + offset, size,
8517 byte_order_for_code,
8518 dsc->modinsn[i]);
8519 offset += size;
8520 }
8521
8522 /* Choose the correct breakpoint instruction. */
8523 if (dsc->is_thumb)
8524 {
8525 bkp_insn = tdep->thumb_breakpoint;
8526 len = tdep->thumb_breakpoint_size;
8527 }
8528 else
8529 {
8530 bkp_insn = tdep->arm_breakpoint;
8531 len = tdep->arm_breakpoint_size;
8532 }
8533
8534 /* Put breakpoint afterwards. */
8535 write_memory (to + offset, bkp_insn, len);
8536
8537 if (debug_displaced)
8538 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
8539 paddress (gdbarch, from), paddress (gdbarch, to));
8540 }
8541
8542 /* Entry point for copying an instruction into scratch space for displaced
8543 stepping. */
8544
8545 struct displaced_step_closure *
8546 arm_displaced_step_copy_insn (struct gdbarch *gdbarch,
8547 CORE_ADDR from, CORE_ADDR to,
8548 struct regcache *regs)
8549 {
8550 struct displaced_step_closure *dsc
8551 = xmalloc (sizeof (struct displaced_step_closure));
8552 arm_process_displaced_insn (gdbarch, from, to, regs, dsc);
8553 arm_displaced_init_closure (gdbarch, from, to, dsc);
8554
8555 return dsc;
8556 }
8557
8558 /* Entry point for cleaning things up after a displaced instruction has been
8559 single-stepped. */
8560
8561 void
8562 arm_displaced_step_fixup (struct gdbarch *gdbarch,
8563 struct displaced_step_closure *dsc,
8564 CORE_ADDR from, CORE_ADDR to,
8565 struct regcache *regs)
8566 {
8567 if (dsc->cleanup)
8568 dsc->cleanup (gdbarch, regs, dsc);
8569
8570 if (!dsc->wrote_to_pc)
8571 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
8572 dsc->insn_addr + dsc->insn_size);
8573
8574 }
8575
8576 #include "bfd-in2.h"
8577 #include "libcoff.h"
8578
8579 static int
8580 gdb_print_insn_arm (bfd_vma memaddr, disassemble_info *info)
8581 {
8582 struct gdbarch *gdbarch = info->application_data;
8583
8584 if (arm_pc_is_thumb (gdbarch, memaddr))
8585 {
8586 static asymbol *asym;
8587 static combined_entry_type ce;
8588 static struct coff_symbol_struct csym;
8589 static struct bfd fake_bfd;
8590 static bfd_target fake_target;
8591
8592 if (csym.native == NULL)
8593 {
8594 /* Create a fake symbol vector containing a Thumb symbol.
8595 This is solely so that the code in print_insn_little_arm()
8596 and print_insn_big_arm() in opcodes/arm-dis.c will detect
8597 the presence of a Thumb symbol and switch to decoding
8598 Thumb instructions. */
8599
8600 fake_target.flavour = bfd_target_coff_flavour;
8601 fake_bfd.xvec = &fake_target;
8602 ce.u.syment.n_sclass = C_THUMBEXTFUNC;
8603 csym.native = &ce;
8604 csym.symbol.the_bfd = &fake_bfd;
8605 csym.symbol.name = "fake";
8606 asym = (asymbol *) & csym;
8607 }
8608
8609 memaddr = UNMAKE_THUMB_ADDR (memaddr);
8610 info->symbols = &asym;
8611 }
8612 else
8613 info->symbols = NULL;
8614
8615 if (info->endian == BFD_ENDIAN_BIG)
8616 return print_insn_big_arm (memaddr, info);
8617 else
8618 return print_insn_little_arm (memaddr, info);
8619 }
8620
8621 /* The following define instruction sequences that will cause ARM
8622 cpu's to take an undefined instruction trap. These are used to
8623 signal a breakpoint to GDB.
8624
8625 The newer ARMv4T cpu's are capable of operating in ARM or Thumb
8626 modes. A different instruction is required for each mode. The ARM
8627 cpu's can also be big or little endian. Thus four different
8628 instructions are needed to support all cases.
8629
8630 Note: ARMv4 defines several new instructions that will take the
8631 undefined instruction trap. ARM7TDMI is nominally ARMv4T, but does
8632 not in fact add the new instructions. The new undefined
8633 instructions in ARMv4 are all instructions that had no defined
8634 behaviour in earlier chips. There is no guarantee that they will
8635 raise an exception, but may be treated as NOP's. In practice, it
8636 may only safe to rely on instructions matching:
8637
8638 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
8639 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
8640 C C C C 0 1 1 x x x x x x x x x x x x x x x x x x x x 1 x x x x
8641
8642 Even this may only true if the condition predicate is true. The
8643 following use a condition predicate of ALWAYS so it is always TRUE.
8644
8645 There are other ways of forcing a breakpoint. GNU/Linux, RISC iX,
8646 and NetBSD all use a software interrupt rather than an undefined
8647 instruction to force a trap. This can be handled by by the
8648 abi-specific code during establishment of the gdbarch vector. */
8649
8650 #define ARM_LE_BREAKPOINT {0xFE,0xDE,0xFF,0xE7}
8651 #define ARM_BE_BREAKPOINT {0xE7,0xFF,0xDE,0xFE}
8652 #define THUMB_LE_BREAKPOINT {0xbe,0xbe}
8653 #define THUMB_BE_BREAKPOINT {0xbe,0xbe}
8654
8655 static const char arm_default_arm_le_breakpoint[] = ARM_LE_BREAKPOINT;
8656 static const char arm_default_arm_be_breakpoint[] = ARM_BE_BREAKPOINT;
8657 static const char arm_default_thumb_le_breakpoint[] = THUMB_LE_BREAKPOINT;
8658 static const char arm_default_thumb_be_breakpoint[] = THUMB_BE_BREAKPOINT;
8659
8660 /* Determine the type and size of breakpoint to insert at PCPTR. Uses
8661 the program counter value to determine whether a 16-bit or 32-bit
8662 breakpoint should be used. It returns a pointer to a string of
8663 bytes that encode a breakpoint instruction, stores the length of
8664 the string to *lenptr, and adjusts the program counter (if
8665 necessary) to point to the actual memory location where the
8666 breakpoint should be inserted. */
8667
8668 static const unsigned char *
8669 arm_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
8670 {
8671 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
8672 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
8673
8674 if (arm_pc_is_thumb (gdbarch, *pcptr))
8675 {
8676 *pcptr = UNMAKE_THUMB_ADDR (*pcptr);
8677
8678 /* If we have a separate 32-bit breakpoint instruction for Thumb-2,
8679 check whether we are replacing a 32-bit instruction. */
8680 if (tdep->thumb2_breakpoint != NULL)
8681 {
8682 gdb_byte buf[2];
8683 if (target_read_memory (*pcptr, buf, 2) == 0)
8684 {
8685 unsigned short inst1;
8686 inst1 = extract_unsigned_integer (buf, 2, byte_order_for_code);
8687 if (thumb_insn_size (inst1) == 4)
8688 {
8689 *lenptr = tdep->thumb2_breakpoint_size;
8690 return tdep->thumb2_breakpoint;
8691 }
8692 }
8693 }
8694
8695 *lenptr = tdep->thumb_breakpoint_size;
8696 return tdep->thumb_breakpoint;
8697 }
8698 else
8699 {
8700 *lenptr = tdep->arm_breakpoint_size;
8701 return tdep->arm_breakpoint;
8702 }
8703 }
8704
8705 static void
8706 arm_remote_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
8707 int *kindptr)
8708 {
8709 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
8710
8711 arm_breakpoint_from_pc (gdbarch, pcptr, kindptr);
8712
8713 if (arm_pc_is_thumb (gdbarch, *pcptr) && *kindptr == 4)
8714 /* The documented magic value for a 32-bit Thumb-2 breakpoint, so
8715 that this is not confused with a 32-bit ARM breakpoint. */
8716 *kindptr = 3;
8717 }
8718
8719 /* Extract from an array REGBUF containing the (raw) register state a
8720 function return value of type TYPE, and copy that, in virtual
8721 format, into VALBUF. */
8722
8723 static void
8724 arm_extract_return_value (struct type *type, struct regcache *regs,
8725 gdb_byte *valbuf)
8726 {
8727 struct gdbarch *gdbarch = get_regcache_arch (regs);
8728 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
8729
8730 if (TYPE_CODE_FLT == TYPE_CODE (type))
8731 {
8732 switch (gdbarch_tdep (gdbarch)->fp_model)
8733 {
8734 case ARM_FLOAT_FPA:
8735 {
8736 /* The value is in register F0 in internal format. We need to
8737 extract the raw value and then convert it to the desired
8738 internal type. */
8739 bfd_byte tmpbuf[FP_REGISTER_SIZE];
8740
8741 regcache_cooked_read (regs, ARM_F0_REGNUM, tmpbuf);
8742 convert_from_extended (floatformat_from_type (type), tmpbuf,
8743 valbuf, gdbarch_byte_order (gdbarch));
8744 }
8745 break;
8746
8747 case ARM_FLOAT_SOFT_FPA:
8748 case ARM_FLOAT_SOFT_VFP:
8749 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8750 not using the VFP ABI code. */
8751 case ARM_FLOAT_VFP:
8752 regcache_cooked_read (regs, ARM_A1_REGNUM, valbuf);
8753 if (TYPE_LENGTH (type) > 4)
8754 regcache_cooked_read (regs, ARM_A1_REGNUM + 1,
8755 valbuf + INT_REGISTER_SIZE);
8756 break;
8757
8758 default:
8759 internal_error (__FILE__, __LINE__,
8760 _("arm_extract_return_value: "
8761 "Floating point model not supported"));
8762 break;
8763 }
8764 }
8765 else if (TYPE_CODE (type) == TYPE_CODE_INT
8766 || TYPE_CODE (type) == TYPE_CODE_CHAR
8767 || TYPE_CODE (type) == TYPE_CODE_BOOL
8768 || TYPE_CODE (type) == TYPE_CODE_PTR
8769 || TYPE_CODE (type) == TYPE_CODE_REF
8770 || TYPE_CODE (type) == TYPE_CODE_ENUM)
8771 {
8772 /* If the type is a plain integer, then the access is
8773 straight-forward. Otherwise we have to play around a bit
8774 more. */
8775 int len = TYPE_LENGTH (type);
8776 int regno = ARM_A1_REGNUM;
8777 ULONGEST tmp;
8778
8779 while (len > 0)
8780 {
8781 /* By using store_unsigned_integer we avoid having to do
8782 anything special for small big-endian values. */
8783 regcache_cooked_read_unsigned (regs, regno++, &tmp);
8784 store_unsigned_integer (valbuf,
8785 (len > INT_REGISTER_SIZE
8786 ? INT_REGISTER_SIZE : len),
8787 byte_order, tmp);
8788 len -= INT_REGISTER_SIZE;
8789 valbuf += INT_REGISTER_SIZE;
8790 }
8791 }
8792 else
8793 {
8794 /* For a structure or union the behaviour is as if the value had
8795 been stored to word-aligned memory and then loaded into
8796 registers with 32-bit load instruction(s). */
8797 int len = TYPE_LENGTH (type);
8798 int regno = ARM_A1_REGNUM;
8799 bfd_byte tmpbuf[INT_REGISTER_SIZE];
8800
8801 while (len > 0)
8802 {
8803 regcache_cooked_read (regs, regno++, tmpbuf);
8804 memcpy (valbuf, tmpbuf,
8805 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
8806 len -= INT_REGISTER_SIZE;
8807 valbuf += INT_REGISTER_SIZE;
8808 }
8809 }
8810 }
8811
8812
8813 /* Will a function return an aggregate type in memory or in a
8814 register? Return 0 if an aggregate type can be returned in a
8815 register, 1 if it must be returned in memory. */
8816
8817 static int
8818 arm_return_in_memory (struct gdbarch *gdbarch, struct type *type)
8819 {
8820 int nRc;
8821 enum type_code code;
8822
8823 CHECK_TYPEDEF (type);
8824
8825 /* In the ARM ABI, "integer" like aggregate types are returned in
8826 registers. For an aggregate type to be integer like, its size
8827 must be less than or equal to INT_REGISTER_SIZE and the
8828 offset of each addressable subfield must be zero. Note that bit
8829 fields are not addressable, and all addressable subfields of
8830 unions always start at offset zero.
8831
8832 This function is based on the behaviour of GCC 2.95.1.
8833 See: gcc/arm.c: arm_return_in_memory() for details.
8834
8835 Note: All versions of GCC before GCC 2.95.2 do not set up the
8836 parameters correctly for a function returning the following
8837 structure: struct { float f;}; This should be returned in memory,
8838 not a register. Richard Earnshaw sent me a patch, but I do not
8839 know of any way to detect if a function like the above has been
8840 compiled with the correct calling convention. */
8841
8842 /* All aggregate types that won't fit in a register must be returned
8843 in memory. */
8844 if (TYPE_LENGTH (type) > INT_REGISTER_SIZE)
8845 {
8846 return 1;
8847 }
8848
8849 /* The AAPCS says all aggregates not larger than a word are returned
8850 in a register. */
8851 if (gdbarch_tdep (gdbarch)->arm_abi != ARM_ABI_APCS)
8852 return 0;
8853
8854 /* The only aggregate types that can be returned in a register are
8855 structs and unions. Arrays must be returned in memory. */
8856 code = TYPE_CODE (type);
8857 if ((TYPE_CODE_STRUCT != code) && (TYPE_CODE_UNION != code))
8858 {
8859 return 1;
8860 }
8861
8862 /* Assume all other aggregate types can be returned in a register.
8863 Run a check for structures, unions and arrays. */
8864 nRc = 0;
8865
8866 if ((TYPE_CODE_STRUCT == code) || (TYPE_CODE_UNION == code))
8867 {
8868 int i;
8869 /* Need to check if this struct/union is "integer" like. For
8870 this to be true, its size must be less than or equal to
8871 INT_REGISTER_SIZE and the offset of each addressable
8872 subfield must be zero. Note that bit fields are not
8873 addressable, and unions always start at offset zero. If any
8874 of the subfields is a floating point type, the struct/union
8875 cannot be an integer type. */
8876
8877 /* For each field in the object, check:
8878 1) Is it FP? --> yes, nRc = 1;
8879 2) Is it addressable (bitpos != 0) and
8880 not packed (bitsize == 0)?
8881 --> yes, nRc = 1
8882 */
8883
8884 for (i = 0; i < TYPE_NFIELDS (type); i++)
8885 {
8886 enum type_code field_type_code;
8887 field_type_code = TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type,
8888 i)));
8889
8890 /* Is it a floating point type field? */
8891 if (field_type_code == TYPE_CODE_FLT)
8892 {
8893 nRc = 1;
8894 break;
8895 }
8896
8897 /* If bitpos != 0, then we have to care about it. */
8898 if (TYPE_FIELD_BITPOS (type, i) != 0)
8899 {
8900 /* Bitfields are not addressable. If the field bitsize is
8901 zero, then the field is not packed. Hence it cannot be
8902 a bitfield or any other packed type. */
8903 if (TYPE_FIELD_BITSIZE (type, i) == 0)
8904 {
8905 nRc = 1;
8906 break;
8907 }
8908 }
8909 }
8910 }
8911
8912 return nRc;
8913 }
8914
8915 /* Write into appropriate registers a function return value of type
8916 TYPE, given in virtual format. */
8917
8918 static void
8919 arm_store_return_value (struct type *type, struct regcache *regs,
8920 const gdb_byte *valbuf)
8921 {
8922 struct gdbarch *gdbarch = get_regcache_arch (regs);
8923 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
8924
8925 if (TYPE_CODE (type) == TYPE_CODE_FLT)
8926 {
8927 char buf[MAX_REGISTER_SIZE];
8928
8929 switch (gdbarch_tdep (gdbarch)->fp_model)
8930 {
8931 case ARM_FLOAT_FPA:
8932
8933 convert_to_extended (floatformat_from_type (type), buf, valbuf,
8934 gdbarch_byte_order (gdbarch));
8935 regcache_cooked_write (regs, ARM_F0_REGNUM, buf);
8936 break;
8937
8938 case ARM_FLOAT_SOFT_FPA:
8939 case ARM_FLOAT_SOFT_VFP:
8940 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8941 not using the VFP ABI code. */
8942 case ARM_FLOAT_VFP:
8943 regcache_cooked_write (regs, ARM_A1_REGNUM, valbuf);
8944 if (TYPE_LENGTH (type) > 4)
8945 regcache_cooked_write (regs, ARM_A1_REGNUM + 1,
8946 valbuf + INT_REGISTER_SIZE);
8947 break;
8948
8949 default:
8950 internal_error (__FILE__, __LINE__,
8951 _("arm_store_return_value: Floating "
8952 "point model not supported"));
8953 break;
8954 }
8955 }
8956 else if (TYPE_CODE (type) == TYPE_CODE_INT
8957 || TYPE_CODE (type) == TYPE_CODE_CHAR
8958 || TYPE_CODE (type) == TYPE_CODE_BOOL
8959 || TYPE_CODE (type) == TYPE_CODE_PTR
8960 || TYPE_CODE (type) == TYPE_CODE_REF
8961 || TYPE_CODE (type) == TYPE_CODE_ENUM)
8962 {
8963 if (TYPE_LENGTH (type) <= 4)
8964 {
8965 /* Values of one word or less are zero/sign-extended and
8966 returned in r0. */
8967 bfd_byte tmpbuf[INT_REGISTER_SIZE];
8968 LONGEST val = unpack_long (type, valbuf);
8969
8970 store_signed_integer (tmpbuf, INT_REGISTER_SIZE, byte_order, val);
8971 regcache_cooked_write (regs, ARM_A1_REGNUM, tmpbuf);
8972 }
8973 else
8974 {
8975 /* Integral values greater than one word are stored in consecutive
8976 registers starting with r0. This will always be a multiple of
8977 the regiser size. */
8978 int len = TYPE_LENGTH (type);
8979 int regno = ARM_A1_REGNUM;
8980
8981 while (len > 0)
8982 {
8983 regcache_cooked_write (regs, regno++, valbuf);
8984 len -= INT_REGISTER_SIZE;
8985 valbuf += INT_REGISTER_SIZE;
8986 }
8987 }
8988 }
8989 else
8990 {
8991 /* For a structure or union the behaviour is as if the value had
8992 been stored to word-aligned memory and then loaded into
8993 registers with 32-bit load instruction(s). */
8994 int len = TYPE_LENGTH (type);
8995 int regno = ARM_A1_REGNUM;
8996 bfd_byte tmpbuf[INT_REGISTER_SIZE];
8997
8998 while (len > 0)
8999 {
9000 memcpy (tmpbuf, valbuf,
9001 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
9002 regcache_cooked_write (regs, regno++, tmpbuf);
9003 len -= INT_REGISTER_SIZE;
9004 valbuf += INT_REGISTER_SIZE;
9005 }
9006 }
9007 }
9008
9009
9010 /* Handle function return values. */
9011
9012 static enum return_value_convention
9013 arm_return_value (struct gdbarch *gdbarch, struct type *func_type,
9014 struct type *valtype, struct regcache *regcache,
9015 gdb_byte *readbuf, const gdb_byte *writebuf)
9016 {
9017 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
9018 enum arm_vfp_cprc_base_type vfp_base_type;
9019 int vfp_base_count;
9020
9021 if (arm_vfp_abi_for_function (gdbarch, func_type)
9022 && arm_vfp_call_candidate (valtype, &vfp_base_type, &vfp_base_count))
9023 {
9024 int reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
9025 int unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
9026 int i;
9027 for (i = 0; i < vfp_base_count; i++)
9028 {
9029 if (reg_char == 'q')
9030 {
9031 if (writebuf)
9032 arm_neon_quad_write (gdbarch, regcache, i,
9033 writebuf + i * unit_length);
9034
9035 if (readbuf)
9036 arm_neon_quad_read (gdbarch, regcache, i,
9037 readbuf + i * unit_length);
9038 }
9039 else
9040 {
9041 char name_buf[4];
9042 int regnum;
9043
9044 sprintf (name_buf, "%c%d", reg_char, i);
9045 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
9046 strlen (name_buf));
9047 if (writebuf)
9048 regcache_cooked_write (regcache, regnum,
9049 writebuf + i * unit_length);
9050 if (readbuf)
9051 regcache_cooked_read (regcache, regnum,
9052 readbuf + i * unit_length);
9053 }
9054 }
9055 return RETURN_VALUE_REGISTER_CONVENTION;
9056 }
9057
9058 if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
9059 || TYPE_CODE (valtype) == TYPE_CODE_UNION
9060 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
9061 {
9062 if (tdep->struct_return == pcc_struct_return
9063 || arm_return_in_memory (gdbarch, valtype))
9064 return RETURN_VALUE_STRUCT_CONVENTION;
9065 }
9066
9067 /* AAPCS returns complex types longer than a register in memory. */
9068 if (tdep->arm_abi != ARM_ABI_APCS
9069 && TYPE_CODE (valtype) == TYPE_CODE_COMPLEX
9070 && TYPE_LENGTH (valtype) > INT_REGISTER_SIZE)
9071 return RETURN_VALUE_STRUCT_CONVENTION;
9072
9073 if (writebuf)
9074 arm_store_return_value (valtype, regcache, writebuf);
9075
9076 if (readbuf)
9077 arm_extract_return_value (valtype, regcache, readbuf);
9078
9079 return RETURN_VALUE_REGISTER_CONVENTION;
9080 }
9081
9082
9083 static int
9084 arm_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
9085 {
9086 struct gdbarch *gdbarch = get_frame_arch (frame);
9087 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
9088 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
9089 CORE_ADDR jb_addr;
9090 char buf[INT_REGISTER_SIZE];
9091
9092 jb_addr = get_frame_register_unsigned (frame, ARM_A1_REGNUM);
9093
9094 if (target_read_memory (jb_addr + tdep->jb_pc * tdep->jb_elt_size, buf,
9095 INT_REGISTER_SIZE))
9096 return 0;
9097
9098 *pc = extract_unsigned_integer (buf, INT_REGISTER_SIZE, byte_order);
9099 return 1;
9100 }
9101
9102 /* Recognize GCC and GNU ld's trampolines. If we are in a trampoline,
9103 return the target PC. Otherwise return 0. */
9104
9105 CORE_ADDR
9106 arm_skip_stub (struct frame_info *frame, CORE_ADDR pc)
9107 {
9108 const char *name;
9109 int namelen;
9110 CORE_ADDR start_addr;
9111
9112 /* Find the starting address and name of the function containing the PC. */
9113 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
9114 return 0;
9115
9116 /* If PC is in a Thumb call or return stub, return the address of the
9117 target PC, which is in a register. The thunk functions are called
9118 _call_via_xx, where x is the register name. The possible names
9119 are r0-r9, sl, fp, ip, sp, and lr. ARM RealView has similar
9120 functions, named __ARM_call_via_r[0-7]. */
9121 if (strncmp (name, "_call_via_", 10) == 0
9122 || strncmp (name, "__ARM_call_via_", strlen ("__ARM_call_via_")) == 0)
9123 {
9124 /* Use the name suffix to determine which register contains the
9125 target PC. */
9126 static char *table[15] =
9127 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
9128 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
9129 };
9130 int regno;
9131 int offset = strlen (name) - 2;
9132
9133 for (regno = 0; regno <= 14; regno++)
9134 if (strcmp (&name[offset], table[regno]) == 0)
9135 return get_frame_register_unsigned (frame, regno);
9136 }
9137
9138 /* GNU ld generates __foo_from_arm or __foo_from_thumb for
9139 non-interworking calls to foo. We could decode the stubs
9140 to find the target but it's easier to use the symbol table. */
9141 namelen = strlen (name);
9142 if (name[0] == '_' && name[1] == '_'
9143 && ((namelen > 2 + strlen ("_from_thumb")
9144 && strncmp (name + namelen - strlen ("_from_thumb"), "_from_thumb",
9145 strlen ("_from_thumb")) == 0)
9146 || (namelen > 2 + strlen ("_from_arm")
9147 && strncmp (name + namelen - strlen ("_from_arm"), "_from_arm",
9148 strlen ("_from_arm")) == 0)))
9149 {
9150 char *target_name;
9151 int target_len = namelen - 2;
9152 struct minimal_symbol *minsym;
9153 struct objfile *objfile;
9154 struct obj_section *sec;
9155
9156 if (name[namelen - 1] == 'b')
9157 target_len -= strlen ("_from_thumb");
9158 else
9159 target_len -= strlen ("_from_arm");
9160
9161 target_name = alloca (target_len + 1);
9162 memcpy (target_name, name + 2, target_len);
9163 target_name[target_len] = '\0';
9164
9165 sec = find_pc_section (pc);
9166 objfile = (sec == NULL) ? NULL : sec->objfile;
9167 minsym = lookup_minimal_symbol (target_name, NULL, objfile);
9168 if (minsym != NULL)
9169 return SYMBOL_VALUE_ADDRESS (minsym);
9170 else
9171 return 0;
9172 }
9173
9174 return 0; /* not a stub */
9175 }
9176
9177 static void
9178 set_arm_command (char *args, int from_tty)
9179 {
9180 printf_unfiltered (_("\
9181 \"set arm\" must be followed by an apporpriate subcommand.\n"));
9182 help_list (setarmcmdlist, "set arm ", all_commands, gdb_stdout);
9183 }
9184
9185 static void
9186 show_arm_command (char *args, int from_tty)
9187 {
9188 cmd_show_list (showarmcmdlist, from_tty, "");
9189 }
9190
9191 static void
9192 arm_update_current_architecture (void)
9193 {
9194 struct gdbarch_info info;
9195
9196 /* If the current architecture is not ARM, we have nothing to do. */
9197 if (gdbarch_bfd_arch_info (target_gdbarch)->arch != bfd_arch_arm)
9198 return;
9199
9200 /* Update the architecture. */
9201 gdbarch_info_init (&info);
9202
9203 if (!gdbarch_update_p (info))
9204 internal_error (__FILE__, __LINE__, _("could not update architecture"));
9205 }
9206
9207 static void
9208 set_fp_model_sfunc (char *args, int from_tty,
9209 struct cmd_list_element *c)
9210 {
9211 enum arm_float_model fp_model;
9212
9213 for (fp_model = ARM_FLOAT_AUTO; fp_model != ARM_FLOAT_LAST; fp_model++)
9214 if (strcmp (current_fp_model, fp_model_strings[fp_model]) == 0)
9215 {
9216 arm_fp_model = fp_model;
9217 break;
9218 }
9219
9220 if (fp_model == ARM_FLOAT_LAST)
9221 internal_error (__FILE__, __LINE__, _("Invalid fp model accepted: %s."),
9222 current_fp_model);
9223
9224 arm_update_current_architecture ();
9225 }
9226
9227 static void
9228 show_fp_model (struct ui_file *file, int from_tty,
9229 struct cmd_list_element *c, const char *value)
9230 {
9231 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch);
9232
9233 if (arm_fp_model == ARM_FLOAT_AUTO
9234 && gdbarch_bfd_arch_info (target_gdbarch)->arch == bfd_arch_arm)
9235 fprintf_filtered (file, _("\
9236 The current ARM floating point model is \"auto\" (currently \"%s\").\n"),
9237 fp_model_strings[tdep->fp_model]);
9238 else
9239 fprintf_filtered (file, _("\
9240 The current ARM floating point model is \"%s\".\n"),
9241 fp_model_strings[arm_fp_model]);
9242 }
9243
9244 static void
9245 arm_set_abi (char *args, int from_tty,
9246 struct cmd_list_element *c)
9247 {
9248 enum arm_abi_kind arm_abi;
9249
9250 for (arm_abi = ARM_ABI_AUTO; arm_abi != ARM_ABI_LAST; arm_abi++)
9251 if (strcmp (arm_abi_string, arm_abi_strings[arm_abi]) == 0)
9252 {
9253 arm_abi_global = arm_abi;
9254 break;
9255 }
9256
9257 if (arm_abi == ARM_ABI_LAST)
9258 internal_error (__FILE__, __LINE__, _("Invalid ABI accepted: %s."),
9259 arm_abi_string);
9260
9261 arm_update_current_architecture ();
9262 }
9263
9264 static void
9265 arm_show_abi (struct ui_file *file, int from_tty,
9266 struct cmd_list_element *c, const char *value)
9267 {
9268 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch);
9269
9270 if (arm_abi_global == ARM_ABI_AUTO
9271 && gdbarch_bfd_arch_info (target_gdbarch)->arch == bfd_arch_arm)
9272 fprintf_filtered (file, _("\
9273 The current ARM ABI is \"auto\" (currently \"%s\").\n"),
9274 arm_abi_strings[tdep->arm_abi]);
9275 else
9276 fprintf_filtered (file, _("The current ARM ABI is \"%s\".\n"),
9277 arm_abi_string);
9278 }
9279
9280 static void
9281 arm_show_fallback_mode (struct ui_file *file, int from_tty,
9282 struct cmd_list_element *c, const char *value)
9283 {
9284 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch);
9285
9286 fprintf_filtered (file,
9287 _("The current execution mode assumed "
9288 "(when symbols are unavailable) is \"%s\".\n"),
9289 arm_fallback_mode_string);
9290 }
9291
9292 static void
9293 arm_show_force_mode (struct ui_file *file, int from_tty,
9294 struct cmd_list_element *c, const char *value)
9295 {
9296 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch);
9297
9298 fprintf_filtered (file,
9299 _("The current execution mode assumed "
9300 "(even when symbols are available) is \"%s\".\n"),
9301 arm_force_mode_string);
9302 }
9303
9304 /* If the user changes the register disassembly style used for info
9305 register and other commands, we have to also switch the style used
9306 in opcodes for disassembly output. This function is run in the "set
9307 arm disassembly" command, and does that. */
9308
9309 static void
9310 set_disassembly_style_sfunc (char *args, int from_tty,
9311 struct cmd_list_element *c)
9312 {
9313 set_disassembly_style ();
9314 }
9315 \f
9316 /* Return the ARM register name corresponding to register I. */
9317 static const char *
9318 arm_register_name (struct gdbarch *gdbarch, int i)
9319 {
9320 const int num_regs = gdbarch_num_regs (gdbarch);
9321
9322 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
9323 && i >= num_regs && i < num_regs + 32)
9324 {
9325 static const char *const vfp_pseudo_names[] = {
9326 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
9327 "s8", "s9", "s10", "s11", "s12", "s13", "s14", "s15",
9328 "s16", "s17", "s18", "s19", "s20", "s21", "s22", "s23",
9329 "s24", "s25", "s26", "s27", "s28", "s29", "s30", "s31",
9330 };
9331
9332 return vfp_pseudo_names[i - num_regs];
9333 }
9334
9335 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
9336 && i >= num_regs + 32 && i < num_regs + 32 + 16)
9337 {
9338 static const char *const neon_pseudo_names[] = {
9339 "q0", "q1", "q2", "q3", "q4", "q5", "q6", "q7",
9340 "q8", "q9", "q10", "q11", "q12", "q13", "q14", "q15",
9341 };
9342
9343 return neon_pseudo_names[i - num_regs - 32];
9344 }
9345
9346 if (i >= ARRAY_SIZE (arm_register_names))
9347 /* These registers are only supported on targets which supply
9348 an XML description. */
9349 return "";
9350
9351 return arm_register_names[i];
9352 }
9353
9354 static void
9355 set_disassembly_style (void)
9356 {
9357 int current;
9358
9359 /* Find the style that the user wants. */
9360 for (current = 0; current < num_disassembly_options; current++)
9361 if (disassembly_style == valid_disassembly_styles[current])
9362 break;
9363 gdb_assert (current < num_disassembly_options);
9364
9365 /* Synchronize the disassembler. */
9366 set_arm_regname_option (current);
9367 }
9368
9369 /* Test whether the coff symbol specific value corresponds to a Thumb
9370 function. */
9371
9372 static int
9373 coff_sym_is_thumb (int val)
9374 {
9375 return (val == C_THUMBEXT
9376 || val == C_THUMBSTAT
9377 || val == C_THUMBEXTFUNC
9378 || val == C_THUMBSTATFUNC
9379 || val == C_THUMBLABEL);
9380 }
9381
9382 /* arm_coff_make_msymbol_special()
9383 arm_elf_make_msymbol_special()
9384
9385 These functions test whether the COFF or ELF symbol corresponds to
9386 an address in thumb code, and set a "special" bit in a minimal
9387 symbol to indicate that it does. */
9388
9389 static void
9390 arm_elf_make_msymbol_special(asymbol *sym, struct minimal_symbol *msym)
9391 {
9392 if (ARM_SYM_BRANCH_TYPE (&((elf_symbol_type *)sym)->internal_elf_sym)
9393 == ST_BRANCH_TO_THUMB)
9394 MSYMBOL_SET_SPECIAL (msym);
9395 }
9396
9397 static void
9398 arm_coff_make_msymbol_special(int val, struct minimal_symbol *msym)
9399 {
9400 if (coff_sym_is_thumb (val))
9401 MSYMBOL_SET_SPECIAL (msym);
9402 }
9403
9404 static void
9405 arm_objfile_data_free (struct objfile *objfile, void *arg)
9406 {
9407 struct arm_per_objfile *data = arg;
9408 unsigned int i;
9409
9410 for (i = 0; i < objfile->obfd->section_count; i++)
9411 VEC_free (arm_mapping_symbol_s, data->section_maps[i]);
9412 }
9413
9414 static void
9415 arm_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile,
9416 asymbol *sym)
9417 {
9418 const char *name = bfd_asymbol_name (sym);
9419 struct arm_per_objfile *data;
9420 VEC(arm_mapping_symbol_s) **map_p;
9421 struct arm_mapping_symbol new_map_sym;
9422
9423 gdb_assert (name[0] == '$');
9424 if (name[1] != 'a' && name[1] != 't' && name[1] != 'd')
9425 return;
9426
9427 data = objfile_data (objfile, arm_objfile_data_key);
9428 if (data == NULL)
9429 {
9430 data = OBSTACK_ZALLOC (&objfile->objfile_obstack,
9431 struct arm_per_objfile);
9432 set_objfile_data (objfile, arm_objfile_data_key, data);
9433 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
9434 objfile->obfd->section_count,
9435 VEC(arm_mapping_symbol_s) *);
9436 }
9437 map_p = &data->section_maps[bfd_get_section (sym)->index];
9438
9439 new_map_sym.value = sym->value;
9440 new_map_sym.type = name[1];
9441
9442 /* Assume that most mapping symbols appear in order of increasing
9443 value. If they were randomly distributed, it would be faster to
9444 always push here and then sort at first use. */
9445 if (!VEC_empty (arm_mapping_symbol_s, *map_p))
9446 {
9447 struct arm_mapping_symbol *prev_map_sym;
9448
9449 prev_map_sym = VEC_last (arm_mapping_symbol_s, *map_p);
9450 if (prev_map_sym->value >= sym->value)
9451 {
9452 unsigned int idx;
9453 idx = VEC_lower_bound (arm_mapping_symbol_s, *map_p, &new_map_sym,
9454 arm_compare_mapping_symbols);
9455 VEC_safe_insert (arm_mapping_symbol_s, *map_p, idx, &new_map_sym);
9456 return;
9457 }
9458 }
9459
9460 VEC_safe_push (arm_mapping_symbol_s, *map_p, &new_map_sym);
9461 }
9462
9463 static void
9464 arm_write_pc (struct regcache *regcache, CORE_ADDR pc)
9465 {
9466 struct gdbarch *gdbarch = get_regcache_arch (regcache);
9467 regcache_cooked_write_unsigned (regcache, ARM_PC_REGNUM, pc);
9468
9469 /* If necessary, set the T bit. */
9470 if (arm_apcs_32)
9471 {
9472 ULONGEST val, t_bit;
9473 regcache_cooked_read_unsigned (regcache, ARM_PS_REGNUM, &val);
9474 t_bit = arm_psr_thumb_bit (gdbarch);
9475 if (arm_pc_is_thumb (gdbarch, pc))
9476 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
9477 val | t_bit);
9478 else
9479 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
9480 val & ~t_bit);
9481 }
9482 }
9483
9484 /* Read the contents of a NEON quad register, by reading from two
9485 double registers. This is used to implement the quad pseudo
9486 registers, and for argument passing in case the quad registers are
9487 missing; vectors are passed in quad registers when using the VFP
9488 ABI, even if a NEON unit is not present. REGNUM is the index of
9489 the quad register, in [0, 15]. */
9490
9491 static enum register_status
9492 arm_neon_quad_read (struct gdbarch *gdbarch, struct regcache *regcache,
9493 int regnum, gdb_byte *buf)
9494 {
9495 char name_buf[4];
9496 gdb_byte reg_buf[8];
9497 int offset, double_regnum;
9498 enum register_status status;
9499
9500 sprintf (name_buf, "d%d", regnum << 1);
9501 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
9502 strlen (name_buf));
9503
9504 /* d0 is always the least significant half of q0. */
9505 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
9506 offset = 8;
9507 else
9508 offset = 0;
9509
9510 status = regcache_raw_read (regcache, double_regnum, reg_buf);
9511 if (status != REG_VALID)
9512 return status;
9513 memcpy (buf + offset, reg_buf, 8);
9514
9515 offset = 8 - offset;
9516 status = regcache_raw_read (regcache, double_regnum + 1, reg_buf);
9517 if (status != REG_VALID)
9518 return status;
9519 memcpy (buf + offset, reg_buf, 8);
9520
9521 return REG_VALID;
9522 }
9523
9524 static enum register_status
9525 arm_pseudo_read (struct gdbarch *gdbarch, struct regcache *regcache,
9526 int regnum, gdb_byte *buf)
9527 {
9528 const int num_regs = gdbarch_num_regs (gdbarch);
9529 char name_buf[4];
9530 gdb_byte reg_buf[8];
9531 int offset, double_regnum;
9532
9533 gdb_assert (regnum >= num_regs);
9534 regnum -= num_regs;
9535
9536 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
9537 /* Quad-precision register. */
9538 return arm_neon_quad_read (gdbarch, regcache, regnum - 32, buf);
9539 else
9540 {
9541 enum register_status status;
9542
9543 /* Single-precision register. */
9544 gdb_assert (regnum < 32);
9545
9546 /* s0 is always the least significant half of d0. */
9547 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
9548 offset = (regnum & 1) ? 0 : 4;
9549 else
9550 offset = (regnum & 1) ? 4 : 0;
9551
9552 sprintf (name_buf, "d%d", regnum >> 1);
9553 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
9554 strlen (name_buf));
9555
9556 status = regcache_raw_read (regcache, double_regnum, reg_buf);
9557 if (status == REG_VALID)
9558 memcpy (buf, reg_buf + offset, 4);
9559 return status;
9560 }
9561 }
9562
9563 /* Store the contents of BUF to a NEON quad register, by writing to
9564 two double registers. This is used to implement the quad pseudo
9565 registers, and for argument passing in case the quad registers are
9566 missing; vectors are passed in quad registers when using the VFP
9567 ABI, even if a NEON unit is not present. REGNUM is the index
9568 of the quad register, in [0, 15]. */
9569
9570 static void
9571 arm_neon_quad_write (struct gdbarch *gdbarch, struct regcache *regcache,
9572 int regnum, const gdb_byte *buf)
9573 {
9574 char name_buf[4];
9575 gdb_byte reg_buf[8];
9576 int offset, double_regnum;
9577
9578 sprintf (name_buf, "d%d", regnum << 1);
9579 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
9580 strlen (name_buf));
9581
9582 /* d0 is always the least significant half of q0. */
9583 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
9584 offset = 8;
9585 else
9586 offset = 0;
9587
9588 regcache_raw_write (regcache, double_regnum, buf + offset);
9589 offset = 8 - offset;
9590 regcache_raw_write (regcache, double_regnum + 1, buf + offset);
9591 }
9592
9593 static void
9594 arm_pseudo_write (struct gdbarch *gdbarch, struct regcache *regcache,
9595 int regnum, const gdb_byte *buf)
9596 {
9597 const int num_regs = gdbarch_num_regs (gdbarch);
9598 char name_buf[4];
9599 gdb_byte reg_buf[8];
9600 int offset, double_regnum;
9601
9602 gdb_assert (regnum >= num_regs);
9603 regnum -= num_regs;
9604
9605 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
9606 /* Quad-precision register. */
9607 arm_neon_quad_write (gdbarch, regcache, regnum - 32, buf);
9608 else
9609 {
9610 /* Single-precision register. */
9611 gdb_assert (regnum < 32);
9612
9613 /* s0 is always the least significant half of d0. */
9614 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
9615 offset = (regnum & 1) ? 0 : 4;
9616 else
9617 offset = (regnum & 1) ? 4 : 0;
9618
9619 sprintf (name_buf, "d%d", regnum >> 1);
9620 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
9621 strlen (name_buf));
9622
9623 regcache_raw_read (regcache, double_regnum, reg_buf);
9624 memcpy (reg_buf + offset, buf, 4);
9625 regcache_raw_write (regcache, double_regnum, reg_buf);
9626 }
9627 }
9628
9629 static struct value *
9630 value_of_arm_user_reg (struct frame_info *frame, const void *baton)
9631 {
9632 const int *reg_p = baton;
9633 return value_of_register (*reg_p, frame);
9634 }
9635 \f
9636 static enum gdb_osabi
9637 arm_elf_osabi_sniffer (bfd *abfd)
9638 {
9639 unsigned int elfosabi;
9640 enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
9641
9642 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
9643
9644 if (elfosabi == ELFOSABI_ARM)
9645 /* GNU tools use this value. Check note sections in this case,
9646 as well. */
9647 bfd_map_over_sections (abfd,
9648 generic_elf_osabi_sniff_abi_tag_sections,
9649 &osabi);
9650
9651 /* Anything else will be handled by the generic ELF sniffer. */
9652 return osabi;
9653 }
9654
9655 static int
9656 arm_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
9657 struct reggroup *group)
9658 {
9659 /* FPS register's type is INT, but belongs to float_reggroup. Beside
9660 this, FPS register belongs to save_regroup, restore_reggroup, and
9661 all_reggroup, of course. */
9662 if (regnum == ARM_FPS_REGNUM)
9663 return (group == float_reggroup
9664 || group == save_reggroup
9665 || group == restore_reggroup
9666 || group == all_reggroup);
9667 else
9668 return default_register_reggroup_p (gdbarch, regnum, group);
9669 }
9670
9671 \f
9672 /* For backward-compatibility we allow two 'g' packet lengths with
9673 the remote protocol depending on whether FPA registers are
9674 supplied. M-profile targets do not have FPA registers, but some
9675 stubs already exist in the wild which use a 'g' packet which
9676 supplies them albeit with dummy values. The packet format which
9677 includes FPA registers should be considered deprecated for
9678 M-profile targets. */
9679
9680 static void
9681 arm_register_g_packet_guesses (struct gdbarch *gdbarch)
9682 {
9683 if (gdbarch_tdep (gdbarch)->is_m)
9684 {
9685 /* If we know from the executable this is an M-profile target,
9686 cater for remote targets whose register set layout is the
9687 same as the FPA layout. */
9688 register_remote_g_packet_guess (gdbarch,
9689 /* r0-r12,sp,lr,pc; f0-f7; fps,cpsr */
9690 (16 * INT_REGISTER_SIZE)
9691 + (8 * FP_REGISTER_SIZE)
9692 + (2 * INT_REGISTER_SIZE),
9693 tdesc_arm_with_m_fpa_layout);
9694
9695 /* The regular M-profile layout. */
9696 register_remote_g_packet_guess (gdbarch,
9697 /* r0-r12,sp,lr,pc; xpsr */
9698 (16 * INT_REGISTER_SIZE)
9699 + INT_REGISTER_SIZE,
9700 tdesc_arm_with_m);
9701 }
9702
9703 /* Otherwise we don't have a useful guess. */
9704 }
9705
9706 \f
9707 /* Initialize the current architecture based on INFO. If possible,
9708 re-use an architecture from ARCHES, which is a list of
9709 architectures already created during this debugging session.
9710
9711 Called e.g. at program startup, when reading a core file, and when
9712 reading a binary file. */
9713
9714 static struct gdbarch *
9715 arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
9716 {
9717 struct gdbarch_tdep *tdep;
9718 struct gdbarch *gdbarch;
9719 struct gdbarch_list *best_arch;
9720 enum arm_abi_kind arm_abi = arm_abi_global;
9721 enum arm_float_model fp_model = arm_fp_model;
9722 struct tdesc_arch_data *tdesc_data = NULL;
9723 int i, is_m = 0;
9724 int have_vfp_registers = 0, have_vfp_pseudos = 0, have_neon_pseudos = 0;
9725 int have_neon = 0;
9726 int have_fpa_registers = 1;
9727 const struct target_desc *tdesc = info.target_desc;
9728
9729 /* If we have an object to base this architecture on, try to determine
9730 its ABI. */
9731
9732 if (arm_abi == ARM_ABI_AUTO && info.abfd != NULL)
9733 {
9734 int ei_osabi, e_flags;
9735
9736 switch (bfd_get_flavour (info.abfd))
9737 {
9738 case bfd_target_aout_flavour:
9739 /* Assume it's an old APCS-style ABI. */
9740 arm_abi = ARM_ABI_APCS;
9741 break;
9742
9743 case bfd_target_coff_flavour:
9744 /* Assume it's an old APCS-style ABI. */
9745 /* XXX WinCE? */
9746 arm_abi = ARM_ABI_APCS;
9747 break;
9748
9749 case bfd_target_elf_flavour:
9750 ei_osabi = elf_elfheader (info.abfd)->e_ident[EI_OSABI];
9751 e_flags = elf_elfheader (info.abfd)->e_flags;
9752
9753 if (ei_osabi == ELFOSABI_ARM)
9754 {
9755 /* GNU tools used to use this value, but do not for EABI
9756 objects. There's nowhere to tag an EABI version
9757 anyway, so assume APCS. */
9758 arm_abi = ARM_ABI_APCS;
9759 }
9760 else if (ei_osabi == ELFOSABI_NONE)
9761 {
9762 int eabi_ver = EF_ARM_EABI_VERSION (e_flags);
9763 int attr_arch, attr_profile;
9764
9765 switch (eabi_ver)
9766 {
9767 case EF_ARM_EABI_UNKNOWN:
9768 /* Assume GNU tools. */
9769 arm_abi = ARM_ABI_APCS;
9770 break;
9771
9772 case EF_ARM_EABI_VER4:
9773 case EF_ARM_EABI_VER5:
9774 arm_abi = ARM_ABI_AAPCS;
9775 /* EABI binaries default to VFP float ordering.
9776 They may also contain build attributes that can
9777 be used to identify if the VFP argument-passing
9778 ABI is in use. */
9779 if (fp_model == ARM_FLOAT_AUTO)
9780 {
9781 #ifdef HAVE_ELF
9782 switch (bfd_elf_get_obj_attr_int (info.abfd,
9783 OBJ_ATTR_PROC,
9784 Tag_ABI_VFP_args))
9785 {
9786 case 0:
9787 /* "The user intended FP parameter/result
9788 passing to conform to AAPCS, base
9789 variant". */
9790 fp_model = ARM_FLOAT_SOFT_VFP;
9791 break;
9792 case 1:
9793 /* "The user intended FP parameter/result
9794 passing to conform to AAPCS, VFP
9795 variant". */
9796 fp_model = ARM_FLOAT_VFP;
9797 break;
9798 case 2:
9799 /* "The user intended FP parameter/result
9800 passing to conform to tool chain-specific
9801 conventions" - we don't know any such
9802 conventions, so leave it as "auto". */
9803 break;
9804 default:
9805 /* Attribute value not mentioned in the
9806 October 2008 ABI, so leave it as
9807 "auto". */
9808 break;
9809 }
9810 #else
9811 fp_model = ARM_FLOAT_SOFT_VFP;
9812 #endif
9813 }
9814 break;
9815
9816 default:
9817 /* Leave it as "auto". */
9818 warning (_("unknown ARM EABI version 0x%x"), eabi_ver);
9819 break;
9820 }
9821
9822 #ifdef HAVE_ELF
9823 /* Detect M-profile programs. This only works if the
9824 executable file includes build attributes; GCC does
9825 copy them to the executable, but e.g. RealView does
9826 not. */
9827 attr_arch = bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_PROC,
9828 Tag_CPU_arch);
9829 attr_profile = bfd_elf_get_obj_attr_int (info.abfd,
9830 OBJ_ATTR_PROC,
9831 Tag_CPU_arch_profile);
9832 /* GCC specifies the profile for v6-M; RealView only
9833 specifies the profile for architectures starting with
9834 V7 (as opposed to architectures with a tag
9835 numerically greater than TAG_CPU_ARCH_V7). */
9836 if (!tdesc_has_registers (tdesc)
9837 && (attr_arch == TAG_CPU_ARCH_V6_M
9838 || attr_arch == TAG_CPU_ARCH_V6S_M
9839 || attr_profile == 'M'))
9840 is_m = 1;
9841 #endif
9842 }
9843
9844 if (fp_model == ARM_FLOAT_AUTO)
9845 {
9846 int e_flags = elf_elfheader (info.abfd)->e_flags;
9847
9848 switch (e_flags & (EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT))
9849 {
9850 case 0:
9851 /* Leave it as "auto". Strictly speaking this case
9852 means FPA, but almost nobody uses that now, and
9853 many toolchains fail to set the appropriate bits
9854 for the floating-point model they use. */
9855 break;
9856 case EF_ARM_SOFT_FLOAT:
9857 fp_model = ARM_FLOAT_SOFT_FPA;
9858 break;
9859 case EF_ARM_VFP_FLOAT:
9860 fp_model = ARM_FLOAT_VFP;
9861 break;
9862 case EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT:
9863 fp_model = ARM_FLOAT_SOFT_VFP;
9864 break;
9865 }
9866 }
9867
9868 if (e_flags & EF_ARM_BE8)
9869 info.byte_order_for_code = BFD_ENDIAN_LITTLE;
9870
9871 break;
9872
9873 default:
9874 /* Leave it as "auto". */
9875 break;
9876 }
9877 }
9878
9879 /* Check any target description for validity. */
9880 if (tdesc_has_registers (tdesc))
9881 {
9882 /* For most registers we require GDB's default names; but also allow
9883 the numeric names for sp / lr / pc, as a convenience. */
9884 static const char *const arm_sp_names[] = { "r13", "sp", NULL };
9885 static const char *const arm_lr_names[] = { "r14", "lr", NULL };
9886 static const char *const arm_pc_names[] = { "r15", "pc", NULL };
9887
9888 const struct tdesc_feature *feature;
9889 int valid_p;
9890
9891 feature = tdesc_find_feature (tdesc,
9892 "org.gnu.gdb.arm.core");
9893 if (feature == NULL)
9894 {
9895 feature = tdesc_find_feature (tdesc,
9896 "org.gnu.gdb.arm.m-profile");
9897 if (feature == NULL)
9898 return NULL;
9899 else
9900 is_m = 1;
9901 }
9902
9903 tdesc_data = tdesc_data_alloc ();
9904
9905 valid_p = 1;
9906 for (i = 0; i < ARM_SP_REGNUM; i++)
9907 valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
9908 arm_register_names[i]);
9909 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9910 ARM_SP_REGNUM,
9911 arm_sp_names);
9912 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9913 ARM_LR_REGNUM,
9914 arm_lr_names);
9915 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9916 ARM_PC_REGNUM,
9917 arm_pc_names);
9918 if (is_m)
9919 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9920 ARM_PS_REGNUM, "xpsr");
9921 else
9922 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9923 ARM_PS_REGNUM, "cpsr");
9924
9925 if (!valid_p)
9926 {
9927 tdesc_data_cleanup (tdesc_data);
9928 return NULL;
9929 }
9930
9931 feature = tdesc_find_feature (tdesc,
9932 "org.gnu.gdb.arm.fpa");
9933 if (feature != NULL)
9934 {
9935 valid_p = 1;
9936 for (i = ARM_F0_REGNUM; i <= ARM_FPS_REGNUM; i++)
9937 valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
9938 arm_register_names[i]);
9939 if (!valid_p)
9940 {
9941 tdesc_data_cleanup (tdesc_data);
9942 return NULL;
9943 }
9944 }
9945 else
9946 have_fpa_registers = 0;
9947
9948 feature = tdesc_find_feature (tdesc,
9949 "org.gnu.gdb.xscale.iwmmxt");
9950 if (feature != NULL)
9951 {
9952 static const char *const iwmmxt_names[] = {
9953 "wR0", "wR1", "wR2", "wR3", "wR4", "wR5", "wR6", "wR7",
9954 "wR8", "wR9", "wR10", "wR11", "wR12", "wR13", "wR14", "wR15",
9955 "wCID", "wCon", "wCSSF", "wCASF", "", "", "", "",
9956 "wCGR0", "wCGR1", "wCGR2", "wCGR3", "", "", "", "",
9957 };
9958
9959 valid_p = 1;
9960 for (i = ARM_WR0_REGNUM; i <= ARM_WR15_REGNUM; i++)
9961 valid_p
9962 &= tdesc_numbered_register (feature, tdesc_data, i,
9963 iwmmxt_names[i - ARM_WR0_REGNUM]);
9964
9965 /* Check for the control registers, but do not fail if they
9966 are missing. */
9967 for (i = ARM_WC0_REGNUM; i <= ARM_WCASF_REGNUM; i++)
9968 tdesc_numbered_register (feature, tdesc_data, i,
9969 iwmmxt_names[i - ARM_WR0_REGNUM]);
9970
9971 for (i = ARM_WCGR0_REGNUM; i <= ARM_WCGR3_REGNUM; i++)
9972 valid_p
9973 &= tdesc_numbered_register (feature, tdesc_data, i,
9974 iwmmxt_names[i - ARM_WR0_REGNUM]);
9975
9976 if (!valid_p)
9977 {
9978 tdesc_data_cleanup (tdesc_data);
9979 return NULL;
9980 }
9981 }
9982
9983 /* If we have a VFP unit, check whether the single precision registers
9984 are present. If not, then we will synthesize them as pseudo
9985 registers. */
9986 feature = tdesc_find_feature (tdesc,
9987 "org.gnu.gdb.arm.vfp");
9988 if (feature != NULL)
9989 {
9990 static const char *const vfp_double_names[] = {
9991 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
9992 "d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15",
9993 "d16", "d17", "d18", "d19", "d20", "d21", "d22", "d23",
9994 "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31",
9995 };
9996
9997 /* Require the double precision registers. There must be either
9998 16 or 32. */
9999 valid_p = 1;
10000 for (i = 0; i < 32; i++)
10001 {
10002 valid_p &= tdesc_numbered_register (feature, tdesc_data,
10003 ARM_D0_REGNUM + i,
10004 vfp_double_names[i]);
10005 if (!valid_p)
10006 break;
10007 }
10008 if (!valid_p && i == 16)
10009 valid_p = 1;
10010
10011 /* Also require FPSCR. */
10012 valid_p &= tdesc_numbered_register (feature, tdesc_data,
10013 ARM_FPSCR_REGNUM, "fpscr");
10014 if (!valid_p)
10015 {
10016 tdesc_data_cleanup (tdesc_data);
10017 return NULL;
10018 }
10019
10020 if (tdesc_unnumbered_register (feature, "s0") == 0)
10021 have_vfp_pseudos = 1;
10022
10023 have_vfp_registers = 1;
10024
10025 /* If we have VFP, also check for NEON. The architecture allows
10026 NEON without VFP (integer vector operations only), but GDB
10027 does not support that. */
10028 feature = tdesc_find_feature (tdesc,
10029 "org.gnu.gdb.arm.neon");
10030 if (feature != NULL)
10031 {
10032 /* NEON requires 32 double-precision registers. */
10033 if (i != 32)
10034 {
10035 tdesc_data_cleanup (tdesc_data);
10036 return NULL;
10037 }
10038
10039 /* If there are quad registers defined by the stub, use
10040 their type; otherwise (normally) provide them with
10041 the default type. */
10042 if (tdesc_unnumbered_register (feature, "q0") == 0)
10043 have_neon_pseudos = 1;
10044
10045 have_neon = 1;
10046 }
10047 }
10048 }
10049
10050 /* If there is already a candidate, use it. */
10051 for (best_arch = gdbarch_list_lookup_by_info (arches, &info);
10052 best_arch != NULL;
10053 best_arch = gdbarch_list_lookup_by_info (best_arch->next, &info))
10054 {
10055 if (arm_abi != ARM_ABI_AUTO
10056 && arm_abi != gdbarch_tdep (best_arch->gdbarch)->arm_abi)
10057 continue;
10058
10059 if (fp_model != ARM_FLOAT_AUTO
10060 && fp_model != gdbarch_tdep (best_arch->gdbarch)->fp_model)
10061 continue;
10062
10063 /* There are various other properties in tdep that we do not
10064 need to check here: those derived from a target description,
10065 since gdbarches with a different target description are
10066 automatically disqualified. */
10067
10068 /* Do check is_m, though, since it might come from the binary. */
10069 if (is_m != gdbarch_tdep (best_arch->gdbarch)->is_m)
10070 continue;
10071
10072 /* Found a match. */
10073 break;
10074 }
10075
10076 if (best_arch != NULL)
10077 {
10078 if (tdesc_data != NULL)
10079 tdesc_data_cleanup (tdesc_data);
10080 return best_arch->gdbarch;
10081 }
10082
10083 tdep = xcalloc (1, sizeof (struct gdbarch_tdep));
10084 gdbarch = gdbarch_alloc (&info, tdep);
10085
10086 /* Record additional information about the architecture we are defining.
10087 These are gdbarch discriminators, like the OSABI. */
10088 tdep->arm_abi = arm_abi;
10089 tdep->fp_model = fp_model;
10090 tdep->is_m = is_m;
10091 tdep->have_fpa_registers = have_fpa_registers;
10092 tdep->have_vfp_registers = have_vfp_registers;
10093 tdep->have_vfp_pseudos = have_vfp_pseudos;
10094 tdep->have_neon_pseudos = have_neon_pseudos;
10095 tdep->have_neon = have_neon;
10096
10097 arm_register_g_packet_guesses (gdbarch);
10098
10099 /* Breakpoints. */
10100 switch (info.byte_order_for_code)
10101 {
10102 case BFD_ENDIAN_BIG:
10103 tdep->arm_breakpoint = arm_default_arm_be_breakpoint;
10104 tdep->arm_breakpoint_size = sizeof (arm_default_arm_be_breakpoint);
10105 tdep->thumb_breakpoint = arm_default_thumb_be_breakpoint;
10106 tdep->thumb_breakpoint_size = sizeof (arm_default_thumb_be_breakpoint);
10107
10108 break;
10109
10110 case BFD_ENDIAN_LITTLE:
10111 tdep->arm_breakpoint = arm_default_arm_le_breakpoint;
10112 tdep->arm_breakpoint_size = sizeof (arm_default_arm_le_breakpoint);
10113 tdep->thumb_breakpoint = arm_default_thumb_le_breakpoint;
10114 tdep->thumb_breakpoint_size = sizeof (arm_default_thumb_le_breakpoint);
10115
10116 break;
10117
10118 default:
10119 internal_error (__FILE__, __LINE__,
10120 _("arm_gdbarch_init: bad byte order for float format"));
10121 }
10122
10123 /* On ARM targets char defaults to unsigned. */
10124 set_gdbarch_char_signed (gdbarch, 0);
10125
10126 /* Note: for displaced stepping, this includes the breakpoint, and one word
10127 of additional scratch space. This setting isn't used for anything beside
10128 displaced stepping at present. */
10129 set_gdbarch_max_insn_length (gdbarch, 4 * DISPLACED_MODIFIED_INSNS);
10130
10131 /* This should be low enough for everything. */
10132 tdep->lowest_pc = 0x20;
10133 tdep->jb_pc = -1; /* Longjump support not enabled by default. */
10134
10135 /* The default, for both APCS and AAPCS, is to return small
10136 structures in registers. */
10137 tdep->struct_return = reg_struct_return;
10138
10139 set_gdbarch_push_dummy_call (gdbarch, arm_push_dummy_call);
10140 set_gdbarch_frame_align (gdbarch, arm_frame_align);
10141
10142 set_gdbarch_write_pc (gdbarch, arm_write_pc);
10143
10144 /* Frame handling. */
10145 set_gdbarch_dummy_id (gdbarch, arm_dummy_id);
10146 set_gdbarch_unwind_pc (gdbarch, arm_unwind_pc);
10147 set_gdbarch_unwind_sp (gdbarch, arm_unwind_sp);
10148
10149 frame_base_set_default (gdbarch, &arm_normal_base);
10150
10151 /* Address manipulation. */
10152 set_gdbarch_smash_text_address (gdbarch, arm_smash_text_address);
10153 set_gdbarch_addr_bits_remove (gdbarch, arm_addr_bits_remove);
10154
10155 /* Advance PC across function entry code. */
10156 set_gdbarch_skip_prologue (gdbarch, arm_skip_prologue);
10157
10158 /* Detect whether PC is in function epilogue. */
10159 set_gdbarch_in_function_epilogue_p (gdbarch, arm_in_function_epilogue_p);
10160
10161 /* Skip trampolines. */
10162 set_gdbarch_skip_trampoline_code (gdbarch, arm_skip_stub);
10163
10164 /* The stack grows downward. */
10165 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
10166
10167 /* Breakpoint manipulation. */
10168 set_gdbarch_breakpoint_from_pc (gdbarch, arm_breakpoint_from_pc);
10169 set_gdbarch_remote_breakpoint_from_pc (gdbarch,
10170 arm_remote_breakpoint_from_pc);
10171
10172 /* Information about registers, etc. */
10173 set_gdbarch_sp_regnum (gdbarch, ARM_SP_REGNUM);
10174 set_gdbarch_pc_regnum (gdbarch, ARM_PC_REGNUM);
10175 set_gdbarch_num_regs (gdbarch, ARM_NUM_REGS);
10176 set_gdbarch_register_type (gdbarch, arm_register_type);
10177 set_gdbarch_register_reggroup_p (gdbarch, arm_register_reggroup_p);
10178
10179 /* This "info float" is FPA-specific. Use the generic version if we
10180 do not have FPA. */
10181 if (gdbarch_tdep (gdbarch)->have_fpa_registers)
10182 set_gdbarch_print_float_info (gdbarch, arm_print_float_info);
10183
10184 /* Internal <-> external register number maps. */
10185 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, arm_dwarf_reg_to_regnum);
10186 set_gdbarch_register_sim_regno (gdbarch, arm_register_sim_regno);
10187
10188 set_gdbarch_register_name (gdbarch, arm_register_name);
10189
10190 /* Returning results. */
10191 set_gdbarch_return_value (gdbarch, arm_return_value);
10192
10193 /* Disassembly. */
10194 set_gdbarch_print_insn (gdbarch, gdb_print_insn_arm);
10195
10196 /* Minsymbol frobbing. */
10197 set_gdbarch_elf_make_msymbol_special (gdbarch, arm_elf_make_msymbol_special);
10198 set_gdbarch_coff_make_msymbol_special (gdbarch,
10199 arm_coff_make_msymbol_special);
10200 set_gdbarch_record_special_symbol (gdbarch, arm_record_special_symbol);
10201
10202 /* Thumb-2 IT block support. */
10203 set_gdbarch_adjust_breakpoint_address (gdbarch,
10204 arm_adjust_breakpoint_address);
10205
10206 /* Virtual tables. */
10207 set_gdbarch_vbit_in_delta (gdbarch, 1);
10208
10209 /* Hook in the ABI-specific overrides, if they have been registered. */
10210 gdbarch_init_osabi (info, gdbarch);
10211
10212 dwarf2_frame_set_init_reg (gdbarch, arm_dwarf2_frame_init_reg);
10213
10214 /* Add some default predicates. */
10215 frame_unwind_append_unwinder (gdbarch, &arm_stub_unwind);
10216 dwarf2_append_unwinders (gdbarch);
10217 frame_unwind_append_unwinder (gdbarch, &arm_exidx_unwind);
10218 frame_unwind_append_unwinder (gdbarch, &arm_prologue_unwind);
10219
10220 /* Now we have tuned the configuration, set a few final things,
10221 based on what the OS ABI has told us. */
10222
10223 /* If the ABI is not otherwise marked, assume the old GNU APCS. EABI
10224 binaries are always marked. */
10225 if (tdep->arm_abi == ARM_ABI_AUTO)
10226 tdep->arm_abi = ARM_ABI_APCS;
10227
10228 /* Watchpoints are not steppable. */
10229 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
10230
10231 /* We used to default to FPA for generic ARM, but almost nobody
10232 uses that now, and we now provide a way for the user to force
10233 the model. So default to the most useful variant. */
10234 if (tdep->fp_model == ARM_FLOAT_AUTO)
10235 tdep->fp_model = ARM_FLOAT_SOFT_FPA;
10236
10237 if (tdep->jb_pc >= 0)
10238 set_gdbarch_get_longjmp_target (gdbarch, arm_get_longjmp_target);
10239
10240 /* Floating point sizes and format. */
10241 set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
10242 if (tdep->fp_model == ARM_FLOAT_SOFT_FPA || tdep->fp_model == ARM_FLOAT_FPA)
10243 {
10244 set_gdbarch_double_format
10245 (gdbarch, floatformats_ieee_double_littlebyte_bigword);
10246 set_gdbarch_long_double_format
10247 (gdbarch, floatformats_ieee_double_littlebyte_bigword);
10248 }
10249 else
10250 {
10251 set_gdbarch_double_format (gdbarch, floatformats_ieee_double);
10252 set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double);
10253 }
10254
10255 if (have_vfp_pseudos)
10256 {
10257 /* NOTE: These are the only pseudo registers used by
10258 the ARM target at the moment. If more are added, a
10259 little more care in numbering will be needed. */
10260
10261 int num_pseudos = 32;
10262 if (have_neon_pseudos)
10263 num_pseudos += 16;
10264 set_gdbarch_num_pseudo_regs (gdbarch, num_pseudos);
10265 set_gdbarch_pseudo_register_read (gdbarch, arm_pseudo_read);
10266 set_gdbarch_pseudo_register_write (gdbarch, arm_pseudo_write);
10267 }
10268
10269 if (tdesc_data)
10270 {
10271 set_tdesc_pseudo_register_name (gdbarch, arm_register_name);
10272
10273 tdesc_use_registers (gdbarch, tdesc, tdesc_data);
10274
10275 /* Override tdesc_register_type to adjust the types of VFP
10276 registers for NEON. */
10277 set_gdbarch_register_type (gdbarch, arm_register_type);
10278 }
10279
10280 /* Add standard register aliases. We add aliases even for those
10281 nanes which are used by the current architecture - it's simpler,
10282 and does no harm, since nothing ever lists user registers. */
10283 for (i = 0; i < ARRAY_SIZE (arm_register_aliases); i++)
10284 user_reg_add (gdbarch, arm_register_aliases[i].name,
10285 value_of_arm_user_reg, &arm_register_aliases[i].regnum);
10286
10287 return gdbarch;
10288 }
10289
10290 static void
10291 arm_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
10292 {
10293 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
10294
10295 if (tdep == NULL)
10296 return;
10297
10298 fprintf_unfiltered (file, _("arm_dump_tdep: Lowest pc = 0x%lx"),
10299 (unsigned long) tdep->lowest_pc);
10300 }
10301
10302 extern initialize_file_ftype _initialize_arm_tdep; /* -Wmissing-prototypes */
10303
10304 void
10305 _initialize_arm_tdep (void)
10306 {
10307 struct ui_file *stb;
10308 long length;
10309 struct cmd_list_element *new_set, *new_show;
10310 const char *setname;
10311 const char *setdesc;
10312 const char *const *regnames;
10313 int numregs, i, j;
10314 static char *helptext;
10315 char regdesc[1024], *rdptr = regdesc;
10316 size_t rest = sizeof (regdesc);
10317
10318 gdbarch_register (bfd_arch_arm, arm_gdbarch_init, arm_dump_tdep);
10319
10320 arm_objfile_data_key
10321 = register_objfile_data_with_cleanup (NULL, arm_objfile_data_free);
10322
10323 /* Add ourselves to objfile event chain. */
10324 observer_attach_new_objfile (arm_exidx_new_objfile);
10325 arm_exidx_data_key
10326 = register_objfile_data_with_cleanup (NULL, arm_exidx_data_free);
10327
10328 /* Register an ELF OS ABI sniffer for ARM binaries. */
10329 gdbarch_register_osabi_sniffer (bfd_arch_arm,
10330 bfd_target_elf_flavour,
10331 arm_elf_osabi_sniffer);
10332
10333 /* Initialize the standard target descriptions. */
10334 initialize_tdesc_arm_with_m ();
10335 initialize_tdesc_arm_with_m_fpa_layout ();
10336 initialize_tdesc_arm_with_iwmmxt ();
10337 initialize_tdesc_arm_with_vfpv2 ();
10338 initialize_tdesc_arm_with_vfpv3 ();
10339 initialize_tdesc_arm_with_neon ();
10340
10341 /* Get the number of possible sets of register names defined in opcodes. */
10342 num_disassembly_options = get_arm_regname_num_options ();
10343
10344 /* Add root prefix command for all "set arm"/"show arm" commands. */
10345 add_prefix_cmd ("arm", no_class, set_arm_command,
10346 _("Various ARM-specific commands."),
10347 &setarmcmdlist, "set arm ", 0, &setlist);
10348
10349 add_prefix_cmd ("arm", no_class, show_arm_command,
10350 _("Various ARM-specific commands."),
10351 &showarmcmdlist, "show arm ", 0, &showlist);
10352
10353 /* Sync the opcode insn printer with our register viewer. */
10354 parse_arm_disassembler_option ("reg-names-std");
10355
10356 /* Initialize the array that will be passed to
10357 add_setshow_enum_cmd(). */
10358 valid_disassembly_styles
10359 = xmalloc ((num_disassembly_options + 1) * sizeof (char *));
10360 for (i = 0; i < num_disassembly_options; i++)
10361 {
10362 numregs = get_arm_regnames (i, &setname, &setdesc, &regnames);
10363 valid_disassembly_styles[i] = setname;
10364 length = snprintf (rdptr, rest, "%s - %s\n", setname, setdesc);
10365 rdptr += length;
10366 rest -= length;
10367 /* When we find the default names, tell the disassembler to use
10368 them. */
10369 if (!strcmp (setname, "std"))
10370 {
10371 disassembly_style = setname;
10372 set_arm_regname_option (i);
10373 }
10374 }
10375 /* Mark the end of valid options. */
10376 valid_disassembly_styles[num_disassembly_options] = NULL;
10377
10378 /* Create the help text. */
10379 stb = mem_fileopen ();
10380 fprintf_unfiltered (stb, "%s%s%s",
10381 _("The valid values are:\n"),
10382 regdesc,
10383 _("The default is \"std\"."));
10384 helptext = ui_file_xstrdup (stb, NULL);
10385 ui_file_delete (stb);
10386
10387 add_setshow_enum_cmd("disassembler", no_class,
10388 valid_disassembly_styles, &disassembly_style,
10389 _("Set the disassembly style."),
10390 _("Show the disassembly style."),
10391 helptext,
10392 set_disassembly_style_sfunc,
10393 NULL, /* FIXME: i18n: The disassembly style is
10394 \"%s\". */
10395 &setarmcmdlist, &showarmcmdlist);
10396
10397 add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32,
10398 _("Set usage of ARM 32-bit mode."),
10399 _("Show usage of ARM 32-bit mode."),
10400 _("When off, a 26-bit PC will be used."),
10401 NULL,
10402 NULL, /* FIXME: i18n: Usage of ARM 32-bit
10403 mode is %s. */
10404 &setarmcmdlist, &showarmcmdlist);
10405
10406 /* Add a command to allow the user to force the FPU model. */
10407 add_setshow_enum_cmd ("fpu", no_class, fp_model_strings, &current_fp_model,
10408 _("Set the floating point type."),
10409 _("Show the floating point type."),
10410 _("auto - Determine the FP typefrom the OS-ABI.\n\
10411 softfpa - Software FP, mixed-endian doubles on little-endian ARMs.\n\
10412 fpa - FPA co-processor (GCC compiled).\n\
10413 softvfp - Software FP with pure-endian doubles.\n\
10414 vfp - VFP co-processor."),
10415 set_fp_model_sfunc, show_fp_model,
10416 &setarmcmdlist, &showarmcmdlist);
10417
10418 /* Add a command to allow the user to force the ABI. */
10419 add_setshow_enum_cmd ("abi", class_support, arm_abi_strings, &arm_abi_string,
10420 _("Set the ABI."),
10421 _("Show the ABI."),
10422 NULL, arm_set_abi, arm_show_abi,
10423 &setarmcmdlist, &showarmcmdlist);
10424
10425 /* Add two commands to allow the user to force the assumed
10426 execution mode. */
10427 add_setshow_enum_cmd ("fallback-mode", class_support,
10428 arm_mode_strings, &arm_fallback_mode_string,
10429 _("Set the mode assumed when symbols are unavailable."),
10430 _("Show the mode assumed when symbols are unavailable."),
10431 NULL, NULL, arm_show_fallback_mode,
10432 &setarmcmdlist, &showarmcmdlist);
10433 add_setshow_enum_cmd ("force-mode", class_support,
10434 arm_mode_strings, &arm_force_mode_string,
10435 _("Set the mode assumed even when symbols are available."),
10436 _("Show the mode assumed even when symbols are available."),
10437 NULL, NULL, arm_show_force_mode,
10438 &setarmcmdlist, &showarmcmdlist);
10439
10440 /* Debugging flag. */
10441 add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
10442 _("Set ARM debugging."),
10443 _("Show ARM debugging."),
10444 _("When on, arm-specific debugging is enabled."),
10445 NULL,
10446 NULL, /* FIXME: i18n: "ARM debugging is %s. */
10447 &setdebuglist, &showdebuglist);
10448 }
10449
10450 /* ARM-reversible process record data structures. */
10451
10452 #define ARM_INSN_SIZE_BYTES 4
10453 #define THUMB_INSN_SIZE_BYTES 2
10454 #define THUMB2_INSN_SIZE_BYTES 4
10455
10456
10457 #define INSN_S_L_BIT_NUM 20
10458
10459 #define REG_ALLOC(REGS, LENGTH, RECORD_BUF) \
10460 do \
10461 { \
10462 unsigned int reg_len = LENGTH; \
10463 if (reg_len) \
10464 { \
10465 REGS = XNEWVEC (uint32_t, reg_len); \
10466 memcpy(&REGS[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
10467 } \
10468 } \
10469 while (0)
10470
10471 #define MEM_ALLOC(MEMS, LENGTH, RECORD_BUF) \
10472 do \
10473 { \
10474 unsigned int mem_len = LENGTH; \
10475 if (mem_len) \
10476 { \
10477 MEMS = XNEWVEC (struct arm_mem_r, mem_len); \
10478 memcpy(&MEMS->len, &RECORD_BUF[0], \
10479 sizeof(struct arm_mem_r) * LENGTH); \
10480 } \
10481 } \
10482 while (0)
10483
10484 /* Checks whether insn is already recorded or yet to be decoded. (boolean expression). */
10485 #define INSN_RECORDED(ARM_RECORD) \
10486 (0 != (ARM_RECORD)->reg_rec_count || 0 != (ARM_RECORD)->mem_rec_count)
10487
10488 /* ARM memory record structure. */
10489 struct arm_mem_r
10490 {
10491 uint32_t len; /* Record length. */
10492 CORE_ADDR addr; /* Memory address. */
10493 };
10494
10495 /* ARM instruction record contains opcode of current insn
10496 and execution state (before entry to decode_insn()),
10497 contains list of to-be-modified registers and
10498 memory blocks (on return from decode_insn()). */
10499
10500 typedef struct insn_decode_record_t
10501 {
10502 struct gdbarch *gdbarch;
10503 struct regcache *regcache;
10504 CORE_ADDR this_addr; /* Address of the insn being decoded. */
10505 uint32_t arm_insn; /* Should accommodate thumb. */
10506 uint32_t cond; /* Condition code. */
10507 uint32_t opcode; /* Insn opcode. */
10508 uint32_t decode; /* Insn decode bits. */
10509 uint32_t mem_rec_count; /* No of mem records. */
10510 uint32_t reg_rec_count; /* No of reg records. */
10511 uint32_t *arm_regs; /* Registers to be saved for this record. */
10512 struct arm_mem_r *arm_mems; /* Memory to be saved for this record. */
10513 } insn_decode_record;
10514
10515
10516 /* Checks ARM SBZ and SBO mandatory fields. */
10517
10518 static int
10519 sbo_sbz (uint32_t insn, uint32_t bit_num, uint32_t len, uint32_t sbo)
10520 {
10521 uint32_t ones = bits (insn, bit_num - 1, (bit_num -1) + (len - 1));
10522
10523 if (!len)
10524 return 1;
10525
10526 if (!sbo)
10527 ones = ~ones;
10528
10529 while (ones)
10530 {
10531 if (!(ones & sbo))
10532 {
10533 return 0;
10534 }
10535 ones = ones >> 1;
10536 }
10537 return 1;
10538 }
10539
10540 typedef enum
10541 {
10542 ARM_RECORD_STRH=1,
10543 ARM_RECORD_STRD
10544 } arm_record_strx_t;
10545
10546 typedef enum
10547 {
10548 ARM_RECORD=1,
10549 THUMB_RECORD,
10550 THUMB2_RECORD
10551 } record_type_t;
10552
10553
10554 static int
10555 arm_record_strx (insn_decode_record *arm_insn_r, uint32_t *record_buf,
10556 uint32_t *record_buf_mem, arm_record_strx_t str_type)
10557 {
10558
10559 struct regcache *reg_cache = arm_insn_r->regcache;
10560 ULONGEST u_regval[2]= {0};
10561
10562 uint32_t reg_src1 = 0, reg_src2 = 0;
10563 uint32_t immed_high = 0, immed_low = 0,offset_8 = 0, tgt_mem_addr = 0;
10564 uint32_t opcode1 = 0;
10565
10566 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10567 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10568 opcode1 = bits (arm_insn_r->arm_insn, 20, 24);
10569
10570
10571 if (14 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
10572 {
10573 /* 1) Handle misc store, immediate offset. */
10574 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
10575 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
10576 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10577 regcache_raw_read_unsigned (reg_cache, reg_src1,
10578 &u_regval[0]);
10579 if (ARM_PC_REGNUM == reg_src1)
10580 {
10581 /* If R15 was used as Rn, hence current PC+8. */
10582 u_regval[0] = u_regval[0] + 8;
10583 }
10584 offset_8 = (immed_high << 4) | immed_low;
10585 /* Calculate target store address. */
10586 if (14 == arm_insn_r->opcode)
10587 {
10588 tgt_mem_addr = u_regval[0] + offset_8;
10589 }
10590 else
10591 {
10592 tgt_mem_addr = u_regval[0] - offset_8;
10593 }
10594 if (ARM_RECORD_STRH == str_type)
10595 {
10596 record_buf_mem[0] = 2;
10597 record_buf_mem[1] = tgt_mem_addr;
10598 arm_insn_r->mem_rec_count = 1;
10599 }
10600 else if (ARM_RECORD_STRD == str_type)
10601 {
10602 record_buf_mem[0] = 4;
10603 record_buf_mem[1] = tgt_mem_addr;
10604 record_buf_mem[2] = 4;
10605 record_buf_mem[3] = tgt_mem_addr + 4;
10606 arm_insn_r->mem_rec_count = 2;
10607 }
10608 }
10609 else if (12 == arm_insn_r->opcode || 8 == arm_insn_r->opcode)
10610 {
10611 /* 2) Store, register offset. */
10612 /* Get Rm. */
10613 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10614 /* Get Rn. */
10615 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10616 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10617 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10618 if (15 == reg_src2)
10619 {
10620 /* If R15 was used as Rn, hence current PC+8. */
10621 u_regval[0] = u_regval[0] + 8;
10622 }
10623 /* Calculate target store address, Rn +/- Rm, register offset. */
10624 if (12 == arm_insn_r->opcode)
10625 {
10626 tgt_mem_addr = u_regval[0] + u_regval[1];
10627 }
10628 else
10629 {
10630 tgt_mem_addr = u_regval[1] - u_regval[0];
10631 }
10632 if (ARM_RECORD_STRH == str_type)
10633 {
10634 record_buf_mem[0] = 2;
10635 record_buf_mem[1] = tgt_mem_addr;
10636 arm_insn_r->mem_rec_count = 1;
10637 }
10638 else if (ARM_RECORD_STRD == str_type)
10639 {
10640 record_buf_mem[0] = 4;
10641 record_buf_mem[1] = tgt_mem_addr;
10642 record_buf_mem[2] = 4;
10643 record_buf_mem[3] = tgt_mem_addr + 4;
10644 arm_insn_r->mem_rec_count = 2;
10645 }
10646 }
10647 else if (11 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
10648 || 2 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
10649 {
10650 /* 3) Store, immediate pre-indexed. */
10651 /* 5) Store, immediate post-indexed. */
10652 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
10653 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
10654 offset_8 = (immed_high << 4) | immed_low;
10655 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10656 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10657 /* Calculate target store address, Rn +/- Rm, register offset. */
10658 if (15 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
10659 {
10660 tgt_mem_addr = u_regval[0] + offset_8;
10661 }
10662 else
10663 {
10664 tgt_mem_addr = u_regval[0] - offset_8;
10665 }
10666 if (ARM_RECORD_STRH == str_type)
10667 {
10668 record_buf_mem[0] = 2;
10669 record_buf_mem[1] = tgt_mem_addr;
10670 arm_insn_r->mem_rec_count = 1;
10671 }
10672 else if (ARM_RECORD_STRD == str_type)
10673 {
10674 record_buf_mem[0] = 4;
10675 record_buf_mem[1] = tgt_mem_addr;
10676 record_buf_mem[2] = 4;
10677 record_buf_mem[3] = tgt_mem_addr + 4;
10678 arm_insn_r->mem_rec_count = 2;
10679 }
10680 /* Record Rn also as it changes. */
10681 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
10682 arm_insn_r->reg_rec_count = 1;
10683 }
10684 else if (9 == arm_insn_r->opcode || 13 == arm_insn_r->opcode
10685 || 0 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
10686 {
10687 /* 4) Store, register pre-indexed. */
10688 /* 6) Store, register post -indexed. */
10689 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10690 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10691 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10692 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10693 /* Calculate target store address, Rn +/- Rm, register offset. */
10694 if (13 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
10695 {
10696 tgt_mem_addr = u_regval[0] + u_regval[1];
10697 }
10698 else
10699 {
10700 tgt_mem_addr = u_regval[1] - u_regval[0];
10701 }
10702 if (ARM_RECORD_STRH == str_type)
10703 {
10704 record_buf_mem[0] = 2;
10705 record_buf_mem[1] = tgt_mem_addr;
10706 arm_insn_r->mem_rec_count = 1;
10707 }
10708 else if (ARM_RECORD_STRD == str_type)
10709 {
10710 record_buf_mem[0] = 4;
10711 record_buf_mem[1] = tgt_mem_addr;
10712 record_buf_mem[2] = 4;
10713 record_buf_mem[3] = tgt_mem_addr + 4;
10714 arm_insn_r->mem_rec_count = 2;
10715 }
10716 /* Record Rn also as it changes. */
10717 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
10718 arm_insn_r->reg_rec_count = 1;
10719 }
10720 return 0;
10721 }
10722
10723 /* Handling ARM extension space insns. */
10724
10725 static int
10726 arm_record_extension_space (insn_decode_record *arm_insn_r)
10727 {
10728 uint32_t ret = 0; /* Return value: -1:record failure ; 0:success */
10729 uint32_t opcode1 = 0, opcode2 = 0, insn_op1 = 0;
10730 uint32_t record_buf[8], record_buf_mem[8];
10731 uint32_t reg_src1 = 0;
10732 uint32_t immed_high = 0, immed_low = 0,offset_8 = 0, tgt_mem_addr = 0;
10733 struct regcache *reg_cache = arm_insn_r->regcache;
10734 ULONGEST u_regval = 0;
10735
10736 gdb_assert (!INSN_RECORDED(arm_insn_r));
10737 /* Handle unconditional insn extension space. */
10738
10739 opcode1 = bits (arm_insn_r->arm_insn, 20, 27);
10740 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
10741 if (arm_insn_r->cond)
10742 {
10743 /* PLD has no affect on architectural state, it just affects
10744 the caches. */
10745 if (5 == ((opcode1 & 0xE0) >> 5))
10746 {
10747 /* BLX(1) */
10748 record_buf[0] = ARM_PS_REGNUM;
10749 record_buf[1] = ARM_LR_REGNUM;
10750 arm_insn_r->reg_rec_count = 2;
10751 }
10752 /* STC2, LDC2, MCR2, MRC2, CDP2: <TBD>, co-processor insn. */
10753 }
10754
10755
10756 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
10757 if (3 == opcode1 && bit (arm_insn_r->arm_insn, 4))
10758 {
10759 ret = -1;
10760 /* Undefined instruction on ARM V5; need to handle if later
10761 versions define it. */
10762 }
10763
10764 opcode1 = bits (arm_insn_r->arm_insn, 24, 27);
10765 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
10766 insn_op1 = bits (arm_insn_r->arm_insn, 20, 23);
10767
10768 /* Handle arithmetic insn extension space. */
10769 if (!opcode1 && 9 == opcode2 && 1 != arm_insn_r->cond
10770 && !INSN_RECORDED(arm_insn_r))
10771 {
10772 /* Handle MLA(S) and MUL(S). */
10773 if (0 <= insn_op1 && 3 >= insn_op1)
10774 {
10775 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10776 record_buf[1] = ARM_PS_REGNUM;
10777 arm_insn_r->reg_rec_count = 2;
10778 }
10779 else if (4 <= insn_op1 && 15 >= insn_op1)
10780 {
10781 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
10782 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10783 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10784 record_buf[2] = ARM_PS_REGNUM;
10785 arm_insn_r->reg_rec_count = 3;
10786 }
10787 }
10788
10789 opcode1 = bits (arm_insn_r->arm_insn, 26, 27);
10790 opcode2 = bits (arm_insn_r->arm_insn, 23, 24);
10791 insn_op1 = bits (arm_insn_r->arm_insn, 21, 22);
10792
10793 /* Handle control insn extension space. */
10794
10795 if (!opcode1 && 2 == opcode2 && !bit (arm_insn_r->arm_insn, 20)
10796 && 1 != arm_insn_r->cond && !INSN_RECORDED(arm_insn_r))
10797 {
10798 if (!bit (arm_insn_r->arm_insn,25))
10799 {
10800 if (!bits (arm_insn_r->arm_insn, 4, 7))
10801 {
10802 if ((0 == insn_op1) || (2 == insn_op1))
10803 {
10804 /* MRS. */
10805 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10806 arm_insn_r->reg_rec_count = 1;
10807 }
10808 else if (1 == insn_op1)
10809 {
10810 /* CSPR is going to be changed. */
10811 record_buf[0] = ARM_PS_REGNUM;
10812 arm_insn_r->reg_rec_count = 1;
10813 }
10814 else if (3 == insn_op1)
10815 {
10816 /* SPSR is going to be changed. */
10817 /* We need to get SPSR value, which is yet to be done. */
10818 printf_unfiltered (_("Process record does not support "
10819 "instruction 0x%0x at address %s.\n"),
10820 arm_insn_r->arm_insn,
10821 paddress (arm_insn_r->gdbarch,
10822 arm_insn_r->this_addr));
10823 return -1;
10824 }
10825 }
10826 else if (1 == bits (arm_insn_r->arm_insn, 4, 7))
10827 {
10828 if (1 == insn_op1)
10829 {
10830 /* BX. */
10831 record_buf[0] = ARM_PS_REGNUM;
10832 arm_insn_r->reg_rec_count = 1;
10833 }
10834 else if (3 == insn_op1)
10835 {
10836 /* CLZ. */
10837 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10838 arm_insn_r->reg_rec_count = 1;
10839 }
10840 }
10841 else if (3 == bits (arm_insn_r->arm_insn, 4, 7))
10842 {
10843 /* BLX. */
10844 record_buf[0] = ARM_PS_REGNUM;
10845 record_buf[1] = ARM_LR_REGNUM;
10846 arm_insn_r->reg_rec_count = 2;
10847 }
10848 else if (5 == bits (arm_insn_r->arm_insn, 4, 7))
10849 {
10850 /* QADD, QSUB, QDADD, QDSUB */
10851 record_buf[0] = ARM_PS_REGNUM;
10852 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10853 arm_insn_r->reg_rec_count = 2;
10854 }
10855 else if (7 == bits (arm_insn_r->arm_insn, 4, 7))
10856 {
10857 /* BKPT. */
10858 record_buf[0] = ARM_PS_REGNUM;
10859 record_buf[1] = ARM_LR_REGNUM;
10860 arm_insn_r->reg_rec_count = 2;
10861
10862 /* Save SPSR also;how? */
10863 printf_unfiltered (_("Process record does not support "
10864 "instruction 0x%0x at address %s.\n"),
10865 arm_insn_r->arm_insn,
10866 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
10867 return -1;
10868 }
10869 else if(8 == bits (arm_insn_r->arm_insn, 4, 7)
10870 || 10 == bits (arm_insn_r->arm_insn, 4, 7)
10871 || 12 == bits (arm_insn_r->arm_insn, 4, 7)
10872 || 14 == bits (arm_insn_r->arm_insn, 4, 7)
10873 )
10874 {
10875 if (0 == insn_op1 || 1 == insn_op1)
10876 {
10877 /* SMLA<x><y>, SMLAW<y>, SMULW<y>. */
10878 /* We dont do optimization for SMULW<y> where we
10879 need only Rd. */
10880 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10881 record_buf[1] = ARM_PS_REGNUM;
10882 arm_insn_r->reg_rec_count = 2;
10883 }
10884 else if (2 == insn_op1)
10885 {
10886 /* SMLAL<x><y>. */
10887 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10888 record_buf[1] = bits (arm_insn_r->arm_insn, 16, 19);
10889 arm_insn_r->reg_rec_count = 2;
10890 }
10891 else if (3 == insn_op1)
10892 {
10893 /* SMUL<x><y>. */
10894 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10895 arm_insn_r->reg_rec_count = 1;
10896 }
10897 }
10898 }
10899 else
10900 {
10901 /* MSR : immediate form. */
10902 if (1 == insn_op1)
10903 {
10904 /* CSPR is going to be changed. */
10905 record_buf[0] = ARM_PS_REGNUM;
10906 arm_insn_r->reg_rec_count = 1;
10907 }
10908 else if (3 == insn_op1)
10909 {
10910 /* SPSR is going to be changed. */
10911 /* we need to get SPSR value, which is yet to be done */
10912 printf_unfiltered (_("Process record does not support "
10913 "instruction 0x%0x at address %s.\n"),
10914 arm_insn_r->arm_insn,
10915 paddress (arm_insn_r->gdbarch,
10916 arm_insn_r->this_addr));
10917 return -1;
10918 }
10919 }
10920 }
10921
10922 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
10923 opcode2 = bits (arm_insn_r->arm_insn, 20, 24);
10924 insn_op1 = bits (arm_insn_r->arm_insn, 5, 6);
10925
10926 /* Handle load/store insn extension space. */
10927
10928 if (!opcode1 && bit (arm_insn_r->arm_insn, 7)
10929 && bit (arm_insn_r->arm_insn, 4) && 1 != arm_insn_r->cond
10930 && !INSN_RECORDED(arm_insn_r))
10931 {
10932 /* SWP/SWPB. */
10933 if (0 == insn_op1)
10934 {
10935 /* These insn, changes register and memory as well. */
10936 /* SWP or SWPB insn. */
10937 /* Get memory address given by Rn. */
10938 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10939 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
10940 /* SWP insn ?, swaps word. */
10941 if (8 == arm_insn_r->opcode)
10942 {
10943 record_buf_mem[0] = 4;
10944 }
10945 else
10946 {
10947 /* SWPB insn, swaps only byte. */
10948 record_buf_mem[0] = 1;
10949 }
10950 record_buf_mem[1] = u_regval;
10951 arm_insn_r->mem_rec_count = 1;
10952 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10953 arm_insn_r->reg_rec_count = 1;
10954 }
10955 else if (1 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10956 {
10957 /* STRH. */
10958 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10959 ARM_RECORD_STRH);
10960 }
10961 else if (2 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10962 {
10963 /* LDRD. */
10964 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10965 record_buf[1] = record_buf[0] + 1;
10966 arm_insn_r->reg_rec_count = 2;
10967 }
10968 else if (3 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10969 {
10970 /* STRD. */
10971 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10972 ARM_RECORD_STRD);
10973 }
10974 else if (bit (arm_insn_r->arm_insn, 20) && insn_op1 <= 3)
10975 {
10976 /* LDRH, LDRSB, LDRSH. */
10977 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10978 arm_insn_r->reg_rec_count = 1;
10979 }
10980
10981 }
10982
10983 opcode1 = bits (arm_insn_r->arm_insn, 23, 27);
10984 if (24 == opcode1 && bit (arm_insn_r->arm_insn, 21)
10985 && !INSN_RECORDED(arm_insn_r))
10986 {
10987 ret = -1;
10988 /* Handle coprocessor insn extension space. */
10989 }
10990
10991 /* To be done for ARMv5 and later; as of now we return -1. */
10992 if (-1 == ret)
10993 printf_unfiltered (_("Process record does not support instruction x%0x "
10994 "at address %s.\n"),arm_insn_r->arm_insn,
10995 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
10996
10997
10998 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10999 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11000
11001 return ret;
11002 }
11003
11004 /* Handling opcode 000 insns. */
11005
11006 static int
11007 arm_record_data_proc_misc_ld_str (insn_decode_record *arm_insn_r)
11008 {
11009 struct regcache *reg_cache = arm_insn_r->regcache;
11010 uint32_t record_buf[8], record_buf_mem[8];
11011 ULONGEST u_regval[2] = {0};
11012
11013 uint32_t reg_src1 = 0, reg_src2 = 0, reg_dest = 0;
11014 uint32_t immed_high = 0, immed_low = 0, offset_8 = 0, tgt_mem_addr = 0;
11015 uint32_t opcode1 = 0;
11016
11017 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
11018 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
11019 opcode1 = bits (arm_insn_r->arm_insn, 20, 24);
11020
11021 /* Data processing insn /multiply insn. */
11022 if (9 == arm_insn_r->decode
11023 && ((4 <= arm_insn_r->opcode && 7 >= arm_insn_r->opcode)
11024 || (0 == arm_insn_r->opcode || 1 == arm_insn_r->opcode)))
11025 {
11026 /* Handle multiply instructions. */
11027 /* MLA, MUL, SMLAL, SMULL, UMLAL, UMULL. */
11028 if (0 == arm_insn_r->opcode || 1 == arm_insn_r->opcode)
11029 {
11030 /* Handle MLA and MUL. */
11031 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
11032 record_buf[1] = ARM_PS_REGNUM;
11033 arm_insn_r->reg_rec_count = 2;
11034 }
11035 else if (4 <= arm_insn_r->opcode && 7 >= arm_insn_r->opcode)
11036 {
11037 /* Handle SMLAL, SMULL, UMLAL, UMULL. */
11038 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
11039 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
11040 record_buf[2] = ARM_PS_REGNUM;
11041 arm_insn_r->reg_rec_count = 3;
11042 }
11043 }
11044 else if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM)
11045 && (11 == arm_insn_r->decode || 13 == arm_insn_r->decode))
11046 {
11047 /* Handle misc load insns, as 20th bit (L = 1). */
11048 /* LDR insn has a capability to do branching, if
11049 MOV LR, PC is precceded by LDR insn having Rn as R15
11050 in that case, it emulates branch and link insn, and hence we
11051 need to save CSPR and PC as well. I am not sure this is right
11052 place; as opcode = 010 LDR insn make this happen, if R15 was
11053 used. */
11054 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
11055 if (15 != reg_dest)
11056 {
11057 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11058 arm_insn_r->reg_rec_count = 1;
11059 }
11060 else
11061 {
11062 record_buf[0] = reg_dest;
11063 record_buf[1] = ARM_PS_REGNUM;
11064 arm_insn_r->reg_rec_count = 2;
11065 }
11066 }
11067 else if ((9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode)
11068 && sbo_sbz (arm_insn_r->arm_insn, 5, 12, 0)
11069 && sbo_sbz (arm_insn_r->arm_insn, 13, 4, 1)
11070 && 2 == bits (arm_insn_r->arm_insn, 20, 21))
11071 {
11072 /* Handle MSR insn. */
11073 if (9 == arm_insn_r->opcode)
11074 {
11075 /* CSPR is going to be changed. */
11076 record_buf[0] = ARM_PS_REGNUM;
11077 arm_insn_r->reg_rec_count = 1;
11078 }
11079 else
11080 {
11081 /* SPSR is going to be changed. */
11082 /* How to read SPSR value? */
11083 printf_unfiltered (_("Process record does not support instruction "
11084 "0x%0x at address %s.\n"),
11085 arm_insn_r->arm_insn,
11086 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
11087 return -1;
11088 }
11089 }
11090 else if (9 == arm_insn_r->decode
11091 && (8 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
11092 && !bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11093 {
11094 /* Handling SWP, SWPB. */
11095 /* These insn, changes register and memory as well. */
11096 /* SWP or SWPB insn. */
11097
11098 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
11099 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11100 /* SWP insn ?, swaps word. */
11101 if (8 == arm_insn_r->opcode)
11102 {
11103 record_buf_mem[0] = 4;
11104 }
11105 else
11106 {
11107 /* SWPB insn, swaps only byte. */
11108 record_buf_mem[0] = 1;
11109 }
11110 record_buf_mem[1] = u_regval[0];
11111 arm_insn_r->mem_rec_count = 1;
11112 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11113 arm_insn_r->reg_rec_count = 1;
11114 }
11115 else if (3 == arm_insn_r->decode && 0x12 == opcode1
11116 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
11117 {
11118 /* Handle BLX, branch and link/exchange. */
11119 if (9 == arm_insn_r->opcode)
11120 {
11121 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm,
11122 and R14 stores the return address. */
11123 record_buf[0] = ARM_PS_REGNUM;
11124 record_buf[1] = ARM_LR_REGNUM;
11125 arm_insn_r->reg_rec_count = 2;
11126 }
11127 }
11128 else if (7 == arm_insn_r->decode && 0x12 == opcode1)
11129 {
11130 /* Handle enhanced software breakpoint insn, BKPT. */
11131 /* CPSR is changed to be executed in ARM state, disabling normal
11132 interrupts, entering abort mode. */
11133 /* According to high vector configuration PC is set. */
11134 /* user hit breakpoint and type reverse, in
11135 that case, we need to go back with previous CPSR and
11136 Program Counter. */
11137 record_buf[0] = ARM_PS_REGNUM;
11138 record_buf[1] = ARM_LR_REGNUM;
11139 arm_insn_r->reg_rec_count = 2;
11140
11141 /* Save SPSR also; how? */
11142 printf_unfiltered (_("Process record does not support instruction "
11143 "0x%0x at address %s.\n"),arm_insn_r->arm_insn,
11144 paddress (arm_insn_r->gdbarch,
11145 arm_insn_r->this_addr));
11146 return -1;
11147 }
11148 else if (11 == arm_insn_r->decode
11149 && !bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11150 {
11151 /* Handle enhanced store insns and DSP insns (e.g. LDRD). */
11152
11153 /* Handle str(x) insn */
11154 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
11155 ARM_RECORD_STRH);
11156 }
11157 else if (1 == arm_insn_r->decode && 0x12 == opcode1
11158 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
11159 {
11160 /* Handle BX, branch and link/exchange. */
11161 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm. */
11162 record_buf[0] = ARM_PS_REGNUM;
11163 arm_insn_r->reg_rec_count = 1;
11164 }
11165 else if (1 == arm_insn_r->decode && 0x16 == opcode1
11166 && sbo_sbz (arm_insn_r->arm_insn, 9, 4, 1)
11167 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1))
11168 {
11169 /* Count leading zeros: CLZ. */
11170 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11171 arm_insn_r->reg_rec_count = 1;
11172 }
11173 else if (!bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM)
11174 && (8 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
11175 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1)
11176 && sbo_sbz (arm_insn_r->arm_insn, 1, 12, 0)
11177 )
11178 {
11179 /* Handle MRS insn. */
11180 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11181 arm_insn_r->reg_rec_count = 1;
11182 }
11183 else if (arm_insn_r->opcode <= 15)
11184 {
11185 /* Normal data processing insns. */
11186 /* Out of 11 shifter operands mode, all the insn modifies destination
11187 register, which is specified by 13-16 decode. */
11188 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11189 record_buf[1] = ARM_PS_REGNUM;
11190 arm_insn_r->reg_rec_count = 2;
11191 }
11192 else
11193 {
11194 return -1;
11195 }
11196
11197 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11198 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11199 return 0;
11200 }
11201
11202 /* Handling opcode 001 insns. */
11203
11204 static int
11205 arm_record_data_proc_imm (insn_decode_record *arm_insn_r)
11206 {
11207 uint32_t record_buf[8], record_buf_mem[8];
11208
11209 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
11210 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
11211
11212 if ((9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode)
11213 && 2 == bits (arm_insn_r->arm_insn, 20, 21)
11214 && sbo_sbz (arm_insn_r->arm_insn, 13, 4, 1)
11215 )
11216 {
11217 /* Handle MSR insn. */
11218 if (9 == arm_insn_r->opcode)
11219 {
11220 /* CSPR is going to be changed. */
11221 record_buf[0] = ARM_PS_REGNUM;
11222 arm_insn_r->reg_rec_count = 1;
11223 }
11224 else
11225 {
11226 /* SPSR is going to be changed. */
11227 }
11228 }
11229 else if (arm_insn_r->opcode <= 15)
11230 {
11231 /* Normal data processing insns. */
11232 /* Out of 11 shifter operands mode, all the insn modifies destination
11233 register, which is specified by 13-16 decode. */
11234 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11235 record_buf[1] = ARM_PS_REGNUM;
11236 arm_insn_r->reg_rec_count = 2;
11237 }
11238 else
11239 {
11240 return -1;
11241 }
11242
11243 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11244 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11245 return 0;
11246 }
11247
11248 /* Handling opcode 010 insns. */
11249
11250 static int
11251 arm_record_ld_st_imm_offset (insn_decode_record *arm_insn_r)
11252 {
11253 struct regcache *reg_cache = arm_insn_r->regcache;
11254
11255 uint32_t reg_src1 = 0 , reg_dest = 0;
11256 uint32_t offset_12 = 0, tgt_mem_addr = 0;
11257 uint32_t record_buf[8], record_buf_mem[8];
11258
11259 ULONGEST u_regval = 0;
11260
11261 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
11262 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
11263
11264 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11265 {
11266 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
11267 /* LDR insn has a capability to do branching, if
11268 MOV LR, PC is precedded by LDR insn having Rn as R15
11269 in that case, it emulates branch and link insn, and hence we
11270 need to save CSPR and PC as well. */
11271 if (ARM_PC_REGNUM != reg_dest)
11272 {
11273 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11274 arm_insn_r->reg_rec_count = 1;
11275 }
11276 else
11277 {
11278 record_buf[0] = reg_dest;
11279 record_buf[1] = ARM_PS_REGNUM;
11280 arm_insn_r->reg_rec_count = 2;
11281 }
11282 }
11283 else
11284 {
11285 /* Store, immediate offset, immediate pre-indexed,
11286 immediate post-indexed. */
11287 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
11288 offset_12 = bits (arm_insn_r->arm_insn, 0, 11);
11289 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
11290 /* U == 1 */
11291 if (bit (arm_insn_r->arm_insn, 23))
11292 {
11293 tgt_mem_addr = u_regval + offset_12;
11294 }
11295 else
11296 {
11297 tgt_mem_addr = u_regval - offset_12;
11298 }
11299
11300 switch (arm_insn_r->opcode)
11301 {
11302 /* STR. */
11303 case 8:
11304 case 12:
11305 /* STR. */
11306 case 9:
11307 case 13:
11308 /* STRT. */
11309 case 1:
11310 case 5:
11311 /* STR. */
11312 case 4:
11313 case 0:
11314 record_buf_mem[0] = 4;
11315 break;
11316
11317 /* STRB. */
11318 case 10:
11319 case 14:
11320 /* STRB. */
11321 case 11:
11322 case 15:
11323 /* STRBT. */
11324 case 3:
11325 case 7:
11326 /* STRB. */
11327 case 2:
11328 case 6:
11329 record_buf_mem[0] = 1;
11330 break;
11331
11332 default:
11333 gdb_assert_not_reached ("no decoding pattern found");
11334 break;
11335 }
11336 record_buf_mem[1] = tgt_mem_addr;
11337 arm_insn_r->mem_rec_count = 1;
11338
11339 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
11340 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
11341 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
11342 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
11343 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
11344 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
11345 )
11346 {
11347 /* We are handling pre-indexed mode; post-indexed mode;
11348 where Rn is going to be changed. */
11349 record_buf[0] = reg_src1;
11350 arm_insn_r->reg_rec_count = 1;
11351 }
11352 }
11353
11354 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11355 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11356 return 0;
11357 }
11358
11359 /* Handling opcode 011 insns. */
11360
11361 static int
11362 arm_record_ld_st_reg_offset (insn_decode_record *arm_insn_r)
11363 {
11364 struct regcache *reg_cache = arm_insn_r->regcache;
11365
11366 uint32_t shift_imm = 0;
11367 uint32_t reg_src1 = 0, reg_src2 = 0, reg_dest = 0;
11368 uint32_t offset_12 = 0, tgt_mem_addr = 0;
11369 uint32_t record_buf[8], record_buf_mem[8];
11370
11371 LONGEST s_word;
11372 ULONGEST u_regval[2];
11373
11374 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
11375 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
11376
11377 /* Handle enhanced store insns and LDRD DSP insn,
11378 order begins according to addressing modes for store insns
11379 STRH insn. */
11380
11381 /* LDR or STR? */
11382 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11383 {
11384 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
11385 /* LDR insn has a capability to do branching, if
11386 MOV LR, PC is precedded by LDR insn having Rn as R15
11387 in that case, it emulates branch and link insn, and hence we
11388 need to save CSPR and PC as well. */
11389 if (15 != reg_dest)
11390 {
11391 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11392 arm_insn_r->reg_rec_count = 1;
11393 }
11394 else
11395 {
11396 record_buf[0] = reg_dest;
11397 record_buf[1] = ARM_PS_REGNUM;
11398 arm_insn_r->reg_rec_count = 2;
11399 }
11400 }
11401 else
11402 {
11403 if (! bits (arm_insn_r->arm_insn, 4, 11))
11404 {
11405 /* Store insn, register offset and register pre-indexed,
11406 register post-indexed. */
11407 /* Get Rm. */
11408 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
11409 /* Get Rn. */
11410 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
11411 regcache_raw_read_unsigned (reg_cache, reg_src1
11412 , &u_regval[0]);
11413 regcache_raw_read_unsigned (reg_cache, reg_src2
11414 , &u_regval[1]);
11415 if (15 == reg_src2)
11416 {
11417 /* If R15 was used as Rn, hence current PC+8. */
11418 /* Pre-indexed mode doesnt reach here ; illegal insn. */
11419 u_regval[0] = u_regval[0] + 8;
11420 }
11421 /* Calculate target store address, Rn +/- Rm, register offset. */
11422 /* U == 1. */
11423 if (bit (arm_insn_r->arm_insn, 23))
11424 {
11425 tgt_mem_addr = u_regval[0] + u_regval[1];
11426 }
11427 else
11428 {
11429 tgt_mem_addr = u_regval[1] - u_regval[0];
11430 }
11431
11432 switch (arm_insn_r->opcode)
11433 {
11434 /* STR. */
11435 case 8:
11436 case 12:
11437 /* STR. */
11438 case 9:
11439 case 13:
11440 /* STRT. */
11441 case 1:
11442 case 5:
11443 /* STR. */
11444 case 0:
11445 case 4:
11446 record_buf_mem[0] = 4;
11447 break;
11448
11449 /* STRB. */
11450 case 10:
11451 case 14:
11452 /* STRB. */
11453 case 11:
11454 case 15:
11455 /* STRBT. */
11456 case 3:
11457 case 7:
11458 /* STRB. */
11459 case 2:
11460 case 6:
11461 record_buf_mem[0] = 1;
11462 break;
11463
11464 default:
11465 gdb_assert_not_reached ("no decoding pattern found");
11466 break;
11467 }
11468 record_buf_mem[1] = tgt_mem_addr;
11469 arm_insn_r->mem_rec_count = 1;
11470
11471 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
11472 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
11473 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
11474 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
11475 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
11476 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
11477 )
11478 {
11479 /* Rn is going to be changed in pre-indexed mode and
11480 post-indexed mode as well. */
11481 record_buf[0] = reg_src2;
11482 arm_insn_r->reg_rec_count = 1;
11483 }
11484 }
11485 else
11486 {
11487 /* Store insn, scaled register offset; scaled pre-indexed. */
11488 offset_12 = bits (arm_insn_r->arm_insn, 5, 6);
11489 /* Get Rm. */
11490 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
11491 /* Get Rn. */
11492 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
11493 /* Get shift_imm. */
11494 shift_imm = bits (arm_insn_r->arm_insn, 7, 11);
11495 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11496 regcache_raw_read_signed (reg_cache, reg_src1, &s_word);
11497 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
11498 /* Offset_12 used as shift. */
11499 switch (offset_12)
11500 {
11501 case 0:
11502 /* Offset_12 used as index. */
11503 offset_12 = u_regval[0] << shift_imm;
11504 break;
11505
11506 case 1:
11507 offset_12 = (!shift_imm)?0:u_regval[0] >> shift_imm;
11508 break;
11509
11510 case 2:
11511 if (!shift_imm)
11512 {
11513 if (bit (u_regval[0], 31))
11514 {
11515 offset_12 = 0xFFFFFFFF;
11516 }
11517 else
11518 {
11519 offset_12 = 0;
11520 }
11521 }
11522 else
11523 {
11524 /* This is arithmetic shift. */
11525 offset_12 = s_word >> shift_imm;
11526 }
11527 break;
11528
11529 case 3:
11530 if (!shift_imm)
11531 {
11532 regcache_raw_read_unsigned (reg_cache, ARM_PS_REGNUM,
11533 &u_regval[1]);
11534 /* Get C flag value and shift it by 31. */
11535 offset_12 = (((bit (u_regval[1], 29)) << 31) \
11536 | (u_regval[0]) >> 1);
11537 }
11538 else
11539 {
11540 offset_12 = (u_regval[0] >> shift_imm) \
11541 | (u_regval[0] <<
11542 (sizeof(uint32_t) - shift_imm));
11543 }
11544 break;
11545
11546 default:
11547 gdb_assert_not_reached ("no decoding pattern found");
11548 break;
11549 }
11550
11551 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
11552 /* bit U set. */
11553 if (bit (arm_insn_r->arm_insn, 23))
11554 {
11555 tgt_mem_addr = u_regval[1] + offset_12;
11556 }
11557 else
11558 {
11559 tgt_mem_addr = u_regval[1] - offset_12;
11560 }
11561
11562 switch (arm_insn_r->opcode)
11563 {
11564 /* STR. */
11565 case 8:
11566 case 12:
11567 /* STR. */
11568 case 9:
11569 case 13:
11570 /* STRT. */
11571 case 1:
11572 case 5:
11573 /* STR. */
11574 case 0:
11575 case 4:
11576 record_buf_mem[0] = 4;
11577 break;
11578
11579 /* STRB. */
11580 case 10:
11581 case 14:
11582 /* STRB. */
11583 case 11:
11584 case 15:
11585 /* STRBT. */
11586 case 3:
11587 case 7:
11588 /* STRB. */
11589 case 2:
11590 case 6:
11591 record_buf_mem[0] = 1;
11592 break;
11593
11594 default:
11595 gdb_assert_not_reached ("no decoding pattern found");
11596 break;
11597 }
11598 record_buf_mem[1] = tgt_mem_addr;
11599 arm_insn_r->mem_rec_count = 1;
11600
11601 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
11602 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
11603 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
11604 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
11605 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
11606 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
11607 )
11608 {
11609 /* Rn is going to be changed in register scaled pre-indexed
11610 mode,and scaled post indexed mode. */
11611 record_buf[0] = reg_src2;
11612 arm_insn_r->reg_rec_count = 1;
11613 }
11614 }
11615 }
11616
11617 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11618 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11619 return 0;
11620 }
11621
11622 /* Handling opcode 100 insns. */
11623
11624 static int
11625 arm_record_ld_st_multiple (insn_decode_record *arm_insn_r)
11626 {
11627 struct regcache *reg_cache = arm_insn_r->regcache;
11628
11629 uint32_t register_list[16] = {0}, register_count = 0, register_bits = 0;
11630 uint32_t reg_src1 = 0, addr_mode = 0, no_of_regs = 0;
11631 uint32_t start_address = 0, index = 0;
11632 uint32_t record_buf[24], record_buf_mem[48];
11633
11634 ULONGEST u_regval[2] = {0};
11635
11636 /* This mode is exclusively for load and store multiple. */
11637 /* Handle incremenrt after/before and decrment after.before mode;
11638 Rn is changing depending on W bit, but as of now we store Rn too
11639 without optimization. */
11640
11641 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11642 {
11643 /* LDM (1,2,3) where LDM (3) changes CPSR too. */
11644
11645 if (bit (arm_insn_r->arm_insn, 20) && !bit (arm_insn_r->arm_insn, 22))
11646 {
11647 register_bits = bits (arm_insn_r->arm_insn, 0, 15);
11648 no_of_regs = 15;
11649 }
11650 else
11651 {
11652 register_bits = bits (arm_insn_r->arm_insn, 0, 14);
11653 no_of_regs = 14;
11654 }
11655 /* Get Rn. */
11656 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
11657 while (register_bits)
11658 {
11659 if (register_bits & 0x00000001)
11660 register_list[register_count++] = 1;
11661 register_bits = register_bits >> 1;
11662 }
11663
11664 /* Extra space for Base Register and CPSR; wihtout optimization. */
11665 record_buf[register_count] = reg_src1;
11666 record_buf[register_count + 1] = ARM_PS_REGNUM;
11667 arm_insn_r->reg_rec_count = register_count + 2;
11668
11669 for (register_count = 0; register_count < no_of_regs; register_count++)
11670 {
11671 if (register_list[register_count])
11672 {
11673 /* Register_count gives total no of registers
11674 and dually working as reg number. */
11675 record_buf[index] = register_count;
11676 index++;
11677 }
11678 }
11679
11680 }
11681 else
11682 {
11683 /* It handles both STM(1) and STM(2). */
11684 addr_mode = bits (arm_insn_r->arm_insn, 23, 24);
11685
11686 register_bits = bits (arm_insn_r->arm_insn, 0, 15);
11687 /* Get Rn. */
11688 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
11689 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11690 while (register_bits)
11691 {
11692 if (register_bits & 0x00000001)
11693 register_count++;
11694 register_bits = register_bits >> 1;
11695 }
11696
11697 switch (addr_mode)
11698 {
11699 /* Decrement after. */
11700 case 0:
11701 start_address = (u_regval[0]) - (register_count * 4) + 4;
11702 arm_insn_r->mem_rec_count = register_count;
11703 while (register_count)
11704 {
11705 record_buf_mem[(register_count * 2) - 1] = start_address;
11706 record_buf_mem[(register_count * 2) - 2] = 4;
11707 start_address = start_address + 4;
11708 register_count--;
11709 }
11710 break;
11711
11712 /* Increment after. */
11713 case 1:
11714 start_address = u_regval[0];
11715 arm_insn_r->mem_rec_count = register_count;
11716 while (register_count)
11717 {
11718 record_buf_mem[(register_count * 2) - 1] = start_address;
11719 record_buf_mem[(register_count * 2) - 2] = 4;
11720 start_address = start_address + 4;
11721 register_count--;
11722 }
11723 break;
11724
11725 /* Decrement before. */
11726 case 2:
11727
11728 start_address = (u_regval[0]) - (register_count * 4);
11729 arm_insn_r->mem_rec_count = register_count;
11730 while (register_count)
11731 {
11732 record_buf_mem[(register_count * 2) - 1] = start_address;
11733 record_buf_mem[(register_count * 2) - 2] = 4;
11734 start_address = start_address + 4;
11735 register_count--;
11736 }
11737 break;
11738
11739 /* Increment before. */
11740 case 3:
11741 start_address = u_regval[0] + 4;
11742 arm_insn_r->mem_rec_count = register_count;
11743 while (register_count)
11744 {
11745 record_buf_mem[(register_count * 2) - 1] = start_address;
11746 record_buf_mem[(register_count * 2) - 2] = 4;
11747 start_address = start_address + 4;
11748 register_count--;
11749 }
11750 break;
11751
11752 default:
11753 gdb_assert_not_reached ("no decoding pattern found");
11754 break;
11755 }
11756
11757 /* Base register also changes; based on condition and W bit. */
11758 /* We save it anyway without optimization. */
11759 record_buf[0] = reg_src1;
11760 arm_insn_r->reg_rec_count = 1;
11761 }
11762
11763 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11764 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11765 return 0;
11766 }
11767
11768 /* Handling opcode 101 insns. */
11769
11770 static int
11771 arm_record_b_bl (insn_decode_record *arm_insn_r)
11772 {
11773 uint32_t record_buf[8];
11774
11775 /* Handle B, BL, BLX(1) insns. */
11776 /* B simply branches so we do nothing here. */
11777 /* Note: BLX(1) doesnt fall here but instead it falls into
11778 extension space. */
11779 if (bit (arm_insn_r->arm_insn, 24))
11780 {
11781 record_buf[0] = ARM_LR_REGNUM;
11782 arm_insn_r->reg_rec_count = 1;
11783 }
11784
11785 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11786
11787 return 0;
11788 }
11789
11790 /* Handling opcode 110 insns. */
11791
11792 static int
11793 arm_record_coproc (insn_decode_record *arm_insn_r)
11794 {
11795 printf_unfiltered (_("Process record does not support instruction "
11796 "0x%0x at address %s.\n"),arm_insn_r->arm_insn,
11797 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
11798
11799 return -1;
11800 }
11801
11802 /* Handling opcode 111 insns. */
11803
11804 static int
11805 arm_record_coproc_data_proc (insn_decode_record *arm_insn_r)
11806 {
11807 struct gdbarch_tdep *tdep = gdbarch_tdep (arm_insn_r->gdbarch);
11808 struct regcache *reg_cache = arm_insn_r->regcache;
11809 uint32_t ret = 0; /* function return value: -1:record failure ; 0:success */
11810
11811 /* Handle SWI insn; system call would be handled over here. */
11812
11813 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 24, 27);
11814 if (15 == arm_insn_r->opcode)
11815 {
11816 /* Handle arm syscall insn. */
11817 if (tdep->arm_swi_record != NULL)
11818 {
11819 ret = tdep->arm_swi_record(reg_cache);
11820 }
11821 else
11822 {
11823 printf_unfiltered (_("no syscall record support\n"));
11824 ret = -1;
11825 }
11826 }
11827
11828 printf_unfiltered (_("Process record does not support instruction "
11829 "0x%0x at address %s.\n"),arm_insn_r->arm_insn,
11830 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
11831 return ret;
11832 }
11833
11834 /* Handling opcode 000 insns. */
11835
11836 static int
11837 thumb_record_shift_add_sub (insn_decode_record *thumb_insn_r)
11838 {
11839 uint32_t record_buf[8];
11840 uint32_t reg_src1 = 0;
11841
11842 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11843
11844 record_buf[0] = ARM_PS_REGNUM;
11845 record_buf[1] = reg_src1;
11846 thumb_insn_r->reg_rec_count = 2;
11847
11848 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11849
11850 return 0;
11851 }
11852
11853
11854 /* Handling opcode 001 insns. */
11855
11856 static int
11857 thumb_record_add_sub_cmp_mov (insn_decode_record *thumb_insn_r)
11858 {
11859 uint32_t record_buf[8];
11860 uint32_t reg_src1 = 0;
11861
11862 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11863
11864 record_buf[0] = ARM_PS_REGNUM;
11865 record_buf[1] = reg_src1;
11866 thumb_insn_r->reg_rec_count = 2;
11867
11868 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11869
11870 return 0;
11871 }
11872
11873 /* Handling opcode 010 insns. */
11874
11875 static int
11876 thumb_record_ld_st_reg_offset (insn_decode_record *thumb_insn_r)
11877 {
11878 struct regcache *reg_cache = thumb_insn_r->regcache;
11879 uint32_t record_buf[8], record_buf_mem[8];
11880
11881 uint32_t reg_src1 = 0, reg_src2 = 0;
11882 uint32_t opcode1 = 0, opcode2 = 0, opcode3 = 0;
11883
11884 ULONGEST u_regval[2] = {0};
11885
11886 opcode1 = bits (thumb_insn_r->arm_insn, 10, 12);
11887
11888 if (bit (thumb_insn_r->arm_insn, 12))
11889 {
11890 /* Handle load/store register offset. */
11891 opcode2 = bits (thumb_insn_r->arm_insn, 9, 10);
11892 if (opcode2 >= 12 && opcode2 <= 15)
11893 {
11894 /* LDR(2), LDRB(2) , LDRH(2), LDRSB, LDRSH. */
11895 reg_src1 = bits (thumb_insn_r->arm_insn,0, 2);
11896 record_buf[0] = reg_src1;
11897 thumb_insn_r->reg_rec_count = 1;
11898 }
11899 else if (opcode2 >= 8 && opcode2 <= 10)
11900 {
11901 /* STR(2), STRB(2), STRH(2) . */
11902 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11903 reg_src2 = bits (thumb_insn_r->arm_insn, 6, 8);
11904 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11905 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
11906 if (8 == opcode2)
11907 record_buf_mem[0] = 4; /* STR (2). */
11908 else if (10 == opcode2)
11909 record_buf_mem[0] = 1; /* STRB (2). */
11910 else if (9 == opcode2)
11911 record_buf_mem[0] = 2; /* STRH (2). */
11912 record_buf_mem[1] = u_regval[0] + u_regval[1];
11913 thumb_insn_r->mem_rec_count = 1;
11914 }
11915 }
11916 else if (bit (thumb_insn_r->arm_insn, 11))
11917 {
11918 /* Handle load from literal pool. */
11919 /* LDR(3). */
11920 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11921 record_buf[0] = reg_src1;
11922 thumb_insn_r->reg_rec_count = 1;
11923 }
11924 else if (opcode1)
11925 {
11926 opcode2 = bits (thumb_insn_r->arm_insn, 8, 9);
11927 opcode3 = bits (thumb_insn_r->arm_insn, 0, 2);
11928 if ((3 == opcode2) && (!opcode3))
11929 {
11930 /* Branch with exchange. */
11931 record_buf[0] = ARM_PS_REGNUM;
11932 thumb_insn_r->reg_rec_count = 1;
11933 }
11934 else
11935 {
11936 /* Format 8; special data processing insns. */
11937 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11938 record_buf[0] = ARM_PS_REGNUM;
11939 record_buf[1] = reg_src1;
11940 thumb_insn_r->reg_rec_count = 2;
11941 }
11942 }
11943 else
11944 {
11945 /* Format 5; data processing insns. */
11946 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11947 if (bit (thumb_insn_r->arm_insn, 7))
11948 {
11949 reg_src1 = reg_src1 + 8;
11950 }
11951 record_buf[0] = ARM_PS_REGNUM;
11952 record_buf[1] = reg_src1;
11953 thumb_insn_r->reg_rec_count = 2;
11954 }
11955
11956 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11957 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11958 record_buf_mem);
11959
11960 return 0;
11961 }
11962
11963 /* Handling opcode 001 insns. */
11964
11965 static int
11966 thumb_record_ld_st_imm_offset (insn_decode_record *thumb_insn_r)
11967 {
11968 struct regcache *reg_cache = thumb_insn_r->regcache;
11969 uint32_t record_buf[8], record_buf_mem[8];
11970
11971 uint32_t reg_src1 = 0;
11972 uint32_t opcode = 0, immed_5 = 0;
11973
11974 ULONGEST u_regval = 0;
11975
11976 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
11977
11978 if (opcode)
11979 {
11980 /* LDR(1). */
11981 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11982 record_buf[0] = reg_src1;
11983 thumb_insn_r->reg_rec_count = 1;
11984 }
11985 else
11986 {
11987 /* STR(1). */
11988 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11989 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
11990 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
11991 record_buf_mem[0] = 4;
11992 record_buf_mem[1] = u_regval + (immed_5 * 4);
11993 thumb_insn_r->mem_rec_count = 1;
11994 }
11995
11996 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11997 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11998 record_buf_mem);
11999
12000 return 0;
12001 }
12002
12003 /* Handling opcode 100 insns. */
12004
12005 static int
12006 thumb_record_ld_st_stack (insn_decode_record *thumb_insn_r)
12007 {
12008 struct regcache *reg_cache = thumb_insn_r->regcache;
12009 uint32_t record_buf[8], record_buf_mem[8];
12010
12011 uint32_t reg_src1 = 0;
12012 uint32_t opcode = 0, immed_8 = 0, immed_5 = 0;
12013
12014 ULONGEST u_regval = 0;
12015
12016 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
12017
12018 if (3 == opcode)
12019 {
12020 /* LDR(4). */
12021 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12022 record_buf[0] = reg_src1;
12023 thumb_insn_r->reg_rec_count = 1;
12024 }
12025 else if (1 == opcode)
12026 {
12027 /* LDRH(1). */
12028 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
12029 record_buf[0] = reg_src1;
12030 thumb_insn_r->reg_rec_count = 1;
12031 }
12032 else if (2 == opcode)
12033 {
12034 /* STR(3). */
12035 immed_8 = bits (thumb_insn_r->arm_insn, 0, 7);
12036 regcache_raw_read_unsigned (reg_cache, ARM_SP_REGNUM, &u_regval);
12037 record_buf_mem[0] = 4;
12038 record_buf_mem[1] = u_regval + (immed_8 * 4);
12039 thumb_insn_r->mem_rec_count = 1;
12040 }
12041 else if (0 == opcode)
12042 {
12043 /* STRH(1). */
12044 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
12045 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
12046 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12047 record_buf_mem[0] = 2;
12048 record_buf_mem[1] = u_regval + (immed_5 * 2);
12049 thumb_insn_r->mem_rec_count = 1;
12050 }
12051
12052 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12053 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12054 record_buf_mem);
12055
12056 return 0;
12057 }
12058
12059 /* Handling opcode 101 insns. */
12060
12061 static int
12062 thumb_record_misc (insn_decode_record *thumb_insn_r)
12063 {
12064 struct regcache *reg_cache = thumb_insn_r->regcache;
12065
12066 uint32_t opcode = 0, opcode1 = 0, opcode2 = 0;
12067 uint32_t register_bits = 0, register_count = 0;
12068 uint32_t register_list[8] = {0}, index = 0, start_address = 0;
12069 uint32_t record_buf[24], record_buf_mem[48];
12070 uint32_t reg_src1;
12071
12072 ULONGEST u_regval = 0;
12073
12074 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
12075 opcode1 = bits (thumb_insn_r->arm_insn, 8, 12);
12076 opcode2 = bits (thumb_insn_r->arm_insn, 9, 12);
12077
12078 if (14 == opcode2)
12079 {
12080 /* POP. */
12081 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12082 while (register_bits)
12083 {
12084 if (register_bits & 0x00000001)
12085 register_list[register_count++] = 1;
12086 register_bits = register_bits >> 1;
12087 }
12088 record_buf[register_count] = ARM_PS_REGNUM;
12089 record_buf[register_count + 1] = ARM_SP_REGNUM;
12090 thumb_insn_r->reg_rec_count = register_count + 2;
12091 for (register_count = 0; register_count < 8; register_count++)
12092 {
12093 if (register_list[register_count])
12094 {
12095 record_buf[index] = register_count;
12096 index++;
12097 }
12098 }
12099 }
12100 else if (10 == opcode2)
12101 {
12102 /* PUSH. */
12103 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12104 regcache_raw_read_unsigned (reg_cache, ARM_PC_REGNUM, &u_regval);
12105 while (register_bits)
12106 {
12107 if (register_bits & 0x00000001)
12108 register_count++;
12109 register_bits = register_bits >> 1;
12110 }
12111 start_address = u_regval - \
12112 (4 * (bit (thumb_insn_r->arm_insn, 8) + register_count));
12113 thumb_insn_r->mem_rec_count = register_count;
12114 while (register_count)
12115 {
12116 record_buf_mem[(register_count * 2) - 1] = start_address;
12117 record_buf_mem[(register_count * 2) - 2] = 4;
12118 start_address = start_address + 4;
12119 register_count--;
12120 }
12121 record_buf[0] = ARM_SP_REGNUM;
12122 thumb_insn_r->reg_rec_count = 1;
12123 }
12124 else if (0x1E == opcode1)
12125 {
12126 /* BKPT insn. */
12127 /* Handle enhanced software breakpoint insn, BKPT. */
12128 /* CPSR is changed to be executed in ARM state, disabling normal
12129 interrupts, entering abort mode. */
12130 /* According to high vector configuration PC is set. */
12131 /* User hits breakpoint and type reverse, in that case, we need to go back with
12132 previous CPSR and Program Counter. */
12133 record_buf[0] = ARM_PS_REGNUM;
12134 record_buf[1] = ARM_LR_REGNUM;
12135 thumb_insn_r->reg_rec_count = 2;
12136 /* We need to save SPSR value, which is not yet done. */
12137 printf_unfiltered (_("Process record does not support instruction "
12138 "0x%0x at address %s.\n"),
12139 thumb_insn_r->arm_insn,
12140 paddress (thumb_insn_r->gdbarch,
12141 thumb_insn_r->this_addr));
12142 return -1;
12143 }
12144 else if ((0 == opcode) || (1 == opcode))
12145 {
12146 /* ADD(5), ADD(6). */
12147 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12148 record_buf[0] = reg_src1;
12149 thumb_insn_r->reg_rec_count = 1;
12150 }
12151 else if (2 == opcode)
12152 {
12153 /* ADD(7), SUB(4). */
12154 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12155 record_buf[0] = ARM_SP_REGNUM;
12156 thumb_insn_r->reg_rec_count = 1;
12157 }
12158
12159 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12160 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12161 record_buf_mem);
12162
12163 return 0;
12164 }
12165
12166 /* Handling opcode 110 insns. */
12167
12168 static int
12169 thumb_record_ldm_stm_swi (insn_decode_record *thumb_insn_r)
12170 {
12171 struct gdbarch_tdep *tdep = gdbarch_tdep (thumb_insn_r->gdbarch);
12172 struct regcache *reg_cache = thumb_insn_r->regcache;
12173
12174 uint32_t ret = 0; /* function return value: -1:record failure ; 0:success */
12175 uint32_t reg_src1 = 0;
12176 uint32_t opcode1 = 0, opcode2 = 0, register_bits = 0, register_count = 0;
12177 uint32_t register_list[8] = {0}, index = 0, start_address = 0;
12178 uint32_t record_buf[24], record_buf_mem[48];
12179
12180 ULONGEST u_regval = 0;
12181
12182 opcode1 = bits (thumb_insn_r->arm_insn, 8, 12);
12183 opcode2 = bits (thumb_insn_r->arm_insn, 11, 12);
12184
12185 if (1 == opcode2)
12186 {
12187
12188 /* LDMIA. */
12189 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12190 /* Get Rn. */
12191 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12192 while (register_bits)
12193 {
12194 if (register_bits & 0x00000001)
12195 register_list[register_count++] = 1;
12196 register_bits = register_bits >> 1;
12197 }
12198 record_buf[register_count] = reg_src1;
12199 thumb_insn_r->reg_rec_count = register_count + 1;
12200 for (register_count = 0; register_count < 8; register_count++)
12201 {
12202 if (register_list[register_count])
12203 {
12204 record_buf[index] = register_count;
12205 index++;
12206 }
12207 }
12208 }
12209 else if (0 == opcode2)
12210 {
12211 /* It handles both STMIA. */
12212 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12213 /* Get Rn. */
12214 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12215 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12216 while (register_bits)
12217 {
12218 if (register_bits & 0x00000001)
12219 register_count++;
12220 register_bits = register_bits >> 1;
12221 }
12222 start_address = u_regval;
12223 thumb_insn_r->mem_rec_count = register_count;
12224 while (register_count)
12225 {
12226 record_buf_mem[(register_count * 2) - 1] = start_address;
12227 record_buf_mem[(register_count * 2) - 2] = 4;
12228 start_address = start_address + 4;
12229 register_count--;
12230 }
12231 }
12232 else if (0x1F == opcode1)
12233 {
12234 /* Handle arm syscall insn. */
12235 if (tdep->arm_swi_record != NULL)
12236 {
12237 ret = tdep->arm_swi_record(reg_cache);
12238 }
12239 else
12240 {
12241 printf_unfiltered (_("no syscall record support\n"));
12242 return -1;
12243 }
12244 }
12245
12246 /* B (1), conditional branch is automatically taken care in process_record,
12247 as PC is saved there. */
12248
12249 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12250 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12251 record_buf_mem);
12252
12253 return ret;
12254 }
12255
12256 /* Handling opcode 111 insns. */
12257
12258 static int
12259 thumb_record_branch (insn_decode_record *thumb_insn_r)
12260 {
12261 uint32_t record_buf[8];
12262 uint32_t bits_h = 0;
12263
12264 bits_h = bits (thumb_insn_r->arm_insn, 11, 12);
12265
12266 if (2 == bits_h || 3 == bits_h)
12267 {
12268 /* BL */
12269 record_buf[0] = ARM_LR_REGNUM;
12270 thumb_insn_r->reg_rec_count = 1;
12271 }
12272 else if (1 == bits_h)
12273 {
12274 /* BLX(1). */
12275 record_buf[0] = ARM_PS_REGNUM;
12276 record_buf[1] = ARM_LR_REGNUM;
12277 thumb_insn_r->reg_rec_count = 2;
12278 }
12279
12280 /* B(2) is automatically taken care in process_record, as PC is
12281 saved there. */
12282
12283 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12284
12285 return 0;
12286 }
12287
12288
12289 /* Extracts arm/thumb/thumb2 insn depending on the size, and returns 0 on success
12290 and positive val on fauilure. */
12291
12292 static int
12293 extract_arm_insn (insn_decode_record *insn_record, uint32_t insn_size)
12294 {
12295 gdb_byte buf[insn_size];
12296
12297 memset (&buf[0], 0, insn_size);
12298
12299 if (target_read_memory (insn_record->this_addr, &buf[0], insn_size))
12300 return 1;
12301 insn_record->arm_insn = (uint32_t) extract_unsigned_integer (&buf[0],
12302 insn_size,
12303 gdbarch_byte_order (insn_record->gdbarch));
12304 return 0;
12305 }
12306
12307 typedef int (*sti_arm_hdl_fp_t) (insn_decode_record*);
12308
12309 /* Decode arm/thumb insn depending on condition cods and opcodes; and
12310 dispatch it. */
12311
12312 static int
12313 decode_insn (insn_decode_record *arm_record, record_type_t record_type,
12314 uint32_t insn_size)
12315 {
12316
12317 /* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm instruction. */
12318 static const sti_arm_hdl_fp_t const arm_handle_insn[8] =
12319 {
12320 arm_record_data_proc_misc_ld_str, /* 000. */
12321 arm_record_data_proc_imm, /* 001. */
12322 arm_record_ld_st_imm_offset, /* 010. */
12323 arm_record_ld_st_reg_offset, /* 011. */
12324 arm_record_ld_st_multiple, /* 100. */
12325 arm_record_b_bl, /* 101. */
12326 arm_record_coproc, /* 110. */
12327 arm_record_coproc_data_proc /* 111. */
12328 };
12329
12330 /* (Starting from numerical 0); bits 13,14,15 decodes type of thumb instruction. */
12331 static const sti_arm_hdl_fp_t const thumb_handle_insn[8] =
12332 { \
12333 thumb_record_shift_add_sub, /* 000. */
12334 thumb_record_add_sub_cmp_mov, /* 001. */
12335 thumb_record_ld_st_reg_offset, /* 010. */
12336 thumb_record_ld_st_imm_offset, /* 011. */
12337 thumb_record_ld_st_stack, /* 100. */
12338 thumb_record_misc, /* 101. */
12339 thumb_record_ldm_stm_swi, /* 110. */
12340 thumb_record_branch /* 111. */
12341 };
12342
12343 uint32_t ret = 0; /* return value: negative:failure 0:success. */
12344 uint32_t insn_id = 0;
12345
12346 if (extract_arm_insn (arm_record, insn_size))
12347 {
12348 if (record_debug)
12349 {
12350 printf_unfiltered (_("Process record: error reading memory at "
12351 "addr %s len = %d.\n"),
12352 paddress (arm_record->gdbarch, arm_record->this_addr), insn_size);
12353 }
12354 return -1;
12355 }
12356 else if (ARM_RECORD == record_type)
12357 {
12358 arm_record->cond = bits (arm_record->arm_insn, 28, 31);
12359 insn_id = bits (arm_record->arm_insn, 25, 27);
12360 ret = arm_record_extension_space (arm_record);
12361 /* If this insn has fallen into extension space
12362 then we need not decode it anymore. */
12363 if (ret != -1 && !INSN_RECORDED(arm_record))
12364 {
12365 ret = arm_handle_insn[insn_id] (arm_record);
12366 }
12367 }
12368 else if (THUMB_RECORD == record_type)
12369 {
12370 /* As thumb does not have condition codes, we set negative. */
12371 arm_record->cond = -1;
12372 insn_id = bits (arm_record->arm_insn, 13, 15);
12373 ret = thumb_handle_insn[insn_id] (arm_record);
12374 }
12375 else if (THUMB2_RECORD == record_type)
12376 {
12377 printf_unfiltered (_("Process record doesnt support thumb32 instruction "
12378 "0x%0x at address %s.\n"),arm_record->arm_insn,
12379 paddress (arm_record->gdbarch,
12380 arm_record->this_addr));
12381 ret = -1;
12382 }
12383 else
12384 {
12385 /* Throw assertion. */
12386 gdb_assert_not_reached ("not a valid instruction, could not decode");
12387 }
12388
12389 return ret;
12390 }
12391
12392
12393 /* Cleans up local record registers and memory allocations. */
12394
12395 static void
12396 deallocate_reg_mem (insn_decode_record *record)
12397 {
12398 xfree (record->arm_regs);
12399 xfree (record->arm_mems);
12400 }
12401
12402
12403 /* Parse the current instruction and record the values of the registers and
12404 memory that will be changed in current instruction to record_arch_list".
12405 Return -1 if something is wrong. */
12406
12407 int
12408 arm_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
12409 CORE_ADDR insn_addr)
12410 {
12411
12412 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
12413 uint32_t no_of_rec = 0;
12414 uint32_t ret = 0; /* return value: -1:record failure ; 0:success */
12415 ULONGEST t_bit = 0, insn_id = 0;
12416
12417 ULONGEST u_regval = 0;
12418
12419 insn_decode_record arm_record;
12420
12421 memset (&arm_record, 0, sizeof (insn_decode_record));
12422 arm_record.regcache = regcache;
12423 arm_record.this_addr = insn_addr;
12424 arm_record.gdbarch = gdbarch;
12425
12426
12427 if (record_debug > 1)
12428 {
12429 fprintf_unfiltered (gdb_stdlog, "Process record: arm_process_record "
12430 "addr = %s\n",
12431 paddress (gdbarch, arm_record.this_addr));
12432 }
12433
12434 if (extract_arm_insn (&arm_record, 2))
12435 {
12436 if (record_debug)
12437 {
12438 printf_unfiltered (_("Process record: error reading memory at "
12439 "addr %s len = %d.\n"),
12440 paddress (arm_record.gdbarch,
12441 arm_record.this_addr), 2);
12442 }
12443 return -1;
12444 }
12445
12446 /* Check the insn, whether it is thumb or arm one. */
12447
12448 t_bit = arm_psr_thumb_bit (arm_record.gdbarch);
12449 regcache_raw_read_unsigned (arm_record.regcache, ARM_PS_REGNUM, &u_regval);
12450
12451
12452 if (!(u_regval & t_bit))
12453 {
12454 /* We are decoding arm insn. */
12455 ret = decode_insn (&arm_record, ARM_RECORD, ARM_INSN_SIZE_BYTES);
12456 }
12457 else
12458 {
12459 insn_id = bits (arm_record.arm_insn, 11, 15);
12460 /* is it thumb2 insn? */
12461 if ((0x1D == insn_id) || (0x1E == insn_id) || (0x1F == insn_id))
12462 {
12463 ret = decode_insn (&arm_record, THUMB2_RECORD,
12464 THUMB2_INSN_SIZE_BYTES);
12465 }
12466 else
12467 {
12468 /* We are decoding thumb insn. */
12469 ret = decode_insn (&arm_record, THUMB_RECORD, THUMB_INSN_SIZE_BYTES);
12470 }
12471 }
12472
12473 if (0 == ret)
12474 {
12475 /* Record registers. */
12476 record_arch_list_add_reg (arm_record.regcache, ARM_PC_REGNUM);
12477 if (arm_record.arm_regs)
12478 {
12479 for (no_of_rec = 0; no_of_rec < arm_record.reg_rec_count; no_of_rec++)
12480 {
12481 if (record_arch_list_add_reg (arm_record.regcache ,
12482 arm_record.arm_regs[no_of_rec]))
12483 ret = -1;
12484 }
12485 }
12486 /* Record memories. */
12487 if (arm_record.arm_mems)
12488 {
12489 for (no_of_rec = 0; no_of_rec < arm_record.mem_rec_count; no_of_rec++)
12490 {
12491 if (record_arch_list_add_mem
12492 ((CORE_ADDR)arm_record.arm_mems[no_of_rec].addr,
12493 arm_record.arm_mems[no_of_rec].len))
12494 ret = -1;
12495 }
12496 }
12497
12498 if (record_arch_list_add_end ())
12499 ret = -1;
12500 }
12501
12502
12503 deallocate_reg_mem (&arm_record);
12504
12505 return ret;
12506 }
12507
This page took 0.324547 seconds and 5 git commands to generate.