Remove regcache_cooked_read
[deliverable/binutils-gdb.git] / gdb / arm-tdep.c
CommitLineData
ed9a39eb 1/* Common target dependent code for GDB on ARM systems.
0fd88904 2
e2882c85 3 Copyright (C) 1988-2018 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
0baeab03
PA
20#include "defs.h"
21
0963b4bd 22#include <ctype.h> /* XXX for isupper (). */
34e8f22d 23
c906108c
SS
24#include "frame.h"
25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "gdbcmd.h"
28#include "gdbcore.h"
0963b4bd 29#include "dis-asm.h" /* For register styles. */
e47ad6c0 30#include "disasm.h"
4e052eda 31#include "regcache.h"
54483882 32#include "reggroups.h"
3b2ca824 33#include "target-float.h"
fd0407d6 34#include "value.h"
34e8f22d 35#include "arch-utils.h"
4be87837 36#include "osabi.h"
eb5492fa
DJ
37#include "frame-unwind.h"
38#include "frame-base.h"
39#include "trad-frame.h"
842e1f1e
DJ
40#include "objfiles.h"
41#include "dwarf2-frame.h"
e4c16157 42#include "gdbtypes.h"
29d73ae4 43#include "prologue-value.h"
25f8c692 44#include "remote.h"
123dc839
DJ
45#include "target-descriptions.h"
46#include "user-regs.h"
76727919 47#include "observable.h"
34e8f22d 48
8689682c 49#include "arch/arm.h"
d9311bfa 50#include "arch/arm-get-next-pcs.h"
34e8f22d 51#include "arm-tdep.h"
26216b98 52#include "gdb/sim-arm.h"
34e8f22d 53
082fc60d
RE
54#include "elf-bfd.h"
55#include "coff/internal.h"
97e03143 56#include "elf/arm.h"
c906108c 57
60c5725c 58#include "vec.h"
26216b98 59
72508ac0 60#include "record.h"
d02ed0bb 61#include "record-full.h"
325fac50 62#include <algorithm>
72508ac0 63
0a69eedb
YQ
64#include "features/arm/arm-with-m.c"
65#include "features/arm/arm-with-m-fpa-layout.c"
66#include "features/arm/arm-with-m-vfp-d16.c"
67#include "features/arm/arm-with-iwmmxt.c"
68#include "features/arm/arm-with-vfpv2.c"
69#include "features/arm/arm-with-vfpv3.c"
70#include "features/arm/arm-with-neon.c"
9779414d 71
b121eeb9
YQ
72#if GDB_SELF_TEST
73#include "selftest.h"
74#endif
75
6529d2dd
AC
76static int arm_debug;
77
082fc60d
RE
78/* Macros for setting and testing a bit in a minimal symbol that marks
79 it as Thumb function. The MSB of the minimal symbol's "info" field
f594e5e9 80 is used for this purpose.
082fc60d
RE
81
82 MSYMBOL_SET_SPECIAL Actually sets the "special" bit.
f594e5e9 83 MSYMBOL_IS_SPECIAL Tests the "special" bit in a minimal symbol. */
082fc60d 84
0963b4bd 85#define MSYMBOL_SET_SPECIAL(msym) \
b887350f 86 MSYMBOL_TARGET_FLAG_1 (msym) = 1
082fc60d
RE
87
88#define MSYMBOL_IS_SPECIAL(msym) \
b887350f 89 MSYMBOL_TARGET_FLAG_1 (msym)
082fc60d 90
60c5725c
DJ
91/* Per-objfile data used for mapping symbols. */
92static const struct objfile_data *arm_objfile_data_key;
93
94struct arm_mapping_symbol
95{
96 bfd_vma value;
97 char type;
98};
99typedef struct arm_mapping_symbol arm_mapping_symbol_s;
100DEF_VEC_O(arm_mapping_symbol_s);
101
102struct arm_per_objfile
103{
104 VEC(arm_mapping_symbol_s) **section_maps;
105};
106
afd7eef0
RE
107/* The list of available "set arm ..." and "show arm ..." commands. */
108static struct cmd_list_element *setarmcmdlist = NULL;
109static struct cmd_list_element *showarmcmdlist = NULL;
110
fd50bc42
RE
111/* The type of floating-point to use. Keep this in sync with enum
112 arm_float_model, and the help string in _initialize_arm_tdep. */
40478521 113static const char *const fp_model_strings[] =
fd50bc42
RE
114{
115 "auto",
116 "softfpa",
117 "fpa",
118 "softvfp",
28e97307
DJ
119 "vfp",
120 NULL
fd50bc42
RE
121};
122
123/* A variable that can be configured by the user. */
124static enum arm_float_model arm_fp_model = ARM_FLOAT_AUTO;
125static const char *current_fp_model = "auto";
126
28e97307 127/* The ABI to use. Keep this in sync with arm_abi_kind. */
40478521 128static const char *const arm_abi_strings[] =
28e97307
DJ
129{
130 "auto",
131 "APCS",
132 "AAPCS",
133 NULL
134};
135
136/* A variable that can be configured by the user. */
137static enum arm_abi_kind arm_abi_global = ARM_ABI_AUTO;
138static const char *arm_abi_string = "auto";
139
0428b8f5 140/* The execution mode to assume. */
40478521 141static const char *const arm_mode_strings[] =
0428b8f5
DJ
142 {
143 "auto",
144 "arm",
68770265
MGD
145 "thumb",
146 NULL
0428b8f5
DJ
147 };
148
149static const char *arm_fallback_mode_string = "auto";
150static const char *arm_force_mode_string = "auto";
151
f32bf4a4
YQ
152/* The standard register names, and all the valid aliases for them. Note
153 that `fp', `sp' and `pc' are not added in this alias list, because they
154 have been added as builtin user registers in
155 std-regs.c:_initialize_frame_reg. */
123dc839
DJ
156static const struct
157{
158 const char *name;
159 int regnum;
160} arm_register_aliases[] = {
161 /* Basic register numbers. */
162 { "r0", 0 },
163 { "r1", 1 },
164 { "r2", 2 },
165 { "r3", 3 },
166 { "r4", 4 },
167 { "r5", 5 },
168 { "r6", 6 },
169 { "r7", 7 },
170 { "r8", 8 },
171 { "r9", 9 },
172 { "r10", 10 },
173 { "r11", 11 },
174 { "r12", 12 },
175 { "r13", 13 },
176 { "r14", 14 },
177 { "r15", 15 },
178 /* Synonyms (argument and variable registers). */
179 { "a1", 0 },
180 { "a2", 1 },
181 { "a3", 2 },
182 { "a4", 3 },
183 { "v1", 4 },
184 { "v2", 5 },
185 { "v3", 6 },
186 { "v4", 7 },
187 { "v5", 8 },
188 { "v6", 9 },
189 { "v7", 10 },
190 { "v8", 11 },
191 /* Other platform-specific names for r9. */
192 { "sb", 9 },
193 { "tr", 9 },
194 /* Special names. */
195 { "ip", 12 },
123dc839 196 { "lr", 14 },
123dc839
DJ
197 /* Names used by GCC (not listed in the ARM EABI). */
198 { "sl", 10 },
123dc839
DJ
199 /* A special name from the older ATPCS. */
200 { "wr", 7 },
201};
bc90b915 202
123dc839 203static const char *const arm_register_names[] =
da59e081
JM
204{"r0", "r1", "r2", "r3", /* 0 1 2 3 */
205 "r4", "r5", "r6", "r7", /* 4 5 6 7 */
206 "r8", "r9", "r10", "r11", /* 8 9 10 11 */
207 "r12", "sp", "lr", "pc", /* 12 13 14 15 */
208 "f0", "f1", "f2", "f3", /* 16 17 18 19 */
209 "f4", "f5", "f6", "f7", /* 20 21 22 23 */
94c30b78 210 "fps", "cpsr" }; /* 24 25 */
ed9a39eb 211
65b48a81
PB
212/* Holds the current set of options to be passed to the disassembler. */
213static char *arm_disassembler_options;
214
afd7eef0
RE
215/* Valid register name styles. */
216static const char **valid_disassembly_styles;
ed9a39eb 217
afd7eef0
RE
218/* Disassembly style to use. Default to "std" register names. */
219static const char *disassembly_style;
96baa820 220
ed9a39eb 221/* This is used to keep the bfd arch_info in sync with the disassembly
afd7eef0 222 style. */
eb4c3f4a 223static void set_disassembly_style_sfunc (const char *, int,
ed9a39eb 224 struct cmd_list_element *);
65b48a81
PB
225static void show_disassembly_style_sfunc (struct ui_file *, int,
226 struct cmd_list_element *,
227 const char *);
ed9a39eb 228
05d1431c 229static enum register_status arm_neon_quad_read (struct gdbarch *gdbarch,
849d0ba8 230 readable_regcache *regcache,
05d1431c 231 int regnum, gdb_byte *buf);
58d6951d
DJ
232static void arm_neon_quad_write (struct gdbarch *gdbarch,
233 struct regcache *regcache,
234 int regnum, const gdb_byte *buf);
235
e7cf25a8 236static CORE_ADDR
553cb527 237 arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs *self);
e7cf25a8
YQ
238
239
d9311bfa
AT
240/* get_next_pcs operations. */
241static struct arm_get_next_pcs_ops arm_get_next_pcs_ops = {
242 arm_get_next_pcs_read_memory_unsigned_integer,
243 arm_get_next_pcs_syscall_next_pc,
244 arm_get_next_pcs_addr_bits_remove,
ed443b61
YQ
245 arm_get_next_pcs_is_thumb,
246 NULL,
d9311bfa
AT
247};
248
9b8d791a 249struct arm_prologue_cache
c3b4394c 250{
eb5492fa
DJ
251 /* The stack pointer at the time this frame was created; i.e. the
252 caller's stack pointer when this function was called. It is used
253 to identify this frame. */
254 CORE_ADDR prev_sp;
255
4be43953
DJ
256 /* The frame base for this frame is just prev_sp - frame size.
257 FRAMESIZE is the distance from the frame pointer to the
258 initial stack pointer. */
eb5492fa 259
c3b4394c 260 int framesize;
eb5492fa
DJ
261
262 /* The register used to hold the frame pointer for this frame. */
c3b4394c 263 int framereg;
eb5492fa
DJ
264
265 /* Saved register offsets. */
266 struct trad_frame_saved_reg *saved_regs;
c3b4394c 267};
ed9a39eb 268
0d39a070
DJ
269static CORE_ADDR arm_analyze_prologue (struct gdbarch *gdbarch,
270 CORE_ADDR prologue_start,
271 CORE_ADDR prologue_end,
272 struct arm_prologue_cache *cache);
273
cca44b1b
JB
274/* Architecture version for displaced stepping. This effects the behaviour of
275 certain instructions, and really should not be hard-wired. */
276
277#define DISPLACED_STEPPING_ARCH_VERSION 5
278
94c30b78 279/* Set to true if the 32-bit mode is in use. */
c906108c
SS
280
281int arm_apcs_32 = 1;
282
9779414d
DJ
283/* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
284
478fd957 285int
9779414d
DJ
286arm_psr_thumb_bit (struct gdbarch *gdbarch)
287{
288 if (gdbarch_tdep (gdbarch)->is_m)
289 return XPSR_T;
290 else
291 return CPSR_T;
292}
293
d0e59a68
AT
294/* Determine if the processor is currently executing in Thumb mode. */
295
296int
297arm_is_thumb (struct regcache *regcache)
298{
299 ULONGEST cpsr;
ac7936df 300 ULONGEST t_bit = arm_psr_thumb_bit (regcache->arch ());
d0e59a68
AT
301
302 cpsr = regcache_raw_get_unsigned (regcache, ARM_PS_REGNUM);
303
304 return (cpsr & t_bit) != 0;
305}
306
b39cc962
DJ
307/* Determine if FRAME is executing in Thumb mode. */
308
25b41d01 309int
b39cc962
DJ
310arm_frame_is_thumb (struct frame_info *frame)
311{
312 CORE_ADDR cpsr;
9779414d 313 ULONGEST t_bit = arm_psr_thumb_bit (get_frame_arch (frame));
b39cc962
DJ
314
315 /* Every ARM frame unwinder can unwind the T bit of the CPSR, either
316 directly (from a signal frame or dummy frame) or by interpreting
317 the saved LR (from a prologue or DWARF frame). So consult it and
318 trust the unwinders. */
319 cpsr = get_frame_register_unsigned (frame, ARM_PS_REGNUM);
320
9779414d 321 return (cpsr & t_bit) != 0;
b39cc962
DJ
322}
323
60c5725c
DJ
324/* Callback for VEC_lower_bound. */
325
326static inline int
327arm_compare_mapping_symbols (const struct arm_mapping_symbol *lhs,
328 const struct arm_mapping_symbol *rhs)
329{
330 return lhs->value < rhs->value;
331}
332
f9d67f43
DJ
333/* Search for the mapping symbol covering MEMADDR. If one is found,
334 return its type. Otherwise, return 0. If START is non-NULL,
335 set *START to the location of the mapping symbol. */
c906108c 336
f9d67f43
DJ
337static char
338arm_find_mapping_symbol (CORE_ADDR memaddr, CORE_ADDR *start)
c906108c 339{
60c5725c 340 struct obj_section *sec;
0428b8f5 341
60c5725c
DJ
342 /* If there are mapping symbols, consult them. */
343 sec = find_pc_section (memaddr);
344 if (sec != NULL)
345 {
346 struct arm_per_objfile *data;
347 VEC(arm_mapping_symbol_s) *map;
aded6f54
PA
348 struct arm_mapping_symbol map_key = { memaddr - obj_section_addr (sec),
349 0 };
60c5725c
DJ
350 unsigned int idx;
351
9a3c8263
SM
352 data = (struct arm_per_objfile *) objfile_data (sec->objfile,
353 arm_objfile_data_key);
60c5725c
DJ
354 if (data != NULL)
355 {
356 map = data->section_maps[sec->the_bfd_section->index];
357 if (!VEC_empty (arm_mapping_symbol_s, map))
358 {
359 struct arm_mapping_symbol *map_sym;
360
361 idx = VEC_lower_bound (arm_mapping_symbol_s, map, &map_key,
362 arm_compare_mapping_symbols);
363
364 /* VEC_lower_bound finds the earliest ordered insertion
365 point. If the following symbol starts at this exact
366 address, we use that; otherwise, the preceding
367 mapping symbol covers this address. */
368 if (idx < VEC_length (arm_mapping_symbol_s, map))
369 {
370 map_sym = VEC_index (arm_mapping_symbol_s, map, idx);
371 if (map_sym->value == map_key.value)
f9d67f43
DJ
372 {
373 if (start)
374 *start = map_sym->value + obj_section_addr (sec);
375 return map_sym->type;
376 }
60c5725c
DJ
377 }
378
379 if (idx > 0)
380 {
381 map_sym = VEC_index (arm_mapping_symbol_s, map, idx - 1);
f9d67f43
DJ
382 if (start)
383 *start = map_sym->value + obj_section_addr (sec);
384 return map_sym->type;
60c5725c
DJ
385 }
386 }
387 }
388 }
389
f9d67f43
DJ
390 return 0;
391}
392
393/* Determine if the program counter specified in MEMADDR is in a Thumb
394 function. This function should be called for addresses unrelated to
395 any executing frame; otherwise, prefer arm_frame_is_thumb. */
396
e3039479 397int
9779414d 398arm_pc_is_thumb (struct gdbarch *gdbarch, CORE_ADDR memaddr)
f9d67f43 399{
7cbd4a93 400 struct bound_minimal_symbol sym;
f9d67f43 401 char type;
cfba9872
SM
402 arm_displaced_step_closure *dsc
403 = ((arm_displaced_step_closure * )
404 get_displaced_step_closure_by_addr (memaddr));
a42244db
YQ
405
406 /* If checking the mode of displaced instruction in copy area, the mode
407 should be determined by instruction on the original address. */
408 if (dsc)
409 {
410 if (debug_displaced)
411 fprintf_unfiltered (gdb_stdlog,
412 "displaced: check mode of %.8lx instead of %.8lx\n",
413 (unsigned long) dsc->insn_addr,
414 (unsigned long) memaddr);
415 memaddr = dsc->insn_addr;
416 }
f9d67f43
DJ
417
418 /* If bit 0 of the address is set, assume this is a Thumb address. */
419 if (IS_THUMB_ADDR (memaddr))
420 return 1;
421
422 /* If the user wants to override the symbol table, let him. */
423 if (strcmp (arm_force_mode_string, "arm") == 0)
424 return 0;
425 if (strcmp (arm_force_mode_string, "thumb") == 0)
426 return 1;
427
9779414d
DJ
428 /* ARM v6-M and v7-M are always in Thumb mode. */
429 if (gdbarch_tdep (gdbarch)->is_m)
430 return 1;
431
f9d67f43
DJ
432 /* If there are mapping symbols, consult them. */
433 type = arm_find_mapping_symbol (memaddr, NULL);
434 if (type)
435 return type == 't';
436
ed9a39eb 437 /* Thumb functions have a "special" bit set in minimal symbols. */
c906108c 438 sym = lookup_minimal_symbol_by_pc (memaddr);
7cbd4a93
TT
439 if (sym.minsym)
440 return (MSYMBOL_IS_SPECIAL (sym.minsym));
0428b8f5
DJ
441
442 /* If the user wants to override the fallback mode, let them. */
443 if (strcmp (arm_fallback_mode_string, "arm") == 0)
444 return 0;
445 if (strcmp (arm_fallback_mode_string, "thumb") == 0)
446 return 1;
447
448 /* If we couldn't find any symbol, but we're talking to a running
449 target, then trust the current value of $cpsr. This lets
450 "display/i $pc" always show the correct mode (though if there is
451 a symbol table we will not reach here, so it still may not be
18819fa6 452 displayed in the mode it will be executed). */
0428b8f5 453 if (target_has_registers)
18819fa6 454 return arm_frame_is_thumb (get_current_frame ());
0428b8f5
DJ
455
456 /* Otherwise we're out of luck; we assume ARM. */
457 return 0;
c906108c
SS
458}
459
ca90e760
FH
460/* Determine if the address specified equals any of these magic return
461 values, called EXC_RETURN, defined by the ARM v6-M and v7-M
462 architectures.
463
464 From ARMv6-M Reference Manual B1.5.8
465 Table B1-5 Exception return behavior
466
467 EXC_RETURN Return To Return Stack
468 0xFFFFFFF1 Handler mode Main
469 0xFFFFFFF9 Thread mode Main
470 0xFFFFFFFD Thread mode Process
471
472 From ARMv7-M Reference Manual B1.5.8
473 Table B1-8 EXC_RETURN definition of exception return behavior, no FP
474
475 EXC_RETURN Return To Return Stack
476 0xFFFFFFF1 Handler mode Main
477 0xFFFFFFF9 Thread mode Main
478 0xFFFFFFFD Thread mode Process
479
480 Table B1-9 EXC_RETURN definition of exception return behavior, with
481 FP
482
483 EXC_RETURN Return To Return Stack Frame Type
484 0xFFFFFFE1 Handler mode Main Extended
485 0xFFFFFFE9 Thread mode Main Extended
486 0xFFFFFFED Thread mode Process Extended
487 0xFFFFFFF1 Handler mode Main Basic
488 0xFFFFFFF9 Thread mode Main Basic
489 0xFFFFFFFD Thread mode Process Basic
490
491 For more details see "B1.5.8 Exception return behavior"
492 in both ARMv6-M and ARMv7-M Architecture Reference Manuals. */
493
494static int
495arm_m_addr_is_magic (CORE_ADDR addr)
496{
497 switch (addr)
498 {
499 /* Values from Tables in B1.5.8 the EXC_RETURN definitions of
500 the exception return behavior. */
501 case 0xffffffe1:
502 case 0xffffffe9:
503 case 0xffffffed:
504 case 0xfffffff1:
505 case 0xfffffff9:
506 case 0xfffffffd:
507 /* Address is magic. */
508 return 1;
509
510 default:
511 /* Address is not magic. */
512 return 0;
513 }
514}
515
181c1381 516/* Remove useless bits from addresses in a running program. */
34e8f22d 517static CORE_ADDR
24568a2c 518arm_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR val)
c906108c 519{
2ae28aa9
YQ
520 /* On M-profile devices, do not strip the low bit from EXC_RETURN
521 (the magic exception return address). */
522 if (gdbarch_tdep (gdbarch)->is_m
ca90e760 523 && arm_m_addr_is_magic (val))
2ae28aa9
YQ
524 return val;
525
a3a2ee65 526 if (arm_apcs_32)
dd6be234 527 return UNMAKE_THUMB_ADDR (val);
c906108c 528 else
a3a2ee65 529 return (val & 0x03fffffc);
c906108c
SS
530}
531
0d39a070 532/* Return 1 if PC is the start of a compiler helper function which
e0634ccf
UW
533 can be safely ignored during prologue skipping. IS_THUMB is true
534 if the function is known to be a Thumb function due to the way it
535 is being called. */
0d39a070 536static int
e0634ccf 537skip_prologue_function (struct gdbarch *gdbarch, CORE_ADDR pc, int is_thumb)
0d39a070 538{
e0634ccf 539 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
7cbd4a93 540 struct bound_minimal_symbol msym;
0d39a070
DJ
541
542 msym = lookup_minimal_symbol_by_pc (pc);
7cbd4a93 543 if (msym.minsym != NULL
77e371c0 544 && BMSYMBOL_VALUE_ADDRESS (msym) == pc
efd66ac6 545 && MSYMBOL_LINKAGE_NAME (msym.minsym) != NULL)
e0634ccf 546 {
efd66ac6 547 const char *name = MSYMBOL_LINKAGE_NAME (msym.minsym);
0d39a070 548
e0634ccf
UW
549 /* The GNU linker's Thumb call stub to foo is named
550 __foo_from_thumb. */
551 if (strstr (name, "_from_thumb") != NULL)
552 name += 2;
0d39a070 553
e0634ccf
UW
554 /* On soft-float targets, __truncdfsf2 is called to convert promoted
555 arguments to their argument types in non-prototyped
556 functions. */
61012eef 557 if (startswith (name, "__truncdfsf2"))
e0634ccf 558 return 1;
61012eef 559 if (startswith (name, "__aeabi_d2f"))
e0634ccf 560 return 1;
0d39a070 561
e0634ccf 562 /* Internal functions related to thread-local storage. */
61012eef 563 if (startswith (name, "__tls_get_addr"))
e0634ccf 564 return 1;
61012eef 565 if (startswith (name, "__aeabi_read_tp"))
e0634ccf
UW
566 return 1;
567 }
568 else
569 {
570 /* If we run against a stripped glibc, we may be unable to identify
571 special functions by name. Check for one important case,
572 __aeabi_read_tp, by comparing the *code* against the default
573 implementation (this is hand-written ARM assembler in glibc). */
574
575 if (!is_thumb
198cd59d 576 && read_code_unsigned_integer (pc, 4, byte_order_for_code)
e0634ccf 577 == 0xe3e00a0f /* mov r0, #0xffff0fff */
198cd59d 578 && read_code_unsigned_integer (pc + 4, 4, byte_order_for_code)
e0634ccf
UW
579 == 0xe240f01f) /* sub pc, r0, #31 */
580 return 1;
581 }
ec3d575a 582
0d39a070
DJ
583 return 0;
584}
585
621c6d5b
YQ
586/* Extract the immediate from instruction movw/movt of encoding T. INSN1 is
587 the first 16-bit of instruction, and INSN2 is the second 16-bit of
588 instruction. */
589#define EXTRACT_MOVW_MOVT_IMM_T(insn1, insn2) \
590 ((bits ((insn1), 0, 3) << 12) \
591 | (bits ((insn1), 10, 10) << 11) \
592 | (bits ((insn2), 12, 14) << 8) \
593 | bits ((insn2), 0, 7))
594
595/* Extract the immediate from instruction movw/movt of encoding A. INSN is
596 the 32-bit instruction. */
597#define EXTRACT_MOVW_MOVT_IMM_A(insn) \
598 ((bits ((insn), 16, 19) << 12) \
599 | bits ((insn), 0, 11))
600
ec3d575a
UW
601/* Decode immediate value; implements ThumbExpandImmediate pseudo-op. */
602
603static unsigned int
604thumb_expand_immediate (unsigned int imm)
605{
606 unsigned int count = imm >> 7;
607
608 if (count < 8)
609 switch (count / 2)
610 {
611 case 0:
612 return imm & 0xff;
613 case 1:
614 return (imm & 0xff) | ((imm & 0xff) << 16);
615 case 2:
616 return ((imm & 0xff) << 8) | ((imm & 0xff) << 24);
617 case 3:
618 return (imm & 0xff) | ((imm & 0xff) << 8)
619 | ((imm & 0xff) << 16) | ((imm & 0xff) << 24);
620 }
621
622 return (0x80 | (imm & 0x7f)) << (32 - count);
623}
624
540314bd
YQ
625/* Return 1 if the 16-bit Thumb instruction INSN restores SP in
626 epilogue, 0 otherwise. */
627
628static int
629thumb_instruction_restores_sp (unsigned short insn)
630{
631 return (insn == 0x46bd /* mov sp, r7 */
632 || (insn & 0xff80) == 0xb000 /* add sp, imm */
633 || (insn & 0xfe00) == 0xbc00); /* pop <registers> */
634}
635
29d73ae4
DJ
636/* Analyze a Thumb prologue, looking for a recognizable stack frame
637 and frame pointer. Scan until we encounter a store that could
0d39a070
DJ
638 clobber the stack frame unexpectedly, or an unknown instruction.
639 Return the last address which is definitely safe to skip for an
640 initial breakpoint. */
c906108c
SS
641
642static CORE_ADDR
29d73ae4
DJ
643thumb_analyze_prologue (struct gdbarch *gdbarch,
644 CORE_ADDR start, CORE_ADDR limit,
645 struct arm_prologue_cache *cache)
c906108c 646{
0d39a070 647 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
e17a4113 648 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
29d73ae4
DJ
649 int i;
650 pv_t regs[16];
29d73ae4 651 CORE_ADDR offset;
ec3d575a 652 CORE_ADDR unrecognized_pc = 0;
da3c6d4a 653
29d73ae4
DJ
654 for (i = 0; i < 16; i++)
655 regs[i] = pv_register (i, 0);
f7b7ed97 656 pv_area stack (ARM_SP_REGNUM, gdbarch_addr_bit (gdbarch));
29d73ae4 657
29d73ae4 658 while (start < limit)
c906108c 659 {
29d73ae4
DJ
660 unsigned short insn;
661
198cd59d 662 insn = read_code_unsigned_integer (start, 2, byte_order_for_code);
9d4fde75 663
94c30b78 664 if ((insn & 0xfe00) == 0xb400) /* push { rlist } */
da59e081 665 {
29d73ae4
DJ
666 int regno;
667 int mask;
4be43953 668
f7b7ed97 669 if (stack.store_would_trash (regs[ARM_SP_REGNUM]))
4be43953 670 break;
29d73ae4
DJ
671
672 /* Bits 0-7 contain a mask for registers R0-R7. Bit 8 says
673 whether to save LR (R14). */
674 mask = (insn & 0xff) | ((insn & 0x100) << 6);
675
676 /* Calculate offsets of saved R0-R7 and LR. */
677 for (regno = ARM_LR_REGNUM; regno >= 0; regno--)
678 if (mask & (1 << regno))
679 {
29d73ae4
DJ
680 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM],
681 -4);
f7b7ed97 682 stack.store (regs[ARM_SP_REGNUM], 4, regs[regno]);
29d73ae4 683 }
da59e081 684 }
1db01f22 685 else if ((insn & 0xff80) == 0xb080) /* sub sp, #imm */
da59e081 686 {
29d73ae4 687 offset = (insn & 0x7f) << 2; /* get scaled offset */
1db01f22
YQ
688 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM],
689 -offset);
da59e081 690 }
808f7ab1
YQ
691 else if (thumb_instruction_restores_sp (insn))
692 {
693 /* Don't scan past the epilogue. */
694 break;
695 }
0d39a070
DJ
696 else if ((insn & 0xf800) == 0xa800) /* add Rd, sp, #imm */
697 regs[bits (insn, 8, 10)] = pv_add_constant (regs[ARM_SP_REGNUM],
698 (insn & 0xff) << 2);
699 else if ((insn & 0xfe00) == 0x1c00 /* add Rd, Rn, #imm */
700 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM))
701 regs[bits (insn, 0, 2)] = pv_add_constant (regs[bits (insn, 3, 5)],
702 bits (insn, 6, 8));
703 else if ((insn & 0xf800) == 0x3000 /* add Rd, #imm */
704 && pv_is_register (regs[bits (insn, 8, 10)], ARM_SP_REGNUM))
705 regs[bits (insn, 8, 10)] = pv_add_constant (regs[bits (insn, 8, 10)],
706 bits (insn, 0, 7));
707 else if ((insn & 0xfe00) == 0x1800 /* add Rd, Rn, Rm */
708 && pv_is_register (regs[bits (insn, 6, 8)], ARM_SP_REGNUM)
709 && pv_is_constant (regs[bits (insn, 3, 5)]))
710 regs[bits (insn, 0, 2)] = pv_add (regs[bits (insn, 3, 5)],
711 regs[bits (insn, 6, 8)]);
712 else if ((insn & 0xff00) == 0x4400 /* add Rd, Rm */
713 && pv_is_constant (regs[bits (insn, 3, 6)]))
714 {
715 int rd = (bit (insn, 7) << 3) + bits (insn, 0, 2);
716 int rm = bits (insn, 3, 6);
717 regs[rd] = pv_add (regs[rd], regs[rm]);
718 }
29d73ae4 719 else if ((insn & 0xff00) == 0x4600) /* mov hi, lo or mov lo, hi */
da59e081 720 {
29d73ae4
DJ
721 int dst_reg = (insn & 0x7) + ((insn & 0x80) >> 4);
722 int src_reg = (insn & 0x78) >> 3;
723 regs[dst_reg] = regs[src_reg];
da59e081 724 }
29d73ae4 725 else if ((insn & 0xf800) == 0x9000) /* str rd, [sp, #off] */
da59e081 726 {
29d73ae4
DJ
727 /* Handle stores to the stack. Normally pushes are used,
728 but with GCC -mtpcs-frame, there may be other stores
729 in the prologue to create the frame. */
730 int regno = (insn >> 8) & 0x7;
731 pv_t addr;
732
733 offset = (insn & 0xff) << 2;
734 addr = pv_add_constant (regs[ARM_SP_REGNUM], offset);
735
f7b7ed97 736 if (stack.store_would_trash (addr))
29d73ae4
DJ
737 break;
738
f7b7ed97 739 stack.store (addr, 4, regs[regno]);
da59e081 740 }
0d39a070
DJ
741 else if ((insn & 0xf800) == 0x6000) /* str rd, [rn, #off] */
742 {
743 int rd = bits (insn, 0, 2);
744 int rn = bits (insn, 3, 5);
745 pv_t addr;
746
747 offset = bits (insn, 6, 10) << 2;
748 addr = pv_add_constant (regs[rn], offset);
749
f7b7ed97 750 if (stack.store_would_trash (addr))
0d39a070
DJ
751 break;
752
f7b7ed97 753 stack.store (addr, 4, regs[rd]);
0d39a070
DJ
754 }
755 else if (((insn & 0xf800) == 0x7000 /* strb Rd, [Rn, #off] */
756 || (insn & 0xf800) == 0x8000) /* strh Rd, [Rn, #off] */
757 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM))
758 /* Ignore stores of argument registers to the stack. */
759 ;
760 else if ((insn & 0xf800) == 0xc800 /* ldmia Rn!, { registers } */
761 && pv_is_register (regs[bits (insn, 8, 10)], ARM_SP_REGNUM))
762 /* Ignore block loads from the stack, potentially copying
763 parameters from memory. */
764 ;
765 else if ((insn & 0xf800) == 0x9800 /* ldr Rd, [Rn, #immed] */
766 || ((insn & 0xf800) == 0x6800 /* ldr Rd, [sp, #immed] */
767 && pv_is_register (regs[bits (insn, 3, 5)], ARM_SP_REGNUM)))
768 /* Similarly ignore single loads from the stack. */
769 ;
770 else if ((insn & 0xffc0) == 0x0000 /* lsls Rd, Rm, #0 */
771 || (insn & 0xffc0) == 0x1c00) /* add Rd, Rn, #0 */
772 /* Skip register copies, i.e. saves to another register
773 instead of the stack. */
774 ;
775 else if ((insn & 0xf800) == 0x2000) /* movs Rd, #imm */
776 /* Recognize constant loads; even with small stacks these are necessary
777 on Thumb. */
778 regs[bits (insn, 8, 10)] = pv_constant (bits (insn, 0, 7));
779 else if ((insn & 0xf800) == 0x4800) /* ldr Rd, [pc, #imm] */
780 {
781 /* Constant pool loads, for the same reason. */
782 unsigned int constant;
783 CORE_ADDR loc;
784
785 loc = start + 4 + bits (insn, 0, 7) * 4;
786 constant = read_memory_unsigned_integer (loc, 4, byte_order);
787 regs[bits (insn, 8, 10)] = pv_constant (constant);
788 }
db24da6d 789 else if (thumb_insn_size (insn) == 4) /* 32-bit Thumb-2 instructions. */
0d39a070 790 {
0d39a070
DJ
791 unsigned short inst2;
792
198cd59d
YQ
793 inst2 = read_code_unsigned_integer (start + 2, 2,
794 byte_order_for_code);
0d39a070
DJ
795
796 if ((insn & 0xf800) == 0xf000 && (inst2 & 0xe800) == 0xe800)
797 {
798 /* BL, BLX. Allow some special function calls when
799 skipping the prologue; GCC generates these before
800 storing arguments to the stack. */
801 CORE_ADDR nextpc;
802 int j1, j2, imm1, imm2;
803
804 imm1 = sbits (insn, 0, 10);
805 imm2 = bits (inst2, 0, 10);
806 j1 = bit (inst2, 13);
807 j2 = bit (inst2, 11);
808
809 offset = ((imm1 << 12) + (imm2 << 1));
810 offset ^= ((!j2) << 22) | ((!j1) << 23);
811
812 nextpc = start + 4 + offset;
813 /* For BLX make sure to clear the low bits. */
814 if (bit (inst2, 12) == 0)
815 nextpc = nextpc & 0xfffffffc;
816
e0634ccf
UW
817 if (!skip_prologue_function (gdbarch, nextpc,
818 bit (inst2, 12) != 0))
0d39a070
DJ
819 break;
820 }
ec3d575a 821
0963b4bd
MS
822 else if ((insn & 0xffd0) == 0xe900 /* stmdb Rn{!},
823 { registers } */
ec3d575a
UW
824 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
825 {
826 pv_t addr = regs[bits (insn, 0, 3)];
827 int regno;
828
f7b7ed97 829 if (stack.store_would_trash (addr))
ec3d575a
UW
830 break;
831
832 /* Calculate offsets of saved registers. */
833 for (regno = ARM_LR_REGNUM; regno >= 0; regno--)
834 if (inst2 & (1 << regno))
835 {
836 addr = pv_add_constant (addr, -4);
f7b7ed97 837 stack.store (addr, 4, regs[regno]);
ec3d575a
UW
838 }
839
840 if (insn & 0x0020)
841 regs[bits (insn, 0, 3)] = addr;
842 }
843
0963b4bd
MS
844 else if ((insn & 0xff50) == 0xe940 /* strd Rt, Rt2,
845 [Rn, #+/-imm]{!} */
ec3d575a
UW
846 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
847 {
848 int regno1 = bits (inst2, 12, 15);
849 int regno2 = bits (inst2, 8, 11);
850 pv_t addr = regs[bits (insn, 0, 3)];
851
852 offset = inst2 & 0xff;
853 if (insn & 0x0080)
854 addr = pv_add_constant (addr, offset);
855 else
856 addr = pv_add_constant (addr, -offset);
857
f7b7ed97 858 if (stack.store_would_trash (addr))
ec3d575a
UW
859 break;
860
f7b7ed97
TT
861 stack.store (addr, 4, regs[regno1]);
862 stack.store (pv_add_constant (addr, 4),
863 4, regs[regno2]);
ec3d575a
UW
864
865 if (insn & 0x0020)
866 regs[bits (insn, 0, 3)] = addr;
867 }
868
869 else if ((insn & 0xfff0) == 0xf8c0 /* str Rt,[Rn,+/-#imm]{!} */
870 && (inst2 & 0x0c00) == 0x0c00
871 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
872 {
873 int regno = bits (inst2, 12, 15);
874 pv_t addr = regs[bits (insn, 0, 3)];
875
876 offset = inst2 & 0xff;
877 if (inst2 & 0x0200)
878 addr = pv_add_constant (addr, offset);
879 else
880 addr = pv_add_constant (addr, -offset);
881
f7b7ed97 882 if (stack.store_would_trash (addr))
ec3d575a
UW
883 break;
884
f7b7ed97 885 stack.store (addr, 4, regs[regno]);
ec3d575a
UW
886
887 if (inst2 & 0x0100)
888 regs[bits (insn, 0, 3)] = addr;
889 }
890
891 else if ((insn & 0xfff0) == 0xf8c0 /* str.w Rt,[Rn,#imm] */
892 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
893 {
894 int regno = bits (inst2, 12, 15);
895 pv_t addr;
896
897 offset = inst2 & 0xfff;
898 addr = pv_add_constant (regs[bits (insn, 0, 3)], offset);
899
f7b7ed97 900 if (stack.store_would_trash (addr))
ec3d575a
UW
901 break;
902
f7b7ed97 903 stack.store (addr, 4, regs[regno]);
ec3d575a
UW
904 }
905
906 else if ((insn & 0xffd0) == 0xf880 /* str{bh}.w Rt,[Rn,#imm] */
0d39a070 907 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
ec3d575a 908 /* Ignore stores of argument registers to the stack. */
0d39a070 909 ;
ec3d575a
UW
910
911 else if ((insn & 0xffd0) == 0xf800 /* str{bh} Rt,[Rn,#+/-imm] */
912 && (inst2 & 0x0d00) == 0x0c00
0d39a070 913 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
ec3d575a 914 /* Ignore stores of argument registers to the stack. */
0d39a070 915 ;
ec3d575a 916
0963b4bd
MS
917 else if ((insn & 0xffd0) == 0xe890 /* ldmia Rn[!],
918 { registers } */
ec3d575a
UW
919 && (inst2 & 0x8000) == 0x0000
920 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
921 /* Ignore block loads from the stack, potentially copying
922 parameters from memory. */
0d39a070 923 ;
ec3d575a 924
0963b4bd
MS
925 else if ((insn & 0xffb0) == 0xe950 /* ldrd Rt, Rt2,
926 [Rn, #+/-imm] */
0d39a070 927 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
ec3d575a 928 /* Similarly ignore dual loads from the stack. */
0d39a070 929 ;
ec3d575a
UW
930
931 else if ((insn & 0xfff0) == 0xf850 /* ldr Rt,[Rn,#+/-imm] */
932 && (inst2 & 0x0d00) == 0x0c00
0d39a070 933 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
ec3d575a 934 /* Similarly ignore single loads from the stack. */
0d39a070 935 ;
ec3d575a
UW
936
937 else if ((insn & 0xfff0) == 0xf8d0 /* ldr.w Rt,[Rn,#imm] */
0d39a070 938 && pv_is_register (regs[bits (insn, 0, 3)], ARM_SP_REGNUM))
ec3d575a 939 /* Similarly ignore single loads from the stack. */
0d39a070 940 ;
ec3d575a
UW
941
942 else if ((insn & 0xfbf0) == 0xf100 /* add.w Rd, Rn, #imm */
943 && (inst2 & 0x8000) == 0x0000)
944 {
945 unsigned int imm = ((bits (insn, 10, 10) << 11)
946 | (bits (inst2, 12, 14) << 8)
947 | bits (inst2, 0, 7));
948
949 regs[bits (inst2, 8, 11)]
950 = pv_add_constant (regs[bits (insn, 0, 3)],
951 thumb_expand_immediate (imm));
952 }
953
954 else if ((insn & 0xfbf0) == 0xf200 /* addw Rd, Rn, #imm */
955 && (inst2 & 0x8000) == 0x0000)
0d39a070 956 {
ec3d575a
UW
957 unsigned int imm = ((bits (insn, 10, 10) << 11)
958 | (bits (inst2, 12, 14) << 8)
959 | bits (inst2, 0, 7));
960
961 regs[bits (inst2, 8, 11)]
962 = pv_add_constant (regs[bits (insn, 0, 3)], imm);
963 }
964
965 else if ((insn & 0xfbf0) == 0xf1a0 /* sub.w Rd, Rn, #imm */
966 && (inst2 & 0x8000) == 0x0000)
967 {
968 unsigned int imm = ((bits (insn, 10, 10) << 11)
969 | (bits (inst2, 12, 14) << 8)
970 | bits (inst2, 0, 7));
971
972 regs[bits (inst2, 8, 11)]
973 = pv_add_constant (regs[bits (insn, 0, 3)],
974 - (CORE_ADDR) thumb_expand_immediate (imm));
975 }
976
977 else if ((insn & 0xfbf0) == 0xf2a0 /* subw Rd, Rn, #imm */
978 && (inst2 & 0x8000) == 0x0000)
979 {
980 unsigned int imm = ((bits (insn, 10, 10) << 11)
981 | (bits (inst2, 12, 14) << 8)
982 | bits (inst2, 0, 7));
983
984 regs[bits (inst2, 8, 11)]
985 = pv_add_constant (regs[bits (insn, 0, 3)], - (CORE_ADDR) imm);
986 }
987
988 else if ((insn & 0xfbff) == 0xf04f) /* mov.w Rd, #const */
989 {
990 unsigned int imm = ((bits (insn, 10, 10) << 11)
991 | (bits (inst2, 12, 14) << 8)
992 | bits (inst2, 0, 7));
993
994 regs[bits (inst2, 8, 11)]
995 = pv_constant (thumb_expand_immediate (imm));
996 }
997
998 else if ((insn & 0xfbf0) == 0xf240) /* movw Rd, #const */
999 {
621c6d5b
YQ
1000 unsigned int imm
1001 = EXTRACT_MOVW_MOVT_IMM_T (insn, inst2);
ec3d575a
UW
1002
1003 regs[bits (inst2, 8, 11)] = pv_constant (imm);
1004 }
1005
1006 else if (insn == 0xea5f /* mov.w Rd,Rm */
1007 && (inst2 & 0xf0f0) == 0)
1008 {
1009 int dst_reg = (inst2 & 0x0f00) >> 8;
1010 int src_reg = inst2 & 0xf;
1011 regs[dst_reg] = regs[src_reg];
1012 }
1013
1014 else if ((insn & 0xff7f) == 0xf85f) /* ldr.w Rt,<label> */
1015 {
1016 /* Constant pool loads. */
1017 unsigned int constant;
1018 CORE_ADDR loc;
1019
cac395ea 1020 offset = bits (inst2, 0, 11);
ec3d575a
UW
1021 if (insn & 0x0080)
1022 loc = start + 4 + offset;
1023 else
1024 loc = start + 4 - offset;
1025
1026 constant = read_memory_unsigned_integer (loc, 4, byte_order);
1027 regs[bits (inst2, 12, 15)] = pv_constant (constant);
1028 }
1029
1030 else if ((insn & 0xff7f) == 0xe95f) /* ldrd Rt,Rt2,<label> */
1031 {
1032 /* Constant pool loads. */
1033 unsigned int constant;
1034 CORE_ADDR loc;
1035
cac395ea 1036 offset = bits (inst2, 0, 7) << 2;
ec3d575a
UW
1037 if (insn & 0x0080)
1038 loc = start + 4 + offset;
1039 else
1040 loc = start + 4 - offset;
1041
1042 constant = read_memory_unsigned_integer (loc, 4, byte_order);
1043 regs[bits (inst2, 12, 15)] = pv_constant (constant);
1044
1045 constant = read_memory_unsigned_integer (loc + 4, 4, byte_order);
1046 regs[bits (inst2, 8, 11)] = pv_constant (constant);
1047 }
1048
1049 else if (thumb2_instruction_changes_pc (insn, inst2))
1050 {
1051 /* Don't scan past anything that might change control flow. */
0d39a070
DJ
1052 break;
1053 }
ec3d575a
UW
1054 else
1055 {
1056 /* The optimizer might shove anything into the prologue,
1057 so we just skip what we don't recognize. */
1058 unrecognized_pc = start;
1059 }
0d39a070
DJ
1060
1061 start += 2;
1062 }
ec3d575a 1063 else if (thumb_instruction_changes_pc (insn))
3d74b771 1064 {
ec3d575a 1065 /* Don't scan past anything that might change control flow. */
da3c6d4a 1066 break;
3d74b771 1067 }
ec3d575a
UW
1068 else
1069 {
1070 /* The optimizer might shove anything into the prologue,
1071 so we just skip what we don't recognize. */
1072 unrecognized_pc = start;
1073 }
29d73ae4
DJ
1074
1075 start += 2;
c906108c
SS
1076 }
1077
0d39a070
DJ
1078 if (arm_debug)
1079 fprintf_unfiltered (gdb_stdlog, "Prologue scan stopped at %s\n",
1080 paddress (gdbarch, start));
1081
ec3d575a
UW
1082 if (unrecognized_pc == 0)
1083 unrecognized_pc = start;
1084
29d73ae4 1085 if (cache == NULL)
f7b7ed97 1086 return unrecognized_pc;
29d73ae4 1087
29d73ae4
DJ
1088 if (pv_is_register (regs[ARM_FP_REGNUM], ARM_SP_REGNUM))
1089 {
1090 /* Frame pointer is fp. Frame size is constant. */
1091 cache->framereg = ARM_FP_REGNUM;
1092 cache->framesize = -regs[ARM_FP_REGNUM].k;
1093 }
1094 else if (pv_is_register (regs[THUMB_FP_REGNUM], ARM_SP_REGNUM))
1095 {
1096 /* Frame pointer is r7. Frame size is constant. */
1097 cache->framereg = THUMB_FP_REGNUM;
1098 cache->framesize = -regs[THUMB_FP_REGNUM].k;
1099 }
72a2e3dc 1100 else
29d73ae4
DJ
1101 {
1102 /* Try the stack pointer... this is a bit desperate. */
1103 cache->framereg = ARM_SP_REGNUM;
1104 cache->framesize = -regs[ARM_SP_REGNUM].k;
1105 }
29d73ae4
DJ
1106
1107 for (i = 0; i < 16; i++)
f7b7ed97 1108 if (stack.find_reg (gdbarch, i, &offset))
29d73ae4
DJ
1109 cache->saved_regs[i].addr = offset;
1110
ec3d575a 1111 return unrecognized_pc;
c906108c
SS
1112}
1113
621c6d5b
YQ
1114
1115/* Try to analyze the instructions starting from PC, which load symbol
1116 __stack_chk_guard. Return the address of instruction after loading this
1117 symbol, set the dest register number to *BASEREG, and set the size of
1118 instructions for loading symbol in OFFSET. Return 0 if instructions are
1119 not recognized. */
1120
1121static CORE_ADDR
1122arm_analyze_load_stack_chk_guard(CORE_ADDR pc, struct gdbarch *gdbarch,
1123 unsigned int *destreg, int *offset)
1124{
1125 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1126 int is_thumb = arm_pc_is_thumb (gdbarch, pc);
1127 unsigned int low, high, address;
1128
1129 address = 0;
1130 if (is_thumb)
1131 {
1132 unsigned short insn1
198cd59d 1133 = read_code_unsigned_integer (pc, 2, byte_order_for_code);
621c6d5b
YQ
1134
1135 if ((insn1 & 0xf800) == 0x4800) /* ldr Rd, #immed */
1136 {
1137 *destreg = bits (insn1, 8, 10);
1138 *offset = 2;
6ae274b7
YQ
1139 address = (pc & 0xfffffffc) + 4 + (bits (insn1, 0, 7) << 2);
1140 address = read_memory_unsigned_integer (address, 4,
1141 byte_order_for_code);
621c6d5b
YQ
1142 }
1143 else if ((insn1 & 0xfbf0) == 0xf240) /* movw Rd, #const */
1144 {
1145 unsigned short insn2
198cd59d 1146 = read_code_unsigned_integer (pc + 2, 2, byte_order_for_code);
621c6d5b
YQ
1147
1148 low = EXTRACT_MOVW_MOVT_IMM_T (insn1, insn2);
1149
1150 insn1
198cd59d 1151 = read_code_unsigned_integer (pc + 4, 2, byte_order_for_code);
621c6d5b 1152 insn2
198cd59d 1153 = read_code_unsigned_integer (pc + 6, 2, byte_order_for_code);
621c6d5b
YQ
1154
1155 /* movt Rd, #const */
1156 if ((insn1 & 0xfbc0) == 0xf2c0)
1157 {
1158 high = EXTRACT_MOVW_MOVT_IMM_T (insn1, insn2);
1159 *destreg = bits (insn2, 8, 11);
1160 *offset = 8;
1161 address = (high << 16 | low);
1162 }
1163 }
1164 }
1165 else
1166 {
2e9e421f 1167 unsigned int insn
198cd59d 1168 = read_code_unsigned_integer (pc, 4, byte_order_for_code);
2e9e421f 1169
6ae274b7 1170 if ((insn & 0x0e5f0000) == 0x041f0000) /* ldr Rd, [PC, #immed] */
2e9e421f 1171 {
6ae274b7
YQ
1172 address = bits (insn, 0, 11) + pc + 8;
1173 address = read_memory_unsigned_integer (address, 4,
1174 byte_order_for_code);
1175
2e9e421f
UW
1176 *destreg = bits (insn, 12, 15);
1177 *offset = 4;
1178 }
1179 else if ((insn & 0x0ff00000) == 0x03000000) /* movw Rd, #const */
1180 {
1181 low = EXTRACT_MOVW_MOVT_IMM_A (insn);
1182
1183 insn
198cd59d 1184 = read_code_unsigned_integer (pc + 4, 4, byte_order_for_code);
2e9e421f
UW
1185
1186 if ((insn & 0x0ff00000) == 0x03400000) /* movt Rd, #const */
1187 {
1188 high = EXTRACT_MOVW_MOVT_IMM_A (insn);
1189 *destreg = bits (insn, 12, 15);
1190 *offset = 8;
1191 address = (high << 16 | low);
1192 }
1193 }
621c6d5b
YQ
1194 }
1195
1196 return address;
1197}
1198
1199/* Try to skip a sequence of instructions used for stack protector. If PC
0963b4bd
MS
1200 points to the first instruction of this sequence, return the address of
1201 first instruction after this sequence, otherwise, return original PC.
621c6d5b
YQ
1202
1203 On arm, this sequence of instructions is composed of mainly three steps,
1204 Step 1: load symbol __stack_chk_guard,
1205 Step 2: load from address of __stack_chk_guard,
1206 Step 3: store it to somewhere else.
1207
1208 Usually, instructions on step 2 and step 3 are the same on various ARM
1209 architectures. On step 2, it is one instruction 'ldr Rx, [Rn, #0]', and
1210 on step 3, it is also one instruction 'str Rx, [r7, #immd]'. However,
1211 instructions in step 1 vary from different ARM architectures. On ARMv7,
1212 they are,
1213
1214 movw Rn, #:lower16:__stack_chk_guard
1215 movt Rn, #:upper16:__stack_chk_guard
1216
1217 On ARMv5t, it is,
1218
1219 ldr Rn, .Label
1220 ....
1221 .Lable:
1222 .word __stack_chk_guard
1223
1224 Since ldr/str is a very popular instruction, we can't use them as
1225 'fingerprint' or 'signature' of stack protector sequence. Here we choose
1226 sequence {movw/movt, ldr}/ldr/str plus symbol __stack_chk_guard, if not
1227 stripped, as the 'fingerprint' of a stack protector cdoe sequence. */
1228
1229static CORE_ADDR
1230arm_skip_stack_protector(CORE_ADDR pc, struct gdbarch *gdbarch)
1231{
1232 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
22e048c9 1233 unsigned int basereg;
7cbd4a93 1234 struct bound_minimal_symbol stack_chk_guard;
621c6d5b
YQ
1235 int offset;
1236 int is_thumb = arm_pc_is_thumb (gdbarch, pc);
1237 CORE_ADDR addr;
1238
1239 /* Try to parse the instructions in Step 1. */
1240 addr = arm_analyze_load_stack_chk_guard (pc, gdbarch,
1241 &basereg, &offset);
1242 if (!addr)
1243 return pc;
1244
1245 stack_chk_guard = lookup_minimal_symbol_by_pc (addr);
6041179a
JB
1246 /* ADDR must correspond to a symbol whose name is __stack_chk_guard.
1247 Otherwise, this sequence cannot be for stack protector. */
1248 if (stack_chk_guard.minsym == NULL
61012eef 1249 || !startswith (MSYMBOL_LINKAGE_NAME (stack_chk_guard.minsym), "__stack_chk_guard"))
621c6d5b
YQ
1250 return pc;
1251
1252 if (is_thumb)
1253 {
1254 unsigned int destreg;
1255 unsigned short insn
198cd59d 1256 = read_code_unsigned_integer (pc + offset, 2, byte_order_for_code);
621c6d5b
YQ
1257
1258 /* Step 2: ldr Rd, [Rn, #immed], encoding T1. */
1259 if ((insn & 0xf800) != 0x6800)
1260 return pc;
1261 if (bits (insn, 3, 5) != basereg)
1262 return pc;
1263 destreg = bits (insn, 0, 2);
1264
198cd59d
YQ
1265 insn = read_code_unsigned_integer (pc + offset + 2, 2,
1266 byte_order_for_code);
621c6d5b
YQ
1267 /* Step 3: str Rd, [Rn, #immed], encoding T1. */
1268 if ((insn & 0xf800) != 0x6000)
1269 return pc;
1270 if (destreg != bits (insn, 0, 2))
1271 return pc;
1272 }
1273 else
1274 {
1275 unsigned int destreg;
1276 unsigned int insn
198cd59d 1277 = read_code_unsigned_integer (pc + offset, 4, byte_order_for_code);
621c6d5b
YQ
1278
1279 /* Step 2: ldr Rd, [Rn, #immed], encoding A1. */
1280 if ((insn & 0x0e500000) != 0x04100000)
1281 return pc;
1282 if (bits (insn, 16, 19) != basereg)
1283 return pc;
1284 destreg = bits (insn, 12, 15);
1285 /* Step 3: str Rd, [Rn, #immed], encoding A1. */
198cd59d 1286 insn = read_code_unsigned_integer (pc + offset + 4,
621c6d5b
YQ
1287 4, byte_order_for_code);
1288 if ((insn & 0x0e500000) != 0x04000000)
1289 return pc;
1290 if (bits (insn, 12, 15) != destreg)
1291 return pc;
1292 }
1293 /* The size of total two instructions ldr/str is 4 on Thumb-2, while 8
1294 on arm. */
1295 if (is_thumb)
1296 return pc + offset + 4;
1297 else
1298 return pc + offset + 8;
1299}
1300
da3c6d4a
MS
1301/* Advance the PC across any function entry prologue instructions to
1302 reach some "real" code.
34e8f22d
RE
1303
1304 The APCS (ARM Procedure Call Standard) defines the following
ed9a39eb 1305 prologue:
c906108c 1306
c5aa993b
JM
1307 mov ip, sp
1308 [stmfd sp!, {a1,a2,a3,a4}]
1309 stmfd sp!, {...,fp,ip,lr,pc}
ed9a39eb
JM
1310 [stfe f7, [sp, #-12]!]
1311 [stfe f6, [sp, #-12]!]
1312 [stfe f5, [sp, #-12]!]
1313 [stfe f4, [sp, #-12]!]
0963b4bd 1314 sub fp, ip, #nn @@ nn == 20 or 4 depending on second insn. */
c906108c 1315
34e8f22d 1316static CORE_ADDR
6093d2eb 1317arm_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
c906108c 1318{
a89fea3c 1319 CORE_ADDR func_addr, limit_pc;
c906108c 1320
a89fea3c
JL
1321 /* See if we can determine the end of the prologue via the symbol table.
1322 If so, then return either PC, or the PC after the prologue, whichever
1323 is greater. */
1324 if (find_pc_partial_function (pc, NULL, &func_addr, NULL))
c906108c 1325 {
d80b854b
UW
1326 CORE_ADDR post_prologue_pc
1327 = skip_prologue_using_sal (gdbarch, func_addr);
43f3e411 1328 struct compunit_symtab *cust = find_pc_compunit_symtab (func_addr);
0d39a070 1329
621c6d5b
YQ
1330 if (post_prologue_pc)
1331 post_prologue_pc
1332 = arm_skip_stack_protector (post_prologue_pc, gdbarch);
1333
1334
0d39a070
DJ
1335 /* GCC always emits a line note before the prologue and another
1336 one after, even if the two are at the same address or on the
1337 same line. Take advantage of this so that we do not need to
1338 know every instruction that might appear in the prologue. We
1339 will have producer information for most binaries; if it is
1340 missing (e.g. for -gstabs), assuming the GNU tools. */
1341 if (post_prologue_pc
43f3e411
DE
1342 && (cust == NULL
1343 || COMPUNIT_PRODUCER (cust) == NULL
61012eef
GB
1344 || startswith (COMPUNIT_PRODUCER (cust), "GNU ")
1345 || startswith (COMPUNIT_PRODUCER (cust), "clang ")))
0d39a070
DJ
1346 return post_prologue_pc;
1347
a89fea3c 1348 if (post_prologue_pc != 0)
0d39a070
DJ
1349 {
1350 CORE_ADDR analyzed_limit;
1351
1352 /* For non-GCC compilers, make sure the entire line is an
1353 acceptable prologue; GDB will round this function's
1354 return value up to the end of the following line so we
1355 can not skip just part of a line (and we do not want to).
1356
1357 RealView does not treat the prologue specially, but does
1358 associate prologue code with the opening brace; so this
1359 lets us skip the first line if we think it is the opening
1360 brace. */
9779414d 1361 if (arm_pc_is_thumb (gdbarch, func_addr))
0d39a070
DJ
1362 analyzed_limit = thumb_analyze_prologue (gdbarch, func_addr,
1363 post_prologue_pc, NULL);
1364 else
1365 analyzed_limit = arm_analyze_prologue (gdbarch, func_addr,
1366 post_prologue_pc, NULL);
1367
1368 if (analyzed_limit != post_prologue_pc)
1369 return func_addr;
1370
1371 return post_prologue_pc;
1372 }
c906108c
SS
1373 }
1374
a89fea3c
JL
1375 /* Can't determine prologue from the symbol table, need to examine
1376 instructions. */
c906108c 1377
a89fea3c
JL
1378 /* Find an upper limit on the function prologue using the debug
1379 information. If the debug information could not be used to provide
1380 that bound, then use an arbitrary large number as the upper bound. */
0963b4bd 1381 /* Like arm_scan_prologue, stop no later than pc + 64. */
d80b854b 1382 limit_pc = skip_prologue_using_sal (gdbarch, pc);
a89fea3c
JL
1383 if (limit_pc == 0)
1384 limit_pc = pc + 64; /* Magic. */
1385
c906108c 1386
29d73ae4 1387 /* Check if this is Thumb code. */
9779414d 1388 if (arm_pc_is_thumb (gdbarch, pc))
a89fea3c 1389 return thumb_analyze_prologue (gdbarch, pc, limit_pc, NULL);
21daaaaf
YQ
1390 else
1391 return arm_analyze_prologue (gdbarch, pc, limit_pc, NULL);
c906108c 1392}
94c30b78 1393
c5aa993b 1394/* *INDENT-OFF* */
c906108c
SS
1395/* Function: thumb_scan_prologue (helper function for arm_scan_prologue)
1396 This function decodes a Thumb function prologue to determine:
1397 1) the size of the stack frame
1398 2) which registers are saved on it
1399 3) the offsets of saved regs
1400 4) the offset from the stack pointer to the frame pointer
c906108c 1401
da59e081
JM
1402 A typical Thumb function prologue would create this stack frame
1403 (offsets relative to FP)
c906108c
SS
1404 old SP -> 24 stack parameters
1405 20 LR
1406 16 R7
1407 R7 -> 0 local variables (16 bytes)
1408 SP -> -12 additional stack space (12 bytes)
1409 The frame size would thus be 36 bytes, and the frame offset would be
0963b4bd 1410 12 bytes. The frame register is R7.
da59e081 1411
da3c6d4a
MS
1412 The comments for thumb_skip_prolog() describe the algorithm we use
1413 to detect the end of the prolog. */
c5aa993b
JM
1414/* *INDENT-ON* */
1415
c906108c 1416static void
be8626e0 1417thumb_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR prev_pc,
b39cc962 1418 CORE_ADDR block_addr, struct arm_prologue_cache *cache)
c906108c
SS
1419{
1420 CORE_ADDR prologue_start;
1421 CORE_ADDR prologue_end;
c906108c 1422
b39cc962
DJ
1423 if (find_pc_partial_function (block_addr, NULL, &prologue_start,
1424 &prologue_end))
c906108c 1425 {
ec3d575a
UW
1426 /* See comment in arm_scan_prologue for an explanation of
1427 this heuristics. */
1428 if (prologue_end > prologue_start + 64)
1429 {
1430 prologue_end = prologue_start + 64;
1431 }
c906108c
SS
1432 }
1433 else
f7060f85
DJ
1434 /* We're in the boondocks: we have no idea where the start of the
1435 function is. */
1436 return;
c906108c 1437
325fac50 1438 prologue_end = std::min (prologue_end, prev_pc);
c906108c 1439
be8626e0 1440 thumb_analyze_prologue (gdbarch, prologue_start, prologue_end, cache);
c906108c
SS
1441}
1442
f303bc3e
YQ
1443/* Return 1 if the ARM instruction INSN restores SP in epilogue, 0
1444 otherwise. */
1445
1446static int
1447arm_instruction_restores_sp (unsigned int insn)
1448{
1449 if (bits (insn, 28, 31) != INST_NV)
1450 {
1451 if ((insn & 0x0df0f000) == 0x0080d000
1452 /* ADD SP (register or immediate). */
1453 || (insn & 0x0df0f000) == 0x0040d000
1454 /* SUB SP (register or immediate). */
1455 || (insn & 0x0ffffff0) == 0x01a0d000
1456 /* MOV SP. */
1457 || (insn & 0x0fff0000) == 0x08bd0000
1458 /* POP (LDMIA). */
1459 || (insn & 0x0fff0000) == 0x049d0000)
1460 /* POP of a single register. */
1461 return 1;
1462 }
1463
1464 return 0;
1465}
1466
0d39a070
DJ
1467/* Analyze an ARM mode prologue starting at PROLOGUE_START and
1468 continuing no further than PROLOGUE_END. If CACHE is non-NULL,
1469 fill it in. Return the first address not recognized as a prologue
1470 instruction.
eb5492fa 1471
0d39a070
DJ
1472 We recognize all the instructions typically found in ARM prologues,
1473 plus harmless instructions which can be skipped (either for analysis
1474 purposes, or a more restrictive set that can be skipped when finding
1475 the end of the prologue). */
1476
1477static CORE_ADDR
1478arm_analyze_prologue (struct gdbarch *gdbarch,
1479 CORE_ADDR prologue_start, CORE_ADDR prologue_end,
1480 struct arm_prologue_cache *cache)
1481{
0d39a070
DJ
1482 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
1483 int regno;
1484 CORE_ADDR offset, current_pc;
1485 pv_t regs[ARM_FPS_REGNUM];
0d39a070
DJ
1486 CORE_ADDR unrecognized_pc = 0;
1487
1488 /* Search the prologue looking for instructions that set up the
96baa820 1489 frame pointer, adjust the stack pointer, and save registers.
ed9a39eb 1490
96baa820
JM
1491 Be careful, however, and if it doesn't look like a prologue,
1492 don't try to scan it. If, for instance, a frameless function
1493 begins with stmfd sp!, then we will tell ourselves there is
b8d5e71d 1494 a frame, which will confuse stack traceback, as well as "finish"
96baa820 1495 and other operations that rely on a knowledge of the stack
0d39a070 1496 traceback. */
d4473757 1497
4be43953
DJ
1498 for (regno = 0; regno < ARM_FPS_REGNUM; regno++)
1499 regs[regno] = pv_register (regno, 0);
f7b7ed97 1500 pv_area stack (ARM_SP_REGNUM, gdbarch_addr_bit (gdbarch));
4be43953 1501
94c30b78
MS
1502 for (current_pc = prologue_start;
1503 current_pc < prologue_end;
f43845b3 1504 current_pc += 4)
96baa820 1505 {
e17a4113 1506 unsigned int insn
198cd59d 1507 = read_code_unsigned_integer (current_pc, 4, byte_order_for_code);
9d4fde75 1508
94c30b78 1509 if (insn == 0xe1a0c00d) /* mov ip, sp */
f43845b3 1510 {
4be43953 1511 regs[ARM_IP_REGNUM] = regs[ARM_SP_REGNUM];
28cd8767
JG
1512 continue;
1513 }
0d39a070
DJ
1514 else if ((insn & 0xfff00000) == 0xe2800000 /* add Rd, Rn, #n */
1515 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
28cd8767
JG
1516 {
1517 unsigned imm = insn & 0xff; /* immediate value */
1518 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
0d39a070 1519 int rd = bits (insn, 12, 15);
28cd8767 1520 imm = (imm >> rot) | (imm << (32 - rot));
0d39a070 1521 regs[rd] = pv_add_constant (regs[bits (insn, 16, 19)], imm);
28cd8767
JG
1522 continue;
1523 }
0d39a070
DJ
1524 else if ((insn & 0xfff00000) == 0xe2400000 /* sub Rd, Rn, #n */
1525 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
28cd8767
JG
1526 {
1527 unsigned imm = insn & 0xff; /* immediate value */
1528 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
0d39a070 1529 int rd = bits (insn, 12, 15);
28cd8767 1530 imm = (imm >> rot) | (imm << (32 - rot));
0d39a070 1531 regs[rd] = pv_add_constant (regs[bits (insn, 16, 19)], -imm);
f43845b3
MS
1532 continue;
1533 }
0963b4bd
MS
1534 else if ((insn & 0xffff0fff) == 0xe52d0004) /* str Rd,
1535 [sp, #-4]! */
f43845b3 1536 {
f7b7ed97 1537 if (stack.store_would_trash (regs[ARM_SP_REGNUM]))
4be43953
DJ
1538 break;
1539 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -4);
f7b7ed97
TT
1540 stack.store (regs[ARM_SP_REGNUM], 4,
1541 regs[bits (insn, 12, 15)]);
f43845b3
MS
1542 continue;
1543 }
1544 else if ((insn & 0xffff0000) == 0xe92d0000)
d4473757
KB
1545 /* stmfd sp!, {..., fp, ip, lr, pc}
1546 or
1547 stmfd sp!, {a1, a2, a3, a4} */
c906108c 1548 {
d4473757 1549 int mask = insn & 0xffff;
ed9a39eb 1550
f7b7ed97 1551 if (stack.store_would_trash (regs[ARM_SP_REGNUM]))
4be43953
DJ
1552 break;
1553
94c30b78 1554 /* Calculate offsets of saved registers. */
34e8f22d 1555 for (regno = ARM_PC_REGNUM; regno >= 0; regno--)
d4473757
KB
1556 if (mask & (1 << regno))
1557 {
0963b4bd
MS
1558 regs[ARM_SP_REGNUM]
1559 = pv_add_constant (regs[ARM_SP_REGNUM], -4);
f7b7ed97 1560 stack.store (regs[ARM_SP_REGNUM], 4, regs[regno]);
d4473757
KB
1561 }
1562 }
0d39a070
DJ
1563 else if ((insn & 0xffff0000) == 0xe54b0000 /* strb rx,[r11,#-n] */
1564 || (insn & 0xffff00f0) == 0xe14b00b0 /* strh rx,[r11,#-n] */
f8bf5763 1565 || (insn & 0xffffc000) == 0xe50b0000) /* str rx,[r11,#-n] */
b8d5e71d
MS
1566 {
1567 /* No need to add this to saved_regs -- it's just an arg reg. */
1568 continue;
1569 }
0d39a070
DJ
1570 else if ((insn & 0xffff0000) == 0xe5cd0000 /* strb rx,[sp,#n] */
1571 || (insn & 0xffff00f0) == 0xe1cd00b0 /* strh rx,[sp,#n] */
f8bf5763 1572 || (insn & 0xffffc000) == 0xe58d0000) /* str rx,[sp,#n] */
f43845b3
MS
1573 {
1574 /* No need to add this to saved_regs -- it's just an arg reg. */
1575 continue;
1576 }
0963b4bd
MS
1577 else if ((insn & 0xfff00000) == 0xe8800000 /* stm Rn,
1578 { registers } */
0d39a070
DJ
1579 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1580 {
1581 /* No need to add this to saved_regs -- it's just arg regs. */
1582 continue;
1583 }
d4473757
KB
1584 else if ((insn & 0xfffff000) == 0xe24cb000) /* sub fp, ip #n */
1585 {
94c30b78
MS
1586 unsigned imm = insn & 0xff; /* immediate value */
1587 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
d4473757 1588 imm = (imm >> rot) | (imm << (32 - rot));
4be43953 1589 regs[ARM_FP_REGNUM] = pv_add_constant (regs[ARM_IP_REGNUM], -imm);
d4473757
KB
1590 }
1591 else if ((insn & 0xfffff000) == 0xe24dd000) /* sub sp, sp #n */
1592 {
94c30b78
MS
1593 unsigned imm = insn & 0xff; /* immediate value */
1594 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
d4473757 1595 imm = (imm >> rot) | (imm << (32 - rot));
4be43953 1596 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -imm);
d4473757 1597 }
0963b4bd
MS
1598 else if ((insn & 0xffff7fff) == 0xed6d0103 /* stfe f?,
1599 [sp, -#c]! */
2af46ca0 1600 && gdbarch_tdep (gdbarch)->have_fpa_registers)
d4473757 1601 {
f7b7ed97 1602 if (stack.store_would_trash (regs[ARM_SP_REGNUM]))
4be43953
DJ
1603 break;
1604
1605 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -12);
34e8f22d 1606 regno = ARM_F0_REGNUM + ((insn >> 12) & 0x07);
f7b7ed97 1607 stack.store (regs[ARM_SP_REGNUM], 12, regs[regno]);
d4473757 1608 }
0963b4bd
MS
1609 else if ((insn & 0xffbf0fff) == 0xec2d0200 /* sfmfd f0, 4,
1610 [sp!] */
2af46ca0 1611 && gdbarch_tdep (gdbarch)->have_fpa_registers)
d4473757
KB
1612 {
1613 int n_saved_fp_regs;
1614 unsigned int fp_start_reg, fp_bound_reg;
1615
f7b7ed97 1616 if (stack.store_would_trash (regs[ARM_SP_REGNUM]))
4be43953
DJ
1617 break;
1618
94c30b78 1619 if ((insn & 0x800) == 0x800) /* N0 is set */
96baa820 1620 {
d4473757
KB
1621 if ((insn & 0x40000) == 0x40000) /* N1 is set */
1622 n_saved_fp_regs = 3;
1623 else
1624 n_saved_fp_regs = 1;
96baa820 1625 }
d4473757 1626 else
96baa820 1627 {
d4473757
KB
1628 if ((insn & 0x40000) == 0x40000) /* N1 is set */
1629 n_saved_fp_regs = 2;
1630 else
1631 n_saved_fp_regs = 4;
96baa820 1632 }
d4473757 1633
34e8f22d 1634 fp_start_reg = ARM_F0_REGNUM + ((insn >> 12) & 0x7);
d4473757
KB
1635 fp_bound_reg = fp_start_reg + n_saved_fp_regs;
1636 for (; fp_start_reg < fp_bound_reg; fp_start_reg++)
96baa820 1637 {
4be43953 1638 regs[ARM_SP_REGNUM] = pv_add_constant (regs[ARM_SP_REGNUM], -12);
f7b7ed97
TT
1639 stack.store (regs[ARM_SP_REGNUM], 12,
1640 regs[fp_start_reg++]);
96baa820 1641 }
c906108c 1642 }
0d39a070
DJ
1643 else if ((insn & 0xff000000) == 0xeb000000 && cache == NULL) /* bl */
1644 {
1645 /* Allow some special function calls when skipping the
1646 prologue; GCC generates these before storing arguments to
1647 the stack. */
1648 CORE_ADDR dest = BranchDest (current_pc, insn);
1649
e0634ccf 1650 if (skip_prologue_function (gdbarch, dest, 0))
0d39a070
DJ
1651 continue;
1652 else
1653 break;
1654 }
d4473757 1655 else if ((insn & 0xf0000000) != 0xe0000000)
0963b4bd 1656 break; /* Condition not true, exit early. */
0d39a070
DJ
1657 else if (arm_instruction_changes_pc (insn))
1658 /* Don't scan past anything that might change control flow. */
1659 break;
f303bc3e
YQ
1660 else if (arm_instruction_restores_sp (insn))
1661 {
1662 /* Don't scan past the epilogue. */
1663 break;
1664 }
d19f7eee
UW
1665 else if ((insn & 0xfe500000) == 0xe8100000 /* ldm */
1666 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1667 /* Ignore block loads from the stack, potentially copying
1668 parameters from memory. */
1669 continue;
1670 else if ((insn & 0xfc500000) == 0xe4100000
1671 && pv_is_register (regs[bits (insn, 16, 19)], ARM_SP_REGNUM))
1672 /* Similarly ignore single loads from the stack. */
1673 continue;
0d39a070
DJ
1674 else if ((insn & 0xffff0ff0) == 0xe1a00000)
1675 /* MOV Rd, Rm. Skip register copies, i.e. saves to another
1676 register instead of the stack. */
d4473757 1677 continue;
0d39a070
DJ
1678 else
1679 {
21daaaaf
YQ
1680 /* The optimizer might shove anything into the prologue, if
1681 we build up cache (cache != NULL) from scanning prologue,
1682 we just skip what we don't recognize and scan further to
1683 make cache as complete as possible. However, if we skip
1684 prologue, we'll stop immediately on unrecognized
1685 instruction. */
0d39a070 1686 unrecognized_pc = current_pc;
21daaaaf
YQ
1687 if (cache != NULL)
1688 continue;
1689 else
1690 break;
0d39a070 1691 }
c906108c
SS
1692 }
1693
0d39a070
DJ
1694 if (unrecognized_pc == 0)
1695 unrecognized_pc = current_pc;
1696
0d39a070
DJ
1697 if (cache)
1698 {
4072f920
YQ
1699 int framereg, framesize;
1700
1701 /* The frame size is just the distance from the frame register
1702 to the original stack pointer. */
1703 if (pv_is_register (regs[ARM_FP_REGNUM], ARM_SP_REGNUM))
1704 {
1705 /* Frame pointer is fp. */
1706 framereg = ARM_FP_REGNUM;
1707 framesize = -regs[ARM_FP_REGNUM].k;
1708 }
1709 else
1710 {
1711 /* Try the stack pointer... this is a bit desperate. */
1712 framereg = ARM_SP_REGNUM;
1713 framesize = -regs[ARM_SP_REGNUM].k;
1714 }
1715
0d39a070
DJ
1716 cache->framereg = framereg;
1717 cache->framesize = framesize;
1718
1719 for (regno = 0; regno < ARM_FPS_REGNUM; regno++)
f7b7ed97 1720 if (stack.find_reg (gdbarch, regno, &offset))
0d39a070
DJ
1721 cache->saved_regs[regno].addr = offset;
1722 }
1723
1724 if (arm_debug)
1725 fprintf_unfiltered (gdb_stdlog, "Prologue scan stopped at %s\n",
1726 paddress (gdbarch, unrecognized_pc));
4be43953 1727
0d39a070
DJ
1728 return unrecognized_pc;
1729}
1730
1731static void
1732arm_scan_prologue (struct frame_info *this_frame,
1733 struct arm_prologue_cache *cache)
1734{
1735 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1736 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bec2ab5a 1737 CORE_ADDR prologue_start, prologue_end;
0d39a070
DJ
1738 CORE_ADDR prev_pc = get_frame_pc (this_frame);
1739 CORE_ADDR block_addr = get_frame_address_in_block (this_frame);
0d39a070
DJ
1740
1741 /* Assume there is no frame until proven otherwise. */
1742 cache->framereg = ARM_SP_REGNUM;
1743 cache->framesize = 0;
1744
1745 /* Check for Thumb prologue. */
1746 if (arm_frame_is_thumb (this_frame))
1747 {
1748 thumb_scan_prologue (gdbarch, prev_pc, block_addr, cache);
1749 return;
1750 }
1751
1752 /* Find the function prologue. If we can't find the function in
1753 the symbol table, peek in the stack frame to find the PC. */
1754 if (find_pc_partial_function (block_addr, NULL, &prologue_start,
1755 &prologue_end))
1756 {
1757 /* One way to find the end of the prologue (which works well
1758 for unoptimized code) is to do the following:
1759
1760 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
1761
1762 if (sal.line == 0)
1763 prologue_end = prev_pc;
1764 else if (sal.end < prologue_end)
1765 prologue_end = sal.end;
1766
1767 This mechanism is very accurate so long as the optimizer
1768 doesn't move any instructions from the function body into the
1769 prologue. If this happens, sal.end will be the last
1770 instruction in the first hunk of prologue code just before
1771 the first instruction that the scheduler has moved from
1772 the body to the prologue.
1773
1774 In order to make sure that we scan all of the prologue
1775 instructions, we use a slightly less accurate mechanism which
1776 may scan more than necessary. To help compensate for this
1777 lack of accuracy, the prologue scanning loop below contains
1778 several clauses which'll cause the loop to terminate early if
1779 an implausible prologue instruction is encountered.
1780
1781 The expression
1782
1783 prologue_start + 64
1784
1785 is a suitable endpoint since it accounts for the largest
1786 possible prologue plus up to five instructions inserted by
1787 the scheduler. */
1788
1789 if (prologue_end > prologue_start + 64)
1790 {
1791 prologue_end = prologue_start + 64; /* See above. */
1792 }
1793 }
1794 else
1795 {
1796 /* We have no symbol information. Our only option is to assume this
1797 function has a standard stack frame and the normal frame register.
1798 Then, we can find the value of our frame pointer on entrance to
1799 the callee (or at the present moment if this is the innermost frame).
1800 The value stored there should be the address of the stmfd + 8. */
1801 CORE_ADDR frame_loc;
7913a64c 1802 ULONGEST return_value;
0d39a070
DJ
1803
1804 frame_loc = get_frame_register_unsigned (this_frame, ARM_FP_REGNUM);
7913a64c
YQ
1805 if (!safe_read_memory_unsigned_integer (frame_loc, 4, byte_order,
1806 &return_value))
0d39a070
DJ
1807 return;
1808 else
1809 {
1810 prologue_start = gdbarch_addr_bits_remove
1811 (gdbarch, return_value) - 8;
1812 prologue_end = prologue_start + 64; /* See above. */
1813 }
1814 }
1815
1816 if (prev_pc < prologue_end)
1817 prologue_end = prev_pc;
1818
1819 arm_analyze_prologue (gdbarch, prologue_start, prologue_end, cache);
c906108c
SS
1820}
1821
eb5492fa 1822static struct arm_prologue_cache *
a262aec2 1823arm_make_prologue_cache (struct frame_info *this_frame)
c906108c 1824{
eb5492fa
DJ
1825 int reg;
1826 struct arm_prologue_cache *cache;
1827 CORE_ADDR unwound_fp;
c5aa993b 1828
35d5d4ee 1829 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
a262aec2 1830 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
c906108c 1831
a262aec2 1832 arm_scan_prologue (this_frame, cache);
848cfffb 1833
a262aec2 1834 unwound_fp = get_frame_register_unsigned (this_frame, cache->framereg);
eb5492fa
DJ
1835 if (unwound_fp == 0)
1836 return cache;
c906108c 1837
4be43953 1838 cache->prev_sp = unwound_fp + cache->framesize;
c906108c 1839
eb5492fa
DJ
1840 /* Calculate actual addresses of saved registers using offsets
1841 determined by arm_scan_prologue. */
a262aec2 1842 for (reg = 0; reg < gdbarch_num_regs (get_frame_arch (this_frame)); reg++)
e28a332c 1843 if (trad_frame_addr_p (cache->saved_regs, reg))
eb5492fa
DJ
1844 cache->saved_regs[reg].addr += cache->prev_sp;
1845
1846 return cache;
c906108c
SS
1847}
1848
c1ee9414
LM
1849/* Implementation of the stop_reason hook for arm_prologue frames. */
1850
1851static enum unwind_stop_reason
1852arm_prologue_unwind_stop_reason (struct frame_info *this_frame,
1853 void **this_cache)
1854{
1855 struct arm_prologue_cache *cache;
1856 CORE_ADDR pc;
1857
1858 if (*this_cache == NULL)
1859 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1860 cache = (struct arm_prologue_cache *) *this_cache;
c1ee9414
LM
1861
1862 /* This is meant to halt the backtrace at "_start". */
1863 pc = get_frame_pc (this_frame);
1864 if (pc <= gdbarch_tdep (get_frame_arch (this_frame))->lowest_pc)
1865 return UNWIND_OUTERMOST;
1866
1867 /* If we've hit a wall, stop. */
1868 if (cache->prev_sp == 0)
1869 return UNWIND_OUTERMOST;
1870
1871 return UNWIND_NO_REASON;
1872}
1873
eb5492fa
DJ
1874/* Our frame ID for a normal frame is the current function's starting PC
1875 and the caller's SP when we were called. */
c906108c 1876
148754e5 1877static void
a262aec2 1878arm_prologue_this_id (struct frame_info *this_frame,
eb5492fa
DJ
1879 void **this_cache,
1880 struct frame_id *this_id)
c906108c 1881{
eb5492fa
DJ
1882 struct arm_prologue_cache *cache;
1883 struct frame_id id;
2c404490 1884 CORE_ADDR pc, func;
f079148d 1885
eb5492fa 1886 if (*this_cache == NULL)
a262aec2 1887 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1888 cache = (struct arm_prologue_cache *) *this_cache;
2a451106 1889
0e9e9abd
UW
1890 /* Use function start address as part of the frame ID. If we cannot
1891 identify the start address (due to missing symbol information),
1892 fall back to just using the current PC. */
c1ee9414 1893 pc = get_frame_pc (this_frame);
2c404490 1894 func = get_frame_func (this_frame);
0e9e9abd
UW
1895 if (!func)
1896 func = pc;
1897
eb5492fa 1898 id = frame_id_build (cache->prev_sp, func);
eb5492fa 1899 *this_id = id;
c906108c
SS
1900}
1901
a262aec2
DJ
1902static struct value *
1903arm_prologue_prev_register (struct frame_info *this_frame,
eb5492fa 1904 void **this_cache,
a262aec2 1905 int prev_regnum)
24de872b 1906{
24568a2c 1907 struct gdbarch *gdbarch = get_frame_arch (this_frame);
24de872b
DJ
1908 struct arm_prologue_cache *cache;
1909
eb5492fa 1910 if (*this_cache == NULL)
a262aec2 1911 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1912 cache = (struct arm_prologue_cache *) *this_cache;
24de872b 1913
eb5492fa 1914 /* If we are asked to unwind the PC, then we need to return the LR
b39cc962
DJ
1915 instead. The prologue may save PC, but it will point into this
1916 frame's prologue, not the next frame's resume location. Also
1917 strip the saved T bit. A valid LR may have the low bit set, but
1918 a valid PC never does. */
eb5492fa 1919 if (prev_regnum == ARM_PC_REGNUM)
b39cc962
DJ
1920 {
1921 CORE_ADDR lr;
1922
1923 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
1924 return frame_unwind_got_constant (this_frame, prev_regnum,
24568a2c 1925 arm_addr_bits_remove (gdbarch, lr));
b39cc962 1926 }
24de872b 1927
eb5492fa 1928 /* SP is generally not saved to the stack, but this frame is
a262aec2 1929 identified by the next frame's stack pointer at the time of the call.
eb5492fa
DJ
1930 The value was already reconstructed into PREV_SP. */
1931 if (prev_regnum == ARM_SP_REGNUM)
a262aec2 1932 return frame_unwind_got_constant (this_frame, prev_regnum, cache->prev_sp);
eb5492fa 1933
b39cc962
DJ
1934 /* The CPSR may have been changed by the call instruction and by the
1935 called function. The only bit we can reconstruct is the T bit,
1936 by checking the low bit of LR as of the call. This is a reliable
1937 indicator of Thumb-ness except for some ARM v4T pre-interworking
1938 Thumb code, which could get away with a clear low bit as long as
1939 the called function did not use bx. Guess that all other
1940 bits are unchanged; the condition flags are presumably lost,
1941 but the processor status is likely valid. */
1942 if (prev_regnum == ARM_PS_REGNUM)
1943 {
1944 CORE_ADDR lr, cpsr;
9779414d 1945 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
b39cc962
DJ
1946
1947 cpsr = get_frame_register_unsigned (this_frame, prev_regnum);
1948 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
1949 if (IS_THUMB_ADDR (lr))
9779414d 1950 cpsr |= t_bit;
b39cc962 1951 else
9779414d 1952 cpsr &= ~t_bit;
b39cc962
DJ
1953 return frame_unwind_got_constant (this_frame, prev_regnum, cpsr);
1954 }
1955
a262aec2
DJ
1956 return trad_frame_get_prev_register (this_frame, cache->saved_regs,
1957 prev_regnum);
eb5492fa
DJ
1958}
1959
1960struct frame_unwind arm_prologue_unwind = {
1961 NORMAL_FRAME,
c1ee9414 1962 arm_prologue_unwind_stop_reason,
eb5492fa 1963 arm_prologue_this_id,
a262aec2
DJ
1964 arm_prologue_prev_register,
1965 NULL,
1966 default_frame_sniffer
eb5492fa
DJ
1967};
1968
0e9e9abd
UW
1969/* Maintain a list of ARM exception table entries per objfile, similar to the
1970 list of mapping symbols. We only cache entries for standard ARM-defined
1971 personality routines; the cache will contain only the frame unwinding
1972 instructions associated with the entry (not the descriptors). */
1973
1974static const struct objfile_data *arm_exidx_data_key;
1975
1976struct arm_exidx_entry
1977{
1978 bfd_vma addr;
1979 gdb_byte *entry;
1980};
1981typedef struct arm_exidx_entry arm_exidx_entry_s;
1982DEF_VEC_O(arm_exidx_entry_s);
1983
1984struct arm_exidx_data
1985{
1986 VEC(arm_exidx_entry_s) **section_maps;
1987};
1988
1989static void
1990arm_exidx_data_free (struct objfile *objfile, void *arg)
1991{
9a3c8263 1992 struct arm_exidx_data *data = (struct arm_exidx_data *) arg;
0e9e9abd
UW
1993 unsigned int i;
1994
1995 for (i = 0; i < objfile->obfd->section_count; i++)
1996 VEC_free (arm_exidx_entry_s, data->section_maps[i]);
1997}
1998
1999static inline int
2000arm_compare_exidx_entries (const struct arm_exidx_entry *lhs,
2001 const struct arm_exidx_entry *rhs)
2002{
2003 return lhs->addr < rhs->addr;
2004}
2005
2006static struct obj_section *
2007arm_obj_section_from_vma (struct objfile *objfile, bfd_vma vma)
2008{
2009 struct obj_section *osect;
2010
2011 ALL_OBJFILE_OSECTIONS (objfile, osect)
2012 if (bfd_get_section_flags (objfile->obfd,
2013 osect->the_bfd_section) & SEC_ALLOC)
2014 {
2015 bfd_vma start, size;
2016 start = bfd_get_section_vma (objfile->obfd, osect->the_bfd_section);
2017 size = bfd_get_section_size (osect->the_bfd_section);
2018
2019 if (start <= vma && vma < start + size)
2020 return osect;
2021 }
2022
2023 return NULL;
2024}
2025
2026/* Parse contents of exception table and exception index sections
2027 of OBJFILE, and fill in the exception table entry cache.
2028
2029 For each entry that refers to a standard ARM-defined personality
2030 routine, extract the frame unwinding instructions (from either
2031 the index or the table section). The unwinding instructions
2032 are normalized by:
2033 - extracting them from the rest of the table data
2034 - converting to host endianness
2035 - appending the implicit 0xb0 ("Finish") code
2036
2037 The extracted and normalized instructions are stored for later
2038 retrieval by the arm_find_exidx_entry routine. */
2039
2040static void
2041arm_exidx_new_objfile (struct objfile *objfile)
2042{
0e9e9abd
UW
2043 struct arm_exidx_data *data;
2044 asection *exidx, *extab;
2045 bfd_vma exidx_vma = 0, extab_vma = 0;
0e9e9abd
UW
2046 LONGEST i;
2047
2048 /* If we've already touched this file, do nothing. */
2049 if (!objfile || objfile_data (objfile, arm_exidx_data_key) != NULL)
2050 return;
2051
2052 /* Read contents of exception table and index. */
a5eda10c 2053 exidx = bfd_get_section_by_name (objfile->obfd, ELF_STRING_ARM_unwind);
984c7238 2054 gdb::byte_vector exidx_data;
0e9e9abd
UW
2055 if (exidx)
2056 {
2057 exidx_vma = bfd_section_vma (objfile->obfd, exidx);
984c7238 2058 exidx_data.resize (bfd_get_section_size (exidx));
0e9e9abd
UW
2059
2060 if (!bfd_get_section_contents (objfile->obfd, exidx,
984c7238
TT
2061 exidx_data.data (), 0,
2062 exidx_data.size ()))
2063 return;
0e9e9abd
UW
2064 }
2065
2066 extab = bfd_get_section_by_name (objfile->obfd, ".ARM.extab");
984c7238 2067 gdb::byte_vector extab_data;
0e9e9abd
UW
2068 if (extab)
2069 {
2070 extab_vma = bfd_section_vma (objfile->obfd, extab);
984c7238 2071 extab_data.resize (bfd_get_section_size (extab));
0e9e9abd
UW
2072
2073 if (!bfd_get_section_contents (objfile->obfd, extab,
984c7238
TT
2074 extab_data.data (), 0,
2075 extab_data.size ()))
2076 return;
0e9e9abd
UW
2077 }
2078
2079 /* Allocate exception table data structure. */
2080 data = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct arm_exidx_data);
2081 set_objfile_data (objfile, arm_exidx_data_key, data);
2082 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
2083 objfile->obfd->section_count,
2084 VEC(arm_exidx_entry_s) *);
2085
2086 /* Fill in exception table. */
984c7238 2087 for (i = 0; i < exidx_data.size () / 8; i++)
0e9e9abd
UW
2088 {
2089 struct arm_exidx_entry new_exidx_entry;
984c7238
TT
2090 bfd_vma idx = bfd_h_get_32 (objfile->obfd, exidx_data.data () + i * 8);
2091 bfd_vma val = bfd_h_get_32 (objfile->obfd,
2092 exidx_data.data () + i * 8 + 4);
0e9e9abd
UW
2093 bfd_vma addr = 0, word = 0;
2094 int n_bytes = 0, n_words = 0;
2095 struct obj_section *sec;
2096 gdb_byte *entry = NULL;
2097
2098 /* Extract address of start of function. */
2099 idx = ((idx & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2100 idx += exidx_vma + i * 8;
2101
2102 /* Find section containing function and compute section offset. */
2103 sec = arm_obj_section_from_vma (objfile, idx);
2104 if (sec == NULL)
2105 continue;
2106 idx -= bfd_get_section_vma (objfile->obfd, sec->the_bfd_section);
2107
2108 /* Determine address of exception table entry. */
2109 if (val == 1)
2110 {
2111 /* EXIDX_CANTUNWIND -- no exception table entry present. */
2112 }
2113 else if ((val & 0xff000000) == 0x80000000)
2114 {
2115 /* Exception table entry embedded in .ARM.exidx
2116 -- must be short form. */
2117 word = val;
2118 n_bytes = 3;
2119 }
2120 else if (!(val & 0x80000000))
2121 {
2122 /* Exception table entry in .ARM.extab. */
2123 addr = ((val & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2124 addr += exidx_vma + i * 8 + 4;
2125
984c7238 2126 if (addr >= extab_vma && addr + 4 <= extab_vma + extab_data.size ())
0e9e9abd
UW
2127 {
2128 word = bfd_h_get_32 (objfile->obfd,
984c7238 2129 extab_data.data () + addr - extab_vma);
0e9e9abd
UW
2130 addr += 4;
2131
2132 if ((word & 0xff000000) == 0x80000000)
2133 {
2134 /* Short form. */
2135 n_bytes = 3;
2136 }
2137 else if ((word & 0xff000000) == 0x81000000
2138 || (word & 0xff000000) == 0x82000000)
2139 {
2140 /* Long form. */
2141 n_bytes = 2;
2142 n_words = ((word >> 16) & 0xff);
2143 }
2144 else if (!(word & 0x80000000))
2145 {
2146 bfd_vma pers;
2147 struct obj_section *pers_sec;
2148 int gnu_personality = 0;
2149
2150 /* Custom personality routine. */
2151 pers = ((word & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2152 pers = UNMAKE_THUMB_ADDR (pers + addr - 4);
2153
2154 /* Check whether we've got one of the variants of the
2155 GNU personality routines. */
2156 pers_sec = arm_obj_section_from_vma (objfile, pers);
2157 if (pers_sec)
2158 {
2159 static const char *personality[] =
2160 {
2161 "__gcc_personality_v0",
2162 "__gxx_personality_v0",
2163 "__gcj_personality_v0",
2164 "__gnu_objc_personality_v0",
2165 NULL
2166 };
2167
2168 CORE_ADDR pc = pers + obj_section_offset (pers_sec);
2169 int k;
2170
2171 for (k = 0; personality[k]; k++)
2172 if (lookup_minimal_symbol_by_pc_name
2173 (pc, personality[k], objfile))
2174 {
2175 gnu_personality = 1;
2176 break;
2177 }
2178 }
2179
2180 /* If so, the next word contains a word count in the high
2181 byte, followed by the same unwind instructions as the
2182 pre-defined forms. */
2183 if (gnu_personality
984c7238 2184 && addr + 4 <= extab_vma + extab_data.size ())
0e9e9abd
UW
2185 {
2186 word = bfd_h_get_32 (objfile->obfd,
984c7238
TT
2187 (extab_data.data ()
2188 + addr - extab_vma));
0e9e9abd
UW
2189 addr += 4;
2190 n_bytes = 3;
2191 n_words = ((word >> 24) & 0xff);
2192 }
2193 }
2194 }
2195 }
2196
2197 /* Sanity check address. */
2198 if (n_words)
984c7238
TT
2199 if (addr < extab_vma
2200 || addr + 4 * n_words > extab_vma + extab_data.size ())
0e9e9abd
UW
2201 n_words = n_bytes = 0;
2202
2203 /* The unwind instructions reside in WORD (only the N_BYTES least
2204 significant bytes are valid), followed by N_WORDS words in the
2205 extab section starting at ADDR. */
2206 if (n_bytes || n_words)
2207 {
224c3ddb
SM
2208 gdb_byte *p = entry
2209 = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack,
2210 n_bytes + n_words * 4 + 1);
0e9e9abd
UW
2211
2212 while (n_bytes--)
2213 *p++ = (gdb_byte) ((word >> (8 * n_bytes)) & 0xff);
2214
2215 while (n_words--)
2216 {
2217 word = bfd_h_get_32 (objfile->obfd,
984c7238 2218 extab_data.data () + addr - extab_vma);
0e9e9abd
UW
2219 addr += 4;
2220
2221 *p++ = (gdb_byte) ((word >> 24) & 0xff);
2222 *p++ = (gdb_byte) ((word >> 16) & 0xff);
2223 *p++ = (gdb_byte) ((word >> 8) & 0xff);
2224 *p++ = (gdb_byte) (word & 0xff);
2225 }
2226
2227 /* Implied "Finish" to terminate the list. */
2228 *p++ = 0xb0;
2229 }
2230
2231 /* Push entry onto vector. They are guaranteed to always
2232 appear in order of increasing addresses. */
2233 new_exidx_entry.addr = idx;
2234 new_exidx_entry.entry = entry;
2235 VEC_safe_push (arm_exidx_entry_s,
2236 data->section_maps[sec->the_bfd_section->index],
2237 &new_exidx_entry);
2238 }
0e9e9abd
UW
2239}
2240
2241/* Search for the exception table entry covering MEMADDR. If one is found,
2242 return a pointer to its data. Otherwise, return 0. If START is non-NULL,
2243 set *START to the start of the region covered by this entry. */
2244
2245static gdb_byte *
2246arm_find_exidx_entry (CORE_ADDR memaddr, CORE_ADDR *start)
2247{
2248 struct obj_section *sec;
2249
2250 sec = find_pc_section (memaddr);
2251 if (sec != NULL)
2252 {
2253 struct arm_exidx_data *data;
2254 VEC(arm_exidx_entry_s) *map;
2255 struct arm_exidx_entry map_key = { memaddr - obj_section_addr (sec), 0 };
2256 unsigned int idx;
2257
9a3c8263
SM
2258 data = ((struct arm_exidx_data *)
2259 objfile_data (sec->objfile, arm_exidx_data_key));
0e9e9abd
UW
2260 if (data != NULL)
2261 {
2262 map = data->section_maps[sec->the_bfd_section->index];
2263 if (!VEC_empty (arm_exidx_entry_s, map))
2264 {
2265 struct arm_exidx_entry *map_sym;
2266
2267 idx = VEC_lower_bound (arm_exidx_entry_s, map, &map_key,
2268 arm_compare_exidx_entries);
2269
2270 /* VEC_lower_bound finds the earliest ordered insertion
2271 point. If the following symbol starts at this exact
2272 address, we use that; otherwise, the preceding
2273 exception table entry covers this address. */
2274 if (idx < VEC_length (arm_exidx_entry_s, map))
2275 {
2276 map_sym = VEC_index (arm_exidx_entry_s, map, idx);
2277 if (map_sym->addr == map_key.addr)
2278 {
2279 if (start)
2280 *start = map_sym->addr + obj_section_addr (sec);
2281 return map_sym->entry;
2282 }
2283 }
2284
2285 if (idx > 0)
2286 {
2287 map_sym = VEC_index (arm_exidx_entry_s, map, idx - 1);
2288 if (start)
2289 *start = map_sym->addr + obj_section_addr (sec);
2290 return map_sym->entry;
2291 }
2292 }
2293 }
2294 }
2295
2296 return NULL;
2297}
2298
2299/* Given the current frame THIS_FRAME, and its associated frame unwinding
2300 instruction list from the ARM exception table entry ENTRY, allocate and
2301 return a prologue cache structure describing how to unwind this frame.
2302
2303 Return NULL if the unwinding instruction list contains a "spare",
2304 "reserved" or "refuse to unwind" instruction as defined in section
2305 "9.3 Frame unwinding instructions" of the "Exception Handling ABI
2306 for the ARM Architecture" document. */
2307
2308static struct arm_prologue_cache *
2309arm_exidx_fill_cache (struct frame_info *this_frame, gdb_byte *entry)
2310{
2311 CORE_ADDR vsp = 0;
2312 int vsp_valid = 0;
2313
2314 struct arm_prologue_cache *cache;
2315 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2316 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2317
2318 for (;;)
2319 {
2320 gdb_byte insn;
2321
2322 /* Whenever we reload SP, we actually have to retrieve its
2323 actual value in the current frame. */
2324 if (!vsp_valid)
2325 {
2326 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2327 {
2328 int reg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2329 vsp = get_frame_register_unsigned (this_frame, reg);
2330 }
2331 else
2332 {
2333 CORE_ADDR addr = cache->saved_regs[ARM_SP_REGNUM].addr;
2334 vsp = get_frame_memory_unsigned (this_frame, addr, 4);
2335 }
2336
2337 vsp_valid = 1;
2338 }
2339
2340 /* Decode next unwind instruction. */
2341 insn = *entry++;
2342
2343 if ((insn & 0xc0) == 0)
2344 {
2345 int offset = insn & 0x3f;
2346 vsp += (offset << 2) + 4;
2347 }
2348 else if ((insn & 0xc0) == 0x40)
2349 {
2350 int offset = insn & 0x3f;
2351 vsp -= (offset << 2) + 4;
2352 }
2353 else if ((insn & 0xf0) == 0x80)
2354 {
2355 int mask = ((insn & 0xf) << 8) | *entry++;
2356 int i;
2357
2358 /* The special case of an all-zero mask identifies
2359 "Refuse to unwind". We return NULL to fall back
2360 to the prologue analyzer. */
2361 if (mask == 0)
2362 return NULL;
2363
2364 /* Pop registers r4..r15 under mask. */
2365 for (i = 0; i < 12; i++)
2366 if (mask & (1 << i))
2367 {
2368 cache->saved_regs[4 + i].addr = vsp;
2369 vsp += 4;
2370 }
2371
2372 /* Special-case popping SP -- we need to reload vsp. */
2373 if (mask & (1 << (ARM_SP_REGNUM - 4)))
2374 vsp_valid = 0;
2375 }
2376 else if ((insn & 0xf0) == 0x90)
2377 {
2378 int reg = insn & 0xf;
2379
2380 /* Reserved cases. */
2381 if (reg == ARM_SP_REGNUM || reg == ARM_PC_REGNUM)
2382 return NULL;
2383
2384 /* Set SP from another register and mark VSP for reload. */
2385 cache->saved_regs[ARM_SP_REGNUM] = cache->saved_regs[reg];
2386 vsp_valid = 0;
2387 }
2388 else if ((insn & 0xf0) == 0xa0)
2389 {
2390 int count = insn & 0x7;
2391 int pop_lr = (insn & 0x8) != 0;
2392 int i;
2393
2394 /* Pop r4..r[4+count]. */
2395 for (i = 0; i <= count; i++)
2396 {
2397 cache->saved_regs[4 + i].addr = vsp;
2398 vsp += 4;
2399 }
2400
2401 /* If indicated by flag, pop LR as well. */
2402 if (pop_lr)
2403 {
2404 cache->saved_regs[ARM_LR_REGNUM].addr = vsp;
2405 vsp += 4;
2406 }
2407 }
2408 else if (insn == 0xb0)
2409 {
2410 /* We could only have updated PC by popping into it; if so, it
2411 will show up as address. Otherwise, copy LR into PC. */
2412 if (!trad_frame_addr_p (cache->saved_regs, ARM_PC_REGNUM))
2413 cache->saved_regs[ARM_PC_REGNUM]
2414 = cache->saved_regs[ARM_LR_REGNUM];
2415
2416 /* We're done. */
2417 break;
2418 }
2419 else if (insn == 0xb1)
2420 {
2421 int mask = *entry++;
2422 int i;
2423
2424 /* All-zero mask and mask >= 16 is "spare". */
2425 if (mask == 0 || mask >= 16)
2426 return NULL;
2427
2428 /* Pop r0..r3 under mask. */
2429 for (i = 0; i < 4; i++)
2430 if (mask & (1 << i))
2431 {
2432 cache->saved_regs[i].addr = vsp;
2433 vsp += 4;
2434 }
2435 }
2436 else if (insn == 0xb2)
2437 {
2438 ULONGEST offset = 0;
2439 unsigned shift = 0;
2440
2441 do
2442 {
2443 offset |= (*entry & 0x7f) << shift;
2444 shift += 7;
2445 }
2446 while (*entry++ & 0x80);
2447
2448 vsp += 0x204 + (offset << 2);
2449 }
2450 else if (insn == 0xb3)
2451 {
2452 int start = *entry >> 4;
2453 int count = (*entry++) & 0xf;
2454 int i;
2455
2456 /* Only registers D0..D15 are valid here. */
2457 if (start + count >= 16)
2458 return NULL;
2459
2460 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2461 for (i = 0; i <= count; i++)
2462 {
2463 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2464 vsp += 8;
2465 }
2466
2467 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2468 vsp += 4;
2469 }
2470 else if ((insn & 0xf8) == 0xb8)
2471 {
2472 int count = insn & 0x7;
2473 int i;
2474
2475 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2476 for (i = 0; i <= count; i++)
2477 {
2478 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2479 vsp += 8;
2480 }
2481
2482 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2483 vsp += 4;
2484 }
2485 else if (insn == 0xc6)
2486 {
2487 int start = *entry >> 4;
2488 int count = (*entry++) & 0xf;
2489 int i;
2490
2491 /* Only registers WR0..WR15 are valid. */
2492 if (start + count >= 16)
2493 return NULL;
2494
2495 /* Pop iwmmx registers WR[start]..WR[start+count]. */
2496 for (i = 0; i <= count; i++)
2497 {
2498 cache->saved_regs[ARM_WR0_REGNUM + start + i].addr = vsp;
2499 vsp += 8;
2500 }
2501 }
2502 else if (insn == 0xc7)
2503 {
2504 int mask = *entry++;
2505 int i;
2506
2507 /* All-zero mask and mask >= 16 is "spare". */
2508 if (mask == 0 || mask >= 16)
2509 return NULL;
2510
2511 /* Pop iwmmx general-purpose registers WCGR0..WCGR3 under mask. */
2512 for (i = 0; i < 4; i++)
2513 if (mask & (1 << i))
2514 {
2515 cache->saved_regs[ARM_WCGR0_REGNUM + i].addr = vsp;
2516 vsp += 4;
2517 }
2518 }
2519 else if ((insn & 0xf8) == 0xc0)
2520 {
2521 int count = insn & 0x7;
2522 int i;
2523
2524 /* Pop iwmmx registers WR[10]..WR[10+count]. */
2525 for (i = 0; i <= count; i++)
2526 {
2527 cache->saved_regs[ARM_WR0_REGNUM + 10 + i].addr = vsp;
2528 vsp += 8;
2529 }
2530 }
2531 else if (insn == 0xc8)
2532 {
2533 int start = *entry >> 4;
2534 int count = (*entry++) & 0xf;
2535 int i;
2536
2537 /* Only registers D0..D31 are valid. */
2538 if (start + count >= 16)
2539 return NULL;
2540
2541 /* Pop VFP double-precision registers
2542 D[16+start]..D[16+start+count]. */
2543 for (i = 0; i <= count; i++)
2544 {
2545 cache->saved_regs[ARM_D0_REGNUM + 16 + start + i].addr = vsp;
2546 vsp += 8;
2547 }
2548 }
2549 else if (insn == 0xc9)
2550 {
2551 int start = *entry >> 4;
2552 int count = (*entry++) & 0xf;
2553 int i;
2554
2555 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2556 for (i = 0; i <= count; i++)
2557 {
2558 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2559 vsp += 8;
2560 }
2561 }
2562 else if ((insn & 0xf8) == 0xd0)
2563 {
2564 int count = insn & 0x7;
2565 int i;
2566
2567 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2568 for (i = 0; i <= count; i++)
2569 {
2570 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2571 vsp += 8;
2572 }
2573 }
2574 else
2575 {
2576 /* Everything else is "spare". */
2577 return NULL;
2578 }
2579 }
2580
2581 /* If we restore SP from a register, assume this was the frame register.
2582 Otherwise just fall back to SP as frame register. */
2583 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2584 cache->framereg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2585 else
2586 cache->framereg = ARM_SP_REGNUM;
2587
2588 /* Determine offset to previous frame. */
2589 cache->framesize
2590 = vsp - get_frame_register_unsigned (this_frame, cache->framereg);
2591
2592 /* We already got the previous SP. */
2593 cache->prev_sp = vsp;
2594
2595 return cache;
2596}
2597
2598/* Unwinding via ARM exception table entries. Note that the sniffer
2599 already computes a filled-in prologue cache, which is then used
2600 with the same arm_prologue_this_id and arm_prologue_prev_register
2601 routines also used for prologue-parsing based unwinding. */
2602
2603static int
2604arm_exidx_unwind_sniffer (const struct frame_unwind *self,
2605 struct frame_info *this_frame,
2606 void **this_prologue_cache)
2607{
2608 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2609 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
2610 CORE_ADDR addr_in_block, exidx_region, func_start;
2611 struct arm_prologue_cache *cache;
2612 gdb_byte *entry;
2613
2614 /* See if we have an ARM exception table entry covering this address. */
2615 addr_in_block = get_frame_address_in_block (this_frame);
2616 entry = arm_find_exidx_entry (addr_in_block, &exidx_region);
2617 if (!entry)
2618 return 0;
2619
2620 /* The ARM exception table does not describe unwind information
2621 for arbitrary PC values, but is guaranteed to be correct only
2622 at call sites. We have to decide here whether we want to use
2623 ARM exception table information for this frame, or fall back
2624 to using prologue parsing. (Note that if we have DWARF CFI,
2625 this sniffer isn't even called -- CFI is always preferred.)
2626
2627 Before we make this decision, however, we check whether we
2628 actually have *symbol* information for the current frame.
2629 If not, prologue parsing would not work anyway, so we might
2630 as well use the exception table and hope for the best. */
2631 if (find_pc_partial_function (addr_in_block, NULL, &func_start, NULL))
2632 {
2633 int exc_valid = 0;
2634
2635 /* If the next frame is "normal", we are at a call site in this
2636 frame, so exception information is guaranteed to be valid. */
2637 if (get_next_frame (this_frame)
2638 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME)
2639 exc_valid = 1;
2640
2641 /* We also assume exception information is valid if we're currently
2642 blocked in a system call. The system library is supposed to
d9311bfa
AT
2643 ensure this, so that e.g. pthread cancellation works. */
2644 if (arm_frame_is_thumb (this_frame))
0e9e9abd 2645 {
7913a64c 2646 ULONGEST insn;
416dc9c6 2647
7913a64c
YQ
2648 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame) - 2,
2649 2, byte_order_for_code, &insn)
d9311bfa
AT
2650 && (insn & 0xff00) == 0xdf00 /* svc */)
2651 exc_valid = 1;
0e9e9abd 2652 }
d9311bfa
AT
2653 else
2654 {
7913a64c 2655 ULONGEST insn;
416dc9c6 2656
7913a64c
YQ
2657 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame) - 4,
2658 4, byte_order_for_code, &insn)
d9311bfa
AT
2659 && (insn & 0x0f000000) == 0x0f000000 /* svc */)
2660 exc_valid = 1;
2661 }
2662
0e9e9abd
UW
2663 /* Bail out if we don't know that exception information is valid. */
2664 if (!exc_valid)
2665 return 0;
2666
2667 /* The ARM exception index does not mark the *end* of the region
2668 covered by the entry, and some functions will not have any entry.
2669 To correctly recognize the end of the covered region, the linker
2670 should have inserted dummy records with a CANTUNWIND marker.
2671
2672 Unfortunately, current versions of GNU ld do not reliably do
2673 this, and thus we may have found an incorrect entry above.
2674 As a (temporary) sanity check, we only use the entry if it
2675 lies *within* the bounds of the function. Note that this check
2676 might reject perfectly valid entries that just happen to cover
2677 multiple functions; therefore this check ought to be removed
2678 once the linker is fixed. */
2679 if (func_start > exidx_region)
2680 return 0;
2681 }
2682
2683 /* Decode the list of unwinding instructions into a prologue cache.
2684 Note that this may fail due to e.g. a "refuse to unwind" code. */
2685 cache = arm_exidx_fill_cache (this_frame, entry);
2686 if (!cache)
2687 return 0;
2688
2689 *this_prologue_cache = cache;
2690 return 1;
2691}
2692
2693struct frame_unwind arm_exidx_unwind = {
2694 NORMAL_FRAME,
8fbca658 2695 default_frame_unwind_stop_reason,
0e9e9abd
UW
2696 arm_prologue_this_id,
2697 arm_prologue_prev_register,
2698 NULL,
2699 arm_exidx_unwind_sniffer
2700};
2701
779aa56f
YQ
2702static struct arm_prologue_cache *
2703arm_make_epilogue_frame_cache (struct frame_info *this_frame)
2704{
2705 struct arm_prologue_cache *cache;
779aa56f
YQ
2706 int reg;
2707
2708 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2709 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2710
2711 /* Still rely on the offset calculated from prologue. */
2712 arm_scan_prologue (this_frame, cache);
2713
2714 /* Since we are in epilogue, the SP has been restored. */
2715 cache->prev_sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
2716
2717 /* Calculate actual addresses of saved registers using offsets
2718 determined by arm_scan_prologue. */
2719 for (reg = 0; reg < gdbarch_num_regs (get_frame_arch (this_frame)); reg++)
2720 if (trad_frame_addr_p (cache->saved_regs, reg))
2721 cache->saved_regs[reg].addr += cache->prev_sp;
2722
2723 return cache;
2724}
2725
2726/* Implementation of function hook 'this_id' in
2727 'struct frame_uwnind' for epilogue unwinder. */
2728
2729static void
2730arm_epilogue_frame_this_id (struct frame_info *this_frame,
2731 void **this_cache,
2732 struct frame_id *this_id)
2733{
2734 struct arm_prologue_cache *cache;
2735 CORE_ADDR pc, func;
2736
2737 if (*this_cache == NULL)
2738 *this_cache = arm_make_epilogue_frame_cache (this_frame);
2739 cache = (struct arm_prologue_cache *) *this_cache;
2740
2741 /* Use function start address as part of the frame ID. If we cannot
2742 identify the start address (due to missing symbol information),
2743 fall back to just using the current PC. */
2744 pc = get_frame_pc (this_frame);
2745 func = get_frame_func (this_frame);
fb3f3d25 2746 if (func == 0)
779aa56f
YQ
2747 func = pc;
2748
2749 (*this_id) = frame_id_build (cache->prev_sp, pc);
2750}
2751
2752/* Implementation of function hook 'prev_register' in
2753 'struct frame_uwnind' for epilogue unwinder. */
2754
2755static struct value *
2756arm_epilogue_frame_prev_register (struct frame_info *this_frame,
2757 void **this_cache, int regnum)
2758{
779aa56f
YQ
2759 if (*this_cache == NULL)
2760 *this_cache = arm_make_epilogue_frame_cache (this_frame);
779aa56f
YQ
2761
2762 return arm_prologue_prev_register (this_frame, this_cache, regnum);
2763}
2764
2765static int arm_stack_frame_destroyed_p_1 (struct gdbarch *gdbarch,
2766 CORE_ADDR pc);
2767static int thumb_stack_frame_destroyed_p (struct gdbarch *gdbarch,
2768 CORE_ADDR pc);
2769
2770/* Implementation of function hook 'sniffer' in
2771 'struct frame_uwnind' for epilogue unwinder. */
2772
2773static int
2774arm_epilogue_frame_sniffer (const struct frame_unwind *self,
2775 struct frame_info *this_frame,
2776 void **this_prologue_cache)
2777{
2778 if (frame_relative_level (this_frame) == 0)
2779 {
2780 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2781 CORE_ADDR pc = get_frame_pc (this_frame);
2782
2783 if (arm_frame_is_thumb (this_frame))
2784 return thumb_stack_frame_destroyed_p (gdbarch, pc);
2785 else
2786 return arm_stack_frame_destroyed_p_1 (gdbarch, pc);
2787 }
2788 else
2789 return 0;
2790}
2791
2792/* Frame unwinder from epilogue. */
2793
2794static const struct frame_unwind arm_epilogue_frame_unwind =
2795{
2796 NORMAL_FRAME,
2797 default_frame_unwind_stop_reason,
2798 arm_epilogue_frame_this_id,
2799 arm_epilogue_frame_prev_register,
2800 NULL,
2801 arm_epilogue_frame_sniffer,
2802};
2803
80d8d390
YQ
2804/* Recognize GCC's trampoline for thumb call-indirect. If we are in a
2805 trampoline, return the target PC. Otherwise return 0.
2806
2807 void call0a (char c, short s, int i, long l) {}
2808
2809 int main (void)
2810 {
2811 (*pointer_to_call0a) (c, s, i, l);
2812 }
2813
2814 Instead of calling a stub library function _call_via_xx (xx is
2815 the register name), GCC may inline the trampoline in the object
2816 file as below (register r2 has the address of call0a).
2817
2818 .global main
2819 .type main, %function
2820 ...
2821 bl .L1
2822 ...
2823 .size main, .-main
2824
2825 .L1:
2826 bx r2
2827
2828 The trampoline 'bx r2' doesn't belong to main. */
2829
2830static CORE_ADDR
2831arm_skip_bx_reg (struct frame_info *frame, CORE_ADDR pc)
2832{
2833 /* The heuristics of recognizing such trampoline is that FRAME is
2834 executing in Thumb mode and the instruction on PC is 'bx Rm'. */
2835 if (arm_frame_is_thumb (frame))
2836 {
2837 gdb_byte buf[2];
2838
2839 if (target_read_memory (pc, buf, 2) == 0)
2840 {
2841 struct gdbarch *gdbarch = get_frame_arch (frame);
2842 enum bfd_endian byte_order_for_code
2843 = gdbarch_byte_order_for_code (gdbarch);
2844 uint16_t insn
2845 = extract_unsigned_integer (buf, 2, byte_order_for_code);
2846
2847 if ((insn & 0xff80) == 0x4700) /* bx <Rm> */
2848 {
2849 CORE_ADDR dest
2850 = get_frame_register_unsigned (frame, bits (insn, 3, 6));
2851
2852 /* Clear the LSB so that gdb core sets step-resume
2853 breakpoint at the right address. */
2854 return UNMAKE_THUMB_ADDR (dest);
2855 }
2856 }
2857 }
2858
2859 return 0;
2860}
2861
909cf6ea 2862static struct arm_prologue_cache *
a262aec2 2863arm_make_stub_cache (struct frame_info *this_frame)
909cf6ea 2864{
909cf6ea 2865 struct arm_prologue_cache *cache;
909cf6ea 2866
35d5d4ee 2867 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
a262aec2 2868 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
909cf6ea 2869
a262aec2 2870 cache->prev_sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
909cf6ea
DJ
2871
2872 return cache;
2873}
2874
2875/* Our frame ID for a stub frame is the current SP and LR. */
2876
2877static void
a262aec2 2878arm_stub_this_id (struct frame_info *this_frame,
909cf6ea
DJ
2879 void **this_cache,
2880 struct frame_id *this_id)
2881{
2882 struct arm_prologue_cache *cache;
2883
2884 if (*this_cache == NULL)
a262aec2 2885 *this_cache = arm_make_stub_cache (this_frame);
9a3c8263 2886 cache = (struct arm_prologue_cache *) *this_cache;
909cf6ea 2887
a262aec2 2888 *this_id = frame_id_build (cache->prev_sp, get_frame_pc (this_frame));
909cf6ea
DJ
2889}
2890
a262aec2
DJ
2891static int
2892arm_stub_unwind_sniffer (const struct frame_unwind *self,
2893 struct frame_info *this_frame,
2894 void **this_prologue_cache)
909cf6ea 2895{
93d42b30 2896 CORE_ADDR addr_in_block;
948f8e3d 2897 gdb_byte dummy[4];
18d18ac8
YQ
2898 CORE_ADDR pc, start_addr;
2899 const char *name;
909cf6ea 2900
a262aec2 2901 addr_in_block = get_frame_address_in_block (this_frame);
18d18ac8 2902 pc = get_frame_pc (this_frame);
3e5d3a5a 2903 if (in_plt_section (addr_in_block)
fc36e839
DE
2904 /* We also use the stub winder if the target memory is unreadable
2905 to avoid having the prologue unwinder trying to read it. */
18d18ac8
YQ
2906 || target_read_memory (pc, dummy, 4) != 0)
2907 return 1;
2908
2909 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0
2910 && arm_skip_bx_reg (this_frame, pc) != 0)
a262aec2 2911 return 1;
909cf6ea 2912
a262aec2 2913 return 0;
909cf6ea
DJ
2914}
2915
a262aec2
DJ
2916struct frame_unwind arm_stub_unwind = {
2917 NORMAL_FRAME,
8fbca658 2918 default_frame_unwind_stop_reason,
a262aec2
DJ
2919 arm_stub_this_id,
2920 arm_prologue_prev_register,
2921 NULL,
2922 arm_stub_unwind_sniffer
2923};
2924
2ae28aa9
YQ
2925/* Put here the code to store, into CACHE->saved_regs, the addresses
2926 of the saved registers of frame described by THIS_FRAME. CACHE is
2927 returned. */
2928
2929static struct arm_prologue_cache *
2930arm_m_exception_cache (struct frame_info *this_frame)
2931{
2932 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2933 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2934 struct arm_prologue_cache *cache;
2935 CORE_ADDR unwound_sp;
2936 LONGEST xpsr;
2937
2938 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2939 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2940
2941 unwound_sp = get_frame_register_unsigned (this_frame,
2942 ARM_SP_REGNUM);
2943
2944 /* The hardware saves eight 32-bit words, comprising xPSR,
2945 ReturnAddress, LR (R14), R12, R3, R2, R1, R0. See details in
2946 "B1.5.6 Exception entry behavior" in
2947 "ARMv7-M Architecture Reference Manual". */
2948 cache->saved_regs[0].addr = unwound_sp;
2949 cache->saved_regs[1].addr = unwound_sp + 4;
2950 cache->saved_regs[2].addr = unwound_sp + 8;
2951 cache->saved_regs[3].addr = unwound_sp + 12;
2952 cache->saved_regs[12].addr = unwound_sp + 16;
2953 cache->saved_regs[14].addr = unwound_sp + 20;
2954 cache->saved_regs[15].addr = unwound_sp + 24;
2955 cache->saved_regs[ARM_PS_REGNUM].addr = unwound_sp + 28;
2956
2957 /* If bit 9 of the saved xPSR is set, then there is a four-byte
2958 aligner between the top of the 32-byte stack frame and the
2959 previous context's stack pointer. */
2960 cache->prev_sp = unwound_sp + 32;
2961 if (safe_read_memory_integer (unwound_sp + 28, 4, byte_order, &xpsr)
2962 && (xpsr & (1 << 9)) != 0)
2963 cache->prev_sp += 4;
2964
2965 return cache;
2966}
2967
2968/* Implementation of function hook 'this_id' in
2969 'struct frame_uwnind'. */
2970
2971static void
2972arm_m_exception_this_id (struct frame_info *this_frame,
2973 void **this_cache,
2974 struct frame_id *this_id)
2975{
2976 struct arm_prologue_cache *cache;
2977
2978 if (*this_cache == NULL)
2979 *this_cache = arm_m_exception_cache (this_frame);
9a3c8263 2980 cache = (struct arm_prologue_cache *) *this_cache;
2ae28aa9
YQ
2981
2982 /* Our frame ID for a stub frame is the current SP and LR. */
2983 *this_id = frame_id_build (cache->prev_sp,
2984 get_frame_pc (this_frame));
2985}
2986
2987/* Implementation of function hook 'prev_register' in
2988 'struct frame_uwnind'. */
2989
2990static struct value *
2991arm_m_exception_prev_register (struct frame_info *this_frame,
2992 void **this_cache,
2993 int prev_regnum)
2994{
2ae28aa9
YQ
2995 struct arm_prologue_cache *cache;
2996
2997 if (*this_cache == NULL)
2998 *this_cache = arm_m_exception_cache (this_frame);
9a3c8263 2999 cache = (struct arm_prologue_cache *) *this_cache;
2ae28aa9
YQ
3000
3001 /* The value was already reconstructed into PREV_SP. */
3002 if (prev_regnum == ARM_SP_REGNUM)
3003 return frame_unwind_got_constant (this_frame, prev_regnum,
3004 cache->prev_sp);
3005
3006 return trad_frame_get_prev_register (this_frame, cache->saved_regs,
3007 prev_regnum);
3008}
3009
3010/* Implementation of function hook 'sniffer' in
3011 'struct frame_uwnind'. */
3012
3013static int
3014arm_m_exception_unwind_sniffer (const struct frame_unwind *self,
3015 struct frame_info *this_frame,
3016 void **this_prologue_cache)
3017{
3018 CORE_ADDR this_pc = get_frame_pc (this_frame);
3019
3020 /* No need to check is_m; this sniffer is only registered for
3021 M-profile architectures. */
3022
ca90e760
FH
3023 /* Check if exception frame returns to a magic PC value. */
3024 return arm_m_addr_is_magic (this_pc);
2ae28aa9
YQ
3025}
3026
3027/* Frame unwinder for M-profile exceptions. */
3028
3029struct frame_unwind arm_m_exception_unwind =
3030{
3031 SIGTRAMP_FRAME,
3032 default_frame_unwind_stop_reason,
3033 arm_m_exception_this_id,
3034 arm_m_exception_prev_register,
3035 NULL,
3036 arm_m_exception_unwind_sniffer
3037};
3038
24de872b 3039static CORE_ADDR
a262aec2 3040arm_normal_frame_base (struct frame_info *this_frame, void **this_cache)
24de872b
DJ
3041{
3042 struct arm_prologue_cache *cache;
3043
eb5492fa 3044 if (*this_cache == NULL)
a262aec2 3045 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 3046 cache = (struct arm_prologue_cache *) *this_cache;
eb5492fa 3047
4be43953 3048 return cache->prev_sp - cache->framesize;
24de872b
DJ
3049}
3050
eb5492fa
DJ
3051struct frame_base arm_normal_base = {
3052 &arm_prologue_unwind,
3053 arm_normal_frame_base,
3054 arm_normal_frame_base,
3055 arm_normal_frame_base
3056};
3057
a262aec2 3058/* Assuming THIS_FRAME is a dummy, return the frame ID of that
eb5492fa
DJ
3059 dummy frame. The frame ID's base needs to match the TOS value
3060 saved by save_dummy_frame_tos() and returned from
3061 arm_push_dummy_call, and the PC needs to match the dummy frame's
3062 breakpoint. */
c906108c 3063
eb5492fa 3064static struct frame_id
a262aec2 3065arm_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
c906108c 3066{
0963b4bd
MS
3067 return frame_id_build (get_frame_register_unsigned (this_frame,
3068 ARM_SP_REGNUM),
a262aec2 3069 get_frame_pc (this_frame));
eb5492fa 3070}
c3b4394c 3071
eb5492fa
DJ
3072/* Given THIS_FRAME, find the previous frame's resume PC (which will
3073 be used to construct the previous frame's ID, after looking up the
3074 containing function). */
c3b4394c 3075
eb5492fa
DJ
3076static CORE_ADDR
3077arm_unwind_pc (struct gdbarch *gdbarch, struct frame_info *this_frame)
3078{
3079 CORE_ADDR pc;
3080 pc = frame_unwind_register_unsigned (this_frame, ARM_PC_REGNUM);
24568a2c 3081 return arm_addr_bits_remove (gdbarch, pc);
eb5492fa
DJ
3082}
3083
3084static CORE_ADDR
3085arm_unwind_sp (struct gdbarch *gdbarch, struct frame_info *this_frame)
3086{
3087 return frame_unwind_register_unsigned (this_frame, ARM_SP_REGNUM);
c906108c
SS
3088}
3089
b39cc962
DJ
3090static struct value *
3091arm_dwarf2_prev_register (struct frame_info *this_frame, void **this_cache,
3092 int regnum)
3093{
24568a2c 3094 struct gdbarch * gdbarch = get_frame_arch (this_frame);
b39cc962 3095 CORE_ADDR lr, cpsr;
9779414d 3096 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
b39cc962
DJ
3097
3098 switch (regnum)
3099 {
3100 case ARM_PC_REGNUM:
3101 /* The PC is normally copied from the return column, which
3102 describes saves of LR. However, that version may have an
3103 extra bit set to indicate Thumb state. The bit is not
3104 part of the PC. */
3105 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
3106 return frame_unwind_got_constant (this_frame, regnum,
24568a2c 3107 arm_addr_bits_remove (gdbarch, lr));
b39cc962
DJ
3108
3109 case ARM_PS_REGNUM:
3110 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
ca38c58e 3111 cpsr = get_frame_register_unsigned (this_frame, regnum);
b39cc962
DJ
3112 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
3113 if (IS_THUMB_ADDR (lr))
9779414d 3114 cpsr |= t_bit;
b39cc962 3115 else
9779414d 3116 cpsr &= ~t_bit;
ca38c58e 3117 return frame_unwind_got_constant (this_frame, regnum, cpsr);
b39cc962
DJ
3118
3119 default:
3120 internal_error (__FILE__, __LINE__,
3121 _("Unexpected register %d"), regnum);
3122 }
3123}
3124
3125static void
3126arm_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
3127 struct dwarf2_frame_state_reg *reg,
3128 struct frame_info *this_frame)
3129{
3130 switch (regnum)
3131 {
3132 case ARM_PC_REGNUM:
3133 case ARM_PS_REGNUM:
3134 reg->how = DWARF2_FRAME_REG_FN;
3135 reg->loc.fn = arm_dwarf2_prev_register;
3136 break;
3137 case ARM_SP_REGNUM:
3138 reg->how = DWARF2_FRAME_REG_CFA;
3139 break;
3140 }
3141}
3142
c9cf6e20 3143/* Implement the stack_frame_destroyed_p gdbarch method. */
4024ca99
UW
3144
3145static int
c9cf6e20 3146thumb_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
4024ca99
UW
3147{
3148 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3149 unsigned int insn, insn2;
3150 int found_return = 0, found_stack_adjust = 0;
3151 CORE_ADDR func_start, func_end;
3152 CORE_ADDR scan_pc;
3153 gdb_byte buf[4];
3154
3155 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3156 return 0;
3157
3158 /* The epilogue is a sequence of instructions along the following lines:
3159
3160 - add stack frame size to SP or FP
3161 - [if frame pointer used] restore SP from FP
3162 - restore registers from SP [may include PC]
3163 - a return-type instruction [if PC wasn't already restored]
3164
3165 In a first pass, we scan forward from the current PC and verify the
3166 instructions we find as compatible with this sequence, ending in a
3167 return instruction.
3168
3169 However, this is not sufficient to distinguish indirect function calls
3170 within a function from indirect tail calls in the epilogue in some cases.
3171 Therefore, if we didn't already find any SP-changing instruction during
3172 forward scan, we add a backward scanning heuristic to ensure we actually
3173 are in the epilogue. */
3174
3175 scan_pc = pc;
3176 while (scan_pc < func_end && !found_return)
3177 {
3178 if (target_read_memory (scan_pc, buf, 2))
3179 break;
3180
3181 scan_pc += 2;
3182 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3183
3184 if ((insn & 0xff80) == 0x4700) /* bx <Rm> */
3185 found_return = 1;
3186 else if (insn == 0x46f7) /* mov pc, lr */
3187 found_return = 1;
540314bd 3188 else if (thumb_instruction_restores_sp (insn))
4024ca99 3189 {
b7576e5c 3190 if ((insn & 0xff00) == 0xbd00) /* pop <registers, PC> */
4024ca99
UW
3191 found_return = 1;
3192 }
db24da6d 3193 else if (thumb_insn_size (insn) == 4) /* 32-bit Thumb-2 instruction */
4024ca99
UW
3194 {
3195 if (target_read_memory (scan_pc, buf, 2))
3196 break;
3197
3198 scan_pc += 2;
3199 insn2 = extract_unsigned_integer (buf, 2, byte_order_for_code);
3200
3201 if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3202 {
4024ca99
UW
3203 if (insn2 & 0x8000) /* <registers> include PC. */
3204 found_return = 1;
3205 }
3206 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3207 && (insn2 & 0x0fff) == 0x0b04)
3208 {
4024ca99
UW
3209 if ((insn2 & 0xf000) == 0xf000) /* <Rt> is PC. */
3210 found_return = 1;
3211 }
3212 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3213 && (insn2 & 0x0e00) == 0x0a00)
6b65d1b6 3214 ;
4024ca99
UW
3215 else
3216 break;
3217 }
3218 else
3219 break;
3220 }
3221
3222 if (!found_return)
3223 return 0;
3224
3225 /* Since any instruction in the epilogue sequence, with the possible
3226 exception of return itself, updates the stack pointer, we need to
3227 scan backwards for at most one instruction. Try either a 16-bit or
3228 a 32-bit instruction. This is just a heuristic, so we do not worry
0963b4bd 3229 too much about false positives. */
4024ca99 3230
6b65d1b6
YQ
3231 if (pc - 4 < func_start)
3232 return 0;
3233 if (target_read_memory (pc - 4, buf, 4))
3234 return 0;
4024ca99 3235
6b65d1b6
YQ
3236 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3237 insn2 = extract_unsigned_integer (buf + 2, 2, byte_order_for_code);
3238
3239 if (thumb_instruction_restores_sp (insn2))
3240 found_stack_adjust = 1;
3241 else if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3242 found_stack_adjust = 1;
3243 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3244 && (insn2 & 0x0fff) == 0x0b04)
3245 found_stack_adjust = 1;
3246 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3247 && (insn2 & 0x0e00) == 0x0a00)
3248 found_stack_adjust = 1;
4024ca99
UW
3249
3250 return found_stack_adjust;
3251}
3252
4024ca99 3253static int
c58b006a 3254arm_stack_frame_destroyed_p_1 (struct gdbarch *gdbarch, CORE_ADDR pc)
4024ca99
UW
3255{
3256 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3257 unsigned int insn;
f303bc3e 3258 int found_return;
4024ca99
UW
3259 CORE_ADDR func_start, func_end;
3260
4024ca99
UW
3261 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3262 return 0;
3263
3264 /* We are in the epilogue if the previous instruction was a stack
3265 adjustment and the next instruction is a possible return (bx, mov
3266 pc, or pop). We could have to scan backwards to find the stack
3267 adjustment, or forwards to find the return, but this is a decent
3268 approximation. First scan forwards. */
3269
3270 found_return = 0;
3271 insn = read_memory_unsigned_integer (pc, 4, byte_order_for_code);
3272 if (bits (insn, 28, 31) != INST_NV)
3273 {
3274 if ((insn & 0x0ffffff0) == 0x012fff10)
3275 /* BX. */
3276 found_return = 1;
3277 else if ((insn & 0x0ffffff0) == 0x01a0f000)
3278 /* MOV PC. */
3279 found_return = 1;
3280 else if ((insn & 0x0fff0000) == 0x08bd0000
3281 && (insn & 0x0000c000) != 0)
3282 /* POP (LDMIA), including PC or LR. */
3283 found_return = 1;
3284 }
3285
3286 if (!found_return)
3287 return 0;
3288
3289 /* Scan backwards. This is just a heuristic, so do not worry about
3290 false positives from mode changes. */
3291
3292 if (pc < func_start + 4)
3293 return 0;
3294
3295 insn = read_memory_unsigned_integer (pc - 4, 4, byte_order_for_code);
f303bc3e 3296 if (arm_instruction_restores_sp (insn))
4024ca99
UW
3297 return 1;
3298
3299 return 0;
3300}
3301
c58b006a
YQ
3302/* Implement the stack_frame_destroyed_p gdbarch method. */
3303
3304static int
3305arm_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
3306{
3307 if (arm_pc_is_thumb (gdbarch, pc))
3308 return thumb_stack_frame_destroyed_p (gdbarch, pc);
3309 else
3310 return arm_stack_frame_destroyed_p_1 (gdbarch, pc);
3311}
4024ca99 3312
2dd604e7
RE
3313/* When arguments must be pushed onto the stack, they go on in reverse
3314 order. The code below implements a FILO (stack) to do this. */
3315
3316struct stack_item
3317{
3318 int len;
3319 struct stack_item *prev;
7c543f7b 3320 gdb_byte *data;
2dd604e7
RE
3321};
3322
3323static struct stack_item *
df3b6708 3324push_stack_item (struct stack_item *prev, const gdb_byte *contents, int len)
2dd604e7
RE
3325{
3326 struct stack_item *si;
8d749320 3327 si = XNEW (struct stack_item);
7c543f7b 3328 si->data = (gdb_byte *) xmalloc (len);
2dd604e7
RE
3329 si->len = len;
3330 si->prev = prev;
3331 memcpy (si->data, contents, len);
3332 return si;
3333}
3334
3335static struct stack_item *
3336pop_stack_item (struct stack_item *si)
3337{
3338 struct stack_item *dead = si;
3339 si = si->prev;
3340 xfree (dead->data);
3341 xfree (dead);
3342 return si;
3343}
3344
2af48f68
PB
3345
3346/* Return the alignment (in bytes) of the given type. */
3347
3348static int
3349arm_type_align (struct type *t)
3350{
3351 int n;
3352 int align;
3353 int falign;
3354
3355 t = check_typedef (t);
3356 switch (TYPE_CODE (t))
3357 {
3358 default:
3359 /* Should never happen. */
3360 internal_error (__FILE__, __LINE__, _("unknown type alignment"));
3361 return 4;
3362
3363 case TYPE_CODE_PTR:
3364 case TYPE_CODE_ENUM:
3365 case TYPE_CODE_INT:
3366 case TYPE_CODE_FLT:
3367 case TYPE_CODE_SET:
3368 case TYPE_CODE_RANGE:
2af48f68 3369 case TYPE_CODE_REF:
aa006118 3370 case TYPE_CODE_RVALUE_REF:
2af48f68
PB
3371 case TYPE_CODE_CHAR:
3372 case TYPE_CODE_BOOL:
3373 return TYPE_LENGTH (t);
3374
3375 case TYPE_CODE_ARRAY:
c4312b19
YQ
3376 if (TYPE_VECTOR (t))
3377 {
3378 /* Use the natural alignment for vector types (the same for
3379 scalar type), but the maximum alignment is 64-bit. */
3380 if (TYPE_LENGTH (t) > 8)
3381 return 8;
3382 else
3383 return TYPE_LENGTH (t);
3384 }
3385 else
3386 return arm_type_align (TYPE_TARGET_TYPE (t));
2af48f68 3387 case TYPE_CODE_COMPLEX:
2af48f68
PB
3388 return arm_type_align (TYPE_TARGET_TYPE (t));
3389
3390 case TYPE_CODE_STRUCT:
3391 case TYPE_CODE_UNION:
3392 align = 1;
3393 for (n = 0; n < TYPE_NFIELDS (t); n++)
3394 {
3395 falign = arm_type_align (TYPE_FIELD_TYPE (t, n));
3396 if (falign > align)
3397 align = falign;
3398 }
3399 return align;
3400 }
3401}
3402
90445bd3
DJ
3403/* Possible base types for a candidate for passing and returning in
3404 VFP registers. */
3405
3406enum arm_vfp_cprc_base_type
3407{
3408 VFP_CPRC_UNKNOWN,
3409 VFP_CPRC_SINGLE,
3410 VFP_CPRC_DOUBLE,
3411 VFP_CPRC_VEC64,
3412 VFP_CPRC_VEC128
3413};
3414
3415/* The length of one element of base type B. */
3416
3417static unsigned
3418arm_vfp_cprc_unit_length (enum arm_vfp_cprc_base_type b)
3419{
3420 switch (b)
3421 {
3422 case VFP_CPRC_SINGLE:
3423 return 4;
3424 case VFP_CPRC_DOUBLE:
3425 return 8;
3426 case VFP_CPRC_VEC64:
3427 return 8;
3428 case VFP_CPRC_VEC128:
3429 return 16;
3430 default:
3431 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3432 (int) b);
3433 }
3434}
3435
3436/* The character ('s', 'd' or 'q') for the type of VFP register used
3437 for passing base type B. */
3438
3439static int
3440arm_vfp_cprc_reg_char (enum arm_vfp_cprc_base_type b)
3441{
3442 switch (b)
3443 {
3444 case VFP_CPRC_SINGLE:
3445 return 's';
3446 case VFP_CPRC_DOUBLE:
3447 return 'd';
3448 case VFP_CPRC_VEC64:
3449 return 'd';
3450 case VFP_CPRC_VEC128:
3451 return 'q';
3452 default:
3453 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3454 (int) b);
3455 }
3456}
3457
3458/* Determine whether T may be part of a candidate for passing and
3459 returning in VFP registers, ignoring the limit on the total number
3460 of components. If *BASE_TYPE is VFP_CPRC_UNKNOWN, set it to the
3461 classification of the first valid component found; if it is not
3462 VFP_CPRC_UNKNOWN, all components must have the same classification
3463 as *BASE_TYPE. If it is found that T contains a type not permitted
3464 for passing and returning in VFP registers, a type differently
3465 classified from *BASE_TYPE, or two types differently classified
3466 from each other, return -1, otherwise return the total number of
3467 base-type elements found (possibly 0 in an empty structure or
817e0957
YQ
3468 array). Vector types are not currently supported, matching the
3469 generic AAPCS support. */
90445bd3
DJ
3470
3471static int
3472arm_vfp_cprc_sub_candidate (struct type *t,
3473 enum arm_vfp_cprc_base_type *base_type)
3474{
3475 t = check_typedef (t);
3476 switch (TYPE_CODE (t))
3477 {
3478 case TYPE_CODE_FLT:
3479 switch (TYPE_LENGTH (t))
3480 {
3481 case 4:
3482 if (*base_type == VFP_CPRC_UNKNOWN)
3483 *base_type = VFP_CPRC_SINGLE;
3484 else if (*base_type != VFP_CPRC_SINGLE)
3485 return -1;
3486 return 1;
3487
3488 case 8:
3489 if (*base_type == VFP_CPRC_UNKNOWN)
3490 *base_type = VFP_CPRC_DOUBLE;
3491 else if (*base_type != VFP_CPRC_DOUBLE)
3492 return -1;
3493 return 1;
3494
3495 default:
3496 return -1;
3497 }
3498 break;
3499
817e0957
YQ
3500 case TYPE_CODE_COMPLEX:
3501 /* Arguments of complex T where T is one of the types float or
3502 double get treated as if they are implemented as:
3503
3504 struct complexT
3505 {
3506 T real;
3507 T imag;
5f52445b
YQ
3508 };
3509
3510 */
817e0957
YQ
3511 switch (TYPE_LENGTH (t))
3512 {
3513 case 8:
3514 if (*base_type == VFP_CPRC_UNKNOWN)
3515 *base_type = VFP_CPRC_SINGLE;
3516 else if (*base_type != VFP_CPRC_SINGLE)
3517 return -1;
3518 return 2;
3519
3520 case 16:
3521 if (*base_type == VFP_CPRC_UNKNOWN)
3522 *base_type = VFP_CPRC_DOUBLE;
3523 else if (*base_type != VFP_CPRC_DOUBLE)
3524 return -1;
3525 return 2;
3526
3527 default:
3528 return -1;
3529 }
3530 break;
3531
90445bd3
DJ
3532 case TYPE_CODE_ARRAY:
3533 {
c4312b19 3534 if (TYPE_VECTOR (t))
90445bd3 3535 {
c4312b19
YQ
3536 /* A 64-bit or 128-bit containerized vector type are VFP
3537 CPRCs. */
3538 switch (TYPE_LENGTH (t))
3539 {
3540 case 8:
3541 if (*base_type == VFP_CPRC_UNKNOWN)
3542 *base_type = VFP_CPRC_VEC64;
3543 return 1;
3544 case 16:
3545 if (*base_type == VFP_CPRC_UNKNOWN)
3546 *base_type = VFP_CPRC_VEC128;
3547 return 1;
3548 default:
3549 return -1;
3550 }
3551 }
3552 else
3553 {
3554 int count;
3555 unsigned unitlen;
3556
3557 count = arm_vfp_cprc_sub_candidate (TYPE_TARGET_TYPE (t),
3558 base_type);
3559 if (count == -1)
3560 return -1;
3561 if (TYPE_LENGTH (t) == 0)
3562 {
3563 gdb_assert (count == 0);
3564 return 0;
3565 }
3566 else if (count == 0)
3567 return -1;
3568 unitlen = arm_vfp_cprc_unit_length (*base_type);
3569 gdb_assert ((TYPE_LENGTH (t) % unitlen) == 0);
3570 return TYPE_LENGTH (t) / unitlen;
90445bd3 3571 }
90445bd3
DJ
3572 }
3573 break;
3574
3575 case TYPE_CODE_STRUCT:
3576 {
3577 int count = 0;
3578 unsigned unitlen;
3579 int i;
3580 for (i = 0; i < TYPE_NFIELDS (t); i++)
3581 {
1040b979
YQ
3582 int sub_count = 0;
3583
3584 if (!field_is_static (&TYPE_FIELD (t, i)))
3585 sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3586 base_type);
90445bd3
DJ
3587 if (sub_count == -1)
3588 return -1;
3589 count += sub_count;
3590 }
3591 if (TYPE_LENGTH (t) == 0)
3592 {
3593 gdb_assert (count == 0);
3594 return 0;
3595 }
3596 else if (count == 0)
3597 return -1;
3598 unitlen = arm_vfp_cprc_unit_length (*base_type);
3599 if (TYPE_LENGTH (t) != unitlen * count)
3600 return -1;
3601 return count;
3602 }
3603
3604 case TYPE_CODE_UNION:
3605 {
3606 int count = 0;
3607 unsigned unitlen;
3608 int i;
3609 for (i = 0; i < TYPE_NFIELDS (t); i++)
3610 {
3611 int sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3612 base_type);
3613 if (sub_count == -1)
3614 return -1;
3615 count = (count > sub_count ? count : sub_count);
3616 }
3617 if (TYPE_LENGTH (t) == 0)
3618 {
3619 gdb_assert (count == 0);
3620 return 0;
3621 }
3622 else if (count == 0)
3623 return -1;
3624 unitlen = arm_vfp_cprc_unit_length (*base_type);
3625 if (TYPE_LENGTH (t) != unitlen * count)
3626 return -1;
3627 return count;
3628 }
3629
3630 default:
3631 break;
3632 }
3633
3634 return -1;
3635}
3636
3637/* Determine whether T is a VFP co-processor register candidate (CPRC)
3638 if passed to or returned from a non-variadic function with the VFP
3639 ABI in effect. Return 1 if it is, 0 otherwise. If it is, set
3640 *BASE_TYPE to the base type for T and *COUNT to the number of
3641 elements of that base type before returning. */
3642
3643static int
3644arm_vfp_call_candidate (struct type *t, enum arm_vfp_cprc_base_type *base_type,
3645 int *count)
3646{
3647 enum arm_vfp_cprc_base_type b = VFP_CPRC_UNKNOWN;
3648 int c = arm_vfp_cprc_sub_candidate (t, &b);
3649 if (c <= 0 || c > 4)
3650 return 0;
3651 *base_type = b;
3652 *count = c;
3653 return 1;
3654}
3655
3656/* Return 1 if the VFP ABI should be used for passing arguments to and
3657 returning values from a function of type FUNC_TYPE, 0
3658 otherwise. */
3659
3660static int
3661arm_vfp_abi_for_function (struct gdbarch *gdbarch, struct type *func_type)
3662{
3663 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3664 /* Variadic functions always use the base ABI. Assume that functions
3665 without debug info are not variadic. */
3666 if (func_type && TYPE_VARARGS (check_typedef (func_type)))
3667 return 0;
3668 /* The VFP ABI is only supported as a variant of AAPCS. */
3669 if (tdep->arm_abi != ARM_ABI_AAPCS)
3670 return 0;
3671 return gdbarch_tdep (gdbarch)->fp_model == ARM_FLOAT_VFP;
3672}
3673
3674/* We currently only support passing parameters in integer registers, which
3675 conforms with GCC's default model, and VFP argument passing following
3676 the VFP variant of AAPCS. Several other variants exist and
2dd604e7
RE
3677 we should probably support some of them based on the selected ABI. */
3678
3679static CORE_ADDR
7d9b040b 3680arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6a65450a
AC
3681 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
3682 struct value **args, CORE_ADDR sp, int struct_return,
3683 CORE_ADDR struct_addr)
2dd604e7 3684{
e17a4113 3685 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2dd604e7
RE
3686 int argnum;
3687 int argreg;
3688 int nstack;
3689 struct stack_item *si = NULL;
90445bd3
DJ
3690 int use_vfp_abi;
3691 struct type *ftype;
3692 unsigned vfp_regs_free = (1 << 16) - 1;
3693
3694 /* Determine the type of this function and whether the VFP ABI
3695 applies. */
3696 ftype = check_typedef (value_type (function));
3697 if (TYPE_CODE (ftype) == TYPE_CODE_PTR)
3698 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
3699 use_vfp_abi = arm_vfp_abi_for_function (gdbarch, ftype);
2dd604e7 3700
6a65450a
AC
3701 /* Set the return address. For the ARM, the return breakpoint is
3702 always at BP_ADDR. */
9779414d 3703 if (arm_pc_is_thumb (gdbarch, bp_addr))
9dca5578 3704 bp_addr |= 1;
6a65450a 3705 regcache_cooked_write_unsigned (regcache, ARM_LR_REGNUM, bp_addr);
2dd604e7
RE
3706
3707 /* Walk through the list of args and determine how large a temporary
3708 stack is required. Need to take care here as structs may be
7a9dd1b2 3709 passed on the stack, and we have to push them. */
2dd604e7
RE
3710 nstack = 0;
3711
3712 argreg = ARM_A1_REGNUM;
3713 nstack = 0;
3714
2dd604e7
RE
3715 /* The struct_return pointer occupies the first parameter
3716 passing register. */
3717 if (struct_return)
3718 {
3719 if (arm_debug)
5af949e3 3720 fprintf_unfiltered (gdb_stdlog, "struct return in %s = %s\n",
2af46ca0 3721 gdbarch_register_name (gdbarch, argreg),
5af949e3 3722 paddress (gdbarch, struct_addr));
2dd604e7
RE
3723 regcache_cooked_write_unsigned (regcache, argreg, struct_addr);
3724 argreg++;
3725 }
3726
3727 for (argnum = 0; argnum < nargs; argnum++)
3728 {
3729 int len;
3730 struct type *arg_type;
3731 struct type *target_type;
3732 enum type_code typecode;
8c6363cf 3733 const bfd_byte *val;
2af48f68 3734 int align;
90445bd3
DJ
3735 enum arm_vfp_cprc_base_type vfp_base_type;
3736 int vfp_base_count;
3737 int may_use_core_reg = 1;
2dd604e7 3738
df407dfe 3739 arg_type = check_typedef (value_type (args[argnum]));
2dd604e7
RE
3740 len = TYPE_LENGTH (arg_type);
3741 target_type = TYPE_TARGET_TYPE (arg_type);
3742 typecode = TYPE_CODE (arg_type);
8c6363cf 3743 val = value_contents (args[argnum]);
2dd604e7 3744
2af48f68
PB
3745 align = arm_type_align (arg_type);
3746 /* Round alignment up to a whole number of words. */
3747 align = (align + INT_REGISTER_SIZE - 1) & ~(INT_REGISTER_SIZE - 1);
3748 /* Different ABIs have different maximum alignments. */
3749 if (gdbarch_tdep (gdbarch)->arm_abi == ARM_ABI_APCS)
3750 {
3751 /* The APCS ABI only requires word alignment. */
3752 align = INT_REGISTER_SIZE;
3753 }
3754 else
3755 {
3756 /* The AAPCS requires at most doubleword alignment. */
3757 if (align > INT_REGISTER_SIZE * 2)
3758 align = INT_REGISTER_SIZE * 2;
3759 }
3760
90445bd3
DJ
3761 if (use_vfp_abi
3762 && arm_vfp_call_candidate (arg_type, &vfp_base_type,
3763 &vfp_base_count))
3764 {
3765 int regno;
3766 int unit_length;
3767 int shift;
3768 unsigned mask;
3769
3770 /* Because this is a CPRC it cannot go in a core register or
3771 cause a core register to be skipped for alignment.
3772 Either it goes in VFP registers and the rest of this loop
3773 iteration is skipped for this argument, or it goes on the
3774 stack (and the stack alignment code is correct for this
3775 case). */
3776 may_use_core_reg = 0;
3777
3778 unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
3779 shift = unit_length / 4;
3780 mask = (1 << (shift * vfp_base_count)) - 1;
3781 for (regno = 0; regno < 16; regno += shift)
3782 if (((vfp_regs_free >> regno) & mask) == mask)
3783 break;
3784
3785 if (regno < 16)
3786 {
3787 int reg_char;
3788 int reg_scaled;
3789 int i;
3790
3791 vfp_regs_free &= ~(mask << regno);
3792 reg_scaled = regno / shift;
3793 reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
3794 for (i = 0; i < vfp_base_count; i++)
3795 {
3796 char name_buf[4];
3797 int regnum;
58d6951d
DJ
3798 if (reg_char == 'q')
3799 arm_neon_quad_write (gdbarch, regcache, reg_scaled + i,
90445bd3 3800 val + i * unit_length);
58d6951d
DJ
3801 else
3802 {
8c042590
PM
3803 xsnprintf (name_buf, sizeof (name_buf), "%c%d",
3804 reg_char, reg_scaled + i);
58d6951d
DJ
3805 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
3806 strlen (name_buf));
3807 regcache_cooked_write (regcache, regnum,
3808 val + i * unit_length);
3809 }
90445bd3
DJ
3810 }
3811 continue;
3812 }
3813 else
3814 {
3815 /* This CPRC could not go in VFP registers, so all VFP
3816 registers are now marked as used. */
3817 vfp_regs_free = 0;
3818 }
3819 }
3820
2af48f68
PB
3821 /* Push stack padding for dowubleword alignment. */
3822 if (nstack & (align - 1))
3823 {
3824 si = push_stack_item (si, val, INT_REGISTER_SIZE);
3825 nstack += INT_REGISTER_SIZE;
3826 }
3827
3828 /* Doubleword aligned quantities must go in even register pairs. */
90445bd3
DJ
3829 if (may_use_core_reg
3830 && argreg <= ARM_LAST_ARG_REGNUM
2af48f68
PB
3831 && align > INT_REGISTER_SIZE
3832 && argreg & 1)
3833 argreg++;
3834
2dd604e7
RE
3835 /* If the argument is a pointer to a function, and it is a
3836 Thumb function, create a LOCAL copy of the value and set
3837 the THUMB bit in it. */
3838 if (TYPE_CODE_PTR == typecode
3839 && target_type != NULL
f96b8fa0 3840 && TYPE_CODE_FUNC == TYPE_CODE (check_typedef (target_type)))
2dd604e7 3841 {
e17a4113 3842 CORE_ADDR regval = extract_unsigned_integer (val, len, byte_order);
9779414d 3843 if (arm_pc_is_thumb (gdbarch, regval))
2dd604e7 3844 {
224c3ddb 3845 bfd_byte *copy = (bfd_byte *) alloca (len);
8c6363cf 3846 store_unsigned_integer (copy, len, byte_order,
e17a4113 3847 MAKE_THUMB_ADDR (regval));
8c6363cf 3848 val = copy;
2dd604e7
RE
3849 }
3850 }
3851
3852 /* Copy the argument to general registers or the stack in
3853 register-sized pieces. Large arguments are split between
3854 registers and stack. */
3855 while (len > 0)
3856 {
f0c9063c 3857 int partial_len = len < INT_REGISTER_SIZE ? len : INT_REGISTER_SIZE;
ef9bd0b8
YQ
3858 CORE_ADDR regval
3859 = extract_unsigned_integer (val, partial_len, byte_order);
2dd604e7 3860
90445bd3 3861 if (may_use_core_reg && argreg <= ARM_LAST_ARG_REGNUM)
2dd604e7
RE
3862 {
3863 /* The argument is being passed in a general purpose
3864 register. */
e17a4113 3865 if (byte_order == BFD_ENDIAN_BIG)
8bf8793c 3866 regval <<= (INT_REGISTER_SIZE - partial_len) * 8;
2dd604e7
RE
3867 if (arm_debug)
3868 fprintf_unfiltered (gdb_stdlog, "arg %d in %s = 0x%s\n",
c9f4d572
UW
3869 argnum,
3870 gdbarch_register_name
2af46ca0 3871 (gdbarch, argreg),
f0c9063c 3872 phex (regval, INT_REGISTER_SIZE));
2dd604e7
RE
3873 regcache_cooked_write_unsigned (regcache, argreg, regval);
3874 argreg++;
3875 }
3876 else
3877 {
ef9bd0b8
YQ
3878 gdb_byte buf[INT_REGISTER_SIZE];
3879
3880 memset (buf, 0, sizeof (buf));
3881 store_unsigned_integer (buf, partial_len, byte_order, regval);
3882
2dd604e7
RE
3883 /* Push the arguments onto the stack. */
3884 if (arm_debug)
3885 fprintf_unfiltered (gdb_stdlog, "arg %d @ sp + %d\n",
3886 argnum, nstack);
ef9bd0b8 3887 si = push_stack_item (si, buf, INT_REGISTER_SIZE);
f0c9063c 3888 nstack += INT_REGISTER_SIZE;
2dd604e7
RE
3889 }
3890
3891 len -= partial_len;
3892 val += partial_len;
3893 }
3894 }
3895 /* If we have an odd number of words to push, then decrement the stack
3896 by one word now, so first stack argument will be dword aligned. */
3897 if (nstack & 4)
3898 sp -= 4;
3899
3900 while (si)
3901 {
3902 sp -= si->len;
3903 write_memory (sp, si->data, si->len);
3904 si = pop_stack_item (si);
3905 }
3906
3907 /* Finally, update teh SP register. */
3908 regcache_cooked_write_unsigned (regcache, ARM_SP_REGNUM, sp);
3909
3910 return sp;
3911}
3912
f53f0d0b
PB
3913
3914/* Always align the frame to an 8-byte boundary. This is required on
3915 some platforms and harmless on the rest. */
3916
3917static CORE_ADDR
3918arm_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
3919{
3920 /* Align the stack to eight bytes. */
3921 return sp & ~ (CORE_ADDR) 7;
3922}
3923
c906108c 3924static void
12b27276 3925print_fpu_flags (struct ui_file *file, int flags)
c906108c 3926{
c5aa993b 3927 if (flags & (1 << 0))
12b27276 3928 fputs_filtered ("IVO ", file);
c5aa993b 3929 if (flags & (1 << 1))
12b27276 3930 fputs_filtered ("DVZ ", file);
c5aa993b 3931 if (flags & (1 << 2))
12b27276 3932 fputs_filtered ("OFL ", file);
c5aa993b 3933 if (flags & (1 << 3))
12b27276 3934 fputs_filtered ("UFL ", file);
c5aa993b 3935 if (flags & (1 << 4))
12b27276
WN
3936 fputs_filtered ("INX ", file);
3937 fputc_filtered ('\n', file);
c906108c
SS
3938}
3939
5e74b15c
RE
3940/* Print interesting information about the floating point processor
3941 (if present) or emulator. */
34e8f22d 3942static void
d855c300 3943arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
23e3a7ac 3944 struct frame_info *frame, const char *args)
c906108c 3945{
9c9acae0 3946 unsigned long status = get_frame_register_unsigned (frame, ARM_FPS_REGNUM);
c5aa993b
JM
3947 int type;
3948
3949 type = (status >> 24) & 127;
edefbb7c 3950 if (status & (1 << 31))
12b27276 3951 fprintf_filtered (file, _("Hardware FPU type %d\n"), type);
edefbb7c 3952 else
12b27276 3953 fprintf_filtered (file, _("Software FPU type %d\n"), type);
edefbb7c 3954 /* i18n: [floating point unit] mask */
12b27276
WN
3955 fputs_filtered (_("mask: "), file);
3956 print_fpu_flags (file, status >> 16);
edefbb7c 3957 /* i18n: [floating point unit] flags */
12b27276
WN
3958 fputs_filtered (_("flags: "), file);
3959 print_fpu_flags (file, status);
c906108c
SS
3960}
3961
27067745
UW
3962/* Construct the ARM extended floating point type. */
3963static struct type *
3964arm_ext_type (struct gdbarch *gdbarch)
3965{
3966 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3967
3968 if (!tdep->arm_ext_type)
3969 tdep->arm_ext_type
e9bb382b 3970 = arch_float_type (gdbarch, -1, "builtin_type_arm_ext",
27067745
UW
3971 floatformats_arm_ext);
3972
3973 return tdep->arm_ext_type;
3974}
3975
58d6951d
DJ
3976static struct type *
3977arm_neon_double_type (struct gdbarch *gdbarch)
3978{
3979 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3980
3981 if (tdep->neon_double_type == NULL)
3982 {
3983 struct type *t, *elem;
3984
3985 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_d",
3986 TYPE_CODE_UNION);
3987 elem = builtin_type (gdbarch)->builtin_uint8;
3988 append_composite_type_field (t, "u8", init_vector_type (elem, 8));
3989 elem = builtin_type (gdbarch)->builtin_uint16;
3990 append_composite_type_field (t, "u16", init_vector_type (elem, 4));
3991 elem = builtin_type (gdbarch)->builtin_uint32;
3992 append_composite_type_field (t, "u32", init_vector_type (elem, 2));
3993 elem = builtin_type (gdbarch)->builtin_uint64;
3994 append_composite_type_field (t, "u64", elem);
3995 elem = builtin_type (gdbarch)->builtin_float;
3996 append_composite_type_field (t, "f32", init_vector_type (elem, 2));
3997 elem = builtin_type (gdbarch)->builtin_double;
3998 append_composite_type_field (t, "f64", elem);
3999
4000 TYPE_VECTOR (t) = 1;
4001 TYPE_NAME (t) = "neon_d";
4002 tdep->neon_double_type = t;
4003 }
4004
4005 return tdep->neon_double_type;
4006}
4007
4008/* FIXME: The vector types are not correctly ordered on big-endian
4009 targets. Just as s0 is the low bits of d0, d0[0] is also the low
4010 bits of d0 - regardless of what unit size is being held in d0. So
4011 the offset of the first uint8 in d0 is 7, but the offset of the
4012 first float is 4. This code works as-is for little-endian
4013 targets. */
4014
4015static struct type *
4016arm_neon_quad_type (struct gdbarch *gdbarch)
4017{
4018 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
4019
4020 if (tdep->neon_quad_type == NULL)
4021 {
4022 struct type *t, *elem;
4023
4024 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_q",
4025 TYPE_CODE_UNION);
4026 elem = builtin_type (gdbarch)->builtin_uint8;
4027 append_composite_type_field (t, "u8", init_vector_type (elem, 16));
4028 elem = builtin_type (gdbarch)->builtin_uint16;
4029 append_composite_type_field (t, "u16", init_vector_type (elem, 8));
4030 elem = builtin_type (gdbarch)->builtin_uint32;
4031 append_composite_type_field (t, "u32", init_vector_type (elem, 4));
4032 elem = builtin_type (gdbarch)->builtin_uint64;
4033 append_composite_type_field (t, "u64", init_vector_type (elem, 2));
4034 elem = builtin_type (gdbarch)->builtin_float;
4035 append_composite_type_field (t, "f32", init_vector_type (elem, 4));
4036 elem = builtin_type (gdbarch)->builtin_double;
4037 append_composite_type_field (t, "f64", init_vector_type (elem, 2));
4038
4039 TYPE_VECTOR (t) = 1;
4040 TYPE_NAME (t) = "neon_q";
4041 tdep->neon_quad_type = t;
4042 }
4043
4044 return tdep->neon_quad_type;
4045}
4046
34e8f22d
RE
4047/* Return the GDB type object for the "standard" data type of data in
4048 register N. */
4049
4050static struct type *
7a5ea0d4 4051arm_register_type (struct gdbarch *gdbarch, int regnum)
032758dc 4052{
58d6951d
DJ
4053 int num_regs = gdbarch_num_regs (gdbarch);
4054
4055 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
4056 && regnum >= num_regs && regnum < num_regs + 32)
4057 return builtin_type (gdbarch)->builtin_float;
4058
4059 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
4060 && regnum >= num_regs + 32 && regnum < num_regs + 32 + 16)
4061 return arm_neon_quad_type (gdbarch);
4062
4063 /* If the target description has register information, we are only
4064 in this function so that we can override the types of
4065 double-precision registers for NEON. */
4066 if (tdesc_has_registers (gdbarch_target_desc (gdbarch)))
4067 {
4068 struct type *t = tdesc_register_type (gdbarch, regnum);
4069
4070 if (regnum >= ARM_D0_REGNUM && regnum < ARM_D0_REGNUM + 32
4071 && TYPE_CODE (t) == TYPE_CODE_FLT
4072 && gdbarch_tdep (gdbarch)->have_neon)
4073 return arm_neon_double_type (gdbarch);
4074 else
4075 return t;
4076 }
4077
34e8f22d 4078 if (regnum >= ARM_F0_REGNUM && regnum < ARM_F0_REGNUM + NUM_FREGS)
58d6951d
DJ
4079 {
4080 if (!gdbarch_tdep (gdbarch)->have_fpa_registers)
4081 return builtin_type (gdbarch)->builtin_void;
4082
4083 return arm_ext_type (gdbarch);
4084 }
e4c16157 4085 else if (regnum == ARM_SP_REGNUM)
0dfff4cb 4086 return builtin_type (gdbarch)->builtin_data_ptr;
e4c16157 4087 else if (regnum == ARM_PC_REGNUM)
0dfff4cb 4088 return builtin_type (gdbarch)->builtin_func_ptr;
ff6f572f
DJ
4089 else if (regnum >= ARRAY_SIZE (arm_register_names))
4090 /* These registers are only supported on targets which supply
4091 an XML description. */
df4df182 4092 return builtin_type (gdbarch)->builtin_int0;
032758dc 4093 else
df4df182 4094 return builtin_type (gdbarch)->builtin_uint32;
032758dc
AC
4095}
4096
ff6f572f
DJ
4097/* Map a DWARF register REGNUM onto the appropriate GDB register
4098 number. */
4099
4100static int
d3f73121 4101arm_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
ff6f572f
DJ
4102{
4103 /* Core integer regs. */
4104 if (reg >= 0 && reg <= 15)
4105 return reg;
4106
4107 /* Legacy FPA encoding. These were once used in a way which
4108 overlapped with VFP register numbering, so their use is
4109 discouraged, but GDB doesn't support the ARM toolchain
4110 which used them for VFP. */
4111 if (reg >= 16 && reg <= 23)
4112 return ARM_F0_REGNUM + reg - 16;
4113
4114 /* New assignments for the FPA registers. */
4115 if (reg >= 96 && reg <= 103)
4116 return ARM_F0_REGNUM + reg - 96;
4117
4118 /* WMMX register assignments. */
4119 if (reg >= 104 && reg <= 111)
4120 return ARM_WCGR0_REGNUM + reg - 104;
4121
4122 if (reg >= 112 && reg <= 127)
4123 return ARM_WR0_REGNUM + reg - 112;
4124
4125 if (reg >= 192 && reg <= 199)
4126 return ARM_WC0_REGNUM + reg - 192;
4127
58d6951d
DJ
4128 /* VFP v2 registers. A double precision value is actually
4129 in d1 rather than s2, but the ABI only defines numbering
4130 for the single precision registers. This will "just work"
4131 in GDB for little endian targets (we'll read eight bytes,
4132 starting in s0 and then progressing to s1), but will be
4133 reversed on big endian targets with VFP. This won't
4134 be a problem for the new Neon quad registers; you're supposed
4135 to use DW_OP_piece for those. */
4136 if (reg >= 64 && reg <= 95)
4137 {
4138 char name_buf[4];
4139
8c042590 4140 xsnprintf (name_buf, sizeof (name_buf), "s%d", reg - 64);
58d6951d
DJ
4141 return user_reg_map_name_to_regnum (gdbarch, name_buf,
4142 strlen (name_buf));
4143 }
4144
4145 /* VFP v3 / Neon registers. This range is also used for VFP v2
4146 registers, except that it now describes d0 instead of s0. */
4147 if (reg >= 256 && reg <= 287)
4148 {
4149 char name_buf[4];
4150
8c042590 4151 xsnprintf (name_buf, sizeof (name_buf), "d%d", reg - 256);
58d6951d
DJ
4152 return user_reg_map_name_to_regnum (gdbarch, name_buf,
4153 strlen (name_buf));
4154 }
4155
ff6f572f
DJ
4156 return -1;
4157}
4158
26216b98
AC
4159/* Map GDB internal REGNUM onto the Arm simulator register numbers. */
4160static int
e7faf938 4161arm_register_sim_regno (struct gdbarch *gdbarch, int regnum)
26216b98
AC
4162{
4163 int reg = regnum;
e7faf938 4164 gdb_assert (reg >= 0 && reg < gdbarch_num_regs (gdbarch));
26216b98 4165
ff6f572f
DJ
4166 if (regnum >= ARM_WR0_REGNUM && regnum <= ARM_WR15_REGNUM)
4167 return regnum - ARM_WR0_REGNUM + SIM_ARM_IWMMXT_COP0R0_REGNUM;
4168
4169 if (regnum >= ARM_WC0_REGNUM && regnum <= ARM_WC7_REGNUM)
4170 return regnum - ARM_WC0_REGNUM + SIM_ARM_IWMMXT_COP1R0_REGNUM;
4171
4172 if (regnum >= ARM_WCGR0_REGNUM && regnum <= ARM_WCGR7_REGNUM)
4173 return regnum - ARM_WCGR0_REGNUM + SIM_ARM_IWMMXT_COP1R8_REGNUM;
4174
26216b98
AC
4175 if (reg < NUM_GREGS)
4176 return SIM_ARM_R0_REGNUM + reg;
4177 reg -= NUM_GREGS;
4178
4179 if (reg < NUM_FREGS)
4180 return SIM_ARM_FP0_REGNUM + reg;
4181 reg -= NUM_FREGS;
4182
4183 if (reg < NUM_SREGS)
4184 return SIM_ARM_FPS_REGNUM + reg;
4185 reg -= NUM_SREGS;
4186
edefbb7c 4187 internal_error (__FILE__, __LINE__, _("Bad REGNUM %d"), regnum);
26216b98 4188}
34e8f22d 4189
d9311bfa
AT
4190/* Given BUF, which is OLD_LEN bytes ending at ENDADDR, expand
4191 the buffer to be NEW_LEN bytes ending at ENDADDR. Return
4192 NULL if an error occurs. BUF is freed. */
c906108c 4193
d9311bfa
AT
4194static gdb_byte *
4195extend_buffer_earlier (gdb_byte *buf, CORE_ADDR endaddr,
4196 int old_len, int new_len)
4197{
4198 gdb_byte *new_buf;
4199 int bytes_to_read = new_len - old_len;
c906108c 4200
d9311bfa
AT
4201 new_buf = (gdb_byte *) xmalloc (new_len);
4202 memcpy (new_buf + bytes_to_read, buf, old_len);
4203 xfree (buf);
198cd59d 4204 if (target_read_code (endaddr - new_len, new_buf, bytes_to_read) != 0)
d9311bfa
AT
4205 {
4206 xfree (new_buf);
4207 return NULL;
c906108c 4208 }
d9311bfa 4209 return new_buf;
c906108c
SS
4210}
4211
d9311bfa
AT
4212/* An IT block is at most the 2-byte IT instruction followed by
4213 four 4-byte instructions. The furthest back we must search to
4214 find an IT block that affects the current instruction is thus
4215 2 + 3 * 4 == 14 bytes. */
4216#define MAX_IT_BLOCK_PREFIX 14
177321bd 4217
d9311bfa
AT
4218/* Use a quick scan if there are more than this many bytes of
4219 code. */
4220#define IT_SCAN_THRESHOLD 32
177321bd 4221
d9311bfa
AT
4222/* Adjust a breakpoint's address to move breakpoints out of IT blocks.
4223 A breakpoint in an IT block may not be hit, depending on the
4224 condition flags. */
ad527d2e 4225static CORE_ADDR
d9311bfa 4226arm_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
c906108c 4227{
d9311bfa
AT
4228 gdb_byte *buf;
4229 char map_type;
4230 CORE_ADDR boundary, func_start;
4231 int buf_len;
4232 enum bfd_endian order = gdbarch_byte_order_for_code (gdbarch);
4233 int i, any, last_it, last_it_count;
177321bd 4234
d9311bfa
AT
4235 /* If we are using BKPT breakpoints, none of this is necessary. */
4236 if (gdbarch_tdep (gdbarch)->thumb2_breakpoint == NULL)
4237 return bpaddr;
177321bd 4238
d9311bfa
AT
4239 /* ARM mode does not have this problem. */
4240 if (!arm_pc_is_thumb (gdbarch, bpaddr))
4241 return bpaddr;
177321bd 4242
d9311bfa
AT
4243 /* We are setting a breakpoint in Thumb code that could potentially
4244 contain an IT block. The first step is to find how much Thumb
4245 code there is; we do not need to read outside of known Thumb
4246 sequences. */
4247 map_type = arm_find_mapping_symbol (bpaddr, &boundary);
4248 if (map_type == 0)
4249 /* Thumb-2 code must have mapping symbols to have a chance. */
4250 return bpaddr;
9dca5578 4251
d9311bfa 4252 bpaddr = gdbarch_addr_bits_remove (gdbarch, bpaddr);
177321bd 4253
d9311bfa
AT
4254 if (find_pc_partial_function (bpaddr, NULL, &func_start, NULL)
4255 && func_start > boundary)
4256 boundary = func_start;
9dca5578 4257
d9311bfa
AT
4258 /* Search for a candidate IT instruction. We have to do some fancy
4259 footwork to distinguish a real IT instruction from the second
4260 half of a 32-bit instruction, but there is no need for that if
4261 there's no candidate. */
325fac50 4262 buf_len = std::min (bpaddr - boundary, (CORE_ADDR) MAX_IT_BLOCK_PREFIX);
d9311bfa
AT
4263 if (buf_len == 0)
4264 /* No room for an IT instruction. */
4265 return bpaddr;
c906108c 4266
d9311bfa 4267 buf = (gdb_byte *) xmalloc (buf_len);
198cd59d 4268 if (target_read_code (bpaddr - buf_len, buf, buf_len) != 0)
d9311bfa
AT
4269 return bpaddr;
4270 any = 0;
4271 for (i = 0; i < buf_len; i += 2)
c906108c 4272 {
d9311bfa
AT
4273 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4274 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
25b41d01 4275 {
d9311bfa
AT
4276 any = 1;
4277 break;
25b41d01 4278 }
c906108c 4279 }
d9311bfa
AT
4280
4281 if (any == 0)
c906108c 4282 {
d9311bfa
AT
4283 xfree (buf);
4284 return bpaddr;
f9d67f43
DJ
4285 }
4286
4287 /* OK, the code bytes before this instruction contain at least one
4288 halfword which resembles an IT instruction. We know that it's
4289 Thumb code, but there are still two possibilities. Either the
4290 halfword really is an IT instruction, or it is the second half of
4291 a 32-bit Thumb instruction. The only way we can tell is to
4292 scan forwards from a known instruction boundary. */
4293 if (bpaddr - boundary > IT_SCAN_THRESHOLD)
4294 {
4295 int definite;
4296
4297 /* There's a lot of code before this instruction. Start with an
4298 optimistic search; it's easy to recognize halfwords that can
4299 not be the start of a 32-bit instruction, and use that to
4300 lock on to the instruction boundaries. */
4301 buf = extend_buffer_earlier (buf, bpaddr, buf_len, IT_SCAN_THRESHOLD);
4302 if (buf == NULL)
4303 return bpaddr;
4304 buf_len = IT_SCAN_THRESHOLD;
4305
4306 definite = 0;
4307 for (i = 0; i < buf_len - sizeof (buf) && ! definite; i += 2)
4308 {
4309 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4310 if (thumb_insn_size (inst1) == 2)
4311 {
4312 definite = 1;
4313 break;
4314 }
4315 }
4316
4317 /* At this point, if DEFINITE, BUF[I] is the first place we
4318 are sure that we know the instruction boundaries, and it is far
4319 enough from BPADDR that we could not miss an IT instruction
4320 affecting BPADDR. If ! DEFINITE, give up - start from a
4321 known boundary. */
4322 if (! definite)
4323 {
0963b4bd
MS
4324 buf = extend_buffer_earlier (buf, bpaddr, buf_len,
4325 bpaddr - boundary);
f9d67f43
DJ
4326 if (buf == NULL)
4327 return bpaddr;
4328 buf_len = bpaddr - boundary;
4329 i = 0;
4330 }
4331 }
4332 else
4333 {
4334 buf = extend_buffer_earlier (buf, bpaddr, buf_len, bpaddr - boundary);
4335 if (buf == NULL)
4336 return bpaddr;
4337 buf_len = bpaddr - boundary;
4338 i = 0;
4339 }
4340
4341 /* Scan forwards. Find the last IT instruction before BPADDR. */
4342 last_it = -1;
4343 last_it_count = 0;
4344 while (i < buf_len)
4345 {
4346 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4347 last_it_count--;
4348 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
4349 {
4350 last_it = i;
4351 if (inst1 & 0x0001)
4352 last_it_count = 4;
4353 else if (inst1 & 0x0002)
4354 last_it_count = 3;
4355 else if (inst1 & 0x0004)
4356 last_it_count = 2;
4357 else
4358 last_it_count = 1;
4359 }
4360 i += thumb_insn_size (inst1);
4361 }
4362
4363 xfree (buf);
4364
4365 if (last_it == -1)
4366 /* There wasn't really an IT instruction after all. */
4367 return bpaddr;
4368
4369 if (last_it_count < 1)
4370 /* It was too far away. */
4371 return bpaddr;
4372
4373 /* This really is a trouble spot. Move the breakpoint to the IT
4374 instruction. */
4375 return bpaddr - buf_len + last_it;
4376}
4377
cca44b1b 4378/* ARM displaced stepping support.
c906108c 4379
cca44b1b 4380 Generally ARM displaced stepping works as follows:
c906108c 4381
cca44b1b 4382 1. When an instruction is to be single-stepped, it is first decoded by
2ba163c8
SM
4383 arm_process_displaced_insn. Depending on the type of instruction, it is
4384 then copied to a scratch location, possibly in a modified form. The
4385 copy_* set of functions performs such modification, as necessary. A
4386 breakpoint is placed after the modified instruction in the scratch space
4387 to return control to GDB. Note in particular that instructions which
4388 modify the PC will no longer do so after modification.
c5aa993b 4389
cca44b1b
JB
4390 2. The instruction is single-stepped, by setting the PC to the scratch
4391 location address, and resuming. Control returns to GDB when the
4392 breakpoint is hit.
c5aa993b 4393
cca44b1b
JB
4394 3. A cleanup function (cleanup_*) is called corresponding to the copy_*
4395 function used for the current instruction. This function's job is to
4396 put the CPU/memory state back to what it would have been if the
4397 instruction had been executed unmodified in its original location. */
c5aa993b 4398
cca44b1b
JB
4399/* NOP instruction (mov r0, r0). */
4400#define ARM_NOP 0xe1a00000
34518530 4401#define THUMB_NOP 0x4600
cca44b1b
JB
4402
4403/* Helper for register reads for displaced stepping. In particular, this
4404 returns the PC as it would be seen by the instruction at its original
4405 location. */
4406
4407ULONGEST
cfba9872 4408displaced_read_reg (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4409 int regno)
cca44b1b
JB
4410{
4411 ULONGEST ret;
36073a92 4412 CORE_ADDR from = dsc->insn_addr;
cca44b1b 4413
bf9f652a 4414 if (regno == ARM_PC_REGNUM)
cca44b1b 4415 {
4db71c0b
YQ
4416 /* Compute pipeline offset:
4417 - When executing an ARM instruction, PC reads as the address of the
4418 current instruction plus 8.
4419 - When executing a Thumb instruction, PC reads as the address of the
4420 current instruction plus 4. */
4421
36073a92 4422 if (!dsc->is_thumb)
4db71c0b
YQ
4423 from += 8;
4424 else
4425 from += 4;
4426
cca44b1b
JB
4427 if (debug_displaced)
4428 fprintf_unfiltered (gdb_stdlog, "displaced: read pc value %.8lx\n",
4db71c0b
YQ
4429 (unsigned long) from);
4430 return (ULONGEST) from;
cca44b1b 4431 }
c906108c 4432 else
cca44b1b
JB
4433 {
4434 regcache_cooked_read_unsigned (regs, regno, &ret);
4435 if (debug_displaced)
4436 fprintf_unfiltered (gdb_stdlog, "displaced: read r%d value %.8lx\n",
4437 regno, (unsigned long) ret);
4438 return ret;
4439 }
c906108c
SS
4440}
4441
cca44b1b
JB
4442static int
4443displaced_in_arm_mode (struct regcache *regs)
4444{
4445 ULONGEST ps;
ac7936df 4446 ULONGEST t_bit = arm_psr_thumb_bit (regs->arch ());
66e810cd 4447
cca44b1b 4448 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
66e810cd 4449
9779414d 4450 return (ps & t_bit) == 0;
cca44b1b 4451}
66e810cd 4452
cca44b1b 4453/* Write to the PC as from a branch instruction. */
c906108c 4454
cca44b1b 4455static void
cfba9872 4456branch_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4457 ULONGEST val)
c906108c 4458{
36073a92 4459 if (!dsc->is_thumb)
cca44b1b
JB
4460 /* Note: If bits 0/1 are set, this branch would be unpredictable for
4461 architecture versions < 6. */
0963b4bd
MS
4462 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
4463 val & ~(ULONGEST) 0x3);
cca44b1b 4464 else
0963b4bd
MS
4465 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
4466 val & ~(ULONGEST) 0x1);
cca44b1b 4467}
66e810cd 4468
cca44b1b
JB
4469/* Write to the PC as from a branch-exchange instruction. */
4470
4471static void
4472bx_write_pc (struct regcache *regs, ULONGEST val)
4473{
4474 ULONGEST ps;
ac7936df 4475 ULONGEST t_bit = arm_psr_thumb_bit (regs->arch ());
cca44b1b
JB
4476
4477 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
4478
4479 if ((val & 1) == 1)
c906108c 4480 {
9779414d 4481 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps | t_bit);
cca44b1b
JB
4482 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffe);
4483 }
4484 else if ((val & 2) == 0)
4485 {
9779414d 4486 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
cca44b1b 4487 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val);
c906108c
SS
4488 }
4489 else
4490 {
cca44b1b
JB
4491 /* Unpredictable behaviour. Try to do something sensible (switch to ARM
4492 mode, align dest to 4 bytes). */
4493 warning (_("Single-stepping BX to non-word-aligned ARM instruction."));
9779414d 4494 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
cca44b1b 4495 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffc);
c906108c
SS
4496 }
4497}
ed9a39eb 4498
cca44b1b 4499/* Write to the PC as if from a load instruction. */
ed9a39eb 4500
34e8f22d 4501static void
cfba9872 4502load_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4503 ULONGEST val)
ed9a39eb 4504{
cca44b1b
JB
4505 if (DISPLACED_STEPPING_ARCH_VERSION >= 5)
4506 bx_write_pc (regs, val);
4507 else
36073a92 4508 branch_write_pc (regs, dsc, val);
cca44b1b 4509}
be8626e0 4510
cca44b1b
JB
4511/* Write to the PC as if from an ALU instruction. */
4512
4513static void
cfba9872 4514alu_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4515 ULONGEST val)
cca44b1b 4516{
36073a92 4517 if (DISPLACED_STEPPING_ARCH_VERSION >= 7 && !dsc->is_thumb)
cca44b1b
JB
4518 bx_write_pc (regs, val);
4519 else
36073a92 4520 branch_write_pc (regs, dsc, val);
cca44b1b
JB
4521}
4522
4523/* Helper for writing to registers for displaced stepping. Writing to the PC
4524 has a varying effects depending on the instruction which does the write:
4525 this is controlled by the WRITE_PC argument. */
4526
4527void
cfba9872 4528displaced_write_reg (struct regcache *regs, arm_displaced_step_closure *dsc,
cca44b1b
JB
4529 int regno, ULONGEST val, enum pc_write_style write_pc)
4530{
bf9f652a 4531 if (regno == ARM_PC_REGNUM)
08216dd7 4532 {
cca44b1b
JB
4533 if (debug_displaced)
4534 fprintf_unfiltered (gdb_stdlog, "displaced: writing pc %.8lx\n",
4535 (unsigned long) val);
4536 switch (write_pc)
08216dd7 4537 {
cca44b1b 4538 case BRANCH_WRITE_PC:
36073a92 4539 branch_write_pc (regs, dsc, val);
08216dd7
RE
4540 break;
4541
cca44b1b
JB
4542 case BX_WRITE_PC:
4543 bx_write_pc (regs, val);
4544 break;
4545
4546 case LOAD_WRITE_PC:
36073a92 4547 load_write_pc (regs, dsc, val);
cca44b1b
JB
4548 break;
4549
4550 case ALU_WRITE_PC:
36073a92 4551 alu_write_pc (regs, dsc, val);
cca44b1b
JB
4552 break;
4553
4554 case CANNOT_WRITE_PC:
4555 warning (_("Instruction wrote to PC in an unexpected way when "
4556 "single-stepping"));
08216dd7
RE
4557 break;
4558
4559 default:
97b9747c
JB
4560 internal_error (__FILE__, __LINE__,
4561 _("Invalid argument to displaced_write_reg"));
08216dd7 4562 }
b508a996 4563
cca44b1b 4564 dsc->wrote_to_pc = 1;
b508a996 4565 }
ed9a39eb 4566 else
b508a996 4567 {
cca44b1b
JB
4568 if (debug_displaced)
4569 fprintf_unfiltered (gdb_stdlog, "displaced: writing r%d value %.8lx\n",
4570 regno, (unsigned long) val);
4571 regcache_cooked_write_unsigned (regs, regno, val);
b508a996 4572 }
34e8f22d
RE
4573}
4574
cca44b1b
JB
4575/* This function is used to concisely determine if an instruction INSN
4576 references PC. Register fields of interest in INSN should have the
0963b4bd
MS
4577 corresponding fields of BITMASK set to 0b1111. The function
4578 returns return 1 if any of these fields in INSN reference the PC
4579 (also 0b1111, r15), else it returns 0. */
67255d04
RE
4580
4581static int
cca44b1b 4582insn_references_pc (uint32_t insn, uint32_t bitmask)
67255d04 4583{
cca44b1b 4584 uint32_t lowbit = 1;
67255d04 4585
cca44b1b
JB
4586 while (bitmask != 0)
4587 {
4588 uint32_t mask;
44e1a9eb 4589
cca44b1b
JB
4590 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1)
4591 ;
67255d04 4592
cca44b1b
JB
4593 if (!lowbit)
4594 break;
67255d04 4595
cca44b1b 4596 mask = lowbit * 0xf;
67255d04 4597
cca44b1b
JB
4598 if ((insn & mask) == mask)
4599 return 1;
4600
4601 bitmask &= ~mask;
67255d04
RE
4602 }
4603
cca44b1b
JB
4604 return 0;
4605}
2af48f68 4606
cca44b1b
JB
4607/* The simplest copy function. Many instructions have the same effect no
4608 matter what address they are executed at: in those cases, use this. */
67255d04 4609
cca44b1b 4610static int
7ff120b4 4611arm_copy_unmodified (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 4612 const char *iname, arm_displaced_step_closure *dsc)
cca44b1b
JB
4613{
4614 if (debug_displaced)
4615 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx, "
4616 "opcode/class '%s' unmodified\n", (unsigned long) insn,
4617 iname);
67255d04 4618
cca44b1b 4619 dsc->modinsn[0] = insn;
67255d04 4620
cca44b1b
JB
4621 return 0;
4622}
4623
34518530
YQ
4624static int
4625thumb_copy_unmodified_32bit (struct gdbarch *gdbarch, uint16_t insn1,
4626 uint16_t insn2, const char *iname,
cfba9872 4627 arm_displaced_step_closure *dsc)
34518530
YQ
4628{
4629 if (debug_displaced)
4630 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x %.4x, "
4631 "opcode/class '%s' unmodified\n", insn1, insn2,
4632 iname);
4633
4634 dsc->modinsn[0] = insn1;
4635 dsc->modinsn[1] = insn2;
4636 dsc->numinsns = 2;
4637
4638 return 0;
4639}
4640
4641/* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
4642 modification. */
4643static int
615234c1 4644thumb_copy_unmodified_16bit (struct gdbarch *gdbarch, uint16_t insn,
34518530 4645 const char *iname,
cfba9872 4646 arm_displaced_step_closure *dsc)
34518530
YQ
4647{
4648 if (debug_displaced)
4649 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x, "
4650 "opcode/class '%s' unmodified\n", insn,
4651 iname);
4652
4653 dsc->modinsn[0] = insn;
4654
4655 return 0;
4656}
4657
cca44b1b
JB
4658/* Preload instructions with immediate offset. */
4659
4660static void
6e39997a 4661cleanup_preload (struct gdbarch *gdbarch,
cfba9872 4662 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
4663{
4664 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
4665 if (!dsc->u.preload.immed)
4666 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
4667}
4668
7ff120b4
YQ
4669static void
4670install_preload (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4671 arm_displaced_step_closure *dsc, unsigned int rn)
cca44b1b 4672{
cca44b1b 4673 ULONGEST rn_val;
cca44b1b
JB
4674 /* Preload instructions:
4675
4676 {pli/pld} [rn, #+/-imm]
4677 ->
4678 {pli/pld} [r0, #+/-imm]. */
4679
36073a92
YQ
4680 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4681 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 4682 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
cca44b1b
JB
4683 dsc->u.preload.immed = 1;
4684
cca44b1b 4685 dsc->cleanup = &cleanup_preload;
cca44b1b
JB
4686}
4687
cca44b1b 4688static int
7ff120b4 4689arm_copy_preload (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 4690 arm_displaced_step_closure *dsc)
cca44b1b
JB
4691{
4692 unsigned int rn = bits (insn, 16, 19);
cca44b1b 4693
7ff120b4
YQ
4694 if (!insn_references_pc (insn, 0x000f0000ul))
4695 return arm_copy_unmodified (gdbarch, insn, "preload", dsc);
cca44b1b
JB
4696
4697 if (debug_displaced)
4698 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
4699 (unsigned long) insn);
4700
7ff120b4
YQ
4701 dsc->modinsn[0] = insn & 0xfff0ffff;
4702
4703 install_preload (gdbarch, regs, dsc, rn);
4704
4705 return 0;
4706}
4707
34518530
YQ
4708static int
4709thumb2_copy_preload (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
cfba9872 4710 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
4711{
4712 unsigned int rn = bits (insn1, 0, 3);
4713 unsigned int u_bit = bit (insn1, 7);
4714 int imm12 = bits (insn2, 0, 11);
4715 ULONGEST pc_val;
4716
4717 if (rn != ARM_PC_REGNUM)
4718 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "preload", dsc);
4719
4720 /* PC is only allowed to use in PLI (immediate,literal) Encoding T3, and
4721 PLD (literal) Encoding T1. */
4722 if (debug_displaced)
4723 fprintf_unfiltered (gdb_stdlog,
4724 "displaced: copying pld/pli pc (0x%x) %c imm12 %.4x\n",
4725 (unsigned int) dsc->insn_addr, u_bit ? '+' : '-',
4726 imm12);
4727
4728 if (!u_bit)
4729 imm12 = -1 * imm12;
4730
4731 /* Rewrite instruction {pli/pld} PC imm12 into:
4732 Prepare: tmp[0] <- r0, tmp[1] <- r1, r0 <- pc, r1 <- imm12
4733
4734 {pli/pld} [r0, r1]
4735
4736 Cleanup: r0 <- tmp[0], r1 <- tmp[1]. */
4737
4738 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4739 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
4740
4741 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
4742
4743 displaced_write_reg (regs, dsc, 0, pc_val, CANNOT_WRITE_PC);
4744 displaced_write_reg (regs, dsc, 1, imm12, CANNOT_WRITE_PC);
4745 dsc->u.preload.immed = 0;
4746
4747 /* {pli/pld} [r0, r1] */
4748 dsc->modinsn[0] = insn1 & 0xfff0;
4749 dsc->modinsn[1] = 0xf001;
4750 dsc->numinsns = 2;
4751
4752 dsc->cleanup = &cleanup_preload;
4753 return 0;
4754}
4755
7ff120b4
YQ
4756/* Preload instructions with register offset. */
4757
4758static void
4759install_preload_reg(struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4760 arm_displaced_step_closure *dsc, unsigned int rn,
7ff120b4
YQ
4761 unsigned int rm)
4762{
4763 ULONGEST rn_val, rm_val;
4764
cca44b1b
JB
4765 /* Preload register-offset instructions:
4766
4767 {pli/pld} [rn, rm {, shift}]
4768 ->
4769 {pli/pld} [r0, r1 {, shift}]. */
4770
36073a92
YQ
4771 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4772 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
4773 rn_val = displaced_read_reg (regs, dsc, rn);
4774 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
4775 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
4776 displaced_write_reg (regs, dsc, 1, rm_val, CANNOT_WRITE_PC);
cca44b1b
JB
4777 dsc->u.preload.immed = 0;
4778
cca44b1b 4779 dsc->cleanup = &cleanup_preload;
7ff120b4
YQ
4780}
4781
4782static int
4783arm_copy_preload_reg (struct gdbarch *gdbarch, uint32_t insn,
4784 struct regcache *regs,
cfba9872 4785 arm_displaced_step_closure *dsc)
7ff120b4
YQ
4786{
4787 unsigned int rn = bits (insn, 16, 19);
4788 unsigned int rm = bits (insn, 0, 3);
4789
4790
4791 if (!insn_references_pc (insn, 0x000f000ful))
4792 return arm_copy_unmodified (gdbarch, insn, "preload reg", dsc);
4793
4794 if (debug_displaced)
4795 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
4796 (unsigned long) insn);
4797
4798 dsc->modinsn[0] = (insn & 0xfff0fff0) | 0x1;
cca44b1b 4799
7ff120b4 4800 install_preload_reg (gdbarch, regs, dsc, rn, rm);
cca44b1b
JB
4801 return 0;
4802}
4803
4804/* Copy/cleanup coprocessor load and store instructions. */
4805
4806static void
6e39997a 4807cleanup_copro_load_store (struct gdbarch *gdbarch,
cca44b1b 4808 struct regcache *regs,
cfba9872 4809 arm_displaced_step_closure *dsc)
cca44b1b 4810{
36073a92 4811 ULONGEST rn_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
4812
4813 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
4814
4815 if (dsc->u.ldst.writeback)
4816 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, LOAD_WRITE_PC);
4817}
4818
7ff120b4
YQ
4819static void
4820install_copro_load_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4821 arm_displaced_step_closure *dsc,
7ff120b4 4822 int writeback, unsigned int rn)
cca44b1b 4823{
cca44b1b 4824 ULONGEST rn_val;
cca44b1b 4825
cca44b1b
JB
4826 /* Coprocessor load/store instructions:
4827
4828 {stc/stc2} [<Rn>, #+/-imm] (and other immediate addressing modes)
4829 ->
4830 {stc/stc2} [r0, #+/-imm].
4831
4832 ldc/ldc2 are handled identically. */
4833
36073a92
YQ
4834 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4835 rn_val = displaced_read_reg (regs, dsc, rn);
2b16b2e3
YQ
4836 /* PC should be 4-byte aligned. */
4837 rn_val = rn_val & 0xfffffffc;
cca44b1b
JB
4838 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
4839
7ff120b4 4840 dsc->u.ldst.writeback = writeback;
cca44b1b
JB
4841 dsc->u.ldst.rn = rn;
4842
7ff120b4
YQ
4843 dsc->cleanup = &cleanup_copro_load_store;
4844}
4845
4846static int
4847arm_copy_copro_load_store (struct gdbarch *gdbarch, uint32_t insn,
4848 struct regcache *regs,
cfba9872 4849 arm_displaced_step_closure *dsc)
7ff120b4
YQ
4850{
4851 unsigned int rn = bits (insn, 16, 19);
4852
4853 if (!insn_references_pc (insn, 0x000f0000ul))
4854 return arm_copy_unmodified (gdbarch, insn, "copro load/store", dsc);
4855
4856 if (debug_displaced)
4857 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
4858 "load/store insn %.8lx\n", (unsigned long) insn);
4859
cca44b1b
JB
4860 dsc->modinsn[0] = insn & 0xfff0ffff;
4861
7ff120b4 4862 install_copro_load_store (gdbarch, regs, dsc, bit (insn, 25), rn);
cca44b1b
JB
4863
4864 return 0;
4865}
4866
34518530
YQ
4867static int
4868thumb2_copy_copro_load_store (struct gdbarch *gdbarch, uint16_t insn1,
4869 uint16_t insn2, struct regcache *regs,
cfba9872 4870 arm_displaced_step_closure *dsc)
34518530
YQ
4871{
4872 unsigned int rn = bits (insn1, 0, 3);
4873
4874 if (rn != ARM_PC_REGNUM)
4875 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
4876 "copro load/store", dsc);
4877
4878 if (debug_displaced)
4879 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
4880 "load/store insn %.4x%.4x\n", insn1, insn2);
4881
4882 dsc->modinsn[0] = insn1 & 0xfff0;
4883 dsc->modinsn[1] = insn2;
4884 dsc->numinsns = 2;
4885
4886 /* This function is called for copying instruction LDC/LDC2/VLDR, which
4887 doesn't support writeback, so pass 0. */
4888 install_copro_load_store (gdbarch, regs, dsc, 0, rn);
4889
4890 return 0;
4891}
4892
cca44b1b
JB
4893/* Clean up branch instructions (actually perform the branch, by setting
4894 PC). */
4895
4896static void
6e39997a 4897cleanup_branch (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4898 arm_displaced_step_closure *dsc)
cca44b1b 4899{
36073a92 4900 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
4901 int branch_taken = condition_true (dsc->u.branch.cond, status);
4902 enum pc_write_style write_pc = dsc->u.branch.exchange
4903 ? BX_WRITE_PC : BRANCH_WRITE_PC;
4904
4905 if (!branch_taken)
4906 return;
4907
4908 if (dsc->u.branch.link)
4909 {
8c8dba6d
YQ
4910 /* The value of LR should be the next insn of current one. In order
4911 not to confuse logic hanlding later insn `bx lr', if current insn mode
4912 is Thumb, the bit 0 of LR value should be set to 1. */
4913 ULONGEST next_insn_addr = dsc->insn_addr + dsc->insn_size;
4914
4915 if (dsc->is_thumb)
4916 next_insn_addr |= 0x1;
4917
4918 displaced_write_reg (regs, dsc, ARM_LR_REGNUM, next_insn_addr,
4919 CANNOT_WRITE_PC);
cca44b1b
JB
4920 }
4921
bf9f652a 4922 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->u.branch.dest, write_pc);
cca44b1b
JB
4923}
4924
4925/* Copy B/BL/BLX instructions with immediate destinations. */
4926
7ff120b4
YQ
4927static void
4928install_b_bl_blx (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4929 arm_displaced_step_closure *dsc,
7ff120b4
YQ
4930 unsigned int cond, int exchange, int link, long offset)
4931{
4932 /* Implement "BL<cond> <label>" as:
4933
4934 Preparation: cond <- instruction condition
4935 Insn: mov r0, r0 (nop)
4936 Cleanup: if (condition true) { r14 <- pc; pc <- label }.
4937
4938 B<cond> similar, but don't set r14 in cleanup. */
4939
4940 dsc->u.branch.cond = cond;
4941 dsc->u.branch.link = link;
4942 dsc->u.branch.exchange = exchange;
4943
2b16b2e3
YQ
4944 dsc->u.branch.dest = dsc->insn_addr;
4945 if (link && exchange)
4946 /* For BLX, offset is computed from the Align (PC, 4). */
4947 dsc->u.branch.dest = dsc->u.branch.dest & 0xfffffffc;
4948
7ff120b4 4949 if (dsc->is_thumb)
2b16b2e3 4950 dsc->u.branch.dest += 4 + offset;
7ff120b4 4951 else
2b16b2e3 4952 dsc->u.branch.dest += 8 + offset;
7ff120b4
YQ
4953
4954 dsc->cleanup = &cleanup_branch;
4955}
cca44b1b 4956static int
7ff120b4 4957arm_copy_b_bl_blx (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 4958 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
4959{
4960 unsigned int cond = bits (insn, 28, 31);
4961 int exchange = (cond == 0xf);
4962 int link = exchange || bit (insn, 24);
cca44b1b
JB
4963 long offset;
4964
4965 if (debug_displaced)
4966 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s immediate insn "
4967 "%.8lx\n", (exchange) ? "blx" : (link) ? "bl" : "b",
4968 (unsigned long) insn);
cca44b1b
JB
4969 if (exchange)
4970 /* For BLX, set bit 0 of the destination. The cleanup_branch function will
4971 then arrange the switch into Thumb mode. */
4972 offset = (bits (insn, 0, 23) << 2) | (bit (insn, 24) << 1) | 1;
4973 else
4974 offset = bits (insn, 0, 23) << 2;
4975
4976 if (bit (offset, 25))
4977 offset = offset | ~0x3ffffff;
4978
cca44b1b
JB
4979 dsc->modinsn[0] = ARM_NOP;
4980
7ff120b4 4981 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
cca44b1b
JB
4982 return 0;
4983}
4984
34518530
YQ
4985static int
4986thumb2_copy_b_bl_blx (struct gdbarch *gdbarch, uint16_t insn1,
4987 uint16_t insn2, struct regcache *regs,
cfba9872 4988 arm_displaced_step_closure *dsc)
34518530
YQ
4989{
4990 int link = bit (insn2, 14);
4991 int exchange = link && !bit (insn2, 12);
4992 int cond = INST_AL;
4993 long offset = 0;
4994 int j1 = bit (insn2, 13);
4995 int j2 = bit (insn2, 11);
4996 int s = sbits (insn1, 10, 10);
4997 int i1 = !(j1 ^ bit (insn1, 10));
4998 int i2 = !(j2 ^ bit (insn1, 10));
4999
5000 if (!link && !exchange) /* B */
5001 {
5002 offset = (bits (insn2, 0, 10) << 1);
5003 if (bit (insn2, 12)) /* Encoding T4 */
5004 {
5005 offset |= (bits (insn1, 0, 9) << 12)
5006 | (i2 << 22)
5007 | (i1 << 23)
5008 | (s << 24);
5009 cond = INST_AL;
5010 }
5011 else /* Encoding T3 */
5012 {
5013 offset |= (bits (insn1, 0, 5) << 12)
5014 | (j1 << 18)
5015 | (j2 << 19)
5016 | (s << 20);
5017 cond = bits (insn1, 6, 9);
5018 }
5019 }
5020 else
5021 {
5022 offset = (bits (insn1, 0, 9) << 12);
5023 offset |= ((i2 << 22) | (i1 << 23) | (s << 24));
5024 offset |= exchange ?
5025 (bits (insn2, 1, 10) << 2) : (bits (insn2, 0, 10) << 1);
5026 }
5027
5028 if (debug_displaced)
5029 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s insn "
5030 "%.4x %.4x with offset %.8lx\n",
5031 link ? (exchange) ? "blx" : "bl" : "b",
5032 insn1, insn2, offset);
5033
5034 dsc->modinsn[0] = THUMB_NOP;
5035
5036 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
5037 return 0;
5038}
5039
5040/* Copy B Thumb instructions. */
5041static int
615234c1 5042thumb_copy_b (struct gdbarch *gdbarch, uint16_t insn,
cfba9872 5043 arm_displaced_step_closure *dsc)
34518530
YQ
5044{
5045 unsigned int cond = 0;
5046 int offset = 0;
5047 unsigned short bit_12_15 = bits (insn, 12, 15);
5048 CORE_ADDR from = dsc->insn_addr;
5049
5050 if (bit_12_15 == 0xd)
5051 {
5052 /* offset = SignExtend (imm8:0, 32) */
5053 offset = sbits ((insn << 1), 0, 8);
5054 cond = bits (insn, 8, 11);
5055 }
5056 else if (bit_12_15 == 0xe) /* Encoding T2 */
5057 {
5058 offset = sbits ((insn << 1), 0, 11);
5059 cond = INST_AL;
5060 }
5061
5062 if (debug_displaced)
5063 fprintf_unfiltered (gdb_stdlog,
5064 "displaced: copying b immediate insn %.4x "
5065 "with offset %d\n", insn, offset);
5066
5067 dsc->u.branch.cond = cond;
5068 dsc->u.branch.link = 0;
5069 dsc->u.branch.exchange = 0;
5070 dsc->u.branch.dest = from + 4 + offset;
5071
5072 dsc->modinsn[0] = THUMB_NOP;
5073
5074 dsc->cleanup = &cleanup_branch;
5075
5076 return 0;
5077}
5078
cca44b1b
JB
5079/* Copy BX/BLX with register-specified destinations. */
5080
7ff120b4
YQ
5081static void
5082install_bx_blx_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5083 arm_displaced_step_closure *dsc, int link,
7ff120b4 5084 unsigned int cond, unsigned int rm)
cca44b1b 5085{
cca44b1b
JB
5086 /* Implement {BX,BLX}<cond> <reg>" as:
5087
5088 Preparation: cond <- instruction condition
5089 Insn: mov r0, r0 (nop)
5090 Cleanup: if (condition true) { r14 <- pc; pc <- dest; }.
5091
5092 Don't set r14 in cleanup for BX. */
5093
36073a92 5094 dsc->u.branch.dest = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5095
5096 dsc->u.branch.cond = cond;
5097 dsc->u.branch.link = link;
cca44b1b 5098
7ff120b4 5099 dsc->u.branch.exchange = 1;
cca44b1b
JB
5100
5101 dsc->cleanup = &cleanup_branch;
7ff120b4 5102}
cca44b1b 5103
7ff120b4
YQ
5104static int
5105arm_copy_bx_blx_reg (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 5106 struct regcache *regs, arm_displaced_step_closure *dsc)
7ff120b4
YQ
5107{
5108 unsigned int cond = bits (insn, 28, 31);
5109 /* BX: x12xxx1x
5110 BLX: x12xxx3x. */
5111 int link = bit (insn, 5);
5112 unsigned int rm = bits (insn, 0, 3);
5113
5114 if (debug_displaced)
5115 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx",
5116 (unsigned long) insn);
5117
5118 dsc->modinsn[0] = ARM_NOP;
5119
5120 install_bx_blx_reg (gdbarch, regs, dsc, link, cond, rm);
cca44b1b
JB
5121 return 0;
5122}
5123
34518530
YQ
5124static int
5125thumb_copy_bx_blx_reg (struct gdbarch *gdbarch, uint16_t insn,
5126 struct regcache *regs,
cfba9872 5127 arm_displaced_step_closure *dsc)
34518530
YQ
5128{
5129 int link = bit (insn, 7);
5130 unsigned int rm = bits (insn, 3, 6);
5131
5132 if (debug_displaced)
5133 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x",
5134 (unsigned short) insn);
5135
5136 dsc->modinsn[0] = THUMB_NOP;
5137
5138 install_bx_blx_reg (gdbarch, regs, dsc, link, INST_AL, rm);
5139
5140 return 0;
5141}
5142
5143
0963b4bd 5144/* Copy/cleanup arithmetic/logic instruction with immediate RHS. */
cca44b1b
JB
5145
5146static void
6e39997a 5147cleanup_alu_imm (struct gdbarch *gdbarch,
cfba9872 5148 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b 5149{
36073a92 5150 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5151 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5152 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5153 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5154}
5155
5156static int
7ff120b4 5157arm_copy_alu_imm (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 5158 arm_displaced_step_closure *dsc)
cca44b1b
JB
5159{
5160 unsigned int rn = bits (insn, 16, 19);
5161 unsigned int rd = bits (insn, 12, 15);
5162 unsigned int op = bits (insn, 21, 24);
5163 int is_mov = (op == 0xd);
5164 ULONGEST rd_val, rn_val;
cca44b1b
JB
5165
5166 if (!insn_references_pc (insn, 0x000ff000ul))
7ff120b4 5167 return arm_copy_unmodified (gdbarch, insn, "ALU immediate", dsc);
cca44b1b
JB
5168
5169 if (debug_displaced)
5170 fprintf_unfiltered (gdb_stdlog, "displaced: copying immediate %s insn "
5171 "%.8lx\n", is_mov ? "move" : "ALU",
5172 (unsigned long) insn);
5173
5174 /* Instruction is of form:
5175
5176 <op><cond> rd, [rn,] #imm
5177
5178 Rewrite as:
5179
5180 Preparation: tmp1, tmp2 <- r0, r1;
5181 r0, r1 <- rd, rn
5182 Insn: <op><cond> r0, r1, #imm
5183 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5184 */
5185
36073a92
YQ
5186 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5187 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5188 rn_val = displaced_read_reg (regs, dsc, rn);
5189 rd_val = displaced_read_reg (regs, dsc, rd);
cca44b1b
JB
5190 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5191 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5192 dsc->rd = rd;
5193
5194 if (is_mov)
5195 dsc->modinsn[0] = insn & 0xfff00fff;
5196 else
5197 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x10000;
5198
5199 dsc->cleanup = &cleanup_alu_imm;
5200
5201 return 0;
5202}
5203
34518530
YQ
5204static int
5205thumb2_copy_alu_imm (struct gdbarch *gdbarch, uint16_t insn1,
5206 uint16_t insn2, struct regcache *regs,
cfba9872 5207 arm_displaced_step_closure *dsc)
34518530
YQ
5208{
5209 unsigned int op = bits (insn1, 5, 8);
5210 unsigned int rn, rm, rd;
5211 ULONGEST rd_val, rn_val;
5212
5213 rn = bits (insn1, 0, 3); /* Rn */
5214 rm = bits (insn2, 0, 3); /* Rm */
5215 rd = bits (insn2, 8, 11); /* Rd */
5216
5217 /* This routine is only called for instruction MOV. */
5218 gdb_assert (op == 0x2 && rn == 0xf);
5219
5220 if (rm != ARM_PC_REGNUM && rd != ARM_PC_REGNUM)
5221 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ALU imm", dsc);
5222
5223 if (debug_displaced)
5224 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.4x%.4x\n",
5225 "ALU", insn1, insn2);
5226
5227 /* Instruction is of form:
5228
5229 <op><cond> rd, [rn,] #imm
5230
5231 Rewrite as:
5232
5233 Preparation: tmp1, tmp2 <- r0, r1;
5234 r0, r1 <- rd, rn
5235 Insn: <op><cond> r0, r1, #imm
5236 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5237 */
5238
5239 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5240 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5241 rn_val = displaced_read_reg (regs, dsc, rn);
5242 rd_val = displaced_read_reg (regs, dsc, rd);
5243 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5244 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5245 dsc->rd = rd;
5246
5247 dsc->modinsn[0] = insn1;
5248 dsc->modinsn[1] = ((insn2 & 0xf0f0) | 0x1);
5249 dsc->numinsns = 2;
5250
5251 dsc->cleanup = &cleanup_alu_imm;
5252
5253 return 0;
5254}
5255
cca44b1b
JB
5256/* Copy/cleanup arithmetic/logic insns with register RHS. */
5257
5258static void
6e39997a 5259cleanup_alu_reg (struct gdbarch *gdbarch,
cfba9872 5260 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
5261{
5262 ULONGEST rd_val;
5263 int i;
5264
36073a92 5265 rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5266
5267 for (i = 0; i < 3; i++)
5268 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
5269
5270 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5271}
5272
7ff120b4
YQ
5273static void
5274install_alu_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5275 arm_displaced_step_closure *dsc,
7ff120b4 5276 unsigned int rd, unsigned int rn, unsigned int rm)
cca44b1b 5277{
cca44b1b 5278 ULONGEST rd_val, rn_val, rm_val;
cca44b1b 5279
cca44b1b
JB
5280 /* Instruction is of form:
5281
5282 <op><cond> rd, [rn,] rm [, <shift>]
5283
5284 Rewrite as:
5285
5286 Preparation: tmp1, tmp2, tmp3 <- r0, r1, r2;
5287 r0, r1, r2 <- rd, rn, rm
ef713951 5288 Insn: <op><cond> r0, [r1,] r2 [, <shift>]
cca44b1b
JB
5289 Cleanup: rd <- r0; r0, r1, r2 <- tmp1, tmp2, tmp3
5290 */
5291
36073a92
YQ
5292 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5293 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5294 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
5295 rd_val = displaced_read_reg (regs, dsc, rd);
5296 rn_val = displaced_read_reg (regs, dsc, rn);
5297 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5298 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5299 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5300 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
5301 dsc->rd = rd;
5302
7ff120b4
YQ
5303 dsc->cleanup = &cleanup_alu_reg;
5304}
5305
5306static int
5307arm_copy_alu_reg (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 5308 arm_displaced_step_closure *dsc)
7ff120b4
YQ
5309{
5310 unsigned int op = bits (insn, 21, 24);
5311 int is_mov = (op == 0xd);
5312
5313 if (!insn_references_pc (insn, 0x000ff00ful))
5314 return arm_copy_unmodified (gdbarch, insn, "ALU reg", dsc);
5315
5316 if (debug_displaced)
5317 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.8lx\n",
5318 is_mov ? "move" : "ALU", (unsigned long) insn);
5319
cca44b1b
JB
5320 if (is_mov)
5321 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x2;
5322 else
5323 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x10002;
5324
7ff120b4
YQ
5325 install_alu_reg (gdbarch, regs, dsc, bits (insn, 12, 15), bits (insn, 16, 19),
5326 bits (insn, 0, 3));
cca44b1b
JB
5327 return 0;
5328}
5329
34518530
YQ
5330static int
5331thumb_copy_alu_reg (struct gdbarch *gdbarch, uint16_t insn,
5332 struct regcache *regs,
cfba9872 5333 arm_displaced_step_closure *dsc)
34518530 5334{
ef713951 5335 unsigned rm, rd;
34518530 5336
ef713951
YQ
5337 rm = bits (insn, 3, 6);
5338 rd = (bit (insn, 7) << 3) | bits (insn, 0, 2);
34518530 5339
ef713951 5340 if (rd != ARM_PC_REGNUM && rm != ARM_PC_REGNUM)
34518530
YQ
5341 return thumb_copy_unmodified_16bit (gdbarch, insn, "ALU reg", dsc);
5342
5343 if (debug_displaced)
ef713951
YQ
5344 fprintf_unfiltered (gdb_stdlog, "displaced: copying ALU reg insn %.4x\n",
5345 (unsigned short) insn);
34518530 5346
ef713951 5347 dsc->modinsn[0] = ((insn & 0xff00) | 0x10);
34518530 5348
ef713951 5349 install_alu_reg (gdbarch, regs, dsc, rd, rd, rm);
34518530
YQ
5350
5351 return 0;
5352}
5353
cca44b1b
JB
5354/* Cleanup/copy arithmetic/logic insns with shifted register RHS. */
5355
5356static void
6e39997a 5357cleanup_alu_shifted_reg (struct gdbarch *gdbarch,
cca44b1b 5358 struct regcache *regs,
cfba9872 5359 arm_displaced_step_closure *dsc)
cca44b1b 5360{
36073a92 5361 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5362 int i;
5363
5364 for (i = 0; i < 4; i++)
5365 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
5366
5367 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5368}
5369
7ff120b4
YQ
5370static void
5371install_alu_shifted_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5372 arm_displaced_step_closure *dsc,
7ff120b4
YQ
5373 unsigned int rd, unsigned int rn, unsigned int rm,
5374 unsigned rs)
cca44b1b 5375{
7ff120b4 5376 int i;
cca44b1b 5377 ULONGEST rd_val, rn_val, rm_val, rs_val;
cca44b1b 5378
cca44b1b
JB
5379 /* Instruction is of form:
5380
5381 <op><cond> rd, [rn,] rm, <shift> rs
5382
5383 Rewrite as:
5384
5385 Preparation: tmp1, tmp2, tmp3, tmp4 <- r0, r1, r2, r3
5386 r0, r1, r2, r3 <- rd, rn, rm, rs
5387 Insn: <op><cond> r0, r1, r2, <shift> r3
5388 Cleanup: tmp5 <- r0
5389 r0, r1, r2, r3 <- tmp1, tmp2, tmp3, tmp4
5390 rd <- tmp5
5391 */
5392
5393 for (i = 0; i < 4; i++)
36073a92 5394 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
cca44b1b 5395
36073a92
YQ
5396 rd_val = displaced_read_reg (regs, dsc, rd);
5397 rn_val = displaced_read_reg (regs, dsc, rn);
5398 rm_val = displaced_read_reg (regs, dsc, rm);
5399 rs_val = displaced_read_reg (regs, dsc, rs);
cca44b1b
JB
5400 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5401 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5402 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
5403 displaced_write_reg (regs, dsc, 3, rs_val, CANNOT_WRITE_PC);
5404 dsc->rd = rd;
7ff120b4
YQ
5405 dsc->cleanup = &cleanup_alu_shifted_reg;
5406}
5407
5408static int
5409arm_copy_alu_shifted_reg (struct gdbarch *gdbarch, uint32_t insn,
5410 struct regcache *regs,
cfba9872 5411 arm_displaced_step_closure *dsc)
7ff120b4
YQ
5412{
5413 unsigned int op = bits (insn, 21, 24);
5414 int is_mov = (op == 0xd);
5415 unsigned int rd, rn, rm, rs;
5416
5417 if (!insn_references_pc (insn, 0x000fff0ful))
5418 return arm_copy_unmodified (gdbarch, insn, "ALU shifted reg", dsc);
5419
5420 if (debug_displaced)
5421 fprintf_unfiltered (gdb_stdlog, "displaced: copying shifted reg %s insn "
5422 "%.8lx\n", is_mov ? "move" : "ALU",
5423 (unsigned long) insn);
5424
5425 rn = bits (insn, 16, 19);
5426 rm = bits (insn, 0, 3);
5427 rs = bits (insn, 8, 11);
5428 rd = bits (insn, 12, 15);
cca44b1b
JB
5429
5430 if (is_mov)
5431 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x302;
5432 else
5433 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x10302;
5434
7ff120b4 5435 install_alu_shifted_reg (gdbarch, regs, dsc, rd, rn, rm, rs);
cca44b1b
JB
5436
5437 return 0;
5438}
5439
5440/* Clean up load instructions. */
5441
5442static void
6e39997a 5443cleanup_load (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5444 arm_displaced_step_closure *dsc)
cca44b1b
JB
5445{
5446 ULONGEST rt_val, rt_val2 = 0, rn_val;
cca44b1b 5447
36073a92 5448 rt_val = displaced_read_reg (regs, dsc, 0);
cca44b1b 5449 if (dsc->u.ldst.xfersize == 8)
36073a92
YQ
5450 rt_val2 = displaced_read_reg (regs, dsc, 1);
5451 rn_val = displaced_read_reg (regs, dsc, 2);
cca44b1b
JB
5452
5453 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5454 if (dsc->u.ldst.xfersize > 4)
5455 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5456 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
5457 if (!dsc->u.ldst.immed)
5458 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
5459
5460 /* Handle register writeback. */
5461 if (dsc->u.ldst.writeback)
5462 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
5463 /* Put result in right place. */
5464 displaced_write_reg (regs, dsc, dsc->rd, rt_val, LOAD_WRITE_PC);
5465 if (dsc->u.ldst.xfersize == 8)
5466 displaced_write_reg (regs, dsc, dsc->rd + 1, rt_val2, LOAD_WRITE_PC);
5467}
5468
5469/* Clean up store instructions. */
5470
5471static void
6e39997a 5472cleanup_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5473 arm_displaced_step_closure *dsc)
cca44b1b 5474{
36073a92 5475 ULONGEST rn_val = displaced_read_reg (regs, dsc, 2);
cca44b1b
JB
5476
5477 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5478 if (dsc->u.ldst.xfersize > 4)
5479 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5480 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
5481 if (!dsc->u.ldst.immed)
5482 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
5483 if (!dsc->u.ldst.restore_r4)
5484 displaced_write_reg (regs, dsc, 4, dsc->tmp[4], CANNOT_WRITE_PC);
5485
5486 /* Writeback. */
5487 if (dsc->u.ldst.writeback)
5488 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
5489}
5490
5491/* Copy "extra" load/store instructions. These are halfword/doubleword
5492 transfers, which have a different encoding to byte/word transfers. */
5493
5494static int
550dc4e2 5495arm_copy_extra_ld_st (struct gdbarch *gdbarch, uint32_t insn, int unprivileged,
cfba9872 5496 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
5497{
5498 unsigned int op1 = bits (insn, 20, 24);
5499 unsigned int op2 = bits (insn, 5, 6);
5500 unsigned int rt = bits (insn, 12, 15);
5501 unsigned int rn = bits (insn, 16, 19);
5502 unsigned int rm = bits (insn, 0, 3);
5503 char load[12] = {0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1};
5504 char bytesize[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2};
5505 int immed = (op1 & 0x4) != 0;
5506 int opcode;
5507 ULONGEST rt_val, rt_val2 = 0, rn_val, rm_val = 0;
cca44b1b
JB
5508
5509 if (!insn_references_pc (insn, 0x000ff00ful))
7ff120b4 5510 return arm_copy_unmodified (gdbarch, insn, "extra load/store", dsc);
cca44b1b
JB
5511
5512 if (debug_displaced)
5513 fprintf_unfiltered (gdb_stdlog, "displaced: copying %sextra load/store "
550dc4e2 5514 "insn %.8lx\n", unprivileged ? "unprivileged " : "",
cca44b1b
JB
5515 (unsigned long) insn);
5516
5517 opcode = ((op2 << 2) | (op1 & 0x1) | ((op1 & 0x4) >> 1)) - 4;
5518
5519 if (opcode < 0)
5520 internal_error (__FILE__, __LINE__,
5521 _("copy_extra_ld_st: instruction decode error"));
5522
36073a92
YQ
5523 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5524 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5525 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
cca44b1b 5526 if (!immed)
36073a92 5527 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
cca44b1b 5528
36073a92 5529 rt_val = displaced_read_reg (regs, dsc, rt);
cca44b1b 5530 if (bytesize[opcode] == 8)
36073a92
YQ
5531 rt_val2 = displaced_read_reg (regs, dsc, rt + 1);
5532 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 5533 if (!immed)
36073a92 5534 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5535
5536 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
5537 if (bytesize[opcode] == 8)
5538 displaced_write_reg (regs, dsc, 1, rt_val2, CANNOT_WRITE_PC);
5539 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
5540 if (!immed)
5541 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
5542
5543 dsc->rd = rt;
5544 dsc->u.ldst.xfersize = bytesize[opcode];
5545 dsc->u.ldst.rn = rn;
5546 dsc->u.ldst.immed = immed;
5547 dsc->u.ldst.writeback = bit (insn, 24) == 0 || bit (insn, 21) != 0;
5548 dsc->u.ldst.restore_r4 = 0;
5549
5550 if (immed)
5551 /* {ldr,str}<width><cond> rt, [rt2,] [rn, #imm]
5552 ->
5553 {ldr,str}<width><cond> r0, [r1,] [r2, #imm]. */
5554 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
5555 else
5556 /* {ldr,str}<width><cond> rt, [rt2,] [rn, +/-rm]
5557 ->
5558 {ldr,str}<width><cond> r0, [r1,] [r2, +/-r3]. */
5559 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
5560
5561 dsc->cleanup = load[opcode] ? &cleanup_load : &cleanup_store;
5562
5563 return 0;
5564}
5565
0f6f04ba 5566/* Copy byte/half word/word loads and stores. */
cca44b1b 5567
7ff120b4 5568static void
0f6f04ba 5569install_load_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5570 arm_displaced_step_closure *dsc, int load,
0f6f04ba
YQ
5571 int immed, int writeback, int size, int usermode,
5572 int rt, int rm, int rn)
cca44b1b 5573{
cca44b1b 5574 ULONGEST rt_val, rn_val, rm_val = 0;
cca44b1b 5575
36073a92
YQ
5576 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5577 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
cca44b1b 5578 if (!immed)
36073a92 5579 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
cca44b1b 5580 if (!load)
36073a92 5581 dsc->tmp[4] = displaced_read_reg (regs, dsc, 4);
cca44b1b 5582
36073a92
YQ
5583 rt_val = displaced_read_reg (regs, dsc, rt);
5584 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 5585 if (!immed)
36073a92 5586 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5587
5588 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
5589 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
5590 if (!immed)
5591 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
cca44b1b 5592 dsc->rd = rt;
0f6f04ba 5593 dsc->u.ldst.xfersize = size;
cca44b1b
JB
5594 dsc->u.ldst.rn = rn;
5595 dsc->u.ldst.immed = immed;
7ff120b4 5596 dsc->u.ldst.writeback = writeback;
cca44b1b
JB
5597
5598 /* To write PC we can do:
5599
494e194e
YQ
5600 Before this sequence of instructions:
5601 r0 is the PC value got from displaced_read_reg, so r0 = from + 8;
5602 r2 is the Rn value got from dispalced_read_reg.
5603
5604 Insn1: push {pc} Write address of STR instruction + offset on stack
5605 Insn2: pop {r4} Read it back from stack, r4 = addr(Insn1) + offset
5606 Insn3: sub r4, r4, pc r4 = addr(Insn1) + offset - pc
5607 = addr(Insn1) + offset - addr(Insn3) - 8
5608 = offset - 16
5609 Insn4: add r4, r4, #8 r4 = offset - 8
5610 Insn5: add r0, r0, r4 r0 = from + 8 + offset - 8
5611 = from + offset
5612 Insn6: str r0, [r2, #imm] (or str r0, [r2, r3])
cca44b1b
JB
5613
5614 Otherwise we don't know what value to write for PC, since the offset is
494e194e
YQ
5615 architecture-dependent (sometimes PC+8, sometimes PC+12). More details
5616 of this can be found in Section "Saving from r15" in
5617 http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
cca44b1b 5618
7ff120b4
YQ
5619 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
5620}
5621
34518530
YQ
5622
5623static int
5624thumb2_copy_load_literal (struct gdbarch *gdbarch, uint16_t insn1,
5625 uint16_t insn2, struct regcache *regs,
cfba9872 5626 arm_displaced_step_closure *dsc, int size)
34518530
YQ
5627{
5628 unsigned int u_bit = bit (insn1, 7);
5629 unsigned int rt = bits (insn2, 12, 15);
5630 int imm12 = bits (insn2, 0, 11);
5631 ULONGEST pc_val;
5632
5633 if (debug_displaced)
5634 fprintf_unfiltered (gdb_stdlog,
5635 "displaced: copying ldr pc (0x%x) R%d %c imm12 %.4x\n",
5636 (unsigned int) dsc->insn_addr, rt, u_bit ? '+' : '-',
5637 imm12);
5638
5639 if (!u_bit)
5640 imm12 = -1 * imm12;
5641
5642 /* Rewrite instruction LDR Rt imm12 into:
5643
5644 Prepare: tmp[0] <- r0, tmp[1] <- r2, tmp[2] <- r3, r2 <- pc, r3 <- imm12
5645
5646 LDR R0, R2, R3,
5647
5648 Cleanup: rt <- r0, r0 <- tmp[0], r2 <- tmp[1], r3 <- tmp[2]. */
5649
5650
5651 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5652 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
5653 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
5654
5655 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
5656
5657 pc_val = pc_val & 0xfffffffc;
5658
5659 displaced_write_reg (regs, dsc, 2, pc_val, CANNOT_WRITE_PC);
5660 displaced_write_reg (regs, dsc, 3, imm12, CANNOT_WRITE_PC);
5661
5662 dsc->rd = rt;
5663
5664 dsc->u.ldst.xfersize = size;
5665 dsc->u.ldst.immed = 0;
5666 dsc->u.ldst.writeback = 0;
5667 dsc->u.ldst.restore_r4 = 0;
5668
5669 /* LDR R0, R2, R3 */
5670 dsc->modinsn[0] = 0xf852;
5671 dsc->modinsn[1] = 0x3;
5672 dsc->numinsns = 2;
5673
5674 dsc->cleanup = &cleanup_load;
5675
5676 return 0;
5677}
5678
5679static int
5680thumb2_copy_load_reg_imm (struct gdbarch *gdbarch, uint16_t insn1,
5681 uint16_t insn2, struct regcache *regs,
cfba9872 5682 arm_displaced_step_closure *dsc,
34518530
YQ
5683 int writeback, int immed)
5684{
5685 unsigned int rt = bits (insn2, 12, 15);
5686 unsigned int rn = bits (insn1, 0, 3);
5687 unsigned int rm = bits (insn2, 0, 3); /* Only valid if !immed. */
5688 /* In LDR (register), there is also a register Rm, which is not allowed to
5689 be PC, so we don't have to check it. */
5690
5691 if (rt != ARM_PC_REGNUM && rn != ARM_PC_REGNUM)
5692 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "load",
5693 dsc);
5694
5695 if (debug_displaced)
5696 fprintf_unfiltered (gdb_stdlog,
5697 "displaced: copying ldr r%d [r%d] insn %.4x%.4x\n",
5698 rt, rn, insn1, insn2);
5699
5700 install_load_store (gdbarch, regs, dsc, 1, immed, writeback, 4,
5701 0, rt, rm, rn);
5702
5703 dsc->u.ldst.restore_r4 = 0;
5704
5705 if (immed)
5706 /* ldr[b]<cond> rt, [rn, #imm], etc.
5707 ->
5708 ldr[b]<cond> r0, [r2, #imm]. */
5709 {
5710 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
5711 dsc->modinsn[1] = insn2 & 0x0fff;
5712 }
5713 else
5714 /* ldr[b]<cond> rt, [rn, rm], etc.
5715 ->
5716 ldr[b]<cond> r0, [r2, r3]. */
5717 {
5718 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
5719 dsc->modinsn[1] = (insn2 & 0x0ff0) | 0x3;
5720 }
5721
5722 dsc->numinsns = 2;
5723
5724 return 0;
5725}
5726
5727
7ff120b4
YQ
5728static int
5729arm_copy_ldr_str_ldrb_strb (struct gdbarch *gdbarch, uint32_t insn,
5730 struct regcache *regs,
cfba9872 5731 arm_displaced_step_closure *dsc,
0f6f04ba 5732 int load, int size, int usermode)
7ff120b4
YQ
5733{
5734 int immed = !bit (insn, 25);
5735 int writeback = (bit (insn, 24) == 0 || bit (insn, 21) != 0);
5736 unsigned int rt = bits (insn, 12, 15);
5737 unsigned int rn = bits (insn, 16, 19);
5738 unsigned int rm = bits (insn, 0, 3); /* Only valid if !immed. */
5739
5740 if (!insn_references_pc (insn, 0x000ff00ful))
5741 return arm_copy_unmodified (gdbarch, insn, "load/store", dsc);
5742
5743 if (debug_displaced)
5744 fprintf_unfiltered (gdb_stdlog,
5745 "displaced: copying %s%s r%d [r%d] insn %.8lx\n",
0f6f04ba
YQ
5746 load ? (size == 1 ? "ldrb" : "ldr")
5747 : (size == 1 ? "strb" : "str"), usermode ? "t" : "",
7ff120b4
YQ
5748 rt, rn,
5749 (unsigned long) insn);
5750
0f6f04ba
YQ
5751 install_load_store (gdbarch, regs, dsc, load, immed, writeback, size,
5752 usermode, rt, rm, rn);
7ff120b4 5753
bf9f652a 5754 if (load || rt != ARM_PC_REGNUM)
cca44b1b
JB
5755 {
5756 dsc->u.ldst.restore_r4 = 0;
5757
5758 if (immed)
5759 /* {ldr,str}[b]<cond> rt, [rn, #imm], etc.
5760 ->
5761 {ldr,str}[b]<cond> r0, [r2, #imm]. */
5762 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
5763 else
5764 /* {ldr,str}[b]<cond> rt, [rn, rm], etc.
5765 ->
5766 {ldr,str}[b]<cond> r0, [r2, r3]. */
5767 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
5768 }
5769 else
5770 {
5771 /* We need to use r4 as scratch. Make sure it's restored afterwards. */
5772 dsc->u.ldst.restore_r4 = 1;
494e194e
YQ
5773 dsc->modinsn[0] = 0xe92d8000; /* push {pc} */
5774 dsc->modinsn[1] = 0xe8bd0010; /* pop {r4} */
cca44b1b
JB
5775 dsc->modinsn[2] = 0xe044400f; /* sub r4, r4, pc. */
5776 dsc->modinsn[3] = 0xe2844008; /* add r4, r4, #8. */
5777 dsc->modinsn[4] = 0xe0800004; /* add r0, r0, r4. */
5778
5779 /* As above. */
5780 if (immed)
5781 dsc->modinsn[5] = (insn & 0xfff00fff) | 0x20000;
5782 else
5783 dsc->modinsn[5] = (insn & 0xfff00ff0) | 0x20003;
5784
cca44b1b
JB
5785 dsc->numinsns = 6;
5786 }
5787
5788 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
5789
5790 return 0;
5791}
5792
5793/* Cleanup LDM instructions with fully-populated register list. This is an
5794 unfortunate corner case: it's impossible to implement correctly by modifying
5795 the instruction. The issue is as follows: we have an instruction,
5796
5797 ldm rN, {r0-r15}
5798
5799 which we must rewrite to avoid loading PC. A possible solution would be to
5800 do the load in two halves, something like (with suitable cleanup
5801 afterwards):
5802
5803 mov r8, rN
5804 ldm[id][ab] r8!, {r0-r7}
5805 str r7, <temp>
5806 ldm[id][ab] r8, {r7-r14}
5807 <bkpt>
5808
5809 but at present there's no suitable place for <temp>, since the scratch space
5810 is overwritten before the cleanup routine is called. For now, we simply
5811 emulate the instruction. */
5812
5813static void
5814cleanup_block_load_all (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5815 arm_displaced_step_closure *dsc)
cca44b1b 5816{
cca44b1b
JB
5817 int inc = dsc->u.block.increment;
5818 int bump_before = dsc->u.block.before ? (inc ? 4 : -4) : 0;
5819 int bump_after = dsc->u.block.before ? 0 : (inc ? 4 : -4);
5820 uint32_t regmask = dsc->u.block.regmask;
5821 int regno = inc ? 0 : 15;
5822 CORE_ADDR xfer_addr = dsc->u.block.xfer_addr;
5823 int exception_return = dsc->u.block.load && dsc->u.block.user
5824 && (regmask & 0x8000) != 0;
36073a92 5825 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
5826 int do_transfer = condition_true (dsc->u.block.cond, status);
5827 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5828
5829 if (!do_transfer)
5830 return;
5831
5832 /* If the instruction is ldm rN, {...pc}^, I don't think there's anything
5833 sensible we can do here. Complain loudly. */
5834 if (exception_return)
5835 error (_("Cannot single-step exception return"));
5836
5837 /* We don't handle any stores here for now. */
5838 gdb_assert (dsc->u.block.load != 0);
5839
5840 if (debug_displaced)
5841 fprintf_unfiltered (gdb_stdlog, "displaced: emulating block transfer: "
5842 "%s %s %s\n", dsc->u.block.load ? "ldm" : "stm",
5843 dsc->u.block.increment ? "inc" : "dec",
5844 dsc->u.block.before ? "before" : "after");
5845
5846 while (regmask)
5847 {
5848 uint32_t memword;
5849
5850 if (inc)
bf9f652a 5851 while (regno <= ARM_PC_REGNUM && (regmask & (1 << regno)) == 0)
cca44b1b
JB
5852 regno++;
5853 else
5854 while (regno >= 0 && (regmask & (1 << regno)) == 0)
5855 regno--;
5856
5857 xfer_addr += bump_before;
5858
5859 memword = read_memory_unsigned_integer (xfer_addr, 4, byte_order);
5860 displaced_write_reg (regs, dsc, regno, memword, LOAD_WRITE_PC);
5861
5862 xfer_addr += bump_after;
5863
5864 regmask &= ~(1 << regno);
5865 }
5866
5867 if (dsc->u.block.writeback)
5868 displaced_write_reg (regs, dsc, dsc->u.block.rn, xfer_addr,
5869 CANNOT_WRITE_PC);
5870}
5871
5872/* Clean up an STM which included the PC in the register list. */
5873
5874static void
5875cleanup_block_store_pc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5876 arm_displaced_step_closure *dsc)
cca44b1b 5877{
36073a92 5878 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
5879 int store_executed = condition_true (dsc->u.block.cond, status);
5880 CORE_ADDR pc_stored_at, transferred_regs = bitcount (dsc->u.block.regmask);
5881 CORE_ADDR stm_insn_addr;
5882 uint32_t pc_val;
5883 long offset;
5884 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5885
5886 /* If condition code fails, there's nothing else to do. */
5887 if (!store_executed)
5888 return;
5889
5890 if (dsc->u.block.increment)
5891 {
5892 pc_stored_at = dsc->u.block.xfer_addr + 4 * transferred_regs;
5893
5894 if (dsc->u.block.before)
5895 pc_stored_at += 4;
5896 }
5897 else
5898 {
5899 pc_stored_at = dsc->u.block.xfer_addr;
5900
5901 if (dsc->u.block.before)
5902 pc_stored_at -= 4;
5903 }
5904
5905 pc_val = read_memory_unsigned_integer (pc_stored_at, 4, byte_order);
5906 stm_insn_addr = dsc->scratch_base;
5907 offset = pc_val - stm_insn_addr;
5908
5909 if (debug_displaced)
5910 fprintf_unfiltered (gdb_stdlog, "displaced: detected PC offset %.8lx for "
5911 "STM instruction\n", offset);
5912
5913 /* Rewrite the stored PC to the proper value for the non-displaced original
5914 instruction. */
5915 write_memory_unsigned_integer (pc_stored_at, 4, byte_order,
5916 dsc->insn_addr + offset);
5917}
5918
5919/* Clean up an LDM which includes the PC in the register list. We clumped all
5920 the registers in the transferred list into a contiguous range r0...rX (to
5921 avoid loading PC directly and losing control of the debugged program), so we
5922 must undo that here. */
5923
5924static void
6e39997a 5925cleanup_block_load_pc (struct gdbarch *gdbarch,
cca44b1b 5926 struct regcache *regs,
cfba9872 5927 arm_displaced_step_closure *dsc)
cca44b1b 5928{
36073a92 5929 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
22e048c9 5930 int load_executed = condition_true (dsc->u.block.cond, status);
bf9f652a 5931 unsigned int mask = dsc->u.block.regmask, write_reg = ARM_PC_REGNUM;
cca44b1b
JB
5932 unsigned int regs_loaded = bitcount (mask);
5933 unsigned int num_to_shuffle = regs_loaded, clobbered;
5934
5935 /* The method employed here will fail if the register list is fully populated
5936 (we need to avoid loading PC directly). */
5937 gdb_assert (num_to_shuffle < 16);
5938
5939 if (!load_executed)
5940 return;
5941
5942 clobbered = (1 << num_to_shuffle) - 1;
5943
5944 while (num_to_shuffle > 0)
5945 {
5946 if ((mask & (1 << write_reg)) != 0)
5947 {
5948 unsigned int read_reg = num_to_shuffle - 1;
5949
5950 if (read_reg != write_reg)
5951 {
36073a92 5952 ULONGEST rval = displaced_read_reg (regs, dsc, read_reg);
cca44b1b
JB
5953 displaced_write_reg (regs, dsc, write_reg, rval, LOAD_WRITE_PC);
5954 if (debug_displaced)
5955 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: move "
5956 "loaded register r%d to r%d\n"), read_reg,
5957 write_reg);
5958 }
5959 else if (debug_displaced)
5960 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: register "
5961 "r%d already in the right place\n"),
5962 write_reg);
5963
5964 clobbered &= ~(1 << write_reg);
5965
5966 num_to_shuffle--;
5967 }
5968
5969 write_reg--;
5970 }
5971
5972 /* Restore any registers we scribbled over. */
5973 for (write_reg = 0; clobbered != 0; write_reg++)
5974 {
5975 if ((clobbered & (1 << write_reg)) != 0)
5976 {
5977 displaced_write_reg (regs, dsc, write_reg, dsc->tmp[write_reg],
5978 CANNOT_WRITE_PC);
5979 if (debug_displaced)
5980 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: restored "
5981 "clobbered register r%d\n"), write_reg);
5982 clobbered &= ~(1 << write_reg);
5983 }
5984 }
5985
5986 /* Perform register writeback manually. */
5987 if (dsc->u.block.writeback)
5988 {
5989 ULONGEST new_rn_val = dsc->u.block.xfer_addr;
5990
5991 if (dsc->u.block.increment)
5992 new_rn_val += regs_loaded * 4;
5993 else
5994 new_rn_val -= regs_loaded * 4;
5995
5996 displaced_write_reg (regs, dsc, dsc->u.block.rn, new_rn_val,
5997 CANNOT_WRITE_PC);
5998 }
5999}
6000
6001/* Handle ldm/stm, apart from some tricky cases which are unlikely to occur
6002 in user-level code (in particular exception return, ldm rn, {...pc}^). */
6003
6004static int
7ff120b4
YQ
6005arm_copy_block_xfer (struct gdbarch *gdbarch, uint32_t insn,
6006 struct regcache *regs,
cfba9872 6007 arm_displaced_step_closure *dsc)
cca44b1b
JB
6008{
6009 int load = bit (insn, 20);
6010 int user = bit (insn, 22);
6011 int increment = bit (insn, 23);
6012 int before = bit (insn, 24);
6013 int writeback = bit (insn, 21);
6014 int rn = bits (insn, 16, 19);
cca44b1b 6015
0963b4bd
MS
6016 /* Block transfers which don't mention PC can be run directly
6017 out-of-line. */
bf9f652a 6018 if (rn != ARM_PC_REGNUM && (insn & 0x8000) == 0)
7ff120b4 6019 return arm_copy_unmodified (gdbarch, insn, "ldm/stm", dsc);
cca44b1b 6020
bf9f652a 6021 if (rn == ARM_PC_REGNUM)
cca44b1b 6022 {
0963b4bd
MS
6023 warning (_("displaced: Unpredictable LDM or STM with "
6024 "base register r15"));
7ff120b4 6025 return arm_copy_unmodified (gdbarch, insn, "unpredictable ldm/stm", dsc);
cca44b1b
JB
6026 }
6027
6028 if (debug_displaced)
6029 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
6030 "%.8lx\n", (unsigned long) insn);
6031
36073a92 6032 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
cca44b1b
JB
6033 dsc->u.block.rn = rn;
6034
6035 dsc->u.block.load = load;
6036 dsc->u.block.user = user;
6037 dsc->u.block.increment = increment;
6038 dsc->u.block.before = before;
6039 dsc->u.block.writeback = writeback;
6040 dsc->u.block.cond = bits (insn, 28, 31);
6041
6042 dsc->u.block.regmask = insn & 0xffff;
6043
6044 if (load)
6045 {
6046 if ((insn & 0xffff) == 0xffff)
6047 {
6048 /* LDM with a fully-populated register list. This case is
6049 particularly tricky. Implement for now by fully emulating the
6050 instruction (which might not behave perfectly in all cases, but
6051 these instructions should be rare enough for that not to matter
6052 too much). */
6053 dsc->modinsn[0] = ARM_NOP;
6054
6055 dsc->cleanup = &cleanup_block_load_all;
6056 }
6057 else
6058 {
6059 /* LDM of a list of registers which includes PC. Implement by
6060 rewriting the list of registers to be transferred into a
6061 contiguous chunk r0...rX before doing the transfer, then shuffling
6062 registers into the correct places in the cleanup routine. */
6063 unsigned int regmask = insn & 0xffff;
bec2ab5a
SM
6064 unsigned int num_in_list = bitcount (regmask), new_regmask;
6065 unsigned int i;
cca44b1b
JB
6066
6067 for (i = 0; i < num_in_list; i++)
36073a92 6068 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
cca44b1b
JB
6069
6070 /* Writeback makes things complicated. We need to avoid clobbering
6071 the base register with one of the registers in our modified
6072 register list, but just using a different register can't work in
6073 all cases, e.g.:
6074
6075 ldm r14!, {r0-r13,pc}
6076
6077 which would need to be rewritten as:
6078
6079 ldm rN!, {r0-r14}
6080
6081 but that can't work, because there's no free register for N.
6082
6083 Solve this by turning off the writeback bit, and emulating
6084 writeback manually in the cleanup routine. */
6085
6086 if (writeback)
6087 insn &= ~(1 << 21);
6088
6089 new_regmask = (1 << num_in_list) - 1;
6090
6091 if (debug_displaced)
6092 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
6093 "{..., pc}: original reg list %.4x, modified "
6094 "list %.4x\n"), rn, writeback ? "!" : "",
6095 (int) insn & 0xffff, new_regmask);
6096
6097 dsc->modinsn[0] = (insn & ~0xffff) | (new_regmask & 0xffff);
6098
6099 dsc->cleanup = &cleanup_block_load_pc;
6100 }
6101 }
6102 else
6103 {
6104 /* STM of a list of registers which includes PC. Run the instruction
6105 as-is, but out of line: this will store the wrong value for the PC,
6106 so we must manually fix up the memory in the cleanup routine.
6107 Doing things this way has the advantage that we can auto-detect
6108 the offset of the PC write (which is architecture-dependent) in
6109 the cleanup routine. */
6110 dsc->modinsn[0] = insn;
6111
6112 dsc->cleanup = &cleanup_block_store_pc;
6113 }
6114
6115 return 0;
6116}
6117
34518530
YQ
6118static int
6119thumb2_copy_block_xfer (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
6120 struct regcache *regs,
cfba9872 6121 arm_displaced_step_closure *dsc)
cca44b1b 6122{
34518530
YQ
6123 int rn = bits (insn1, 0, 3);
6124 int load = bit (insn1, 4);
6125 int writeback = bit (insn1, 5);
cca44b1b 6126
34518530
YQ
6127 /* Block transfers which don't mention PC can be run directly
6128 out-of-line. */
6129 if (rn != ARM_PC_REGNUM && (insn2 & 0x8000) == 0)
6130 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ldm/stm", dsc);
7ff120b4 6131
34518530
YQ
6132 if (rn == ARM_PC_REGNUM)
6133 {
6134 warning (_("displaced: Unpredictable LDM or STM with "
6135 "base register r15"));
6136 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6137 "unpredictable ldm/stm", dsc);
6138 }
cca44b1b
JB
6139
6140 if (debug_displaced)
34518530
YQ
6141 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
6142 "%.4x%.4x\n", insn1, insn2);
cca44b1b 6143
34518530
YQ
6144 /* Clear bit 13, since it should be always zero. */
6145 dsc->u.block.regmask = (insn2 & 0xdfff);
6146 dsc->u.block.rn = rn;
cca44b1b 6147
34518530
YQ
6148 dsc->u.block.load = load;
6149 dsc->u.block.user = 0;
6150 dsc->u.block.increment = bit (insn1, 7);
6151 dsc->u.block.before = bit (insn1, 8);
6152 dsc->u.block.writeback = writeback;
6153 dsc->u.block.cond = INST_AL;
6154 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
cca44b1b 6155
34518530
YQ
6156 if (load)
6157 {
6158 if (dsc->u.block.regmask == 0xffff)
6159 {
6160 /* This branch is impossible to happen. */
6161 gdb_assert (0);
6162 }
6163 else
6164 {
6165 unsigned int regmask = dsc->u.block.regmask;
bec2ab5a
SM
6166 unsigned int num_in_list = bitcount (regmask), new_regmask;
6167 unsigned int i;
34518530
YQ
6168
6169 for (i = 0; i < num_in_list; i++)
6170 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
6171
6172 if (writeback)
6173 insn1 &= ~(1 << 5);
6174
6175 new_regmask = (1 << num_in_list) - 1;
6176
6177 if (debug_displaced)
6178 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
6179 "{..., pc}: original reg list %.4x, modified "
6180 "list %.4x\n"), rn, writeback ? "!" : "",
6181 (int) dsc->u.block.regmask, new_regmask);
6182
6183 dsc->modinsn[0] = insn1;
6184 dsc->modinsn[1] = (new_regmask & 0xffff);
6185 dsc->numinsns = 2;
6186
6187 dsc->cleanup = &cleanup_block_load_pc;
6188 }
6189 }
6190 else
6191 {
6192 dsc->modinsn[0] = insn1;
6193 dsc->modinsn[1] = insn2;
6194 dsc->numinsns = 2;
6195 dsc->cleanup = &cleanup_block_store_pc;
6196 }
6197 return 0;
6198}
6199
d9311bfa
AT
6200/* Wrapper over read_memory_unsigned_integer for use in arm_get_next_pcs.
6201 This is used to avoid a dependency on BFD's bfd_endian enum. */
6202
6203ULONGEST
6204arm_get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr, int len,
6205 int byte_order)
6206{
5f2dfcfd
AT
6207 return read_memory_unsigned_integer (memaddr, len,
6208 (enum bfd_endian) byte_order);
d9311bfa
AT
6209}
6210
6211/* Wrapper over gdbarch_addr_bits_remove for use in arm_get_next_pcs. */
6212
6213CORE_ADDR
6214arm_get_next_pcs_addr_bits_remove (struct arm_get_next_pcs *self,
6215 CORE_ADDR val)
6216{
ac7936df 6217 return gdbarch_addr_bits_remove (self->regcache->arch (), val);
d9311bfa
AT
6218}
6219
6220/* Wrapper over syscall_next_pc for use in get_next_pcs. */
6221
e7cf25a8 6222static CORE_ADDR
553cb527 6223arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs *self)
d9311bfa 6224{
d9311bfa
AT
6225 return 0;
6226}
6227
6228/* Wrapper over arm_is_thumb for use in arm_get_next_pcs. */
6229
6230int
6231arm_get_next_pcs_is_thumb (struct arm_get_next_pcs *self)
6232{
6233 return arm_is_thumb (self->regcache);
6234}
6235
6236/* single_step() is called just before we want to resume the inferior,
6237 if we want to single-step it but there is no hardware or kernel
6238 single-step support. We find the target of the coming instructions
6239 and breakpoint them. */
6240
a0ff9e1a 6241std::vector<CORE_ADDR>
f5ea389a 6242arm_software_single_step (struct regcache *regcache)
d9311bfa 6243{
ac7936df 6244 struct gdbarch *gdbarch = regcache->arch ();
d9311bfa 6245 struct arm_get_next_pcs next_pcs_ctx;
d9311bfa
AT
6246
6247 arm_get_next_pcs_ctor (&next_pcs_ctx,
6248 &arm_get_next_pcs_ops,
6249 gdbarch_byte_order (gdbarch),
6250 gdbarch_byte_order_for_code (gdbarch),
1b451dda 6251 0,
d9311bfa
AT
6252 regcache);
6253
a0ff9e1a 6254 std::vector<CORE_ADDR> next_pcs = arm_get_next_pcs (&next_pcs_ctx);
d9311bfa 6255
a0ff9e1a
SM
6256 for (CORE_ADDR &pc_ref : next_pcs)
6257 pc_ref = gdbarch_addr_bits_remove (gdbarch, pc_ref);
d9311bfa 6258
93f9a11f 6259 return next_pcs;
d9311bfa
AT
6260}
6261
34518530
YQ
6262/* Cleanup/copy SVC (SWI) instructions. These two functions are overridden
6263 for Linux, where some SVC instructions must be treated specially. */
6264
6265static void
6266cleanup_svc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6267 arm_displaced_step_closure *dsc)
34518530
YQ
6268{
6269 CORE_ADDR resume_addr = dsc->insn_addr + dsc->insn_size;
6270
6271 if (debug_displaced)
6272 fprintf_unfiltered (gdb_stdlog, "displaced: cleanup for svc, resume at "
6273 "%.8lx\n", (unsigned long) resume_addr);
6274
6275 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, resume_addr, BRANCH_WRITE_PC);
6276}
6277
6278
6279/* Common copy routine for svc instruciton. */
6280
6281static int
6282install_svc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6283 arm_displaced_step_closure *dsc)
34518530
YQ
6284{
6285 /* Preparation: none.
6286 Insn: unmodified svc.
6287 Cleanup: pc <- insn_addr + insn_size. */
6288
6289 /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
6290 instruction. */
6291 dsc->wrote_to_pc = 1;
6292
6293 /* Allow OS-specific code to override SVC handling. */
bd18283a
YQ
6294 if (dsc->u.svc.copy_svc_os)
6295 return dsc->u.svc.copy_svc_os (gdbarch, regs, dsc);
6296 else
6297 {
6298 dsc->cleanup = &cleanup_svc;
6299 return 0;
6300 }
34518530
YQ
6301}
6302
6303static int
6304arm_copy_svc (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6305 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
6306{
6307
6308 if (debug_displaced)
6309 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.8lx\n",
6310 (unsigned long) insn);
6311
6312 dsc->modinsn[0] = insn;
6313
6314 return install_svc (gdbarch, regs, dsc);
6315}
6316
6317static int
6318thumb_copy_svc (struct gdbarch *gdbarch, uint16_t insn,
cfba9872 6319 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
6320{
6321
6322 if (debug_displaced)
6323 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.4x\n",
6324 insn);
bd18283a 6325
34518530
YQ
6326 dsc->modinsn[0] = insn;
6327
6328 return install_svc (gdbarch, regs, dsc);
cca44b1b
JB
6329}
6330
6331/* Copy undefined instructions. */
6332
6333static int
7ff120b4 6334arm_copy_undef (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6335 arm_displaced_step_closure *dsc)
cca44b1b
JB
6336{
6337 if (debug_displaced)
0963b4bd
MS
6338 fprintf_unfiltered (gdb_stdlog,
6339 "displaced: copying undefined insn %.8lx\n",
cca44b1b
JB
6340 (unsigned long) insn);
6341
6342 dsc->modinsn[0] = insn;
6343
6344 return 0;
6345}
6346
34518530
YQ
6347static int
6348thumb_32bit_copy_undef (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
cfba9872 6349 arm_displaced_step_closure *dsc)
34518530
YQ
6350{
6351
6352 if (debug_displaced)
6353 fprintf_unfiltered (gdb_stdlog, "displaced: copying undefined insn "
6354 "%.4x %.4x\n", (unsigned short) insn1,
6355 (unsigned short) insn2);
6356
6357 dsc->modinsn[0] = insn1;
6358 dsc->modinsn[1] = insn2;
6359 dsc->numinsns = 2;
6360
6361 return 0;
6362}
6363
cca44b1b
JB
6364/* Copy unpredictable instructions. */
6365
6366static int
7ff120b4 6367arm_copy_unpred (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6368 arm_displaced_step_closure *dsc)
cca44b1b
JB
6369{
6370 if (debug_displaced)
6371 fprintf_unfiltered (gdb_stdlog, "displaced: copying unpredictable insn "
6372 "%.8lx\n", (unsigned long) insn);
6373
6374 dsc->modinsn[0] = insn;
6375
6376 return 0;
6377}
6378
6379/* The decode_* functions are instruction decoding helpers. They mostly follow
6380 the presentation in the ARM ARM. */
6381
6382static int
7ff120b4
YQ
6383arm_decode_misc_memhint_neon (struct gdbarch *gdbarch, uint32_t insn,
6384 struct regcache *regs,
cfba9872 6385 arm_displaced_step_closure *dsc)
cca44b1b
JB
6386{
6387 unsigned int op1 = bits (insn, 20, 26), op2 = bits (insn, 4, 7);
6388 unsigned int rn = bits (insn, 16, 19);
6389
2f924de6 6390 if (op1 == 0x10 && (op2 & 0x2) == 0x0 && (rn & 0x1) == 0x0)
7ff120b4 6391 return arm_copy_unmodified (gdbarch, insn, "cps", dsc);
2f924de6 6392 else if (op1 == 0x10 && op2 == 0x0 && (rn & 0x1) == 0x1)
7ff120b4 6393 return arm_copy_unmodified (gdbarch, insn, "setend", dsc);
cca44b1b 6394 else if ((op1 & 0x60) == 0x20)
7ff120b4 6395 return arm_copy_unmodified (gdbarch, insn, "neon dataproc", dsc);
cca44b1b 6396 else if ((op1 & 0x71) == 0x40)
7ff120b4
YQ
6397 return arm_copy_unmodified (gdbarch, insn, "neon elt/struct load/store",
6398 dsc);
cca44b1b 6399 else if ((op1 & 0x77) == 0x41)
7ff120b4 6400 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
cca44b1b 6401 else if ((op1 & 0x77) == 0x45)
7ff120b4 6402 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pli. */
cca44b1b
JB
6403 else if ((op1 & 0x77) == 0x51)
6404 {
6405 if (rn != 0xf)
7ff120b4 6406 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
cca44b1b 6407 else
7ff120b4 6408 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6409 }
6410 else if ((op1 & 0x77) == 0x55)
7ff120b4 6411 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
cca44b1b
JB
6412 else if (op1 == 0x57)
6413 switch (op2)
6414 {
7ff120b4
YQ
6415 case 0x1: return arm_copy_unmodified (gdbarch, insn, "clrex", dsc);
6416 case 0x4: return arm_copy_unmodified (gdbarch, insn, "dsb", dsc);
6417 case 0x5: return arm_copy_unmodified (gdbarch, insn, "dmb", dsc);
6418 case 0x6: return arm_copy_unmodified (gdbarch, insn, "isb", dsc);
6419 default: return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6420 }
6421 else if ((op1 & 0x63) == 0x43)
7ff120b4 6422 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6423 else if ((op2 & 0x1) == 0x0)
6424 switch (op1 & ~0x80)
6425 {
6426 case 0x61:
7ff120b4 6427 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
cca44b1b 6428 case 0x65:
7ff120b4 6429 return arm_copy_preload_reg (gdbarch, insn, regs, dsc); /* pli reg. */
cca44b1b
JB
6430 case 0x71: case 0x75:
6431 /* pld/pldw reg. */
7ff120b4 6432 return arm_copy_preload_reg (gdbarch, insn, regs, dsc);
cca44b1b 6433 case 0x63: case 0x67: case 0x73: case 0x77:
7ff120b4 6434 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b 6435 default:
7ff120b4 6436 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6437 }
6438 else
7ff120b4 6439 return arm_copy_undef (gdbarch, insn, dsc); /* Probably unreachable. */
cca44b1b
JB
6440}
6441
6442static int
7ff120b4
YQ
6443arm_decode_unconditional (struct gdbarch *gdbarch, uint32_t insn,
6444 struct regcache *regs,
cfba9872 6445 arm_displaced_step_closure *dsc)
cca44b1b
JB
6446{
6447 if (bit (insn, 27) == 0)
7ff120b4 6448 return arm_decode_misc_memhint_neon (gdbarch, insn, regs, dsc);
cca44b1b
JB
6449 /* Switch on bits: 0bxxxxx321xxx0xxxxxxxxxxxxxxxxxxxx. */
6450 else switch (((insn & 0x7000000) >> 23) | ((insn & 0x100000) >> 20))
6451 {
6452 case 0x0: case 0x2:
7ff120b4 6453 return arm_copy_unmodified (gdbarch, insn, "srs", dsc);
cca44b1b
JB
6454
6455 case 0x1: case 0x3:
7ff120b4 6456 return arm_copy_unmodified (gdbarch, insn, "rfe", dsc);
cca44b1b
JB
6457
6458 case 0x4: case 0x5: case 0x6: case 0x7:
7ff120b4 6459 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
cca44b1b
JB
6460
6461 case 0x8:
6462 switch ((insn & 0xe00000) >> 21)
6463 {
6464 case 0x1: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
6465 /* stc/stc2. */
7ff120b4 6466 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6467
6468 case 0x2:
7ff120b4 6469 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
cca44b1b
JB
6470
6471 default:
7ff120b4 6472 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6473 }
6474
6475 case 0x9:
6476 {
6477 int rn_f = (bits (insn, 16, 19) == 0xf);
6478 switch ((insn & 0xe00000) >> 21)
6479 {
6480 case 0x1: case 0x3:
6481 /* ldc/ldc2 imm (undefined for rn == pc). */
7ff120b4
YQ
6482 return rn_f ? arm_copy_undef (gdbarch, insn, dsc)
6483 : arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6484
6485 case 0x2:
7ff120b4 6486 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
cca44b1b
JB
6487
6488 case 0x4: case 0x5: case 0x6: case 0x7:
6489 /* ldc/ldc2 lit (undefined for rn != pc). */
7ff120b4
YQ
6490 return rn_f ? arm_copy_copro_load_store (gdbarch, insn, regs, dsc)
6491 : arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6492
6493 default:
7ff120b4 6494 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6495 }
6496 }
6497
6498 case 0xa:
7ff120b4 6499 return arm_copy_unmodified (gdbarch, insn, "stc/stc2", dsc);
cca44b1b
JB
6500
6501 case 0xb:
6502 if (bits (insn, 16, 19) == 0xf)
6503 /* ldc/ldc2 lit. */
7ff120b4 6504 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b 6505 else
7ff120b4 6506 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6507
6508 case 0xc:
6509 if (bit (insn, 4))
7ff120b4 6510 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
cca44b1b 6511 else
7ff120b4 6512 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6513
6514 case 0xd:
6515 if (bit (insn, 4))
7ff120b4 6516 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
cca44b1b 6517 else
7ff120b4 6518 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6519
6520 default:
7ff120b4 6521 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6522 }
6523}
6524
6525/* Decode miscellaneous instructions in dp/misc encoding space. */
6526
6527static int
7ff120b4
YQ
6528arm_decode_miscellaneous (struct gdbarch *gdbarch, uint32_t insn,
6529 struct regcache *regs,
cfba9872 6530 arm_displaced_step_closure *dsc)
cca44b1b
JB
6531{
6532 unsigned int op2 = bits (insn, 4, 6);
6533 unsigned int op = bits (insn, 21, 22);
cca44b1b
JB
6534
6535 switch (op2)
6536 {
6537 case 0x0:
7ff120b4 6538 return arm_copy_unmodified (gdbarch, insn, "mrs/msr", dsc);
cca44b1b
JB
6539
6540 case 0x1:
6541 if (op == 0x1) /* bx. */
7ff120b4 6542 return arm_copy_bx_blx_reg (gdbarch, insn, regs, dsc);
cca44b1b 6543 else if (op == 0x3)
7ff120b4 6544 return arm_copy_unmodified (gdbarch, insn, "clz", dsc);
cca44b1b 6545 else
7ff120b4 6546 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6547
6548 case 0x2:
6549 if (op == 0x1)
6550 /* Not really supported. */
7ff120b4 6551 return arm_copy_unmodified (gdbarch, insn, "bxj", dsc);
cca44b1b 6552 else
7ff120b4 6553 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6554
6555 case 0x3:
6556 if (op == 0x1)
7ff120b4 6557 return arm_copy_bx_blx_reg (gdbarch, insn,
0963b4bd 6558 regs, dsc); /* blx register. */
cca44b1b 6559 else
7ff120b4 6560 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6561
6562 case 0x5:
7ff120b4 6563 return arm_copy_unmodified (gdbarch, insn, "saturating add/sub", dsc);
cca44b1b
JB
6564
6565 case 0x7:
6566 if (op == 0x1)
7ff120b4 6567 return arm_copy_unmodified (gdbarch, insn, "bkpt", dsc);
cca44b1b
JB
6568 else if (op == 0x3)
6569 /* Not really supported. */
7ff120b4 6570 return arm_copy_unmodified (gdbarch, insn, "smc", dsc);
86a73007 6571 /* Fall through. */
cca44b1b
JB
6572
6573 default:
7ff120b4 6574 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6575 }
6576}
6577
6578static int
7ff120b4
YQ
6579arm_decode_dp_misc (struct gdbarch *gdbarch, uint32_t insn,
6580 struct regcache *regs,
cfba9872 6581 arm_displaced_step_closure *dsc)
cca44b1b
JB
6582{
6583 if (bit (insn, 25))
6584 switch (bits (insn, 20, 24))
6585 {
6586 case 0x10:
7ff120b4 6587 return arm_copy_unmodified (gdbarch, insn, "movw", dsc);
cca44b1b
JB
6588
6589 case 0x14:
7ff120b4 6590 return arm_copy_unmodified (gdbarch, insn, "movt", dsc);
cca44b1b
JB
6591
6592 case 0x12: case 0x16:
7ff120b4 6593 return arm_copy_unmodified (gdbarch, insn, "msr imm", dsc);
cca44b1b
JB
6594
6595 default:
7ff120b4 6596 return arm_copy_alu_imm (gdbarch, insn, regs, dsc);
cca44b1b
JB
6597 }
6598 else
6599 {
6600 uint32_t op1 = bits (insn, 20, 24), op2 = bits (insn, 4, 7);
6601
6602 if ((op1 & 0x19) != 0x10 && (op2 & 0x1) == 0x0)
7ff120b4 6603 return arm_copy_alu_reg (gdbarch, insn, regs, dsc);
cca44b1b 6604 else if ((op1 & 0x19) != 0x10 && (op2 & 0x9) == 0x1)
7ff120b4 6605 return arm_copy_alu_shifted_reg (gdbarch, insn, regs, dsc);
cca44b1b 6606 else if ((op1 & 0x19) == 0x10 && (op2 & 0x8) == 0x0)
7ff120b4 6607 return arm_decode_miscellaneous (gdbarch, insn, regs, dsc);
cca44b1b 6608 else if ((op1 & 0x19) == 0x10 && (op2 & 0x9) == 0x8)
7ff120b4 6609 return arm_copy_unmodified (gdbarch, insn, "halfword mul/mla", dsc);
cca44b1b 6610 else if ((op1 & 0x10) == 0x00 && op2 == 0x9)
7ff120b4 6611 return arm_copy_unmodified (gdbarch, insn, "mul/mla", dsc);
cca44b1b 6612 else if ((op1 & 0x10) == 0x10 && op2 == 0x9)
7ff120b4 6613 return arm_copy_unmodified (gdbarch, insn, "synch", dsc);
cca44b1b 6614 else if (op2 == 0xb || (op2 & 0xd) == 0xd)
550dc4e2 6615 /* 2nd arg means "unprivileged". */
7ff120b4
YQ
6616 return arm_copy_extra_ld_st (gdbarch, insn, (op1 & 0x12) == 0x02, regs,
6617 dsc);
cca44b1b
JB
6618 }
6619
6620 /* Should be unreachable. */
6621 return 1;
6622}
6623
6624static int
7ff120b4
YQ
6625arm_decode_ld_st_word_ubyte (struct gdbarch *gdbarch, uint32_t insn,
6626 struct regcache *regs,
cfba9872 6627 arm_displaced_step_closure *dsc)
cca44b1b
JB
6628{
6629 int a = bit (insn, 25), b = bit (insn, 4);
6630 uint32_t op1 = bits (insn, 20, 24);
cca44b1b
JB
6631
6632 if ((!a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02)
6633 || (a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02 && !b))
0f6f04ba 6634 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 0);
cca44b1b
JB
6635 else if ((!a && (op1 & 0x17) == 0x02)
6636 || (a && (op1 & 0x17) == 0x02 && !b))
0f6f04ba 6637 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 1);
cca44b1b
JB
6638 else if ((!a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03)
6639 || (a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03 && !b))
0f6f04ba 6640 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 0);
cca44b1b
JB
6641 else if ((!a && (op1 & 0x17) == 0x03)
6642 || (a && (op1 & 0x17) == 0x03 && !b))
0f6f04ba 6643 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 1);
cca44b1b
JB
6644 else if ((!a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06)
6645 || (a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06 && !b))
7ff120b4 6646 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 0);
cca44b1b
JB
6647 else if ((!a && (op1 & 0x17) == 0x06)
6648 || (a && (op1 & 0x17) == 0x06 && !b))
7ff120b4 6649 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 1);
cca44b1b
JB
6650 else if ((!a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07)
6651 || (a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07 && !b))
7ff120b4 6652 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 0);
cca44b1b
JB
6653 else if ((!a && (op1 & 0x17) == 0x07)
6654 || (a && (op1 & 0x17) == 0x07 && !b))
7ff120b4 6655 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 1);
cca44b1b
JB
6656
6657 /* Should be unreachable. */
6658 return 1;
6659}
6660
6661static int
7ff120b4 6662arm_decode_media (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6663 arm_displaced_step_closure *dsc)
cca44b1b
JB
6664{
6665 switch (bits (insn, 20, 24))
6666 {
6667 case 0x00: case 0x01: case 0x02: case 0x03:
7ff120b4 6668 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub signed", dsc);
cca44b1b
JB
6669
6670 case 0x04: case 0x05: case 0x06: case 0x07:
7ff120b4 6671 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub unsigned", dsc);
cca44b1b
JB
6672
6673 case 0x08: case 0x09: case 0x0a: case 0x0b:
6674 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
7ff120b4 6675 return arm_copy_unmodified (gdbarch, insn,
cca44b1b
JB
6676 "decode/pack/unpack/saturate/reverse", dsc);
6677
6678 case 0x18:
6679 if (bits (insn, 5, 7) == 0) /* op2. */
6680 {
6681 if (bits (insn, 12, 15) == 0xf)
7ff120b4 6682 return arm_copy_unmodified (gdbarch, insn, "usad8", dsc);
cca44b1b 6683 else
7ff120b4 6684 return arm_copy_unmodified (gdbarch, insn, "usada8", dsc);
cca44b1b
JB
6685 }
6686 else
7ff120b4 6687 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6688
6689 case 0x1a: case 0x1b:
6690 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7ff120b4 6691 return arm_copy_unmodified (gdbarch, insn, "sbfx", dsc);
cca44b1b 6692 else
7ff120b4 6693 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6694
6695 case 0x1c: case 0x1d:
6696 if (bits (insn, 5, 6) == 0x0) /* op2[1:0]. */
6697 {
6698 if (bits (insn, 0, 3) == 0xf)
7ff120b4 6699 return arm_copy_unmodified (gdbarch, insn, "bfc", dsc);
cca44b1b 6700 else
7ff120b4 6701 return arm_copy_unmodified (gdbarch, insn, "bfi", dsc);
cca44b1b
JB
6702 }
6703 else
7ff120b4 6704 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6705
6706 case 0x1e: case 0x1f:
6707 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7ff120b4 6708 return arm_copy_unmodified (gdbarch, insn, "ubfx", dsc);
cca44b1b 6709 else
7ff120b4 6710 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6711 }
6712
6713 /* Should be unreachable. */
6714 return 1;
6715}
6716
6717static int
615234c1 6718arm_decode_b_bl_ldmstm (struct gdbarch *gdbarch, uint32_t insn,
7ff120b4 6719 struct regcache *regs,
cfba9872 6720 arm_displaced_step_closure *dsc)
cca44b1b
JB
6721{
6722 if (bit (insn, 25))
7ff120b4 6723 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
cca44b1b 6724 else
7ff120b4 6725 return arm_copy_block_xfer (gdbarch, insn, regs, dsc);
cca44b1b
JB
6726}
6727
6728static int
7ff120b4
YQ
6729arm_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint32_t insn,
6730 struct regcache *regs,
cfba9872 6731 arm_displaced_step_closure *dsc)
cca44b1b
JB
6732{
6733 unsigned int opcode = bits (insn, 20, 24);
6734
6735 switch (opcode)
6736 {
6737 case 0x04: case 0x05: /* VFP/Neon mrrc/mcrr. */
7ff120b4 6738 return arm_copy_unmodified (gdbarch, insn, "vfp/neon mrrc/mcrr", dsc);
cca44b1b
JB
6739
6740 case 0x08: case 0x0a: case 0x0c: case 0x0e:
6741 case 0x12: case 0x16:
7ff120b4 6742 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vstm/vpush", dsc);
cca44b1b
JB
6743
6744 case 0x09: case 0x0b: case 0x0d: case 0x0f:
6745 case 0x13: case 0x17:
7ff120b4 6746 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vldm/vpop", dsc);
cca44b1b
JB
6747
6748 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6749 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6750 /* Note: no writeback for these instructions. Bit 25 will always be
6751 zero though (via caller), so the following works OK. */
7ff120b4 6752 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6753 }
6754
6755 /* Should be unreachable. */
6756 return 1;
6757}
6758
34518530
YQ
6759/* Decode shifted register instructions. */
6760
6761static int
6762thumb2_decode_dp_shift_reg (struct gdbarch *gdbarch, uint16_t insn1,
6763 uint16_t insn2, struct regcache *regs,
cfba9872 6764 arm_displaced_step_closure *dsc)
34518530
YQ
6765{
6766 /* PC is only allowed to be used in instruction MOV. */
6767
6768 unsigned int op = bits (insn1, 5, 8);
6769 unsigned int rn = bits (insn1, 0, 3);
6770
6771 if (op == 0x2 && rn == 0xf) /* MOV */
6772 return thumb2_copy_alu_imm (gdbarch, insn1, insn2, regs, dsc);
6773 else
6774 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6775 "dp (shift reg)", dsc);
6776}
6777
6778
6779/* Decode extension register load/store. Exactly the same as
6780 arm_decode_ext_reg_ld_st. */
6781
6782static int
6783thumb2_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint16_t insn1,
6784 uint16_t insn2, struct regcache *regs,
cfba9872 6785 arm_displaced_step_closure *dsc)
34518530
YQ
6786{
6787 unsigned int opcode = bits (insn1, 4, 8);
6788
6789 switch (opcode)
6790 {
6791 case 0x04: case 0x05:
6792 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6793 "vfp/neon vmov", dsc);
6794
6795 case 0x08: case 0x0c: /* 01x00 */
6796 case 0x0a: case 0x0e: /* 01x10 */
6797 case 0x12: case 0x16: /* 10x10 */
6798 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6799 "vfp/neon vstm/vpush", dsc);
6800
6801 case 0x09: case 0x0d: /* 01x01 */
6802 case 0x0b: case 0x0f: /* 01x11 */
6803 case 0x13: case 0x17: /* 10x11 */
6804 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6805 "vfp/neon vldm/vpop", dsc);
6806
6807 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6808 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6809 "vstr", dsc);
6810 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6811 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2, regs, dsc);
6812 }
6813
6814 /* Should be unreachable. */
6815 return 1;
6816}
6817
cca44b1b 6818static int
12545665 6819arm_decode_svc_copro (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6820 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
6821{
6822 unsigned int op1 = bits (insn, 20, 25);
6823 int op = bit (insn, 4);
6824 unsigned int coproc = bits (insn, 8, 11);
cca44b1b
JB
6825
6826 if ((op1 & 0x20) == 0x00 && (op1 & 0x3a) != 0x00 && (coproc & 0xe) == 0xa)
7ff120b4 6827 return arm_decode_ext_reg_ld_st (gdbarch, insn, regs, dsc);
cca44b1b
JB
6828 else if ((op1 & 0x21) == 0x00 && (op1 & 0x3a) != 0x00
6829 && (coproc & 0xe) != 0xa)
6830 /* stc/stc2. */
7ff120b4 6831 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6832 else if ((op1 & 0x21) == 0x01 && (op1 & 0x3a) != 0x00
6833 && (coproc & 0xe) != 0xa)
6834 /* ldc/ldc2 imm/lit. */
7ff120b4 6835 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b 6836 else if ((op1 & 0x3e) == 0x00)
7ff120b4 6837 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b 6838 else if ((op1 & 0x3e) == 0x04 && (coproc & 0xe) == 0xa)
7ff120b4 6839 return arm_copy_unmodified (gdbarch, insn, "neon 64bit xfer", dsc);
cca44b1b 6840 else if (op1 == 0x04 && (coproc & 0xe) != 0xa)
7ff120b4 6841 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
cca44b1b 6842 else if (op1 == 0x05 && (coproc & 0xe) != 0xa)
7ff120b4 6843 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
cca44b1b
JB
6844 else if ((op1 & 0x30) == 0x20 && !op)
6845 {
6846 if ((coproc & 0xe) == 0xa)
7ff120b4 6847 return arm_copy_unmodified (gdbarch, insn, "vfp dataproc", dsc);
cca44b1b 6848 else
7ff120b4 6849 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6850 }
6851 else if ((op1 & 0x30) == 0x20 && op)
7ff120b4 6852 return arm_copy_unmodified (gdbarch, insn, "neon 8/16/32 bit xfer", dsc);
cca44b1b 6853 else if ((op1 & 0x31) == 0x20 && op && (coproc & 0xe) != 0xa)
7ff120b4 6854 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
cca44b1b 6855 else if ((op1 & 0x31) == 0x21 && op && (coproc & 0xe) != 0xa)
7ff120b4 6856 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
cca44b1b 6857 else if ((op1 & 0x30) == 0x30)
7ff120b4 6858 return arm_copy_svc (gdbarch, insn, regs, dsc);
cca44b1b 6859 else
7ff120b4 6860 return arm_copy_undef (gdbarch, insn, dsc); /* Possibly unreachable. */
cca44b1b
JB
6861}
6862
34518530
YQ
6863static int
6864thumb2_decode_svc_copro (struct gdbarch *gdbarch, uint16_t insn1,
6865 uint16_t insn2, struct regcache *regs,
cfba9872 6866 arm_displaced_step_closure *dsc)
34518530
YQ
6867{
6868 unsigned int coproc = bits (insn2, 8, 11);
34518530
YQ
6869 unsigned int bit_5_8 = bits (insn1, 5, 8);
6870 unsigned int bit_9 = bit (insn1, 9);
6871 unsigned int bit_4 = bit (insn1, 4);
34518530
YQ
6872
6873 if (bit_9 == 0)
6874 {
6875 if (bit_5_8 == 2)
6876 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6877 "neon 64bit xfer/mrrc/mrrc2/mcrr/mcrr2",
6878 dsc);
6879 else if (bit_5_8 == 0) /* UNDEFINED. */
6880 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
6881 else
6882 {
6883 /*coproc is 101x. SIMD/VFP, ext registers load/store. */
6884 if ((coproc & 0xe) == 0xa)
6885 return thumb2_decode_ext_reg_ld_st (gdbarch, insn1, insn2, regs,
6886 dsc);
6887 else /* coproc is not 101x. */
6888 {
6889 if (bit_4 == 0) /* STC/STC2. */
6890 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6891 "stc/stc2", dsc);
6892 else /* LDC/LDC2 {literal, immeidate}. */
6893 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2,
6894 regs, dsc);
6895 }
6896 }
6897 }
6898 else
6899 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "coproc", dsc);
6900
6901 return 0;
6902}
6903
6904static void
6905install_pc_relative (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6906 arm_displaced_step_closure *dsc, int rd)
34518530
YQ
6907{
6908 /* ADR Rd, #imm
6909
6910 Rewrite as:
6911
6912 Preparation: Rd <- PC
6913 Insn: ADD Rd, #imm
6914 Cleanup: Null.
6915 */
6916
6917 /* Rd <- PC */
6918 int val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
6919 displaced_write_reg (regs, dsc, rd, val, CANNOT_WRITE_PC);
6920}
6921
6922static int
6923thumb_copy_pc_relative_16bit (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6924 arm_displaced_step_closure *dsc,
34518530
YQ
6925 int rd, unsigned int imm)
6926{
6927
6928 /* Encoding T2: ADDS Rd, #imm */
6929 dsc->modinsn[0] = (0x3000 | (rd << 8) | imm);
6930
6931 install_pc_relative (gdbarch, regs, dsc, rd);
6932
6933 return 0;
6934}
6935
6936static int
6937thumb_decode_pc_relative_16bit (struct gdbarch *gdbarch, uint16_t insn,
6938 struct regcache *regs,
cfba9872 6939 arm_displaced_step_closure *dsc)
34518530
YQ
6940{
6941 unsigned int rd = bits (insn, 8, 10);
6942 unsigned int imm8 = bits (insn, 0, 7);
6943
6944 if (debug_displaced)
6945 fprintf_unfiltered (gdb_stdlog,
6946 "displaced: copying thumb adr r%d, #%d insn %.4x\n",
6947 rd, imm8, insn);
6948
6949 return thumb_copy_pc_relative_16bit (gdbarch, regs, dsc, rd, imm8);
6950}
6951
6952static int
6953thumb_copy_pc_relative_32bit (struct gdbarch *gdbarch, uint16_t insn1,
6954 uint16_t insn2, struct regcache *regs,
cfba9872 6955 arm_displaced_step_closure *dsc)
34518530
YQ
6956{
6957 unsigned int rd = bits (insn2, 8, 11);
6958 /* Since immediate has the same encoding in ADR ADD and SUB, so we simply
6959 extract raw immediate encoding rather than computing immediate. When
6960 generating ADD or SUB instruction, we can simply perform OR operation to
6961 set immediate into ADD. */
6962 unsigned int imm_3_8 = insn2 & 0x70ff;
6963 unsigned int imm_i = insn1 & 0x0400; /* Clear all bits except bit 10. */
6964
6965 if (debug_displaced)
6966 fprintf_unfiltered (gdb_stdlog,
6967 "displaced: copying thumb adr r%d, #%d:%d insn %.4x%.4x\n",
6968 rd, imm_i, imm_3_8, insn1, insn2);
6969
6970 if (bit (insn1, 7)) /* Encoding T2 */
6971 {
6972 /* Encoding T3: SUB Rd, Rd, #imm */
6973 dsc->modinsn[0] = (0xf1a0 | rd | imm_i);
6974 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
6975 }
6976 else /* Encoding T3 */
6977 {
6978 /* Encoding T3: ADD Rd, Rd, #imm */
6979 dsc->modinsn[0] = (0xf100 | rd | imm_i);
6980 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
6981 }
6982 dsc->numinsns = 2;
6983
6984 install_pc_relative (gdbarch, regs, dsc, rd);
6985
6986 return 0;
6987}
6988
6989static int
615234c1 6990thumb_copy_16bit_ldr_literal (struct gdbarch *gdbarch, uint16_t insn1,
34518530 6991 struct regcache *regs,
cfba9872 6992 arm_displaced_step_closure *dsc)
34518530
YQ
6993{
6994 unsigned int rt = bits (insn1, 8, 10);
6995 unsigned int pc;
6996 int imm8 = (bits (insn1, 0, 7) << 2);
34518530
YQ
6997
6998 /* LDR Rd, #imm8
6999
7000 Rwrite as:
7001
7002 Preparation: tmp0 <- R0, tmp2 <- R2, tmp3 <- R3, R2 <- PC, R3 <- #imm8;
7003
7004 Insn: LDR R0, [R2, R3];
7005 Cleanup: R2 <- tmp2, R3 <- tmp3, Rd <- R0, R0 <- tmp0 */
7006
7007 if (debug_displaced)
7008 fprintf_unfiltered (gdb_stdlog,
7009 "displaced: copying thumb ldr r%d [pc #%d]\n"
7010 , rt, imm8);
7011
7012 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
7013 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
7014 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
7015 pc = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
7016 /* The assembler calculates the required value of the offset from the
7017 Align(PC,4) value of this instruction to the label. */
7018 pc = pc & 0xfffffffc;
7019
7020 displaced_write_reg (regs, dsc, 2, pc, CANNOT_WRITE_PC);
7021 displaced_write_reg (regs, dsc, 3, imm8, CANNOT_WRITE_PC);
7022
7023 dsc->rd = rt;
7024 dsc->u.ldst.xfersize = 4;
7025 dsc->u.ldst.rn = 0;
7026 dsc->u.ldst.immed = 0;
7027 dsc->u.ldst.writeback = 0;
7028 dsc->u.ldst.restore_r4 = 0;
7029
7030 dsc->modinsn[0] = 0x58d0; /* ldr r0, [r2, r3]*/
7031
7032 dsc->cleanup = &cleanup_load;
7033
7034 return 0;
7035}
7036
7037/* Copy Thumb cbnz/cbz insruction. */
7038
7039static int
7040thumb_copy_cbnz_cbz (struct gdbarch *gdbarch, uint16_t insn1,
7041 struct regcache *regs,
cfba9872 7042 arm_displaced_step_closure *dsc)
34518530
YQ
7043{
7044 int non_zero = bit (insn1, 11);
7045 unsigned int imm5 = (bit (insn1, 9) << 6) | (bits (insn1, 3, 7) << 1);
7046 CORE_ADDR from = dsc->insn_addr;
7047 int rn = bits (insn1, 0, 2);
7048 int rn_val = displaced_read_reg (regs, dsc, rn);
7049
7050 dsc->u.branch.cond = (rn_val && non_zero) || (!rn_val && !non_zero);
7051 /* CBNZ and CBZ do not affect the condition flags. If condition is true,
7052 set it INST_AL, so cleanup_branch will know branch is taken, otherwise,
7053 condition is false, let it be, cleanup_branch will do nothing. */
7054 if (dsc->u.branch.cond)
7055 {
7056 dsc->u.branch.cond = INST_AL;
7057 dsc->u.branch.dest = from + 4 + imm5;
7058 }
7059 else
7060 dsc->u.branch.dest = from + 2;
7061
7062 dsc->u.branch.link = 0;
7063 dsc->u.branch.exchange = 0;
7064
7065 if (debug_displaced)
7066 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s [r%d = 0x%x]"
7067 " insn %.4x to %.8lx\n", non_zero ? "cbnz" : "cbz",
7068 rn, rn_val, insn1, dsc->u.branch.dest);
7069
7070 dsc->modinsn[0] = THUMB_NOP;
7071
7072 dsc->cleanup = &cleanup_branch;
7073 return 0;
7074}
7075
7076/* Copy Table Branch Byte/Halfword */
7077static int
7078thumb2_copy_table_branch (struct gdbarch *gdbarch, uint16_t insn1,
7079 uint16_t insn2, struct regcache *regs,
cfba9872 7080 arm_displaced_step_closure *dsc)
34518530
YQ
7081{
7082 ULONGEST rn_val, rm_val;
7083 int is_tbh = bit (insn2, 4);
7084 CORE_ADDR halfwords = 0;
7085 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7086
7087 rn_val = displaced_read_reg (regs, dsc, bits (insn1, 0, 3));
7088 rm_val = displaced_read_reg (regs, dsc, bits (insn2, 0, 3));
7089
7090 if (is_tbh)
7091 {
7092 gdb_byte buf[2];
7093
7094 target_read_memory (rn_val + 2 * rm_val, buf, 2);
7095 halfwords = extract_unsigned_integer (buf, 2, byte_order);
7096 }
7097 else
7098 {
7099 gdb_byte buf[1];
7100
7101 target_read_memory (rn_val + rm_val, buf, 1);
7102 halfwords = extract_unsigned_integer (buf, 1, byte_order);
7103 }
7104
7105 if (debug_displaced)
7106 fprintf_unfiltered (gdb_stdlog, "displaced: %s base 0x%x offset 0x%x"
7107 " offset 0x%x\n", is_tbh ? "tbh" : "tbb",
7108 (unsigned int) rn_val, (unsigned int) rm_val,
7109 (unsigned int) halfwords);
7110
7111 dsc->u.branch.cond = INST_AL;
7112 dsc->u.branch.link = 0;
7113 dsc->u.branch.exchange = 0;
7114 dsc->u.branch.dest = dsc->insn_addr + 4 + 2 * halfwords;
7115
7116 dsc->cleanup = &cleanup_branch;
7117
7118 return 0;
7119}
7120
7121static void
7122cleanup_pop_pc_16bit_all (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 7123 arm_displaced_step_closure *dsc)
34518530
YQ
7124{
7125 /* PC <- r7 */
7126 int val = displaced_read_reg (regs, dsc, 7);
7127 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, val, BX_WRITE_PC);
7128
7129 /* r7 <- r8 */
7130 val = displaced_read_reg (regs, dsc, 8);
7131 displaced_write_reg (regs, dsc, 7, val, CANNOT_WRITE_PC);
7132
7133 /* r8 <- tmp[0] */
7134 displaced_write_reg (regs, dsc, 8, dsc->tmp[0], CANNOT_WRITE_PC);
7135
7136}
7137
7138static int
615234c1 7139thumb_copy_pop_pc_16bit (struct gdbarch *gdbarch, uint16_t insn1,
34518530 7140 struct regcache *regs,
cfba9872 7141 arm_displaced_step_closure *dsc)
34518530
YQ
7142{
7143 dsc->u.block.regmask = insn1 & 0x00ff;
7144
7145 /* Rewrite instruction: POP {rX, rY, ...,rZ, PC}
7146 to :
7147
7148 (1) register list is full, that is, r0-r7 are used.
7149 Prepare: tmp[0] <- r8
7150
7151 POP {r0, r1, ...., r6, r7}; remove PC from reglist
7152 MOV r8, r7; Move value of r7 to r8;
7153 POP {r7}; Store PC value into r7.
7154
7155 Cleanup: PC <- r7, r7 <- r8, r8 <-tmp[0]
7156
7157 (2) register list is not full, supposing there are N registers in
7158 register list (except PC, 0 <= N <= 7).
7159 Prepare: for each i, 0 - N, tmp[i] <- ri.
7160
7161 POP {r0, r1, ...., rN};
7162
7163 Cleanup: Set registers in original reglist from r0 - rN. Restore r0 - rN
7164 from tmp[] properly.
7165 */
7166 if (debug_displaced)
7167 fprintf_unfiltered (gdb_stdlog,
7168 "displaced: copying thumb pop {%.8x, pc} insn %.4x\n",
7169 dsc->u.block.regmask, insn1);
7170
7171 if (dsc->u.block.regmask == 0xff)
7172 {
7173 dsc->tmp[0] = displaced_read_reg (regs, dsc, 8);
7174
7175 dsc->modinsn[0] = (insn1 & 0xfeff); /* POP {r0,r1,...,r6, r7} */
7176 dsc->modinsn[1] = 0x46b8; /* MOV r8, r7 */
7177 dsc->modinsn[2] = 0xbc80; /* POP {r7} */
7178
7179 dsc->numinsns = 3;
7180 dsc->cleanup = &cleanup_pop_pc_16bit_all;
7181 }
7182 else
7183 {
7184 unsigned int num_in_list = bitcount (dsc->u.block.regmask);
bec2ab5a
SM
7185 unsigned int i;
7186 unsigned int new_regmask;
34518530
YQ
7187
7188 for (i = 0; i < num_in_list + 1; i++)
7189 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
7190
7191 new_regmask = (1 << (num_in_list + 1)) - 1;
7192
7193 if (debug_displaced)
7194 fprintf_unfiltered (gdb_stdlog, _("displaced: POP "
7195 "{..., pc}: original reg list %.4x,"
7196 " modified list %.4x\n"),
7197 (int) dsc->u.block.regmask, new_regmask);
7198
7199 dsc->u.block.regmask |= 0x8000;
7200 dsc->u.block.writeback = 0;
7201 dsc->u.block.cond = INST_AL;
7202
7203 dsc->modinsn[0] = (insn1 & ~0x1ff) | (new_regmask & 0xff);
7204
7205 dsc->cleanup = &cleanup_block_load_pc;
7206 }
7207
7208 return 0;
7209}
7210
7211static void
7212thumb_process_displaced_16bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
7213 struct regcache *regs,
cfba9872 7214 arm_displaced_step_closure *dsc)
34518530
YQ
7215{
7216 unsigned short op_bit_12_15 = bits (insn1, 12, 15);
7217 unsigned short op_bit_10_11 = bits (insn1, 10, 11);
7218 int err = 0;
7219
7220 /* 16-bit thumb instructions. */
7221 switch (op_bit_12_15)
7222 {
7223 /* Shift (imme), add, subtract, move and compare. */
7224 case 0: case 1: case 2: case 3:
7225 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
7226 "shift/add/sub/mov/cmp",
7227 dsc);
7228 break;
7229 case 4:
7230 switch (op_bit_10_11)
7231 {
7232 case 0: /* Data-processing */
7233 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
7234 "data-processing",
7235 dsc);
7236 break;
7237 case 1: /* Special data instructions and branch and exchange. */
7238 {
7239 unsigned short op = bits (insn1, 7, 9);
7240 if (op == 6 || op == 7) /* BX or BLX */
7241 err = thumb_copy_bx_blx_reg (gdbarch, insn1, regs, dsc);
7242 else if (bits (insn1, 6, 7) != 0) /* ADD/MOV/CMP high registers. */
7243 err = thumb_copy_alu_reg (gdbarch, insn1, regs, dsc);
7244 else
7245 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "special data",
7246 dsc);
7247 }
7248 break;
7249 default: /* LDR (literal) */
7250 err = thumb_copy_16bit_ldr_literal (gdbarch, insn1, regs, dsc);
7251 }
7252 break;
7253 case 5: case 6: case 7: case 8: case 9: /* Load/Store single data item */
7254 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldr/str", dsc);
7255 break;
7256 case 10:
7257 if (op_bit_10_11 < 2) /* Generate PC-relative address */
7258 err = thumb_decode_pc_relative_16bit (gdbarch, insn1, regs, dsc);
7259 else /* Generate SP-relative address */
7260 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "sp-relative", dsc);
7261 break;
7262 case 11: /* Misc 16-bit instructions */
7263 {
7264 switch (bits (insn1, 8, 11))
7265 {
7266 case 1: case 3: case 9: case 11: /* CBNZ, CBZ */
7267 err = thumb_copy_cbnz_cbz (gdbarch, insn1, regs, dsc);
7268 break;
7269 case 12: case 13: /* POP */
7270 if (bit (insn1, 8)) /* PC is in register list. */
7271 err = thumb_copy_pop_pc_16bit (gdbarch, insn1, regs, dsc);
7272 else
7273 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "pop", dsc);
7274 break;
7275 case 15: /* If-Then, and hints */
7276 if (bits (insn1, 0, 3))
7277 /* If-Then makes up to four following instructions conditional.
7278 IT instruction itself is not conditional, so handle it as a
7279 common unmodified instruction. */
7280 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "If-Then",
7281 dsc);
7282 else
7283 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "hints", dsc);
7284 break;
7285 default:
7286 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "misc", dsc);
7287 }
7288 }
7289 break;
7290 case 12:
7291 if (op_bit_10_11 < 2) /* Store multiple registers */
7292 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "stm", dsc);
7293 else /* Load multiple registers */
7294 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldm", dsc);
7295 break;
7296 case 13: /* Conditional branch and supervisor call */
7297 if (bits (insn1, 9, 11) != 7) /* conditional branch */
7298 err = thumb_copy_b (gdbarch, insn1, dsc);
7299 else
7300 err = thumb_copy_svc (gdbarch, insn1, regs, dsc);
7301 break;
7302 case 14: /* Unconditional branch */
7303 err = thumb_copy_b (gdbarch, insn1, dsc);
7304 break;
7305 default:
7306 err = 1;
7307 }
7308
7309 if (err)
7310 internal_error (__FILE__, __LINE__,
7311 _("thumb_process_displaced_16bit_insn: Instruction decode error"));
7312}
7313
7314static int
7315decode_thumb_32bit_ld_mem_hints (struct gdbarch *gdbarch,
7316 uint16_t insn1, uint16_t insn2,
7317 struct regcache *regs,
cfba9872 7318 arm_displaced_step_closure *dsc)
34518530
YQ
7319{
7320 int rt = bits (insn2, 12, 15);
7321 int rn = bits (insn1, 0, 3);
7322 int op1 = bits (insn1, 7, 8);
34518530
YQ
7323
7324 switch (bits (insn1, 5, 6))
7325 {
7326 case 0: /* Load byte and memory hints */
7327 if (rt == 0xf) /* PLD/PLI */
7328 {
7329 if (rn == 0xf)
7330 /* PLD literal or Encoding T3 of PLI(immediate, literal). */
7331 return thumb2_copy_preload (gdbarch, insn1, insn2, regs, dsc);
7332 else
7333 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7334 "pli/pld", dsc);
7335 }
7336 else
7337 {
7338 if (rn == 0xf) /* LDRB/LDRSB (literal) */
7339 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
7340 1);
7341 else
7342 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7343 "ldrb{reg, immediate}/ldrbt",
7344 dsc);
7345 }
7346
7347 break;
7348 case 1: /* Load halfword and memory hints. */
7349 if (rt == 0xf) /* PLD{W} and Unalloc memory hint. */
7350 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7351 "pld/unalloc memhint", dsc);
7352 else
7353 {
7354 if (rn == 0xf)
7355 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
7356 2);
7357 else
7358 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7359 "ldrh/ldrht", dsc);
7360 }
7361 break;
7362 case 2: /* Load word */
7363 {
7364 int insn2_bit_8_11 = bits (insn2, 8, 11);
7365
7366 if (rn == 0xf)
7367 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc, 4);
7368 else if (op1 == 0x1) /* Encoding T3 */
7369 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs, dsc,
7370 0, 1);
7371 else /* op1 == 0x0 */
7372 {
7373 if (insn2_bit_8_11 == 0xc || (insn2_bit_8_11 & 0x9) == 0x9)
7374 /* LDR (immediate) */
7375 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
7376 dsc, bit (insn2, 8), 1);
7377 else if (insn2_bit_8_11 == 0xe) /* LDRT */
7378 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7379 "ldrt", dsc);
7380 else
7381 /* LDR (register) */
7382 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
7383 dsc, 0, 0);
7384 }
7385 break;
7386 }
7387 default:
7388 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
7389 break;
7390 }
7391 return 0;
7392}
7393
7394static void
7395thumb_process_displaced_32bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
7396 uint16_t insn2, struct regcache *regs,
cfba9872 7397 arm_displaced_step_closure *dsc)
34518530
YQ
7398{
7399 int err = 0;
7400 unsigned short op = bit (insn2, 15);
7401 unsigned int op1 = bits (insn1, 11, 12);
7402
7403 switch (op1)
7404 {
7405 case 1:
7406 {
7407 switch (bits (insn1, 9, 10))
7408 {
7409 case 0:
7410 if (bit (insn1, 6))
7411 {
7412 /* Load/store {dual, execlusive}, table branch. */
7413 if (bits (insn1, 7, 8) == 1 && bits (insn1, 4, 5) == 1
7414 && bits (insn2, 5, 7) == 0)
7415 err = thumb2_copy_table_branch (gdbarch, insn1, insn2, regs,
7416 dsc);
7417 else
7418 /* PC is not allowed to use in load/store {dual, exclusive}
7419 instructions. */
7420 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7421 "load/store dual/ex", dsc);
7422 }
7423 else /* load/store multiple */
7424 {
7425 switch (bits (insn1, 7, 8))
7426 {
7427 case 0: case 3: /* SRS, RFE */
7428 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7429 "srs/rfe", dsc);
7430 break;
7431 case 1: case 2: /* LDM/STM/PUSH/POP */
7432 err = thumb2_copy_block_xfer (gdbarch, insn1, insn2, regs, dsc);
7433 break;
7434 }
7435 }
7436 break;
7437
7438 case 1:
7439 /* Data-processing (shift register). */
7440 err = thumb2_decode_dp_shift_reg (gdbarch, insn1, insn2, regs,
7441 dsc);
7442 break;
7443 default: /* Coprocessor instructions. */
7444 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
7445 break;
7446 }
7447 break;
7448 }
7449 case 2: /* op1 = 2 */
7450 if (op) /* Branch and misc control. */
7451 {
7452 if (bit (insn2, 14) /* BLX/BL */
7453 || bit (insn2, 12) /* Unconditional branch */
7454 || (bits (insn1, 7, 9) != 0x7)) /* Conditional branch */
7455 err = thumb2_copy_b_bl_blx (gdbarch, insn1, insn2, regs, dsc);
7456 else
7457 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7458 "misc ctrl", dsc);
7459 }
7460 else
7461 {
7462 if (bit (insn1, 9)) /* Data processing (plain binary imm). */
7463 {
7464 int op = bits (insn1, 4, 8);
7465 int rn = bits (insn1, 0, 3);
7466 if ((op == 0 || op == 0xa) && rn == 0xf)
7467 err = thumb_copy_pc_relative_32bit (gdbarch, insn1, insn2,
7468 regs, dsc);
7469 else
7470 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7471 "dp/pb", dsc);
7472 }
7473 else /* Data processing (modified immeidate) */
7474 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7475 "dp/mi", dsc);
7476 }
7477 break;
7478 case 3: /* op1 = 3 */
7479 switch (bits (insn1, 9, 10))
7480 {
7481 case 0:
7482 if (bit (insn1, 4))
7483 err = decode_thumb_32bit_ld_mem_hints (gdbarch, insn1, insn2,
7484 regs, dsc);
7485 else /* NEON Load/Store and Store single data item */
7486 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7487 "neon elt/struct load/store",
7488 dsc);
7489 break;
7490 case 1: /* op1 = 3, bits (9, 10) == 1 */
7491 switch (bits (insn1, 7, 8))
7492 {
7493 case 0: case 1: /* Data processing (register) */
7494 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7495 "dp(reg)", dsc);
7496 break;
7497 case 2: /* Multiply and absolute difference */
7498 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7499 "mul/mua/diff", dsc);
7500 break;
7501 case 3: /* Long multiply and divide */
7502 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7503 "lmul/lmua", dsc);
7504 break;
7505 }
7506 break;
7507 default: /* Coprocessor instructions */
7508 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
7509 break;
7510 }
7511 break;
7512 default:
7513 err = 1;
7514 }
7515
7516 if (err)
7517 internal_error (__FILE__, __LINE__,
7518 _("thumb_process_displaced_32bit_insn: Instruction decode error"));
7519
7520}
7521
b434a28f
YQ
7522static void
7523thumb_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
12545665 7524 struct regcache *regs,
cfba9872 7525 arm_displaced_step_closure *dsc)
b434a28f 7526{
34518530
YQ
7527 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
7528 uint16_t insn1
7529 = read_memory_unsigned_integer (from, 2, byte_order_for_code);
7530
7531 if (debug_displaced)
7532 fprintf_unfiltered (gdb_stdlog, "displaced: process thumb insn %.4x "
7533 "at %.8lx\n", insn1, (unsigned long) from);
7534
7535 dsc->is_thumb = 1;
7536 dsc->insn_size = thumb_insn_size (insn1);
7537 if (thumb_insn_size (insn1) == 4)
7538 {
7539 uint16_t insn2
7540 = read_memory_unsigned_integer (from + 2, 2, byte_order_for_code);
7541 thumb_process_displaced_32bit_insn (gdbarch, insn1, insn2, regs, dsc);
7542 }
7543 else
7544 thumb_process_displaced_16bit_insn (gdbarch, insn1, regs, dsc);
b434a28f
YQ
7545}
7546
cca44b1b 7547void
b434a28f
YQ
7548arm_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
7549 CORE_ADDR to, struct regcache *regs,
cfba9872 7550 arm_displaced_step_closure *dsc)
cca44b1b
JB
7551{
7552 int err = 0;
b434a28f
YQ
7553 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
7554 uint32_t insn;
cca44b1b
JB
7555
7556 /* Most displaced instructions use a 1-instruction scratch space, so set this
7557 here and override below if/when necessary. */
7558 dsc->numinsns = 1;
7559 dsc->insn_addr = from;
7560 dsc->scratch_base = to;
7561 dsc->cleanup = NULL;
7562 dsc->wrote_to_pc = 0;
7563
b434a28f 7564 if (!displaced_in_arm_mode (regs))
12545665 7565 return thumb_process_displaced_insn (gdbarch, from, regs, dsc);
b434a28f 7566
4db71c0b
YQ
7567 dsc->is_thumb = 0;
7568 dsc->insn_size = 4;
b434a28f
YQ
7569 insn = read_memory_unsigned_integer (from, 4, byte_order_for_code);
7570 if (debug_displaced)
7571 fprintf_unfiltered (gdb_stdlog, "displaced: stepping insn %.8lx "
7572 "at %.8lx\n", (unsigned long) insn,
7573 (unsigned long) from);
7574
cca44b1b 7575 if ((insn & 0xf0000000) == 0xf0000000)
7ff120b4 7576 err = arm_decode_unconditional (gdbarch, insn, regs, dsc);
cca44b1b
JB
7577 else switch (((insn & 0x10) >> 4) | ((insn & 0xe000000) >> 24))
7578 {
7579 case 0x0: case 0x1: case 0x2: case 0x3:
7ff120b4 7580 err = arm_decode_dp_misc (gdbarch, insn, regs, dsc);
cca44b1b
JB
7581 break;
7582
7583 case 0x4: case 0x5: case 0x6:
7ff120b4 7584 err = arm_decode_ld_st_word_ubyte (gdbarch, insn, regs, dsc);
cca44b1b
JB
7585 break;
7586
7587 case 0x7:
7ff120b4 7588 err = arm_decode_media (gdbarch, insn, dsc);
cca44b1b
JB
7589 break;
7590
7591 case 0x8: case 0x9: case 0xa: case 0xb:
7ff120b4 7592 err = arm_decode_b_bl_ldmstm (gdbarch, insn, regs, dsc);
cca44b1b
JB
7593 break;
7594
7595 case 0xc: case 0xd: case 0xe: case 0xf:
12545665 7596 err = arm_decode_svc_copro (gdbarch, insn, regs, dsc);
cca44b1b
JB
7597 break;
7598 }
7599
7600 if (err)
7601 internal_error (__FILE__, __LINE__,
7602 _("arm_process_displaced_insn: Instruction decode error"));
7603}
7604
7605/* Actually set up the scratch space for a displaced instruction. */
7606
7607void
7608arm_displaced_init_closure (struct gdbarch *gdbarch, CORE_ADDR from,
cfba9872 7609 CORE_ADDR to, arm_displaced_step_closure *dsc)
cca44b1b
JB
7610{
7611 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
4db71c0b 7612 unsigned int i, len, offset;
cca44b1b 7613 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
4db71c0b 7614 int size = dsc->is_thumb? 2 : 4;
948f8e3d 7615 const gdb_byte *bkp_insn;
cca44b1b 7616
4db71c0b 7617 offset = 0;
cca44b1b
JB
7618 /* Poke modified instruction(s). */
7619 for (i = 0; i < dsc->numinsns; i++)
7620 {
7621 if (debug_displaced)
4db71c0b
YQ
7622 {
7623 fprintf_unfiltered (gdb_stdlog, "displaced: writing insn ");
7624 if (size == 4)
7625 fprintf_unfiltered (gdb_stdlog, "%.8lx",
7626 dsc->modinsn[i]);
7627 else if (size == 2)
7628 fprintf_unfiltered (gdb_stdlog, "%.4x",
7629 (unsigned short)dsc->modinsn[i]);
7630
7631 fprintf_unfiltered (gdb_stdlog, " at %.8lx\n",
7632 (unsigned long) to + offset);
7633
7634 }
7635 write_memory_unsigned_integer (to + offset, size,
7636 byte_order_for_code,
cca44b1b 7637 dsc->modinsn[i]);
4db71c0b
YQ
7638 offset += size;
7639 }
7640
7641 /* Choose the correct breakpoint instruction. */
7642 if (dsc->is_thumb)
7643 {
7644 bkp_insn = tdep->thumb_breakpoint;
7645 len = tdep->thumb_breakpoint_size;
7646 }
7647 else
7648 {
7649 bkp_insn = tdep->arm_breakpoint;
7650 len = tdep->arm_breakpoint_size;
cca44b1b
JB
7651 }
7652
7653 /* Put breakpoint afterwards. */
4db71c0b 7654 write_memory (to + offset, bkp_insn, len);
cca44b1b
JB
7655
7656 if (debug_displaced)
7657 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
7658 paddress (gdbarch, from), paddress (gdbarch, to));
7659}
7660
cca44b1b
JB
7661/* Entry point for cleaning things up after a displaced instruction has been
7662 single-stepped. */
7663
7664void
7665arm_displaced_step_fixup (struct gdbarch *gdbarch,
cfba9872 7666 struct displaced_step_closure *dsc_,
cca44b1b
JB
7667 CORE_ADDR from, CORE_ADDR to,
7668 struct regcache *regs)
7669{
cfba9872
SM
7670 arm_displaced_step_closure *dsc = (arm_displaced_step_closure *) dsc_;
7671
cca44b1b
JB
7672 if (dsc->cleanup)
7673 dsc->cleanup (gdbarch, regs, dsc);
7674
7675 if (!dsc->wrote_to_pc)
4db71c0b
YQ
7676 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
7677 dsc->insn_addr + dsc->insn_size);
7678
cca44b1b
JB
7679}
7680
7681#include "bfd-in2.h"
7682#include "libcoff.h"
7683
7684static int
7685gdb_print_insn_arm (bfd_vma memaddr, disassemble_info *info)
7686{
e47ad6c0
YQ
7687 gdb_disassembler *di
7688 = static_cast<gdb_disassembler *>(info->application_data);
7689 struct gdbarch *gdbarch = di->arch ();
9779414d
DJ
7690
7691 if (arm_pc_is_thumb (gdbarch, memaddr))
cca44b1b
JB
7692 {
7693 static asymbol *asym;
7694 static combined_entry_type ce;
7695 static struct coff_symbol_struct csym;
7696 static struct bfd fake_bfd;
7697 static bfd_target fake_target;
7698
7699 if (csym.native == NULL)
7700 {
7701 /* Create a fake symbol vector containing a Thumb symbol.
7702 This is solely so that the code in print_insn_little_arm()
7703 and print_insn_big_arm() in opcodes/arm-dis.c will detect
7704 the presence of a Thumb symbol and switch to decoding
7705 Thumb instructions. */
7706
7707 fake_target.flavour = bfd_target_coff_flavour;
7708 fake_bfd.xvec = &fake_target;
7709 ce.u.syment.n_sclass = C_THUMBEXTFUNC;
7710 csym.native = &ce;
7711 csym.symbol.the_bfd = &fake_bfd;
7712 csym.symbol.name = "fake";
7713 asym = (asymbol *) & csym;
7714 }
7715
7716 memaddr = UNMAKE_THUMB_ADDR (memaddr);
7717 info->symbols = &asym;
7718 }
7719 else
7720 info->symbols = NULL;
7721
e60eb288
YQ
7722 /* GDB is able to get bfd_mach from the exe_bfd, info->mach is
7723 accurate, so mark USER_SPECIFIED_MACHINE_TYPE bit. Otherwise,
7724 opcodes/arm-dis.c:print_insn reset info->mach, and it will trigger
7725 the assert on the mismatch of info->mach and bfd_get_mach (exec_bfd)
7726 in default_print_insn. */
7727 if (exec_bfd != NULL)
7728 info->flags |= USER_SPECIFIED_MACHINE_TYPE;
7729
6394c606 7730 return default_print_insn (memaddr, info);
cca44b1b
JB
7731}
7732
7733/* The following define instruction sequences that will cause ARM
7734 cpu's to take an undefined instruction trap. These are used to
7735 signal a breakpoint to GDB.
7736
7737 The newer ARMv4T cpu's are capable of operating in ARM or Thumb
7738 modes. A different instruction is required for each mode. The ARM
7739 cpu's can also be big or little endian. Thus four different
7740 instructions are needed to support all cases.
7741
7742 Note: ARMv4 defines several new instructions that will take the
7743 undefined instruction trap. ARM7TDMI is nominally ARMv4T, but does
7744 not in fact add the new instructions. The new undefined
7745 instructions in ARMv4 are all instructions that had no defined
7746 behaviour in earlier chips. There is no guarantee that they will
7747 raise an exception, but may be treated as NOP's. In practice, it
7748 may only safe to rely on instructions matching:
7749
7750 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
7751 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
7752 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
7753
0963b4bd 7754 Even this may only true if the condition predicate is true. The
cca44b1b
JB
7755 following use a condition predicate of ALWAYS so it is always TRUE.
7756
7757 There are other ways of forcing a breakpoint. GNU/Linux, RISC iX,
7758 and NetBSD all use a software interrupt rather than an undefined
7759 instruction to force a trap. This can be handled by by the
7760 abi-specific code during establishment of the gdbarch vector. */
7761
7762#define ARM_LE_BREAKPOINT {0xFE,0xDE,0xFF,0xE7}
7763#define ARM_BE_BREAKPOINT {0xE7,0xFF,0xDE,0xFE}
7764#define THUMB_LE_BREAKPOINT {0xbe,0xbe}
7765#define THUMB_BE_BREAKPOINT {0xbe,0xbe}
7766
948f8e3d
PA
7767static const gdb_byte arm_default_arm_le_breakpoint[] = ARM_LE_BREAKPOINT;
7768static const gdb_byte arm_default_arm_be_breakpoint[] = ARM_BE_BREAKPOINT;
7769static const gdb_byte arm_default_thumb_le_breakpoint[] = THUMB_LE_BREAKPOINT;
7770static const gdb_byte arm_default_thumb_be_breakpoint[] = THUMB_BE_BREAKPOINT;
cca44b1b 7771
cd6c3b4f
YQ
7772/* Implement the breakpoint_kind_from_pc gdbarch method. */
7773
d19280ad
YQ
7774static int
7775arm_breakpoint_kind_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr)
cca44b1b
JB
7776{
7777 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
177321bd 7778 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
cca44b1b 7779
9779414d 7780 if (arm_pc_is_thumb (gdbarch, *pcptr))
cca44b1b
JB
7781 {
7782 *pcptr = UNMAKE_THUMB_ADDR (*pcptr);
177321bd
DJ
7783
7784 /* If we have a separate 32-bit breakpoint instruction for Thumb-2,
7785 check whether we are replacing a 32-bit instruction. */
7786 if (tdep->thumb2_breakpoint != NULL)
7787 {
7788 gdb_byte buf[2];
d19280ad 7789
177321bd
DJ
7790 if (target_read_memory (*pcptr, buf, 2) == 0)
7791 {
7792 unsigned short inst1;
d19280ad 7793
177321bd 7794 inst1 = extract_unsigned_integer (buf, 2, byte_order_for_code);
db24da6d 7795 if (thumb_insn_size (inst1) == 4)
d19280ad 7796 return ARM_BP_KIND_THUMB2;
177321bd
DJ
7797 }
7798 }
7799
d19280ad 7800 return ARM_BP_KIND_THUMB;
cca44b1b
JB
7801 }
7802 else
d19280ad
YQ
7803 return ARM_BP_KIND_ARM;
7804
7805}
7806
cd6c3b4f
YQ
7807/* Implement the sw_breakpoint_from_kind gdbarch method. */
7808
d19280ad
YQ
7809static const gdb_byte *
7810arm_sw_breakpoint_from_kind (struct gdbarch *gdbarch, int kind, int *size)
7811{
7812 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
7813
7814 switch (kind)
cca44b1b 7815 {
d19280ad
YQ
7816 case ARM_BP_KIND_ARM:
7817 *size = tdep->arm_breakpoint_size;
cca44b1b 7818 return tdep->arm_breakpoint;
d19280ad
YQ
7819 case ARM_BP_KIND_THUMB:
7820 *size = tdep->thumb_breakpoint_size;
7821 return tdep->thumb_breakpoint;
7822 case ARM_BP_KIND_THUMB2:
7823 *size = tdep->thumb2_breakpoint_size;
7824 return tdep->thumb2_breakpoint;
7825 default:
7826 gdb_assert_not_reached ("unexpected arm breakpoint kind");
cca44b1b
JB
7827 }
7828}
7829
833b7ab5
YQ
7830/* Implement the breakpoint_kind_from_current_state gdbarch method. */
7831
7832static int
7833arm_breakpoint_kind_from_current_state (struct gdbarch *gdbarch,
7834 struct regcache *regcache,
7835 CORE_ADDR *pcptr)
7836{
7837 gdb_byte buf[4];
7838
7839 /* Check the memory pointed by PC is readable. */
7840 if (target_read_memory (regcache_read_pc (regcache), buf, 4) == 0)
7841 {
7842 struct arm_get_next_pcs next_pcs_ctx;
833b7ab5
YQ
7843
7844 arm_get_next_pcs_ctor (&next_pcs_ctx,
7845 &arm_get_next_pcs_ops,
7846 gdbarch_byte_order (gdbarch),
7847 gdbarch_byte_order_for_code (gdbarch),
7848 0,
7849 regcache);
7850
a0ff9e1a 7851 std::vector<CORE_ADDR> next_pcs = arm_get_next_pcs (&next_pcs_ctx);
833b7ab5
YQ
7852
7853 /* If MEMADDR is the next instruction of current pc, do the
7854 software single step computation, and get the thumb mode by
7855 the destination address. */
a0ff9e1a 7856 for (CORE_ADDR pc : next_pcs)
833b7ab5
YQ
7857 {
7858 if (UNMAKE_THUMB_ADDR (pc) == *pcptr)
7859 {
833b7ab5
YQ
7860 if (IS_THUMB_ADDR (pc))
7861 {
7862 *pcptr = MAKE_THUMB_ADDR (*pcptr);
7863 return arm_breakpoint_kind_from_pc (gdbarch, pcptr);
7864 }
7865 else
7866 return ARM_BP_KIND_ARM;
7867 }
7868 }
833b7ab5
YQ
7869 }
7870
7871 return arm_breakpoint_kind_from_pc (gdbarch, pcptr);
7872}
7873
cca44b1b
JB
7874/* Extract from an array REGBUF containing the (raw) register state a
7875 function return value of type TYPE, and copy that, in virtual
7876 format, into VALBUF. */
7877
7878static void
7879arm_extract_return_value (struct type *type, struct regcache *regs,
7880 gdb_byte *valbuf)
7881{
ac7936df 7882 struct gdbarch *gdbarch = regs->arch ();
cca44b1b
JB
7883 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7884
7885 if (TYPE_CODE_FLT == TYPE_CODE (type))
7886 {
7887 switch (gdbarch_tdep (gdbarch)->fp_model)
7888 {
7889 case ARM_FLOAT_FPA:
7890 {
7891 /* The value is in register F0 in internal format. We need to
7892 extract the raw value and then convert it to the desired
7893 internal type. */
7894 bfd_byte tmpbuf[FP_REGISTER_SIZE];
7895
dca08e1f 7896 regs->cooked_read (ARM_F0_REGNUM, tmpbuf);
3b2ca824
UW
7897 target_float_convert (tmpbuf, arm_ext_type (gdbarch),
7898 valbuf, type);
cca44b1b
JB
7899 }
7900 break;
7901
7902 case ARM_FLOAT_SOFT_FPA:
7903 case ARM_FLOAT_SOFT_VFP:
7904 /* ARM_FLOAT_VFP can arise if this is a variadic function so
7905 not using the VFP ABI code. */
7906 case ARM_FLOAT_VFP:
dca08e1f 7907 regs->cooked_read (ARM_A1_REGNUM, valbuf);
cca44b1b 7908 if (TYPE_LENGTH (type) > 4)
dca08e1f 7909 regs->cooked_read (ARM_A1_REGNUM + 1, valbuf + INT_REGISTER_SIZE);
cca44b1b
JB
7910 break;
7911
7912 default:
0963b4bd
MS
7913 internal_error (__FILE__, __LINE__,
7914 _("arm_extract_return_value: "
7915 "Floating point model not supported"));
cca44b1b
JB
7916 break;
7917 }
7918 }
7919 else if (TYPE_CODE (type) == TYPE_CODE_INT
7920 || TYPE_CODE (type) == TYPE_CODE_CHAR
7921 || TYPE_CODE (type) == TYPE_CODE_BOOL
7922 || TYPE_CODE (type) == TYPE_CODE_PTR
aa006118 7923 || TYPE_IS_REFERENCE (type)
cca44b1b
JB
7924 || TYPE_CODE (type) == TYPE_CODE_ENUM)
7925 {
b021a221
MS
7926 /* If the type is a plain integer, then the access is
7927 straight-forward. Otherwise we have to play around a bit
7928 more. */
cca44b1b
JB
7929 int len = TYPE_LENGTH (type);
7930 int regno = ARM_A1_REGNUM;
7931 ULONGEST tmp;
7932
7933 while (len > 0)
7934 {
7935 /* By using store_unsigned_integer we avoid having to do
7936 anything special for small big-endian values. */
7937 regcache_cooked_read_unsigned (regs, regno++, &tmp);
7938 store_unsigned_integer (valbuf,
7939 (len > INT_REGISTER_SIZE
7940 ? INT_REGISTER_SIZE : len),
7941 byte_order, tmp);
7942 len -= INT_REGISTER_SIZE;
7943 valbuf += INT_REGISTER_SIZE;
7944 }
7945 }
7946 else
7947 {
7948 /* For a structure or union the behaviour is as if the value had
7949 been stored to word-aligned memory and then loaded into
7950 registers with 32-bit load instruction(s). */
7951 int len = TYPE_LENGTH (type);
7952 int regno = ARM_A1_REGNUM;
7953 bfd_byte tmpbuf[INT_REGISTER_SIZE];
7954
7955 while (len > 0)
7956 {
dca08e1f 7957 regs->cooked_read (regno++, tmpbuf);
cca44b1b
JB
7958 memcpy (valbuf, tmpbuf,
7959 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
7960 len -= INT_REGISTER_SIZE;
7961 valbuf += INT_REGISTER_SIZE;
7962 }
7963 }
7964}
7965
7966
7967/* Will a function return an aggregate type in memory or in a
7968 register? Return 0 if an aggregate type can be returned in a
7969 register, 1 if it must be returned in memory. */
7970
7971static int
7972arm_return_in_memory (struct gdbarch *gdbarch, struct type *type)
7973{
cca44b1b
JB
7974 enum type_code code;
7975
f168693b 7976 type = check_typedef (type);
cca44b1b 7977
b13c8ab2
YQ
7978 /* Simple, non-aggregate types (ie not including vectors and
7979 complex) are always returned in a register (or registers). */
7980 code = TYPE_CODE (type);
7981 if (TYPE_CODE_STRUCT != code && TYPE_CODE_UNION != code
7982 && TYPE_CODE_ARRAY != code && TYPE_CODE_COMPLEX != code)
7983 return 0;
cca44b1b 7984
c4312b19
YQ
7985 if (TYPE_CODE_ARRAY == code && TYPE_VECTOR (type))
7986 {
7987 /* Vector values should be returned using ARM registers if they
7988 are not over 16 bytes. */
7989 return (TYPE_LENGTH (type) > 16);
7990 }
7991
b13c8ab2 7992 if (gdbarch_tdep (gdbarch)->arm_abi != ARM_ABI_APCS)
cca44b1b 7993 {
b13c8ab2
YQ
7994 /* The AAPCS says all aggregates not larger than a word are returned
7995 in a register. */
7996 if (TYPE_LENGTH (type) <= INT_REGISTER_SIZE)
7997 return 0;
7998
cca44b1b
JB
7999 return 1;
8000 }
b13c8ab2
YQ
8001 else
8002 {
8003 int nRc;
cca44b1b 8004
b13c8ab2
YQ
8005 /* All aggregate types that won't fit in a register must be returned
8006 in memory. */
8007 if (TYPE_LENGTH (type) > INT_REGISTER_SIZE)
8008 return 1;
cca44b1b 8009
b13c8ab2
YQ
8010 /* In the ARM ABI, "integer" like aggregate types are returned in
8011 registers. For an aggregate type to be integer like, its size
8012 must be less than or equal to INT_REGISTER_SIZE and the
8013 offset of each addressable subfield must be zero. Note that bit
8014 fields are not addressable, and all addressable subfields of
8015 unions always start at offset zero.
cca44b1b 8016
b13c8ab2
YQ
8017 This function is based on the behaviour of GCC 2.95.1.
8018 See: gcc/arm.c: arm_return_in_memory() for details.
cca44b1b 8019
b13c8ab2
YQ
8020 Note: All versions of GCC before GCC 2.95.2 do not set up the
8021 parameters correctly for a function returning the following
8022 structure: struct { float f;}; This should be returned in memory,
8023 not a register. Richard Earnshaw sent me a patch, but I do not
8024 know of any way to detect if a function like the above has been
8025 compiled with the correct calling convention. */
8026
8027 /* Assume all other aggregate types can be returned in a register.
8028 Run a check for structures, unions and arrays. */
8029 nRc = 0;
67255d04 8030
b13c8ab2
YQ
8031 if ((TYPE_CODE_STRUCT == code) || (TYPE_CODE_UNION == code))
8032 {
8033 int i;
8034 /* Need to check if this struct/union is "integer" like. For
8035 this to be true, its size must be less than or equal to
8036 INT_REGISTER_SIZE and the offset of each addressable
8037 subfield must be zero. Note that bit fields are not
8038 addressable, and unions always start at offset zero. If any
8039 of the subfields is a floating point type, the struct/union
8040 cannot be an integer type. */
8041
8042 /* For each field in the object, check:
8043 1) Is it FP? --> yes, nRc = 1;
8044 2) Is it addressable (bitpos != 0) and
8045 not packed (bitsize == 0)?
8046 --> yes, nRc = 1
8047 */
8048
8049 for (i = 0; i < TYPE_NFIELDS (type); i++)
67255d04 8050 {
b13c8ab2
YQ
8051 enum type_code field_type_code;
8052
8053 field_type_code
8054 = TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type,
8055 i)));
8056
8057 /* Is it a floating point type field? */
8058 if (field_type_code == TYPE_CODE_FLT)
67255d04
RE
8059 {
8060 nRc = 1;
8061 break;
8062 }
b13c8ab2
YQ
8063
8064 /* If bitpos != 0, then we have to care about it. */
8065 if (TYPE_FIELD_BITPOS (type, i) != 0)
8066 {
8067 /* Bitfields are not addressable. If the field bitsize is
8068 zero, then the field is not packed. Hence it cannot be
8069 a bitfield or any other packed type. */
8070 if (TYPE_FIELD_BITSIZE (type, i) == 0)
8071 {
8072 nRc = 1;
8073 break;
8074 }
8075 }
67255d04
RE
8076 }
8077 }
67255d04 8078
b13c8ab2
YQ
8079 return nRc;
8080 }
67255d04
RE
8081}
8082
34e8f22d
RE
8083/* Write into appropriate registers a function return value of type
8084 TYPE, given in virtual format. */
8085
8086static void
b508a996 8087arm_store_return_value (struct type *type, struct regcache *regs,
5238cf52 8088 const gdb_byte *valbuf)
34e8f22d 8089{
ac7936df 8090 struct gdbarch *gdbarch = regs->arch ();
e17a4113 8091 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
be8626e0 8092
34e8f22d
RE
8093 if (TYPE_CODE (type) == TYPE_CODE_FLT)
8094 {
64403bd1 8095 gdb_byte buf[FP_REGISTER_SIZE];
34e8f22d 8096
be8626e0 8097 switch (gdbarch_tdep (gdbarch)->fp_model)
08216dd7
RE
8098 {
8099 case ARM_FLOAT_FPA:
8100
3b2ca824 8101 target_float_convert (valbuf, type, buf, arm_ext_type (gdbarch));
b508a996 8102 regcache_cooked_write (regs, ARM_F0_REGNUM, buf);
08216dd7
RE
8103 break;
8104
fd50bc42 8105 case ARM_FLOAT_SOFT_FPA:
08216dd7 8106 case ARM_FLOAT_SOFT_VFP:
90445bd3
DJ
8107 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8108 not using the VFP ABI code. */
8109 case ARM_FLOAT_VFP:
b508a996
RE
8110 regcache_cooked_write (regs, ARM_A1_REGNUM, valbuf);
8111 if (TYPE_LENGTH (type) > 4)
8112 regcache_cooked_write (regs, ARM_A1_REGNUM + 1,
7a5ea0d4 8113 valbuf + INT_REGISTER_SIZE);
08216dd7
RE
8114 break;
8115
8116 default:
9b20d036
MS
8117 internal_error (__FILE__, __LINE__,
8118 _("arm_store_return_value: Floating "
8119 "point model not supported"));
08216dd7
RE
8120 break;
8121 }
34e8f22d 8122 }
b508a996
RE
8123 else if (TYPE_CODE (type) == TYPE_CODE_INT
8124 || TYPE_CODE (type) == TYPE_CODE_CHAR
8125 || TYPE_CODE (type) == TYPE_CODE_BOOL
8126 || TYPE_CODE (type) == TYPE_CODE_PTR
aa006118 8127 || TYPE_IS_REFERENCE (type)
b508a996
RE
8128 || TYPE_CODE (type) == TYPE_CODE_ENUM)
8129 {
8130 if (TYPE_LENGTH (type) <= 4)
8131 {
8132 /* Values of one word or less are zero/sign-extended and
8133 returned in r0. */
7a5ea0d4 8134 bfd_byte tmpbuf[INT_REGISTER_SIZE];
b508a996
RE
8135 LONGEST val = unpack_long (type, valbuf);
8136
e17a4113 8137 store_signed_integer (tmpbuf, INT_REGISTER_SIZE, byte_order, val);
b508a996
RE
8138 regcache_cooked_write (regs, ARM_A1_REGNUM, tmpbuf);
8139 }
8140 else
8141 {
8142 /* Integral values greater than one word are stored in consecutive
8143 registers starting with r0. This will always be a multiple of
8144 the regiser size. */
8145 int len = TYPE_LENGTH (type);
8146 int regno = ARM_A1_REGNUM;
8147
8148 while (len > 0)
8149 {
8150 regcache_cooked_write (regs, regno++, valbuf);
7a5ea0d4
DJ
8151 len -= INT_REGISTER_SIZE;
8152 valbuf += INT_REGISTER_SIZE;
b508a996
RE
8153 }
8154 }
8155 }
34e8f22d 8156 else
b508a996
RE
8157 {
8158 /* For a structure or union the behaviour is as if the value had
8159 been stored to word-aligned memory and then loaded into
8160 registers with 32-bit load instruction(s). */
8161 int len = TYPE_LENGTH (type);
8162 int regno = ARM_A1_REGNUM;
7a5ea0d4 8163 bfd_byte tmpbuf[INT_REGISTER_SIZE];
b508a996
RE
8164
8165 while (len > 0)
8166 {
8167 memcpy (tmpbuf, valbuf,
7a5ea0d4 8168 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
b508a996 8169 regcache_cooked_write (regs, regno++, tmpbuf);
7a5ea0d4
DJ
8170 len -= INT_REGISTER_SIZE;
8171 valbuf += INT_REGISTER_SIZE;
b508a996
RE
8172 }
8173 }
34e8f22d
RE
8174}
8175
2af48f68
PB
8176
8177/* Handle function return values. */
8178
8179static enum return_value_convention
6a3a010b 8180arm_return_value (struct gdbarch *gdbarch, struct value *function,
c055b101
CV
8181 struct type *valtype, struct regcache *regcache,
8182 gdb_byte *readbuf, const gdb_byte *writebuf)
2af48f68 8183{
7c00367c 8184 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
6a3a010b 8185 struct type *func_type = function ? value_type (function) : NULL;
90445bd3
DJ
8186 enum arm_vfp_cprc_base_type vfp_base_type;
8187 int vfp_base_count;
8188
8189 if (arm_vfp_abi_for_function (gdbarch, func_type)
8190 && arm_vfp_call_candidate (valtype, &vfp_base_type, &vfp_base_count))
8191 {
8192 int reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
8193 int unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
8194 int i;
8195 for (i = 0; i < vfp_base_count; i++)
8196 {
58d6951d
DJ
8197 if (reg_char == 'q')
8198 {
8199 if (writebuf)
8200 arm_neon_quad_write (gdbarch, regcache, i,
8201 writebuf + i * unit_length);
8202
8203 if (readbuf)
8204 arm_neon_quad_read (gdbarch, regcache, i,
8205 readbuf + i * unit_length);
8206 }
8207 else
8208 {
8209 char name_buf[4];
8210 int regnum;
8211
8c042590 8212 xsnprintf (name_buf, sizeof (name_buf), "%c%d", reg_char, i);
58d6951d
DJ
8213 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8214 strlen (name_buf));
8215 if (writebuf)
8216 regcache_cooked_write (regcache, regnum,
8217 writebuf + i * unit_length);
8218 if (readbuf)
dca08e1f 8219 regcache->cooked_read (regnum, readbuf + i * unit_length);
58d6951d 8220 }
90445bd3
DJ
8221 }
8222 return RETURN_VALUE_REGISTER_CONVENTION;
8223 }
7c00367c 8224
2af48f68
PB
8225 if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
8226 || TYPE_CODE (valtype) == TYPE_CODE_UNION
8227 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
8228 {
7c00367c
MK
8229 if (tdep->struct_return == pcc_struct_return
8230 || arm_return_in_memory (gdbarch, valtype))
2af48f68
PB
8231 return RETURN_VALUE_STRUCT_CONVENTION;
8232 }
b13c8ab2
YQ
8233 else if (TYPE_CODE (valtype) == TYPE_CODE_COMPLEX)
8234 {
8235 if (arm_return_in_memory (gdbarch, valtype))
8236 return RETURN_VALUE_STRUCT_CONVENTION;
8237 }
7052e42c 8238
2af48f68
PB
8239 if (writebuf)
8240 arm_store_return_value (valtype, regcache, writebuf);
8241
8242 if (readbuf)
8243 arm_extract_return_value (valtype, regcache, readbuf);
8244
8245 return RETURN_VALUE_REGISTER_CONVENTION;
8246}
8247
8248
9df628e0 8249static int
60ade65d 8250arm_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
9df628e0 8251{
e17a4113
UW
8252 struct gdbarch *gdbarch = get_frame_arch (frame);
8253 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
8254 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
9df628e0 8255 CORE_ADDR jb_addr;
e362b510 8256 gdb_byte buf[INT_REGISTER_SIZE];
9df628e0 8257
60ade65d 8258 jb_addr = get_frame_register_unsigned (frame, ARM_A1_REGNUM);
9df628e0
RE
8259
8260 if (target_read_memory (jb_addr + tdep->jb_pc * tdep->jb_elt_size, buf,
7a5ea0d4 8261 INT_REGISTER_SIZE))
9df628e0
RE
8262 return 0;
8263
e17a4113 8264 *pc = extract_unsigned_integer (buf, INT_REGISTER_SIZE, byte_order);
9df628e0
RE
8265 return 1;
8266}
8267
faa95490
DJ
8268/* Recognize GCC and GNU ld's trampolines. If we are in a trampoline,
8269 return the target PC. Otherwise return 0. */
c906108c
SS
8270
8271CORE_ADDR
52f729a7 8272arm_skip_stub (struct frame_info *frame, CORE_ADDR pc)
c906108c 8273{
2c02bd72 8274 const char *name;
faa95490 8275 int namelen;
c906108c
SS
8276 CORE_ADDR start_addr;
8277
8278 /* Find the starting address and name of the function containing the PC. */
8279 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
80d8d390
YQ
8280 {
8281 /* Trampoline 'bx reg' doesn't belong to any functions. Do the
8282 check here. */
8283 start_addr = arm_skip_bx_reg (frame, pc);
8284 if (start_addr != 0)
8285 return start_addr;
8286
8287 return 0;
8288 }
c906108c 8289
faa95490
DJ
8290 /* If PC is in a Thumb call or return stub, return the address of the
8291 target PC, which is in a register. The thunk functions are called
8292 _call_via_xx, where x is the register name. The possible names
3d8d5e79
DJ
8293 are r0-r9, sl, fp, ip, sp, and lr. ARM RealView has similar
8294 functions, named __ARM_call_via_r[0-7]. */
61012eef
GB
8295 if (startswith (name, "_call_via_")
8296 || startswith (name, "__ARM_call_via_"))
c906108c 8297 {
ed9a39eb
JM
8298 /* Use the name suffix to determine which register contains the
8299 target PC. */
a121b7c1 8300 static const char *table[15] =
c5aa993b
JM
8301 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
8302 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
8303 };
c906108c 8304 int regno;
faa95490 8305 int offset = strlen (name) - 2;
c906108c
SS
8306
8307 for (regno = 0; regno <= 14; regno++)
faa95490 8308 if (strcmp (&name[offset], table[regno]) == 0)
52f729a7 8309 return get_frame_register_unsigned (frame, regno);
c906108c 8310 }
ed9a39eb 8311
faa95490
DJ
8312 /* GNU ld generates __foo_from_arm or __foo_from_thumb for
8313 non-interworking calls to foo. We could decode the stubs
8314 to find the target but it's easier to use the symbol table. */
8315 namelen = strlen (name);
8316 if (name[0] == '_' && name[1] == '_'
8317 && ((namelen > 2 + strlen ("_from_thumb")
61012eef 8318 && startswith (name + namelen - strlen ("_from_thumb"), "_from_thumb"))
faa95490 8319 || (namelen > 2 + strlen ("_from_arm")
61012eef 8320 && startswith (name + namelen - strlen ("_from_arm"), "_from_arm"))))
faa95490
DJ
8321 {
8322 char *target_name;
8323 int target_len = namelen - 2;
3b7344d5 8324 struct bound_minimal_symbol minsym;
faa95490
DJ
8325 struct objfile *objfile;
8326 struct obj_section *sec;
8327
8328 if (name[namelen - 1] == 'b')
8329 target_len -= strlen ("_from_thumb");
8330 else
8331 target_len -= strlen ("_from_arm");
8332
224c3ddb 8333 target_name = (char *) alloca (target_len + 1);
faa95490
DJ
8334 memcpy (target_name, name + 2, target_len);
8335 target_name[target_len] = '\0';
8336
8337 sec = find_pc_section (pc);
8338 objfile = (sec == NULL) ? NULL : sec->objfile;
8339 minsym = lookup_minimal_symbol (target_name, NULL, objfile);
3b7344d5 8340 if (minsym.minsym != NULL)
77e371c0 8341 return BMSYMBOL_VALUE_ADDRESS (minsym);
faa95490
DJ
8342 else
8343 return 0;
8344 }
8345
c5aa993b 8346 return 0; /* not a stub */
c906108c
SS
8347}
8348
afd7eef0 8349static void
981a3fb3 8350set_arm_command (const char *args, int from_tty)
afd7eef0 8351{
edefbb7c
AC
8352 printf_unfiltered (_("\
8353\"set arm\" must be followed by an apporpriate subcommand.\n"));
afd7eef0
RE
8354 help_list (setarmcmdlist, "set arm ", all_commands, gdb_stdout);
8355}
8356
8357static void
981a3fb3 8358show_arm_command (const char *args, int from_tty)
afd7eef0 8359{
26304000 8360 cmd_show_list (showarmcmdlist, from_tty, "");
afd7eef0
RE
8361}
8362
28e97307
DJ
8363static void
8364arm_update_current_architecture (void)
fd50bc42 8365{
28e97307 8366 struct gdbarch_info info;
fd50bc42 8367
28e97307 8368 /* If the current architecture is not ARM, we have nothing to do. */
f5656ead 8369 if (gdbarch_bfd_arch_info (target_gdbarch ())->arch != bfd_arch_arm)
28e97307 8370 return;
fd50bc42 8371
28e97307
DJ
8372 /* Update the architecture. */
8373 gdbarch_info_init (&info);
fd50bc42 8374
28e97307 8375 if (!gdbarch_update_p (info))
9b20d036 8376 internal_error (__FILE__, __LINE__, _("could not update architecture"));
fd50bc42
RE
8377}
8378
8379static void
eb4c3f4a 8380set_fp_model_sfunc (const char *args, int from_tty,
fd50bc42
RE
8381 struct cmd_list_element *c)
8382{
570dc176 8383 int fp_model;
fd50bc42
RE
8384
8385 for (fp_model = ARM_FLOAT_AUTO; fp_model != ARM_FLOAT_LAST; fp_model++)
8386 if (strcmp (current_fp_model, fp_model_strings[fp_model]) == 0)
8387 {
aead7601 8388 arm_fp_model = (enum arm_float_model) fp_model;
fd50bc42
RE
8389 break;
8390 }
8391
8392 if (fp_model == ARM_FLOAT_LAST)
edefbb7c 8393 internal_error (__FILE__, __LINE__, _("Invalid fp model accepted: %s."),
fd50bc42
RE
8394 current_fp_model);
8395
28e97307 8396 arm_update_current_architecture ();
fd50bc42
RE
8397}
8398
8399static void
08546159
AC
8400show_fp_model (struct ui_file *file, int from_tty,
8401 struct cmd_list_element *c, const char *value)
fd50bc42 8402{
f5656ead 8403 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch ());
fd50bc42 8404
28e97307 8405 if (arm_fp_model == ARM_FLOAT_AUTO
f5656ead 8406 && gdbarch_bfd_arch_info (target_gdbarch ())->arch == bfd_arch_arm)
28e97307
DJ
8407 fprintf_filtered (file, _("\
8408The current ARM floating point model is \"auto\" (currently \"%s\").\n"),
8409 fp_model_strings[tdep->fp_model]);
8410 else
8411 fprintf_filtered (file, _("\
8412The current ARM floating point model is \"%s\".\n"),
8413 fp_model_strings[arm_fp_model]);
8414}
8415
8416static void
eb4c3f4a 8417arm_set_abi (const char *args, int from_tty,
28e97307
DJ
8418 struct cmd_list_element *c)
8419{
570dc176 8420 int arm_abi;
28e97307
DJ
8421
8422 for (arm_abi = ARM_ABI_AUTO; arm_abi != ARM_ABI_LAST; arm_abi++)
8423 if (strcmp (arm_abi_string, arm_abi_strings[arm_abi]) == 0)
8424 {
aead7601 8425 arm_abi_global = (enum arm_abi_kind) arm_abi;
28e97307
DJ
8426 break;
8427 }
8428
8429 if (arm_abi == ARM_ABI_LAST)
8430 internal_error (__FILE__, __LINE__, _("Invalid ABI accepted: %s."),
8431 arm_abi_string);
8432
8433 arm_update_current_architecture ();
8434}
8435
8436static void
8437arm_show_abi (struct ui_file *file, int from_tty,
8438 struct cmd_list_element *c, const char *value)
8439{
f5656ead 8440 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch ());
28e97307
DJ
8441
8442 if (arm_abi_global == ARM_ABI_AUTO
f5656ead 8443 && gdbarch_bfd_arch_info (target_gdbarch ())->arch == bfd_arch_arm)
28e97307
DJ
8444 fprintf_filtered (file, _("\
8445The current ARM ABI is \"auto\" (currently \"%s\").\n"),
8446 arm_abi_strings[tdep->arm_abi]);
8447 else
8448 fprintf_filtered (file, _("The current ARM ABI is \"%s\".\n"),
8449 arm_abi_string);
fd50bc42
RE
8450}
8451
0428b8f5
DJ
8452static void
8453arm_show_fallback_mode (struct ui_file *file, int from_tty,
8454 struct cmd_list_element *c, const char *value)
8455{
0963b4bd
MS
8456 fprintf_filtered (file,
8457 _("The current execution mode assumed "
8458 "(when symbols are unavailable) is \"%s\".\n"),
0428b8f5
DJ
8459 arm_fallback_mode_string);
8460}
8461
8462static void
8463arm_show_force_mode (struct ui_file *file, int from_tty,
8464 struct cmd_list_element *c, const char *value)
8465{
0963b4bd
MS
8466 fprintf_filtered (file,
8467 _("The current execution mode assumed "
8468 "(even when symbols are available) is \"%s\".\n"),
0428b8f5
DJ
8469 arm_force_mode_string);
8470}
8471
afd7eef0
RE
8472/* If the user changes the register disassembly style used for info
8473 register and other commands, we have to also switch the style used
8474 in opcodes for disassembly output. This function is run in the "set
8475 arm disassembly" command, and does that. */
bc90b915
FN
8476
8477static void
eb4c3f4a 8478set_disassembly_style_sfunc (const char *args, int from_tty,
65b48a81 8479 struct cmd_list_element *c)
bc90b915 8480{
65b48a81
PB
8481 /* Convert the short style name into the long style name (eg, reg-names-*)
8482 before calling the generic set_disassembler_options() function. */
8483 std::string long_name = std::string ("reg-names-") + disassembly_style;
8484 set_disassembler_options (&long_name[0]);
8485}
8486
8487static void
8488show_disassembly_style_sfunc (struct ui_file *file, int from_tty,
8489 struct cmd_list_element *c, const char *value)
8490{
8491 struct gdbarch *gdbarch = get_current_arch ();
8492 char *options = get_disassembler_options (gdbarch);
8493 const char *style = "";
8494 int len = 0;
f995bbe8 8495 const char *opt;
65b48a81
PB
8496
8497 FOR_EACH_DISASSEMBLER_OPTION (opt, options)
8498 if (CONST_STRNEQ (opt, "reg-names-"))
8499 {
8500 style = &opt[strlen ("reg-names-")];
8501 len = strcspn (style, ",");
8502 }
8503
8504 fprintf_unfiltered (file, "The disassembly style is \"%.*s\".\n", len, style);
bc90b915
FN
8505}
8506\f
966fbf70 8507/* Return the ARM register name corresponding to register I. */
a208b0cb 8508static const char *
d93859e2 8509arm_register_name (struct gdbarch *gdbarch, int i)
966fbf70 8510{
58d6951d
DJ
8511 const int num_regs = gdbarch_num_regs (gdbarch);
8512
8513 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
8514 && i >= num_regs && i < num_regs + 32)
8515 {
8516 static const char *const vfp_pseudo_names[] = {
8517 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
8518 "s8", "s9", "s10", "s11", "s12", "s13", "s14", "s15",
8519 "s16", "s17", "s18", "s19", "s20", "s21", "s22", "s23",
8520 "s24", "s25", "s26", "s27", "s28", "s29", "s30", "s31",
8521 };
8522
8523 return vfp_pseudo_names[i - num_regs];
8524 }
8525
8526 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
8527 && i >= num_regs + 32 && i < num_regs + 32 + 16)
8528 {
8529 static const char *const neon_pseudo_names[] = {
8530 "q0", "q1", "q2", "q3", "q4", "q5", "q6", "q7",
8531 "q8", "q9", "q10", "q11", "q12", "q13", "q14", "q15",
8532 };
8533
8534 return neon_pseudo_names[i - num_regs - 32];
8535 }
8536
ff6f572f
DJ
8537 if (i >= ARRAY_SIZE (arm_register_names))
8538 /* These registers are only supported on targets which supply
8539 an XML description. */
8540 return "";
8541
966fbf70
RE
8542 return arm_register_names[i];
8543}
8544
082fc60d
RE
8545/* Test whether the coff symbol specific value corresponds to a Thumb
8546 function. */
8547
8548static int
8549coff_sym_is_thumb (int val)
8550{
f8bf5763
PM
8551 return (val == C_THUMBEXT
8552 || val == C_THUMBSTAT
8553 || val == C_THUMBEXTFUNC
8554 || val == C_THUMBSTATFUNC
8555 || val == C_THUMBLABEL);
082fc60d
RE
8556}
8557
8558/* arm_coff_make_msymbol_special()
8559 arm_elf_make_msymbol_special()
8560
8561 These functions test whether the COFF or ELF symbol corresponds to
8562 an address in thumb code, and set a "special" bit in a minimal
8563 symbol to indicate that it does. */
8564
34e8f22d 8565static void
082fc60d
RE
8566arm_elf_make_msymbol_special(asymbol *sym, struct minimal_symbol *msym)
8567{
39d911fc
TP
8568 elf_symbol_type *elfsym = (elf_symbol_type *) sym;
8569
8570 if (ARM_GET_SYM_BRANCH_TYPE (elfsym->internal_elf_sym.st_target_internal)
467d42c4 8571 == ST_BRANCH_TO_THUMB)
082fc60d
RE
8572 MSYMBOL_SET_SPECIAL (msym);
8573}
8574
34e8f22d 8575static void
082fc60d
RE
8576arm_coff_make_msymbol_special(int val, struct minimal_symbol *msym)
8577{
8578 if (coff_sym_is_thumb (val))
8579 MSYMBOL_SET_SPECIAL (msym);
8580}
8581
60c5725c 8582static void
c1bd65d0 8583arm_objfile_data_free (struct objfile *objfile, void *arg)
60c5725c 8584{
9a3c8263 8585 struct arm_per_objfile *data = (struct arm_per_objfile *) arg;
60c5725c
DJ
8586 unsigned int i;
8587
8588 for (i = 0; i < objfile->obfd->section_count; i++)
8589 VEC_free (arm_mapping_symbol_s, data->section_maps[i]);
8590}
8591
8592static void
8593arm_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile,
8594 asymbol *sym)
8595{
8596 const char *name = bfd_asymbol_name (sym);
8597 struct arm_per_objfile *data;
8598 VEC(arm_mapping_symbol_s) **map_p;
8599 struct arm_mapping_symbol new_map_sym;
8600
8601 gdb_assert (name[0] == '$');
8602 if (name[1] != 'a' && name[1] != 't' && name[1] != 'd')
8603 return;
8604
9a3c8263
SM
8605 data = (struct arm_per_objfile *) objfile_data (objfile,
8606 arm_objfile_data_key);
60c5725c
DJ
8607 if (data == NULL)
8608 {
8609 data = OBSTACK_ZALLOC (&objfile->objfile_obstack,
8610 struct arm_per_objfile);
8611 set_objfile_data (objfile, arm_objfile_data_key, data);
8612 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
8613 objfile->obfd->section_count,
8614 VEC(arm_mapping_symbol_s) *);
8615 }
8616 map_p = &data->section_maps[bfd_get_section (sym)->index];
8617
8618 new_map_sym.value = sym->value;
8619 new_map_sym.type = name[1];
8620
8621 /* Assume that most mapping symbols appear in order of increasing
8622 value. If they were randomly distributed, it would be faster to
8623 always push here and then sort at first use. */
8624 if (!VEC_empty (arm_mapping_symbol_s, *map_p))
8625 {
8626 struct arm_mapping_symbol *prev_map_sym;
8627
8628 prev_map_sym = VEC_last (arm_mapping_symbol_s, *map_p);
8629 if (prev_map_sym->value >= sym->value)
8630 {
8631 unsigned int idx;
8632 idx = VEC_lower_bound (arm_mapping_symbol_s, *map_p, &new_map_sym,
8633 arm_compare_mapping_symbols);
8634 VEC_safe_insert (arm_mapping_symbol_s, *map_p, idx, &new_map_sym);
8635 return;
8636 }
8637 }
8638
8639 VEC_safe_push (arm_mapping_symbol_s, *map_p, &new_map_sym);
8640}
8641
756fe439 8642static void
61a1198a 8643arm_write_pc (struct regcache *regcache, CORE_ADDR pc)
756fe439 8644{
ac7936df 8645 struct gdbarch *gdbarch = regcache->arch ();
61a1198a 8646 regcache_cooked_write_unsigned (regcache, ARM_PC_REGNUM, pc);
756fe439
DJ
8647
8648 /* If necessary, set the T bit. */
8649 if (arm_apcs_32)
8650 {
9779414d 8651 ULONGEST val, t_bit;
61a1198a 8652 regcache_cooked_read_unsigned (regcache, ARM_PS_REGNUM, &val);
9779414d
DJ
8653 t_bit = arm_psr_thumb_bit (gdbarch);
8654 if (arm_pc_is_thumb (gdbarch, pc))
8655 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
8656 val | t_bit);
756fe439 8657 else
61a1198a 8658 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
9779414d 8659 val & ~t_bit);
756fe439
DJ
8660 }
8661}
123dc839 8662
58d6951d
DJ
8663/* Read the contents of a NEON quad register, by reading from two
8664 double registers. This is used to implement the quad pseudo
8665 registers, and for argument passing in case the quad registers are
8666 missing; vectors are passed in quad registers when using the VFP
8667 ABI, even if a NEON unit is not present. REGNUM is the index of
8668 the quad register, in [0, 15]. */
8669
05d1431c 8670static enum register_status
849d0ba8 8671arm_neon_quad_read (struct gdbarch *gdbarch, readable_regcache *regcache,
58d6951d
DJ
8672 int regnum, gdb_byte *buf)
8673{
8674 char name_buf[4];
8675 gdb_byte reg_buf[8];
8676 int offset, double_regnum;
05d1431c 8677 enum register_status status;
58d6951d 8678
8c042590 8679 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum << 1);
58d6951d
DJ
8680 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8681 strlen (name_buf));
8682
8683 /* d0 is always the least significant half of q0. */
8684 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8685 offset = 8;
8686 else
8687 offset = 0;
8688
03f50fc8 8689 status = regcache->raw_read (double_regnum, reg_buf);
05d1431c
PA
8690 if (status != REG_VALID)
8691 return status;
58d6951d
DJ
8692 memcpy (buf + offset, reg_buf, 8);
8693
8694 offset = 8 - offset;
03f50fc8 8695 status = regcache->raw_read (double_regnum + 1, reg_buf);
05d1431c
PA
8696 if (status != REG_VALID)
8697 return status;
58d6951d 8698 memcpy (buf + offset, reg_buf, 8);
05d1431c
PA
8699
8700 return REG_VALID;
58d6951d
DJ
8701}
8702
05d1431c 8703static enum register_status
849d0ba8 8704arm_pseudo_read (struct gdbarch *gdbarch, readable_regcache *regcache,
58d6951d
DJ
8705 int regnum, gdb_byte *buf)
8706{
8707 const int num_regs = gdbarch_num_regs (gdbarch);
8708 char name_buf[4];
8709 gdb_byte reg_buf[8];
8710 int offset, double_regnum;
8711
8712 gdb_assert (regnum >= num_regs);
8713 regnum -= num_regs;
8714
8715 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
8716 /* Quad-precision register. */
05d1431c 8717 return arm_neon_quad_read (gdbarch, regcache, regnum - 32, buf);
58d6951d
DJ
8718 else
8719 {
05d1431c
PA
8720 enum register_status status;
8721
58d6951d
DJ
8722 /* Single-precision register. */
8723 gdb_assert (regnum < 32);
8724
8725 /* s0 is always the least significant half of d0. */
8726 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8727 offset = (regnum & 1) ? 0 : 4;
8728 else
8729 offset = (regnum & 1) ? 4 : 0;
8730
8c042590 8731 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum >> 1);
58d6951d
DJ
8732 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8733 strlen (name_buf));
8734
03f50fc8 8735 status = regcache->raw_read (double_regnum, reg_buf);
05d1431c
PA
8736 if (status == REG_VALID)
8737 memcpy (buf, reg_buf + offset, 4);
8738 return status;
58d6951d
DJ
8739 }
8740}
8741
8742/* Store the contents of BUF to a NEON quad register, by writing to
8743 two double registers. This is used to implement the quad pseudo
8744 registers, and for argument passing in case the quad registers are
8745 missing; vectors are passed in quad registers when using the VFP
8746 ABI, even if a NEON unit is not present. REGNUM is the index
8747 of the quad register, in [0, 15]. */
8748
8749static void
8750arm_neon_quad_write (struct gdbarch *gdbarch, struct regcache *regcache,
8751 int regnum, const gdb_byte *buf)
8752{
8753 char name_buf[4];
58d6951d
DJ
8754 int offset, double_regnum;
8755
8c042590 8756 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum << 1);
58d6951d
DJ
8757 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8758 strlen (name_buf));
8759
8760 /* d0 is always the least significant half of q0. */
8761 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8762 offset = 8;
8763 else
8764 offset = 0;
8765
10eaee5f 8766 regcache->raw_write (double_regnum, buf + offset);
58d6951d 8767 offset = 8 - offset;
10eaee5f 8768 regcache->raw_write (double_regnum + 1, buf + offset);
58d6951d
DJ
8769}
8770
8771static void
8772arm_pseudo_write (struct gdbarch *gdbarch, struct regcache *regcache,
8773 int regnum, const gdb_byte *buf)
8774{
8775 const int num_regs = gdbarch_num_regs (gdbarch);
8776 char name_buf[4];
8777 gdb_byte reg_buf[8];
8778 int offset, double_regnum;
8779
8780 gdb_assert (regnum >= num_regs);
8781 regnum -= num_regs;
8782
8783 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
8784 /* Quad-precision register. */
8785 arm_neon_quad_write (gdbarch, regcache, regnum - 32, buf);
8786 else
8787 {
8788 /* Single-precision register. */
8789 gdb_assert (regnum < 32);
8790
8791 /* s0 is always the least significant half of d0. */
8792 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8793 offset = (regnum & 1) ? 0 : 4;
8794 else
8795 offset = (regnum & 1) ? 4 : 0;
8796
8c042590 8797 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum >> 1);
58d6951d
DJ
8798 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8799 strlen (name_buf));
8800
0b883586 8801 regcache->raw_read (double_regnum, reg_buf);
58d6951d 8802 memcpy (reg_buf + offset, buf, 4);
10eaee5f 8803 regcache->raw_write (double_regnum, reg_buf);
58d6951d
DJ
8804 }
8805}
8806
123dc839
DJ
8807static struct value *
8808value_of_arm_user_reg (struct frame_info *frame, const void *baton)
8809{
9a3c8263 8810 const int *reg_p = (const int *) baton;
123dc839
DJ
8811 return value_of_register (*reg_p, frame);
8812}
97e03143 8813\f
70f80edf
JT
8814static enum gdb_osabi
8815arm_elf_osabi_sniffer (bfd *abfd)
97e03143 8816{
2af48f68 8817 unsigned int elfosabi;
70f80edf 8818 enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
97e03143 8819
70f80edf 8820 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
97e03143 8821
28e97307
DJ
8822 if (elfosabi == ELFOSABI_ARM)
8823 /* GNU tools use this value. Check note sections in this case,
8824 as well. */
8825 bfd_map_over_sections (abfd,
8826 generic_elf_osabi_sniff_abi_tag_sections,
8827 &osabi);
97e03143 8828
28e97307 8829 /* Anything else will be handled by the generic ELF sniffer. */
70f80edf 8830 return osabi;
97e03143
RE
8831}
8832
54483882
YQ
8833static int
8834arm_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
8835 struct reggroup *group)
8836{
2c291032
YQ
8837 /* FPS register's type is INT, but belongs to float_reggroup. Beside
8838 this, FPS register belongs to save_regroup, restore_reggroup, and
8839 all_reggroup, of course. */
54483882 8840 if (regnum == ARM_FPS_REGNUM)
2c291032
YQ
8841 return (group == float_reggroup
8842 || group == save_reggroup
8843 || group == restore_reggroup
8844 || group == all_reggroup);
54483882
YQ
8845 else
8846 return default_register_reggroup_p (gdbarch, regnum, group);
8847}
8848
25f8c692
JL
8849\f
8850/* For backward-compatibility we allow two 'g' packet lengths with
8851 the remote protocol depending on whether FPA registers are
8852 supplied. M-profile targets do not have FPA registers, but some
8853 stubs already exist in the wild which use a 'g' packet which
8854 supplies them albeit with dummy values. The packet format which
8855 includes FPA registers should be considered deprecated for
8856 M-profile targets. */
8857
8858static void
8859arm_register_g_packet_guesses (struct gdbarch *gdbarch)
8860{
8861 if (gdbarch_tdep (gdbarch)->is_m)
8862 {
8863 /* If we know from the executable this is an M-profile target,
8864 cater for remote targets whose register set layout is the
8865 same as the FPA layout. */
8866 register_remote_g_packet_guess (gdbarch,
03145bf4 8867 /* r0-r12,sp,lr,pc; f0-f7; fps,xpsr */
25f8c692
JL
8868 (16 * INT_REGISTER_SIZE)
8869 + (8 * FP_REGISTER_SIZE)
8870 + (2 * INT_REGISTER_SIZE),
8871 tdesc_arm_with_m_fpa_layout);
8872
8873 /* The regular M-profile layout. */
8874 register_remote_g_packet_guess (gdbarch,
8875 /* r0-r12,sp,lr,pc; xpsr */
8876 (16 * INT_REGISTER_SIZE)
8877 + INT_REGISTER_SIZE,
8878 tdesc_arm_with_m);
3184d3f9
JL
8879
8880 /* M-profile plus M4F VFP. */
8881 register_remote_g_packet_guess (gdbarch,
8882 /* r0-r12,sp,lr,pc; d0-d15; fpscr,xpsr */
8883 (16 * INT_REGISTER_SIZE)
8884 + (16 * VFP_REGISTER_SIZE)
8885 + (2 * INT_REGISTER_SIZE),
8886 tdesc_arm_with_m_vfp_d16);
25f8c692
JL
8887 }
8888
8889 /* Otherwise we don't have a useful guess. */
8890}
8891
7eb89530
YQ
8892/* Implement the code_of_frame_writable gdbarch method. */
8893
8894static int
8895arm_code_of_frame_writable (struct gdbarch *gdbarch, struct frame_info *frame)
8896{
8897 if (gdbarch_tdep (gdbarch)->is_m
8898 && get_frame_type (frame) == SIGTRAMP_FRAME)
8899 {
8900 /* M-profile exception frames return to some magic PCs, where
8901 isn't writable at all. */
8902 return 0;
8903 }
8904 else
8905 return 1;
8906}
8907
70f80edf 8908\f
da3c6d4a
MS
8909/* Initialize the current architecture based on INFO. If possible,
8910 re-use an architecture from ARCHES, which is a list of
8911 architectures already created during this debugging session.
97e03143 8912
da3c6d4a
MS
8913 Called e.g. at program startup, when reading a core file, and when
8914 reading a binary file. */
97e03143 8915
39bbf761
RE
8916static struct gdbarch *
8917arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
8918{
97e03143 8919 struct gdbarch_tdep *tdep;
39bbf761 8920 struct gdbarch *gdbarch;
28e97307
DJ
8921 struct gdbarch_list *best_arch;
8922 enum arm_abi_kind arm_abi = arm_abi_global;
8923 enum arm_float_model fp_model = arm_fp_model;
123dc839 8924 struct tdesc_arch_data *tdesc_data = NULL;
9779414d 8925 int i, is_m = 0;
330c6ca9 8926 int vfp_register_count = 0, have_vfp_pseudos = 0, have_neon_pseudos = 0;
a56cc1ce 8927 int have_wmmx_registers = 0;
58d6951d 8928 int have_neon = 0;
ff6f572f 8929 int have_fpa_registers = 1;
9779414d
DJ
8930 const struct target_desc *tdesc = info.target_desc;
8931
8932 /* If we have an object to base this architecture on, try to determine
8933 its ABI. */
8934
8935 if (arm_abi == ARM_ABI_AUTO && info.abfd != NULL)
8936 {
8937 int ei_osabi, e_flags;
8938
8939 switch (bfd_get_flavour (info.abfd))
8940 {
9779414d
DJ
8941 case bfd_target_coff_flavour:
8942 /* Assume it's an old APCS-style ABI. */
8943 /* XXX WinCE? */
8944 arm_abi = ARM_ABI_APCS;
8945 break;
8946
8947 case bfd_target_elf_flavour:
8948 ei_osabi = elf_elfheader (info.abfd)->e_ident[EI_OSABI];
8949 e_flags = elf_elfheader (info.abfd)->e_flags;
8950
8951 if (ei_osabi == ELFOSABI_ARM)
8952 {
8953 /* GNU tools used to use this value, but do not for EABI
8954 objects. There's nowhere to tag an EABI version
8955 anyway, so assume APCS. */
8956 arm_abi = ARM_ABI_APCS;
8957 }
d403db27 8958 else if (ei_osabi == ELFOSABI_NONE || ei_osabi == ELFOSABI_GNU)
9779414d
DJ
8959 {
8960 int eabi_ver = EF_ARM_EABI_VERSION (e_flags);
8961 int attr_arch, attr_profile;
8962
8963 switch (eabi_ver)
8964 {
8965 case EF_ARM_EABI_UNKNOWN:
8966 /* Assume GNU tools. */
8967 arm_abi = ARM_ABI_APCS;
8968 break;
8969
8970 case EF_ARM_EABI_VER4:
8971 case EF_ARM_EABI_VER5:
8972 arm_abi = ARM_ABI_AAPCS;
8973 /* EABI binaries default to VFP float ordering.
8974 They may also contain build attributes that can
8975 be used to identify if the VFP argument-passing
8976 ABI is in use. */
8977 if (fp_model == ARM_FLOAT_AUTO)
8978 {
8979#ifdef HAVE_ELF
8980 switch (bfd_elf_get_obj_attr_int (info.abfd,
8981 OBJ_ATTR_PROC,
8982 Tag_ABI_VFP_args))
8983 {
b35b0298 8984 case AEABI_VFP_args_base:
9779414d
DJ
8985 /* "The user intended FP parameter/result
8986 passing to conform to AAPCS, base
8987 variant". */
8988 fp_model = ARM_FLOAT_SOFT_VFP;
8989 break;
b35b0298 8990 case AEABI_VFP_args_vfp:
9779414d
DJ
8991 /* "The user intended FP parameter/result
8992 passing to conform to AAPCS, VFP
8993 variant". */
8994 fp_model = ARM_FLOAT_VFP;
8995 break;
b35b0298 8996 case AEABI_VFP_args_toolchain:
9779414d
DJ
8997 /* "The user intended FP parameter/result
8998 passing to conform to tool chain-specific
8999 conventions" - we don't know any such
9000 conventions, so leave it as "auto". */
9001 break;
b35b0298 9002 case AEABI_VFP_args_compatible:
5c294fee
TG
9003 /* "Code is compatible with both the base
9004 and VFP variants; the user did not permit
9005 non-variadic functions to pass FP
9006 parameters/results" - leave it as
9007 "auto". */
9008 break;
9779414d
DJ
9009 default:
9010 /* Attribute value not mentioned in the
5c294fee 9011 November 2012 ABI, so leave it as
9779414d
DJ
9012 "auto". */
9013 break;
9014 }
9015#else
9016 fp_model = ARM_FLOAT_SOFT_VFP;
9017#endif
9018 }
9019 break;
9020
9021 default:
9022 /* Leave it as "auto". */
9023 warning (_("unknown ARM EABI version 0x%x"), eabi_ver);
9024 break;
9025 }
9026
9027#ifdef HAVE_ELF
9028 /* Detect M-profile programs. This only works if the
9029 executable file includes build attributes; GCC does
9030 copy them to the executable, but e.g. RealView does
9031 not. */
9032 attr_arch = bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_PROC,
9033 Tag_CPU_arch);
0963b4bd
MS
9034 attr_profile = bfd_elf_get_obj_attr_int (info.abfd,
9035 OBJ_ATTR_PROC,
9779414d
DJ
9036 Tag_CPU_arch_profile);
9037 /* GCC specifies the profile for v6-M; RealView only
9038 specifies the profile for architectures starting with
9039 V7 (as opposed to architectures with a tag
9040 numerically greater than TAG_CPU_ARCH_V7). */
9041 if (!tdesc_has_registers (tdesc)
9042 && (attr_arch == TAG_CPU_ARCH_V6_M
9043 || attr_arch == TAG_CPU_ARCH_V6S_M
9044 || attr_profile == 'M'))
25f8c692 9045 is_m = 1;
9779414d
DJ
9046#endif
9047 }
9048
9049 if (fp_model == ARM_FLOAT_AUTO)
9050 {
9051 int e_flags = elf_elfheader (info.abfd)->e_flags;
9052
9053 switch (e_flags & (EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT))
9054 {
9055 case 0:
9056 /* Leave it as "auto". Strictly speaking this case
9057 means FPA, but almost nobody uses that now, and
9058 many toolchains fail to set the appropriate bits
9059 for the floating-point model they use. */
9060 break;
9061 case EF_ARM_SOFT_FLOAT:
9062 fp_model = ARM_FLOAT_SOFT_FPA;
9063 break;
9064 case EF_ARM_VFP_FLOAT:
9065 fp_model = ARM_FLOAT_VFP;
9066 break;
9067 case EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT:
9068 fp_model = ARM_FLOAT_SOFT_VFP;
9069 break;
9070 }
9071 }
9072
9073 if (e_flags & EF_ARM_BE8)
9074 info.byte_order_for_code = BFD_ENDIAN_LITTLE;
9075
9076 break;
9077
9078 default:
9079 /* Leave it as "auto". */
9080 break;
9081 }
9082 }
123dc839
DJ
9083
9084 /* Check any target description for validity. */
9779414d 9085 if (tdesc_has_registers (tdesc))
123dc839
DJ
9086 {
9087 /* For most registers we require GDB's default names; but also allow
9088 the numeric names for sp / lr / pc, as a convenience. */
9089 static const char *const arm_sp_names[] = { "r13", "sp", NULL };
9090 static const char *const arm_lr_names[] = { "r14", "lr", NULL };
9091 static const char *const arm_pc_names[] = { "r15", "pc", NULL };
9092
9093 const struct tdesc_feature *feature;
58d6951d 9094 int valid_p;
123dc839 9095
9779414d 9096 feature = tdesc_find_feature (tdesc,
123dc839
DJ
9097 "org.gnu.gdb.arm.core");
9098 if (feature == NULL)
9779414d
DJ
9099 {
9100 feature = tdesc_find_feature (tdesc,
9101 "org.gnu.gdb.arm.m-profile");
9102 if (feature == NULL)
9103 return NULL;
9104 else
9105 is_m = 1;
9106 }
123dc839
DJ
9107
9108 tdesc_data = tdesc_data_alloc ();
9109
9110 valid_p = 1;
9111 for (i = 0; i < ARM_SP_REGNUM; i++)
9112 valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
9113 arm_register_names[i]);
9114 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9115 ARM_SP_REGNUM,
9116 arm_sp_names);
9117 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9118 ARM_LR_REGNUM,
9119 arm_lr_names);
9120 valid_p &= tdesc_numbered_register_choices (feature, tdesc_data,
9121 ARM_PC_REGNUM,
9122 arm_pc_names);
9779414d
DJ
9123 if (is_m)
9124 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9125 ARM_PS_REGNUM, "xpsr");
9126 else
9127 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9128 ARM_PS_REGNUM, "cpsr");
123dc839
DJ
9129
9130 if (!valid_p)
9131 {
9132 tdesc_data_cleanup (tdesc_data);
9133 return NULL;
9134 }
9135
9779414d 9136 feature = tdesc_find_feature (tdesc,
123dc839
DJ
9137 "org.gnu.gdb.arm.fpa");
9138 if (feature != NULL)
9139 {
9140 valid_p = 1;
9141 for (i = ARM_F0_REGNUM; i <= ARM_FPS_REGNUM; i++)
9142 valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
9143 arm_register_names[i]);
9144 if (!valid_p)
9145 {
9146 tdesc_data_cleanup (tdesc_data);
9147 return NULL;
9148 }
9149 }
ff6f572f
DJ
9150 else
9151 have_fpa_registers = 0;
9152
9779414d 9153 feature = tdesc_find_feature (tdesc,
ff6f572f
DJ
9154 "org.gnu.gdb.xscale.iwmmxt");
9155 if (feature != NULL)
9156 {
9157 static const char *const iwmmxt_names[] = {
9158 "wR0", "wR1", "wR2", "wR3", "wR4", "wR5", "wR6", "wR7",
9159 "wR8", "wR9", "wR10", "wR11", "wR12", "wR13", "wR14", "wR15",
9160 "wCID", "wCon", "wCSSF", "wCASF", "", "", "", "",
9161 "wCGR0", "wCGR1", "wCGR2", "wCGR3", "", "", "", "",
9162 };
9163
9164 valid_p = 1;
9165 for (i = ARM_WR0_REGNUM; i <= ARM_WR15_REGNUM; i++)
9166 valid_p
9167 &= tdesc_numbered_register (feature, tdesc_data, i,
9168 iwmmxt_names[i - ARM_WR0_REGNUM]);
9169
9170 /* Check for the control registers, but do not fail if they
9171 are missing. */
9172 for (i = ARM_WC0_REGNUM; i <= ARM_WCASF_REGNUM; i++)
9173 tdesc_numbered_register (feature, tdesc_data, i,
9174 iwmmxt_names[i - ARM_WR0_REGNUM]);
9175
9176 for (i = ARM_WCGR0_REGNUM; i <= ARM_WCGR3_REGNUM; i++)
9177 valid_p
9178 &= tdesc_numbered_register (feature, tdesc_data, i,
9179 iwmmxt_names[i - ARM_WR0_REGNUM]);
9180
9181 if (!valid_p)
9182 {
9183 tdesc_data_cleanup (tdesc_data);
9184 return NULL;
9185 }
a56cc1ce
YQ
9186
9187 have_wmmx_registers = 1;
ff6f572f 9188 }
58d6951d
DJ
9189
9190 /* If we have a VFP unit, check whether the single precision registers
9191 are present. If not, then we will synthesize them as pseudo
9192 registers. */
9779414d 9193 feature = tdesc_find_feature (tdesc,
58d6951d
DJ
9194 "org.gnu.gdb.arm.vfp");
9195 if (feature != NULL)
9196 {
9197 static const char *const vfp_double_names[] = {
9198 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
9199 "d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15",
9200 "d16", "d17", "d18", "d19", "d20", "d21", "d22", "d23",
9201 "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31",
9202 };
9203
9204 /* Require the double precision registers. There must be either
9205 16 or 32. */
9206 valid_p = 1;
9207 for (i = 0; i < 32; i++)
9208 {
9209 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9210 ARM_D0_REGNUM + i,
9211 vfp_double_names[i]);
9212 if (!valid_p)
9213 break;
9214 }
2b9e5ea6
UW
9215 if (!valid_p && i == 16)
9216 valid_p = 1;
58d6951d 9217
2b9e5ea6
UW
9218 /* Also require FPSCR. */
9219 valid_p &= tdesc_numbered_register (feature, tdesc_data,
9220 ARM_FPSCR_REGNUM, "fpscr");
9221 if (!valid_p)
58d6951d
DJ
9222 {
9223 tdesc_data_cleanup (tdesc_data);
9224 return NULL;
9225 }
9226
9227 if (tdesc_unnumbered_register (feature, "s0") == 0)
9228 have_vfp_pseudos = 1;
9229
330c6ca9 9230 vfp_register_count = i;
58d6951d
DJ
9231
9232 /* If we have VFP, also check for NEON. The architecture allows
9233 NEON without VFP (integer vector operations only), but GDB
9234 does not support that. */
9779414d 9235 feature = tdesc_find_feature (tdesc,
58d6951d
DJ
9236 "org.gnu.gdb.arm.neon");
9237 if (feature != NULL)
9238 {
9239 /* NEON requires 32 double-precision registers. */
9240 if (i != 32)
9241 {
9242 tdesc_data_cleanup (tdesc_data);
9243 return NULL;
9244 }
9245
9246 /* If there are quad registers defined by the stub, use
9247 their type; otherwise (normally) provide them with
9248 the default type. */
9249 if (tdesc_unnumbered_register (feature, "q0") == 0)
9250 have_neon_pseudos = 1;
9251
9252 have_neon = 1;
9253 }
9254 }
123dc839 9255 }
39bbf761 9256
28e97307
DJ
9257 /* If there is already a candidate, use it. */
9258 for (best_arch = gdbarch_list_lookup_by_info (arches, &info);
9259 best_arch != NULL;
9260 best_arch = gdbarch_list_lookup_by_info (best_arch->next, &info))
9261 {
b8926edc
DJ
9262 if (arm_abi != ARM_ABI_AUTO
9263 && arm_abi != gdbarch_tdep (best_arch->gdbarch)->arm_abi)
28e97307
DJ
9264 continue;
9265
b8926edc
DJ
9266 if (fp_model != ARM_FLOAT_AUTO
9267 && fp_model != gdbarch_tdep (best_arch->gdbarch)->fp_model)
28e97307
DJ
9268 continue;
9269
58d6951d
DJ
9270 /* There are various other properties in tdep that we do not
9271 need to check here: those derived from a target description,
9272 since gdbarches with a different target description are
9273 automatically disqualified. */
9274
9779414d
DJ
9275 /* Do check is_m, though, since it might come from the binary. */
9276 if (is_m != gdbarch_tdep (best_arch->gdbarch)->is_m)
9277 continue;
9278
28e97307
DJ
9279 /* Found a match. */
9280 break;
9281 }
97e03143 9282
28e97307 9283 if (best_arch != NULL)
123dc839
DJ
9284 {
9285 if (tdesc_data != NULL)
9286 tdesc_data_cleanup (tdesc_data);
9287 return best_arch->gdbarch;
9288 }
28e97307 9289
8d749320 9290 tdep = XCNEW (struct gdbarch_tdep);
97e03143
RE
9291 gdbarch = gdbarch_alloc (&info, tdep);
9292
28e97307
DJ
9293 /* Record additional information about the architecture we are defining.
9294 These are gdbarch discriminators, like the OSABI. */
9295 tdep->arm_abi = arm_abi;
9296 tdep->fp_model = fp_model;
9779414d 9297 tdep->is_m = is_m;
ff6f572f 9298 tdep->have_fpa_registers = have_fpa_registers;
a56cc1ce 9299 tdep->have_wmmx_registers = have_wmmx_registers;
330c6ca9
YQ
9300 gdb_assert (vfp_register_count == 0
9301 || vfp_register_count == 16
9302 || vfp_register_count == 32);
9303 tdep->vfp_register_count = vfp_register_count;
58d6951d
DJ
9304 tdep->have_vfp_pseudos = have_vfp_pseudos;
9305 tdep->have_neon_pseudos = have_neon_pseudos;
9306 tdep->have_neon = have_neon;
08216dd7 9307
25f8c692
JL
9308 arm_register_g_packet_guesses (gdbarch);
9309
08216dd7 9310 /* Breakpoints. */
9d4fde75 9311 switch (info.byte_order_for_code)
67255d04
RE
9312 {
9313 case BFD_ENDIAN_BIG:
66e810cd
RE
9314 tdep->arm_breakpoint = arm_default_arm_be_breakpoint;
9315 tdep->arm_breakpoint_size = sizeof (arm_default_arm_be_breakpoint);
9316 tdep->thumb_breakpoint = arm_default_thumb_be_breakpoint;
9317 tdep->thumb_breakpoint_size = sizeof (arm_default_thumb_be_breakpoint);
9318
67255d04
RE
9319 break;
9320
9321 case BFD_ENDIAN_LITTLE:
66e810cd
RE
9322 tdep->arm_breakpoint = arm_default_arm_le_breakpoint;
9323 tdep->arm_breakpoint_size = sizeof (arm_default_arm_le_breakpoint);
9324 tdep->thumb_breakpoint = arm_default_thumb_le_breakpoint;
9325 tdep->thumb_breakpoint_size = sizeof (arm_default_thumb_le_breakpoint);
9326
67255d04
RE
9327 break;
9328
9329 default:
9330 internal_error (__FILE__, __LINE__,
edefbb7c 9331 _("arm_gdbarch_init: bad byte order for float format"));
67255d04
RE
9332 }
9333
d7b486e7
RE
9334 /* On ARM targets char defaults to unsigned. */
9335 set_gdbarch_char_signed (gdbarch, 0);
9336
53375380
PA
9337 /* wchar_t is unsigned under the AAPCS. */
9338 if (tdep->arm_abi == ARM_ABI_AAPCS)
9339 set_gdbarch_wchar_signed (gdbarch, 0);
9340 else
9341 set_gdbarch_wchar_signed (gdbarch, 1);
53375380 9342
cca44b1b
JB
9343 /* Note: for displaced stepping, this includes the breakpoint, and one word
9344 of additional scratch space. This setting isn't used for anything beside
9345 displaced stepping at present. */
9346 set_gdbarch_max_insn_length (gdbarch, 4 * DISPLACED_MODIFIED_INSNS);
9347
9df628e0 9348 /* This should be low enough for everything. */
97e03143 9349 tdep->lowest_pc = 0x20;
94c30b78 9350 tdep->jb_pc = -1; /* Longjump support not enabled by default. */
97e03143 9351
7c00367c
MK
9352 /* The default, for both APCS and AAPCS, is to return small
9353 structures in registers. */
9354 tdep->struct_return = reg_struct_return;
9355
2dd604e7 9356 set_gdbarch_push_dummy_call (gdbarch, arm_push_dummy_call);
f53f0d0b 9357 set_gdbarch_frame_align (gdbarch, arm_frame_align);
39bbf761 9358
7eb89530
YQ
9359 if (is_m)
9360 set_gdbarch_code_of_frame_writable (gdbarch, arm_code_of_frame_writable);
9361
756fe439
DJ
9362 set_gdbarch_write_pc (gdbarch, arm_write_pc);
9363
148754e5 9364 /* Frame handling. */
a262aec2 9365 set_gdbarch_dummy_id (gdbarch, arm_dummy_id);
eb5492fa
DJ
9366 set_gdbarch_unwind_pc (gdbarch, arm_unwind_pc);
9367 set_gdbarch_unwind_sp (gdbarch, arm_unwind_sp);
9368
eb5492fa 9369 frame_base_set_default (gdbarch, &arm_normal_base);
148754e5 9370
34e8f22d 9371 /* Address manipulation. */
34e8f22d
RE
9372 set_gdbarch_addr_bits_remove (gdbarch, arm_addr_bits_remove);
9373
34e8f22d
RE
9374 /* Advance PC across function entry code. */
9375 set_gdbarch_skip_prologue (gdbarch, arm_skip_prologue);
9376
c9cf6e20
MG
9377 /* Detect whether PC is at a point where the stack has been destroyed. */
9378 set_gdbarch_stack_frame_destroyed_p (gdbarch, arm_stack_frame_destroyed_p);
4024ca99 9379
190dce09
UW
9380 /* Skip trampolines. */
9381 set_gdbarch_skip_trampoline_code (gdbarch, arm_skip_stub);
9382
34e8f22d
RE
9383 /* The stack grows downward. */
9384 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
9385
9386 /* Breakpoint manipulation. */
04180708
YQ
9387 set_gdbarch_breakpoint_kind_from_pc (gdbarch, arm_breakpoint_kind_from_pc);
9388 set_gdbarch_sw_breakpoint_from_kind (gdbarch, arm_sw_breakpoint_from_kind);
833b7ab5
YQ
9389 set_gdbarch_breakpoint_kind_from_current_state (gdbarch,
9390 arm_breakpoint_kind_from_current_state);
34e8f22d
RE
9391
9392 /* Information about registers, etc. */
34e8f22d
RE
9393 set_gdbarch_sp_regnum (gdbarch, ARM_SP_REGNUM);
9394 set_gdbarch_pc_regnum (gdbarch, ARM_PC_REGNUM);
ff6f572f 9395 set_gdbarch_num_regs (gdbarch, ARM_NUM_REGS);
7a5ea0d4 9396 set_gdbarch_register_type (gdbarch, arm_register_type);
54483882 9397 set_gdbarch_register_reggroup_p (gdbarch, arm_register_reggroup_p);
34e8f22d 9398
ff6f572f
DJ
9399 /* This "info float" is FPA-specific. Use the generic version if we
9400 do not have FPA. */
9401 if (gdbarch_tdep (gdbarch)->have_fpa_registers)
9402 set_gdbarch_print_float_info (gdbarch, arm_print_float_info);
9403
26216b98 9404 /* Internal <-> external register number maps. */
ff6f572f 9405 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, arm_dwarf_reg_to_regnum);
26216b98
AC
9406 set_gdbarch_register_sim_regno (gdbarch, arm_register_sim_regno);
9407
34e8f22d
RE
9408 set_gdbarch_register_name (gdbarch, arm_register_name);
9409
9410 /* Returning results. */
2af48f68 9411 set_gdbarch_return_value (gdbarch, arm_return_value);
34e8f22d 9412
03d48a7d
RE
9413 /* Disassembly. */
9414 set_gdbarch_print_insn (gdbarch, gdb_print_insn_arm);
9415
34e8f22d
RE
9416 /* Minsymbol frobbing. */
9417 set_gdbarch_elf_make_msymbol_special (gdbarch, arm_elf_make_msymbol_special);
9418 set_gdbarch_coff_make_msymbol_special (gdbarch,
9419 arm_coff_make_msymbol_special);
60c5725c 9420 set_gdbarch_record_special_symbol (gdbarch, arm_record_special_symbol);
34e8f22d 9421
f9d67f43
DJ
9422 /* Thumb-2 IT block support. */
9423 set_gdbarch_adjust_breakpoint_address (gdbarch,
9424 arm_adjust_breakpoint_address);
9425
0d5de010
DJ
9426 /* Virtual tables. */
9427 set_gdbarch_vbit_in_delta (gdbarch, 1);
9428
97e03143 9429 /* Hook in the ABI-specific overrides, if they have been registered. */
4be87837 9430 gdbarch_init_osabi (info, gdbarch);
97e03143 9431
b39cc962
DJ
9432 dwarf2_frame_set_init_reg (gdbarch, arm_dwarf2_frame_init_reg);
9433
eb5492fa 9434 /* Add some default predicates. */
2ae28aa9
YQ
9435 if (is_m)
9436 frame_unwind_append_unwinder (gdbarch, &arm_m_exception_unwind);
a262aec2
DJ
9437 frame_unwind_append_unwinder (gdbarch, &arm_stub_unwind);
9438 dwarf2_append_unwinders (gdbarch);
0e9e9abd 9439 frame_unwind_append_unwinder (gdbarch, &arm_exidx_unwind);
779aa56f 9440 frame_unwind_append_unwinder (gdbarch, &arm_epilogue_frame_unwind);
a262aec2 9441 frame_unwind_append_unwinder (gdbarch, &arm_prologue_unwind);
eb5492fa 9442
97e03143
RE
9443 /* Now we have tuned the configuration, set a few final things,
9444 based on what the OS ABI has told us. */
9445
b8926edc
DJ
9446 /* If the ABI is not otherwise marked, assume the old GNU APCS. EABI
9447 binaries are always marked. */
9448 if (tdep->arm_abi == ARM_ABI_AUTO)
9449 tdep->arm_abi = ARM_ABI_APCS;
9450
e3039479
UW
9451 /* Watchpoints are not steppable. */
9452 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
9453
b8926edc
DJ
9454 /* We used to default to FPA for generic ARM, but almost nobody
9455 uses that now, and we now provide a way for the user to force
9456 the model. So default to the most useful variant. */
9457 if (tdep->fp_model == ARM_FLOAT_AUTO)
9458 tdep->fp_model = ARM_FLOAT_SOFT_FPA;
9459
9df628e0
RE
9460 if (tdep->jb_pc >= 0)
9461 set_gdbarch_get_longjmp_target (gdbarch, arm_get_longjmp_target);
9462
08216dd7 9463 /* Floating point sizes and format. */
8da61cc4 9464 set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
b8926edc 9465 if (tdep->fp_model == ARM_FLOAT_SOFT_FPA || tdep->fp_model == ARM_FLOAT_FPA)
08216dd7 9466 {
8da61cc4
DJ
9467 set_gdbarch_double_format
9468 (gdbarch, floatformats_ieee_double_littlebyte_bigword);
9469 set_gdbarch_long_double_format
9470 (gdbarch, floatformats_ieee_double_littlebyte_bigword);
9471 }
9472 else
9473 {
9474 set_gdbarch_double_format (gdbarch, floatformats_ieee_double);
9475 set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double);
08216dd7
RE
9476 }
9477
58d6951d
DJ
9478 if (have_vfp_pseudos)
9479 {
9480 /* NOTE: These are the only pseudo registers used by
9481 the ARM target at the moment. If more are added, a
9482 little more care in numbering will be needed. */
9483
9484 int num_pseudos = 32;
9485 if (have_neon_pseudos)
9486 num_pseudos += 16;
9487 set_gdbarch_num_pseudo_regs (gdbarch, num_pseudos);
9488 set_gdbarch_pseudo_register_read (gdbarch, arm_pseudo_read);
9489 set_gdbarch_pseudo_register_write (gdbarch, arm_pseudo_write);
9490 }
9491
123dc839 9492 if (tdesc_data)
58d6951d
DJ
9493 {
9494 set_tdesc_pseudo_register_name (gdbarch, arm_register_name);
9495
9779414d 9496 tdesc_use_registers (gdbarch, tdesc, tdesc_data);
58d6951d
DJ
9497
9498 /* Override tdesc_register_type to adjust the types of VFP
9499 registers for NEON. */
9500 set_gdbarch_register_type (gdbarch, arm_register_type);
9501 }
123dc839
DJ
9502
9503 /* Add standard register aliases. We add aliases even for those
9504 nanes which are used by the current architecture - it's simpler,
9505 and does no harm, since nothing ever lists user registers. */
9506 for (i = 0; i < ARRAY_SIZE (arm_register_aliases); i++)
9507 user_reg_add (gdbarch, arm_register_aliases[i].name,
9508 value_of_arm_user_reg, &arm_register_aliases[i].regnum);
9509
65b48a81
PB
9510 set_gdbarch_disassembler_options (gdbarch, &arm_disassembler_options);
9511 set_gdbarch_valid_disassembler_options (gdbarch, disassembler_options_arm ());
9512
39bbf761
RE
9513 return gdbarch;
9514}
9515
97e03143 9516static void
2af46ca0 9517arm_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
97e03143 9518{
2af46ca0 9519 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
97e03143
RE
9520
9521 if (tdep == NULL)
9522 return;
9523
edefbb7c 9524 fprintf_unfiltered (file, _("arm_dump_tdep: Lowest pc = 0x%lx"),
97e03143
RE
9525 (unsigned long) tdep->lowest_pc);
9526}
9527
0d4c07af 9528#if GDB_SELF_TEST
b121eeb9
YQ
9529namespace selftests
9530{
9531static void arm_record_test (void);
9532}
0d4c07af 9533#endif
b121eeb9 9534
c906108c 9535void
ed9a39eb 9536_initialize_arm_tdep (void)
c906108c 9537{
bc90b915 9538 long length;
65b48a81 9539 int i, j;
edefbb7c
AC
9540 char regdesc[1024], *rdptr = regdesc;
9541 size_t rest = sizeof (regdesc);
085dd6e6 9542
42cf1509 9543 gdbarch_register (bfd_arch_arm, arm_gdbarch_init, arm_dump_tdep);
97e03143 9544
60c5725c 9545 arm_objfile_data_key
c1bd65d0 9546 = register_objfile_data_with_cleanup (NULL, arm_objfile_data_free);
60c5725c 9547
0e9e9abd 9548 /* Add ourselves to objfile event chain. */
76727919 9549 gdb::observers::new_objfile.attach (arm_exidx_new_objfile);
0e9e9abd
UW
9550 arm_exidx_data_key
9551 = register_objfile_data_with_cleanup (NULL, arm_exidx_data_free);
9552
70f80edf
JT
9553 /* Register an ELF OS ABI sniffer for ARM binaries. */
9554 gdbarch_register_osabi_sniffer (bfd_arch_arm,
9555 bfd_target_elf_flavour,
9556 arm_elf_osabi_sniffer);
9557
9779414d
DJ
9558 /* Initialize the standard target descriptions. */
9559 initialize_tdesc_arm_with_m ();
25f8c692 9560 initialize_tdesc_arm_with_m_fpa_layout ();
3184d3f9 9561 initialize_tdesc_arm_with_m_vfp_d16 ();
ef7e8358
UW
9562 initialize_tdesc_arm_with_iwmmxt ();
9563 initialize_tdesc_arm_with_vfpv2 ();
9564 initialize_tdesc_arm_with_vfpv3 ();
9565 initialize_tdesc_arm_with_neon ();
9779414d 9566
afd7eef0
RE
9567 /* Add root prefix command for all "set arm"/"show arm" commands. */
9568 add_prefix_cmd ("arm", no_class, set_arm_command,
edefbb7c 9569 _("Various ARM-specific commands."),
afd7eef0
RE
9570 &setarmcmdlist, "set arm ", 0, &setlist);
9571
9572 add_prefix_cmd ("arm", no_class, show_arm_command,
edefbb7c 9573 _("Various ARM-specific commands."),
afd7eef0 9574 &showarmcmdlist, "show arm ", 0, &showlist);
bc90b915 9575
c5aa993b 9576
65b48a81
PB
9577 arm_disassembler_options = xstrdup ("reg-names-std");
9578 const disasm_options_t *disasm_options = disassembler_options_arm ();
9579 int num_disassembly_styles = 0;
9580 for (i = 0; disasm_options->name[i] != NULL; i++)
9581 if (CONST_STRNEQ (disasm_options->name[i], "reg-names-"))
9582 num_disassembly_styles++;
9583
9584 /* Initialize the array that will be passed to add_setshow_enum_cmd(). */
8d749320 9585 valid_disassembly_styles = XNEWVEC (const char *,
65b48a81
PB
9586 num_disassembly_styles + 1);
9587 for (i = j = 0; disasm_options->name[i] != NULL; i++)
9588 if (CONST_STRNEQ (disasm_options->name[i], "reg-names-"))
9589 {
9590 size_t offset = strlen ("reg-names-");
9591 const char *style = disasm_options->name[i];
9592 valid_disassembly_styles[j++] = &style[offset];
9593 length = snprintf (rdptr, rest, "%s - %s\n", &style[offset],
9594 disasm_options->description[i]);
9595 rdptr += length;
9596 rest -= length;
9597 }
94c30b78 9598 /* Mark the end of valid options. */
65b48a81 9599 valid_disassembly_styles[num_disassembly_styles] = NULL;
c906108c 9600
edefbb7c 9601 /* Create the help text. */
d7e74731
PA
9602 std::string helptext = string_printf ("%s%s%s",
9603 _("The valid values are:\n"),
9604 regdesc,
9605 _("The default is \"std\"."));
ed9a39eb 9606
edefbb7c
AC
9607 add_setshow_enum_cmd("disassembler", no_class,
9608 valid_disassembly_styles, &disassembly_style,
9609 _("Set the disassembly style."),
9610 _("Show the disassembly style."),
09b0e4b0 9611 helptext.c_str (),
2c5b56ce 9612 set_disassembly_style_sfunc,
65b48a81 9613 show_disassembly_style_sfunc,
7376b4c2 9614 &setarmcmdlist, &showarmcmdlist);
edefbb7c
AC
9615
9616 add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32,
9617 _("Set usage of ARM 32-bit mode."),
9618 _("Show usage of ARM 32-bit mode."),
9619 _("When off, a 26-bit PC will be used."),
2c5b56ce 9620 NULL,
0963b4bd
MS
9621 NULL, /* FIXME: i18n: Usage of ARM 32-bit
9622 mode is %s. */
26304000 9623 &setarmcmdlist, &showarmcmdlist);
c906108c 9624
fd50bc42 9625 /* Add a command to allow the user to force the FPU model. */
edefbb7c
AC
9626 add_setshow_enum_cmd ("fpu", no_class, fp_model_strings, &current_fp_model,
9627 _("Set the floating point type."),
9628 _("Show the floating point type."),
9629 _("auto - Determine the FP typefrom the OS-ABI.\n\
9630softfpa - Software FP, mixed-endian doubles on little-endian ARMs.\n\
9631fpa - FPA co-processor (GCC compiled).\n\
9632softvfp - Software FP with pure-endian doubles.\n\
9633vfp - VFP co-processor."),
edefbb7c 9634 set_fp_model_sfunc, show_fp_model,
7376b4c2 9635 &setarmcmdlist, &showarmcmdlist);
fd50bc42 9636
28e97307
DJ
9637 /* Add a command to allow the user to force the ABI. */
9638 add_setshow_enum_cmd ("abi", class_support, arm_abi_strings, &arm_abi_string,
9639 _("Set the ABI."),
9640 _("Show the ABI."),
9641 NULL, arm_set_abi, arm_show_abi,
9642 &setarmcmdlist, &showarmcmdlist);
9643
0428b8f5
DJ
9644 /* Add two commands to allow the user to force the assumed
9645 execution mode. */
9646 add_setshow_enum_cmd ("fallback-mode", class_support,
9647 arm_mode_strings, &arm_fallback_mode_string,
9648 _("Set the mode assumed when symbols are unavailable."),
9649 _("Show the mode assumed when symbols are unavailable."),
9650 NULL, NULL, arm_show_fallback_mode,
9651 &setarmcmdlist, &showarmcmdlist);
9652 add_setshow_enum_cmd ("force-mode", class_support,
9653 arm_mode_strings, &arm_force_mode_string,
9654 _("Set the mode assumed even when symbols are available."),
9655 _("Show the mode assumed even when symbols are available."),
9656 NULL, NULL, arm_show_force_mode,
9657 &setarmcmdlist, &showarmcmdlist);
9658
6529d2dd 9659 /* Debugging flag. */
edefbb7c
AC
9660 add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
9661 _("Set ARM debugging."),
9662 _("Show ARM debugging."),
9663 _("When on, arm-specific debugging is enabled."),
2c5b56ce 9664 NULL,
7915a72c 9665 NULL, /* FIXME: i18n: "ARM debugging is %s. */
26304000 9666 &setdebuglist, &showdebuglist);
b121eeb9
YQ
9667
9668#if GDB_SELF_TEST
1526853e 9669 selftests::register_test ("arm-record", selftests::arm_record_test);
b121eeb9
YQ
9670#endif
9671
c906108c 9672}
72508ac0
PO
9673
9674/* ARM-reversible process record data structures. */
9675
9676#define ARM_INSN_SIZE_BYTES 4
9677#define THUMB_INSN_SIZE_BYTES 2
9678#define THUMB2_INSN_SIZE_BYTES 4
9679
9680
71e396f9
LM
9681/* Position of the bit within a 32-bit ARM instruction
9682 that defines whether the instruction is a load or store. */
72508ac0
PO
9683#define INSN_S_L_BIT_NUM 20
9684
9685#define REG_ALLOC(REGS, LENGTH, RECORD_BUF) \
9686 do \
9687 { \
9688 unsigned int reg_len = LENGTH; \
9689 if (reg_len) \
9690 { \
9691 REGS = XNEWVEC (uint32_t, reg_len); \
9692 memcpy(&REGS[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
9693 } \
9694 } \
9695 while (0)
9696
9697#define MEM_ALLOC(MEMS, LENGTH, RECORD_BUF) \
9698 do \
9699 { \
9700 unsigned int mem_len = LENGTH; \
9701 if (mem_len) \
9702 { \
9703 MEMS = XNEWVEC (struct arm_mem_r, mem_len); \
9704 memcpy(&MEMS->len, &RECORD_BUF[0], \
9705 sizeof(struct arm_mem_r) * LENGTH); \
9706 } \
9707 } \
9708 while (0)
9709
9710/* Checks whether insn is already recorded or yet to be decoded. (boolean expression). */
9711#define INSN_RECORDED(ARM_RECORD) \
9712 (0 != (ARM_RECORD)->reg_rec_count || 0 != (ARM_RECORD)->mem_rec_count)
9713
9714/* ARM memory record structure. */
9715struct arm_mem_r
9716{
9717 uint32_t len; /* Record length. */
bfbbec00 9718 uint32_t addr; /* Memory address. */
72508ac0
PO
9719};
9720
9721/* ARM instruction record contains opcode of current insn
9722 and execution state (before entry to decode_insn()),
9723 contains list of to-be-modified registers and
9724 memory blocks (on return from decode_insn()). */
9725
9726typedef struct insn_decode_record_t
9727{
9728 struct gdbarch *gdbarch;
9729 struct regcache *regcache;
9730 CORE_ADDR this_addr; /* Address of the insn being decoded. */
9731 uint32_t arm_insn; /* Should accommodate thumb. */
9732 uint32_t cond; /* Condition code. */
9733 uint32_t opcode; /* Insn opcode. */
9734 uint32_t decode; /* Insn decode bits. */
9735 uint32_t mem_rec_count; /* No of mem records. */
9736 uint32_t reg_rec_count; /* No of reg records. */
9737 uint32_t *arm_regs; /* Registers to be saved for this record. */
9738 struct arm_mem_r *arm_mems; /* Memory to be saved for this record. */
9739} insn_decode_record;
9740
9741
9742/* Checks ARM SBZ and SBO mandatory fields. */
9743
9744static int
9745sbo_sbz (uint32_t insn, uint32_t bit_num, uint32_t len, uint32_t sbo)
9746{
9747 uint32_t ones = bits (insn, bit_num - 1, (bit_num -1) + (len - 1));
9748
9749 if (!len)
9750 return 1;
9751
9752 if (!sbo)
9753 ones = ~ones;
9754
9755 while (ones)
9756 {
9757 if (!(ones & sbo))
9758 {
9759 return 0;
9760 }
9761 ones = ones >> 1;
9762 }
9763 return 1;
9764}
9765
c6ec2b30
OJ
9766enum arm_record_result
9767{
9768 ARM_RECORD_SUCCESS = 0,
9769 ARM_RECORD_FAILURE = 1
9770};
9771
72508ac0
PO
9772typedef enum
9773{
9774 ARM_RECORD_STRH=1,
9775 ARM_RECORD_STRD
9776} arm_record_strx_t;
9777
9778typedef enum
9779{
9780 ARM_RECORD=1,
9781 THUMB_RECORD,
9782 THUMB2_RECORD
9783} record_type_t;
9784
9785
9786static int
9787arm_record_strx (insn_decode_record *arm_insn_r, uint32_t *record_buf,
9788 uint32_t *record_buf_mem, arm_record_strx_t str_type)
9789{
9790
9791 struct regcache *reg_cache = arm_insn_r->regcache;
9792 ULONGEST u_regval[2]= {0};
9793
9794 uint32_t reg_src1 = 0, reg_src2 = 0;
9795 uint32_t immed_high = 0, immed_low = 0,offset_8 = 0, tgt_mem_addr = 0;
72508ac0
PO
9796
9797 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
9798 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
72508ac0
PO
9799
9800 if (14 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
9801 {
9802 /* 1) Handle misc store, immediate offset. */
9803 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
9804 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
9805 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
9806 regcache_raw_read_unsigned (reg_cache, reg_src1,
9807 &u_regval[0]);
9808 if (ARM_PC_REGNUM == reg_src1)
9809 {
9810 /* If R15 was used as Rn, hence current PC+8. */
9811 u_regval[0] = u_regval[0] + 8;
9812 }
9813 offset_8 = (immed_high << 4) | immed_low;
9814 /* Calculate target store address. */
9815 if (14 == arm_insn_r->opcode)
9816 {
9817 tgt_mem_addr = u_regval[0] + offset_8;
9818 }
9819 else
9820 {
9821 tgt_mem_addr = u_regval[0] - offset_8;
9822 }
9823 if (ARM_RECORD_STRH == str_type)
9824 {
9825 record_buf_mem[0] = 2;
9826 record_buf_mem[1] = tgt_mem_addr;
9827 arm_insn_r->mem_rec_count = 1;
9828 }
9829 else if (ARM_RECORD_STRD == str_type)
9830 {
9831 record_buf_mem[0] = 4;
9832 record_buf_mem[1] = tgt_mem_addr;
9833 record_buf_mem[2] = 4;
9834 record_buf_mem[3] = tgt_mem_addr + 4;
9835 arm_insn_r->mem_rec_count = 2;
9836 }
9837 }
9838 else if (12 == arm_insn_r->opcode || 8 == arm_insn_r->opcode)
9839 {
9840 /* 2) Store, register offset. */
9841 /* Get Rm. */
9842 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
9843 /* Get Rn. */
9844 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
9845 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9846 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
9847 if (15 == reg_src2)
9848 {
9849 /* If R15 was used as Rn, hence current PC+8. */
9850 u_regval[0] = u_regval[0] + 8;
9851 }
9852 /* Calculate target store address, Rn +/- Rm, register offset. */
9853 if (12 == arm_insn_r->opcode)
9854 {
9855 tgt_mem_addr = u_regval[0] + u_regval[1];
9856 }
9857 else
9858 {
9859 tgt_mem_addr = u_regval[1] - u_regval[0];
9860 }
9861 if (ARM_RECORD_STRH == str_type)
9862 {
9863 record_buf_mem[0] = 2;
9864 record_buf_mem[1] = tgt_mem_addr;
9865 arm_insn_r->mem_rec_count = 1;
9866 }
9867 else if (ARM_RECORD_STRD == str_type)
9868 {
9869 record_buf_mem[0] = 4;
9870 record_buf_mem[1] = tgt_mem_addr;
9871 record_buf_mem[2] = 4;
9872 record_buf_mem[3] = tgt_mem_addr + 4;
9873 arm_insn_r->mem_rec_count = 2;
9874 }
9875 }
9876 else if (11 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
9877 || 2 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
9878 {
9879 /* 3) Store, immediate pre-indexed. */
9880 /* 5) Store, immediate post-indexed. */
9881 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
9882 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
9883 offset_8 = (immed_high << 4) | immed_low;
9884 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
9885 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9886 /* Calculate target store address, Rn +/- Rm, register offset. */
9887 if (15 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
9888 {
9889 tgt_mem_addr = u_regval[0] + offset_8;
9890 }
9891 else
9892 {
9893 tgt_mem_addr = u_regval[0] - offset_8;
9894 }
9895 if (ARM_RECORD_STRH == str_type)
9896 {
9897 record_buf_mem[0] = 2;
9898 record_buf_mem[1] = tgt_mem_addr;
9899 arm_insn_r->mem_rec_count = 1;
9900 }
9901 else if (ARM_RECORD_STRD == str_type)
9902 {
9903 record_buf_mem[0] = 4;
9904 record_buf_mem[1] = tgt_mem_addr;
9905 record_buf_mem[2] = 4;
9906 record_buf_mem[3] = tgt_mem_addr + 4;
9907 arm_insn_r->mem_rec_count = 2;
9908 }
9909 /* Record Rn also as it changes. */
9910 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
9911 arm_insn_r->reg_rec_count = 1;
9912 }
9913 else if (9 == arm_insn_r->opcode || 13 == arm_insn_r->opcode
9914 || 0 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
9915 {
9916 /* 4) Store, register pre-indexed. */
9917 /* 6) Store, register post -indexed. */
9918 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
9919 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
9920 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9921 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
9922 /* Calculate target store address, Rn +/- Rm, register offset. */
9923 if (13 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
9924 {
9925 tgt_mem_addr = u_regval[0] + u_regval[1];
9926 }
9927 else
9928 {
9929 tgt_mem_addr = u_regval[1] - u_regval[0];
9930 }
9931 if (ARM_RECORD_STRH == str_type)
9932 {
9933 record_buf_mem[0] = 2;
9934 record_buf_mem[1] = tgt_mem_addr;
9935 arm_insn_r->mem_rec_count = 1;
9936 }
9937 else if (ARM_RECORD_STRD == str_type)
9938 {
9939 record_buf_mem[0] = 4;
9940 record_buf_mem[1] = tgt_mem_addr;
9941 record_buf_mem[2] = 4;
9942 record_buf_mem[3] = tgt_mem_addr + 4;
9943 arm_insn_r->mem_rec_count = 2;
9944 }
9945 /* Record Rn also as it changes. */
9946 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
9947 arm_insn_r->reg_rec_count = 1;
9948 }
9949 return 0;
9950}
9951
9952/* Handling ARM extension space insns. */
9953
9954static int
9955arm_record_extension_space (insn_decode_record *arm_insn_r)
9956{
df95a9cf 9957 int ret = 0; /* Return value: -1:record failure ; 0:success */
72508ac0
PO
9958 uint32_t opcode1 = 0, opcode2 = 0, insn_op1 = 0;
9959 uint32_t record_buf[8], record_buf_mem[8];
9960 uint32_t reg_src1 = 0;
72508ac0
PO
9961 struct regcache *reg_cache = arm_insn_r->regcache;
9962 ULONGEST u_regval = 0;
9963
9964 gdb_assert (!INSN_RECORDED(arm_insn_r));
9965 /* Handle unconditional insn extension space. */
9966
9967 opcode1 = bits (arm_insn_r->arm_insn, 20, 27);
9968 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
9969 if (arm_insn_r->cond)
9970 {
9971 /* PLD has no affect on architectural state, it just affects
9972 the caches. */
9973 if (5 == ((opcode1 & 0xE0) >> 5))
9974 {
9975 /* BLX(1) */
9976 record_buf[0] = ARM_PS_REGNUM;
9977 record_buf[1] = ARM_LR_REGNUM;
9978 arm_insn_r->reg_rec_count = 2;
9979 }
9980 /* STC2, LDC2, MCR2, MRC2, CDP2: <TBD>, co-processor insn. */
9981 }
9982
9983
9984 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
9985 if (3 == opcode1 && bit (arm_insn_r->arm_insn, 4))
9986 {
9987 ret = -1;
9988 /* Undefined instruction on ARM V5; need to handle if later
9989 versions define it. */
9990 }
9991
9992 opcode1 = bits (arm_insn_r->arm_insn, 24, 27);
9993 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
9994 insn_op1 = bits (arm_insn_r->arm_insn, 20, 23);
9995
9996 /* Handle arithmetic insn extension space. */
9997 if (!opcode1 && 9 == opcode2 && 1 != arm_insn_r->cond
9998 && !INSN_RECORDED(arm_insn_r))
9999 {
10000 /* Handle MLA(S) and MUL(S). */
b020ff80 10001 if (in_inclusive_range (insn_op1, 0U, 3U))
72508ac0
PO
10002 {
10003 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10004 record_buf[1] = ARM_PS_REGNUM;
10005 arm_insn_r->reg_rec_count = 2;
10006 }
b020ff80 10007 else if (in_inclusive_range (insn_op1, 4U, 15U))
72508ac0
PO
10008 {
10009 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
10010 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10011 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10012 record_buf[2] = ARM_PS_REGNUM;
10013 arm_insn_r->reg_rec_count = 3;
10014 }
10015 }
10016
10017 opcode1 = bits (arm_insn_r->arm_insn, 26, 27);
10018 opcode2 = bits (arm_insn_r->arm_insn, 23, 24);
10019 insn_op1 = bits (arm_insn_r->arm_insn, 21, 22);
10020
10021 /* Handle control insn extension space. */
10022
10023 if (!opcode1 && 2 == opcode2 && !bit (arm_insn_r->arm_insn, 20)
10024 && 1 != arm_insn_r->cond && !INSN_RECORDED(arm_insn_r))
10025 {
10026 if (!bit (arm_insn_r->arm_insn,25))
10027 {
10028 if (!bits (arm_insn_r->arm_insn, 4, 7))
10029 {
10030 if ((0 == insn_op1) || (2 == insn_op1))
10031 {
10032 /* MRS. */
10033 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10034 arm_insn_r->reg_rec_count = 1;
10035 }
10036 else if (1 == insn_op1)
10037 {
10038 /* CSPR is going to be changed. */
10039 record_buf[0] = ARM_PS_REGNUM;
10040 arm_insn_r->reg_rec_count = 1;
10041 }
10042 else if (3 == insn_op1)
10043 {
10044 /* SPSR is going to be changed. */
10045 /* We need to get SPSR value, which is yet to be done. */
72508ac0
PO
10046 return -1;
10047 }
10048 }
10049 else if (1 == bits (arm_insn_r->arm_insn, 4, 7))
10050 {
10051 if (1 == insn_op1)
10052 {
10053 /* BX. */
10054 record_buf[0] = ARM_PS_REGNUM;
10055 arm_insn_r->reg_rec_count = 1;
10056 }
10057 else if (3 == insn_op1)
10058 {
10059 /* CLZ. */
10060 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10061 arm_insn_r->reg_rec_count = 1;
10062 }
10063 }
10064 else if (3 == bits (arm_insn_r->arm_insn, 4, 7))
10065 {
10066 /* BLX. */
10067 record_buf[0] = ARM_PS_REGNUM;
10068 record_buf[1] = ARM_LR_REGNUM;
10069 arm_insn_r->reg_rec_count = 2;
10070 }
10071 else if (5 == bits (arm_insn_r->arm_insn, 4, 7))
10072 {
10073 /* QADD, QSUB, QDADD, QDSUB */
10074 record_buf[0] = ARM_PS_REGNUM;
10075 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10076 arm_insn_r->reg_rec_count = 2;
10077 }
10078 else if (7 == bits (arm_insn_r->arm_insn, 4, 7))
10079 {
10080 /* BKPT. */
10081 record_buf[0] = ARM_PS_REGNUM;
10082 record_buf[1] = ARM_LR_REGNUM;
10083 arm_insn_r->reg_rec_count = 2;
10084
10085 /* Save SPSR also;how? */
72508ac0
PO
10086 return -1;
10087 }
10088 else if(8 == bits (arm_insn_r->arm_insn, 4, 7)
10089 || 10 == bits (arm_insn_r->arm_insn, 4, 7)
10090 || 12 == bits (arm_insn_r->arm_insn, 4, 7)
10091 || 14 == bits (arm_insn_r->arm_insn, 4, 7)
10092 )
10093 {
10094 if (0 == insn_op1 || 1 == insn_op1)
10095 {
10096 /* SMLA<x><y>, SMLAW<y>, SMULW<y>. */
10097 /* We dont do optimization for SMULW<y> where we
10098 need only Rd. */
10099 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10100 record_buf[1] = ARM_PS_REGNUM;
10101 arm_insn_r->reg_rec_count = 2;
10102 }
10103 else if (2 == insn_op1)
10104 {
10105 /* SMLAL<x><y>. */
10106 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10107 record_buf[1] = bits (arm_insn_r->arm_insn, 16, 19);
10108 arm_insn_r->reg_rec_count = 2;
10109 }
10110 else if (3 == insn_op1)
10111 {
10112 /* SMUL<x><y>. */
10113 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10114 arm_insn_r->reg_rec_count = 1;
10115 }
10116 }
10117 }
10118 else
10119 {
10120 /* MSR : immediate form. */
10121 if (1 == insn_op1)
10122 {
10123 /* CSPR is going to be changed. */
10124 record_buf[0] = ARM_PS_REGNUM;
10125 arm_insn_r->reg_rec_count = 1;
10126 }
10127 else if (3 == insn_op1)
10128 {
10129 /* SPSR is going to be changed. */
10130 /* we need to get SPSR value, which is yet to be done */
72508ac0
PO
10131 return -1;
10132 }
10133 }
10134 }
10135
10136 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
10137 opcode2 = bits (arm_insn_r->arm_insn, 20, 24);
10138 insn_op1 = bits (arm_insn_r->arm_insn, 5, 6);
10139
10140 /* Handle load/store insn extension space. */
10141
10142 if (!opcode1 && bit (arm_insn_r->arm_insn, 7)
10143 && bit (arm_insn_r->arm_insn, 4) && 1 != arm_insn_r->cond
10144 && !INSN_RECORDED(arm_insn_r))
10145 {
10146 /* SWP/SWPB. */
10147 if (0 == insn_op1)
10148 {
10149 /* These insn, changes register and memory as well. */
10150 /* SWP or SWPB insn. */
10151 /* Get memory address given by Rn. */
10152 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10153 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
10154 /* SWP insn ?, swaps word. */
10155 if (8 == arm_insn_r->opcode)
10156 {
10157 record_buf_mem[0] = 4;
10158 }
10159 else
10160 {
10161 /* SWPB insn, swaps only byte. */
10162 record_buf_mem[0] = 1;
10163 }
10164 record_buf_mem[1] = u_regval;
10165 arm_insn_r->mem_rec_count = 1;
10166 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10167 arm_insn_r->reg_rec_count = 1;
10168 }
10169 else if (1 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10170 {
10171 /* STRH. */
10172 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10173 ARM_RECORD_STRH);
10174 }
10175 else if (2 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10176 {
10177 /* LDRD. */
10178 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10179 record_buf[1] = record_buf[0] + 1;
10180 arm_insn_r->reg_rec_count = 2;
10181 }
10182 else if (3 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10183 {
10184 /* STRD. */
10185 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10186 ARM_RECORD_STRD);
10187 }
10188 else if (bit (arm_insn_r->arm_insn, 20) && insn_op1 <= 3)
10189 {
10190 /* LDRH, LDRSB, LDRSH. */
10191 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10192 arm_insn_r->reg_rec_count = 1;
10193 }
10194
10195 }
10196
10197 opcode1 = bits (arm_insn_r->arm_insn, 23, 27);
10198 if (24 == opcode1 && bit (arm_insn_r->arm_insn, 21)
10199 && !INSN_RECORDED(arm_insn_r))
10200 {
10201 ret = -1;
10202 /* Handle coprocessor insn extension space. */
10203 }
10204
10205 /* To be done for ARMv5 and later; as of now we return -1. */
10206 if (-1 == ret)
ca92db2d 10207 return ret;
72508ac0
PO
10208
10209 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10210 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10211
10212 return ret;
10213}
10214
10215/* Handling opcode 000 insns. */
10216
10217static int
10218arm_record_data_proc_misc_ld_str (insn_decode_record *arm_insn_r)
10219{
10220 struct regcache *reg_cache = arm_insn_r->regcache;
10221 uint32_t record_buf[8], record_buf_mem[8];
10222 ULONGEST u_regval[2] = {0};
10223
bec2ab5a 10224 uint32_t reg_src1 = 0, reg_dest = 0;
72508ac0
PO
10225 uint32_t opcode1 = 0;
10226
10227 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10228 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10229 opcode1 = bits (arm_insn_r->arm_insn, 20, 24);
10230
2d9e6acb 10231 if (!((opcode1 & 0x19) == 0x10))
72508ac0 10232 {
2d9e6acb
YQ
10233 /* Data-processing (register) and Data-processing (register-shifted
10234 register */
10235 /* Out of 11 shifter operands mode, all the insn modifies destination
10236 register, which is specified by 13-16 decode. */
10237 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10238 record_buf[1] = ARM_PS_REGNUM;
10239 arm_insn_r->reg_rec_count = 2;
72508ac0 10240 }
2d9e6acb 10241 else if ((arm_insn_r->decode < 8) && ((opcode1 & 0x19) == 0x10))
72508ac0 10242 {
2d9e6acb
YQ
10243 /* Miscellaneous instructions */
10244
10245 if (3 == arm_insn_r->decode && 0x12 == opcode1
10246 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
10247 {
10248 /* Handle BLX, branch and link/exchange. */
10249 if (9 == arm_insn_r->opcode)
10250 {
10251 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm,
10252 and R14 stores the return address. */
10253 record_buf[0] = ARM_PS_REGNUM;
10254 record_buf[1] = ARM_LR_REGNUM;
10255 arm_insn_r->reg_rec_count = 2;
10256 }
10257 }
10258 else if (7 == arm_insn_r->decode && 0x12 == opcode1)
10259 {
10260 /* Handle enhanced software breakpoint insn, BKPT. */
10261 /* CPSR is changed to be executed in ARM state, disabling normal
10262 interrupts, entering abort mode. */
10263 /* According to high vector configuration PC is set. */
10264 /* user hit breakpoint and type reverse, in
10265 that case, we need to go back with previous CPSR and
10266 Program Counter. */
10267 record_buf[0] = ARM_PS_REGNUM;
10268 record_buf[1] = ARM_LR_REGNUM;
10269 arm_insn_r->reg_rec_count = 2;
10270
10271 /* Save SPSR also; how? */
10272 return -1;
10273 }
10274 else if (1 == arm_insn_r->decode && 0x12 == opcode1
10275 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
10276 {
10277 /* Handle BX, branch and link/exchange. */
10278 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm. */
10279 record_buf[0] = ARM_PS_REGNUM;
10280 arm_insn_r->reg_rec_count = 1;
10281 }
10282 else if (1 == arm_insn_r->decode && 0x16 == opcode1
10283 && sbo_sbz (arm_insn_r->arm_insn, 9, 4, 1)
10284 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1))
10285 {
10286 /* Count leading zeros: CLZ. */
10287 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10288 arm_insn_r->reg_rec_count = 1;
10289 }
10290 else if (!bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM)
10291 && (8 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
10292 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1)
10293 && sbo_sbz (arm_insn_r->arm_insn, 1, 12, 0))
10294 {
10295 /* Handle MRS insn. */
10296 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10297 arm_insn_r->reg_rec_count = 1;
10298 }
72508ac0 10299 }
2d9e6acb 10300 else if (9 == arm_insn_r->decode && opcode1 < 0x10)
72508ac0 10301 {
2d9e6acb
YQ
10302 /* Multiply and multiply-accumulate */
10303
10304 /* Handle multiply instructions. */
10305 /* MLA, MUL, SMLAL, SMULL, UMLAL, UMULL. */
10306 if (0 == arm_insn_r->opcode || 1 == arm_insn_r->opcode)
10307 {
10308 /* Handle MLA and MUL. */
10309 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10310 record_buf[1] = ARM_PS_REGNUM;
10311 arm_insn_r->reg_rec_count = 2;
10312 }
10313 else if (4 <= arm_insn_r->opcode && 7 >= arm_insn_r->opcode)
10314 {
10315 /* Handle SMLAL, SMULL, UMLAL, UMULL. */
10316 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10317 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10318 record_buf[2] = ARM_PS_REGNUM;
10319 arm_insn_r->reg_rec_count = 3;
10320 }
10321 }
10322 else if (9 == arm_insn_r->decode && opcode1 > 0x10)
10323 {
10324 /* Synchronization primitives */
10325
72508ac0
PO
10326 /* Handling SWP, SWPB. */
10327 /* These insn, changes register and memory as well. */
10328 /* SWP or SWPB insn. */
10329
10330 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10331 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10332 /* SWP insn ?, swaps word. */
10333 if (8 == arm_insn_r->opcode)
2d9e6acb
YQ
10334 {
10335 record_buf_mem[0] = 4;
10336 }
10337 else
10338 {
10339 /* SWPB insn, swaps only byte. */
10340 record_buf_mem[0] = 1;
10341 }
72508ac0
PO
10342 record_buf_mem[1] = u_regval[0];
10343 arm_insn_r->mem_rec_count = 1;
10344 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10345 arm_insn_r->reg_rec_count = 1;
10346 }
2d9e6acb
YQ
10347 else if (11 == arm_insn_r->decode || 13 == arm_insn_r->decode
10348 || 15 == arm_insn_r->decode)
72508ac0 10349 {
2d9e6acb
YQ
10350 if ((opcode1 & 0x12) == 2)
10351 {
10352 /* Extra load/store (unprivileged) */
10353 return -1;
10354 }
10355 else
10356 {
10357 /* Extra load/store */
10358 switch (bits (arm_insn_r->arm_insn, 5, 6))
10359 {
10360 case 1:
10361 if ((opcode1 & 0x05) == 0x0 || (opcode1 & 0x05) == 0x4)
10362 {
10363 /* STRH (register), STRH (immediate) */
10364 arm_record_strx (arm_insn_r, &record_buf[0],
10365 &record_buf_mem[0], ARM_RECORD_STRH);
10366 }
10367 else if ((opcode1 & 0x05) == 0x1)
10368 {
10369 /* LDRH (register) */
10370 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10371 arm_insn_r->reg_rec_count = 1;
72508ac0 10372
2d9e6acb
YQ
10373 if (bit (arm_insn_r->arm_insn, 21))
10374 {
10375 /* Write back to Rn. */
10376 record_buf[arm_insn_r->reg_rec_count++]
10377 = bits (arm_insn_r->arm_insn, 16, 19);
10378 }
10379 }
10380 else if ((opcode1 & 0x05) == 0x5)
10381 {
10382 /* LDRH (immediate), LDRH (literal) */
10383 int rn = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0 10384
2d9e6acb
YQ
10385 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10386 arm_insn_r->reg_rec_count = 1;
10387
10388 if (rn != 15)
10389 {
10390 /*LDRH (immediate) */
10391 if (bit (arm_insn_r->arm_insn, 21))
10392 {
10393 /* Write back to Rn. */
10394 record_buf[arm_insn_r->reg_rec_count++] = rn;
10395 }
10396 }
10397 }
10398 else
10399 return -1;
10400 break;
10401 case 2:
10402 if ((opcode1 & 0x05) == 0x0)
10403 {
10404 /* LDRD (register) */
10405 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10406 record_buf[1] = record_buf[0] + 1;
10407 arm_insn_r->reg_rec_count = 2;
10408
10409 if (bit (arm_insn_r->arm_insn, 21))
10410 {
10411 /* Write back to Rn. */
10412 record_buf[arm_insn_r->reg_rec_count++]
10413 = bits (arm_insn_r->arm_insn, 16, 19);
10414 }
10415 }
10416 else if ((opcode1 & 0x05) == 0x1)
10417 {
10418 /* LDRSB (register) */
10419 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10420 arm_insn_r->reg_rec_count = 1;
10421
10422 if (bit (arm_insn_r->arm_insn, 21))
10423 {
10424 /* Write back to Rn. */
10425 record_buf[arm_insn_r->reg_rec_count++]
10426 = bits (arm_insn_r->arm_insn, 16, 19);
10427 }
10428 }
10429 else if ((opcode1 & 0x05) == 0x4 || (opcode1 & 0x05) == 0x5)
10430 {
10431 /* LDRD (immediate), LDRD (literal), LDRSB (immediate),
10432 LDRSB (literal) */
10433 int rn = bits (arm_insn_r->arm_insn, 16, 19);
10434
10435 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10436 arm_insn_r->reg_rec_count = 1;
10437
10438 if (rn != 15)
10439 {
10440 /*LDRD (immediate), LDRSB (immediate) */
10441 if (bit (arm_insn_r->arm_insn, 21))
10442 {
10443 /* Write back to Rn. */
10444 record_buf[arm_insn_r->reg_rec_count++] = rn;
10445 }
10446 }
10447 }
10448 else
10449 return -1;
10450 break;
10451 case 3:
10452 if ((opcode1 & 0x05) == 0x0)
10453 {
10454 /* STRD (register) */
10455 arm_record_strx (arm_insn_r, &record_buf[0],
10456 &record_buf_mem[0], ARM_RECORD_STRD);
10457 }
10458 else if ((opcode1 & 0x05) == 0x1)
10459 {
10460 /* LDRSH (register) */
10461 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10462 arm_insn_r->reg_rec_count = 1;
10463
10464 if (bit (arm_insn_r->arm_insn, 21))
10465 {
10466 /* Write back to Rn. */
10467 record_buf[arm_insn_r->reg_rec_count++]
10468 = bits (arm_insn_r->arm_insn, 16, 19);
10469 }
10470 }
10471 else if ((opcode1 & 0x05) == 0x4)
10472 {
10473 /* STRD (immediate) */
10474 arm_record_strx (arm_insn_r, &record_buf[0],
10475 &record_buf_mem[0], ARM_RECORD_STRD);
10476 }
10477 else if ((opcode1 & 0x05) == 0x5)
10478 {
10479 /* LDRSH (immediate), LDRSH (literal) */
10480 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10481 arm_insn_r->reg_rec_count = 1;
10482
10483 if (bit (arm_insn_r->arm_insn, 21))
10484 {
10485 /* Write back to Rn. */
10486 record_buf[arm_insn_r->reg_rec_count++]
10487 = bits (arm_insn_r->arm_insn, 16, 19);
10488 }
10489 }
10490 else
10491 return -1;
10492 break;
10493 default:
10494 return -1;
10495 }
10496 }
72508ac0
PO
10497 }
10498 else
10499 {
10500 return -1;
10501 }
10502
10503 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10504 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10505 return 0;
10506}
10507
10508/* Handling opcode 001 insns. */
10509
10510static int
10511arm_record_data_proc_imm (insn_decode_record *arm_insn_r)
10512{
10513 uint32_t record_buf[8], record_buf_mem[8];
10514
10515 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10516 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10517
10518 if ((9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode)
10519 && 2 == bits (arm_insn_r->arm_insn, 20, 21)
10520 && sbo_sbz (arm_insn_r->arm_insn, 13, 4, 1)
10521 )
10522 {
10523 /* Handle MSR insn. */
10524 if (9 == arm_insn_r->opcode)
10525 {
10526 /* CSPR is going to be changed. */
10527 record_buf[0] = ARM_PS_REGNUM;
10528 arm_insn_r->reg_rec_count = 1;
10529 }
10530 else
10531 {
10532 /* SPSR is going to be changed. */
10533 }
10534 }
10535 else if (arm_insn_r->opcode <= 15)
10536 {
10537 /* Normal data processing insns. */
10538 /* Out of 11 shifter operands mode, all the insn modifies destination
10539 register, which is specified by 13-16 decode. */
10540 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10541 record_buf[1] = ARM_PS_REGNUM;
10542 arm_insn_r->reg_rec_count = 2;
10543 }
10544 else
10545 {
10546 return -1;
10547 }
10548
10549 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10550 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10551 return 0;
10552}
10553
c55978a6
YQ
10554static int
10555arm_record_media (insn_decode_record *arm_insn_r)
10556{
10557 uint32_t record_buf[8];
10558
10559 switch (bits (arm_insn_r->arm_insn, 22, 24))
10560 {
10561 case 0:
10562 /* Parallel addition and subtraction, signed */
10563 case 1:
10564 /* Parallel addition and subtraction, unsigned */
10565 case 2:
10566 case 3:
10567 /* Packing, unpacking, saturation and reversal */
10568 {
10569 int rd = bits (arm_insn_r->arm_insn, 12, 15);
10570
10571 record_buf[arm_insn_r->reg_rec_count++] = rd;
10572 }
10573 break;
10574
10575 case 4:
10576 case 5:
10577 /* Signed multiplies */
10578 {
10579 int rd = bits (arm_insn_r->arm_insn, 16, 19);
10580 unsigned int op1 = bits (arm_insn_r->arm_insn, 20, 22);
10581
10582 record_buf[arm_insn_r->reg_rec_count++] = rd;
10583 if (op1 == 0x0)
10584 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
10585 else if (op1 == 0x4)
10586 record_buf[arm_insn_r->reg_rec_count++]
10587 = bits (arm_insn_r->arm_insn, 12, 15);
10588 }
10589 break;
10590
10591 case 6:
10592 {
10593 if (bit (arm_insn_r->arm_insn, 21)
10594 && bits (arm_insn_r->arm_insn, 5, 6) == 0x2)
10595 {
10596 /* SBFX */
10597 record_buf[arm_insn_r->reg_rec_count++]
10598 = bits (arm_insn_r->arm_insn, 12, 15);
10599 }
10600 else if (bits (arm_insn_r->arm_insn, 20, 21) == 0x0
10601 && bits (arm_insn_r->arm_insn, 5, 7) == 0x0)
10602 {
10603 /* USAD8 and USADA8 */
10604 record_buf[arm_insn_r->reg_rec_count++]
10605 = bits (arm_insn_r->arm_insn, 16, 19);
10606 }
10607 }
10608 break;
10609
10610 case 7:
10611 {
10612 if (bits (arm_insn_r->arm_insn, 20, 21) == 0x3
10613 && bits (arm_insn_r->arm_insn, 5, 7) == 0x7)
10614 {
10615 /* Permanently UNDEFINED */
10616 return -1;
10617 }
10618 else
10619 {
10620 /* BFC, BFI and UBFX */
10621 record_buf[arm_insn_r->reg_rec_count++]
10622 = bits (arm_insn_r->arm_insn, 12, 15);
10623 }
10624 }
10625 break;
10626
10627 default:
10628 return -1;
10629 }
10630
10631 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10632
10633 return 0;
10634}
10635
71e396f9 10636/* Handle ARM mode instructions with opcode 010. */
72508ac0
PO
10637
10638static int
10639arm_record_ld_st_imm_offset (insn_decode_record *arm_insn_r)
10640{
10641 struct regcache *reg_cache = arm_insn_r->regcache;
10642
71e396f9
LM
10643 uint32_t reg_base , reg_dest;
10644 uint32_t offset_12, tgt_mem_addr;
72508ac0 10645 uint32_t record_buf[8], record_buf_mem[8];
71e396f9
LM
10646 unsigned char wback;
10647 ULONGEST u_regval;
72508ac0 10648
71e396f9
LM
10649 /* Calculate wback. */
10650 wback = (bit (arm_insn_r->arm_insn, 24) == 0)
10651 || (bit (arm_insn_r->arm_insn, 21) == 1);
72508ac0 10652
71e396f9
LM
10653 arm_insn_r->reg_rec_count = 0;
10654 reg_base = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0
PO
10655
10656 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
10657 {
71e396f9
LM
10658 /* LDR (immediate), LDR (literal), LDRB (immediate), LDRB (literal), LDRBT
10659 and LDRT. */
10660
72508ac0 10661 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
71e396f9
LM
10662 record_buf[arm_insn_r->reg_rec_count++] = reg_dest;
10663
10664 /* The LDR instruction is capable of doing branching. If MOV LR, PC
10665 preceeds a LDR instruction having R15 as reg_base, it
10666 emulates a branch and link instruction, and hence we need to save
10667 CPSR and PC as well. */
10668 if (ARM_PC_REGNUM == reg_dest)
10669 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
10670
10671 /* If wback is true, also save the base register, which is going to be
10672 written to. */
10673 if (wback)
10674 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
10675 }
10676 else
10677 {
71e396f9
LM
10678 /* STR (immediate), STRB (immediate), STRBT and STRT. */
10679
72508ac0 10680 offset_12 = bits (arm_insn_r->arm_insn, 0, 11);
71e396f9
LM
10681 regcache_raw_read_unsigned (reg_cache, reg_base, &u_regval);
10682
10683 /* Handle bit U. */
72508ac0 10684 if (bit (arm_insn_r->arm_insn, 23))
71e396f9
LM
10685 {
10686 /* U == 1: Add the offset. */
10687 tgt_mem_addr = (uint32_t) u_regval + offset_12;
10688 }
72508ac0 10689 else
71e396f9
LM
10690 {
10691 /* U == 0: subtract the offset. */
10692 tgt_mem_addr = (uint32_t) u_regval - offset_12;
10693 }
10694
10695 /* Bit 22 tells us whether the store instruction writes 1 byte or 4
10696 bytes. */
10697 if (bit (arm_insn_r->arm_insn, 22))
10698 {
10699 /* STRB and STRBT: 1 byte. */
10700 record_buf_mem[0] = 1;
10701 }
10702 else
10703 {
10704 /* STR and STRT: 4 bytes. */
10705 record_buf_mem[0] = 4;
10706 }
10707
10708 /* Handle bit P. */
10709 if (bit (arm_insn_r->arm_insn, 24))
10710 record_buf_mem[1] = tgt_mem_addr;
10711 else
10712 record_buf_mem[1] = (uint32_t) u_regval;
72508ac0 10713
72508ac0
PO
10714 arm_insn_r->mem_rec_count = 1;
10715
71e396f9
LM
10716 /* If wback is true, also save the base register, which is going to be
10717 written to. */
10718 if (wback)
10719 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
10720 }
10721
10722 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10723 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10724 return 0;
10725}
10726
10727/* Handling opcode 011 insns. */
10728
10729static int
10730arm_record_ld_st_reg_offset (insn_decode_record *arm_insn_r)
10731{
10732 struct regcache *reg_cache = arm_insn_r->regcache;
10733
10734 uint32_t shift_imm = 0;
10735 uint32_t reg_src1 = 0, reg_src2 = 0, reg_dest = 0;
10736 uint32_t offset_12 = 0, tgt_mem_addr = 0;
10737 uint32_t record_buf[8], record_buf_mem[8];
10738
10739 LONGEST s_word;
10740 ULONGEST u_regval[2];
10741
c55978a6
YQ
10742 if (bit (arm_insn_r->arm_insn, 4))
10743 return arm_record_media (arm_insn_r);
10744
72508ac0
PO
10745 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10746 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10747
10748 /* Handle enhanced store insns and LDRD DSP insn,
10749 order begins according to addressing modes for store insns
10750 STRH insn. */
10751
10752 /* LDR or STR? */
10753 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
10754 {
10755 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
10756 /* LDR insn has a capability to do branching, if
10757 MOV LR, PC is precedded by LDR insn having Rn as R15
10758 in that case, it emulates branch and link insn, and hence we
10759 need to save CSPR and PC as well. */
10760 if (15 != reg_dest)
10761 {
10762 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10763 arm_insn_r->reg_rec_count = 1;
10764 }
10765 else
10766 {
10767 record_buf[0] = reg_dest;
10768 record_buf[1] = ARM_PS_REGNUM;
10769 arm_insn_r->reg_rec_count = 2;
10770 }
10771 }
10772 else
10773 {
10774 if (! bits (arm_insn_r->arm_insn, 4, 11))
10775 {
10776 /* Store insn, register offset and register pre-indexed,
10777 register post-indexed. */
10778 /* Get Rm. */
10779 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10780 /* Get Rn. */
10781 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10782 regcache_raw_read_unsigned (reg_cache, reg_src1
10783 , &u_regval[0]);
10784 regcache_raw_read_unsigned (reg_cache, reg_src2
10785 , &u_regval[1]);
10786 if (15 == reg_src2)
10787 {
10788 /* If R15 was used as Rn, hence current PC+8. */
10789 /* Pre-indexed mode doesnt reach here ; illegal insn. */
10790 u_regval[0] = u_regval[0] + 8;
10791 }
10792 /* Calculate target store address, Rn +/- Rm, register offset. */
10793 /* U == 1. */
10794 if (bit (arm_insn_r->arm_insn, 23))
10795 {
10796 tgt_mem_addr = u_regval[0] + u_regval[1];
10797 }
10798 else
10799 {
10800 tgt_mem_addr = u_regval[1] - u_regval[0];
10801 }
10802
10803 switch (arm_insn_r->opcode)
10804 {
10805 /* STR. */
10806 case 8:
10807 case 12:
10808 /* STR. */
10809 case 9:
10810 case 13:
10811 /* STRT. */
10812 case 1:
10813 case 5:
10814 /* STR. */
10815 case 0:
10816 case 4:
10817 record_buf_mem[0] = 4;
10818 break;
10819
10820 /* STRB. */
10821 case 10:
10822 case 14:
10823 /* STRB. */
10824 case 11:
10825 case 15:
10826 /* STRBT. */
10827 case 3:
10828 case 7:
10829 /* STRB. */
10830 case 2:
10831 case 6:
10832 record_buf_mem[0] = 1;
10833 break;
10834
10835 default:
10836 gdb_assert_not_reached ("no decoding pattern found");
10837 break;
10838 }
10839 record_buf_mem[1] = tgt_mem_addr;
10840 arm_insn_r->mem_rec_count = 1;
10841
10842 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
10843 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
10844 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
10845 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
10846 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
10847 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
10848 )
10849 {
10850 /* Rn is going to be changed in pre-indexed mode and
10851 post-indexed mode as well. */
10852 record_buf[0] = reg_src2;
10853 arm_insn_r->reg_rec_count = 1;
10854 }
10855 }
10856 else
10857 {
10858 /* Store insn, scaled register offset; scaled pre-indexed. */
10859 offset_12 = bits (arm_insn_r->arm_insn, 5, 6);
10860 /* Get Rm. */
10861 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10862 /* Get Rn. */
10863 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10864 /* Get shift_imm. */
10865 shift_imm = bits (arm_insn_r->arm_insn, 7, 11);
10866 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10867 regcache_raw_read_signed (reg_cache, reg_src1, &s_word);
10868 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10869 /* Offset_12 used as shift. */
10870 switch (offset_12)
10871 {
10872 case 0:
10873 /* Offset_12 used as index. */
10874 offset_12 = u_regval[0] << shift_imm;
10875 break;
10876
10877 case 1:
10878 offset_12 = (!shift_imm)?0:u_regval[0] >> shift_imm;
10879 break;
10880
10881 case 2:
10882 if (!shift_imm)
10883 {
10884 if (bit (u_regval[0], 31))
10885 {
10886 offset_12 = 0xFFFFFFFF;
10887 }
10888 else
10889 {
10890 offset_12 = 0;
10891 }
10892 }
10893 else
10894 {
10895 /* This is arithmetic shift. */
10896 offset_12 = s_word >> shift_imm;
10897 }
10898 break;
10899
10900 case 3:
10901 if (!shift_imm)
10902 {
10903 regcache_raw_read_unsigned (reg_cache, ARM_PS_REGNUM,
10904 &u_regval[1]);
10905 /* Get C flag value and shift it by 31. */
10906 offset_12 = (((bit (u_regval[1], 29)) << 31) \
10907 | (u_regval[0]) >> 1);
10908 }
10909 else
10910 {
10911 offset_12 = (u_regval[0] >> shift_imm) \
10912 | (u_regval[0] <<
10913 (sizeof(uint32_t) - shift_imm));
10914 }
10915 break;
10916
10917 default:
10918 gdb_assert_not_reached ("no decoding pattern found");
10919 break;
10920 }
10921
10922 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10923 /* bit U set. */
10924 if (bit (arm_insn_r->arm_insn, 23))
10925 {
10926 tgt_mem_addr = u_regval[1] + offset_12;
10927 }
10928 else
10929 {
10930 tgt_mem_addr = u_regval[1] - offset_12;
10931 }
10932
10933 switch (arm_insn_r->opcode)
10934 {
10935 /* STR. */
10936 case 8:
10937 case 12:
10938 /* STR. */
10939 case 9:
10940 case 13:
10941 /* STRT. */
10942 case 1:
10943 case 5:
10944 /* STR. */
10945 case 0:
10946 case 4:
10947 record_buf_mem[0] = 4;
10948 break;
10949
10950 /* STRB. */
10951 case 10:
10952 case 14:
10953 /* STRB. */
10954 case 11:
10955 case 15:
10956 /* STRBT. */
10957 case 3:
10958 case 7:
10959 /* STRB. */
10960 case 2:
10961 case 6:
10962 record_buf_mem[0] = 1;
10963 break;
10964
10965 default:
10966 gdb_assert_not_reached ("no decoding pattern found");
10967 break;
10968 }
10969 record_buf_mem[1] = tgt_mem_addr;
10970 arm_insn_r->mem_rec_count = 1;
10971
10972 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
10973 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
10974 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
10975 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
10976 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
10977 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
10978 )
10979 {
10980 /* Rn is going to be changed in register scaled pre-indexed
10981 mode,and scaled post indexed mode. */
10982 record_buf[0] = reg_src2;
10983 arm_insn_r->reg_rec_count = 1;
10984 }
10985 }
10986 }
10987
10988 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10989 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10990 return 0;
10991}
10992
71e396f9 10993/* Handle ARM mode instructions with opcode 100. */
72508ac0
PO
10994
10995static int
10996arm_record_ld_st_multiple (insn_decode_record *arm_insn_r)
10997{
10998 struct regcache *reg_cache = arm_insn_r->regcache;
71e396f9
LM
10999 uint32_t register_count = 0, register_bits;
11000 uint32_t reg_base, addr_mode;
72508ac0 11001 uint32_t record_buf[24], record_buf_mem[48];
71e396f9
LM
11002 uint32_t wback;
11003 ULONGEST u_regval;
72508ac0 11004
71e396f9
LM
11005 /* Fetch the list of registers. */
11006 register_bits = bits (arm_insn_r->arm_insn, 0, 15);
11007 arm_insn_r->reg_rec_count = 0;
11008
11009 /* Fetch the base register that contains the address we are loading data
11010 to. */
11011 reg_base = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0 11012
71e396f9
LM
11013 /* Calculate wback. */
11014 wback = (bit (arm_insn_r->arm_insn, 21) == 1);
72508ac0
PO
11015
11016 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11017 {
71e396f9 11018 /* LDM/LDMIA/LDMFD, LDMDA/LDMFA, LDMDB and LDMIB. */
72508ac0 11019
71e396f9 11020 /* Find out which registers are going to be loaded from memory. */
72508ac0 11021 while (register_bits)
71e396f9
LM
11022 {
11023 if (register_bits & 0x00000001)
11024 record_buf[arm_insn_r->reg_rec_count++] = register_count;
11025 register_bits = register_bits >> 1;
11026 register_count++;
11027 }
72508ac0 11028
71e396f9
LM
11029
11030 /* If wback is true, also save the base register, which is going to be
11031 written to. */
11032 if (wback)
11033 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
11034
11035 /* Save the CPSR register. */
11036 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
72508ac0
PO
11037 }
11038 else
11039 {
71e396f9 11040 /* STM (STMIA, STMEA), STMDA (STMED), STMDB (STMFD) and STMIB (STMFA). */
72508ac0 11041
71e396f9
LM
11042 addr_mode = bits (arm_insn_r->arm_insn, 23, 24);
11043
11044 regcache_raw_read_unsigned (reg_cache, reg_base, &u_regval);
11045
11046 /* Find out how many registers are going to be stored to memory. */
72508ac0 11047 while (register_bits)
71e396f9
LM
11048 {
11049 if (register_bits & 0x00000001)
11050 register_count++;
11051 register_bits = register_bits >> 1;
11052 }
72508ac0
PO
11053
11054 switch (addr_mode)
71e396f9
LM
11055 {
11056 /* STMDA (STMED): Decrement after. */
11057 case 0:
11058 record_buf_mem[1] = (uint32_t) u_regval
11059 - register_count * INT_REGISTER_SIZE + 4;
11060 break;
11061 /* STM (STMIA, STMEA): Increment after. */
11062 case 1:
11063 record_buf_mem[1] = (uint32_t) u_regval;
11064 break;
11065 /* STMDB (STMFD): Decrement before. */
11066 case 2:
11067 record_buf_mem[1] = (uint32_t) u_regval
11068 - register_count * INT_REGISTER_SIZE;
11069 break;
11070 /* STMIB (STMFA): Increment before. */
11071 case 3:
11072 record_buf_mem[1] = (uint32_t) u_regval + INT_REGISTER_SIZE;
11073 break;
11074 default:
11075 gdb_assert_not_reached ("no decoding pattern found");
11076 break;
11077 }
72508ac0 11078
71e396f9
LM
11079 record_buf_mem[0] = register_count * INT_REGISTER_SIZE;
11080 arm_insn_r->mem_rec_count = 1;
11081
11082 /* If wback is true, also save the base register, which is going to be
11083 written to. */
11084 if (wback)
11085 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
11086 }
11087
11088 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11089 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11090 return 0;
11091}
11092
11093/* Handling opcode 101 insns. */
11094
11095static int
11096arm_record_b_bl (insn_decode_record *arm_insn_r)
11097{
11098 uint32_t record_buf[8];
11099
11100 /* Handle B, BL, BLX(1) insns. */
11101 /* B simply branches so we do nothing here. */
11102 /* Note: BLX(1) doesnt fall here but instead it falls into
11103 extension space. */
11104 if (bit (arm_insn_r->arm_insn, 24))
11105 {
11106 record_buf[0] = ARM_LR_REGNUM;
11107 arm_insn_r->reg_rec_count = 1;
11108 }
11109
11110 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11111
11112 return 0;
11113}
11114
72508ac0 11115static int
c6ec2b30 11116arm_record_unsupported_insn (insn_decode_record *arm_insn_r)
72508ac0
PO
11117{
11118 printf_unfiltered (_("Process record does not support instruction "
01e57735
YQ
11119 "0x%0x at address %s.\n"),arm_insn_r->arm_insn,
11120 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
72508ac0
PO
11121
11122 return -1;
11123}
11124
5a578da5
OJ
11125/* Record handler for vector data transfer instructions. */
11126
11127static int
11128arm_record_vdata_transfer_insn (insn_decode_record *arm_insn_r)
11129{
11130 uint32_t bits_a, bit_c, bit_l, reg_t, reg_v;
11131 uint32_t record_buf[4];
11132
5a578da5
OJ
11133 reg_t = bits (arm_insn_r->arm_insn, 12, 15);
11134 reg_v = bits (arm_insn_r->arm_insn, 21, 23);
11135 bits_a = bits (arm_insn_r->arm_insn, 21, 23);
11136 bit_l = bit (arm_insn_r->arm_insn, 20);
11137 bit_c = bit (arm_insn_r->arm_insn, 8);
11138
11139 /* Handle VMOV instruction. */
11140 if (bit_l && bit_c)
11141 {
11142 record_buf[0] = reg_t;
11143 arm_insn_r->reg_rec_count = 1;
11144 }
11145 else if (bit_l && !bit_c)
11146 {
11147 /* Handle VMOV instruction. */
11148 if (bits_a == 0x00)
11149 {
f1771dce 11150 record_buf[0] = reg_t;
5a578da5
OJ
11151 arm_insn_r->reg_rec_count = 1;
11152 }
11153 /* Handle VMRS instruction. */
11154 else if (bits_a == 0x07)
11155 {
11156 if (reg_t == 15)
11157 reg_t = ARM_PS_REGNUM;
11158
11159 record_buf[0] = reg_t;
11160 arm_insn_r->reg_rec_count = 1;
11161 }
11162 }
11163 else if (!bit_l && !bit_c)
11164 {
11165 /* Handle VMOV instruction. */
11166 if (bits_a == 0x00)
11167 {
f1771dce 11168 record_buf[0] = ARM_D0_REGNUM + reg_v;
5a578da5
OJ
11169
11170 arm_insn_r->reg_rec_count = 1;
11171 }
11172 /* Handle VMSR instruction. */
11173 else if (bits_a == 0x07)
11174 {
11175 record_buf[0] = ARM_FPSCR_REGNUM;
11176 arm_insn_r->reg_rec_count = 1;
11177 }
11178 }
11179 else if (!bit_l && bit_c)
11180 {
11181 /* Handle VMOV instruction. */
11182 if (!(bits_a & 0x04))
11183 {
11184 record_buf[0] = (reg_v | (bit (arm_insn_r->arm_insn, 7) << 4))
11185 + ARM_D0_REGNUM;
11186 arm_insn_r->reg_rec_count = 1;
11187 }
11188 /* Handle VDUP instruction. */
11189 else
11190 {
11191 if (bit (arm_insn_r->arm_insn, 21))
11192 {
11193 reg_v = reg_v | (bit (arm_insn_r->arm_insn, 7) << 4);
11194 record_buf[0] = reg_v + ARM_D0_REGNUM;
11195 record_buf[1] = reg_v + ARM_D0_REGNUM + 1;
11196 arm_insn_r->reg_rec_count = 2;
11197 }
11198 else
11199 {
11200 reg_v = reg_v | (bit (arm_insn_r->arm_insn, 7) << 4);
11201 record_buf[0] = reg_v + ARM_D0_REGNUM;
11202 arm_insn_r->reg_rec_count = 1;
11203 }
11204 }
11205 }
11206
11207 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11208 return 0;
11209}
11210
f20f80dd
OJ
11211/* Record handler for extension register load/store instructions. */
11212
11213static int
11214arm_record_exreg_ld_st_insn (insn_decode_record *arm_insn_r)
11215{
11216 uint32_t opcode, single_reg;
11217 uint8_t op_vldm_vstm;
11218 uint32_t record_buf[8], record_buf_mem[128];
11219 ULONGEST u_regval = 0;
11220
11221 struct regcache *reg_cache = arm_insn_r->regcache;
f20f80dd
OJ
11222
11223 opcode = bits (arm_insn_r->arm_insn, 20, 24);
9fde51ed 11224 single_reg = !bit (arm_insn_r->arm_insn, 8);
f20f80dd
OJ
11225 op_vldm_vstm = opcode & 0x1b;
11226
11227 /* Handle VMOV instructions. */
11228 if ((opcode & 0x1e) == 0x04)
11229 {
9fde51ed 11230 if (bit (arm_insn_r->arm_insn, 20)) /* to_arm_registers bit 20? */
01e57735
YQ
11231 {
11232 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11233 record_buf[1] = bits (arm_insn_r->arm_insn, 16, 19);
11234 arm_insn_r->reg_rec_count = 2;
11235 }
f20f80dd 11236 else
01e57735 11237 {
9fde51ed
YQ
11238 uint8_t reg_m = bits (arm_insn_r->arm_insn, 0, 3);
11239 uint8_t bit_m = bit (arm_insn_r->arm_insn, 5);
f20f80dd 11240
9fde51ed 11241 if (single_reg)
01e57735 11242 {
9fde51ed
YQ
11243 /* The first S register number m is REG_M:M (M is bit 5),
11244 the corresponding D register number is REG_M:M / 2, which
11245 is REG_M. */
11246 record_buf[arm_insn_r->reg_rec_count++] = ARM_D0_REGNUM + reg_m;
11247 /* The second S register number is REG_M:M + 1, the
11248 corresponding D register number is (REG_M:M + 1) / 2.
11249 IOW, if bit M is 1, the first and second S registers
11250 are mapped to different D registers, otherwise, they are
11251 in the same D register. */
11252 if (bit_m)
11253 {
11254 record_buf[arm_insn_r->reg_rec_count++]
11255 = ARM_D0_REGNUM + reg_m + 1;
11256 }
01e57735
YQ
11257 }
11258 else
11259 {
9fde51ed 11260 record_buf[0] = ((bit_m << 4) + reg_m + ARM_D0_REGNUM);
01e57735
YQ
11261 arm_insn_r->reg_rec_count = 1;
11262 }
11263 }
f20f80dd
OJ
11264 }
11265 /* Handle VSTM and VPUSH instructions. */
11266 else if (op_vldm_vstm == 0x08 || op_vldm_vstm == 0x0a
01e57735 11267 || op_vldm_vstm == 0x12)
f20f80dd
OJ
11268 {
11269 uint32_t start_address, reg_rn, imm_off32, imm_off8, memory_count;
11270 uint32_t memory_index = 0;
11271
11272 reg_rn = bits (arm_insn_r->arm_insn, 16, 19);
11273 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
11274 imm_off8 = bits (arm_insn_r->arm_insn, 0, 7);
9fde51ed 11275 imm_off32 = imm_off8 << 2;
f20f80dd
OJ
11276 memory_count = imm_off8;
11277
11278 if (bit (arm_insn_r->arm_insn, 23))
01e57735 11279 start_address = u_regval;
f20f80dd 11280 else
01e57735 11281 start_address = u_regval - imm_off32;
f20f80dd
OJ
11282
11283 if (bit (arm_insn_r->arm_insn, 21))
01e57735
YQ
11284 {
11285 record_buf[0] = reg_rn;
11286 arm_insn_r->reg_rec_count = 1;
11287 }
f20f80dd
OJ
11288
11289 while (memory_count > 0)
01e57735 11290 {
9fde51ed 11291 if (single_reg)
01e57735 11292 {
9fde51ed
YQ
11293 record_buf_mem[memory_index] = 4;
11294 record_buf_mem[memory_index + 1] = start_address;
01e57735
YQ
11295 start_address = start_address + 4;
11296 memory_index = memory_index + 2;
11297 }
11298 else
11299 {
9fde51ed
YQ
11300 record_buf_mem[memory_index] = 4;
11301 record_buf_mem[memory_index + 1] = start_address;
11302 record_buf_mem[memory_index + 2] = 4;
11303 record_buf_mem[memory_index + 3] = start_address + 4;
01e57735
YQ
11304 start_address = start_address + 8;
11305 memory_index = memory_index + 4;
11306 }
11307 memory_count--;
11308 }
f20f80dd
OJ
11309 arm_insn_r->mem_rec_count = (memory_index >> 1);
11310 }
11311 /* Handle VLDM instructions. */
11312 else if (op_vldm_vstm == 0x09 || op_vldm_vstm == 0x0b
01e57735 11313 || op_vldm_vstm == 0x13)
f20f80dd
OJ
11314 {
11315 uint32_t reg_count, reg_vd;
11316 uint32_t reg_index = 0;
9fde51ed 11317 uint32_t bit_d = bit (arm_insn_r->arm_insn, 22);
f20f80dd
OJ
11318
11319 reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11320 reg_count = bits (arm_insn_r->arm_insn, 0, 7);
11321
9fde51ed
YQ
11322 /* REG_VD is the first D register number. If the instruction
11323 loads memory to S registers (SINGLE_REG is TRUE), the register
11324 number is (REG_VD << 1 | bit D), so the corresponding D
11325 register number is (REG_VD << 1 | bit D) / 2 = REG_VD. */
11326 if (!single_reg)
11327 reg_vd = reg_vd | (bit_d << 4);
f20f80dd 11328
9fde51ed 11329 if (bit (arm_insn_r->arm_insn, 21) /* write back */)
01e57735 11330 record_buf[reg_index++] = bits (arm_insn_r->arm_insn, 16, 19);
f20f80dd 11331
9fde51ed
YQ
11332 /* If the instruction loads memory to D register, REG_COUNT should
11333 be divided by 2, according to the ARM Architecture Reference
11334 Manual. If the instruction loads memory to S register, divide by
11335 2 as well because two S registers are mapped to D register. */
11336 reg_count = reg_count / 2;
11337 if (single_reg && bit_d)
01e57735 11338 {
9fde51ed
YQ
11339 /* Increase the register count if S register list starts from
11340 an odd number (bit d is one). */
11341 reg_count++;
11342 }
f20f80dd 11343
9fde51ed
YQ
11344 while (reg_count > 0)
11345 {
11346 record_buf[reg_index++] = ARM_D0_REGNUM + reg_vd + reg_count - 1;
01e57735
YQ
11347 reg_count--;
11348 }
f20f80dd
OJ
11349 arm_insn_r->reg_rec_count = reg_index;
11350 }
11351 /* VSTR Vector store register. */
11352 else if ((opcode & 0x13) == 0x10)
11353 {
bec2ab5a 11354 uint32_t start_address, reg_rn, imm_off32, imm_off8;
f20f80dd
OJ
11355 uint32_t memory_index = 0;
11356
11357 reg_rn = bits (arm_insn_r->arm_insn, 16, 19);
11358 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
11359 imm_off8 = bits (arm_insn_r->arm_insn, 0, 7);
9fde51ed 11360 imm_off32 = imm_off8 << 2;
f20f80dd
OJ
11361
11362 if (bit (arm_insn_r->arm_insn, 23))
01e57735 11363 start_address = u_regval + imm_off32;
f20f80dd 11364 else
01e57735 11365 start_address = u_regval - imm_off32;
f20f80dd
OJ
11366
11367 if (single_reg)
01e57735 11368 {
9fde51ed
YQ
11369 record_buf_mem[memory_index] = 4;
11370 record_buf_mem[memory_index + 1] = start_address;
01e57735
YQ
11371 arm_insn_r->mem_rec_count = 1;
11372 }
f20f80dd 11373 else
01e57735 11374 {
9fde51ed
YQ
11375 record_buf_mem[memory_index] = 4;
11376 record_buf_mem[memory_index + 1] = start_address;
11377 record_buf_mem[memory_index + 2] = 4;
11378 record_buf_mem[memory_index + 3] = start_address + 4;
01e57735
YQ
11379 arm_insn_r->mem_rec_count = 2;
11380 }
f20f80dd
OJ
11381 }
11382 /* VLDR Vector load register. */
11383 else if ((opcode & 0x13) == 0x11)
11384 {
11385 uint32_t reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11386
11387 if (!single_reg)
01e57735
YQ
11388 {
11389 reg_vd = reg_vd | (bit (arm_insn_r->arm_insn, 22) << 4);
11390 record_buf[0] = ARM_D0_REGNUM + reg_vd;
11391 }
f20f80dd 11392 else
01e57735
YQ
11393 {
11394 reg_vd = (reg_vd << 1) | bit (arm_insn_r->arm_insn, 22);
9fde51ed
YQ
11395 /* Record register D rather than pseudo register S. */
11396 record_buf[0] = ARM_D0_REGNUM + reg_vd / 2;
01e57735 11397 }
f20f80dd
OJ
11398 arm_insn_r->reg_rec_count = 1;
11399 }
11400
11401 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11402 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11403 return 0;
11404}
11405
851f26ae
OJ
11406/* Record handler for arm/thumb mode VFP data processing instructions. */
11407
11408static int
11409arm_record_vfp_data_proc_insn (insn_decode_record *arm_insn_r)
11410{
11411 uint32_t opc1, opc2, opc3, dp_op_sz, bit_d, reg_vd;
11412 uint32_t record_buf[4];
11413 enum insn_types {INSN_T0, INSN_T1, INSN_T2, INSN_T3, INSN_INV};
11414 enum insn_types curr_insn_type = INSN_INV;
11415
11416 reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11417 opc1 = bits (arm_insn_r->arm_insn, 20, 23);
11418 opc2 = bits (arm_insn_r->arm_insn, 16, 19);
11419 opc3 = bits (arm_insn_r->arm_insn, 6, 7);
11420 dp_op_sz = bit (arm_insn_r->arm_insn, 8);
11421 bit_d = bit (arm_insn_r->arm_insn, 22);
ce887586
TT
11422 /* Mask off the "D" bit. */
11423 opc1 = opc1 & ~0x04;
851f26ae
OJ
11424
11425 /* Handle VMLA, VMLS. */
11426 if (opc1 == 0x00)
11427 {
11428 if (bit (arm_insn_r->arm_insn, 10))
11429 {
11430 if (bit (arm_insn_r->arm_insn, 6))
11431 curr_insn_type = INSN_T0;
11432 else
11433 curr_insn_type = INSN_T1;
11434 }
11435 else
11436 {
11437 if (dp_op_sz)
11438 curr_insn_type = INSN_T1;
11439 else
11440 curr_insn_type = INSN_T2;
11441 }
11442 }
11443 /* Handle VNMLA, VNMLS, VNMUL. */
11444 else if (opc1 == 0x01)
11445 {
11446 if (dp_op_sz)
11447 curr_insn_type = INSN_T1;
11448 else
11449 curr_insn_type = INSN_T2;
11450 }
11451 /* Handle VMUL. */
11452 else if (opc1 == 0x02 && !(opc3 & 0x01))
11453 {
11454 if (bit (arm_insn_r->arm_insn, 10))
11455 {
11456 if (bit (arm_insn_r->arm_insn, 6))
11457 curr_insn_type = INSN_T0;
11458 else
11459 curr_insn_type = INSN_T1;
11460 }
11461 else
11462 {
11463 if (dp_op_sz)
11464 curr_insn_type = INSN_T1;
11465 else
11466 curr_insn_type = INSN_T2;
11467 }
11468 }
11469 /* Handle VADD, VSUB. */
11470 else if (opc1 == 0x03)
11471 {
11472 if (!bit (arm_insn_r->arm_insn, 9))
11473 {
11474 if (bit (arm_insn_r->arm_insn, 6))
11475 curr_insn_type = INSN_T0;
11476 else
11477 curr_insn_type = INSN_T1;
11478 }
11479 else
11480 {
11481 if (dp_op_sz)
11482 curr_insn_type = INSN_T1;
11483 else
11484 curr_insn_type = INSN_T2;
11485 }
11486 }
11487 /* Handle VDIV. */
ce887586 11488 else if (opc1 == 0x08)
851f26ae
OJ
11489 {
11490 if (dp_op_sz)
11491 curr_insn_type = INSN_T1;
11492 else
11493 curr_insn_type = INSN_T2;
11494 }
11495 /* Handle all other vfp data processing instructions. */
11496 else if (opc1 == 0x0b)
11497 {
11498 /* Handle VMOV. */
11499 if (!(opc3 & 0x01) || (opc2 == 0x00 && opc3 == 0x01))
11500 {
11501 if (bit (arm_insn_r->arm_insn, 4))
11502 {
11503 if (bit (arm_insn_r->arm_insn, 6))
11504 curr_insn_type = INSN_T0;
11505 else
11506 curr_insn_type = INSN_T1;
11507 }
11508 else
11509 {
11510 if (dp_op_sz)
11511 curr_insn_type = INSN_T1;
11512 else
11513 curr_insn_type = INSN_T2;
11514 }
11515 }
11516 /* Handle VNEG and VABS. */
11517 else if ((opc2 == 0x01 && opc3 == 0x01)
11518 || (opc2 == 0x00 && opc3 == 0x03))
11519 {
11520 if (!bit (arm_insn_r->arm_insn, 11))
11521 {
11522 if (bit (arm_insn_r->arm_insn, 6))
11523 curr_insn_type = INSN_T0;
11524 else
11525 curr_insn_type = INSN_T1;
11526 }
11527 else
11528 {
11529 if (dp_op_sz)
11530 curr_insn_type = INSN_T1;
11531 else
11532 curr_insn_type = INSN_T2;
11533 }
11534 }
11535 /* Handle VSQRT. */
11536 else if (opc2 == 0x01 && opc3 == 0x03)
11537 {
11538 if (dp_op_sz)
11539 curr_insn_type = INSN_T1;
11540 else
11541 curr_insn_type = INSN_T2;
11542 }
11543 /* Handle VCVT. */
11544 else if (opc2 == 0x07 && opc3 == 0x03)
11545 {
11546 if (!dp_op_sz)
11547 curr_insn_type = INSN_T1;
11548 else
11549 curr_insn_type = INSN_T2;
11550 }
11551 else if (opc3 & 0x01)
11552 {
11553 /* Handle VCVT. */
11554 if ((opc2 == 0x08) || (opc2 & 0x0e) == 0x0c)
11555 {
11556 if (!bit (arm_insn_r->arm_insn, 18))
11557 curr_insn_type = INSN_T2;
11558 else
11559 {
11560 if (dp_op_sz)
11561 curr_insn_type = INSN_T1;
11562 else
11563 curr_insn_type = INSN_T2;
11564 }
11565 }
11566 /* Handle VCVT. */
11567 else if ((opc2 & 0x0e) == 0x0a || (opc2 & 0x0e) == 0x0e)
11568 {
11569 if (dp_op_sz)
11570 curr_insn_type = INSN_T1;
11571 else
11572 curr_insn_type = INSN_T2;
11573 }
11574 /* Handle VCVTB, VCVTT. */
11575 else if ((opc2 & 0x0e) == 0x02)
11576 curr_insn_type = INSN_T2;
11577 /* Handle VCMP, VCMPE. */
11578 else if ((opc2 & 0x0e) == 0x04)
11579 curr_insn_type = INSN_T3;
11580 }
11581 }
11582
11583 switch (curr_insn_type)
11584 {
11585 case INSN_T0:
11586 reg_vd = reg_vd | (bit_d << 4);
11587 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11588 record_buf[1] = reg_vd + ARM_D0_REGNUM + 1;
11589 arm_insn_r->reg_rec_count = 2;
11590 break;
11591
11592 case INSN_T1:
11593 reg_vd = reg_vd | (bit_d << 4);
11594 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11595 arm_insn_r->reg_rec_count = 1;
11596 break;
11597
11598 case INSN_T2:
11599 reg_vd = (reg_vd << 1) | bit_d;
11600 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11601 arm_insn_r->reg_rec_count = 1;
11602 break;
11603
11604 case INSN_T3:
11605 record_buf[0] = ARM_FPSCR_REGNUM;
11606 arm_insn_r->reg_rec_count = 1;
11607 break;
11608
11609 default:
11610 gdb_assert_not_reached ("no decoding pattern found");
11611 break;
11612 }
11613
11614 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11615 return 0;
11616}
11617
60cc5e93
OJ
11618/* Handling opcode 110 insns. */
11619
11620static int
11621arm_record_asimd_vfp_coproc (insn_decode_record *arm_insn_r)
11622{
bec2ab5a 11623 uint32_t op1, op1_ebit, coproc;
60cc5e93
OJ
11624
11625 coproc = bits (arm_insn_r->arm_insn, 8, 11);
11626 op1 = bits (arm_insn_r->arm_insn, 20, 25);
11627 op1_ebit = bit (arm_insn_r->arm_insn, 20);
11628
11629 if ((coproc & 0x0e) == 0x0a)
11630 {
11631 /* Handle extension register ld/st instructions. */
11632 if (!(op1 & 0x20))
f20f80dd 11633 return arm_record_exreg_ld_st_insn (arm_insn_r);
60cc5e93
OJ
11634
11635 /* 64-bit transfers between arm core and extension registers. */
11636 if ((op1 & 0x3e) == 0x04)
f20f80dd 11637 return arm_record_exreg_ld_st_insn (arm_insn_r);
60cc5e93
OJ
11638 }
11639 else
11640 {
11641 /* Handle coprocessor ld/st instructions. */
11642 if (!(op1 & 0x3a))
11643 {
11644 /* Store. */
11645 if (!op1_ebit)
11646 return arm_record_unsupported_insn (arm_insn_r);
11647 else
11648 /* Load. */
11649 return arm_record_unsupported_insn (arm_insn_r);
11650 }
11651
11652 /* Move to coprocessor from two arm core registers. */
11653 if (op1 == 0x4)
11654 return arm_record_unsupported_insn (arm_insn_r);
11655
11656 /* Move to two arm core registers from coprocessor. */
11657 if (op1 == 0x5)
11658 {
11659 uint32_t reg_t[2];
11660
11661 reg_t[0] = bits (arm_insn_r->arm_insn, 12, 15);
11662 reg_t[1] = bits (arm_insn_r->arm_insn, 16, 19);
11663 arm_insn_r->reg_rec_count = 2;
11664
11665 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, reg_t);
11666 return 0;
11667 }
11668 }
11669 return arm_record_unsupported_insn (arm_insn_r);
11670}
11671
72508ac0
PO
11672/* Handling opcode 111 insns. */
11673
11674static int
11675arm_record_coproc_data_proc (insn_decode_record *arm_insn_r)
11676{
2d9e6acb 11677 uint32_t op, op1_ebit, coproc, bits_24_25;
72508ac0
PO
11678 struct gdbarch_tdep *tdep = gdbarch_tdep (arm_insn_r->gdbarch);
11679 struct regcache *reg_cache = arm_insn_r->regcache;
72508ac0
PO
11680
11681 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 24, 27);
60cc5e93 11682 coproc = bits (arm_insn_r->arm_insn, 8, 11);
60cc5e93
OJ
11683 op1_ebit = bit (arm_insn_r->arm_insn, 20);
11684 op = bit (arm_insn_r->arm_insn, 4);
2d9e6acb 11685 bits_24_25 = bits (arm_insn_r->arm_insn, 24, 25);
97dfe206
OJ
11686
11687 /* Handle arm SWI/SVC system call instructions. */
2d9e6acb 11688 if (bits_24_25 == 0x3)
97dfe206
OJ
11689 {
11690 if (tdep->arm_syscall_record != NULL)
11691 {
11692 ULONGEST svc_operand, svc_number;
11693
11694 svc_operand = (0x00ffffff & arm_insn_r->arm_insn);
11695
11696 if (svc_operand) /* OABI. */
11697 svc_number = svc_operand - 0x900000;
11698 else /* EABI. */
11699 regcache_raw_read_unsigned (reg_cache, 7, &svc_number);
11700
60cc5e93 11701 return tdep->arm_syscall_record (reg_cache, svc_number);
97dfe206
OJ
11702 }
11703 else
11704 {
11705 printf_unfiltered (_("no syscall record support\n"));
60cc5e93 11706 return -1;
97dfe206
OJ
11707 }
11708 }
2d9e6acb 11709 else if (bits_24_25 == 0x02)
60cc5e93 11710 {
2d9e6acb
YQ
11711 if (op)
11712 {
11713 if ((coproc & 0x0e) == 0x0a)
11714 {
11715 /* 8, 16, and 32-bit transfer */
11716 return arm_record_vdata_transfer_insn (arm_insn_r);
11717 }
11718 else
11719 {
11720 if (op1_ebit)
11721 {
11722 /* MRC, MRC2 */
11723 uint32_t record_buf[1];
11724
11725 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11726 if (record_buf[0] == 15)
11727 record_buf[0] = ARM_PS_REGNUM;
60cc5e93 11728
2d9e6acb
YQ
11729 arm_insn_r->reg_rec_count = 1;
11730 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count,
11731 record_buf);
11732 return 0;
11733 }
11734 else
11735 {
11736 /* MCR, MCR2 */
11737 return -1;
11738 }
11739 }
11740 }
11741 else
11742 {
11743 if ((coproc & 0x0e) == 0x0a)
11744 {
11745 /* VFP data-processing instructions. */
11746 return arm_record_vfp_data_proc_insn (arm_insn_r);
11747 }
11748 else
11749 {
11750 /* CDP, CDP2 */
11751 return -1;
11752 }
11753 }
60cc5e93 11754 }
97dfe206
OJ
11755 else
11756 {
2d9e6acb 11757 unsigned int op1 = bits (arm_insn_r->arm_insn, 20, 25);
60cc5e93 11758
2d9e6acb
YQ
11759 if (op1 == 5)
11760 {
11761 if ((coproc & 0x0e) != 0x0a)
11762 {
11763 /* MRRC, MRRC2 */
11764 return -1;
11765 }
11766 }
11767 else if (op1 == 4 || op1 == 5)
11768 {
11769 if ((coproc & 0x0e) == 0x0a)
11770 {
11771 /* 64-bit transfers between ARM core and extension */
11772 return -1;
11773 }
11774 else if (op1 == 4)
11775 {
11776 /* MCRR, MCRR2 */
11777 return -1;
11778 }
11779 }
11780 else if (op1 == 0 || op1 == 1)
11781 {
11782 /* UNDEFINED */
11783 return -1;
11784 }
11785 else
11786 {
11787 if ((coproc & 0x0e) == 0x0a)
11788 {
11789 /* Extension register load/store */
11790 }
11791 else
11792 {
11793 /* STC, STC2, LDC, LDC2 */
11794 }
11795 return -1;
11796 }
97dfe206 11797 }
72508ac0 11798
2d9e6acb 11799 return -1;
72508ac0
PO
11800}
11801
11802/* Handling opcode 000 insns. */
11803
11804static int
11805thumb_record_shift_add_sub (insn_decode_record *thumb_insn_r)
11806{
11807 uint32_t record_buf[8];
11808 uint32_t reg_src1 = 0;
11809
11810 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11811
11812 record_buf[0] = ARM_PS_REGNUM;
11813 record_buf[1] = reg_src1;
11814 thumb_insn_r->reg_rec_count = 2;
11815
11816 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11817
11818 return 0;
11819}
11820
11821
11822/* Handling opcode 001 insns. */
11823
11824static int
11825thumb_record_add_sub_cmp_mov (insn_decode_record *thumb_insn_r)
11826{
11827 uint32_t record_buf[8];
11828 uint32_t reg_src1 = 0;
11829
11830 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11831
11832 record_buf[0] = ARM_PS_REGNUM;
11833 record_buf[1] = reg_src1;
11834 thumb_insn_r->reg_rec_count = 2;
11835
11836 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11837
11838 return 0;
11839}
11840
11841/* Handling opcode 010 insns. */
11842
11843static int
11844thumb_record_ld_st_reg_offset (insn_decode_record *thumb_insn_r)
11845{
11846 struct regcache *reg_cache = thumb_insn_r->regcache;
11847 uint32_t record_buf[8], record_buf_mem[8];
11848
11849 uint32_t reg_src1 = 0, reg_src2 = 0;
11850 uint32_t opcode1 = 0, opcode2 = 0, opcode3 = 0;
11851
11852 ULONGEST u_regval[2] = {0};
11853
11854 opcode1 = bits (thumb_insn_r->arm_insn, 10, 12);
11855
11856 if (bit (thumb_insn_r->arm_insn, 12))
11857 {
11858 /* Handle load/store register offset. */
b121eeb9
YQ
11859 uint32_t opB = bits (thumb_insn_r->arm_insn, 9, 11);
11860
b020ff80 11861 if (in_inclusive_range (opB, 4U, 7U))
72508ac0
PO
11862 {
11863 /* LDR(2), LDRB(2) , LDRH(2), LDRSB, LDRSH. */
11864 reg_src1 = bits (thumb_insn_r->arm_insn,0, 2);
11865 record_buf[0] = reg_src1;
11866 thumb_insn_r->reg_rec_count = 1;
11867 }
b020ff80 11868 else if (in_inclusive_range (opB, 0U, 2U))
72508ac0
PO
11869 {
11870 /* STR(2), STRB(2), STRH(2) . */
11871 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11872 reg_src2 = bits (thumb_insn_r->arm_insn, 6, 8);
11873 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11874 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
b121eeb9 11875 if (0 == opB)
72508ac0 11876 record_buf_mem[0] = 4; /* STR (2). */
b121eeb9 11877 else if (2 == opB)
72508ac0 11878 record_buf_mem[0] = 1; /* STRB (2). */
b121eeb9 11879 else if (1 == opB)
72508ac0
PO
11880 record_buf_mem[0] = 2; /* STRH (2). */
11881 record_buf_mem[1] = u_regval[0] + u_regval[1];
11882 thumb_insn_r->mem_rec_count = 1;
11883 }
11884 }
11885 else if (bit (thumb_insn_r->arm_insn, 11))
11886 {
11887 /* Handle load from literal pool. */
11888 /* LDR(3). */
11889 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11890 record_buf[0] = reg_src1;
11891 thumb_insn_r->reg_rec_count = 1;
11892 }
11893 else if (opcode1)
11894 {
b121eeb9 11895 /* Special data instructions and branch and exchange */
72508ac0
PO
11896 opcode2 = bits (thumb_insn_r->arm_insn, 8, 9);
11897 opcode3 = bits (thumb_insn_r->arm_insn, 0, 2);
11898 if ((3 == opcode2) && (!opcode3))
11899 {
11900 /* Branch with exchange. */
11901 record_buf[0] = ARM_PS_REGNUM;
11902 thumb_insn_r->reg_rec_count = 1;
11903 }
11904 else
11905 {
1f33efec
YQ
11906 /* Format 8; special data processing insns. */
11907 record_buf[0] = ARM_PS_REGNUM;
11908 record_buf[1] = (bit (thumb_insn_r->arm_insn, 7) << 3
11909 | bits (thumb_insn_r->arm_insn, 0, 2));
72508ac0
PO
11910 thumb_insn_r->reg_rec_count = 2;
11911 }
11912 }
11913 else
11914 {
11915 /* Format 5; data processing insns. */
11916 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11917 if (bit (thumb_insn_r->arm_insn, 7))
11918 {
11919 reg_src1 = reg_src1 + 8;
11920 }
11921 record_buf[0] = ARM_PS_REGNUM;
11922 record_buf[1] = reg_src1;
11923 thumb_insn_r->reg_rec_count = 2;
11924 }
11925
11926 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11927 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11928 record_buf_mem);
11929
11930 return 0;
11931}
11932
11933/* Handling opcode 001 insns. */
11934
11935static int
11936thumb_record_ld_st_imm_offset (insn_decode_record *thumb_insn_r)
11937{
11938 struct regcache *reg_cache = thumb_insn_r->regcache;
11939 uint32_t record_buf[8], record_buf_mem[8];
11940
11941 uint32_t reg_src1 = 0;
11942 uint32_t opcode = 0, immed_5 = 0;
11943
11944 ULONGEST u_regval = 0;
11945
11946 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
11947
11948 if (opcode)
11949 {
11950 /* LDR(1). */
11951 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11952 record_buf[0] = reg_src1;
11953 thumb_insn_r->reg_rec_count = 1;
11954 }
11955 else
11956 {
11957 /* STR(1). */
11958 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11959 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
11960 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
11961 record_buf_mem[0] = 4;
11962 record_buf_mem[1] = u_regval + (immed_5 * 4);
11963 thumb_insn_r->mem_rec_count = 1;
11964 }
11965
11966 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11967 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11968 record_buf_mem);
11969
11970 return 0;
11971}
11972
11973/* Handling opcode 100 insns. */
11974
11975static int
11976thumb_record_ld_st_stack (insn_decode_record *thumb_insn_r)
11977{
11978 struct regcache *reg_cache = thumb_insn_r->regcache;
11979 uint32_t record_buf[8], record_buf_mem[8];
11980
11981 uint32_t reg_src1 = 0;
11982 uint32_t opcode = 0, immed_8 = 0, immed_5 = 0;
11983
11984 ULONGEST u_regval = 0;
11985
11986 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
11987
11988 if (3 == opcode)
11989 {
11990 /* LDR(4). */
11991 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11992 record_buf[0] = reg_src1;
11993 thumb_insn_r->reg_rec_count = 1;
11994 }
11995 else if (1 == opcode)
11996 {
11997 /* LDRH(1). */
11998 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11999 record_buf[0] = reg_src1;
12000 thumb_insn_r->reg_rec_count = 1;
12001 }
12002 else if (2 == opcode)
12003 {
12004 /* STR(3). */
12005 immed_8 = bits (thumb_insn_r->arm_insn, 0, 7);
12006 regcache_raw_read_unsigned (reg_cache, ARM_SP_REGNUM, &u_regval);
12007 record_buf_mem[0] = 4;
12008 record_buf_mem[1] = u_regval + (immed_8 * 4);
12009 thumb_insn_r->mem_rec_count = 1;
12010 }
12011 else if (0 == opcode)
12012 {
12013 /* STRH(1). */
12014 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
12015 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
12016 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12017 record_buf_mem[0] = 2;
12018 record_buf_mem[1] = u_regval + (immed_5 * 2);
12019 thumb_insn_r->mem_rec_count = 1;
12020 }
12021
12022 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12023 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12024 record_buf_mem);
12025
12026 return 0;
12027}
12028
12029/* Handling opcode 101 insns. */
12030
12031static int
12032thumb_record_misc (insn_decode_record *thumb_insn_r)
12033{
12034 struct regcache *reg_cache = thumb_insn_r->regcache;
12035
b121eeb9 12036 uint32_t opcode = 0;
72508ac0 12037 uint32_t register_bits = 0, register_count = 0;
bec2ab5a 12038 uint32_t index = 0, start_address = 0;
72508ac0
PO
12039 uint32_t record_buf[24], record_buf_mem[48];
12040 uint32_t reg_src1;
12041
12042 ULONGEST u_regval = 0;
12043
12044 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
72508ac0 12045
b121eeb9 12046 if (opcode == 0 || opcode == 1)
72508ac0 12047 {
b121eeb9
YQ
12048 /* ADR and ADD (SP plus immediate) */
12049
72508ac0
PO
12050 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12051 record_buf[0] = reg_src1;
12052 thumb_insn_r->reg_rec_count = 1;
12053 }
b121eeb9 12054 else
72508ac0 12055 {
b121eeb9
YQ
12056 /* Miscellaneous 16-bit instructions */
12057 uint32_t opcode2 = bits (thumb_insn_r->arm_insn, 8, 11);
12058
12059 switch (opcode2)
12060 {
12061 case 6:
12062 /* SETEND and CPS */
12063 break;
12064 case 0:
12065 /* ADD/SUB (SP plus immediate) */
12066 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12067 record_buf[0] = ARM_SP_REGNUM;
12068 thumb_insn_r->reg_rec_count = 1;
12069 break;
12070 case 1: /* fall through */
12071 case 3: /* fall through */
12072 case 9: /* fall through */
12073 case 11:
12074 /* CBNZ, CBZ */
b121eeb9
YQ
12075 break;
12076 case 2:
12077 /* SXTH, SXTB, UXTH, UXTB */
12078 record_buf[0] = bits (thumb_insn_r->arm_insn, 0, 2);
12079 thumb_insn_r->reg_rec_count = 1;
12080 break;
12081 case 4: /* fall through */
12082 case 5:
12083 /* PUSH. */
12084 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12085 regcache_raw_read_unsigned (reg_cache, ARM_SP_REGNUM, &u_regval);
12086 while (register_bits)
12087 {
12088 if (register_bits & 0x00000001)
12089 register_count++;
12090 register_bits = register_bits >> 1;
12091 }
12092 start_address = u_regval - \
12093 (4 * (bit (thumb_insn_r->arm_insn, 8) + register_count));
12094 thumb_insn_r->mem_rec_count = register_count;
12095 while (register_count)
12096 {
12097 record_buf_mem[(register_count * 2) - 1] = start_address;
12098 record_buf_mem[(register_count * 2) - 2] = 4;
12099 start_address = start_address + 4;
12100 register_count--;
12101 }
12102 record_buf[0] = ARM_SP_REGNUM;
12103 thumb_insn_r->reg_rec_count = 1;
12104 break;
12105 case 10:
12106 /* REV, REV16, REVSH */
ba14f379
YQ
12107 record_buf[0] = bits (thumb_insn_r->arm_insn, 0, 2);
12108 thumb_insn_r->reg_rec_count = 1;
b121eeb9
YQ
12109 break;
12110 case 12: /* fall through */
12111 case 13:
12112 /* POP. */
12113 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12114 while (register_bits)
12115 {
12116 if (register_bits & 0x00000001)
12117 record_buf[index++] = register_count;
12118 register_bits = register_bits >> 1;
12119 register_count++;
12120 }
12121 record_buf[index++] = ARM_PS_REGNUM;
12122 record_buf[index++] = ARM_SP_REGNUM;
12123 thumb_insn_r->reg_rec_count = index;
12124 break;
12125 case 0xe:
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 case 0xf:
12145 /* If-Then, and hints */
12146 break;
12147 default:
12148 return -1;
12149 };
72508ac0
PO
12150 }
12151
12152 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12153 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12154 record_buf_mem);
12155
12156 return 0;
12157}
12158
12159/* Handling opcode 110 insns. */
12160
12161static int
12162thumb_record_ldm_stm_swi (insn_decode_record *thumb_insn_r)
12163{
12164 struct gdbarch_tdep *tdep = gdbarch_tdep (thumb_insn_r->gdbarch);
12165 struct regcache *reg_cache = thumb_insn_r->regcache;
12166
12167 uint32_t ret = 0; /* function return value: -1:record failure ; 0:success */
12168 uint32_t reg_src1 = 0;
12169 uint32_t opcode1 = 0, opcode2 = 0, register_bits = 0, register_count = 0;
bec2ab5a 12170 uint32_t index = 0, start_address = 0;
72508ac0
PO
12171 uint32_t record_buf[24], record_buf_mem[48];
12172
12173 ULONGEST u_regval = 0;
12174
12175 opcode1 = bits (thumb_insn_r->arm_insn, 8, 12);
12176 opcode2 = bits (thumb_insn_r->arm_insn, 11, 12);
12177
12178 if (1 == opcode2)
12179 {
12180
12181 /* LDMIA. */
12182 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12183 /* Get Rn. */
12184 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12185 while (register_bits)
12186 {
12187 if (register_bits & 0x00000001)
f969241e 12188 record_buf[index++] = register_count;
72508ac0 12189 register_bits = register_bits >> 1;
f969241e 12190 register_count++;
72508ac0 12191 }
f969241e
OJ
12192 record_buf[index++] = reg_src1;
12193 thumb_insn_r->reg_rec_count = index;
72508ac0
PO
12194 }
12195 else if (0 == opcode2)
12196 {
12197 /* It handles both STMIA. */
12198 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12199 /* Get Rn. */
12200 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12201 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12202 while (register_bits)
12203 {
12204 if (register_bits & 0x00000001)
12205 register_count++;
12206 register_bits = register_bits >> 1;
12207 }
12208 start_address = u_regval;
12209 thumb_insn_r->mem_rec_count = register_count;
12210 while (register_count)
12211 {
12212 record_buf_mem[(register_count * 2) - 1] = start_address;
12213 record_buf_mem[(register_count * 2) - 2] = 4;
12214 start_address = start_address + 4;
12215 register_count--;
12216 }
12217 }
12218 else if (0x1F == opcode1)
12219 {
12220 /* Handle arm syscall insn. */
97dfe206 12221 if (tdep->arm_syscall_record != NULL)
72508ac0 12222 {
97dfe206
OJ
12223 regcache_raw_read_unsigned (reg_cache, 7, &u_regval);
12224 ret = tdep->arm_syscall_record (reg_cache, u_regval);
72508ac0
PO
12225 }
12226 else
12227 {
12228 printf_unfiltered (_("no syscall record support\n"));
12229 return -1;
12230 }
12231 }
12232
12233 /* B (1), conditional branch is automatically taken care in process_record,
12234 as PC is saved there. */
12235
12236 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12237 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12238 record_buf_mem);
12239
12240 return ret;
12241}
12242
12243/* Handling opcode 111 insns. */
12244
12245static int
12246thumb_record_branch (insn_decode_record *thumb_insn_r)
12247{
12248 uint32_t record_buf[8];
12249 uint32_t bits_h = 0;
12250
12251 bits_h = bits (thumb_insn_r->arm_insn, 11, 12);
12252
12253 if (2 == bits_h || 3 == bits_h)
12254 {
12255 /* BL */
12256 record_buf[0] = ARM_LR_REGNUM;
12257 thumb_insn_r->reg_rec_count = 1;
12258 }
12259 else if (1 == bits_h)
12260 {
12261 /* BLX(1). */
12262 record_buf[0] = ARM_PS_REGNUM;
12263 record_buf[1] = ARM_LR_REGNUM;
12264 thumb_insn_r->reg_rec_count = 2;
12265 }
12266
12267 /* B(2) is automatically taken care in process_record, as PC is
12268 saved there. */
12269
12270 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12271
12272 return 0;
12273}
12274
c6ec2b30
OJ
12275/* Handler for thumb2 load/store multiple instructions. */
12276
12277static int
12278thumb2_record_ld_st_multiple (insn_decode_record *thumb2_insn_r)
12279{
12280 struct regcache *reg_cache = thumb2_insn_r->regcache;
12281
12282 uint32_t reg_rn, op;
12283 uint32_t register_bits = 0, register_count = 0;
12284 uint32_t index = 0, start_address = 0;
12285 uint32_t record_buf[24], record_buf_mem[48];
12286
12287 ULONGEST u_regval = 0;
12288
12289 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12290 op = bits (thumb2_insn_r->arm_insn, 23, 24);
12291
12292 if (0 == op || 3 == op)
12293 {
12294 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12295 {
12296 /* Handle RFE instruction. */
12297 record_buf[0] = ARM_PS_REGNUM;
12298 thumb2_insn_r->reg_rec_count = 1;
12299 }
12300 else
12301 {
12302 /* Handle SRS instruction after reading banked SP. */
12303 return arm_record_unsupported_insn (thumb2_insn_r);
12304 }
12305 }
12306 else if (1 == op || 2 == op)
12307 {
12308 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12309 {
12310 /* Handle LDM/LDMIA/LDMFD and LDMDB/LDMEA instructions. */
12311 register_bits = bits (thumb2_insn_r->arm_insn, 0, 15);
12312 while (register_bits)
12313 {
12314 if (register_bits & 0x00000001)
12315 record_buf[index++] = register_count;
12316
12317 register_count++;
12318 register_bits = register_bits >> 1;
12319 }
12320 record_buf[index++] = reg_rn;
12321 record_buf[index++] = ARM_PS_REGNUM;
12322 thumb2_insn_r->reg_rec_count = index;
12323 }
12324 else
12325 {
12326 /* Handle STM/STMIA/STMEA and STMDB/STMFD. */
12327 register_bits = bits (thumb2_insn_r->arm_insn, 0, 15);
12328 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
12329 while (register_bits)
12330 {
12331 if (register_bits & 0x00000001)
12332 register_count++;
12333
12334 register_bits = register_bits >> 1;
12335 }
12336
12337 if (1 == op)
12338 {
12339 /* Start address calculation for LDMDB/LDMEA. */
12340 start_address = u_regval;
12341 }
12342 else if (2 == op)
12343 {
12344 /* Start address calculation for LDMDB/LDMEA. */
12345 start_address = u_regval - register_count * 4;
12346 }
12347
12348 thumb2_insn_r->mem_rec_count = register_count;
12349 while (register_count)
12350 {
12351 record_buf_mem[register_count * 2 - 1] = start_address;
12352 record_buf_mem[register_count * 2 - 2] = 4;
12353 start_address = start_address + 4;
12354 register_count--;
12355 }
12356 record_buf[0] = reg_rn;
12357 record_buf[1] = ARM_PS_REGNUM;
12358 thumb2_insn_r->reg_rec_count = 2;
12359 }
12360 }
12361
12362 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12363 record_buf_mem);
12364 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12365 record_buf);
12366 return ARM_RECORD_SUCCESS;
12367}
12368
12369/* Handler for thumb2 load/store (dual/exclusive) and table branch
12370 instructions. */
12371
12372static int
12373thumb2_record_ld_st_dual_ex_tbb (insn_decode_record *thumb2_insn_r)
12374{
12375 struct regcache *reg_cache = thumb2_insn_r->regcache;
12376
12377 uint32_t reg_rd, reg_rn, offset_imm;
12378 uint32_t reg_dest1, reg_dest2;
12379 uint32_t address, offset_addr;
12380 uint32_t record_buf[8], record_buf_mem[8];
12381 uint32_t op1, op2, op3;
c6ec2b30
OJ
12382
12383 ULONGEST u_regval[2];
12384
12385 op1 = bits (thumb2_insn_r->arm_insn, 23, 24);
12386 op2 = bits (thumb2_insn_r->arm_insn, 20, 21);
12387 op3 = bits (thumb2_insn_r->arm_insn, 4, 7);
12388
12389 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12390 {
12391 if(!(1 == op1 && 1 == op2 && (0 == op3 || 1 == op3)))
12392 {
12393 reg_dest1 = bits (thumb2_insn_r->arm_insn, 12, 15);
12394 record_buf[0] = reg_dest1;
12395 record_buf[1] = ARM_PS_REGNUM;
12396 thumb2_insn_r->reg_rec_count = 2;
12397 }
12398
12399 if (3 == op2 || (op1 & 2) || (1 == op1 && 1 == op2 && 7 == op3))
12400 {
12401 reg_dest2 = bits (thumb2_insn_r->arm_insn, 8, 11);
12402 record_buf[2] = reg_dest2;
12403 thumb2_insn_r->reg_rec_count = 3;
12404 }
12405 }
12406 else
12407 {
12408 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12409 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval[0]);
12410
12411 if (0 == op1 && 0 == op2)
12412 {
12413 /* Handle STREX. */
12414 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12415 address = u_regval[0] + (offset_imm * 4);
12416 record_buf_mem[0] = 4;
12417 record_buf_mem[1] = address;
12418 thumb2_insn_r->mem_rec_count = 1;
12419 reg_rd = bits (thumb2_insn_r->arm_insn, 0, 3);
12420 record_buf[0] = reg_rd;
12421 thumb2_insn_r->reg_rec_count = 1;
12422 }
12423 else if (1 == op1 && 0 == op2)
12424 {
12425 reg_rd = bits (thumb2_insn_r->arm_insn, 0, 3);
12426 record_buf[0] = reg_rd;
12427 thumb2_insn_r->reg_rec_count = 1;
12428 address = u_regval[0];
12429 record_buf_mem[1] = address;
12430
12431 if (4 == op3)
12432 {
12433 /* Handle STREXB. */
12434 record_buf_mem[0] = 1;
12435 thumb2_insn_r->mem_rec_count = 1;
12436 }
12437 else if (5 == op3)
12438 {
12439 /* Handle STREXH. */
12440 record_buf_mem[0] = 2 ;
12441 thumb2_insn_r->mem_rec_count = 1;
12442 }
12443 else if (7 == op3)
12444 {
12445 /* Handle STREXD. */
12446 address = u_regval[0];
12447 record_buf_mem[0] = 4;
12448 record_buf_mem[2] = 4;
12449 record_buf_mem[3] = address + 4;
12450 thumb2_insn_r->mem_rec_count = 2;
12451 }
12452 }
12453 else
12454 {
12455 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12456
12457 if (bit (thumb2_insn_r->arm_insn, 24))
12458 {
12459 if (bit (thumb2_insn_r->arm_insn, 23))
12460 offset_addr = u_regval[0] + (offset_imm * 4);
12461 else
12462 offset_addr = u_regval[0] - (offset_imm * 4);
12463
12464 address = offset_addr;
12465 }
12466 else
12467 address = u_regval[0];
12468
12469 record_buf_mem[0] = 4;
12470 record_buf_mem[1] = address;
12471 record_buf_mem[2] = 4;
12472 record_buf_mem[3] = address + 4;
12473 thumb2_insn_r->mem_rec_count = 2;
12474 record_buf[0] = reg_rn;
12475 thumb2_insn_r->reg_rec_count = 1;
12476 }
12477 }
12478
12479 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12480 record_buf);
12481 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12482 record_buf_mem);
12483 return ARM_RECORD_SUCCESS;
12484}
12485
12486/* Handler for thumb2 data processing (shift register and modified immediate)
12487 instructions. */
12488
12489static int
12490thumb2_record_data_proc_sreg_mimm (insn_decode_record *thumb2_insn_r)
12491{
12492 uint32_t reg_rd, op;
12493 uint32_t record_buf[8];
12494
12495 op = bits (thumb2_insn_r->arm_insn, 21, 24);
12496 reg_rd = bits (thumb2_insn_r->arm_insn, 8, 11);
12497
12498 if ((0 == op || 4 == op || 8 == op || 13 == op) && 15 == reg_rd)
12499 {
12500 record_buf[0] = ARM_PS_REGNUM;
12501 thumb2_insn_r->reg_rec_count = 1;
12502 }
12503 else
12504 {
12505 record_buf[0] = reg_rd;
12506 record_buf[1] = ARM_PS_REGNUM;
12507 thumb2_insn_r->reg_rec_count = 2;
12508 }
12509
12510 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12511 record_buf);
12512 return ARM_RECORD_SUCCESS;
12513}
12514
12515/* Generic handler for thumb2 instructions which effect destination and PS
12516 registers. */
12517
12518static int
12519thumb2_record_ps_dest_generic (insn_decode_record *thumb2_insn_r)
12520{
12521 uint32_t reg_rd;
12522 uint32_t record_buf[8];
12523
12524 reg_rd = bits (thumb2_insn_r->arm_insn, 8, 11);
12525
12526 record_buf[0] = reg_rd;
12527 record_buf[1] = ARM_PS_REGNUM;
12528 thumb2_insn_r->reg_rec_count = 2;
12529
12530 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12531 record_buf);
12532 return ARM_RECORD_SUCCESS;
12533}
12534
12535/* Handler for thumb2 branch and miscellaneous control instructions. */
12536
12537static int
12538thumb2_record_branch_misc_cntrl (insn_decode_record *thumb2_insn_r)
12539{
12540 uint32_t op, op1, op2;
12541 uint32_t record_buf[8];
12542
12543 op = bits (thumb2_insn_r->arm_insn, 20, 26);
12544 op1 = bits (thumb2_insn_r->arm_insn, 12, 14);
12545 op2 = bits (thumb2_insn_r->arm_insn, 8, 11);
12546
12547 /* Handle MSR insn. */
12548 if (!(op1 & 0x2) && 0x38 == op)
12549 {
12550 if (!(op2 & 0x3))
12551 {
12552 /* CPSR is going to be changed. */
12553 record_buf[0] = ARM_PS_REGNUM;
12554 thumb2_insn_r->reg_rec_count = 1;
12555 }
12556 else
12557 {
12558 arm_record_unsupported_insn(thumb2_insn_r);
12559 return -1;
12560 }
12561 }
12562 else if (4 == (op1 & 0x5) || 5 == (op1 & 0x5))
12563 {
12564 /* BLX. */
12565 record_buf[0] = ARM_PS_REGNUM;
12566 record_buf[1] = ARM_LR_REGNUM;
12567 thumb2_insn_r->reg_rec_count = 2;
12568 }
12569
12570 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12571 record_buf);
12572 return ARM_RECORD_SUCCESS;
12573}
12574
12575/* Handler for thumb2 store single data item instructions. */
12576
12577static int
12578thumb2_record_str_single_data (insn_decode_record *thumb2_insn_r)
12579{
12580 struct regcache *reg_cache = thumb2_insn_r->regcache;
12581
12582 uint32_t reg_rn, reg_rm, offset_imm, shift_imm;
12583 uint32_t address, offset_addr;
12584 uint32_t record_buf[8], record_buf_mem[8];
12585 uint32_t op1, op2;
12586
12587 ULONGEST u_regval[2];
12588
12589 op1 = bits (thumb2_insn_r->arm_insn, 21, 23);
12590 op2 = bits (thumb2_insn_r->arm_insn, 6, 11);
12591 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12592 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval[0]);
12593
12594 if (bit (thumb2_insn_r->arm_insn, 23))
12595 {
12596 /* T2 encoding. */
12597 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 11);
12598 offset_addr = u_regval[0] + offset_imm;
12599 address = offset_addr;
12600 }
12601 else
12602 {
12603 /* T3 encoding. */
12604 if ((0 == op1 || 1 == op1 || 2 == op1) && !(op2 & 0x20))
12605 {
12606 /* Handle STRB (register). */
12607 reg_rm = bits (thumb2_insn_r->arm_insn, 0, 3);
12608 regcache_raw_read_unsigned (reg_cache, reg_rm, &u_regval[1]);
12609 shift_imm = bits (thumb2_insn_r->arm_insn, 4, 5);
12610 offset_addr = u_regval[1] << shift_imm;
12611 address = u_regval[0] + offset_addr;
12612 }
12613 else
12614 {
12615 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12616 if (bit (thumb2_insn_r->arm_insn, 10))
12617 {
12618 if (bit (thumb2_insn_r->arm_insn, 9))
12619 offset_addr = u_regval[0] + offset_imm;
12620 else
12621 offset_addr = u_regval[0] - offset_imm;
12622
12623 address = offset_addr;
12624 }
12625 else
12626 address = u_regval[0];
12627 }
12628 }
12629
12630 switch (op1)
12631 {
12632 /* Store byte instructions. */
12633 case 4:
12634 case 0:
12635 record_buf_mem[0] = 1;
12636 break;
12637 /* Store half word instructions. */
12638 case 1:
12639 case 5:
12640 record_buf_mem[0] = 2;
12641 break;
12642 /* Store word instructions. */
12643 case 2:
12644 case 6:
12645 record_buf_mem[0] = 4;
12646 break;
12647
12648 default:
12649 gdb_assert_not_reached ("no decoding pattern found");
12650 break;
12651 }
12652
12653 record_buf_mem[1] = address;
12654 thumb2_insn_r->mem_rec_count = 1;
12655 record_buf[0] = reg_rn;
12656 thumb2_insn_r->reg_rec_count = 1;
12657
12658 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12659 record_buf);
12660 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12661 record_buf_mem);
12662 return ARM_RECORD_SUCCESS;
12663}
12664
12665/* Handler for thumb2 load memory hints instructions. */
12666
12667static int
12668thumb2_record_ld_mem_hints (insn_decode_record *thumb2_insn_r)
12669{
12670 uint32_t record_buf[8];
12671 uint32_t reg_rt, reg_rn;
12672
12673 reg_rt = bits (thumb2_insn_r->arm_insn, 12, 15);
12674 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12675
12676 if (ARM_PC_REGNUM != reg_rt)
12677 {
12678 record_buf[0] = reg_rt;
12679 record_buf[1] = reg_rn;
12680 record_buf[2] = ARM_PS_REGNUM;
12681 thumb2_insn_r->reg_rec_count = 3;
12682
12683 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12684 record_buf);
12685 return ARM_RECORD_SUCCESS;
12686 }
12687
12688 return ARM_RECORD_FAILURE;
12689}
12690
12691/* Handler for thumb2 load word instructions. */
12692
12693static int
12694thumb2_record_ld_word (insn_decode_record *thumb2_insn_r)
12695{
c6ec2b30
OJ
12696 uint32_t record_buf[8];
12697
12698 record_buf[0] = bits (thumb2_insn_r->arm_insn, 12, 15);
12699 record_buf[1] = ARM_PS_REGNUM;
12700 thumb2_insn_r->reg_rec_count = 2;
12701
12702 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12703 record_buf);
12704 return ARM_RECORD_SUCCESS;
12705}
12706
12707/* Handler for thumb2 long multiply, long multiply accumulate, and
12708 divide instructions. */
12709
12710static int
12711thumb2_record_lmul_lmla_div (insn_decode_record *thumb2_insn_r)
12712{
12713 uint32_t opcode1 = 0, opcode2 = 0;
12714 uint32_t record_buf[8];
c6ec2b30
OJ
12715
12716 opcode1 = bits (thumb2_insn_r->arm_insn, 20, 22);
12717 opcode2 = bits (thumb2_insn_r->arm_insn, 4, 7);
12718
12719 if (0 == opcode1 || 2 == opcode1 || (opcode1 >= 4 && opcode1 <= 6))
12720 {
12721 /* Handle SMULL, UMULL, SMULAL. */
12722 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
12723 record_buf[0] = bits (thumb2_insn_r->arm_insn, 16, 19);
12724 record_buf[1] = bits (thumb2_insn_r->arm_insn, 12, 15);
12725 record_buf[2] = ARM_PS_REGNUM;
12726 thumb2_insn_r->reg_rec_count = 3;
12727 }
12728 else if (1 == opcode1 || 3 == opcode2)
12729 {
12730 /* Handle SDIV and UDIV. */
12731 record_buf[0] = bits (thumb2_insn_r->arm_insn, 16, 19);
12732 record_buf[1] = bits (thumb2_insn_r->arm_insn, 12, 15);
12733 record_buf[2] = ARM_PS_REGNUM;
12734 thumb2_insn_r->reg_rec_count = 3;
12735 }
12736 else
12737 return ARM_RECORD_FAILURE;
12738
12739 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12740 record_buf);
12741 return ARM_RECORD_SUCCESS;
12742}
12743
60cc5e93
OJ
12744/* Record handler for thumb32 coprocessor instructions. */
12745
12746static int
12747thumb2_record_coproc_insn (insn_decode_record *thumb2_insn_r)
12748{
12749 if (bit (thumb2_insn_r->arm_insn, 25))
12750 return arm_record_coproc_data_proc (thumb2_insn_r);
12751 else
12752 return arm_record_asimd_vfp_coproc (thumb2_insn_r);
12753}
12754
1e1b6563
OJ
12755/* Record handler for advance SIMD structure load/store instructions. */
12756
12757static int
12758thumb2_record_asimd_struct_ld_st (insn_decode_record *thumb2_insn_r)
12759{
12760 struct regcache *reg_cache = thumb2_insn_r->regcache;
12761 uint32_t l_bit, a_bit, b_bits;
12762 uint32_t record_buf[128], record_buf_mem[128];
bec2ab5a 12763 uint32_t reg_rn, reg_vd, address, f_elem;
1e1b6563
OJ
12764 uint32_t index_r = 0, index_e = 0, bf_regs = 0, index_m = 0, loop_t = 0;
12765 uint8_t f_ebytes;
12766
12767 l_bit = bit (thumb2_insn_r->arm_insn, 21);
12768 a_bit = bit (thumb2_insn_r->arm_insn, 23);
12769 b_bits = bits (thumb2_insn_r->arm_insn, 8, 11);
12770 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12771 reg_vd = bits (thumb2_insn_r->arm_insn, 12, 15);
12772 reg_vd = (bit (thumb2_insn_r->arm_insn, 22) << 4) | reg_vd;
12773 f_ebytes = (1 << bits (thumb2_insn_r->arm_insn, 6, 7));
1e1b6563
OJ
12774 f_elem = 8 / f_ebytes;
12775
12776 if (!l_bit)
12777 {
12778 ULONGEST u_regval = 0;
12779 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
12780 address = u_regval;
12781
12782 if (!a_bit)
12783 {
12784 /* Handle VST1. */
12785 if (b_bits == 0x02 || b_bits == 0x0a || (b_bits & 0x0e) == 0x06)
12786 {
12787 if (b_bits == 0x07)
12788 bf_regs = 1;
12789 else if (b_bits == 0x0a)
12790 bf_regs = 2;
12791 else if (b_bits == 0x06)
12792 bf_regs = 3;
12793 else if (b_bits == 0x02)
12794 bf_regs = 4;
12795 else
12796 bf_regs = 0;
12797
12798 for (index_r = 0; index_r < bf_regs; index_r++)
12799 {
12800 for (index_e = 0; index_e < f_elem; index_e++)
12801 {
12802 record_buf_mem[index_m++] = f_ebytes;
12803 record_buf_mem[index_m++] = address;
12804 address = address + f_ebytes;
12805 thumb2_insn_r->mem_rec_count += 1;
12806 }
12807 }
12808 }
12809 /* Handle VST2. */
12810 else if (b_bits == 0x03 || (b_bits & 0x0e) == 0x08)
12811 {
12812 if (b_bits == 0x09 || b_bits == 0x08)
12813 bf_regs = 1;
12814 else if (b_bits == 0x03)
12815 bf_regs = 2;
12816 else
12817 bf_regs = 0;
12818
12819 for (index_r = 0; index_r < bf_regs; index_r++)
12820 for (index_e = 0; index_e < f_elem; index_e++)
12821 {
12822 for (loop_t = 0; loop_t < 2; loop_t++)
12823 {
12824 record_buf_mem[index_m++] = f_ebytes;
12825 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12826 thumb2_insn_r->mem_rec_count += 1;
12827 }
12828 address = address + (2 * f_ebytes);
12829 }
12830 }
12831 /* Handle VST3. */
12832 else if ((b_bits & 0x0e) == 0x04)
12833 {
12834 for (index_e = 0; index_e < f_elem; index_e++)
12835 {
12836 for (loop_t = 0; loop_t < 3; loop_t++)
12837 {
12838 record_buf_mem[index_m++] = f_ebytes;
12839 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12840 thumb2_insn_r->mem_rec_count += 1;
12841 }
12842 address = address + (3 * f_ebytes);
12843 }
12844 }
12845 /* Handle VST4. */
12846 else if (!(b_bits & 0x0e))
12847 {
12848 for (index_e = 0; index_e < f_elem; index_e++)
12849 {
12850 for (loop_t = 0; loop_t < 4; loop_t++)
12851 {
12852 record_buf_mem[index_m++] = f_ebytes;
12853 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12854 thumb2_insn_r->mem_rec_count += 1;
12855 }
12856 address = address + (4 * f_ebytes);
12857 }
12858 }
12859 }
12860 else
12861 {
12862 uint8_t bft_size = bits (thumb2_insn_r->arm_insn, 10, 11);
12863
12864 if (bft_size == 0x00)
12865 f_ebytes = 1;
12866 else if (bft_size == 0x01)
12867 f_ebytes = 2;
12868 else if (bft_size == 0x02)
12869 f_ebytes = 4;
12870 else
12871 f_ebytes = 0;
12872
12873 /* Handle VST1. */
12874 if (!(b_bits & 0x0b) || b_bits == 0x08)
12875 thumb2_insn_r->mem_rec_count = 1;
12876 /* Handle VST2. */
12877 else if ((b_bits & 0x0b) == 0x01 || b_bits == 0x09)
12878 thumb2_insn_r->mem_rec_count = 2;
12879 /* Handle VST3. */
12880 else if ((b_bits & 0x0b) == 0x02 || b_bits == 0x0a)
12881 thumb2_insn_r->mem_rec_count = 3;
12882 /* Handle VST4. */
12883 else if ((b_bits & 0x0b) == 0x03 || b_bits == 0x0b)
12884 thumb2_insn_r->mem_rec_count = 4;
12885
12886 for (index_m = 0; index_m < thumb2_insn_r->mem_rec_count; index_m++)
12887 {
12888 record_buf_mem[index_m] = f_ebytes;
12889 record_buf_mem[index_m] = address + (index_m * f_ebytes);
12890 }
12891 }
12892 }
12893 else
12894 {
12895 if (!a_bit)
12896 {
12897 /* Handle VLD1. */
12898 if (b_bits == 0x02 || b_bits == 0x0a || (b_bits & 0x0e) == 0x06)
12899 thumb2_insn_r->reg_rec_count = 1;
12900 /* Handle VLD2. */
12901 else if (b_bits == 0x03 || (b_bits & 0x0e) == 0x08)
12902 thumb2_insn_r->reg_rec_count = 2;
12903 /* Handle VLD3. */
12904 else if ((b_bits & 0x0e) == 0x04)
12905 thumb2_insn_r->reg_rec_count = 3;
12906 /* Handle VLD4. */
12907 else if (!(b_bits & 0x0e))
12908 thumb2_insn_r->reg_rec_count = 4;
12909 }
12910 else
12911 {
12912 /* Handle VLD1. */
12913 if (!(b_bits & 0x0b) || b_bits == 0x08 || b_bits == 0x0c)
12914 thumb2_insn_r->reg_rec_count = 1;
12915 /* Handle VLD2. */
12916 else if ((b_bits & 0x0b) == 0x01 || b_bits == 0x09 || b_bits == 0x0d)
12917 thumb2_insn_r->reg_rec_count = 2;
12918 /* Handle VLD3. */
12919 else if ((b_bits & 0x0b) == 0x02 || b_bits == 0x0a || b_bits == 0x0e)
12920 thumb2_insn_r->reg_rec_count = 3;
12921 /* Handle VLD4. */
12922 else if ((b_bits & 0x0b) == 0x03 || b_bits == 0x0b || b_bits == 0x0f)
12923 thumb2_insn_r->reg_rec_count = 4;
12924
12925 for (index_r = 0; index_r < thumb2_insn_r->reg_rec_count; index_r++)
12926 record_buf[index_r] = reg_vd + ARM_D0_REGNUM + index_r;
12927 }
12928 }
12929
12930 if (bits (thumb2_insn_r->arm_insn, 0, 3) != 15)
12931 {
12932 record_buf[index_r] = reg_rn;
12933 thumb2_insn_r->reg_rec_count += 1;
12934 }
12935
12936 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12937 record_buf);
12938 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12939 record_buf_mem);
12940 return 0;
12941}
12942
c6ec2b30
OJ
12943/* Decodes thumb2 instruction type and invokes its record handler. */
12944
12945static unsigned int
12946thumb2_record_decode_insn_handler (insn_decode_record *thumb2_insn_r)
12947{
12948 uint32_t op, op1, op2;
12949
12950 op = bit (thumb2_insn_r->arm_insn, 15);
12951 op1 = bits (thumb2_insn_r->arm_insn, 27, 28);
12952 op2 = bits (thumb2_insn_r->arm_insn, 20, 26);
12953
12954 if (op1 == 0x01)
12955 {
12956 if (!(op2 & 0x64 ))
12957 {
12958 /* Load/store multiple instruction. */
12959 return thumb2_record_ld_st_multiple (thumb2_insn_r);
12960 }
b121eeb9 12961 else if ((op2 & 0x64) == 0x4)
c6ec2b30
OJ
12962 {
12963 /* Load/store (dual/exclusive) and table branch instruction. */
12964 return thumb2_record_ld_st_dual_ex_tbb (thumb2_insn_r);
12965 }
b121eeb9 12966 else if ((op2 & 0x60) == 0x20)
c6ec2b30
OJ
12967 {
12968 /* Data-processing (shifted register). */
12969 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r);
12970 }
12971 else if (op2 & 0x40)
12972 {
12973 /* Co-processor instructions. */
60cc5e93 12974 return thumb2_record_coproc_insn (thumb2_insn_r);
c6ec2b30
OJ
12975 }
12976 }
12977 else if (op1 == 0x02)
12978 {
12979 if (op)
12980 {
12981 /* Branches and miscellaneous control instructions. */
12982 return thumb2_record_branch_misc_cntrl (thumb2_insn_r);
12983 }
12984 else if (op2 & 0x20)
12985 {
12986 /* Data-processing (plain binary immediate) instruction. */
12987 return thumb2_record_ps_dest_generic (thumb2_insn_r);
12988 }
12989 else
12990 {
12991 /* Data-processing (modified immediate). */
12992 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r);
12993 }
12994 }
12995 else if (op1 == 0x03)
12996 {
12997 if (!(op2 & 0x71 ))
12998 {
12999 /* Store single data item. */
13000 return thumb2_record_str_single_data (thumb2_insn_r);
13001 }
13002 else if (!((op2 & 0x71) ^ 0x10))
13003 {
13004 /* Advanced SIMD or structure load/store instructions. */
1e1b6563 13005 return thumb2_record_asimd_struct_ld_st (thumb2_insn_r);
c6ec2b30
OJ
13006 }
13007 else if (!((op2 & 0x67) ^ 0x01))
13008 {
13009 /* Load byte, memory hints instruction. */
13010 return thumb2_record_ld_mem_hints (thumb2_insn_r);
13011 }
13012 else if (!((op2 & 0x67) ^ 0x03))
13013 {
13014 /* Load halfword, memory hints instruction. */
13015 return thumb2_record_ld_mem_hints (thumb2_insn_r);
13016 }
13017 else if (!((op2 & 0x67) ^ 0x05))
13018 {
13019 /* Load word instruction. */
13020 return thumb2_record_ld_word (thumb2_insn_r);
13021 }
13022 else if (!((op2 & 0x70) ^ 0x20))
13023 {
13024 /* Data-processing (register) instruction. */
13025 return thumb2_record_ps_dest_generic (thumb2_insn_r);
13026 }
13027 else if (!((op2 & 0x78) ^ 0x30))
13028 {
13029 /* Multiply, multiply accumulate, abs diff instruction. */
13030 return thumb2_record_ps_dest_generic (thumb2_insn_r);
13031 }
13032 else if (!((op2 & 0x78) ^ 0x38))
13033 {
13034 /* Long multiply, long multiply accumulate, and divide. */
13035 return thumb2_record_lmul_lmla_div (thumb2_insn_r);
13036 }
13037 else if (op2 & 0x40)
13038 {
13039 /* Co-processor instructions. */
60cc5e93 13040 return thumb2_record_coproc_insn (thumb2_insn_r);
c6ec2b30
OJ
13041 }
13042 }
13043
13044 return -1;
13045}
72508ac0 13046
ffdbe864 13047namespace {
728a7913
YQ
13048/* Abstract memory reader. */
13049
13050class abstract_memory_reader
13051{
13052public:
13053 /* Read LEN bytes of target memory at address MEMADDR, placing the
13054 results in GDB's memory at BUF. Return true on success. */
13055
13056 virtual bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) = 0;
13057};
13058
13059/* Instruction reader from real target. */
13060
13061class instruction_reader : public abstract_memory_reader
13062{
13063 public:
632e107b 13064 bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) override
728a7913
YQ
13065 {
13066 if (target_read_memory (memaddr, buf, len))
13067 return false;
13068 else
13069 return true;
13070 }
13071};
13072
ffdbe864
YQ
13073} // namespace
13074
72508ac0
PO
13075/* Extracts arm/thumb/thumb2 insn depending on the size, and returns 0 on success
13076and positive val on fauilure. */
13077
13078static int
728a7913
YQ
13079extract_arm_insn (abstract_memory_reader& reader,
13080 insn_decode_record *insn_record, uint32_t insn_size)
72508ac0
PO
13081{
13082 gdb_byte buf[insn_size];
13083
13084 memset (&buf[0], 0, insn_size);
13085
728a7913 13086 if (!reader.read (insn_record->this_addr, buf, insn_size))
72508ac0
PO
13087 return 1;
13088 insn_record->arm_insn = (uint32_t) extract_unsigned_integer (&buf[0],
13089 insn_size,
2959fed9 13090 gdbarch_byte_order_for_code (insn_record->gdbarch));
72508ac0
PO
13091 return 0;
13092}
13093
13094typedef int (*sti_arm_hdl_fp_t) (insn_decode_record*);
13095
13096/* Decode arm/thumb insn depending on condition cods and opcodes; and
13097 dispatch it. */
13098
13099static int
728a7913
YQ
13100decode_insn (abstract_memory_reader &reader, insn_decode_record *arm_record,
13101 record_type_t record_type, uint32_t insn_size)
72508ac0
PO
13102{
13103
01e57735
YQ
13104 /* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm
13105 instruction. */
0fa9c223 13106 static const sti_arm_hdl_fp_t arm_handle_insn[8] =
72508ac0
PO
13107 {
13108 arm_record_data_proc_misc_ld_str, /* 000. */
13109 arm_record_data_proc_imm, /* 001. */
13110 arm_record_ld_st_imm_offset, /* 010. */
13111 arm_record_ld_st_reg_offset, /* 011. */
13112 arm_record_ld_st_multiple, /* 100. */
13113 arm_record_b_bl, /* 101. */
60cc5e93 13114 arm_record_asimd_vfp_coproc, /* 110. */
72508ac0
PO
13115 arm_record_coproc_data_proc /* 111. */
13116 };
13117
01e57735
YQ
13118 /* (Starting from numerical 0); bits 13,14,15 decodes type of thumb
13119 instruction. */
0fa9c223 13120 static const sti_arm_hdl_fp_t thumb_handle_insn[8] =
72508ac0
PO
13121 { \
13122 thumb_record_shift_add_sub, /* 000. */
13123 thumb_record_add_sub_cmp_mov, /* 001. */
13124 thumb_record_ld_st_reg_offset, /* 010. */
13125 thumb_record_ld_st_imm_offset, /* 011. */
13126 thumb_record_ld_st_stack, /* 100. */
13127 thumb_record_misc, /* 101. */
13128 thumb_record_ldm_stm_swi, /* 110. */
13129 thumb_record_branch /* 111. */
13130 };
13131
13132 uint32_t ret = 0; /* return value: negative:failure 0:success. */
13133 uint32_t insn_id = 0;
13134
728a7913 13135 if (extract_arm_insn (reader, arm_record, insn_size))
72508ac0
PO
13136 {
13137 if (record_debug)
01e57735
YQ
13138 {
13139 printf_unfiltered (_("Process record: error reading memory at "
13140 "addr %s len = %d.\n"),
13141 paddress (arm_record->gdbarch,
13142 arm_record->this_addr), insn_size);
13143 }
72508ac0
PO
13144 return -1;
13145 }
13146 else if (ARM_RECORD == record_type)
13147 {
13148 arm_record->cond = bits (arm_record->arm_insn, 28, 31);
13149 insn_id = bits (arm_record->arm_insn, 25, 27);
ca92db2d
YQ
13150
13151 if (arm_record->cond == 0xf)
13152 ret = arm_record_extension_space (arm_record);
13153 else
01e57735 13154 {
ca92db2d
YQ
13155 /* If this insn has fallen into extension space
13156 then we need not decode it anymore. */
01e57735
YQ
13157 ret = arm_handle_insn[insn_id] (arm_record);
13158 }
ca92db2d
YQ
13159 if (ret != ARM_RECORD_SUCCESS)
13160 {
13161 arm_record_unsupported_insn (arm_record);
13162 ret = -1;
13163 }
72508ac0
PO
13164 }
13165 else if (THUMB_RECORD == record_type)
13166 {
13167 /* As thumb does not have condition codes, we set negative. */
13168 arm_record->cond = -1;
13169 insn_id = bits (arm_record->arm_insn, 13, 15);
13170 ret = thumb_handle_insn[insn_id] (arm_record);
ca92db2d
YQ
13171 if (ret != ARM_RECORD_SUCCESS)
13172 {
13173 arm_record_unsupported_insn (arm_record);
13174 ret = -1;
13175 }
72508ac0
PO
13176 }
13177 else if (THUMB2_RECORD == record_type)
13178 {
c6ec2b30
OJ
13179 /* As thumb does not have condition codes, we set negative. */
13180 arm_record->cond = -1;
13181
13182 /* Swap first half of 32bit thumb instruction with second half. */
13183 arm_record->arm_insn
01e57735 13184 = (arm_record->arm_insn >> 16) | (arm_record->arm_insn << 16);
c6ec2b30 13185
ca92db2d 13186 ret = thumb2_record_decode_insn_handler (arm_record);
c6ec2b30 13187
ca92db2d 13188 if (ret != ARM_RECORD_SUCCESS)
01e57735
YQ
13189 {
13190 arm_record_unsupported_insn (arm_record);
13191 ret = -1;
13192 }
72508ac0
PO
13193 }
13194 else
13195 {
13196 /* Throw assertion. */
13197 gdb_assert_not_reached ("not a valid instruction, could not decode");
13198 }
13199
13200 return ret;
13201}
13202
b121eeb9
YQ
13203#if GDB_SELF_TEST
13204namespace selftests {
13205
13206/* Provide both 16-bit and 32-bit thumb instructions. */
13207
13208class instruction_reader_thumb : public abstract_memory_reader
13209{
13210public:
13211 template<size_t SIZE>
13212 instruction_reader_thumb (enum bfd_endian endian,
13213 const uint16_t (&insns)[SIZE])
13214 : m_endian (endian), m_insns (insns), m_insns_size (SIZE)
13215 {}
13216
632e107b 13217 bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) override
b121eeb9
YQ
13218 {
13219 SELF_CHECK (len == 4 || len == 2);
13220 SELF_CHECK (memaddr % 2 == 0);
13221 SELF_CHECK ((memaddr / 2) < m_insns_size);
13222
13223 store_unsigned_integer (buf, 2, m_endian, m_insns[memaddr / 2]);
13224 if (len == 4)
13225 {
13226 store_unsigned_integer (&buf[2], 2, m_endian,
13227 m_insns[memaddr / 2 + 1]);
13228 }
13229 return true;
13230 }
13231
13232private:
13233 enum bfd_endian m_endian;
13234 const uint16_t *m_insns;
13235 size_t m_insns_size;
13236};
13237
13238static void
13239arm_record_test (void)
13240{
13241 struct gdbarch_info info;
13242 gdbarch_info_init (&info);
13243 info.bfd_arch_info = bfd_scan_arch ("arm");
13244
13245 struct gdbarch *gdbarch = gdbarch_find_by_info (info);
13246
13247 SELF_CHECK (gdbarch != NULL);
13248
13249 /* 16-bit Thumb instructions. */
13250 {
13251 insn_decode_record arm_record;
13252
13253 memset (&arm_record, 0, sizeof (insn_decode_record));
13254 arm_record.gdbarch = gdbarch;
13255
13256 static const uint16_t insns[] = {
13257 /* db b2 uxtb r3, r3 */
13258 0xb2db,
13259 /* cd 58 ldr r5, [r1, r3] */
13260 0x58cd,
13261 };
13262
13263 enum bfd_endian endian = gdbarch_byte_order_for_code (arm_record.gdbarch);
13264 instruction_reader_thumb reader (endian, insns);
13265 int ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13266 THUMB_INSN_SIZE_BYTES);
13267
13268 SELF_CHECK (ret == 0);
13269 SELF_CHECK (arm_record.mem_rec_count == 0);
13270 SELF_CHECK (arm_record.reg_rec_count == 1);
13271 SELF_CHECK (arm_record.arm_regs[0] == 3);
13272
13273 arm_record.this_addr += 2;
13274 ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13275 THUMB_INSN_SIZE_BYTES);
13276
13277 SELF_CHECK (ret == 0);
13278 SELF_CHECK (arm_record.mem_rec_count == 0);
13279 SELF_CHECK (arm_record.reg_rec_count == 1);
13280 SELF_CHECK (arm_record.arm_regs[0] == 5);
13281 }
13282
13283 /* 32-bit Thumb-2 instructions. */
13284 {
13285 insn_decode_record arm_record;
13286
13287 memset (&arm_record, 0, sizeof (insn_decode_record));
13288 arm_record.gdbarch = gdbarch;
13289
13290 static const uint16_t insns[] = {
13291 /* 1d ee 70 7f mrc 15, 0, r7, cr13, cr0, {3} */
13292 0xee1d, 0x7f70,
13293 };
13294
13295 enum bfd_endian endian = gdbarch_byte_order_for_code (arm_record.gdbarch);
13296 instruction_reader_thumb reader (endian, insns);
13297 int ret = decode_insn (reader, &arm_record, THUMB2_RECORD,
13298 THUMB2_INSN_SIZE_BYTES);
13299
13300 SELF_CHECK (ret == 0);
13301 SELF_CHECK (arm_record.mem_rec_count == 0);
13302 SELF_CHECK (arm_record.reg_rec_count == 1);
13303 SELF_CHECK (arm_record.arm_regs[0] == 7);
13304 }
13305}
13306} // namespace selftests
13307#endif /* GDB_SELF_TEST */
72508ac0
PO
13308
13309/* Cleans up local record registers and memory allocations. */
13310
13311static void
13312deallocate_reg_mem (insn_decode_record *record)
13313{
13314 xfree (record->arm_regs);
13315 xfree (record->arm_mems);
13316}
13317
13318
01e57735 13319/* Parse the current instruction and record the values of the registers and
72508ac0
PO
13320 memory that will be changed in current instruction to record_arch_list".
13321 Return -1 if something is wrong. */
13322
13323int
01e57735
YQ
13324arm_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
13325 CORE_ADDR insn_addr)
72508ac0
PO
13326{
13327
72508ac0
PO
13328 uint32_t no_of_rec = 0;
13329 uint32_t ret = 0; /* return value: -1:record failure ; 0:success */
13330 ULONGEST t_bit = 0, insn_id = 0;
13331
13332 ULONGEST u_regval = 0;
13333
13334 insn_decode_record arm_record;
13335
13336 memset (&arm_record, 0, sizeof (insn_decode_record));
13337 arm_record.regcache = regcache;
13338 arm_record.this_addr = insn_addr;
13339 arm_record.gdbarch = gdbarch;
13340
13341
13342 if (record_debug > 1)
13343 {
13344 fprintf_unfiltered (gdb_stdlog, "Process record: arm_process_record "
01e57735 13345 "addr = %s\n",
72508ac0
PO
13346 paddress (gdbarch, arm_record.this_addr));
13347 }
13348
728a7913
YQ
13349 instruction_reader reader;
13350 if (extract_arm_insn (reader, &arm_record, 2))
72508ac0
PO
13351 {
13352 if (record_debug)
01e57735
YQ
13353 {
13354 printf_unfiltered (_("Process record: error reading memory at "
13355 "addr %s len = %d.\n"),
13356 paddress (arm_record.gdbarch,
13357 arm_record.this_addr), 2);
13358 }
72508ac0
PO
13359 return -1;
13360 }
13361
13362 /* Check the insn, whether it is thumb or arm one. */
13363
13364 t_bit = arm_psr_thumb_bit (arm_record.gdbarch);
13365 regcache_raw_read_unsigned (arm_record.regcache, ARM_PS_REGNUM, &u_regval);
13366
13367
13368 if (!(u_regval & t_bit))
13369 {
13370 /* We are decoding arm insn. */
728a7913 13371 ret = decode_insn (reader, &arm_record, ARM_RECORD, ARM_INSN_SIZE_BYTES);
72508ac0
PO
13372 }
13373 else
13374 {
13375 insn_id = bits (arm_record.arm_insn, 11, 15);
13376 /* is it thumb2 insn? */
13377 if ((0x1D == insn_id) || (0x1E == insn_id) || (0x1F == insn_id))
01e57735 13378 {
728a7913 13379 ret = decode_insn (reader, &arm_record, THUMB2_RECORD,
01e57735
YQ
13380 THUMB2_INSN_SIZE_BYTES);
13381 }
72508ac0 13382 else
01e57735
YQ
13383 {
13384 /* We are decoding thumb insn. */
728a7913
YQ
13385 ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13386 THUMB_INSN_SIZE_BYTES);
01e57735 13387 }
72508ac0
PO
13388 }
13389
13390 if (0 == ret)
13391 {
13392 /* Record registers. */
25ea693b 13393 record_full_arch_list_add_reg (arm_record.regcache, ARM_PC_REGNUM);
72508ac0 13394 if (arm_record.arm_regs)
01e57735
YQ
13395 {
13396 for (no_of_rec = 0; no_of_rec < arm_record.reg_rec_count; no_of_rec++)
13397 {
13398 if (record_full_arch_list_add_reg
25ea693b 13399 (arm_record.regcache , arm_record.arm_regs[no_of_rec]))
01e57735
YQ
13400 ret = -1;
13401 }
13402 }
72508ac0
PO
13403 /* Record memories. */
13404 if (arm_record.arm_mems)
01e57735
YQ
13405 {
13406 for (no_of_rec = 0; no_of_rec < arm_record.mem_rec_count; no_of_rec++)
13407 {
13408 if (record_full_arch_list_add_mem
13409 ((CORE_ADDR)arm_record.arm_mems[no_of_rec].addr,
25ea693b 13410 arm_record.arm_mems[no_of_rec].len))
01e57735
YQ
13411 ret = -1;
13412 }
13413 }
72508ac0 13414
25ea693b 13415 if (record_full_arch_list_add_end ())
01e57735 13416 ret = -1;
72508ac0
PO
13417 }
13418
13419
13420 deallocate_reg_mem (&arm_record);
13421
13422 return ret;
13423}
This page took 2.064277 seconds and 4 git commands to generate.