Use enum for return method for dummy calls
[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 1803
9e237747
MM
1804 /* AAPCS does not use a frame register, so we can abort here. */
1805 if (gdbarch_tdep (gdbarch)->arm_abi == ARM_ABI_AAPCS)
1806 return;
1807
0d39a070 1808 frame_loc = get_frame_register_unsigned (this_frame, ARM_FP_REGNUM);
7913a64c
YQ
1809 if (!safe_read_memory_unsigned_integer (frame_loc, 4, byte_order,
1810 &return_value))
0d39a070
DJ
1811 return;
1812 else
1813 {
1814 prologue_start = gdbarch_addr_bits_remove
1815 (gdbarch, return_value) - 8;
1816 prologue_end = prologue_start + 64; /* See above. */
1817 }
1818 }
1819
1820 if (prev_pc < prologue_end)
1821 prologue_end = prev_pc;
1822
1823 arm_analyze_prologue (gdbarch, prologue_start, prologue_end, cache);
c906108c
SS
1824}
1825
eb5492fa 1826static struct arm_prologue_cache *
a262aec2 1827arm_make_prologue_cache (struct frame_info *this_frame)
c906108c 1828{
eb5492fa
DJ
1829 int reg;
1830 struct arm_prologue_cache *cache;
1831 CORE_ADDR unwound_fp;
c5aa993b 1832
35d5d4ee 1833 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
a262aec2 1834 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
c906108c 1835
a262aec2 1836 arm_scan_prologue (this_frame, cache);
848cfffb 1837
a262aec2 1838 unwound_fp = get_frame_register_unsigned (this_frame, cache->framereg);
eb5492fa
DJ
1839 if (unwound_fp == 0)
1840 return cache;
c906108c 1841
4be43953 1842 cache->prev_sp = unwound_fp + cache->framesize;
c906108c 1843
eb5492fa
DJ
1844 /* Calculate actual addresses of saved registers using offsets
1845 determined by arm_scan_prologue. */
a262aec2 1846 for (reg = 0; reg < gdbarch_num_regs (get_frame_arch (this_frame)); reg++)
e28a332c 1847 if (trad_frame_addr_p (cache->saved_regs, reg))
eb5492fa
DJ
1848 cache->saved_regs[reg].addr += cache->prev_sp;
1849
1850 return cache;
c906108c
SS
1851}
1852
c1ee9414
LM
1853/* Implementation of the stop_reason hook for arm_prologue frames. */
1854
1855static enum unwind_stop_reason
1856arm_prologue_unwind_stop_reason (struct frame_info *this_frame,
1857 void **this_cache)
1858{
1859 struct arm_prologue_cache *cache;
1860 CORE_ADDR pc;
1861
1862 if (*this_cache == NULL)
1863 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1864 cache = (struct arm_prologue_cache *) *this_cache;
c1ee9414
LM
1865
1866 /* This is meant to halt the backtrace at "_start". */
1867 pc = get_frame_pc (this_frame);
1868 if (pc <= gdbarch_tdep (get_frame_arch (this_frame))->lowest_pc)
1869 return UNWIND_OUTERMOST;
1870
1871 /* If we've hit a wall, stop. */
1872 if (cache->prev_sp == 0)
1873 return UNWIND_OUTERMOST;
1874
1875 return UNWIND_NO_REASON;
1876}
1877
eb5492fa
DJ
1878/* Our frame ID for a normal frame is the current function's starting PC
1879 and the caller's SP when we were called. */
c906108c 1880
148754e5 1881static void
a262aec2 1882arm_prologue_this_id (struct frame_info *this_frame,
eb5492fa
DJ
1883 void **this_cache,
1884 struct frame_id *this_id)
c906108c 1885{
eb5492fa
DJ
1886 struct arm_prologue_cache *cache;
1887 struct frame_id id;
2c404490 1888 CORE_ADDR pc, func;
f079148d 1889
eb5492fa 1890 if (*this_cache == NULL)
a262aec2 1891 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1892 cache = (struct arm_prologue_cache *) *this_cache;
2a451106 1893
0e9e9abd
UW
1894 /* Use function start address as part of the frame ID. If we cannot
1895 identify the start address (due to missing symbol information),
1896 fall back to just using the current PC. */
c1ee9414 1897 pc = get_frame_pc (this_frame);
2c404490 1898 func = get_frame_func (this_frame);
0e9e9abd
UW
1899 if (!func)
1900 func = pc;
1901
eb5492fa 1902 id = frame_id_build (cache->prev_sp, func);
eb5492fa 1903 *this_id = id;
c906108c
SS
1904}
1905
a262aec2
DJ
1906static struct value *
1907arm_prologue_prev_register (struct frame_info *this_frame,
eb5492fa 1908 void **this_cache,
a262aec2 1909 int prev_regnum)
24de872b 1910{
24568a2c 1911 struct gdbarch *gdbarch = get_frame_arch (this_frame);
24de872b
DJ
1912 struct arm_prologue_cache *cache;
1913
eb5492fa 1914 if (*this_cache == NULL)
a262aec2 1915 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 1916 cache = (struct arm_prologue_cache *) *this_cache;
24de872b 1917
eb5492fa 1918 /* If we are asked to unwind the PC, then we need to return the LR
b39cc962
DJ
1919 instead. The prologue may save PC, but it will point into this
1920 frame's prologue, not the next frame's resume location. Also
1921 strip the saved T bit. A valid LR may have the low bit set, but
1922 a valid PC never does. */
eb5492fa 1923 if (prev_regnum == ARM_PC_REGNUM)
b39cc962
DJ
1924 {
1925 CORE_ADDR lr;
1926
1927 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
1928 return frame_unwind_got_constant (this_frame, prev_regnum,
24568a2c 1929 arm_addr_bits_remove (gdbarch, lr));
b39cc962 1930 }
24de872b 1931
eb5492fa 1932 /* SP is generally not saved to the stack, but this frame is
a262aec2 1933 identified by the next frame's stack pointer at the time of the call.
eb5492fa
DJ
1934 The value was already reconstructed into PREV_SP. */
1935 if (prev_regnum == ARM_SP_REGNUM)
a262aec2 1936 return frame_unwind_got_constant (this_frame, prev_regnum, cache->prev_sp);
eb5492fa 1937
b39cc962
DJ
1938 /* The CPSR may have been changed by the call instruction and by the
1939 called function. The only bit we can reconstruct is the T bit,
1940 by checking the low bit of LR as of the call. This is a reliable
1941 indicator of Thumb-ness except for some ARM v4T pre-interworking
1942 Thumb code, which could get away with a clear low bit as long as
1943 the called function did not use bx. Guess that all other
1944 bits are unchanged; the condition flags are presumably lost,
1945 but the processor status is likely valid. */
1946 if (prev_regnum == ARM_PS_REGNUM)
1947 {
1948 CORE_ADDR lr, cpsr;
9779414d 1949 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
b39cc962
DJ
1950
1951 cpsr = get_frame_register_unsigned (this_frame, prev_regnum);
1952 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
1953 if (IS_THUMB_ADDR (lr))
9779414d 1954 cpsr |= t_bit;
b39cc962 1955 else
9779414d 1956 cpsr &= ~t_bit;
b39cc962
DJ
1957 return frame_unwind_got_constant (this_frame, prev_regnum, cpsr);
1958 }
1959
a262aec2
DJ
1960 return trad_frame_get_prev_register (this_frame, cache->saved_regs,
1961 prev_regnum);
eb5492fa
DJ
1962}
1963
1964struct frame_unwind arm_prologue_unwind = {
1965 NORMAL_FRAME,
c1ee9414 1966 arm_prologue_unwind_stop_reason,
eb5492fa 1967 arm_prologue_this_id,
a262aec2
DJ
1968 arm_prologue_prev_register,
1969 NULL,
1970 default_frame_sniffer
eb5492fa
DJ
1971};
1972
0e9e9abd
UW
1973/* Maintain a list of ARM exception table entries per objfile, similar to the
1974 list of mapping symbols. We only cache entries for standard ARM-defined
1975 personality routines; the cache will contain only the frame unwinding
1976 instructions associated with the entry (not the descriptors). */
1977
1978static const struct objfile_data *arm_exidx_data_key;
1979
1980struct arm_exidx_entry
1981{
1982 bfd_vma addr;
1983 gdb_byte *entry;
1984};
1985typedef struct arm_exidx_entry arm_exidx_entry_s;
1986DEF_VEC_O(arm_exidx_entry_s);
1987
1988struct arm_exidx_data
1989{
1990 VEC(arm_exidx_entry_s) **section_maps;
1991};
1992
1993static void
1994arm_exidx_data_free (struct objfile *objfile, void *arg)
1995{
9a3c8263 1996 struct arm_exidx_data *data = (struct arm_exidx_data *) arg;
0e9e9abd
UW
1997 unsigned int i;
1998
1999 for (i = 0; i < objfile->obfd->section_count; i++)
2000 VEC_free (arm_exidx_entry_s, data->section_maps[i]);
2001}
2002
2003static inline int
2004arm_compare_exidx_entries (const struct arm_exidx_entry *lhs,
2005 const struct arm_exidx_entry *rhs)
2006{
2007 return lhs->addr < rhs->addr;
2008}
2009
2010static struct obj_section *
2011arm_obj_section_from_vma (struct objfile *objfile, bfd_vma vma)
2012{
2013 struct obj_section *osect;
2014
2015 ALL_OBJFILE_OSECTIONS (objfile, osect)
2016 if (bfd_get_section_flags (objfile->obfd,
2017 osect->the_bfd_section) & SEC_ALLOC)
2018 {
2019 bfd_vma start, size;
2020 start = bfd_get_section_vma (objfile->obfd, osect->the_bfd_section);
2021 size = bfd_get_section_size (osect->the_bfd_section);
2022
2023 if (start <= vma && vma < start + size)
2024 return osect;
2025 }
2026
2027 return NULL;
2028}
2029
2030/* Parse contents of exception table and exception index sections
2031 of OBJFILE, and fill in the exception table entry cache.
2032
2033 For each entry that refers to a standard ARM-defined personality
2034 routine, extract the frame unwinding instructions (from either
2035 the index or the table section). The unwinding instructions
2036 are normalized by:
2037 - extracting them from the rest of the table data
2038 - converting to host endianness
2039 - appending the implicit 0xb0 ("Finish") code
2040
2041 The extracted and normalized instructions are stored for later
2042 retrieval by the arm_find_exidx_entry routine. */
2043
2044static void
2045arm_exidx_new_objfile (struct objfile *objfile)
2046{
0e9e9abd
UW
2047 struct arm_exidx_data *data;
2048 asection *exidx, *extab;
2049 bfd_vma exidx_vma = 0, extab_vma = 0;
0e9e9abd
UW
2050 LONGEST i;
2051
2052 /* If we've already touched this file, do nothing. */
2053 if (!objfile || objfile_data (objfile, arm_exidx_data_key) != NULL)
2054 return;
2055
2056 /* Read contents of exception table and index. */
a5eda10c 2057 exidx = bfd_get_section_by_name (objfile->obfd, ELF_STRING_ARM_unwind);
984c7238 2058 gdb::byte_vector exidx_data;
0e9e9abd
UW
2059 if (exidx)
2060 {
2061 exidx_vma = bfd_section_vma (objfile->obfd, exidx);
984c7238 2062 exidx_data.resize (bfd_get_section_size (exidx));
0e9e9abd
UW
2063
2064 if (!bfd_get_section_contents (objfile->obfd, exidx,
984c7238
TT
2065 exidx_data.data (), 0,
2066 exidx_data.size ()))
2067 return;
0e9e9abd
UW
2068 }
2069
2070 extab = bfd_get_section_by_name (objfile->obfd, ".ARM.extab");
984c7238 2071 gdb::byte_vector extab_data;
0e9e9abd
UW
2072 if (extab)
2073 {
2074 extab_vma = bfd_section_vma (objfile->obfd, extab);
984c7238 2075 extab_data.resize (bfd_get_section_size (extab));
0e9e9abd
UW
2076
2077 if (!bfd_get_section_contents (objfile->obfd, extab,
984c7238
TT
2078 extab_data.data (), 0,
2079 extab_data.size ()))
2080 return;
0e9e9abd
UW
2081 }
2082
2083 /* Allocate exception table data structure. */
2084 data = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct arm_exidx_data);
2085 set_objfile_data (objfile, arm_exidx_data_key, data);
2086 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
2087 objfile->obfd->section_count,
2088 VEC(arm_exidx_entry_s) *);
2089
2090 /* Fill in exception table. */
984c7238 2091 for (i = 0; i < exidx_data.size () / 8; i++)
0e9e9abd
UW
2092 {
2093 struct arm_exidx_entry new_exidx_entry;
984c7238
TT
2094 bfd_vma idx = bfd_h_get_32 (objfile->obfd, exidx_data.data () + i * 8);
2095 bfd_vma val = bfd_h_get_32 (objfile->obfd,
2096 exidx_data.data () + i * 8 + 4);
0e9e9abd
UW
2097 bfd_vma addr = 0, word = 0;
2098 int n_bytes = 0, n_words = 0;
2099 struct obj_section *sec;
2100 gdb_byte *entry = NULL;
2101
2102 /* Extract address of start of function. */
2103 idx = ((idx & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2104 idx += exidx_vma + i * 8;
2105
2106 /* Find section containing function and compute section offset. */
2107 sec = arm_obj_section_from_vma (objfile, idx);
2108 if (sec == NULL)
2109 continue;
2110 idx -= bfd_get_section_vma (objfile->obfd, sec->the_bfd_section);
2111
2112 /* Determine address of exception table entry. */
2113 if (val == 1)
2114 {
2115 /* EXIDX_CANTUNWIND -- no exception table entry present. */
2116 }
2117 else if ((val & 0xff000000) == 0x80000000)
2118 {
2119 /* Exception table entry embedded in .ARM.exidx
2120 -- must be short form. */
2121 word = val;
2122 n_bytes = 3;
2123 }
2124 else if (!(val & 0x80000000))
2125 {
2126 /* Exception table entry in .ARM.extab. */
2127 addr = ((val & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2128 addr += exidx_vma + i * 8 + 4;
2129
984c7238 2130 if (addr >= extab_vma && addr + 4 <= extab_vma + extab_data.size ())
0e9e9abd
UW
2131 {
2132 word = bfd_h_get_32 (objfile->obfd,
984c7238 2133 extab_data.data () + addr - extab_vma);
0e9e9abd
UW
2134 addr += 4;
2135
2136 if ((word & 0xff000000) == 0x80000000)
2137 {
2138 /* Short form. */
2139 n_bytes = 3;
2140 }
2141 else if ((word & 0xff000000) == 0x81000000
2142 || (word & 0xff000000) == 0x82000000)
2143 {
2144 /* Long form. */
2145 n_bytes = 2;
2146 n_words = ((word >> 16) & 0xff);
2147 }
2148 else if (!(word & 0x80000000))
2149 {
2150 bfd_vma pers;
2151 struct obj_section *pers_sec;
2152 int gnu_personality = 0;
2153
2154 /* Custom personality routine. */
2155 pers = ((word & 0x7fffffff) ^ 0x40000000) - 0x40000000;
2156 pers = UNMAKE_THUMB_ADDR (pers + addr - 4);
2157
2158 /* Check whether we've got one of the variants of the
2159 GNU personality routines. */
2160 pers_sec = arm_obj_section_from_vma (objfile, pers);
2161 if (pers_sec)
2162 {
2163 static const char *personality[] =
2164 {
2165 "__gcc_personality_v0",
2166 "__gxx_personality_v0",
2167 "__gcj_personality_v0",
2168 "__gnu_objc_personality_v0",
2169 NULL
2170 };
2171
2172 CORE_ADDR pc = pers + obj_section_offset (pers_sec);
2173 int k;
2174
2175 for (k = 0; personality[k]; k++)
2176 if (lookup_minimal_symbol_by_pc_name
2177 (pc, personality[k], objfile))
2178 {
2179 gnu_personality = 1;
2180 break;
2181 }
2182 }
2183
2184 /* If so, the next word contains a word count in the high
2185 byte, followed by the same unwind instructions as the
2186 pre-defined forms. */
2187 if (gnu_personality
984c7238 2188 && addr + 4 <= extab_vma + extab_data.size ())
0e9e9abd
UW
2189 {
2190 word = bfd_h_get_32 (objfile->obfd,
984c7238
TT
2191 (extab_data.data ()
2192 + addr - extab_vma));
0e9e9abd
UW
2193 addr += 4;
2194 n_bytes = 3;
2195 n_words = ((word >> 24) & 0xff);
2196 }
2197 }
2198 }
2199 }
2200
2201 /* Sanity check address. */
2202 if (n_words)
984c7238
TT
2203 if (addr < extab_vma
2204 || addr + 4 * n_words > extab_vma + extab_data.size ())
0e9e9abd
UW
2205 n_words = n_bytes = 0;
2206
2207 /* The unwind instructions reside in WORD (only the N_BYTES least
2208 significant bytes are valid), followed by N_WORDS words in the
2209 extab section starting at ADDR. */
2210 if (n_bytes || n_words)
2211 {
224c3ddb
SM
2212 gdb_byte *p = entry
2213 = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack,
2214 n_bytes + n_words * 4 + 1);
0e9e9abd
UW
2215
2216 while (n_bytes--)
2217 *p++ = (gdb_byte) ((word >> (8 * n_bytes)) & 0xff);
2218
2219 while (n_words--)
2220 {
2221 word = bfd_h_get_32 (objfile->obfd,
984c7238 2222 extab_data.data () + addr - extab_vma);
0e9e9abd
UW
2223 addr += 4;
2224
2225 *p++ = (gdb_byte) ((word >> 24) & 0xff);
2226 *p++ = (gdb_byte) ((word >> 16) & 0xff);
2227 *p++ = (gdb_byte) ((word >> 8) & 0xff);
2228 *p++ = (gdb_byte) (word & 0xff);
2229 }
2230
2231 /* Implied "Finish" to terminate the list. */
2232 *p++ = 0xb0;
2233 }
2234
2235 /* Push entry onto vector. They are guaranteed to always
2236 appear in order of increasing addresses. */
2237 new_exidx_entry.addr = idx;
2238 new_exidx_entry.entry = entry;
2239 VEC_safe_push (arm_exidx_entry_s,
2240 data->section_maps[sec->the_bfd_section->index],
2241 &new_exidx_entry);
2242 }
0e9e9abd
UW
2243}
2244
2245/* Search for the exception table entry covering MEMADDR. If one is found,
2246 return a pointer to its data. Otherwise, return 0. If START is non-NULL,
2247 set *START to the start of the region covered by this entry. */
2248
2249static gdb_byte *
2250arm_find_exidx_entry (CORE_ADDR memaddr, CORE_ADDR *start)
2251{
2252 struct obj_section *sec;
2253
2254 sec = find_pc_section (memaddr);
2255 if (sec != NULL)
2256 {
2257 struct arm_exidx_data *data;
2258 VEC(arm_exidx_entry_s) *map;
2259 struct arm_exidx_entry map_key = { memaddr - obj_section_addr (sec), 0 };
2260 unsigned int idx;
2261
9a3c8263
SM
2262 data = ((struct arm_exidx_data *)
2263 objfile_data (sec->objfile, arm_exidx_data_key));
0e9e9abd
UW
2264 if (data != NULL)
2265 {
2266 map = data->section_maps[sec->the_bfd_section->index];
2267 if (!VEC_empty (arm_exidx_entry_s, map))
2268 {
2269 struct arm_exidx_entry *map_sym;
2270
2271 idx = VEC_lower_bound (arm_exidx_entry_s, map, &map_key,
2272 arm_compare_exidx_entries);
2273
2274 /* VEC_lower_bound finds the earliest ordered insertion
2275 point. If the following symbol starts at this exact
2276 address, we use that; otherwise, the preceding
2277 exception table entry covers this address. */
2278 if (idx < VEC_length (arm_exidx_entry_s, map))
2279 {
2280 map_sym = VEC_index (arm_exidx_entry_s, map, idx);
2281 if (map_sym->addr == map_key.addr)
2282 {
2283 if (start)
2284 *start = map_sym->addr + obj_section_addr (sec);
2285 return map_sym->entry;
2286 }
2287 }
2288
2289 if (idx > 0)
2290 {
2291 map_sym = VEC_index (arm_exidx_entry_s, map, idx - 1);
2292 if (start)
2293 *start = map_sym->addr + obj_section_addr (sec);
2294 return map_sym->entry;
2295 }
2296 }
2297 }
2298 }
2299
2300 return NULL;
2301}
2302
2303/* Given the current frame THIS_FRAME, and its associated frame unwinding
2304 instruction list from the ARM exception table entry ENTRY, allocate and
2305 return a prologue cache structure describing how to unwind this frame.
2306
2307 Return NULL if the unwinding instruction list contains a "spare",
2308 "reserved" or "refuse to unwind" instruction as defined in section
2309 "9.3 Frame unwinding instructions" of the "Exception Handling ABI
2310 for the ARM Architecture" document. */
2311
2312static struct arm_prologue_cache *
2313arm_exidx_fill_cache (struct frame_info *this_frame, gdb_byte *entry)
2314{
2315 CORE_ADDR vsp = 0;
2316 int vsp_valid = 0;
2317
2318 struct arm_prologue_cache *cache;
2319 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2320 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2321
2322 for (;;)
2323 {
2324 gdb_byte insn;
2325
2326 /* Whenever we reload SP, we actually have to retrieve its
2327 actual value in the current frame. */
2328 if (!vsp_valid)
2329 {
2330 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2331 {
2332 int reg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2333 vsp = get_frame_register_unsigned (this_frame, reg);
2334 }
2335 else
2336 {
2337 CORE_ADDR addr = cache->saved_regs[ARM_SP_REGNUM].addr;
2338 vsp = get_frame_memory_unsigned (this_frame, addr, 4);
2339 }
2340
2341 vsp_valid = 1;
2342 }
2343
2344 /* Decode next unwind instruction. */
2345 insn = *entry++;
2346
2347 if ((insn & 0xc0) == 0)
2348 {
2349 int offset = insn & 0x3f;
2350 vsp += (offset << 2) + 4;
2351 }
2352 else if ((insn & 0xc0) == 0x40)
2353 {
2354 int offset = insn & 0x3f;
2355 vsp -= (offset << 2) + 4;
2356 }
2357 else if ((insn & 0xf0) == 0x80)
2358 {
2359 int mask = ((insn & 0xf) << 8) | *entry++;
2360 int i;
2361
2362 /* The special case of an all-zero mask identifies
2363 "Refuse to unwind". We return NULL to fall back
2364 to the prologue analyzer. */
2365 if (mask == 0)
2366 return NULL;
2367
2368 /* Pop registers r4..r15 under mask. */
2369 for (i = 0; i < 12; i++)
2370 if (mask & (1 << i))
2371 {
2372 cache->saved_regs[4 + i].addr = vsp;
2373 vsp += 4;
2374 }
2375
2376 /* Special-case popping SP -- we need to reload vsp. */
2377 if (mask & (1 << (ARM_SP_REGNUM - 4)))
2378 vsp_valid = 0;
2379 }
2380 else if ((insn & 0xf0) == 0x90)
2381 {
2382 int reg = insn & 0xf;
2383
2384 /* Reserved cases. */
2385 if (reg == ARM_SP_REGNUM || reg == ARM_PC_REGNUM)
2386 return NULL;
2387
2388 /* Set SP from another register and mark VSP for reload. */
2389 cache->saved_regs[ARM_SP_REGNUM] = cache->saved_regs[reg];
2390 vsp_valid = 0;
2391 }
2392 else if ((insn & 0xf0) == 0xa0)
2393 {
2394 int count = insn & 0x7;
2395 int pop_lr = (insn & 0x8) != 0;
2396 int i;
2397
2398 /* Pop r4..r[4+count]. */
2399 for (i = 0; i <= count; i++)
2400 {
2401 cache->saved_regs[4 + i].addr = vsp;
2402 vsp += 4;
2403 }
2404
2405 /* If indicated by flag, pop LR as well. */
2406 if (pop_lr)
2407 {
2408 cache->saved_regs[ARM_LR_REGNUM].addr = vsp;
2409 vsp += 4;
2410 }
2411 }
2412 else if (insn == 0xb0)
2413 {
2414 /* We could only have updated PC by popping into it; if so, it
2415 will show up as address. Otherwise, copy LR into PC. */
2416 if (!trad_frame_addr_p (cache->saved_regs, ARM_PC_REGNUM))
2417 cache->saved_regs[ARM_PC_REGNUM]
2418 = cache->saved_regs[ARM_LR_REGNUM];
2419
2420 /* We're done. */
2421 break;
2422 }
2423 else if (insn == 0xb1)
2424 {
2425 int mask = *entry++;
2426 int i;
2427
2428 /* All-zero mask and mask >= 16 is "spare". */
2429 if (mask == 0 || mask >= 16)
2430 return NULL;
2431
2432 /* Pop r0..r3 under mask. */
2433 for (i = 0; i < 4; i++)
2434 if (mask & (1 << i))
2435 {
2436 cache->saved_regs[i].addr = vsp;
2437 vsp += 4;
2438 }
2439 }
2440 else if (insn == 0xb2)
2441 {
2442 ULONGEST offset = 0;
2443 unsigned shift = 0;
2444
2445 do
2446 {
2447 offset |= (*entry & 0x7f) << shift;
2448 shift += 7;
2449 }
2450 while (*entry++ & 0x80);
2451
2452 vsp += 0x204 + (offset << 2);
2453 }
2454 else if (insn == 0xb3)
2455 {
2456 int start = *entry >> 4;
2457 int count = (*entry++) & 0xf;
2458 int i;
2459
2460 /* Only registers D0..D15 are valid here. */
2461 if (start + count >= 16)
2462 return NULL;
2463
2464 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2465 for (i = 0; i <= count; i++)
2466 {
2467 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2468 vsp += 8;
2469 }
2470
2471 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2472 vsp += 4;
2473 }
2474 else if ((insn & 0xf8) == 0xb8)
2475 {
2476 int count = insn & 0x7;
2477 int i;
2478
2479 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2480 for (i = 0; i <= count; i++)
2481 {
2482 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2483 vsp += 8;
2484 }
2485
2486 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2487 vsp += 4;
2488 }
2489 else if (insn == 0xc6)
2490 {
2491 int start = *entry >> 4;
2492 int count = (*entry++) & 0xf;
2493 int i;
2494
2495 /* Only registers WR0..WR15 are valid. */
2496 if (start + count >= 16)
2497 return NULL;
2498
2499 /* Pop iwmmx registers WR[start]..WR[start+count]. */
2500 for (i = 0; i <= count; i++)
2501 {
2502 cache->saved_regs[ARM_WR0_REGNUM + start + i].addr = vsp;
2503 vsp += 8;
2504 }
2505 }
2506 else if (insn == 0xc7)
2507 {
2508 int mask = *entry++;
2509 int i;
2510
2511 /* All-zero mask and mask >= 16 is "spare". */
2512 if (mask == 0 || mask >= 16)
2513 return NULL;
2514
2515 /* Pop iwmmx general-purpose registers WCGR0..WCGR3 under mask. */
2516 for (i = 0; i < 4; i++)
2517 if (mask & (1 << i))
2518 {
2519 cache->saved_regs[ARM_WCGR0_REGNUM + i].addr = vsp;
2520 vsp += 4;
2521 }
2522 }
2523 else if ((insn & 0xf8) == 0xc0)
2524 {
2525 int count = insn & 0x7;
2526 int i;
2527
2528 /* Pop iwmmx registers WR[10]..WR[10+count]. */
2529 for (i = 0; i <= count; i++)
2530 {
2531 cache->saved_regs[ARM_WR0_REGNUM + 10 + i].addr = vsp;
2532 vsp += 8;
2533 }
2534 }
2535 else if (insn == 0xc8)
2536 {
2537 int start = *entry >> 4;
2538 int count = (*entry++) & 0xf;
2539 int i;
2540
2541 /* Only registers D0..D31 are valid. */
2542 if (start + count >= 16)
2543 return NULL;
2544
2545 /* Pop VFP double-precision registers
2546 D[16+start]..D[16+start+count]. */
2547 for (i = 0; i <= count; i++)
2548 {
2549 cache->saved_regs[ARM_D0_REGNUM + 16 + start + i].addr = vsp;
2550 vsp += 8;
2551 }
2552 }
2553 else if (insn == 0xc9)
2554 {
2555 int start = *entry >> 4;
2556 int count = (*entry++) & 0xf;
2557 int i;
2558
2559 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2560 for (i = 0; i <= count; i++)
2561 {
2562 cache->saved_regs[ARM_D0_REGNUM + start + i].addr = vsp;
2563 vsp += 8;
2564 }
2565 }
2566 else if ((insn & 0xf8) == 0xd0)
2567 {
2568 int count = insn & 0x7;
2569 int i;
2570
2571 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2572 for (i = 0; i <= count; i++)
2573 {
2574 cache->saved_regs[ARM_D0_REGNUM + 8 + i].addr = vsp;
2575 vsp += 8;
2576 }
2577 }
2578 else
2579 {
2580 /* Everything else is "spare". */
2581 return NULL;
2582 }
2583 }
2584
2585 /* If we restore SP from a register, assume this was the frame register.
2586 Otherwise just fall back to SP as frame register. */
2587 if (trad_frame_realreg_p (cache->saved_regs, ARM_SP_REGNUM))
2588 cache->framereg = cache->saved_regs[ARM_SP_REGNUM].realreg;
2589 else
2590 cache->framereg = ARM_SP_REGNUM;
2591
2592 /* Determine offset to previous frame. */
2593 cache->framesize
2594 = vsp - get_frame_register_unsigned (this_frame, cache->framereg);
2595
2596 /* We already got the previous SP. */
2597 cache->prev_sp = vsp;
2598
2599 return cache;
2600}
2601
2602/* Unwinding via ARM exception table entries. Note that the sniffer
2603 already computes a filled-in prologue cache, which is then used
2604 with the same arm_prologue_this_id and arm_prologue_prev_register
2605 routines also used for prologue-parsing based unwinding. */
2606
2607static int
2608arm_exidx_unwind_sniffer (const struct frame_unwind *self,
2609 struct frame_info *this_frame,
2610 void **this_prologue_cache)
2611{
2612 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2613 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
2614 CORE_ADDR addr_in_block, exidx_region, func_start;
2615 struct arm_prologue_cache *cache;
2616 gdb_byte *entry;
2617
2618 /* See if we have an ARM exception table entry covering this address. */
2619 addr_in_block = get_frame_address_in_block (this_frame);
2620 entry = arm_find_exidx_entry (addr_in_block, &exidx_region);
2621 if (!entry)
2622 return 0;
2623
2624 /* The ARM exception table does not describe unwind information
2625 for arbitrary PC values, but is guaranteed to be correct only
2626 at call sites. We have to decide here whether we want to use
2627 ARM exception table information for this frame, or fall back
2628 to using prologue parsing. (Note that if we have DWARF CFI,
2629 this sniffer isn't even called -- CFI is always preferred.)
2630
2631 Before we make this decision, however, we check whether we
2632 actually have *symbol* information for the current frame.
2633 If not, prologue parsing would not work anyway, so we might
2634 as well use the exception table and hope for the best. */
2635 if (find_pc_partial_function (addr_in_block, NULL, &func_start, NULL))
2636 {
2637 int exc_valid = 0;
2638
2639 /* If the next frame is "normal", we are at a call site in this
2640 frame, so exception information is guaranteed to be valid. */
2641 if (get_next_frame (this_frame)
2642 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME)
2643 exc_valid = 1;
2644
2645 /* We also assume exception information is valid if we're currently
2646 blocked in a system call. The system library is supposed to
d9311bfa
AT
2647 ensure this, so that e.g. pthread cancellation works. */
2648 if (arm_frame_is_thumb (this_frame))
0e9e9abd 2649 {
7913a64c 2650 ULONGEST insn;
416dc9c6 2651
7913a64c
YQ
2652 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame) - 2,
2653 2, byte_order_for_code, &insn)
d9311bfa
AT
2654 && (insn & 0xff00) == 0xdf00 /* svc */)
2655 exc_valid = 1;
0e9e9abd 2656 }
d9311bfa
AT
2657 else
2658 {
7913a64c 2659 ULONGEST insn;
416dc9c6 2660
7913a64c
YQ
2661 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame) - 4,
2662 4, byte_order_for_code, &insn)
d9311bfa
AT
2663 && (insn & 0x0f000000) == 0x0f000000 /* svc */)
2664 exc_valid = 1;
2665 }
2666
0e9e9abd
UW
2667 /* Bail out if we don't know that exception information is valid. */
2668 if (!exc_valid)
2669 return 0;
2670
2671 /* The ARM exception index does not mark the *end* of the region
2672 covered by the entry, and some functions will not have any entry.
2673 To correctly recognize the end of the covered region, the linker
2674 should have inserted dummy records with a CANTUNWIND marker.
2675
2676 Unfortunately, current versions of GNU ld do not reliably do
2677 this, and thus we may have found an incorrect entry above.
2678 As a (temporary) sanity check, we only use the entry if it
2679 lies *within* the bounds of the function. Note that this check
2680 might reject perfectly valid entries that just happen to cover
2681 multiple functions; therefore this check ought to be removed
2682 once the linker is fixed. */
2683 if (func_start > exidx_region)
2684 return 0;
2685 }
2686
2687 /* Decode the list of unwinding instructions into a prologue cache.
2688 Note that this may fail due to e.g. a "refuse to unwind" code. */
2689 cache = arm_exidx_fill_cache (this_frame, entry);
2690 if (!cache)
2691 return 0;
2692
2693 *this_prologue_cache = cache;
2694 return 1;
2695}
2696
2697struct frame_unwind arm_exidx_unwind = {
2698 NORMAL_FRAME,
8fbca658 2699 default_frame_unwind_stop_reason,
0e9e9abd
UW
2700 arm_prologue_this_id,
2701 arm_prologue_prev_register,
2702 NULL,
2703 arm_exidx_unwind_sniffer
2704};
2705
779aa56f
YQ
2706static struct arm_prologue_cache *
2707arm_make_epilogue_frame_cache (struct frame_info *this_frame)
2708{
2709 struct arm_prologue_cache *cache;
779aa56f
YQ
2710 int reg;
2711
2712 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2713 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2714
2715 /* Still rely on the offset calculated from prologue. */
2716 arm_scan_prologue (this_frame, cache);
2717
2718 /* Since we are in epilogue, the SP has been restored. */
2719 cache->prev_sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
2720
2721 /* Calculate actual addresses of saved registers using offsets
2722 determined by arm_scan_prologue. */
2723 for (reg = 0; reg < gdbarch_num_regs (get_frame_arch (this_frame)); reg++)
2724 if (trad_frame_addr_p (cache->saved_regs, reg))
2725 cache->saved_regs[reg].addr += cache->prev_sp;
2726
2727 return cache;
2728}
2729
2730/* Implementation of function hook 'this_id' in
2731 'struct frame_uwnind' for epilogue unwinder. */
2732
2733static void
2734arm_epilogue_frame_this_id (struct frame_info *this_frame,
2735 void **this_cache,
2736 struct frame_id *this_id)
2737{
2738 struct arm_prologue_cache *cache;
2739 CORE_ADDR pc, func;
2740
2741 if (*this_cache == NULL)
2742 *this_cache = arm_make_epilogue_frame_cache (this_frame);
2743 cache = (struct arm_prologue_cache *) *this_cache;
2744
2745 /* Use function start address as part of the frame ID. If we cannot
2746 identify the start address (due to missing symbol information),
2747 fall back to just using the current PC. */
2748 pc = get_frame_pc (this_frame);
2749 func = get_frame_func (this_frame);
fb3f3d25 2750 if (func == 0)
779aa56f
YQ
2751 func = pc;
2752
2753 (*this_id) = frame_id_build (cache->prev_sp, pc);
2754}
2755
2756/* Implementation of function hook 'prev_register' in
2757 'struct frame_uwnind' for epilogue unwinder. */
2758
2759static struct value *
2760arm_epilogue_frame_prev_register (struct frame_info *this_frame,
2761 void **this_cache, int regnum)
2762{
779aa56f
YQ
2763 if (*this_cache == NULL)
2764 *this_cache = arm_make_epilogue_frame_cache (this_frame);
779aa56f
YQ
2765
2766 return arm_prologue_prev_register (this_frame, this_cache, regnum);
2767}
2768
2769static int arm_stack_frame_destroyed_p_1 (struct gdbarch *gdbarch,
2770 CORE_ADDR pc);
2771static int thumb_stack_frame_destroyed_p (struct gdbarch *gdbarch,
2772 CORE_ADDR pc);
2773
2774/* Implementation of function hook 'sniffer' in
2775 'struct frame_uwnind' for epilogue unwinder. */
2776
2777static int
2778arm_epilogue_frame_sniffer (const struct frame_unwind *self,
2779 struct frame_info *this_frame,
2780 void **this_prologue_cache)
2781{
2782 if (frame_relative_level (this_frame) == 0)
2783 {
2784 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2785 CORE_ADDR pc = get_frame_pc (this_frame);
2786
2787 if (arm_frame_is_thumb (this_frame))
2788 return thumb_stack_frame_destroyed_p (gdbarch, pc);
2789 else
2790 return arm_stack_frame_destroyed_p_1 (gdbarch, pc);
2791 }
2792 else
2793 return 0;
2794}
2795
2796/* Frame unwinder from epilogue. */
2797
2798static const struct frame_unwind arm_epilogue_frame_unwind =
2799{
2800 NORMAL_FRAME,
2801 default_frame_unwind_stop_reason,
2802 arm_epilogue_frame_this_id,
2803 arm_epilogue_frame_prev_register,
2804 NULL,
2805 arm_epilogue_frame_sniffer,
2806};
2807
80d8d390
YQ
2808/* Recognize GCC's trampoline for thumb call-indirect. If we are in a
2809 trampoline, return the target PC. Otherwise return 0.
2810
2811 void call0a (char c, short s, int i, long l) {}
2812
2813 int main (void)
2814 {
2815 (*pointer_to_call0a) (c, s, i, l);
2816 }
2817
2818 Instead of calling a stub library function _call_via_xx (xx is
2819 the register name), GCC may inline the trampoline in the object
2820 file as below (register r2 has the address of call0a).
2821
2822 .global main
2823 .type main, %function
2824 ...
2825 bl .L1
2826 ...
2827 .size main, .-main
2828
2829 .L1:
2830 bx r2
2831
2832 The trampoline 'bx r2' doesn't belong to main. */
2833
2834static CORE_ADDR
2835arm_skip_bx_reg (struct frame_info *frame, CORE_ADDR pc)
2836{
2837 /* The heuristics of recognizing such trampoline is that FRAME is
2838 executing in Thumb mode and the instruction on PC is 'bx Rm'. */
2839 if (arm_frame_is_thumb (frame))
2840 {
2841 gdb_byte buf[2];
2842
2843 if (target_read_memory (pc, buf, 2) == 0)
2844 {
2845 struct gdbarch *gdbarch = get_frame_arch (frame);
2846 enum bfd_endian byte_order_for_code
2847 = gdbarch_byte_order_for_code (gdbarch);
2848 uint16_t insn
2849 = extract_unsigned_integer (buf, 2, byte_order_for_code);
2850
2851 if ((insn & 0xff80) == 0x4700) /* bx <Rm> */
2852 {
2853 CORE_ADDR dest
2854 = get_frame_register_unsigned (frame, bits (insn, 3, 6));
2855
2856 /* Clear the LSB so that gdb core sets step-resume
2857 breakpoint at the right address. */
2858 return UNMAKE_THUMB_ADDR (dest);
2859 }
2860 }
2861 }
2862
2863 return 0;
2864}
2865
909cf6ea 2866static struct arm_prologue_cache *
a262aec2 2867arm_make_stub_cache (struct frame_info *this_frame)
909cf6ea 2868{
909cf6ea 2869 struct arm_prologue_cache *cache;
909cf6ea 2870
35d5d4ee 2871 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
a262aec2 2872 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
909cf6ea 2873
a262aec2 2874 cache->prev_sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
909cf6ea
DJ
2875
2876 return cache;
2877}
2878
2879/* Our frame ID for a stub frame is the current SP and LR. */
2880
2881static void
a262aec2 2882arm_stub_this_id (struct frame_info *this_frame,
909cf6ea
DJ
2883 void **this_cache,
2884 struct frame_id *this_id)
2885{
2886 struct arm_prologue_cache *cache;
2887
2888 if (*this_cache == NULL)
a262aec2 2889 *this_cache = arm_make_stub_cache (this_frame);
9a3c8263 2890 cache = (struct arm_prologue_cache *) *this_cache;
909cf6ea 2891
a262aec2 2892 *this_id = frame_id_build (cache->prev_sp, get_frame_pc (this_frame));
909cf6ea
DJ
2893}
2894
a262aec2
DJ
2895static int
2896arm_stub_unwind_sniffer (const struct frame_unwind *self,
2897 struct frame_info *this_frame,
2898 void **this_prologue_cache)
909cf6ea 2899{
93d42b30 2900 CORE_ADDR addr_in_block;
948f8e3d 2901 gdb_byte dummy[4];
18d18ac8
YQ
2902 CORE_ADDR pc, start_addr;
2903 const char *name;
909cf6ea 2904
a262aec2 2905 addr_in_block = get_frame_address_in_block (this_frame);
18d18ac8 2906 pc = get_frame_pc (this_frame);
3e5d3a5a 2907 if (in_plt_section (addr_in_block)
fc36e839
DE
2908 /* We also use the stub winder if the target memory is unreadable
2909 to avoid having the prologue unwinder trying to read it. */
18d18ac8
YQ
2910 || target_read_memory (pc, dummy, 4) != 0)
2911 return 1;
2912
2913 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0
2914 && arm_skip_bx_reg (this_frame, pc) != 0)
a262aec2 2915 return 1;
909cf6ea 2916
a262aec2 2917 return 0;
909cf6ea
DJ
2918}
2919
a262aec2
DJ
2920struct frame_unwind arm_stub_unwind = {
2921 NORMAL_FRAME,
8fbca658 2922 default_frame_unwind_stop_reason,
a262aec2
DJ
2923 arm_stub_this_id,
2924 arm_prologue_prev_register,
2925 NULL,
2926 arm_stub_unwind_sniffer
2927};
2928
2ae28aa9
YQ
2929/* Put here the code to store, into CACHE->saved_regs, the addresses
2930 of the saved registers of frame described by THIS_FRAME. CACHE is
2931 returned. */
2932
2933static struct arm_prologue_cache *
2934arm_m_exception_cache (struct frame_info *this_frame)
2935{
2936 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2937 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2938 struct arm_prologue_cache *cache;
2939 CORE_ADDR unwound_sp;
2940 LONGEST xpsr;
2941
2942 cache = FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache);
2943 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2944
2945 unwound_sp = get_frame_register_unsigned (this_frame,
2946 ARM_SP_REGNUM);
2947
2948 /* The hardware saves eight 32-bit words, comprising xPSR,
2949 ReturnAddress, LR (R14), R12, R3, R2, R1, R0. See details in
2950 "B1.5.6 Exception entry behavior" in
2951 "ARMv7-M Architecture Reference Manual". */
2952 cache->saved_regs[0].addr = unwound_sp;
2953 cache->saved_regs[1].addr = unwound_sp + 4;
2954 cache->saved_regs[2].addr = unwound_sp + 8;
2955 cache->saved_regs[3].addr = unwound_sp + 12;
2956 cache->saved_regs[12].addr = unwound_sp + 16;
2957 cache->saved_regs[14].addr = unwound_sp + 20;
2958 cache->saved_regs[15].addr = unwound_sp + 24;
2959 cache->saved_regs[ARM_PS_REGNUM].addr = unwound_sp + 28;
2960
2961 /* If bit 9 of the saved xPSR is set, then there is a four-byte
2962 aligner between the top of the 32-byte stack frame and the
2963 previous context's stack pointer. */
2964 cache->prev_sp = unwound_sp + 32;
2965 if (safe_read_memory_integer (unwound_sp + 28, 4, byte_order, &xpsr)
2966 && (xpsr & (1 << 9)) != 0)
2967 cache->prev_sp += 4;
2968
2969 return cache;
2970}
2971
2972/* Implementation of function hook 'this_id' in
2973 'struct frame_uwnind'. */
2974
2975static void
2976arm_m_exception_this_id (struct frame_info *this_frame,
2977 void **this_cache,
2978 struct frame_id *this_id)
2979{
2980 struct arm_prologue_cache *cache;
2981
2982 if (*this_cache == NULL)
2983 *this_cache = arm_m_exception_cache (this_frame);
9a3c8263 2984 cache = (struct arm_prologue_cache *) *this_cache;
2ae28aa9
YQ
2985
2986 /* Our frame ID for a stub frame is the current SP and LR. */
2987 *this_id = frame_id_build (cache->prev_sp,
2988 get_frame_pc (this_frame));
2989}
2990
2991/* Implementation of function hook 'prev_register' in
2992 'struct frame_uwnind'. */
2993
2994static struct value *
2995arm_m_exception_prev_register (struct frame_info *this_frame,
2996 void **this_cache,
2997 int prev_regnum)
2998{
2ae28aa9
YQ
2999 struct arm_prologue_cache *cache;
3000
3001 if (*this_cache == NULL)
3002 *this_cache = arm_m_exception_cache (this_frame);
9a3c8263 3003 cache = (struct arm_prologue_cache *) *this_cache;
2ae28aa9
YQ
3004
3005 /* The value was already reconstructed into PREV_SP. */
3006 if (prev_regnum == ARM_SP_REGNUM)
3007 return frame_unwind_got_constant (this_frame, prev_regnum,
3008 cache->prev_sp);
3009
3010 return trad_frame_get_prev_register (this_frame, cache->saved_regs,
3011 prev_regnum);
3012}
3013
3014/* Implementation of function hook 'sniffer' in
3015 'struct frame_uwnind'. */
3016
3017static int
3018arm_m_exception_unwind_sniffer (const struct frame_unwind *self,
3019 struct frame_info *this_frame,
3020 void **this_prologue_cache)
3021{
3022 CORE_ADDR this_pc = get_frame_pc (this_frame);
3023
3024 /* No need to check is_m; this sniffer is only registered for
3025 M-profile architectures. */
3026
ca90e760
FH
3027 /* Check if exception frame returns to a magic PC value. */
3028 return arm_m_addr_is_magic (this_pc);
2ae28aa9
YQ
3029}
3030
3031/* Frame unwinder for M-profile exceptions. */
3032
3033struct frame_unwind arm_m_exception_unwind =
3034{
3035 SIGTRAMP_FRAME,
3036 default_frame_unwind_stop_reason,
3037 arm_m_exception_this_id,
3038 arm_m_exception_prev_register,
3039 NULL,
3040 arm_m_exception_unwind_sniffer
3041};
3042
24de872b 3043static CORE_ADDR
a262aec2 3044arm_normal_frame_base (struct frame_info *this_frame, void **this_cache)
24de872b
DJ
3045{
3046 struct arm_prologue_cache *cache;
3047
eb5492fa 3048 if (*this_cache == NULL)
a262aec2 3049 *this_cache = arm_make_prologue_cache (this_frame);
9a3c8263 3050 cache = (struct arm_prologue_cache *) *this_cache;
eb5492fa 3051
4be43953 3052 return cache->prev_sp - cache->framesize;
24de872b
DJ
3053}
3054
eb5492fa
DJ
3055struct frame_base arm_normal_base = {
3056 &arm_prologue_unwind,
3057 arm_normal_frame_base,
3058 arm_normal_frame_base,
3059 arm_normal_frame_base
3060};
3061
a262aec2 3062/* Assuming THIS_FRAME is a dummy, return the frame ID of that
eb5492fa
DJ
3063 dummy frame. The frame ID's base needs to match the TOS value
3064 saved by save_dummy_frame_tos() and returned from
3065 arm_push_dummy_call, and the PC needs to match the dummy frame's
3066 breakpoint. */
c906108c 3067
eb5492fa 3068static struct frame_id
a262aec2 3069arm_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
c906108c 3070{
0963b4bd
MS
3071 return frame_id_build (get_frame_register_unsigned (this_frame,
3072 ARM_SP_REGNUM),
a262aec2 3073 get_frame_pc (this_frame));
eb5492fa 3074}
c3b4394c 3075
eb5492fa
DJ
3076/* Given THIS_FRAME, find the previous frame's resume PC (which will
3077 be used to construct the previous frame's ID, after looking up the
3078 containing function). */
c3b4394c 3079
eb5492fa
DJ
3080static CORE_ADDR
3081arm_unwind_pc (struct gdbarch *gdbarch, struct frame_info *this_frame)
3082{
3083 CORE_ADDR pc;
3084 pc = frame_unwind_register_unsigned (this_frame, ARM_PC_REGNUM);
24568a2c 3085 return arm_addr_bits_remove (gdbarch, pc);
eb5492fa
DJ
3086}
3087
3088static CORE_ADDR
3089arm_unwind_sp (struct gdbarch *gdbarch, struct frame_info *this_frame)
3090{
3091 return frame_unwind_register_unsigned (this_frame, ARM_SP_REGNUM);
c906108c
SS
3092}
3093
b39cc962
DJ
3094static struct value *
3095arm_dwarf2_prev_register (struct frame_info *this_frame, void **this_cache,
3096 int regnum)
3097{
24568a2c 3098 struct gdbarch * gdbarch = get_frame_arch (this_frame);
b39cc962 3099 CORE_ADDR lr, cpsr;
9779414d 3100 ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
b39cc962
DJ
3101
3102 switch (regnum)
3103 {
3104 case ARM_PC_REGNUM:
3105 /* The PC is normally copied from the return column, which
3106 describes saves of LR. However, that version may have an
3107 extra bit set to indicate Thumb state. The bit is not
3108 part of the PC. */
3109 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
3110 return frame_unwind_got_constant (this_frame, regnum,
24568a2c 3111 arm_addr_bits_remove (gdbarch, lr));
b39cc962
DJ
3112
3113 case ARM_PS_REGNUM:
3114 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
ca38c58e 3115 cpsr = get_frame_register_unsigned (this_frame, regnum);
b39cc962
DJ
3116 lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
3117 if (IS_THUMB_ADDR (lr))
9779414d 3118 cpsr |= t_bit;
b39cc962 3119 else
9779414d 3120 cpsr &= ~t_bit;
ca38c58e 3121 return frame_unwind_got_constant (this_frame, regnum, cpsr);
b39cc962
DJ
3122
3123 default:
3124 internal_error (__FILE__, __LINE__,
3125 _("Unexpected register %d"), regnum);
3126 }
3127}
3128
3129static void
3130arm_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
3131 struct dwarf2_frame_state_reg *reg,
3132 struct frame_info *this_frame)
3133{
3134 switch (regnum)
3135 {
3136 case ARM_PC_REGNUM:
3137 case ARM_PS_REGNUM:
3138 reg->how = DWARF2_FRAME_REG_FN;
3139 reg->loc.fn = arm_dwarf2_prev_register;
3140 break;
3141 case ARM_SP_REGNUM:
3142 reg->how = DWARF2_FRAME_REG_CFA;
3143 break;
3144 }
3145}
3146
c9cf6e20 3147/* Implement the stack_frame_destroyed_p gdbarch method. */
4024ca99
UW
3148
3149static int
c9cf6e20 3150thumb_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
4024ca99
UW
3151{
3152 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3153 unsigned int insn, insn2;
3154 int found_return = 0, found_stack_adjust = 0;
3155 CORE_ADDR func_start, func_end;
3156 CORE_ADDR scan_pc;
3157 gdb_byte buf[4];
3158
3159 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3160 return 0;
3161
3162 /* The epilogue is a sequence of instructions along the following lines:
3163
3164 - add stack frame size to SP or FP
3165 - [if frame pointer used] restore SP from FP
3166 - restore registers from SP [may include PC]
3167 - a return-type instruction [if PC wasn't already restored]
3168
3169 In a first pass, we scan forward from the current PC and verify the
3170 instructions we find as compatible with this sequence, ending in a
3171 return instruction.
3172
3173 However, this is not sufficient to distinguish indirect function calls
3174 within a function from indirect tail calls in the epilogue in some cases.
3175 Therefore, if we didn't already find any SP-changing instruction during
3176 forward scan, we add a backward scanning heuristic to ensure we actually
3177 are in the epilogue. */
3178
3179 scan_pc = pc;
3180 while (scan_pc < func_end && !found_return)
3181 {
3182 if (target_read_memory (scan_pc, buf, 2))
3183 break;
3184
3185 scan_pc += 2;
3186 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3187
3188 if ((insn & 0xff80) == 0x4700) /* bx <Rm> */
3189 found_return = 1;
3190 else if (insn == 0x46f7) /* mov pc, lr */
3191 found_return = 1;
540314bd 3192 else if (thumb_instruction_restores_sp (insn))
4024ca99 3193 {
b7576e5c 3194 if ((insn & 0xff00) == 0xbd00) /* pop <registers, PC> */
4024ca99
UW
3195 found_return = 1;
3196 }
db24da6d 3197 else if (thumb_insn_size (insn) == 4) /* 32-bit Thumb-2 instruction */
4024ca99
UW
3198 {
3199 if (target_read_memory (scan_pc, buf, 2))
3200 break;
3201
3202 scan_pc += 2;
3203 insn2 = extract_unsigned_integer (buf, 2, byte_order_for_code);
3204
3205 if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3206 {
4024ca99
UW
3207 if (insn2 & 0x8000) /* <registers> include PC. */
3208 found_return = 1;
3209 }
3210 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3211 && (insn2 & 0x0fff) == 0x0b04)
3212 {
4024ca99
UW
3213 if ((insn2 & 0xf000) == 0xf000) /* <Rt> is PC. */
3214 found_return = 1;
3215 }
3216 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3217 && (insn2 & 0x0e00) == 0x0a00)
6b65d1b6 3218 ;
4024ca99
UW
3219 else
3220 break;
3221 }
3222 else
3223 break;
3224 }
3225
3226 if (!found_return)
3227 return 0;
3228
3229 /* Since any instruction in the epilogue sequence, with the possible
3230 exception of return itself, updates the stack pointer, we need to
3231 scan backwards for at most one instruction. Try either a 16-bit or
3232 a 32-bit instruction. This is just a heuristic, so we do not worry
0963b4bd 3233 too much about false positives. */
4024ca99 3234
6b65d1b6
YQ
3235 if (pc - 4 < func_start)
3236 return 0;
3237 if (target_read_memory (pc - 4, buf, 4))
3238 return 0;
4024ca99 3239
6b65d1b6
YQ
3240 insn = extract_unsigned_integer (buf, 2, byte_order_for_code);
3241 insn2 = extract_unsigned_integer (buf + 2, 2, byte_order_for_code);
3242
3243 if (thumb_instruction_restores_sp (insn2))
3244 found_stack_adjust = 1;
3245 else if (insn == 0xe8bd) /* ldm.w sp!, <registers> */
3246 found_stack_adjust = 1;
3247 else if (insn == 0xf85d /* ldr.w <Rt>, [sp], #4 */
3248 && (insn2 & 0x0fff) == 0x0b04)
3249 found_stack_adjust = 1;
3250 else if ((insn & 0xffbf) == 0xecbd /* vldm sp!, <list> */
3251 && (insn2 & 0x0e00) == 0x0a00)
3252 found_stack_adjust = 1;
4024ca99
UW
3253
3254 return found_stack_adjust;
3255}
3256
4024ca99 3257static int
c58b006a 3258arm_stack_frame_destroyed_p_1 (struct gdbarch *gdbarch, CORE_ADDR pc)
4024ca99
UW
3259{
3260 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
3261 unsigned int insn;
f303bc3e 3262 int found_return;
4024ca99
UW
3263 CORE_ADDR func_start, func_end;
3264
4024ca99
UW
3265 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
3266 return 0;
3267
3268 /* We are in the epilogue if the previous instruction was a stack
3269 adjustment and the next instruction is a possible return (bx, mov
3270 pc, or pop). We could have to scan backwards to find the stack
3271 adjustment, or forwards to find the return, but this is a decent
3272 approximation. First scan forwards. */
3273
3274 found_return = 0;
3275 insn = read_memory_unsigned_integer (pc, 4, byte_order_for_code);
3276 if (bits (insn, 28, 31) != INST_NV)
3277 {
3278 if ((insn & 0x0ffffff0) == 0x012fff10)
3279 /* BX. */
3280 found_return = 1;
3281 else if ((insn & 0x0ffffff0) == 0x01a0f000)
3282 /* MOV PC. */
3283 found_return = 1;
3284 else if ((insn & 0x0fff0000) == 0x08bd0000
3285 && (insn & 0x0000c000) != 0)
3286 /* POP (LDMIA), including PC or LR. */
3287 found_return = 1;
3288 }
3289
3290 if (!found_return)
3291 return 0;
3292
3293 /* Scan backwards. This is just a heuristic, so do not worry about
3294 false positives from mode changes. */
3295
3296 if (pc < func_start + 4)
3297 return 0;
3298
3299 insn = read_memory_unsigned_integer (pc - 4, 4, byte_order_for_code);
f303bc3e 3300 if (arm_instruction_restores_sp (insn))
4024ca99
UW
3301 return 1;
3302
3303 return 0;
3304}
3305
c58b006a
YQ
3306/* Implement the stack_frame_destroyed_p gdbarch method. */
3307
3308static int
3309arm_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
3310{
3311 if (arm_pc_is_thumb (gdbarch, pc))
3312 return thumb_stack_frame_destroyed_p (gdbarch, pc);
3313 else
3314 return arm_stack_frame_destroyed_p_1 (gdbarch, pc);
3315}
4024ca99 3316
2dd604e7
RE
3317/* When arguments must be pushed onto the stack, they go on in reverse
3318 order. The code below implements a FILO (stack) to do this. */
3319
3320struct stack_item
3321{
3322 int len;
3323 struct stack_item *prev;
7c543f7b 3324 gdb_byte *data;
2dd604e7
RE
3325};
3326
3327static struct stack_item *
df3b6708 3328push_stack_item (struct stack_item *prev, const gdb_byte *contents, int len)
2dd604e7
RE
3329{
3330 struct stack_item *si;
8d749320 3331 si = XNEW (struct stack_item);
7c543f7b 3332 si->data = (gdb_byte *) xmalloc (len);
2dd604e7
RE
3333 si->len = len;
3334 si->prev = prev;
3335 memcpy (si->data, contents, len);
3336 return si;
3337}
3338
3339static struct stack_item *
3340pop_stack_item (struct stack_item *si)
3341{
3342 struct stack_item *dead = si;
3343 si = si->prev;
3344 xfree (dead->data);
3345 xfree (dead);
3346 return si;
3347}
3348
2af48f68
PB
3349
3350/* Return the alignment (in bytes) of the given type. */
3351
3352static int
3353arm_type_align (struct type *t)
3354{
3355 int n;
3356 int align;
3357 int falign;
3358
3359 t = check_typedef (t);
3360 switch (TYPE_CODE (t))
3361 {
3362 default:
3363 /* Should never happen. */
3364 internal_error (__FILE__, __LINE__, _("unknown type alignment"));
3365 return 4;
3366
3367 case TYPE_CODE_PTR:
3368 case TYPE_CODE_ENUM:
3369 case TYPE_CODE_INT:
3370 case TYPE_CODE_FLT:
3371 case TYPE_CODE_SET:
3372 case TYPE_CODE_RANGE:
2af48f68 3373 case TYPE_CODE_REF:
aa006118 3374 case TYPE_CODE_RVALUE_REF:
2af48f68
PB
3375 case TYPE_CODE_CHAR:
3376 case TYPE_CODE_BOOL:
3377 return TYPE_LENGTH (t);
3378
3379 case TYPE_CODE_ARRAY:
c4312b19
YQ
3380 if (TYPE_VECTOR (t))
3381 {
3382 /* Use the natural alignment for vector types (the same for
3383 scalar type), but the maximum alignment is 64-bit. */
3384 if (TYPE_LENGTH (t) > 8)
3385 return 8;
3386 else
3387 return TYPE_LENGTH (t);
3388 }
3389 else
3390 return arm_type_align (TYPE_TARGET_TYPE (t));
2af48f68 3391 case TYPE_CODE_COMPLEX:
2af48f68
PB
3392 return arm_type_align (TYPE_TARGET_TYPE (t));
3393
3394 case TYPE_CODE_STRUCT:
3395 case TYPE_CODE_UNION:
3396 align = 1;
3397 for (n = 0; n < TYPE_NFIELDS (t); n++)
3398 {
3399 falign = arm_type_align (TYPE_FIELD_TYPE (t, n));
3400 if (falign > align)
3401 align = falign;
3402 }
3403 return align;
3404 }
3405}
3406
90445bd3
DJ
3407/* Possible base types for a candidate for passing and returning in
3408 VFP registers. */
3409
3410enum arm_vfp_cprc_base_type
3411{
3412 VFP_CPRC_UNKNOWN,
3413 VFP_CPRC_SINGLE,
3414 VFP_CPRC_DOUBLE,
3415 VFP_CPRC_VEC64,
3416 VFP_CPRC_VEC128
3417};
3418
3419/* The length of one element of base type B. */
3420
3421static unsigned
3422arm_vfp_cprc_unit_length (enum arm_vfp_cprc_base_type b)
3423{
3424 switch (b)
3425 {
3426 case VFP_CPRC_SINGLE:
3427 return 4;
3428 case VFP_CPRC_DOUBLE:
3429 return 8;
3430 case VFP_CPRC_VEC64:
3431 return 8;
3432 case VFP_CPRC_VEC128:
3433 return 16;
3434 default:
3435 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3436 (int) b);
3437 }
3438}
3439
3440/* The character ('s', 'd' or 'q') for the type of VFP register used
3441 for passing base type B. */
3442
3443static int
3444arm_vfp_cprc_reg_char (enum arm_vfp_cprc_base_type b)
3445{
3446 switch (b)
3447 {
3448 case VFP_CPRC_SINGLE:
3449 return 's';
3450 case VFP_CPRC_DOUBLE:
3451 return 'd';
3452 case VFP_CPRC_VEC64:
3453 return 'd';
3454 case VFP_CPRC_VEC128:
3455 return 'q';
3456 default:
3457 internal_error (__FILE__, __LINE__, _("Invalid VFP CPRC type: %d."),
3458 (int) b);
3459 }
3460}
3461
3462/* Determine whether T may be part of a candidate for passing and
3463 returning in VFP registers, ignoring the limit on the total number
3464 of components. If *BASE_TYPE is VFP_CPRC_UNKNOWN, set it to the
3465 classification of the first valid component found; if it is not
3466 VFP_CPRC_UNKNOWN, all components must have the same classification
3467 as *BASE_TYPE. If it is found that T contains a type not permitted
3468 for passing and returning in VFP registers, a type differently
3469 classified from *BASE_TYPE, or two types differently classified
3470 from each other, return -1, otherwise return the total number of
3471 base-type elements found (possibly 0 in an empty structure or
817e0957
YQ
3472 array). Vector types are not currently supported, matching the
3473 generic AAPCS support. */
90445bd3
DJ
3474
3475static int
3476arm_vfp_cprc_sub_candidate (struct type *t,
3477 enum arm_vfp_cprc_base_type *base_type)
3478{
3479 t = check_typedef (t);
3480 switch (TYPE_CODE (t))
3481 {
3482 case TYPE_CODE_FLT:
3483 switch (TYPE_LENGTH (t))
3484 {
3485 case 4:
3486 if (*base_type == VFP_CPRC_UNKNOWN)
3487 *base_type = VFP_CPRC_SINGLE;
3488 else if (*base_type != VFP_CPRC_SINGLE)
3489 return -1;
3490 return 1;
3491
3492 case 8:
3493 if (*base_type == VFP_CPRC_UNKNOWN)
3494 *base_type = VFP_CPRC_DOUBLE;
3495 else if (*base_type != VFP_CPRC_DOUBLE)
3496 return -1;
3497 return 1;
3498
3499 default:
3500 return -1;
3501 }
3502 break;
3503
817e0957
YQ
3504 case TYPE_CODE_COMPLEX:
3505 /* Arguments of complex T where T is one of the types float or
3506 double get treated as if they are implemented as:
3507
3508 struct complexT
3509 {
3510 T real;
3511 T imag;
5f52445b
YQ
3512 };
3513
3514 */
817e0957
YQ
3515 switch (TYPE_LENGTH (t))
3516 {
3517 case 8:
3518 if (*base_type == VFP_CPRC_UNKNOWN)
3519 *base_type = VFP_CPRC_SINGLE;
3520 else if (*base_type != VFP_CPRC_SINGLE)
3521 return -1;
3522 return 2;
3523
3524 case 16:
3525 if (*base_type == VFP_CPRC_UNKNOWN)
3526 *base_type = VFP_CPRC_DOUBLE;
3527 else if (*base_type != VFP_CPRC_DOUBLE)
3528 return -1;
3529 return 2;
3530
3531 default:
3532 return -1;
3533 }
3534 break;
3535
90445bd3
DJ
3536 case TYPE_CODE_ARRAY:
3537 {
c4312b19 3538 if (TYPE_VECTOR (t))
90445bd3 3539 {
c4312b19
YQ
3540 /* A 64-bit or 128-bit containerized vector type are VFP
3541 CPRCs. */
3542 switch (TYPE_LENGTH (t))
3543 {
3544 case 8:
3545 if (*base_type == VFP_CPRC_UNKNOWN)
3546 *base_type = VFP_CPRC_VEC64;
3547 return 1;
3548 case 16:
3549 if (*base_type == VFP_CPRC_UNKNOWN)
3550 *base_type = VFP_CPRC_VEC128;
3551 return 1;
3552 default:
3553 return -1;
3554 }
3555 }
3556 else
3557 {
3558 int count;
3559 unsigned unitlen;
3560
3561 count = arm_vfp_cprc_sub_candidate (TYPE_TARGET_TYPE (t),
3562 base_type);
3563 if (count == -1)
3564 return -1;
3565 if (TYPE_LENGTH (t) == 0)
3566 {
3567 gdb_assert (count == 0);
3568 return 0;
3569 }
3570 else if (count == 0)
3571 return -1;
3572 unitlen = arm_vfp_cprc_unit_length (*base_type);
3573 gdb_assert ((TYPE_LENGTH (t) % unitlen) == 0);
3574 return TYPE_LENGTH (t) / unitlen;
90445bd3 3575 }
90445bd3
DJ
3576 }
3577 break;
3578
3579 case TYPE_CODE_STRUCT:
3580 {
3581 int count = 0;
3582 unsigned unitlen;
3583 int i;
3584 for (i = 0; i < TYPE_NFIELDS (t); i++)
3585 {
1040b979
YQ
3586 int sub_count = 0;
3587
3588 if (!field_is_static (&TYPE_FIELD (t, i)))
3589 sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3590 base_type);
90445bd3
DJ
3591 if (sub_count == -1)
3592 return -1;
3593 count += sub_count;
3594 }
3595 if (TYPE_LENGTH (t) == 0)
3596 {
3597 gdb_assert (count == 0);
3598 return 0;
3599 }
3600 else if (count == 0)
3601 return -1;
3602 unitlen = arm_vfp_cprc_unit_length (*base_type);
3603 if (TYPE_LENGTH (t) != unitlen * count)
3604 return -1;
3605 return count;
3606 }
3607
3608 case TYPE_CODE_UNION:
3609 {
3610 int count = 0;
3611 unsigned unitlen;
3612 int i;
3613 for (i = 0; i < TYPE_NFIELDS (t); i++)
3614 {
3615 int sub_count = arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t, i),
3616 base_type);
3617 if (sub_count == -1)
3618 return -1;
3619 count = (count > sub_count ? count : sub_count);
3620 }
3621 if (TYPE_LENGTH (t) == 0)
3622 {
3623 gdb_assert (count == 0);
3624 return 0;
3625 }
3626 else if (count == 0)
3627 return -1;
3628 unitlen = arm_vfp_cprc_unit_length (*base_type);
3629 if (TYPE_LENGTH (t) != unitlen * count)
3630 return -1;
3631 return count;
3632 }
3633
3634 default:
3635 break;
3636 }
3637
3638 return -1;
3639}
3640
3641/* Determine whether T is a VFP co-processor register candidate (CPRC)
3642 if passed to or returned from a non-variadic function with the VFP
3643 ABI in effect. Return 1 if it is, 0 otherwise. If it is, set
3644 *BASE_TYPE to the base type for T and *COUNT to the number of
3645 elements of that base type before returning. */
3646
3647static int
3648arm_vfp_call_candidate (struct type *t, enum arm_vfp_cprc_base_type *base_type,
3649 int *count)
3650{
3651 enum arm_vfp_cprc_base_type b = VFP_CPRC_UNKNOWN;
3652 int c = arm_vfp_cprc_sub_candidate (t, &b);
3653 if (c <= 0 || c > 4)
3654 return 0;
3655 *base_type = b;
3656 *count = c;
3657 return 1;
3658}
3659
3660/* Return 1 if the VFP ABI should be used for passing arguments to and
3661 returning values from a function of type FUNC_TYPE, 0
3662 otherwise. */
3663
3664static int
3665arm_vfp_abi_for_function (struct gdbarch *gdbarch, struct type *func_type)
3666{
3667 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3668 /* Variadic functions always use the base ABI. Assume that functions
3669 without debug info are not variadic. */
3670 if (func_type && TYPE_VARARGS (check_typedef (func_type)))
3671 return 0;
3672 /* The VFP ABI is only supported as a variant of AAPCS. */
3673 if (tdep->arm_abi != ARM_ABI_AAPCS)
3674 return 0;
3675 return gdbarch_tdep (gdbarch)->fp_model == ARM_FLOAT_VFP;
3676}
3677
3678/* We currently only support passing parameters in integer registers, which
3679 conforms with GCC's default model, and VFP argument passing following
3680 the VFP variant of AAPCS. Several other variants exist and
2dd604e7
RE
3681 we should probably support some of them based on the selected ABI. */
3682
3683static CORE_ADDR
7d9b040b 3684arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6a65450a
AC
3685 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
3686 struct value **args, CORE_ADDR sp, int struct_return,
3687 CORE_ADDR struct_addr)
2dd604e7 3688{
e17a4113 3689 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2dd604e7
RE
3690 int argnum;
3691 int argreg;
3692 int nstack;
3693 struct stack_item *si = NULL;
90445bd3
DJ
3694 int use_vfp_abi;
3695 struct type *ftype;
3696 unsigned vfp_regs_free = (1 << 16) - 1;
3697
3698 /* Determine the type of this function and whether the VFP ABI
3699 applies. */
3700 ftype = check_typedef (value_type (function));
3701 if (TYPE_CODE (ftype) == TYPE_CODE_PTR)
3702 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
3703 use_vfp_abi = arm_vfp_abi_for_function (gdbarch, ftype);
2dd604e7 3704
6a65450a
AC
3705 /* Set the return address. For the ARM, the return breakpoint is
3706 always at BP_ADDR. */
9779414d 3707 if (arm_pc_is_thumb (gdbarch, bp_addr))
9dca5578 3708 bp_addr |= 1;
6a65450a 3709 regcache_cooked_write_unsigned (regcache, ARM_LR_REGNUM, bp_addr);
2dd604e7
RE
3710
3711 /* Walk through the list of args and determine how large a temporary
3712 stack is required. Need to take care here as structs may be
7a9dd1b2 3713 passed on the stack, and we have to push them. */
2dd604e7
RE
3714 nstack = 0;
3715
3716 argreg = ARM_A1_REGNUM;
3717 nstack = 0;
3718
2dd604e7
RE
3719 /* The struct_return pointer occupies the first parameter
3720 passing register. */
3721 if (struct_return)
3722 {
3723 if (arm_debug)
5af949e3 3724 fprintf_unfiltered (gdb_stdlog, "struct return in %s = %s\n",
2af46ca0 3725 gdbarch_register_name (gdbarch, argreg),
5af949e3 3726 paddress (gdbarch, struct_addr));
2dd604e7
RE
3727 regcache_cooked_write_unsigned (regcache, argreg, struct_addr);
3728 argreg++;
3729 }
3730
3731 for (argnum = 0; argnum < nargs; argnum++)
3732 {
3733 int len;
3734 struct type *arg_type;
3735 struct type *target_type;
3736 enum type_code typecode;
8c6363cf 3737 const bfd_byte *val;
2af48f68 3738 int align;
90445bd3
DJ
3739 enum arm_vfp_cprc_base_type vfp_base_type;
3740 int vfp_base_count;
3741 int may_use_core_reg = 1;
2dd604e7 3742
df407dfe 3743 arg_type = check_typedef (value_type (args[argnum]));
2dd604e7
RE
3744 len = TYPE_LENGTH (arg_type);
3745 target_type = TYPE_TARGET_TYPE (arg_type);
3746 typecode = TYPE_CODE (arg_type);
8c6363cf 3747 val = value_contents (args[argnum]);
2dd604e7 3748
2af48f68
PB
3749 align = arm_type_align (arg_type);
3750 /* Round alignment up to a whole number of words. */
3751 align = (align + INT_REGISTER_SIZE - 1) & ~(INT_REGISTER_SIZE - 1);
3752 /* Different ABIs have different maximum alignments. */
3753 if (gdbarch_tdep (gdbarch)->arm_abi == ARM_ABI_APCS)
3754 {
3755 /* The APCS ABI only requires word alignment. */
3756 align = INT_REGISTER_SIZE;
3757 }
3758 else
3759 {
3760 /* The AAPCS requires at most doubleword alignment. */
3761 if (align > INT_REGISTER_SIZE * 2)
3762 align = INT_REGISTER_SIZE * 2;
3763 }
3764
90445bd3
DJ
3765 if (use_vfp_abi
3766 && arm_vfp_call_candidate (arg_type, &vfp_base_type,
3767 &vfp_base_count))
3768 {
3769 int regno;
3770 int unit_length;
3771 int shift;
3772 unsigned mask;
3773
3774 /* Because this is a CPRC it cannot go in a core register or
3775 cause a core register to be skipped for alignment.
3776 Either it goes in VFP registers and the rest of this loop
3777 iteration is skipped for this argument, or it goes on the
3778 stack (and the stack alignment code is correct for this
3779 case). */
3780 may_use_core_reg = 0;
3781
3782 unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
3783 shift = unit_length / 4;
3784 mask = (1 << (shift * vfp_base_count)) - 1;
3785 for (regno = 0; regno < 16; regno += shift)
3786 if (((vfp_regs_free >> regno) & mask) == mask)
3787 break;
3788
3789 if (regno < 16)
3790 {
3791 int reg_char;
3792 int reg_scaled;
3793 int i;
3794
3795 vfp_regs_free &= ~(mask << regno);
3796 reg_scaled = regno / shift;
3797 reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
3798 for (i = 0; i < vfp_base_count; i++)
3799 {
3800 char name_buf[4];
3801 int regnum;
58d6951d
DJ
3802 if (reg_char == 'q')
3803 arm_neon_quad_write (gdbarch, regcache, reg_scaled + i,
90445bd3 3804 val + i * unit_length);
58d6951d
DJ
3805 else
3806 {
8c042590
PM
3807 xsnprintf (name_buf, sizeof (name_buf), "%c%d",
3808 reg_char, reg_scaled + i);
58d6951d
DJ
3809 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
3810 strlen (name_buf));
b66f5587 3811 regcache->cooked_write (regnum, val + i * unit_length);
58d6951d 3812 }
90445bd3
DJ
3813 }
3814 continue;
3815 }
3816 else
3817 {
3818 /* This CPRC could not go in VFP registers, so all VFP
3819 registers are now marked as used. */
3820 vfp_regs_free = 0;
3821 }
3822 }
3823
2af48f68
PB
3824 /* Push stack padding for dowubleword alignment. */
3825 if (nstack & (align - 1))
3826 {
3827 si = push_stack_item (si, val, INT_REGISTER_SIZE);
3828 nstack += INT_REGISTER_SIZE;
3829 }
3830
3831 /* Doubleword aligned quantities must go in even register pairs. */
90445bd3
DJ
3832 if (may_use_core_reg
3833 && argreg <= ARM_LAST_ARG_REGNUM
2af48f68
PB
3834 && align > INT_REGISTER_SIZE
3835 && argreg & 1)
3836 argreg++;
3837
2dd604e7
RE
3838 /* If the argument is a pointer to a function, and it is a
3839 Thumb function, create a LOCAL copy of the value and set
3840 the THUMB bit in it. */
3841 if (TYPE_CODE_PTR == typecode
3842 && target_type != NULL
f96b8fa0 3843 && TYPE_CODE_FUNC == TYPE_CODE (check_typedef (target_type)))
2dd604e7 3844 {
e17a4113 3845 CORE_ADDR regval = extract_unsigned_integer (val, len, byte_order);
9779414d 3846 if (arm_pc_is_thumb (gdbarch, regval))
2dd604e7 3847 {
224c3ddb 3848 bfd_byte *copy = (bfd_byte *) alloca (len);
8c6363cf 3849 store_unsigned_integer (copy, len, byte_order,
e17a4113 3850 MAKE_THUMB_ADDR (regval));
8c6363cf 3851 val = copy;
2dd604e7
RE
3852 }
3853 }
3854
3855 /* Copy the argument to general registers or the stack in
3856 register-sized pieces. Large arguments are split between
3857 registers and stack. */
3858 while (len > 0)
3859 {
f0c9063c 3860 int partial_len = len < INT_REGISTER_SIZE ? len : INT_REGISTER_SIZE;
ef9bd0b8
YQ
3861 CORE_ADDR regval
3862 = extract_unsigned_integer (val, partial_len, byte_order);
2dd604e7 3863
90445bd3 3864 if (may_use_core_reg && argreg <= ARM_LAST_ARG_REGNUM)
2dd604e7
RE
3865 {
3866 /* The argument is being passed in a general purpose
3867 register. */
e17a4113 3868 if (byte_order == BFD_ENDIAN_BIG)
8bf8793c 3869 regval <<= (INT_REGISTER_SIZE - partial_len) * 8;
2dd604e7
RE
3870 if (arm_debug)
3871 fprintf_unfiltered (gdb_stdlog, "arg %d in %s = 0x%s\n",
c9f4d572
UW
3872 argnum,
3873 gdbarch_register_name
2af46ca0 3874 (gdbarch, argreg),
f0c9063c 3875 phex (regval, INT_REGISTER_SIZE));
2dd604e7
RE
3876 regcache_cooked_write_unsigned (regcache, argreg, regval);
3877 argreg++;
3878 }
3879 else
3880 {
ef9bd0b8
YQ
3881 gdb_byte buf[INT_REGISTER_SIZE];
3882
3883 memset (buf, 0, sizeof (buf));
3884 store_unsigned_integer (buf, partial_len, byte_order, regval);
3885
2dd604e7
RE
3886 /* Push the arguments onto the stack. */
3887 if (arm_debug)
3888 fprintf_unfiltered (gdb_stdlog, "arg %d @ sp + %d\n",
3889 argnum, nstack);
ef9bd0b8 3890 si = push_stack_item (si, buf, INT_REGISTER_SIZE);
f0c9063c 3891 nstack += INT_REGISTER_SIZE;
2dd604e7
RE
3892 }
3893
3894 len -= partial_len;
3895 val += partial_len;
3896 }
3897 }
3898 /* If we have an odd number of words to push, then decrement the stack
3899 by one word now, so first stack argument will be dword aligned. */
3900 if (nstack & 4)
3901 sp -= 4;
3902
3903 while (si)
3904 {
3905 sp -= si->len;
3906 write_memory (sp, si->data, si->len);
3907 si = pop_stack_item (si);
3908 }
3909
3910 /* Finally, update teh SP register. */
3911 regcache_cooked_write_unsigned (regcache, ARM_SP_REGNUM, sp);
3912
3913 return sp;
3914}
3915
f53f0d0b
PB
3916
3917/* Always align the frame to an 8-byte boundary. This is required on
3918 some platforms and harmless on the rest. */
3919
3920static CORE_ADDR
3921arm_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
3922{
3923 /* Align the stack to eight bytes. */
3924 return sp & ~ (CORE_ADDR) 7;
3925}
3926
c906108c 3927static void
12b27276 3928print_fpu_flags (struct ui_file *file, int flags)
c906108c 3929{
c5aa993b 3930 if (flags & (1 << 0))
12b27276 3931 fputs_filtered ("IVO ", file);
c5aa993b 3932 if (flags & (1 << 1))
12b27276 3933 fputs_filtered ("DVZ ", file);
c5aa993b 3934 if (flags & (1 << 2))
12b27276 3935 fputs_filtered ("OFL ", file);
c5aa993b 3936 if (flags & (1 << 3))
12b27276 3937 fputs_filtered ("UFL ", file);
c5aa993b 3938 if (flags & (1 << 4))
12b27276
WN
3939 fputs_filtered ("INX ", file);
3940 fputc_filtered ('\n', file);
c906108c
SS
3941}
3942
5e74b15c
RE
3943/* Print interesting information about the floating point processor
3944 (if present) or emulator. */
34e8f22d 3945static void
d855c300 3946arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
23e3a7ac 3947 struct frame_info *frame, const char *args)
c906108c 3948{
9c9acae0 3949 unsigned long status = get_frame_register_unsigned (frame, ARM_FPS_REGNUM);
c5aa993b
JM
3950 int type;
3951
3952 type = (status >> 24) & 127;
edefbb7c 3953 if (status & (1 << 31))
12b27276 3954 fprintf_filtered (file, _("Hardware FPU type %d\n"), type);
edefbb7c 3955 else
12b27276 3956 fprintf_filtered (file, _("Software FPU type %d\n"), type);
edefbb7c 3957 /* i18n: [floating point unit] mask */
12b27276
WN
3958 fputs_filtered (_("mask: "), file);
3959 print_fpu_flags (file, status >> 16);
edefbb7c 3960 /* i18n: [floating point unit] flags */
12b27276
WN
3961 fputs_filtered (_("flags: "), file);
3962 print_fpu_flags (file, status);
c906108c
SS
3963}
3964
27067745
UW
3965/* Construct the ARM extended floating point type. */
3966static struct type *
3967arm_ext_type (struct gdbarch *gdbarch)
3968{
3969 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3970
3971 if (!tdep->arm_ext_type)
3972 tdep->arm_ext_type
e9bb382b 3973 = arch_float_type (gdbarch, -1, "builtin_type_arm_ext",
27067745
UW
3974 floatformats_arm_ext);
3975
3976 return tdep->arm_ext_type;
3977}
3978
58d6951d
DJ
3979static struct type *
3980arm_neon_double_type (struct gdbarch *gdbarch)
3981{
3982 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3983
3984 if (tdep->neon_double_type == NULL)
3985 {
3986 struct type *t, *elem;
3987
3988 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_d",
3989 TYPE_CODE_UNION);
3990 elem = builtin_type (gdbarch)->builtin_uint8;
3991 append_composite_type_field (t, "u8", init_vector_type (elem, 8));
3992 elem = builtin_type (gdbarch)->builtin_uint16;
3993 append_composite_type_field (t, "u16", init_vector_type (elem, 4));
3994 elem = builtin_type (gdbarch)->builtin_uint32;
3995 append_composite_type_field (t, "u32", init_vector_type (elem, 2));
3996 elem = builtin_type (gdbarch)->builtin_uint64;
3997 append_composite_type_field (t, "u64", elem);
3998 elem = builtin_type (gdbarch)->builtin_float;
3999 append_composite_type_field (t, "f32", init_vector_type (elem, 2));
4000 elem = builtin_type (gdbarch)->builtin_double;
4001 append_composite_type_field (t, "f64", elem);
4002
4003 TYPE_VECTOR (t) = 1;
4004 TYPE_NAME (t) = "neon_d";
4005 tdep->neon_double_type = t;
4006 }
4007
4008 return tdep->neon_double_type;
4009}
4010
4011/* FIXME: The vector types are not correctly ordered on big-endian
4012 targets. Just as s0 is the low bits of d0, d0[0] is also the low
4013 bits of d0 - regardless of what unit size is being held in d0. So
4014 the offset of the first uint8 in d0 is 7, but the offset of the
4015 first float is 4. This code works as-is for little-endian
4016 targets. */
4017
4018static struct type *
4019arm_neon_quad_type (struct gdbarch *gdbarch)
4020{
4021 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
4022
4023 if (tdep->neon_quad_type == NULL)
4024 {
4025 struct type *t, *elem;
4026
4027 t = arch_composite_type (gdbarch, "__gdb_builtin_type_neon_q",
4028 TYPE_CODE_UNION);
4029 elem = builtin_type (gdbarch)->builtin_uint8;
4030 append_composite_type_field (t, "u8", init_vector_type (elem, 16));
4031 elem = builtin_type (gdbarch)->builtin_uint16;
4032 append_composite_type_field (t, "u16", init_vector_type (elem, 8));
4033 elem = builtin_type (gdbarch)->builtin_uint32;
4034 append_composite_type_field (t, "u32", init_vector_type (elem, 4));
4035 elem = builtin_type (gdbarch)->builtin_uint64;
4036 append_composite_type_field (t, "u64", init_vector_type (elem, 2));
4037 elem = builtin_type (gdbarch)->builtin_float;
4038 append_composite_type_field (t, "f32", init_vector_type (elem, 4));
4039 elem = builtin_type (gdbarch)->builtin_double;
4040 append_composite_type_field (t, "f64", init_vector_type (elem, 2));
4041
4042 TYPE_VECTOR (t) = 1;
4043 TYPE_NAME (t) = "neon_q";
4044 tdep->neon_quad_type = t;
4045 }
4046
4047 return tdep->neon_quad_type;
4048}
4049
34e8f22d
RE
4050/* Return the GDB type object for the "standard" data type of data in
4051 register N. */
4052
4053static struct type *
7a5ea0d4 4054arm_register_type (struct gdbarch *gdbarch, int regnum)
032758dc 4055{
58d6951d
DJ
4056 int num_regs = gdbarch_num_regs (gdbarch);
4057
4058 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
4059 && regnum >= num_regs && regnum < num_regs + 32)
4060 return builtin_type (gdbarch)->builtin_float;
4061
4062 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
4063 && regnum >= num_regs + 32 && regnum < num_regs + 32 + 16)
4064 return arm_neon_quad_type (gdbarch);
4065
4066 /* If the target description has register information, we are only
4067 in this function so that we can override the types of
4068 double-precision registers for NEON. */
4069 if (tdesc_has_registers (gdbarch_target_desc (gdbarch)))
4070 {
4071 struct type *t = tdesc_register_type (gdbarch, regnum);
4072
4073 if (regnum >= ARM_D0_REGNUM && regnum < ARM_D0_REGNUM + 32
4074 && TYPE_CODE (t) == TYPE_CODE_FLT
4075 && gdbarch_tdep (gdbarch)->have_neon)
4076 return arm_neon_double_type (gdbarch);
4077 else
4078 return t;
4079 }
4080
34e8f22d 4081 if (regnum >= ARM_F0_REGNUM && regnum < ARM_F0_REGNUM + NUM_FREGS)
58d6951d
DJ
4082 {
4083 if (!gdbarch_tdep (gdbarch)->have_fpa_registers)
4084 return builtin_type (gdbarch)->builtin_void;
4085
4086 return arm_ext_type (gdbarch);
4087 }
e4c16157 4088 else if (regnum == ARM_SP_REGNUM)
0dfff4cb 4089 return builtin_type (gdbarch)->builtin_data_ptr;
e4c16157 4090 else if (regnum == ARM_PC_REGNUM)
0dfff4cb 4091 return builtin_type (gdbarch)->builtin_func_ptr;
ff6f572f
DJ
4092 else if (regnum >= ARRAY_SIZE (arm_register_names))
4093 /* These registers are only supported on targets which supply
4094 an XML description. */
df4df182 4095 return builtin_type (gdbarch)->builtin_int0;
032758dc 4096 else
df4df182 4097 return builtin_type (gdbarch)->builtin_uint32;
032758dc
AC
4098}
4099
ff6f572f
DJ
4100/* Map a DWARF register REGNUM onto the appropriate GDB register
4101 number. */
4102
4103static int
d3f73121 4104arm_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
ff6f572f
DJ
4105{
4106 /* Core integer regs. */
4107 if (reg >= 0 && reg <= 15)
4108 return reg;
4109
4110 /* Legacy FPA encoding. These were once used in a way which
4111 overlapped with VFP register numbering, so their use is
4112 discouraged, but GDB doesn't support the ARM toolchain
4113 which used them for VFP. */
4114 if (reg >= 16 && reg <= 23)
4115 return ARM_F0_REGNUM + reg - 16;
4116
4117 /* New assignments for the FPA registers. */
4118 if (reg >= 96 && reg <= 103)
4119 return ARM_F0_REGNUM + reg - 96;
4120
4121 /* WMMX register assignments. */
4122 if (reg >= 104 && reg <= 111)
4123 return ARM_WCGR0_REGNUM + reg - 104;
4124
4125 if (reg >= 112 && reg <= 127)
4126 return ARM_WR0_REGNUM + reg - 112;
4127
4128 if (reg >= 192 && reg <= 199)
4129 return ARM_WC0_REGNUM + reg - 192;
4130
58d6951d
DJ
4131 /* VFP v2 registers. A double precision value is actually
4132 in d1 rather than s2, but the ABI only defines numbering
4133 for the single precision registers. This will "just work"
4134 in GDB for little endian targets (we'll read eight bytes,
4135 starting in s0 and then progressing to s1), but will be
4136 reversed on big endian targets with VFP. This won't
4137 be a problem for the new Neon quad registers; you're supposed
4138 to use DW_OP_piece for those. */
4139 if (reg >= 64 && reg <= 95)
4140 {
4141 char name_buf[4];
4142
8c042590 4143 xsnprintf (name_buf, sizeof (name_buf), "s%d", reg - 64);
58d6951d
DJ
4144 return user_reg_map_name_to_regnum (gdbarch, name_buf,
4145 strlen (name_buf));
4146 }
4147
4148 /* VFP v3 / Neon registers. This range is also used for VFP v2
4149 registers, except that it now describes d0 instead of s0. */
4150 if (reg >= 256 && reg <= 287)
4151 {
4152 char name_buf[4];
4153
8c042590 4154 xsnprintf (name_buf, sizeof (name_buf), "d%d", reg - 256);
58d6951d
DJ
4155 return user_reg_map_name_to_regnum (gdbarch, name_buf,
4156 strlen (name_buf));
4157 }
4158
ff6f572f
DJ
4159 return -1;
4160}
4161
26216b98
AC
4162/* Map GDB internal REGNUM onto the Arm simulator register numbers. */
4163static int
e7faf938 4164arm_register_sim_regno (struct gdbarch *gdbarch, int regnum)
26216b98
AC
4165{
4166 int reg = regnum;
e7faf938 4167 gdb_assert (reg >= 0 && reg < gdbarch_num_regs (gdbarch));
26216b98 4168
ff6f572f
DJ
4169 if (regnum >= ARM_WR0_REGNUM && regnum <= ARM_WR15_REGNUM)
4170 return regnum - ARM_WR0_REGNUM + SIM_ARM_IWMMXT_COP0R0_REGNUM;
4171
4172 if (regnum >= ARM_WC0_REGNUM && regnum <= ARM_WC7_REGNUM)
4173 return regnum - ARM_WC0_REGNUM + SIM_ARM_IWMMXT_COP1R0_REGNUM;
4174
4175 if (regnum >= ARM_WCGR0_REGNUM && regnum <= ARM_WCGR7_REGNUM)
4176 return regnum - ARM_WCGR0_REGNUM + SIM_ARM_IWMMXT_COP1R8_REGNUM;
4177
26216b98
AC
4178 if (reg < NUM_GREGS)
4179 return SIM_ARM_R0_REGNUM + reg;
4180 reg -= NUM_GREGS;
4181
4182 if (reg < NUM_FREGS)
4183 return SIM_ARM_FP0_REGNUM + reg;
4184 reg -= NUM_FREGS;
4185
4186 if (reg < NUM_SREGS)
4187 return SIM_ARM_FPS_REGNUM + reg;
4188 reg -= NUM_SREGS;
4189
edefbb7c 4190 internal_error (__FILE__, __LINE__, _("Bad REGNUM %d"), regnum);
26216b98 4191}
34e8f22d 4192
d9311bfa
AT
4193/* Given BUF, which is OLD_LEN bytes ending at ENDADDR, expand
4194 the buffer to be NEW_LEN bytes ending at ENDADDR. Return
4195 NULL if an error occurs. BUF is freed. */
c906108c 4196
d9311bfa
AT
4197static gdb_byte *
4198extend_buffer_earlier (gdb_byte *buf, CORE_ADDR endaddr,
4199 int old_len, int new_len)
4200{
4201 gdb_byte *new_buf;
4202 int bytes_to_read = new_len - old_len;
c906108c 4203
d9311bfa
AT
4204 new_buf = (gdb_byte *) xmalloc (new_len);
4205 memcpy (new_buf + bytes_to_read, buf, old_len);
4206 xfree (buf);
198cd59d 4207 if (target_read_code (endaddr - new_len, new_buf, bytes_to_read) != 0)
d9311bfa
AT
4208 {
4209 xfree (new_buf);
4210 return NULL;
c906108c 4211 }
d9311bfa 4212 return new_buf;
c906108c
SS
4213}
4214
d9311bfa
AT
4215/* An IT block is at most the 2-byte IT instruction followed by
4216 four 4-byte instructions. The furthest back we must search to
4217 find an IT block that affects the current instruction is thus
4218 2 + 3 * 4 == 14 bytes. */
4219#define MAX_IT_BLOCK_PREFIX 14
177321bd 4220
d9311bfa
AT
4221/* Use a quick scan if there are more than this many bytes of
4222 code. */
4223#define IT_SCAN_THRESHOLD 32
177321bd 4224
d9311bfa
AT
4225/* Adjust a breakpoint's address to move breakpoints out of IT blocks.
4226 A breakpoint in an IT block may not be hit, depending on the
4227 condition flags. */
ad527d2e 4228static CORE_ADDR
d9311bfa 4229arm_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
c906108c 4230{
d9311bfa
AT
4231 gdb_byte *buf;
4232 char map_type;
4233 CORE_ADDR boundary, func_start;
4234 int buf_len;
4235 enum bfd_endian order = gdbarch_byte_order_for_code (gdbarch);
4236 int i, any, last_it, last_it_count;
177321bd 4237
d9311bfa
AT
4238 /* If we are using BKPT breakpoints, none of this is necessary. */
4239 if (gdbarch_tdep (gdbarch)->thumb2_breakpoint == NULL)
4240 return bpaddr;
177321bd 4241
d9311bfa
AT
4242 /* ARM mode does not have this problem. */
4243 if (!arm_pc_is_thumb (gdbarch, bpaddr))
4244 return bpaddr;
177321bd 4245
d9311bfa
AT
4246 /* We are setting a breakpoint in Thumb code that could potentially
4247 contain an IT block. The first step is to find how much Thumb
4248 code there is; we do not need to read outside of known Thumb
4249 sequences. */
4250 map_type = arm_find_mapping_symbol (bpaddr, &boundary);
4251 if (map_type == 0)
4252 /* Thumb-2 code must have mapping symbols to have a chance. */
4253 return bpaddr;
9dca5578 4254
d9311bfa 4255 bpaddr = gdbarch_addr_bits_remove (gdbarch, bpaddr);
177321bd 4256
d9311bfa
AT
4257 if (find_pc_partial_function (bpaddr, NULL, &func_start, NULL)
4258 && func_start > boundary)
4259 boundary = func_start;
9dca5578 4260
d9311bfa
AT
4261 /* Search for a candidate IT instruction. We have to do some fancy
4262 footwork to distinguish a real IT instruction from the second
4263 half of a 32-bit instruction, but there is no need for that if
4264 there's no candidate. */
325fac50 4265 buf_len = std::min (bpaddr - boundary, (CORE_ADDR) MAX_IT_BLOCK_PREFIX);
d9311bfa
AT
4266 if (buf_len == 0)
4267 /* No room for an IT instruction. */
4268 return bpaddr;
c906108c 4269
d9311bfa 4270 buf = (gdb_byte *) xmalloc (buf_len);
198cd59d 4271 if (target_read_code (bpaddr - buf_len, buf, buf_len) != 0)
d9311bfa
AT
4272 return bpaddr;
4273 any = 0;
4274 for (i = 0; i < buf_len; i += 2)
c906108c 4275 {
d9311bfa
AT
4276 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4277 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
25b41d01 4278 {
d9311bfa
AT
4279 any = 1;
4280 break;
25b41d01 4281 }
c906108c 4282 }
d9311bfa
AT
4283
4284 if (any == 0)
c906108c 4285 {
d9311bfa
AT
4286 xfree (buf);
4287 return bpaddr;
f9d67f43
DJ
4288 }
4289
4290 /* OK, the code bytes before this instruction contain at least one
4291 halfword which resembles an IT instruction. We know that it's
4292 Thumb code, but there are still two possibilities. Either the
4293 halfword really is an IT instruction, or it is the second half of
4294 a 32-bit Thumb instruction. The only way we can tell is to
4295 scan forwards from a known instruction boundary. */
4296 if (bpaddr - boundary > IT_SCAN_THRESHOLD)
4297 {
4298 int definite;
4299
4300 /* There's a lot of code before this instruction. Start with an
4301 optimistic search; it's easy to recognize halfwords that can
4302 not be the start of a 32-bit instruction, and use that to
4303 lock on to the instruction boundaries. */
4304 buf = extend_buffer_earlier (buf, bpaddr, buf_len, IT_SCAN_THRESHOLD);
4305 if (buf == NULL)
4306 return bpaddr;
4307 buf_len = IT_SCAN_THRESHOLD;
4308
4309 definite = 0;
4310 for (i = 0; i < buf_len - sizeof (buf) && ! definite; i += 2)
4311 {
4312 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4313 if (thumb_insn_size (inst1) == 2)
4314 {
4315 definite = 1;
4316 break;
4317 }
4318 }
4319
4320 /* At this point, if DEFINITE, BUF[I] is the first place we
4321 are sure that we know the instruction boundaries, and it is far
4322 enough from BPADDR that we could not miss an IT instruction
4323 affecting BPADDR. If ! DEFINITE, give up - start from a
4324 known boundary. */
4325 if (! definite)
4326 {
0963b4bd
MS
4327 buf = extend_buffer_earlier (buf, bpaddr, buf_len,
4328 bpaddr - boundary);
f9d67f43
DJ
4329 if (buf == NULL)
4330 return bpaddr;
4331 buf_len = bpaddr - boundary;
4332 i = 0;
4333 }
4334 }
4335 else
4336 {
4337 buf = extend_buffer_earlier (buf, bpaddr, buf_len, bpaddr - boundary);
4338 if (buf == NULL)
4339 return bpaddr;
4340 buf_len = bpaddr - boundary;
4341 i = 0;
4342 }
4343
4344 /* Scan forwards. Find the last IT instruction before BPADDR. */
4345 last_it = -1;
4346 last_it_count = 0;
4347 while (i < buf_len)
4348 {
4349 unsigned short inst1 = extract_unsigned_integer (&buf[i], 2, order);
4350 last_it_count--;
4351 if ((inst1 & 0xff00) == 0xbf00 && (inst1 & 0x000f) != 0)
4352 {
4353 last_it = i;
4354 if (inst1 & 0x0001)
4355 last_it_count = 4;
4356 else if (inst1 & 0x0002)
4357 last_it_count = 3;
4358 else if (inst1 & 0x0004)
4359 last_it_count = 2;
4360 else
4361 last_it_count = 1;
4362 }
4363 i += thumb_insn_size (inst1);
4364 }
4365
4366 xfree (buf);
4367
4368 if (last_it == -1)
4369 /* There wasn't really an IT instruction after all. */
4370 return bpaddr;
4371
4372 if (last_it_count < 1)
4373 /* It was too far away. */
4374 return bpaddr;
4375
4376 /* This really is a trouble spot. Move the breakpoint to the IT
4377 instruction. */
4378 return bpaddr - buf_len + last_it;
4379}
4380
cca44b1b 4381/* ARM displaced stepping support.
c906108c 4382
cca44b1b 4383 Generally ARM displaced stepping works as follows:
c906108c 4384
cca44b1b 4385 1. When an instruction is to be single-stepped, it is first decoded by
2ba163c8
SM
4386 arm_process_displaced_insn. Depending on the type of instruction, it is
4387 then copied to a scratch location, possibly in a modified form. The
4388 copy_* set of functions performs such modification, as necessary. A
4389 breakpoint is placed after the modified instruction in the scratch space
4390 to return control to GDB. Note in particular that instructions which
4391 modify the PC will no longer do so after modification.
c5aa993b 4392
cca44b1b
JB
4393 2. The instruction is single-stepped, by setting the PC to the scratch
4394 location address, and resuming. Control returns to GDB when the
4395 breakpoint is hit.
c5aa993b 4396
cca44b1b
JB
4397 3. A cleanup function (cleanup_*) is called corresponding to the copy_*
4398 function used for the current instruction. This function's job is to
4399 put the CPU/memory state back to what it would have been if the
4400 instruction had been executed unmodified in its original location. */
c5aa993b 4401
cca44b1b
JB
4402/* NOP instruction (mov r0, r0). */
4403#define ARM_NOP 0xe1a00000
34518530 4404#define THUMB_NOP 0x4600
cca44b1b
JB
4405
4406/* Helper for register reads for displaced stepping. In particular, this
4407 returns the PC as it would be seen by the instruction at its original
4408 location. */
4409
4410ULONGEST
cfba9872 4411displaced_read_reg (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4412 int regno)
cca44b1b
JB
4413{
4414 ULONGEST ret;
36073a92 4415 CORE_ADDR from = dsc->insn_addr;
cca44b1b 4416
bf9f652a 4417 if (regno == ARM_PC_REGNUM)
cca44b1b 4418 {
4db71c0b
YQ
4419 /* Compute pipeline offset:
4420 - When executing an ARM instruction, PC reads as the address of the
4421 current instruction plus 8.
4422 - When executing a Thumb instruction, PC reads as the address of the
4423 current instruction plus 4. */
4424
36073a92 4425 if (!dsc->is_thumb)
4db71c0b
YQ
4426 from += 8;
4427 else
4428 from += 4;
4429
cca44b1b
JB
4430 if (debug_displaced)
4431 fprintf_unfiltered (gdb_stdlog, "displaced: read pc value %.8lx\n",
4db71c0b
YQ
4432 (unsigned long) from);
4433 return (ULONGEST) from;
cca44b1b 4434 }
c906108c 4435 else
cca44b1b
JB
4436 {
4437 regcache_cooked_read_unsigned (regs, regno, &ret);
4438 if (debug_displaced)
4439 fprintf_unfiltered (gdb_stdlog, "displaced: read r%d value %.8lx\n",
4440 regno, (unsigned long) ret);
4441 return ret;
4442 }
c906108c
SS
4443}
4444
cca44b1b
JB
4445static int
4446displaced_in_arm_mode (struct regcache *regs)
4447{
4448 ULONGEST ps;
ac7936df 4449 ULONGEST t_bit = arm_psr_thumb_bit (regs->arch ());
66e810cd 4450
cca44b1b 4451 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
66e810cd 4452
9779414d 4453 return (ps & t_bit) == 0;
cca44b1b 4454}
66e810cd 4455
cca44b1b 4456/* Write to the PC as from a branch instruction. */
c906108c 4457
cca44b1b 4458static void
cfba9872 4459branch_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4460 ULONGEST val)
c906108c 4461{
36073a92 4462 if (!dsc->is_thumb)
cca44b1b
JB
4463 /* Note: If bits 0/1 are set, this branch would be unpredictable for
4464 architecture versions < 6. */
0963b4bd
MS
4465 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
4466 val & ~(ULONGEST) 0x3);
cca44b1b 4467 else
0963b4bd
MS
4468 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
4469 val & ~(ULONGEST) 0x1);
cca44b1b 4470}
66e810cd 4471
cca44b1b
JB
4472/* Write to the PC as from a branch-exchange instruction. */
4473
4474static void
4475bx_write_pc (struct regcache *regs, ULONGEST val)
4476{
4477 ULONGEST ps;
ac7936df 4478 ULONGEST t_bit = arm_psr_thumb_bit (regs->arch ());
cca44b1b
JB
4479
4480 regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &ps);
4481
4482 if ((val & 1) == 1)
c906108c 4483 {
9779414d 4484 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps | t_bit);
cca44b1b
JB
4485 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffe);
4486 }
4487 else if ((val & 2) == 0)
4488 {
9779414d 4489 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
cca44b1b 4490 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val);
c906108c
SS
4491 }
4492 else
4493 {
cca44b1b
JB
4494 /* Unpredictable behaviour. Try to do something sensible (switch to ARM
4495 mode, align dest to 4 bytes). */
4496 warning (_("Single-stepping BX to non-word-aligned ARM instruction."));
9779414d 4497 regcache_cooked_write_unsigned (regs, ARM_PS_REGNUM, ps & ~t_bit);
cca44b1b 4498 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM, val & 0xfffffffc);
c906108c
SS
4499 }
4500}
ed9a39eb 4501
cca44b1b 4502/* Write to the PC as if from a load instruction. */
ed9a39eb 4503
34e8f22d 4504static void
cfba9872 4505load_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4506 ULONGEST val)
ed9a39eb 4507{
cca44b1b
JB
4508 if (DISPLACED_STEPPING_ARCH_VERSION >= 5)
4509 bx_write_pc (regs, val);
4510 else
36073a92 4511 branch_write_pc (regs, dsc, val);
cca44b1b 4512}
be8626e0 4513
cca44b1b
JB
4514/* Write to the PC as if from an ALU instruction. */
4515
4516static void
cfba9872 4517alu_write_pc (struct regcache *regs, arm_displaced_step_closure *dsc,
36073a92 4518 ULONGEST val)
cca44b1b 4519{
36073a92 4520 if (DISPLACED_STEPPING_ARCH_VERSION >= 7 && !dsc->is_thumb)
cca44b1b
JB
4521 bx_write_pc (regs, val);
4522 else
36073a92 4523 branch_write_pc (regs, dsc, val);
cca44b1b
JB
4524}
4525
4526/* Helper for writing to registers for displaced stepping. Writing to the PC
4527 has a varying effects depending on the instruction which does the write:
4528 this is controlled by the WRITE_PC argument. */
4529
4530void
cfba9872 4531displaced_write_reg (struct regcache *regs, arm_displaced_step_closure *dsc,
cca44b1b
JB
4532 int regno, ULONGEST val, enum pc_write_style write_pc)
4533{
bf9f652a 4534 if (regno == ARM_PC_REGNUM)
08216dd7 4535 {
cca44b1b
JB
4536 if (debug_displaced)
4537 fprintf_unfiltered (gdb_stdlog, "displaced: writing pc %.8lx\n",
4538 (unsigned long) val);
4539 switch (write_pc)
08216dd7 4540 {
cca44b1b 4541 case BRANCH_WRITE_PC:
36073a92 4542 branch_write_pc (regs, dsc, val);
08216dd7
RE
4543 break;
4544
cca44b1b
JB
4545 case BX_WRITE_PC:
4546 bx_write_pc (regs, val);
4547 break;
4548
4549 case LOAD_WRITE_PC:
36073a92 4550 load_write_pc (regs, dsc, val);
cca44b1b
JB
4551 break;
4552
4553 case ALU_WRITE_PC:
36073a92 4554 alu_write_pc (regs, dsc, val);
cca44b1b
JB
4555 break;
4556
4557 case CANNOT_WRITE_PC:
4558 warning (_("Instruction wrote to PC in an unexpected way when "
4559 "single-stepping"));
08216dd7
RE
4560 break;
4561
4562 default:
97b9747c
JB
4563 internal_error (__FILE__, __LINE__,
4564 _("Invalid argument to displaced_write_reg"));
08216dd7 4565 }
b508a996 4566
cca44b1b 4567 dsc->wrote_to_pc = 1;
b508a996 4568 }
ed9a39eb 4569 else
b508a996 4570 {
cca44b1b
JB
4571 if (debug_displaced)
4572 fprintf_unfiltered (gdb_stdlog, "displaced: writing r%d value %.8lx\n",
4573 regno, (unsigned long) val);
4574 regcache_cooked_write_unsigned (regs, regno, val);
b508a996 4575 }
34e8f22d
RE
4576}
4577
cca44b1b
JB
4578/* This function is used to concisely determine if an instruction INSN
4579 references PC. Register fields of interest in INSN should have the
0963b4bd
MS
4580 corresponding fields of BITMASK set to 0b1111. The function
4581 returns return 1 if any of these fields in INSN reference the PC
4582 (also 0b1111, r15), else it returns 0. */
67255d04
RE
4583
4584static int
cca44b1b 4585insn_references_pc (uint32_t insn, uint32_t bitmask)
67255d04 4586{
cca44b1b 4587 uint32_t lowbit = 1;
67255d04 4588
cca44b1b
JB
4589 while (bitmask != 0)
4590 {
4591 uint32_t mask;
44e1a9eb 4592
cca44b1b
JB
4593 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1)
4594 ;
67255d04 4595
cca44b1b
JB
4596 if (!lowbit)
4597 break;
67255d04 4598
cca44b1b 4599 mask = lowbit * 0xf;
67255d04 4600
cca44b1b
JB
4601 if ((insn & mask) == mask)
4602 return 1;
4603
4604 bitmask &= ~mask;
67255d04
RE
4605 }
4606
cca44b1b
JB
4607 return 0;
4608}
2af48f68 4609
cca44b1b
JB
4610/* The simplest copy function. Many instructions have the same effect no
4611 matter what address they are executed at: in those cases, use this. */
67255d04 4612
cca44b1b 4613static int
7ff120b4 4614arm_copy_unmodified (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 4615 const char *iname, arm_displaced_step_closure *dsc)
cca44b1b
JB
4616{
4617 if (debug_displaced)
4618 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx, "
4619 "opcode/class '%s' unmodified\n", (unsigned long) insn,
4620 iname);
67255d04 4621
cca44b1b 4622 dsc->modinsn[0] = insn;
67255d04 4623
cca44b1b
JB
4624 return 0;
4625}
4626
34518530
YQ
4627static int
4628thumb_copy_unmodified_32bit (struct gdbarch *gdbarch, uint16_t insn1,
4629 uint16_t insn2, const char *iname,
cfba9872 4630 arm_displaced_step_closure *dsc)
34518530
YQ
4631{
4632 if (debug_displaced)
4633 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x %.4x, "
4634 "opcode/class '%s' unmodified\n", insn1, insn2,
4635 iname);
4636
4637 dsc->modinsn[0] = insn1;
4638 dsc->modinsn[1] = insn2;
4639 dsc->numinsns = 2;
4640
4641 return 0;
4642}
4643
4644/* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
4645 modification. */
4646static int
615234c1 4647thumb_copy_unmodified_16bit (struct gdbarch *gdbarch, uint16_t insn,
34518530 4648 const char *iname,
cfba9872 4649 arm_displaced_step_closure *dsc)
34518530
YQ
4650{
4651 if (debug_displaced)
4652 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x, "
4653 "opcode/class '%s' unmodified\n", insn,
4654 iname);
4655
4656 dsc->modinsn[0] = insn;
4657
4658 return 0;
4659}
4660
cca44b1b
JB
4661/* Preload instructions with immediate offset. */
4662
4663static void
6e39997a 4664cleanup_preload (struct gdbarch *gdbarch,
cfba9872 4665 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
4666{
4667 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
4668 if (!dsc->u.preload.immed)
4669 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
4670}
4671
7ff120b4
YQ
4672static void
4673install_preload (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4674 arm_displaced_step_closure *dsc, unsigned int rn)
cca44b1b 4675{
cca44b1b 4676 ULONGEST rn_val;
cca44b1b
JB
4677 /* Preload instructions:
4678
4679 {pli/pld} [rn, #+/-imm]
4680 ->
4681 {pli/pld} [r0, #+/-imm]. */
4682
36073a92
YQ
4683 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4684 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 4685 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
cca44b1b
JB
4686 dsc->u.preload.immed = 1;
4687
cca44b1b 4688 dsc->cleanup = &cleanup_preload;
cca44b1b
JB
4689}
4690
cca44b1b 4691static int
7ff120b4 4692arm_copy_preload (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 4693 arm_displaced_step_closure *dsc)
cca44b1b
JB
4694{
4695 unsigned int rn = bits (insn, 16, 19);
cca44b1b 4696
7ff120b4
YQ
4697 if (!insn_references_pc (insn, 0x000f0000ul))
4698 return arm_copy_unmodified (gdbarch, insn, "preload", dsc);
cca44b1b
JB
4699
4700 if (debug_displaced)
4701 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
4702 (unsigned long) insn);
4703
7ff120b4
YQ
4704 dsc->modinsn[0] = insn & 0xfff0ffff;
4705
4706 install_preload (gdbarch, regs, dsc, rn);
4707
4708 return 0;
4709}
4710
34518530
YQ
4711static int
4712thumb2_copy_preload (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
cfba9872 4713 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
4714{
4715 unsigned int rn = bits (insn1, 0, 3);
4716 unsigned int u_bit = bit (insn1, 7);
4717 int imm12 = bits (insn2, 0, 11);
4718 ULONGEST pc_val;
4719
4720 if (rn != ARM_PC_REGNUM)
4721 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "preload", dsc);
4722
4723 /* PC is only allowed to use in PLI (immediate,literal) Encoding T3, and
4724 PLD (literal) Encoding T1. */
4725 if (debug_displaced)
4726 fprintf_unfiltered (gdb_stdlog,
4727 "displaced: copying pld/pli pc (0x%x) %c imm12 %.4x\n",
4728 (unsigned int) dsc->insn_addr, u_bit ? '+' : '-',
4729 imm12);
4730
4731 if (!u_bit)
4732 imm12 = -1 * imm12;
4733
4734 /* Rewrite instruction {pli/pld} PC imm12 into:
4735 Prepare: tmp[0] <- r0, tmp[1] <- r1, r0 <- pc, r1 <- imm12
4736
4737 {pli/pld} [r0, r1]
4738
4739 Cleanup: r0 <- tmp[0], r1 <- tmp[1]. */
4740
4741 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4742 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
4743
4744 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
4745
4746 displaced_write_reg (regs, dsc, 0, pc_val, CANNOT_WRITE_PC);
4747 displaced_write_reg (regs, dsc, 1, imm12, CANNOT_WRITE_PC);
4748 dsc->u.preload.immed = 0;
4749
4750 /* {pli/pld} [r0, r1] */
4751 dsc->modinsn[0] = insn1 & 0xfff0;
4752 dsc->modinsn[1] = 0xf001;
4753 dsc->numinsns = 2;
4754
4755 dsc->cleanup = &cleanup_preload;
4756 return 0;
4757}
4758
7ff120b4
YQ
4759/* Preload instructions with register offset. */
4760
4761static void
4762install_preload_reg(struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4763 arm_displaced_step_closure *dsc, unsigned int rn,
7ff120b4
YQ
4764 unsigned int rm)
4765{
4766 ULONGEST rn_val, rm_val;
4767
cca44b1b
JB
4768 /* Preload register-offset instructions:
4769
4770 {pli/pld} [rn, rm {, shift}]
4771 ->
4772 {pli/pld} [r0, r1 {, shift}]. */
4773
36073a92
YQ
4774 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4775 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
4776 rn_val = displaced_read_reg (regs, dsc, rn);
4777 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
4778 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
4779 displaced_write_reg (regs, dsc, 1, rm_val, CANNOT_WRITE_PC);
cca44b1b
JB
4780 dsc->u.preload.immed = 0;
4781
cca44b1b 4782 dsc->cleanup = &cleanup_preload;
7ff120b4
YQ
4783}
4784
4785static int
4786arm_copy_preload_reg (struct gdbarch *gdbarch, uint32_t insn,
4787 struct regcache *regs,
cfba9872 4788 arm_displaced_step_closure *dsc)
7ff120b4
YQ
4789{
4790 unsigned int rn = bits (insn, 16, 19);
4791 unsigned int rm = bits (insn, 0, 3);
4792
4793
4794 if (!insn_references_pc (insn, 0x000f000ful))
4795 return arm_copy_unmodified (gdbarch, insn, "preload reg", dsc);
4796
4797 if (debug_displaced)
4798 fprintf_unfiltered (gdb_stdlog, "displaced: copying preload insn %.8lx\n",
4799 (unsigned long) insn);
4800
4801 dsc->modinsn[0] = (insn & 0xfff0fff0) | 0x1;
cca44b1b 4802
7ff120b4 4803 install_preload_reg (gdbarch, regs, dsc, rn, rm);
cca44b1b
JB
4804 return 0;
4805}
4806
4807/* Copy/cleanup coprocessor load and store instructions. */
4808
4809static void
6e39997a 4810cleanup_copro_load_store (struct gdbarch *gdbarch,
cca44b1b 4811 struct regcache *regs,
cfba9872 4812 arm_displaced_step_closure *dsc)
cca44b1b 4813{
36073a92 4814 ULONGEST rn_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
4815
4816 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
4817
4818 if (dsc->u.ldst.writeback)
4819 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, LOAD_WRITE_PC);
4820}
4821
7ff120b4
YQ
4822static void
4823install_copro_load_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4824 arm_displaced_step_closure *dsc,
7ff120b4 4825 int writeback, unsigned int rn)
cca44b1b 4826{
cca44b1b 4827 ULONGEST rn_val;
cca44b1b 4828
cca44b1b
JB
4829 /* Coprocessor load/store instructions:
4830
4831 {stc/stc2} [<Rn>, #+/-imm] (and other immediate addressing modes)
4832 ->
4833 {stc/stc2} [r0, #+/-imm].
4834
4835 ldc/ldc2 are handled identically. */
4836
36073a92
YQ
4837 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
4838 rn_val = displaced_read_reg (regs, dsc, rn);
2b16b2e3
YQ
4839 /* PC should be 4-byte aligned. */
4840 rn_val = rn_val & 0xfffffffc;
cca44b1b
JB
4841 displaced_write_reg (regs, dsc, 0, rn_val, CANNOT_WRITE_PC);
4842
7ff120b4 4843 dsc->u.ldst.writeback = writeback;
cca44b1b
JB
4844 dsc->u.ldst.rn = rn;
4845
7ff120b4
YQ
4846 dsc->cleanup = &cleanup_copro_load_store;
4847}
4848
4849static int
4850arm_copy_copro_load_store (struct gdbarch *gdbarch, uint32_t insn,
4851 struct regcache *regs,
cfba9872 4852 arm_displaced_step_closure *dsc)
7ff120b4
YQ
4853{
4854 unsigned int rn = bits (insn, 16, 19);
4855
4856 if (!insn_references_pc (insn, 0x000f0000ul))
4857 return arm_copy_unmodified (gdbarch, insn, "copro load/store", dsc);
4858
4859 if (debug_displaced)
4860 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
4861 "load/store insn %.8lx\n", (unsigned long) insn);
4862
cca44b1b
JB
4863 dsc->modinsn[0] = insn & 0xfff0ffff;
4864
7ff120b4 4865 install_copro_load_store (gdbarch, regs, dsc, bit (insn, 25), rn);
cca44b1b
JB
4866
4867 return 0;
4868}
4869
34518530
YQ
4870static int
4871thumb2_copy_copro_load_store (struct gdbarch *gdbarch, uint16_t insn1,
4872 uint16_t insn2, struct regcache *regs,
cfba9872 4873 arm_displaced_step_closure *dsc)
34518530
YQ
4874{
4875 unsigned int rn = bits (insn1, 0, 3);
4876
4877 if (rn != ARM_PC_REGNUM)
4878 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
4879 "copro load/store", dsc);
4880
4881 if (debug_displaced)
4882 fprintf_unfiltered (gdb_stdlog, "displaced: copying coprocessor "
4883 "load/store insn %.4x%.4x\n", insn1, insn2);
4884
4885 dsc->modinsn[0] = insn1 & 0xfff0;
4886 dsc->modinsn[1] = insn2;
4887 dsc->numinsns = 2;
4888
4889 /* This function is called for copying instruction LDC/LDC2/VLDR, which
4890 doesn't support writeback, so pass 0. */
4891 install_copro_load_store (gdbarch, regs, dsc, 0, rn);
4892
4893 return 0;
4894}
4895
cca44b1b
JB
4896/* Clean up branch instructions (actually perform the branch, by setting
4897 PC). */
4898
4899static void
6e39997a 4900cleanup_branch (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4901 arm_displaced_step_closure *dsc)
cca44b1b 4902{
36073a92 4903 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
4904 int branch_taken = condition_true (dsc->u.branch.cond, status);
4905 enum pc_write_style write_pc = dsc->u.branch.exchange
4906 ? BX_WRITE_PC : BRANCH_WRITE_PC;
4907
4908 if (!branch_taken)
4909 return;
4910
4911 if (dsc->u.branch.link)
4912 {
8c8dba6d
YQ
4913 /* The value of LR should be the next insn of current one. In order
4914 not to confuse logic hanlding later insn `bx lr', if current insn mode
4915 is Thumb, the bit 0 of LR value should be set to 1. */
4916 ULONGEST next_insn_addr = dsc->insn_addr + dsc->insn_size;
4917
4918 if (dsc->is_thumb)
4919 next_insn_addr |= 0x1;
4920
4921 displaced_write_reg (regs, dsc, ARM_LR_REGNUM, next_insn_addr,
4922 CANNOT_WRITE_PC);
cca44b1b
JB
4923 }
4924
bf9f652a 4925 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->u.branch.dest, write_pc);
cca44b1b
JB
4926}
4927
4928/* Copy B/BL/BLX instructions with immediate destinations. */
4929
7ff120b4
YQ
4930static void
4931install_b_bl_blx (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 4932 arm_displaced_step_closure *dsc,
7ff120b4
YQ
4933 unsigned int cond, int exchange, int link, long offset)
4934{
4935 /* Implement "BL<cond> <label>" as:
4936
4937 Preparation: cond <- instruction condition
4938 Insn: mov r0, r0 (nop)
4939 Cleanup: if (condition true) { r14 <- pc; pc <- label }.
4940
4941 B<cond> similar, but don't set r14 in cleanup. */
4942
4943 dsc->u.branch.cond = cond;
4944 dsc->u.branch.link = link;
4945 dsc->u.branch.exchange = exchange;
4946
2b16b2e3
YQ
4947 dsc->u.branch.dest = dsc->insn_addr;
4948 if (link && exchange)
4949 /* For BLX, offset is computed from the Align (PC, 4). */
4950 dsc->u.branch.dest = dsc->u.branch.dest & 0xfffffffc;
4951
7ff120b4 4952 if (dsc->is_thumb)
2b16b2e3 4953 dsc->u.branch.dest += 4 + offset;
7ff120b4 4954 else
2b16b2e3 4955 dsc->u.branch.dest += 8 + offset;
7ff120b4
YQ
4956
4957 dsc->cleanup = &cleanup_branch;
4958}
cca44b1b 4959static int
7ff120b4 4960arm_copy_b_bl_blx (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 4961 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
4962{
4963 unsigned int cond = bits (insn, 28, 31);
4964 int exchange = (cond == 0xf);
4965 int link = exchange || bit (insn, 24);
cca44b1b
JB
4966 long offset;
4967
4968 if (debug_displaced)
4969 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s immediate insn "
4970 "%.8lx\n", (exchange) ? "blx" : (link) ? "bl" : "b",
4971 (unsigned long) insn);
cca44b1b
JB
4972 if (exchange)
4973 /* For BLX, set bit 0 of the destination. The cleanup_branch function will
4974 then arrange the switch into Thumb mode. */
4975 offset = (bits (insn, 0, 23) << 2) | (bit (insn, 24) << 1) | 1;
4976 else
4977 offset = bits (insn, 0, 23) << 2;
4978
4979 if (bit (offset, 25))
4980 offset = offset | ~0x3ffffff;
4981
cca44b1b
JB
4982 dsc->modinsn[0] = ARM_NOP;
4983
7ff120b4 4984 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
cca44b1b
JB
4985 return 0;
4986}
4987
34518530
YQ
4988static int
4989thumb2_copy_b_bl_blx (struct gdbarch *gdbarch, uint16_t insn1,
4990 uint16_t insn2, struct regcache *regs,
cfba9872 4991 arm_displaced_step_closure *dsc)
34518530
YQ
4992{
4993 int link = bit (insn2, 14);
4994 int exchange = link && !bit (insn2, 12);
4995 int cond = INST_AL;
4996 long offset = 0;
4997 int j1 = bit (insn2, 13);
4998 int j2 = bit (insn2, 11);
4999 int s = sbits (insn1, 10, 10);
5000 int i1 = !(j1 ^ bit (insn1, 10));
5001 int i2 = !(j2 ^ bit (insn1, 10));
5002
5003 if (!link && !exchange) /* B */
5004 {
5005 offset = (bits (insn2, 0, 10) << 1);
5006 if (bit (insn2, 12)) /* Encoding T4 */
5007 {
5008 offset |= (bits (insn1, 0, 9) << 12)
5009 | (i2 << 22)
5010 | (i1 << 23)
5011 | (s << 24);
5012 cond = INST_AL;
5013 }
5014 else /* Encoding T3 */
5015 {
5016 offset |= (bits (insn1, 0, 5) << 12)
5017 | (j1 << 18)
5018 | (j2 << 19)
5019 | (s << 20);
5020 cond = bits (insn1, 6, 9);
5021 }
5022 }
5023 else
5024 {
5025 offset = (bits (insn1, 0, 9) << 12);
5026 offset |= ((i2 << 22) | (i1 << 23) | (s << 24));
5027 offset |= exchange ?
5028 (bits (insn2, 1, 10) << 2) : (bits (insn2, 0, 10) << 1);
5029 }
5030
5031 if (debug_displaced)
5032 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s insn "
5033 "%.4x %.4x with offset %.8lx\n",
5034 link ? (exchange) ? "blx" : "bl" : "b",
5035 insn1, insn2, offset);
5036
5037 dsc->modinsn[0] = THUMB_NOP;
5038
5039 install_b_bl_blx (gdbarch, regs, dsc, cond, exchange, link, offset);
5040 return 0;
5041}
5042
5043/* Copy B Thumb instructions. */
5044static int
615234c1 5045thumb_copy_b (struct gdbarch *gdbarch, uint16_t insn,
cfba9872 5046 arm_displaced_step_closure *dsc)
34518530
YQ
5047{
5048 unsigned int cond = 0;
5049 int offset = 0;
5050 unsigned short bit_12_15 = bits (insn, 12, 15);
5051 CORE_ADDR from = dsc->insn_addr;
5052
5053 if (bit_12_15 == 0xd)
5054 {
5055 /* offset = SignExtend (imm8:0, 32) */
5056 offset = sbits ((insn << 1), 0, 8);
5057 cond = bits (insn, 8, 11);
5058 }
5059 else if (bit_12_15 == 0xe) /* Encoding T2 */
5060 {
5061 offset = sbits ((insn << 1), 0, 11);
5062 cond = INST_AL;
5063 }
5064
5065 if (debug_displaced)
5066 fprintf_unfiltered (gdb_stdlog,
5067 "displaced: copying b immediate insn %.4x "
5068 "with offset %d\n", insn, offset);
5069
5070 dsc->u.branch.cond = cond;
5071 dsc->u.branch.link = 0;
5072 dsc->u.branch.exchange = 0;
5073 dsc->u.branch.dest = from + 4 + offset;
5074
5075 dsc->modinsn[0] = THUMB_NOP;
5076
5077 dsc->cleanup = &cleanup_branch;
5078
5079 return 0;
5080}
5081
cca44b1b
JB
5082/* Copy BX/BLX with register-specified destinations. */
5083
7ff120b4
YQ
5084static void
5085install_bx_blx_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5086 arm_displaced_step_closure *dsc, int link,
7ff120b4 5087 unsigned int cond, unsigned int rm)
cca44b1b 5088{
cca44b1b
JB
5089 /* Implement {BX,BLX}<cond> <reg>" as:
5090
5091 Preparation: cond <- instruction condition
5092 Insn: mov r0, r0 (nop)
5093 Cleanup: if (condition true) { r14 <- pc; pc <- dest; }.
5094
5095 Don't set r14 in cleanup for BX. */
5096
36073a92 5097 dsc->u.branch.dest = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5098
5099 dsc->u.branch.cond = cond;
5100 dsc->u.branch.link = link;
cca44b1b 5101
7ff120b4 5102 dsc->u.branch.exchange = 1;
cca44b1b
JB
5103
5104 dsc->cleanup = &cleanup_branch;
7ff120b4 5105}
cca44b1b 5106
7ff120b4
YQ
5107static int
5108arm_copy_bx_blx_reg (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 5109 struct regcache *regs, arm_displaced_step_closure *dsc)
7ff120b4
YQ
5110{
5111 unsigned int cond = bits (insn, 28, 31);
5112 /* BX: x12xxx1x
5113 BLX: x12xxx3x. */
5114 int link = bit (insn, 5);
5115 unsigned int rm = bits (insn, 0, 3);
5116
5117 if (debug_displaced)
5118 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.8lx",
5119 (unsigned long) insn);
5120
5121 dsc->modinsn[0] = ARM_NOP;
5122
5123 install_bx_blx_reg (gdbarch, regs, dsc, link, cond, rm);
cca44b1b
JB
5124 return 0;
5125}
5126
34518530
YQ
5127static int
5128thumb_copy_bx_blx_reg (struct gdbarch *gdbarch, uint16_t insn,
5129 struct regcache *regs,
cfba9872 5130 arm_displaced_step_closure *dsc)
34518530
YQ
5131{
5132 int link = bit (insn, 7);
5133 unsigned int rm = bits (insn, 3, 6);
5134
5135 if (debug_displaced)
5136 fprintf_unfiltered (gdb_stdlog, "displaced: copying insn %.4x",
5137 (unsigned short) insn);
5138
5139 dsc->modinsn[0] = THUMB_NOP;
5140
5141 install_bx_blx_reg (gdbarch, regs, dsc, link, INST_AL, rm);
5142
5143 return 0;
5144}
5145
5146
0963b4bd 5147/* Copy/cleanup arithmetic/logic instruction with immediate RHS. */
cca44b1b
JB
5148
5149static void
6e39997a 5150cleanup_alu_imm (struct gdbarch *gdbarch,
cfba9872 5151 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b 5152{
36073a92 5153 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5154 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5155 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5156 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5157}
5158
5159static int
7ff120b4 5160arm_copy_alu_imm (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 5161 arm_displaced_step_closure *dsc)
cca44b1b
JB
5162{
5163 unsigned int rn = bits (insn, 16, 19);
5164 unsigned int rd = bits (insn, 12, 15);
5165 unsigned int op = bits (insn, 21, 24);
5166 int is_mov = (op == 0xd);
5167 ULONGEST rd_val, rn_val;
cca44b1b
JB
5168
5169 if (!insn_references_pc (insn, 0x000ff000ul))
7ff120b4 5170 return arm_copy_unmodified (gdbarch, insn, "ALU immediate", dsc);
cca44b1b
JB
5171
5172 if (debug_displaced)
5173 fprintf_unfiltered (gdb_stdlog, "displaced: copying immediate %s insn "
5174 "%.8lx\n", is_mov ? "move" : "ALU",
5175 (unsigned long) insn);
5176
5177 /* Instruction is of form:
5178
5179 <op><cond> rd, [rn,] #imm
5180
5181 Rewrite as:
5182
5183 Preparation: tmp1, tmp2 <- r0, r1;
5184 r0, r1 <- rd, rn
5185 Insn: <op><cond> r0, r1, #imm
5186 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5187 */
5188
36073a92
YQ
5189 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5190 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5191 rn_val = displaced_read_reg (regs, dsc, rn);
5192 rd_val = displaced_read_reg (regs, dsc, rd);
cca44b1b
JB
5193 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5194 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5195 dsc->rd = rd;
5196
5197 if (is_mov)
5198 dsc->modinsn[0] = insn & 0xfff00fff;
5199 else
5200 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x10000;
5201
5202 dsc->cleanup = &cleanup_alu_imm;
5203
5204 return 0;
5205}
5206
34518530
YQ
5207static int
5208thumb2_copy_alu_imm (struct gdbarch *gdbarch, uint16_t insn1,
5209 uint16_t insn2, struct regcache *regs,
cfba9872 5210 arm_displaced_step_closure *dsc)
34518530
YQ
5211{
5212 unsigned int op = bits (insn1, 5, 8);
5213 unsigned int rn, rm, rd;
5214 ULONGEST rd_val, rn_val;
5215
5216 rn = bits (insn1, 0, 3); /* Rn */
5217 rm = bits (insn2, 0, 3); /* Rm */
5218 rd = bits (insn2, 8, 11); /* Rd */
5219
5220 /* This routine is only called for instruction MOV. */
5221 gdb_assert (op == 0x2 && rn == 0xf);
5222
5223 if (rm != ARM_PC_REGNUM && rd != ARM_PC_REGNUM)
5224 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ALU imm", dsc);
5225
5226 if (debug_displaced)
5227 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.4x%.4x\n",
5228 "ALU", insn1, insn2);
5229
5230 /* Instruction is of form:
5231
5232 <op><cond> rd, [rn,] #imm
5233
5234 Rewrite as:
5235
5236 Preparation: tmp1, tmp2 <- r0, r1;
5237 r0, r1 <- rd, rn
5238 Insn: <op><cond> r0, r1, #imm
5239 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5240 */
5241
5242 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5243 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5244 rn_val = displaced_read_reg (regs, dsc, rn);
5245 rd_val = displaced_read_reg (regs, dsc, rd);
5246 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5247 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5248 dsc->rd = rd;
5249
5250 dsc->modinsn[0] = insn1;
5251 dsc->modinsn[1] = ((insn2 & 0xf0f0) | 0x1);
5252 dsc->numinsns = 2;
5253
5254 dsc->cleanup = &cleanup_alu_imm;
5255
5256 return 0;
5257}
5258
cca44b1b
JB
5259/* Copy/cleanup arithmetic/logic insns with register RHS. */
5260
5261static void
6e39997a 5262cleanup_alu_reg (struct gdbarch *gdbarch,
cfba9872 5263 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
5264{
5265 ULONGEST rd_val;
5266 int i;
5267
36073a92 5268 rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5269
5270 for (i = 0; i < 3; i++)
5271 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
5272
5273 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5274}
5275
7ff120b4
YQ
5276static void
5277install_alu_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5278 arm_displaced_step_closure *dsc,
7ff120b4 5279 unsigned int rd, unsigned int rn, unsigned int rm)
cca44b1b 5280{
cca44b1b 5281 ULONGEST rd_val, rn_val, rm_val;
cca44b1b 5282
cca44b1b
JB
5283 /* Instruction is of form:
5284
5285 <op><cond> rd, [rn,] rm [, <shift>]
5286
5287 Rewrite as:
5288
5289 Preparation: tmp1, tmp2, tmp3 <- r0, r1, r2;
5290 r0, r1, r2 <- rd, rn, rm
ef713951 5291 Insn: <op><cond> r0, [r1,] r2 [, <shift>]
cca44b1b
JB
5292 Cleanup: rd <- r0; r0, r1, r2 <- tmp1, tmp2, tmp3
5293 */
5294
36073a92
YQ
5295 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5296 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5297 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
5298 rd_val = displaced_read_reg (regs, dsc, rd);
5299 rn_val = displaced_read_reg (regs, dsc, rn);
5300 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5301 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5302 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5303 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
5304 dsc->rd = rd;
5305
7ff120b4
YQ
5306 dsc->cleanup = &cleanup_alu_reg;
5307}
5308
5309static int
5310arm_copy_alu_reg (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
cfba9872 5311 arm_displaced_step_closure *dsc)
7ff120b4
YQ
5312{
5313 unsigned int op = bits (insn, 21, 24);
5314 int is_mov = (op == 0xd);
5315
5316 if (!insn_references_pc (insn, 0x000ff00ful))
5317 return arm_copy_unmodified (gdbarch, insn, "ALU reg", dsc);
5318
5319 if (debug_displaced)
5320 fprintf_unfiltered (gdb_stdlog, "displaced: copying reg %s insn %.8lx\n",
5321 is_mov ? "move" : "ALU", (unsigned long) insn);
5322
cca44b1b
JB
5323 if (is_mov)
5324 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x2;
5325 else
5326 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x10002;
5327
7ff120b4
YQ
5328 install_alu_reg (gdbarch, regs, dsc, bits (insn, 12, 15), bits (insn, 16, 19),
5329 bits (insn, 0, 3));
cca44b1b
JB
5330 return 0;
5331}
5332
34518530
YQ
5333static int
5334thumb_copy_alu_reg (struct gdbarch *gdbarch, uint16_t insn,
5335 struct regcache *regs,
cfba9872 5336 arm_displaced_step_closure *dsc)
34518530 5337{
ef713951 5338 unsigned rm, rd;
34518530 5339
ef713951
YQ
5340 rm = bits (insn, 3, 6);
5341 rd = (bit (insn, 7) << 3) | bits (insn, 0, 2);
34518530 5342
ef713951 5343 if (rd != ARM_PC_REGNUM && rm != ARM_PC_REGNUM)
34518530
YQ
5344 return thumb_copy_unmodified_16bit (gdbarch, insn, "ALU reg", dsc);
5345
5346 if (debug_displaced)
ef713951
YQ
5347 fprintf_unfiltered (gdb_stdlog, "displaced: copying ALU reg insn %.4x\n",
5348 (unsigned short) insn);
34518530 5349
ef713951 5350 dsc->modinsn[0] = ((insn & 0xff00) | 0x10);
34518530 5351
ef713951 5352 install_alu_reg (gdbarch, regs, dsc, rd, rd, rm);
34518530
YQ
5353
5354 return 0;
5355}
5356
cca44b1b
JB
5357/* Cleanup/copy arithmetic/logic insns with shifted register RHS. */
5358
5359static void
6e39997a 5360cleanup_alu_shifted_reg (struct gdbarch *gdbarch,
cca44b1b 5361 struct regcache *regs,
cfba9872 5362 arm_displaced_step_closure *dsc)
cca44b1b 5363{
36073a92 5364 ULONGEST rd_val = displaced_read_reg (regs, dsc, 0);
cca44b1b
JB
5365 int i;
5366
5367 for (i = 0; i < 4; i++)
5368 displaced_write_reg (regs, dsc, i, dsc->tmp[i], CANNOT_WRITE_PC);
5369
5370 displaced_write_reg (regs, dsc, dsc->rd, rd_val, ALU_WRITE_PC);
5371}
5372
7ff120b4
YQ
5373static void
5374install_alu_shifted_reg (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5375 arm_displaced_step_closure *dsc,
7ff120b4
YQ
5376 unsigned int rd, unsigned int rn, unsigned int rm,
5377 unsigned rs)
cca44b1b 5378{
7ff120b4 5379 int i;
cca44b1b 5380 ULONGEST rd_val, rn_val, rm_val, rs_val;
cca44b1b 5381
cca44b1b
JB
5382 /* Instruction is of form:
5383
5384 <op><cond> rd, [rn,] rm, <shift> rs
5385
5386 Rewrite as:
5387
5388 Preparation: tmp1, tmp2, tmp3, tmp4 <- r0, r1, r2, r3
5389 r0, r1, r2, r3 <- rd, rn, rm, rs
5390 Insn: <op><cond> r0, r1, r2, <shift> r3
5391 Cleanup: tmp5 <- r0
5392 r0, r1, r2, r3 <- tmp1, tmp2, tmp3, tmp4
5393 rd <- tmp5
5394 */
5395
5396 for (i = 0; i < 4; i++)
36073a92 5397 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
cca44b1b 5398
36073a92
YQ
5399 rd_val = displaced_read_reg (regs, dsc, rd);
5400 rn_val = displaced_read_reg (regs, dsc, rn);
5401 rm_val = displaced_read_reg (regs, dsc, rm);
5402 rs_val = displaced_read_reg (regs, dsc, rs);
cca44b1b
JB
5403 displaced_write_reg (regs, dsc, 0, rd_val, CANNOT_WRITE_PC);
5404 displaced_write_reg (regs, dsc, 1, rn_val, CANNOT_WRITE_PC);
5405 displaced_write_reg (regs, dsc, 2, rm_val, CANNOT_WRITE_PC);
5406 displaced_write_reg (regs, dsc, 3, rs_val, CANNOT_WRITE_PC);
5407 dsc->rd = rd;
7ff120b4
YQ
5408 dsc->cleanup = &cleanup_alu_shifted_reg;
5409}
5410
5411static int
5412arm_copy_alu_shifted_reg (struct gdbarch *gdbarch, uint32_t insn,
5413 struct regcache *regs,
cfba9872 5414 arm_displaced_step_closure *dsc)
7ff120b4
YQ
5415{
5416 unsigned int op = bits (insn, 21, 24);
5417 int is_mov = (op == 0xd);
5418 unsigned int rd, rn, rm, rs;
5419
5420 if (!insn_references_pc (insn, 0x000fff0ful))
5421 return arm_copy_unmodified (gdbarch, insn, "ALU shifted reg", dsc);
5422
5423 if (debug_displaced)
5424 fprintf_unfiltered (gdb_stdlog, "displaced: copying shifted reg %s insn "
5425 "%.8lx\n", is_mov ? "move" : "ALU",
5426 (unsigned long) insn);
5427
5428 rn = bits (insn, 16, 19);
5429 rm = bits (insn, 0, 3);
5430 rs = bits (insn, 8, 11);
5431 rd = bits (insn, 12, 15);
cca44b1b
JB
5432
5433 if (is_mov)
5434 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x302;
5435 else
5436 dsc->modinsn[0] = (insn & 0xfff000f0) | 0x10302;
5437
7ff120b4 5438 install_alu_shifted_reg (gdbarch, regs, dsc, rd, rn, rm, rs);
cca44b1b
JB
5439
5440 return 0;
5441}
5442
5443/* Clean up load instructions. */
5444
5445static void
6e39997a 5446cleanup_load (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5447 arm_displaced_step_closure *dsc)
cca44b1b
JB
5448{
5449 ULONGEST rt_val, rt_val2 = 0, rn_val;
cca44b1b 5450
36073a92 5451 rt_val = displaced_read_reg (regs, dsc, 0);
cca44b1b 5452 if (dsc->u.ldst.xfersize == 8)
36073a92
YQ
5453 rt_val2 = displaced_read_reg (regs, dsc, 1);
5454 rn_val = displaced_read_reg (regs, dsc, 2);
cca44b1b
JB
5455
5456 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5457 if (dsc->u.ldst.xfersize > 4)
5458 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5459 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
5460 if (!dsc->u.ldst.immed)
5461 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
5462
5463 /* Handle register writeback. */
5464 if (dsc->u.ldst.writeback)
5465 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
5466 /* Put result in right place. */
5467 displaced_write_reg (regs, dsc, dsc->rd, rt_val, LOAD_WRITE_PC);
5468 if (dsc->u.ldst.xfersize == 8)
5469 displaced_write_reg (regs, dsc, dsc->rd + 1, rt_val2, LOAD_WRITE_PC);
5470}
5471
5472/* Clean up store instructions. */
5473
5474static void
6e39997a 5475cleanup_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5476 arm_displaced_step_closure *dsc)
cca44b1b 5477{
36073a92 5478 ULONGEST rn_val = displaced_read_reg (regs, dsc, 2);
cca44b1b
JB
5479
5480 displaced_write_reg (regs, dsc, 0, dsc->tmp[0], CANNOT_WRITE_PC);
5481 if (dsc->u.ldst.xfersize > 4)
5482 displaced_write_reg (regs, dsc, 1, dsc->tmp[1], CANNOT_WRITE_PC);
5483 displaced_write_reg (regs, dsc, 2, dsc->tmp[2], CANNOT_WRITE_PC);
5484 if (!dsc->u.ldst.immed)
5485 displaced_write_reg (regs, dsc, 3, dsc->tmp[3], CANNOT_WRITE_PC);
5486 if (!dsc->u.ldst.restore_r4)
5487 displaced_write_reg (regs, dsc, 4, dsc->tmp[4], CANNOT_WRITE_PC);
5488
5489 /* Writeback. */
5490 if (dsc->u.ldst.writeback)
5491 displaced_write_reg (regs, dsc, dsc->u.ldst.rn, rn_val, CANNOT_WRITE_PC);
5492}
5493
5494/* Copy "extra" load/store instructions. These are halfword/doubleword
5495 transfers, which have a different encoding to byte/word transfers. */
5496
5497static int
550dc4e2 5498arm_copy_extra_ld_st (struct gdbarch *gdbarch, uint32_t insn, int unprivileged,
cfba9872 5499 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
5500{
5501 unsigned int op1 = bits (insn, 20, 24);
5502 unsigned int op2 = bits (insn, 5, 6);
5503 unsigned int rt = bits (insn, 12, 15);
5504 unsigned int rn = bits (insn, 16, 19);
5505 unsigned int rm = bits (insn, 0, 3);
5506 char load[12] = {0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1};
5507 char bytesize[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2};
5508 int immed = (op1 & 0x4) != 0;
5509 int opcode;
5510 ULONGEST rt_val, rt_val2 = 0, rn_val, rm_val = 0;
cca44b1b
JB
5511
5512 if (!insn_references_pc (insn, 0x000ff00ful))
7ff120b4 5513 return arm_copy_unmodified (gdbarch, insn, "extra load/store", dsc);
cca44b1b
JB
5514
5515 if (debug_displaced)
5516 fprintf_unfiltered (gdb_stdlog, "displaced: copying %sextra load/store "
550dc4e2 5517 "insn %.8lx\n", unprivileged ? "unprivileged " : "",
cca44b1b
JB
5518 (unsigned long) insn);
5519
5520 opcode = ((op2 << 2) | (op1 & 0x1) | ((op1 & 0x4) >> 1)) - 4;
5521
5522 if (opcode < 0)
5523 internal_error (__FILE__, __LINE__,
5524 _("copy_extra_ld_st: instruction decode error"));
5525
36073a92
YQ
5526 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5527 dsc->tmp[1] = displaced_read_reg (regs, dsc, 1);
5528 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
cca44b1b 5529 if (!immed)
36073a92 5530 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
cca44b1b 5531
36073a92 5532 rt_val = displaced_read_reg (regs, dsc, rt);
cca44b1b 5533 if (bytesize[opcode] == 8)
36073a92
YQ
5534 rt_val2 = displaced_read_reg (regs, dsc, rt + 1);
5535 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 5536 if (!immed)
36073a92 5537 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5538
5539 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
5540 if (bytesize[opcode] == 8)
5541 displaced_write_reg (regs, dsc, 1, rt_val2, CANNOT_WRITE_PC);
5542 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
5543 if (!immed)
5544 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
5545
5546 dsc->rd = rt;
5547 dsc->u.ldst.xfersize = bytesize[opcode];
5548 dsc->u.ldst.rn = rn;
5549 dsc->u.ldst.immed = immed;
5550 dsc->u.ldst.writeback = bit (insn, 24) == 0 || bit (insn, 21) != 0;
5551 dsc->u.ldst.restore_r4 = 0;
5552
5553 if (immed)
5554 /* {ldr,str}<width><cond> rt, [rt2,] [rn, #imm]
5555 ->
5556 {ldr,str}<width><cond> r0, [r1,] [r2, #imm]. */
5557 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
5558 else
5559 /* {ldr,str}<width><cond> rt, [rt2,] [rn, +/-rm]
5560 ->
5561 {ldr,str}<width><cond> r0, [r1,] [r2, +/-r3]. */
5562 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
5563
5564 dsc->cleanup = load[opcode] ? &cleanup_load : &cleanup_store;
5565
5566 return 0;
5567}
5568
0f6f04ba 5569/* Copy byte/half word/word loads and stores. */
cca44b1b 5570
7ff120b4 5571static void
0f6f04ba 5572install_load_store (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5573 arm_displaced_step_closure *dsc, int load,
0f6f04ba
YQ
5574 int immed, int writeback, int size, int usermode,
5575 int rt, int rm, int rn)
cca44b1b 5576{
cca44b1b 5577 ULONGEST rt_val, rn_val, rm_val = 0;
cca44b1b 5578
36073a92
YQ
5579 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5580 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
cca44b1b 5581 if (!immed)
36073a92 5582 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
cca44b1b 5583 if (!load)
36073a92 5584 dsc->tmp[4] = displaced_read_reg (regs, dsc, 4);
cca44b1b 5585
36073a92
YQ
5586 rt_val = displaced_read_reg (regs, dsc, rt);
5587 rn_val = displaced_read_reg (regs, dsc, rn);
cca44b1b 5588 if (!immed)
36073a92 5589 rm_val = displaced_read_reg (regs, dsc, rm);
cca44b1b
JB
5590
5591 displaced_write_reg (regs, dsc, 0, rt_val, CANNOT_WRITE_PC);
5592 displaced_write_reg (regs, dsc, 2, rn_val, CANNOT_WRITE_PC);
5593 if (!immed)
5594 displaced_write_reg (regs, dsc, 3, rm_val, CANNOT_WRITE_PC);
cca44b1b 5595 dsc->rd = rt;
0f6f04ba 5596 dsc->u.ldst.xfersize = size;
cca44b1b
JB
5597 dsc->u.ldst.rn = rn;
5598 dsc->u.ldst.immed = immed;
7ff120b4 5599 dsc->u.ldst.writeback = writeback;
cca44b1b
JB
5600
5601 /* To write PC we can do:
5602
494e194e
YQ
5603 Before this sequence of instructions:
5604 r0 is the PC value got from displaced_read_reg, so r0 = from + 8;
5605 r2 is the Rn value got from dispalced_read_reg.
5606
5607 Insn1: push {pc} Write address of STR instruction + offset on stack
5608 Insn2: pop {r4} Read it back from stack, r4 = addr(Insn1) + offset
5609 Insn3: sub r4, r4, pc r4 = addr(Insn1) + offset - pc
5610 = addr(Insn1) + offset - addr(Insn3) - 8
5611 = offset - 16
5612 Insn4: add r4, r4, #8 r4 = offset - 8
5613 Insn5: add r0, r0, r4 r0 = from + 8 + offset - 8
5614 = from + offset
5615 Insn6: str r0, [r2, #imm] (or str r0, [r2, r3])
cca44b1b
JB
5616
5617 Otherwise we don't know what value to write for PC, since the offset is
494e194e
YQ
5618 architecture-dependent (sometimes PC+8, sometimes PC+12). More details
5619 of this can be found in Section "Saving from r15" in
5620 http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
cca44b1b 5621
7ff120b4
YQ
5622 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
5623}
5624
34518530
YQ
5625
5626static int
5627thumb2_copy_load_literal (struct gdbarch *gdbarch, uint16_t insn1,
5628 uint16_t insn2, struct regcache *regs,
cfba9872 5629 arm_displaced_step_closure *dsc, int size)
34518530
YQ
5630{
5631 unsigned int u_bit = bit (insn1, 7);
5632 unsigned int rt = bits (insn2, 12, 15);
5633 int imm12 = bits (insn2, 0, 11);
5634 ULONGEST pc_val;
5635
5636 if (debug_displaced)
5637 fprintf_unfiltered (gdb_stdlog,
5638 "displaced: copying ldr pc (0x%x) R%d %c imm12 %.4x\n",
5639 (unsigned int) dsc->insn_addr, rt, u_bit ? '+' : '-',
5640 imm12);
5641
5642 if (!u_bit)
5643 imm12 = -1 * imm12;
5644
5645 /* Rewrite instruction LDR Rt imm12 into:
5646
5647 Prepare: tmp[0] <- r0, tmp[1] <- r2, tmp[2] <- r3, r2 <- pc, r3 <- imm12
5648
5649 LDR R0, R2, R3,
5650
5651 Cleanup: rt <- r0, r0 <- tmp[0], r2 <- tmp[1], r3 <- tmp[2]. */
5652
5653
5654 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
5655 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
5656 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
5657
5658 pc_val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
5659
5660 pc_val = pc_val & 0xfffffffc;
5661
5662 displaced_write_reg (regs, dsc, 2, pc_val, CANNOT_WRITE_PC);
5663 displaced_write_reg (regs, dsc, 3, imm12, CANNOT_WRITE_PC);
5664
5665 dsc->rd = rt;
5666
5667 dsc->u.ldst.xfersize = size;
5668 dsc->u.ldst.immed = 0;
5669 dsc->u.ldst.writeback = 0;
5670 dsc->u.ldst.restore_r4 = 0;
5671
5672 /* LDR R0, R2, R3 */
5673 dsc->modinsn[0] = 0xf852;
5674 dsc->modinsn[1] = 0x3;
5675 dsc->numinsns = 2;
5676
5677 dsc->cleanup = &cleanup_load;
5678
5679 return 0;
5680}
5681
5682static int
5683thumb2_copy_load_reg_imm (struct gdbarch *gdbarch, uint16_t insn1,
5684 uint16_t insn2, struct regcache *regs,
cfba9872 5685 arm_displaced_step_closure *dsc,
34518530
YQ
5686 int writeback, int immed)
5687{
5688 unsigned int rt = bits (insn2, 12, 15);
5689 unsigned int rn = bits (insn1, 0, 3);
5690 unsigned int rm = bits (insn2, 0, 3); /* Only valid if !immed. */
5691 /* In LDR (register), there is also a register Rm, which is not allowed to
5692 be PC, so we don't have to check it. */
5693
5694 if (rt != ARM_PC_REGNUM && rn != ARM_PC_REGNUM)
5695 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "load",
5696 dsc);
5697
5698 if (debug_displaced)
5699 fprintf_unfiltered (gdb_stdlog,
5700 "displaced: copying ldr r%d [r%d] insn %.4x%.4x\n",
5701 rt, rn, insn1, insn2);
5702
5703 install_load_store (gdbarch, regs, dsc, 1, immed, writeback, 4,
5704 0, rt, rm, rn);
5705
5706 dsc->u.ldst.restore_r4 = 0;
5707
5708 if (immed)
5709 /* ldr[b]<cond> rt, [rn, #imm], etc.
5710 ->
5711 ldr[b]<cond> r0, [r2, #imm]. */
5712 {
5713 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
5714 dsc->modinsn[1] = insn2 & 0x0fff;
5715 }
5716 else
5717 /* ldr[b]<cond> rt, [rn, rm], etc.
5718 ->
5719 ldr[b]<cond> r0, [r2, r3]. */
5720 {
5721 dsc->modinsn[0] = (insn1 & 0xfff0) | 0x2;
5722 dsc->modinsn[1] = (insn2 & 0x0ff0) | 0x3;
5723 }
5724
5725 dsc->numinsns = 2;
5726
5727 return 0;
5728}
5729
5730
7ff120b4
YQ
5731static int
5732arm_copy_ldr_str_ldrb_strb (struct gdbarch *gdbarch, uint32_t insn,
5733 struct regcache *regs,
cfba9872 5734 arm_displaced_step_closure *dsc,
0f6f04ba 5735 int load, int size, int usermode)
7ff120b4
YQ
5736{
5737 int immed = !bit (insn, 25);
5738 int writeback = (bit (insn, 24) == 0 || bit (insn, 21) != 0);
5739 unsigned int rt = bits (insn, 12, 15);
5740 unsigned int rn = bits (insn, 16, 19);
5741 unsigned int rm = bits (insn, 0, 3); /* Only valid if !immed. */
5742
5743 if (!insn_references_pc (insn, 0x000ff00ful))
5744 return arm_copy_unmodified (gdbarch, insn, "load/store", dsc);
5745
5746 if (debug_displaced)
5747 fprintf_unfiltered (gdb_stdlog,
5748 "displaced: copying %s%s r%d [r%d] insn %.8lx\n",
0f6f04ba
YQ
5749 load ? (size == 1 ? "ldrb" : "ldr")
5750 : (size == 1 ? "strb" : "str"), usermode ? "t" : "",
7ff120b4
YQ
5751 rt, rn,
5752 (unsigned long) insn);
5753
0f6f04ba
YQ
5754 install_load_store (gdbarch, regs, dsc, load, immed, writeback, size,
5755 usermode, rt, rm, rn);
7ff120b4 5756
bf9f652a 5757 if (load || rt != ARM_PC_REGNUM)
cca44b1b
JB
5758 {
5759 dsc->u.ldst.restore_r4 = 0;
5760
5761 if (immed)
5762 /* {ldr,str}[b]<cond> rt, [rn, #imm], etc.
5763 ->
5764 {ldr,str}[b]<cond> r0, [r2, #imm]. */
5765 dsc->modinsn[0] = (insn & 0xfff00fff) | 0x20000;
5766 else
5767 /* {ldr,str}[b]<cond> rt, [rn, rm], etc.
5768 ->
5769 {ldr,str}[b]<cond> r0, [r2, r3]. */
5770 dsc->modinsn[0] = (insn & 0xfff00ff0) | 0x20003;
5771 }
5772 else
5773 {
5774 /* We need to use r4 as scratch. Make sure it's restored afterwards. */
5775 dsc->u.ldst.restore_r4 = 1;
494e194e
YQ
5776 dsc->modinsn[0] = 0xe92d8000; /* push {pc} */
5777 dsc->modinsn[1] = 0xe8bd0010; /* pop {r4} */
cca44b1b
JB
5778 dsc->modinsn[2] = 0xe044400f; /* sub r4, r4, pc. */
5779 dsc->modinsn[3] = 0xe2844008; /* add r4, r4, #8. */
5780 dsc->modinsn[4] = 0xe0800004; /* add r0, r0, r4. */
5781
5782 /* As above. */
5783 if (immed)
5784 dsc->modinsn[5] = (insn & 0xfff00fff) | 0x20000;
5785 else
5786 dsc->modinsn[5] = (insn & 0xfff00ff0) | 0x20003;
5787
cca44b1b
JB
5788 dsc->numinsns = 6;
5789 }
5790
5791 dsc->cleanup = load ? &cleanup_load : &cleanup_store;
5792
5793 return 0;
5794}
5795
5796/* Cleanup LDM instructions with fully-populated register list. This is an
5797 unfortunate corner case: it's impossible to implement correctly by modifying
5798 the instruction. The issue is as follows: we have an instruction,
5799
5800 ldm rN, {r0-r15}
5801
5802 which we must rewrite to avoid loading PC. A possible solution would be to
5803 do the load in two halves, something like (with suitable cleanup
5804 afterwards):
5805
5806 mov r8, rN
5807 ldm[id][ab] r8!, {r0-r7}
5808 str r7, <temp>
5809 ldm[id][ab] r8, {r7-r14}
5810 <bkpt>
5811
5812 but at present there's no suitable place for <temp>, since the scratch space
5813 is overwritten before the cleanup routine is called. For now, we simply
5814 emulate the instruction. */
5815
5816static void
5817cleanup_block_load_all (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5818 arm_displaced_step_closure *dsc)
cca44b1b 5819{
cca44b1b
JB
5820 int inc = dsc->u.block.increment;
5821 int bump_before = dsc->u.block.before ? (inc ? 4 : -4) : 0;
5822 int bump_after = dsc->u.block.before ? 0 : (inc ? 4 : -4);
5823 uint32_t regmask = dsc->u.block.regmask;
5824 int regno = inc ? 0 : 15;
5825 CORE_ADDR xfer_addr = dsc->u.block.xfer_addr;
5826 int exception_return = dsc->u.block.load && dsc->u.block.user
5827 && (regmask & 0x8000) != 0;
36073a92 5828 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
5829 int do_transfer = condition_true (dsc->u.block.cond, status);
5830 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5831
5832 if (!do_transfer)
5833 return;
5834
5835 /* If the instruction is ldm rN, {...pc}^, I don't think there's anything
5836 sensible we can do here. Complain loudly. */
5837 if (exception_return)
5838 error (_("Cannot single-step exception return"));
5839
5840 /* We don't handle any stores here for now. */
5841 gdb_assert (dsc->u.block.load != 0);
5842
5843 if (debug_displaced)
5844 fprintf_unfiltered (gdb_stdlog, "displaced: emulating block transfer: "
5845 "%s %s %s\n", dsc->u.block.load ? "ldm" : "stm",
5846 dsc->u.block.increment ? "inc" : "dec",
5847 dsc->u.block.before ? "before" : "after");
5848
5849 while (regmask)
5850 {
5851 uint32_t memword;
5852
5853 if (inc)
bf9f652a 5854 while (regno <= ARM_PC_REGNUM && (regmask & (1 << regno)) == 0)
cca44b1b
JB
5855 regno++;
5856 else
5857 while (regno >= 0 && (regmask & (1 << regno)) == 0)
5858 regno--;
5859
5860 xfer_addr += bump_before;
5861
5862 memword = read_memory_unsigned_integer (xfer_addr, 4, byte_order);
5863 displaced_write_reg (regs, dsc, regno, memword, LOAD_WRITE_PC);
5864
5865 xfer_addr += bump_after;
5866
5867 regmask &= ~(1 << regno);
5868 }
5869
5870 if (dsc->u.block.writeback)
5871 displaced_write_reg (regs, dsc, dsc->u.block.rn, xfer_addr,
5872 CANNOT_WRITE_PC);
5873}
5874
5875/* Clean up an STM which included the PC in the register list. */
5876
5877static void
5878cleanup_block_store_pc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 5879 arm_displaced_step_closure *dsc)
cca44b1b 5880{
36073a92 5881 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
cca44b1b
JB
5882 int store_executed = condition_true (dsc->u.block.cond, status);
5883 CORE_ADDR pc_stored_at, transferred_regs = bitcount (dsc->u.block.regmask);
5884 CORE_ADDR stm_insn_addr;
5885 uint32_t pc_val;
5886 long offset;
5887 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5888
5889 /* If condition code fails, there's nothing else to do. */
5890 if (!store_executed)
5891 return;
5892
5893 if (dsc->u.block.increment)
5894 {
5895 pc_stored_at = dsc->u.block.xfer_addr + 4 * transferred_regs;
5896
5897 if (dsc->u.block.before)
5898 pc_stored_at += 4;
5899 }
5900 else
5901 {
5902 pc_stored_at = dsc->u.block.xfer_addr;
5903
5904 if (dsc->u.block.before)
5905 pc_stored_at -= 4;
5906 }
5907
5908 pc_val = read_memory_unsigned_integer (pc_stored_at, 4, byte_order);
5909 stm_insn_addr = dsc->scratch_base;
5910 offset = pc_val - stm_insn_addr;
5911
5912 if (debug_displaced)
5913 fprintf_unfiltered (gdb_stdlog, "displaced: detected PC offset %.8lx for "
5914 "STM instruction\n", offset);
5915
5916 /* Rewrite the stored PC to the proper value for the non-displaced original
5917 instruction. */
5918 write_memory_unsigned_integer (pc_stored_at, 4, byte_order,
5919 dsc->insn_addr + offset);
5920}
5921
5922/* Clean up an LDM which includes the PC in the register list. We clumped all
5923 the registers in the transferred list into a contiguous range r0...rX (to
5924 avoid loading PC directly and losing control of the debugged program), so we
5925 must undo that here. */
5926
5927static void
6e39997a 5928cleanup_block_load_pc (struct gdbarch *gdbarch,
cca44b1b 5929 struct regcache *regs,
cfba9872 5930 arm_displaced_step_closure *dsc)
cca44b1b 5931{
36073a92 5932 uint32_t status = displaced_read_reg (regs, dsc, ARM_PS_REGNUM);
22e048c9 5933 int load_executed = condition_true (dsc->u.block.cond, status);
bf9f652a 5934 unsigned int mask = dsc->u.block.regmask, write_reg = ARM_PC_REGNUM;
cca44b1b
JB
5935 unsigned int regs_loaded = bitcount (mask);
5936 unsigned int num_to_shuffle = regs_loaded, clobbered;
5937
5938 /* The method employed here will fail if the register list is fully populated
5939 (we need to avoid loading PC directly). */
5940 gdb_assert (num_to_shuffle < 16);
5941
5942 if (!load_executed)
5943 return;
5944
5945 clobbered = (1 << num_to_shuffle) - 1;
5946
5947 while (num_to_shuffle > 0)
5948 {
5949 if ((mask & (1 << write_reg)) != 0)
5950 {
5951 unsigned int read_reg = num_to_shuffle - 1;
5952
5953 if (read_reg != write_reg)
5954 {
36073a92 5955 ULONGEST rval = displaced_read_reg (regs, dsc, read_reg);
cca44b1b
JB
5956 displaced_write_reg (regs, dsc, write_reg, rval, LOAD_WRITE_PC);
5957 if (debug_displaced)
5958 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: move "
5959 "loaded register r%d to r%d\n"), read_reg,
5960 write_reg);
5961 }
5962 else if (debug_displaced)
5963 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: register "
5964 "r%d already in the right place\n"),
5965 write_reg);
5966
5967 clobbered &= ~(1 << write_reg);
5968
5969 num_to_shuffle--;
5970 }
5971
5972 write_reg--;
5973 }
5974
5975 /* Restore any registers we scribbled over. */
5976 for (write_reg = 0; clobbered != 0; write_reg++)
5977 {
5978 if ((clobbered & (1 << write_reg)) != 0)
5979 {
5980 displaced_write_reg (regs, dsc, write_reg, dsc->tmp[write_reg],
5981 CANNOT_WRITE_PC);
5982 if (debug_displaced)
5983 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM: restored "
5984 "clobbered register r%d\n"), write_reg);
5985 clobbered &= ~(1 << write_reg);
5986 }
5987 }
5988
5989 /* Perform register writeback manually. */
5990 if (dsc->u.block.writeback)
5991 {
5992 ULONGEST new_rn_val = dsc->u.block.xfer_addr;
5993
5994 if (dsc->u.block.increment)
5995 new_rn_val += regs_loaded * 4;
5996 else
5997 new_rn_val -= regs_loaded * 4;
5998
5999 displaced_write_reg (regs, dsc, dsc->u.block.rn, new_rn_val,
6000 CANNOT_WRITE_PC);
6001 }
6002}
6003
6004/* Handle ldm/stm, apart from some tricky cases which are unlikely to occur
6005 in user-level code (in particular exception return, ldm rn, {...pc}^). */
6006
6007static int
7ff120b4
YQ
6008arm_copy_block_xfer (struct gdbarch *gdbarch, uint32_t insn,
6009 struct regcache *regs,
cfba9872 6010 arm_displaced_step_closure *dsc)
cca44b1b
JB
6011{
6012 int load = bit (insn, 20);
6013 int user = bit (insn, 22);
6014 int increment = bit (insn, 23);
6015 int before = bit (insn, 24);
6016 int writeback = bit (insn, 21);
6017 int rn = bits (insn, 16, 19);
cca44b1b 6018
0963b4bd
MS
6019 /* Block transfers which don't mention PC can be run directly
6020 out-of-line. */
bf9f652a 6021 if (rn != ARM_PC_REGNUM && (insn & 0x8000) == 0)
7ff120b4 6022 return arm_copy_unmodified (gdbarch, insn, "ldm/stm", dsc);
cca44b1b 6023
bf9f652a 6024 if (rn == ARM_PC_REGNUM)
cca44b1b 6025 {
0963b4bd
MS
6026 warning (_("displaced: Unpredictable LDM or STM with "
6027 "base register r15"));
7ff120b4 6028 return arm_copy_unmodified (gdbarch, insn, "unpredictable ldm/stm", dsc);
cca44b1b
JB
6029 }
6030
6031 if (debug_displaced)
6032 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
6033 "%.8lx\n", (unsigned long) insn);
6034
36073a92 6035 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
cca44b1b
JB
6036 dsc->u.block.rn = rn;
6037
6038 dsc->u.block.load = load;
6039 dsc->u.block.user = user;
6040 dsc->u.block.increment = increment;
6041 dsc->u.block.before = before;
6042 dsc->u.block.writeback = writeback;
6043 dsc->u.block.cond = bits (insn, 28, 31);
6044
6045 dsc->u.block.regmask = insn & 0xffff;
6046
6047 if (load)
6048 {
6049 if ((insn & 0xffff) == 0xffff)
6050 {
6051 /* LDM with a fully-populated register list. This case is
6052 particularly tricky. Implement for now by fully emulating the
6053 instruction (which might not behave perfectly in all cases, but
6054 these instructions should be rare enough for that not to matter
6055 too much). */
6056 dsc->modinsn[0] = ARM_NOP;
6057
6058 dsc->cleanup = &cleanup_block_load_all;
6059 }
6060 else
6061 {
6062 /* LDM of a list of registers which includes PC. Implement by
6063 rewriting the list of registers to be transferred into a
6064 contiguous chunk r0...rX before doing the transfer, then shuffling
6065 registers into the correct places in the cleanup routine. */
6066 unsigned int regmask = insn & 0xffff;
bec2ab5a
SM
6067 unsigned int num_in_list = bitcount (regmask), new_regmask;
6068 unsigned int i;
cca44b1b
JB
6069
6070 for (i = 0; i < num_in_list; i++)
36073a92 6071 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
cca44b1b
JB
6072
6073 /* Writeback makes things complicated. We need to avoid clobbering
6074 the base register with one of the registers in our modified
6075 register list, but just using a different register can't work in
6076 all cases, e.g.:
6077
6078 ldm r14!, {r0-r13,pc}
6079
6080 which would need to be rewritten as:
6081
6082 ldm rN!, {r0-r14}
6083
6084 but that can't work, because there's no free register for N.
6085
6086 Solve this by turning off the writeback bit, and emulating
6087 writeback manually in the cleanup routine. */
6088
6089 if (writeback)
6090 insn &= ~(1 << 21);
6091
6092 new_regmask = (1 << num_in_list) - 1;
6093
6094 if (debug_displaced)
6095 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
6096 "{..., pc}: original reg list %.4x, modified "
6097 "list %.4x\n"), rn, writeback ? "!" : "",
6098 (int) insn & 0xffff, new_regmask);
6099
6100 dsc->modinsn[0] = (insn & ~0xffff) | (new_regmask & 0xffff);
6101
6102 dsc->cleanup = &cleanup_block_load_pc;
6103 }
6104 }
6105 else
6106 {
6107 /* STM of a list of registers which includes PC. Run the instruction
6108 as-is, but out of line: this will store the wrong value for the PC,
6109 so we must manually fix up the memory in the cleanup routine.
6110 Doing things this way has the advantage that we can auto-detect
6111 the offset of the PC write (which is architecture-dependent) in
6112 the cleanup routine. */
6113 dsc->modinsn[0] = insn;
6114
6115 dsc->cleanup = &cleanup_block_store_pc;
6116 }
6117
6118 return 0;
6119}
6120
34518530
YQ
6121static int
6122thumb2_copy_block_xfer (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
6123 struct regcache *regs,
cfba9872 6124 arm_displaced_step_closure *dsc)
cca44b1b 6125{
34518530
YQ
6126 int rn = bits (insn1, 0, 3);
6127 int load = bit (insn1, 4);
6128 int writeback = bit (insn1, 5);
cca44b1b 6129
34518530
YQ
6130 /* Block transfers which don't mention PC can be run directly
6131 out-of-line. */
6132 if (rn != ARM_PC_REGNUM && (insn2 & 0x8000) == 0)
6133 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "ldm/stm", dsc);
7ff120b4 6134
34518530
YQ
6135 if (rn == ARM_PC_REGNUM)
6136 {
6137 warning (_("displaced: Unpredictable LDM or STM with "
6138 "base register r15"));
6139 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6140 "unpredictable ldm/stm", dsc);
6141 }
cca44b1b
JB
6142
6143 if (debug_displaced)
34518530
YQ
6144 fprintf_unfiltered (gdb_stdlog, "displaced: copying block transfer insn "
6145 "%.4x%.4x\n", insn1, insn2);
cca44b1b 6146
34518530
YQ
6147 /* Clear bit 13, since it should be always zero. */
6148 dsc->u.block.regmask = (insn2 & 0xdfff);
6149 dsc->u.block.rn = rn;
cca44b1b 6150
34518530
YQ
6151 dsc->u.block.load = load;
6152 dsc->u.block.user = 0;
6153 dsc->u.block.increment = bit (insn1, 7);
6154 dsc->u.block.before = bit (insn1, 8);
6155 dsc->u.block.writeback = writeback;
6156 dsc->u.block.cond = INST_AL;
6157 dsc->u.block.xfer_addr = displaced_read_reg (regs, dsc, rn);
cca44b1b 6158
34518530
YQ
6159 if (load)
6160 {
6161 if (dsc->u.block.regmask == 0xffff)
6162 {
6163 /* This branch is impossible to happen. */
6164 gdb_assert (0);
6165 }
6166 else
6167 {
6168 unsigned int regmask = dsc->u.block.regmask;
bec2ab5a
SM
6169 unsigned int num_in_list = bitcount (regmask), new_regmask;
6170 unsigned int i;
34518530
YQ
6171
6172 for (i = 0; i < num_in_list; i++)
6173 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
6174
6175 if (writeback)
6176 insn1 &= ~(1 << 5);
6177
6178 new_regmask = (1 << num_in_list) - 1;
6179
6180 if (debug_displaced)
6181 fprintf_unfiltered (gdb_stdlog, _("displaced: LDM r%d%s, "
6182 "{..., pc}: original reg list %.4x, modified "
6183 "list %.4x\n"), rn, writeback ? "!" : "",
6184 (int) dsc->u.block.regmask, new_regmask);
6185
6186 dsc->modinsn[0] = insn1;
6187 dsc->modinsn[1] = (new_regmask & 0xffff);
6188 dsc->numinsns = 2;
6189
6190 dsc->cleanup = &cleanup_block_load_pc;
6191 }
6192 }
6193 else
6194 {
6195 dsc->modinsn[0] = insn1;
6196 dsc->modinsn[1] = insn2;
6197 dsc->numinsns = 2;
6198 dsc->cleanup = &cleanup_block_store_pc;
6199 }
6200 return 0;
6201}
6202
d9311bfa
AT
6203/* Wrapper over read_memory_unsigned_integer for use in arm_get_next_pcs.
6204 This is used to avoid a dependency on BFD's bfd_endian enum. */
6205
6206ULONGEST
6207arm_get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr, int len,
6208 int byte_order)
6209{
5f2dfcfd
AT
6210 return read_memory_unsigned_integer (memaddr, len,
6211 (enum bfd_endian) byte_order);
d9311bfa
AT
6212}
6213
6214/* Wrapper over gdbarch_addr_bits_remove for use in arm_get_next_pcs. */
6215
6216CORE_ADDR
6217arm_get_next_pcs_addr_bits_remove (struct arm_get_next_pcs *self,
6218 CORE_ADDR val)
6219{
ac7936df 6220 return gdbarch_addr_bits_remove (self->regcache->arch (), val);
d9311bfa
AT
6221}
6222
6223/* Wrapper over syscall_next_pc for use in get_next_pcs. */
6224
e7cf25a8 6225static CORE_ADDR
553cb527 6226arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs *self)
d9311bfa 6227{
d9311bfa
AT
6228 return 0;
6229}
6230
6231/* Wrapper over arm_is_thumb for use in arm_get_next_pcs. */
6232
6233int
6234arm_get_next_pcs_is_thumb (struct arm_get_next_pcs *self)
6235{
6236 return arm_is_thumb (self->regcache);
6237}
6238
6239/* single_step() is called just before we want to resume the inferior,
6240 if we want to single-step it but there is no hardware or kernel
6241 single-step support. We find the target of the coming instructions
6242 and breakpoint them. */
6243
a0ff9e1a 6244std::vector<CORE_ADDR>
f5ea389a 6245arm_software_single_step (struct regcache *regcache)
d9311bfa 6246{
ac7936df 6247 struct gdbarch *gdbarch = regcache->arch ();
d9311bfa 6248 struct arm_get_next_pcs next_pcs_ctx;
d9311bfa
AT
6249
6250 arm_get_next_pcs_ctor (&next_pcs_ctx,
6251 &arm_get_next_pcs_ops,
6252 gdbarch_byte_order (gdbarch),
6253 gdbarch_byte_order_for_code (gdbarch),
1b451dda 6254 0,
d9311bfa
AT
6255 regcache);
6256
a0ff9e1a 6257 std::vector<CORE_ADDR> next_pcs = arm_get_next_pcs (&next_pcs_ctx);
d9311bfa 6258
a0ff9e1a
SM
6259 for (CORE_ADDR &pc_ref : next_pcs)
6260 pc_ref = gdbarch_addr_bits_remove (gdbarch, pc_ref);
d9311bfa 6261
93f9a11f 6262 return next_pcs;
d9311bfa
AT
6263}
6264
34518530
YQ
6265/* Cleanup/copy SVC (SWI) instructions. These two functions are overridden
6266 for Linux, where some SVC instructions must be treated specially. */
6267
6268static void
6269cleanup_svc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6270 arm_displaced_step_closure *dsc)
34518530
YQ
6271{
6272 CORE_ADDR resume_addr = dsc->insn_addr + dsc->insn_size;
6273
6274 if (debug_displaced)
6275 fprintf_unfiltered (gdb_stdlog, "displaced: cleanup for svc, resume at "
6276 "%.8lx\n", (unsigned long) resume_addr);
6277
6278 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, resume_addr, BRANCH_WRITE_PC);
6279}
6280
6281
6282/* Common copy routine for svc instruciton. */
6283
6284static int
6285install_svc (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6286 arm_displaced_step_closure *dsc)
34518530
YQ
6287{
6288 /* Preparation: none.
6289 Insn: unmodified svc.
6290 Cleanup: pc <- insn_addr + insn_size. */
6291
6292 /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
6293 instruction. */
6294 dsc->wrote_to_pc = 1;
6295
6296 /* Allow OS-specific code to override SVC handling. */
bd18283a
YQ
6297 if (dsc->u.svc.copy_svc_os)
6298 return dsc->u.svc.copy_svc_os (gdbarch, regs, dsc);
6299 else
6300 {
6301 dsc->cleanup = &cleanup_svc;
6302 return 0;
6303 }
34518530
YQ
6304}
6305
6306static int
6307arm_copy_svc (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6308 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
6309{
6310
6311 if (debug_displaced)
6312 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.8lx\n",
6313 (unsigned long) insn);
6314
6315 dsc->modinsn[0] = insn;
6316
6317 return install_svc (gdbarch, regs, dsc);
6318}
6319
6320static int
6321thumb_copy_svc (struct gdbarch *gdbarch, uint16_t insn,
cfba9872 6322 struct regcache *regs, arm_displaced_step_closure *dsc)
34518530
YQ
6323{
6324
6325 if (debug_displaced)
6326 fprintf_unfiltered (gdb_stdlog, "displaced: copying svc insn %.4x\n",
6327 insn);
bd18283a 6328
34518530
YQ
6329 dsc->modinsn[0] = insn;
6330
6331 return install_svc (gdbarch, regs, dsc);
cca44b1b
JB
6332}
6333
6334/* Copy undefined instructions. */
6335
6336static int
7ff120b4 6337arm_copy_undef (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6338 arm_displaced_step_closure *dsc)
cca44b1b
JB
6339{
6340 if (debug_displaced)
0963b4bd
MS
6341 fprintf_unfiltered (gdb_stdlog,
6342 "displaced: copying undefined insn %.8lx\n",
cca44b1b
JB
6343 (unsigned long) insn);
6344
6345 dsc->modinsn[0] = insn;
6346
6347 return 0;
6348}
6349
34518530
YQ
6350static int
6351thumb_32bit_copy_undef (struct gdbarch *gdbarch, uint16_t insn1, uint16_t insn2,
cfba9872 6352 arm_displaced_step_closure *dsc)
34518530
YQ
6353{
6354
6355 if (debug_displaced)
6356 fprintf_unfiltered (gdb_stdlog, "displaced: copying undefined insn "
6357 "%.4x %.4x\n", (unsigned short) insn1,
6358 (unsigned short) insn2);
6359
6360 dsc->modinsn[0] = insn1;
6361 dsc->modinsn[1] = insn2;
6362 dsc->numinsns = 2;
6363
6364 return 0;
6365}
6366
cca44b1b
JB
6367/* Copy unpredictable instructions. */
6368
6369static int
7ff120b4 6370arm_copy_unpred (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6371 arm_displaced_step_closure *dsc)
cca44b1b
JB
6372{
6373 if (debug_displaced)
6374 fprintf_unfiltered (gdb_stdlog, "displaced: copying unpredictable insn "
6375 "%.8lx\n", (unsigned long) insn);
6376
6377 dsc->modinsn[0] = insn;
6378
6379 return 0;
6380}
6381
6382/* The decode_* functions are instruction decoding helpers. They mostly follow
6383 the presentation in the ARM ARM. */
6384
6385static int
7ff120b4
YQ
6386arm_decode_misc_memhint_neon (struct gdbarch *gdbarch, uint32_t insn,
6387 struct regcache *regs,
cfba9872 6388 arm_displaced_step_closure *dsc)
cca44b1b
JB
6389{
6390 unsigned int op1 = bits (insn, 20, 26), op2 = bits (insn, 4, 7);
6391 unsigned int rn = bits (insn, 16, 19);
6392
2f924de6 6393 if (op1 == 0x10 && (op2 & 0x2) == 0x0 && (rn & 0x1) == 0x0)
7ff120b4 6394 return arm_copy_unmodified (gdbarch, insn, "cps", dsc);
2f924de6 6395 else if (op1 == 0x10 && op2 == 0x0 && (rn & 0x1) == 0x1)
7ff120b4 6396 return arm_copy_unmodified (gdbarch, insn, "setend", dsc);
cca44b1b 6397 else if ((op1 & 0x60) == 0x20)
7ff120b4 6398 return arm_copy_unmodified (gdbarch, insn, "neon dataproc", dsc);
cca44b1b 6399 else if ((op1 & 0x71) == 0x40)
7ff120b4
YQ
6400 return arm_copy_unmodified (gdbarch, insn, "neon elt/struct load/store",
6401 dsc);
cca44b1b 6402 else if ((op1 & 0x77) == 0x41)
7ff120b4 6403 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
cca44b1b 6404 else if ((op1 & 0x77) == 0x45)
7ff120b4 6405 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pli. */
cca44b1b
JB
6406 else if ((op1 & 0x77) == 0x51)
6407 {
6408 if (rn != 0xf)
7ff120b4 6409 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
cca44b1b 6410 else
7ff120b4 6411 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6412 }
6413 else if ((op1 & 0x77) == 0x55)
7ff120b4 6414 return arm_copy_preload (gdbarch, insn, regs, dsc); /* pld/pldw. */
cca44b1b
JB
6415 else if (op1 == 0x57)
6416 switch (op2)
6417 {
7ff120b4
YQ
6418 case 0x1: return arm_copy_unmodified (gdbarch, insn, "clrex", dsc);
6419 case 0x4: return arm_copy_unmodified (gdbarch, insn, "dsb", dsc);
6420 case 0x5: return arm_copy_unmodified (gdbarch, insn, "dmb", dsc);
6421 case 0x6: return arm_copy_unmodified (gdbarch, insn, "isb", dsc);
6422 default: return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6423 }
6424 else if ((op1 & 0x63) == 0x43)
7ff120b4 6425 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b
JB
6426 else if ((op2 & 0x1) == 0x0)
6427 switch (op1 & ~0x80)
6428 {
6429 case 0x61:
7ff120b4 6430 return arm_copy_unmodified (gdbarch, insn, "unallocated mem hint", dsc);
cca44b1b 6431 case 0x65:
7ff120b4 6432 return arm_copy_preload_reg (gdbarch, insn, regs, dsc); /* pli reg. */
cca44b1b
JB
6433 case 0x71: case 0x75:
6434 /* pld/pldw reg. */
7ff120b4 6435 return arm_copy_preload_reg (gdbarch, insn, regs, dsc);
cca44b1b 6436 case 0x63: case 0x67: case 0x73: case 0x77:
7ff120b4 6437 return arm_copy_unpred (gdbarch, insn, dsc);
cca44b1b 6438 default:
7ff120b4 6439 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6440 }
6441 else
7ff120b4 6442 return arm_copy_undef (gdbarch, insn, dsc); /* Probably unreachable. */
cca44b1b
JB
6443}
6444
6445static int
7ff120b4
YQ
6446arm_decode_unconditional (struct gdbarch *gdbarch, uint32_t insn,
6447 struct regcache *regs,
cfba9872 6448 arm_displaced_step_closure *dsc)
cca44b1b
JB
6449{
6450 if (bit (insn, 27) == 0)
7ff120b4 6451 return arm_decode_misc_memhint_neon (gdbarch, insn, regs, dsc);
cca44b1b
JB
6452 /* Switch on bits: 0bxxxxx321xxx0xxxxxxxxxxxxxxxxxxxx. */
6453 else switch (((insn & 0x7000000) >> 23) | ((insn & 0x100000) >> 20))
6454 {
6455 case 0x0: case 0x2:
7ff120b4 6456 return arm_copy_unmodified (gdbarch, insn, "srs", dsc);
cca44b1b
JB
6457
6458 case 0x1: case 0x3:
7ff120b4 6459 return arm_copy_unmodified (gdbarch, insn, "rfe", dsc);
cca44b1b
JB
6460
6461 case 0x4: case 0x5: case 0x6: case 0x7:
7ff120b4 6462 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
cca44b1b
JB
6463
6464 case 0x8:
6465 switch ((insn & 0xe00000) >> 21)
6466 {
6467 case 0x1: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
6468 /* stc/stc2. */
7ff120b4 6469 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6470
6471 case 0x2:
7ff120b4 6472 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
cca44b1b
JB
6473
6474 default:
7ff120b4 6475 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6476 }
6477
6478 case 0x9:
6479 {
6480 int rn_f = (bits (insn, 16, 19) == 0xf);
6481 switch ((insn & 0xe00000) >> 21)
6482 {
6483 case 0x1: case 0x3:
6484 /* ldc/ldc2 imm (undefined for rn == pc). */
7ff120b4
YQ
6485 return rn_f ? arm_copy_undef (gdbarch, insn, dsc)
6486 : arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6487
6488 case 0x2:
7ff120b4 6489 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
cca44b1b
JB
6490
6491 case 0x4: case 0x5: case 0x6: case 0x7:
6492 /* ldc/ldc2 lit (undefined for rn != pc). */
7ff120b4
YQ
6493 return rn_f ? arm_copy_copro_load_store (gdbarch, insn, regs, dsc)
6494 : arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6495
6496 default:
7ff120b4 6497 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6498 }
6499 }
6500
6501 case 0xa:
7ff120b4 6502 return arm_copy_unmodified (gdbarch, insn, "stc/stc2", dsc);
cca44b1b
JB
6503
6504 case 0xb:
6505 if (bits (insn, 16, 19) == 0xf)
6506 /* ldc/ldc2 lit. */
7ff120b4 6507 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b 6508 else
7ff120b4 6509 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6510
6511 case 0xc:
6512 if (bit (insn, 4))
7ff120b4 6513 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
cca44b1b 6514 else
7ff120b4 6515 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6516
6517 case 0xd:
6518 if (bit (insn, 4))
7ff120b4 6519 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
cca44b1b 6520 else
7ff120b4 6521 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6522
6523 default:
7ff120b4 6524 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6525 }
6526}
6527
6528/* Decode miscellaneous instructions in dp/misc encoding space. */
6529
6530static int
7ff120b4
YQ
6531arm_decode_miscellaneous (struct gdbarch *gdbarch, uint32_t insn,
6532 struct regcache *regs,
cfba9872 6533 arm_displaced_step_closure *dsc)
cca44b1b
JB
6534{
6535 unsigned int op2 = bits (insn, 4, 6);
6536 unsigned int op = bits (insn, 21, 22);
cca44b1b
JB
6537
6538 switch (op2)
6539 {
6540 case 0x0:
7ff120b4 6541 return arm_copy_unmodified (gdbarch, insn, "mrs/msr", dsc);
cca44b1b
JB
6542
6543 case 0x1:
6544 if (op == 0x1) /* bx. */
7ff120b4 6545 return arm_copy_bx_blx_reg (gdbarch, insn, regs, dsc);
cca44b1b 6546 else if (op == 0x3)
7ff120b4 6547 return arm_copy_unmodified (gdbarch, insn, "clz", dsc);
cca44b1b 6548 else
7ff120b4 6549 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6550
6551 case 0x2:
6552 if (op == 0x1)
6553 /* Not really supported. */
7ff120b4 6554 return arm_copy_unmodified (gdbarch, insn, "bxj", dsc);
cca44b1b 6555 else
7ff120b4 6556 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6557
6558 case 0x3:
6559 if (op == 0x1)
7ff120b4 6560 return arm_copy_bx_blx_reg (gdbarch, insn,
0963b4bd 6561 regs, dsc); /* blx register. */
cca44b1b 6562 else
7ff120b4 6563 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6564
6565 case 0x5:
7ff120b4 6566 return arm_copy_unmodified (gdbarch, insn, "saturating add/sub", dsc);
cca44b1b
JB
6567
6568 case 0x7:
6569 if (op == 0x1)
7ff120b4 6570 return arm_copy_unmodified (gdbarch, insn, "bkpt", dsc);
cca44b1b
JB
6571 else if (op == 0x3)
6572 /* Not really supported. */
7ff120b4 6573 return arm_copy_unmodified (gdbarch, insn, "smc", dsc);
86a73007 6574 /* Fall through. */
cca44b1b
JB
6575
6576 default:
7ff120b4 6577 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6578 }
6579}
6580
6581static int
7ff120b4
YQ
6582arm_decode_dp_misc (struct gdbarch *gdbarch, uint32_t insn,
6583 struct regcache *regs,
cfba9872 6584 arm_displaced_step_closure *dsc)
cca44b1b
JB
6585{
6586 if (bit (insn, 25))
6587 switch (bits (insn, 20, 24))
6588 {
6589 case 0x10:
7ff120b4 6590 return arm_copy_unmodified (gdbarch, insn, "movw", dsc);
cca44b1b
JB
6591
6592 case 0x14:
7ff120b4 6593 return arm_copy_unmodified (gdbarch, insn, "movt", dsc);
cca44b1b
JB
6594
6595 case 0x12: case 0x16:
7ff120b4 6596 return arm_copy_unmodified (gdbarch, insn, "msr imm", dsc);
cca44b1b
JB
6597
6598 default:
7ff120b4 6599 return arm_copy_alu_imm (gdbarch, insn, regs, dsc);
cca44b1b
JB
6600 }
6601 else
6602 {
6603 uint32_t op1 = bits (insn, 20, 24), op2 = bits (insn, 4, 7);
6604
6605 if ((op1 & 0x19) != 0x10 && (op2 & 0x1) == 0x0)
7ff120b4 6606 return arm_copy_alu_reg (gdbarch, insn, regs, dsc);
cca44b1b 6607 else if ((op1 & 0x19) != 0x10 && (op2 & 0x9) == 0x1)
7ff120b4 6608 return arm_copy_alu_shifted_reg (gdbarch, insn, regs, dsc);
cca44b1b 6609 else if ((op1 & 0x19) == 0x10 && (op2 & 0x8) == 0x0)
7ff120b4 6610 return arm_decode_miscellaneous (gdbarch, insn, regs, dsc);
cca44b1b 6611 else if ((op1 & 0x19) == 0x10 && (op2 & 0x9) == 0x8)
7ff120b4 6612 return arm_copy_unmodified (gdbarch, insn, "halfword mul/mla", dsc);
cca44b1b 6613 else if ((op1 & 0x10) == 0x00 && op2 == 0x9)
7ff120b4 6614 return arm_copy_unmodified (gdbarch, insn, "mul/mla", dsc);
cca44b1b 6615 else if ((op1 & 0x10) == 0x10 && op2 == 0x9)
7ff120b4 6616 return arm_copy_unmodified (gdbarch, insn, "synch", dsc);
cca44b1b 6617 else if (op2 == 0xb || (op2 & 0xd) == 0xd)
550dc4e2 6618 /* 2nd arg means "unprivileged". */
7ff120b4
YQ
6619 return arm_copy_extra_ld_st (gdbarch, insn, (op1 & 0x12) == 0x02, regs,
6620 dsc);
cca44b1b
JB
6621 }
6622
6623 /* Should be unreachable. */
6624 return 1;
6625}
6626
6627static int
7ff120b4
YQ
6628arm_decode_ld_st_word_ubyte (struct gdbarch *gdbarch, uint32_t insn,
6629 struct regcache *regs,
cfba9872 6630 arm_displaced_step_closure *dsc)
cca44b1b
JB
6631{
6632 int a = bit (insn, 25), b = bit (insn, 4);
6633 uint32_t op1 = bits (insn, 20, 24);
cca44b1b
JB
6634
6635 if ((!a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02)
6636 || (a && (op1 & 0x05) == 0x00 && (op1 & 0x17) != 0x02 && !b))
0f6f04ba 6637 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 0);
cca44b1b
JB
6638 else if ((!a && (op1 & 0x17) == 0x02)
6639 || (a && (op1 & 0x17) == 0x02 && !b))
0f6f04ba 6640 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 4, 1);
cca44b1b
JB
6641 else if ((!a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03)
6642 || (a && (op1 & 0x05) == 0x01 && (op1 & 0x17) != 0x03 && !b))
0f6f04ba 6643 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 0);
cca44b1b
JB
6644 else if ((!a && (op1 & 0x17) == 0x03)
6645 || (a && (op1 & 0x17) == 0x03 && !b))
0f6f04ba 6646 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 4, 1);
cca44b1b
JB
6647 else if ((!a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06)
6648 || (a && (op1 & 0x05) == 0x04 && (op1 & 0x17) != 0x06 && !b))
7ff120b4 6649 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 0);
cca44b1b
JB
6650 else if ((!a && (op1 & 0x17) == 0x06)
6651 || (a && (op1 & 0x17) == 0x06 && !b))
7ff120b4 6652 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 0, 1, 1);
cca44b1b
JB
6653 else if ((!a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07)
6654 || (a && (op1 & 0x05) == 0x05 && (op1 & 0x17) != 0x07 && !b))
7ff120b4 6655 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 0);
cca44b1b
JB
6656 else if ((!a && (op1 & 0x17) == 0x07)
6657 || (a && (op1 & 0x17) == 0x07 && !b))
7ff120b4 6658 return arm_copy_ldr_str_ldrb_strb (gdbarch, insn, regs, dsc, 1, 1, 1);
cca44b1b
JB
6659
6660 /* Should be unreachable. */
6661 return 1;
6662}
6663
6664static int
7ff120b4 6665arm_decode_media (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6666 arm_displaced_step_closure *dsc)
cca44b1b
JB
6667{
6668 switch (bits (insn, 20, 24))
6669 {
6670 case 0x00: case 0x01: case 0x02: case 0x03:
7ff120b4 6671 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub signed", dsc);
cca44b1b
JB
6672
6673 case 0x04: case 0x05: case 0x06: case 0x07:
7ff120b4 6674 return arm_copy_unmodified (gdbarch, insn, "parallel add/sub unsigned", dsc);
cca44b1b
JB
6675
6676 case 0x08: case 0x09: case 0x0a: case 0x0b:
6677 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
7ff120b4 6678 return arm_copy_unmodified (gdbarch, insn,
cca44b1b
JB
6679 "decode/pack/unpack/saturate/reverse", dsc);
6680
6681 case 0x18:
6682 if (bits (insn, 5, 7) == 0) /* op2. */
6683 {
6684 if (bits (insn, 12, 15) == 0xf)
7ff120b4 6685 return arm_copy_unmodified (gdbarch, insn, "usad8", dsc);
cca44b1b 6686 else
7ff120b4 6687 return arm_copy_unmodified (gdbarch, insn, "usada8", dsc);
cca44b1b
JB
6688 }
6689 else
7ff120b4 6690 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6691
6692 case 0x1a: case 0x1b:
6693 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7ff120b4 6694 return arm_copy_unmodified (gdbarch, insn, "sbfx", dsc);
cca44b1b 6695 else
7ff120b4 6696 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6697
6698 case 0x1c: case 0x1d:
6699 if (bits (insn, 5, 6) == 0x0) /* op2[1:0]. */
6700 {
6701 if (bits (insn, 0, 3) == 0xf)
7ff120b4 6702 return arm_copy_unmodified (gdbarch, insn, "bfc", dsc);
cca44b1b 6703 else
7ff120b4 6704 return arm_copy_unmodified (gdbarch, insn, "bfi", dsc);
cca44b1b
JB
6705 }
6706 else
7ff120b4 6707 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6708
6709 case 0x1e: case 0x1f:
6710 if (bits (insn, 5, 6) == 0x2) /* op2[1:0]. */
7ff120b4 6711 return arm_copy_unmodified (gdbarch, insn, "ubfx", dsc);
cca44b1b 6712 else
7ff120b4 6713 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b
JB
6714 }
6715
6716 /* Should be unreachable. */
6717 return 1;
6718}
6719
6720static int
615234c1 6721arm_decode_b_bl_ldmstm (struct gdbarch *gdbarch, uint32_t insn,
7ff120b4 6722 struct regcache *regs,
cfba9872 6723 arm_displaced_step_closure *dsc)
cca44b1b
JB
6724{
6725 if (bit (insn, 25))
7ff120b4 6726 return arm_copy_b_bl_blx (gdbarch, insn, regs, dsc);
cca44b1b 6727 else
7ff120b4 6728 return arm_copy_block_xfer (gdbarch, insn, regs, dsc);
cca44b1b
JB
6729}
6730
6731static int
7ff120b4
YQ
6732arm_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint32_t insn,
6733 struct regcache *regs,
cfba9872 6734 arm_displaced_step_closure *dsc)
cca44b1b
JB
6735{
6736 unsigned int opcode = bits (insn, 20, 24);
6737
6738 switch (opcode)
6739 {
6740 case 0x04: case 0x05: /* VFP/Neon mrrc/mcrr. */
7ff120b4 6741 return arm_copy_unmodified (gdbarch, insn, "vfp/neon mrrc/mcrr", dsc);
cca44b1b
JB
6742
6743 case 0x08: case 0x0a: case 0x0c: case 0x0e:
6744 case 0x12: case 0x16:
7ff120b4 6745 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vstm/vpush", dsc);
cca44b1b
JB
6746
6747 case 0x09: case 0x0b: case 0x0d: case 0x0f:
6748 case 0x13: case 0x17:
7ff120b4 6749 return arm_copy_unmodified (gdbarch, insn, "vfp/neon vldm/vpop", dsc);
cca44b1b
JB
6750
6751 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6752 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6753 /* Note: no writeback for these instructions. Bit 25 will always be
6754 zero though (via caller), so the following works OK. */
7ff120b4 6755 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6756 }
6757
6758 /* Should be unreachable. */
6759 return 1;
6760}
6761
34518530
YQ
6762/* Decode shifted register instructions. */
6763
6764static int
6765thumb2_decode_dp_shift_reg (struct gdbarch *gdbarch, uint16_t insn1,
6766 uint16_t insn2, struct regcache *regs,
cfba9872 6767 arm_displaced_step_closure *dsc)
34518530
YQ
6768{
6769 /* PC is only allowed to be used in instruction MOV. */
6770
6771 unsigned int op = bits (insn1, 5, 8);
6772 unsigned int rn = bits (insn1, 0, 3);
6773
6774 if (op == 0x2 && rn == 0xf) /* MOV */
6775 return thumb2_copy_alu_imm (gdbarch, insn1, insn2, regs, dsc);
6776 else
6777 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6778 "dp (shift reg)", dsc);
6779}
6780
6781
6782/* Decode extension register load/store. Exactly the same as
6783 arm_decode_ext_reg_ld_st. */
6784
6785static int
6786thumb2_decode_ext_reg_ld_st (struct gdbarch *gdbarch, uint16_t insn1,
6787 uint16_t insn2, struct regcache *regs,
cfba9872 6788 arm_displaced_step_closure *dsc)
34518530
YQ
6789{
6790 unsigned int opcode = bits (insn1, 4, 8);
6791
6792 switch (opcode)
6793 {
6794 case 0x04: case 0x05:
6795 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6796 "vfp/neon vmov", dsc);
6797
6798 case 0x08: case 0x0c: /* 01x00 */
6799 case 0x0a: case 0x0e: /* 01x10 */
6800 case 0x12: case 0x16: /* 10x10 */
6801 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6802 "vfp/neon vstm/vpush", dsc);
6803
6804 case 0x09: case 0x0d: /* 01x01 */
6805 case 0x0b: case 0x0f: /* 01x11 */
6806 case 0x13: case 0x17: /* 10x11 */
6807 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6808 "vfp/neon vldm/vpop", dsc);
6809
6810 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6811 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6812 "vstr", dsc);
6813 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6814 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2, regs, dsc);
6815 }
6816
6817 /* Should be unreachable. */
6818 return 1;
6819}
6820
cca44b1b 6821static int
12545665 6822arm_decode_svc_copro (struct gdbarch *gdbarch, uint32_t insn,
cfba9872 6823 struct regcache *regs, arm_displaced_step_closure *dsc)
cca44b1b
JB
6824{
6825 unsigned int op1 = bits (insn, 20, 25);
6826 int op = bit (insn, 4);
6827 unsigned int coproc = bits (insn, 8, 11);
cca44b1b
JB
6828
6829 if ((op1 & 0x20) == 0x00 && (op1 & 0x3a) != 0x00 && (coproc & 0xe) == 0xa)
7ff120b4 6830 return arm_decode_ext_reg_ld_st (gdbarch, insn, regs, dsc);
cca44b1b
JB
6831 else if ((op1 & 0x21) == 0x00 && (op1 & 0x3a) != 0x00
6832 && (coproc & 0xe) != 0xa)
6833 /* stc/stc2. */
7ff120b4 6834 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b
JB
6835 else if ((op1 & 0x21) == 0x01 && (op1 & 0x3a) != 0x00
6836 && (coproc & 0xe) != 0xa)
6837 /* ldc/ldc2 imm/lit. */
7ff120b4 6838 return arm_copy_copro_load_store (gdbarch, insn, regs, dsc);
cca44b1b 6839 else if ((op1 & 0x3e) == 0x00)
7ff120b4 6840 return arm_copy_undef (gdbarch, insn, dsc);
cca44b1b 6841 else if ((op1 & 0x3e) == 0x04 && (coproc & 0xe) == 0xa)
7ff120b4 6842 return arm_copy_unmodified (gdbarch, insn, "neon 64bit xfer", dsc);
cca44b1b 6843 else if (op1 == 0x04 && (coproc & 0xe) != 0xa)
7ff120b4 6844 return arm_copy_unmodified (gdbarch, insn, "mcrr/mcrr2", dsc);
cca44b1b 6845 else if (op1 == 0x05 && (coproc & 0xe) != 0xa)
7ff120b4 6846 return arm_copy_unmodified (gdbarch, insn, "mrrc/mrrc2", dsc);
cca44b1b
JB
6847 else if ((op1 & 0x30) == 0x20 && !op)
6848 {
6849 if ((coproc & 0xe) == 0xa)
7ff120b4 6850 return arm_copy_unmodified (gdbarch, insn, "vfp dataproc", dsc);
cca44b1b 6851 else
7ff120b4 6852 return arm_copy_unmodified (gdbarch, insn, "cdp/cdp2", dsc);
cca44b1b
JB
6853 }
6854 else if ((op1 & 0x30) == 0x20 && op)
7ff120b4 6855 return arm_copy_unmodified (gdbarch, insn, "neon 8/16/32 bit xfer", dsc);
cca44b1b 6856 else if ((op1 & 0x31) == 0x20 && op && (coproc & 0xe) != 0xa)
7ff120b4 6857 return arm_copy_unmodified (gdbarch, insn, "mcr/mcr2", dsc);
cca44b1b 6858 else if ((op1 & 0x31) == 0x21 && op && (coproc & 0xe) != 0xa)
7ff120b4 6859 return arm_copy_unmodified (gdbarch, insn, "mrc/mrc2", dsc);
cca44b1b 6860 else if ((op1 & 0x30) == 0x30)
7ff120b4 6861 return arm_copy_svc (gdbarch, insn, regs, dsc);
cca44b1b 6862 else
7ff120b4 6863 return arm_copy_undef (gdbarch, insn, dsc); /* Possibly unreachable. */
cca44b1b
JB
6864}
6865
34518530
YQ
6866static int
6867thumb2_decode_svc_copro (struct gdbarch *gdbarch, uint16_t insn1,
6868 uint16_t insn2, struct regcache *regs,
cfba9872 6869 arm_displaced_step_closure *dsc)
34518530
YQ
6870{
6871 unsigned int coproc = bits (insn2, 8, 11);
34518530
YQ
6872 unsigned int bit_5_8 = bits (insn1, 5, 8);
6873 unsigned int bit_9 = bit (insn1, 9);
6874 unsigned int bit_4 = bit (insn1, 4);
34518530
YQ
6875
6876 if (bit_9 == 0)
6877 {
6878 if (bit_5_8 == 2)
6879 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6880 "neon 64bit xfer/mrrc/mrrc2/mcrr/mcrr2",
6881 dsc);
6882 else if (bit_5_8 == 0) /* UNDEFINED. */
6883 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
6884 else
6885 {
6886 /*coproc is 101x. SIMD/VFP, ext registers load/store. */
6887 if ((coproc & 0xe) == 0xa)
6888 return thumb2_decode_ext_reg_ld_st (gdbarch, insn1, insn2, regs,
6889 dsc);
6890 else /* coproc is not 101x. */
6891 {
6892 if (bit_4 == 0) /* STC/STC2. */
6893 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
6894 "stc/stc2", dsc);
6895 else /* LDC/LDC2 {literal, immeidate}. */
6896 return thumb2_copy_copro_load_store (gdbarch, insn1, insn2,
6897 regs, dsc);
6898 }
6899 }
6900 }
6901 else
6902 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "coproc", dsc);
6903
6904 return 0;
6905}
6906
6907static void
6908install_pc_relative (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6909 arm_displaced_step_closure *dsc, int rd)
34518530
YQ
6910{
6911 /* ADR Rd, #imm
6912
6913 Rewrite as:
6914
6915 Preparation: Rd <- PC
6916 Insn: ADD Rd, #imm
6917 Cleanup: Null.
6918 */
6919
6920 /* Rd <- PC */
6921 int val = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
6922 displaced_write_reg (regs, dsc, rd, val, CANNOT_WRITE_PC);
6923}
6924
6925static int
6926thumb_copy_pc_relative_16bit (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 6927 arm_displaced_step_closure *dsc,
34518530
YQ
6928 int rd, unsigned int imm)
6929{
6930
6931 /* Encoding T2: ADDS Rd, #imm */
6932 dsc->modinsn[0] = (0x3000 | (rd << 8) | imm);
6933
6934 install_pc_relative (gdbarch, regs, dsc, rd);
6935
6936 return 0;
6937}
6938
6939static int
6940thumb_decode_pc_relative_16bit (struct gdbarch *gdbarch, uint16_t insn,
6941 struct regcache *regs,
cfba9872 6942 arm_displaced_step_closure *dsc)
34518530
YQ
6943{
6944 unsigned int rd = bits (insn, 8, 10);
6945 unsigned int imm8 = bits (insn, 0, 7);
6946
6947 if (debug_displaced)
6948 fprintf_unfiltered (gdb_stdlog,
6949 "displaced: copying thumb adr r%d, #%d insn %.4x\n",
6950 rd, imm8, insn);
6951
6952 return thumb_copy_pc_relative_16bit (gdbarch, regs, dsc, rd, imm8);
6953}
6954
6955static int
6956thumb_copy_pc_relative_32bit (struct gdbarch *gdbarch, uint16_t insn1,
6957 uint16_t insn2, struct regcache *regs,
cfba9872 6958 arm_displaced_step_closure *dsc)
34518530
YQ
6959{
6960 unsigned int rd = bits (insn2, 8, 11);
6961 /* Since immediate has the same encoding in ADR ADD and SUB, so we simply
6962 extract raw immediate encoding rather than computing immediate. When
6963 generating ADD or SUB instruction, we can simply perform OR operation to
6964 set immediate into ADD. */
6965 unsigned int imm_3_8 = insn2 & 0x70ff;
6966 unsigned int imm_i = insn1 & 0x0400; /* Clear all bits except bit 10. */
6967
6968 if (debug_displaced)
6969 fprintf_unfiltered (gdb_stdlog,
6970 "displaced: copying thumb adr r%d, #%d:%d insn %.4x%.4x\n",
6971 rd, imm_i, imm_3_8, insn1, insn2);
6972
6973 if (bit (insn1, 7)) /* Encoding T2 */
6974 {
6975 /* Encoding T3: SUB Rd, Rd, #imm */
6976 dsc->modinsn[0] = (0xf1a0 | rd | imm_i);
6977 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
6978 }
6979 else /* Encoding T3 */
6980 {
6981 /* Encoding T3: ADD Rd, Rd, #imm */
6982 dsc->modinsn[0] = (0xf100 | rd | imm_i);
6983 dsc->modinsn[1] = ((rd << 8) | imm_3_8);
6984 }
6985 dsc->numinsns = 2;
6986
6987 install_pc_relative (gdbarch, regs, dsc, rd);
6988
6989 return 0;
6990}
6991
6992static int
615234c1 6993thumb_copy_16bit_ldr_literal (struct gdbarch *gdbarch, uint16_t insn1,
34518530 6994 struct regcache *regs,
cfba9872 6995 arm_displaced_step_closure *dsc)
34518530
YQ
6996{
6997 unsigned int rt = bits (insn1, 8, 10);
6998 unsigned int pc;
6999 int imm8 = (bits (insn1, 0, 7) << 2);
34518530
YQ
7000
7001 /* LDR Rd, #imm8
7002
7003 Rwrite as:
7004
7005 Preparation: tmp0 <- R0, tmp2 <- R2, tmp3 <- R3, R2 <- PC, R3 <- #imm8;
7006
7007 Insn: LDR R0, [R2, R3];
7008 Cleanup: R2 <- tmp2, R3 <- tmp3, Rd <- R0, R0 <- tmp0 */
7009
7010 if (debug_displaced)
7011 fprintf_unfiltered (gdb_stdlog,
7012 "displaced: copying thumb ldr r%d [pc #%d]\n"
7013 , rt, imm8);
7014
7015 dsc->tmp[0] = displaced_read_reg (regs, dsc, 0);
7016 dsc->tmp[2] = displaced_read_reg (regs, dsc, 2);
7017 dsc->tmp[3] = displaced_read_reg (regs, dsc, 3);
7018 pc = displaced_read_reg (regs, dsc, ARM_PC_REGNUM);
7019 /* The assembler calculates the required value of the offset from the
7020 Align(PC,4) value of this instruction to the label. */
7021 pc = pc & 0xfffffffc;
7022
7023 displaced_write_reg (regs, dsc, 2, pc, CANNOT_WRITE_PC);
7024 displaced_write_reg (regs, dsc, 3, imm8, CANNOT_WRITE_PC);
7025
7026 dsc->rd = rt;
7027 dsc->u.ldst.xfersize = 4;
7028 dsc->u.ldst.rn = 0;
7029 dsc->u.ldst.immed = 0;
7030 dsc->u.ldst.writeback = 0;
7031 dsc->u.ldst.restore_r4 = 0;
7032
7033 dsc->modinsn[0] = 0x58d0; /* ldr r0, [r2, r3]*/
7034
7035 dsc->cleanup = &cleanup_load;
7036
7037 return 0;
7038}
7039
7040/* Copy Thumb cbnz/cbz insruction. */
7041
7042static int
7043thumb_copy_cbnz_cbz (struct gdbarch *gdbarch, uint16_t insn1,
7044 struct regcache *regs,
cfba9872 7045 arm_displaced_step_closure *dsc)
34518530
YQ
7046{
7047 int non_zero = bit (insn1, 11);
7048 unsigned int imm5 = (bit (insn1, 9) << 6) | (bits (insn1, 3, 7) << 1);
7049 CORE_ADDR from = dsc->insn_addr;
7050 int rn = bits (insn1, 0, 2);
7051 int rn_val = displaced_read_reg (regs, dsc, rn);
7052
7053 dsc->u.branch.cond = (rn_val && non_zero) || (!rn_val && !non_zero);
7054 /* CBNZ and CBZ do not affect the condition flags. If condition is true,
7055 set it INST_AL, so cleanup_branch will know branch is taken, otherwise,
7056 condition is false, let it be, cleanup_branch will do nothing. */
7057 if (dsc->u.branch.cond)
7058 {
7059 dsc->u.branch.cond = INST_AL;
7060 dsc->u.branch.dest = from + 4 + imm5;
7061 }
7062 else
7063 dsc->u.branch.dest = from + 2;
7064
7065 dsc->u.branch.link = 0;
7066 dsc->u.branch.exchange = 0;
7067
7068 if (debug_displaced)
7069 fprintf_unfiltered (gdb_stdlog, "displaced: copying %s [r%d = 0x%x]"
7070 " insn %.4x to %.8lx\n", non_zero ? "cbnz" : "cbz",
7071 rn, rn_val, insn1, dsc->u.branch.dest);
7072
7073 dsc->modinsn[0] = THUMB_NOP;
7074
7075 dsc->cleanup = &cleanup_branch;
7076 return 0;
7077}
7078
7079/* Copy Table Branch Byte/Halfword */
7080static int
7081thumb2_copy_table_branch (struct gdbarch *gdbarch, uint16_t insn1,
7082 uint16_t insn2, struct regcache *regs,
cfba9872 7083 arm_displaced_step_closure *dsc)
34518530
YQ
7084{
7085 ULONGEST rn_val, rm_val;
7086 int is_tbh = bit (insn2, 4);
7087 CORE_ADDR halfwords = 0;
7088 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7089
7090 rn_val = displaced_read_reg (regs, dsc, bits (insn1, 0, 3));
7091 rm_val = displaced_read_reg (regs, dsc, bits (insn2, 0, 3));
7092
7093 if (is_tbh)
7094 {
7095 gdb_byte buf[2];
7096
7097 target_read_memory (rn_val + 2 * rm_val, buf, 2);
7098 halfwords = extract_unsigned_integer (buf, 2, byte_order);
7099 }
7100 else
7101 {
7102 gdb_byte buf[1];
7103
7104 target_read_memory (rn_val + rm_val, buf, 1);
7105 halfwords = extract_unsigned_integer (buf, 1, byte_order);
7106 }
7107
7108 if (debug_displaced)
7109 fprintf_unfiltered (gdb_stdlog, "displaced: %s base 0x%x offset 0x%x"
7110 " offset 0x%x\n", is_tbh ? "tbh" : "tbb",
7111 (unsigned int) rn_val, (unsigned int) rm_val,
7112 (unsigned int) halfwords);
7113
7114 dsc->u.branch.cond = INST_AL;
7115 dsc->u.branch.link = 0;
7116 dsc->u.branch.exchange = 0;
7117 dsc->u.branch.dest = dsc->insn_addr + 4 + 2 * halfwords;
7118
7119 dsc->cleanup = &cleanup_branch;
7120
7121 return 0;
7122}
7123
7124static void
7125cleanup_pop_pc_16bit_all (struct gdbarch *gdbarch, struct regcache *regs,
cfba9872 7126 arm_displaced_step_closure *dsc)
34518530
YQ
7127{
7128 /* PC <- r7 */
7129 int val = displaced_read_reg (regs, dsc, 7);
7130 displaced_write_reg (regs, dsc, ARM_PC_REGNUM, val, BX_WRITE_PC);
7131
7132 /* r7 <- r8 */
7133 val = displaced_read_reg (regs, dsc, 8);
7134 displaced_write_reg (regs, dsc, 7, val, CANNOT_WRITE_PC);
7135
7136 /* r8 <- tmp[0] */
7137 displaced_write_reg (regs, dsc, 8, dsc->tmp[0], CANNOT_WRITE_PC);
7138
7139}
7140
7141static int
615234c1 7142thumb_copy_pop_pc_16bit (struct gdbarch *gdbarch, uint16_t insn1,
34518530 7143 struct regcache *regs,
cfba9872 7144 arm_displaced_step_closure *dsc)
34518530
YQ
7145{
7146 dsc->u.block.regmask = insn1 & 0x00ff;
7147
7148 /* Rewrite instruction: POP {rX, rY, ...,rZ, PC}
7149 to :
7150
7151 (1) register list is full, that is, r0-r7 are used.
7152 Prepare: tmp[0] <- r8
7153
7154 POP {r0, r1, ...., r6, r7}; remove PC from reglist
7155 MOV r8, r7; Move value of r7 to r8;
7156 POP {r7}; Store PC value into r7.
7157
7158 Cleanup: PC <- r7, r7 <- r8, r8 <-tmp[0]
7159
7160 (2) register list is not full, supposing there are N registers in
7161 register list (except PC, 0 <= N <= 7).
7162 Prepare: for each i, 0 - N, tmp[i] <- ri.
7163
7164 POP {r0, r1, ...., rN};
7165
7166 Cleanup: Set registers in original reglist from r0 - rN. Restore r0 - rN
7167 from tmp[] properly.
7168 */
7169 if (debug_displaced)
7170 fprintf_unfiltered (gdb_stdlog,
7171 "displaced: copying thumb pop {%.8x, pc} insn %.4x\n",
7172 dsc->u.block.regmask, insn1);
7173
7174 if (dsc->u.block.regmask == 0xff)
7175 {
7176 dsc->tmp[0] = displaced_read_reg (regs, dsc, 8);
7177
7178 dsc->modinsn[0] = (insn1 & 0xfeff); /* POP {r0,r1,...,r6, r7} */
7179 dsc->modinsn[1] = 0x46b8; /* MOV r8, r7 */
7180 dsc->modinsn[2] = 0xbc80; /* POP {r7} */
7181
7182 dsc->numinsns = 3;
7183 dsc->cleanup = &cleanup_pop_pc_16bit_all;
7184 }
7185 else
7186 {
7187 unsigned int num_in_list = bitcount (dsc->u.block.regmask);
bec2ab5a
SM
7188 unsigned int i;
7189 unsigned int new_regmask;
34518530
YQ
7190
7191 for (i = 0; i < num_in_list + 1; i++)
7192 dsc->tmp[i] = displaced_read_reg (regs, dsc, i);
7193
7194 new_regmask = (1 << (num_in_list + 1)) - 1;
7195
7196 if (debug_displaced)
7197 fprintf_unfiltered (gdb_stdlog, _("displaced: POP "
7198 "{..., pc}: original reg list %.4x,"
7199 " modified list %.4x\n"),
7200 (int) dsc->u.block.regmask, new_regmask);
7201
7202 dsc->u.block.regmask |= 0x8000;
7203 dsc->u.block.writeback = 0;
7204 dsc->u.block.cond = INST_AL;
7205
7206 dsc->modinsn[0] = (insn1 & ~0x1ff) | (new_regmask & 0xff);
7207
7208 dsc->cleanup = &cleanup_block_load_pc;
7209 }
7210
7211 return 0;
7212}
7213
7214static void
7215thumb_process_displaced_16bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
7216 struct regcache *regs,
cfba9872 7217 arm_displaced_step_closure *dsc)
34518530
YQ
7218{
7219 unsigned short op_bit_12_15 = bits (insn1, 12, 15);
7220 unsigned short op_bit_10_11 = bits (insn1, 10, 11);
7221 int err = 0;
7222
7223 /* 16-bit thumb instructions. */
7224 switch (op_bit_12_15)
7225 {
7226 /* Shift (imme), add, subtract, move and compare. */
7227 case 0: case 1: case 2: case 3:
7228 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
7229 "shift/add/sub/mov/cmp",
7230 dsc);
7231 break;
7232 case 4:
7233 switch (op_bit_10_11)
7234 {
7235 case 0: /* Data-processing */
7236 err = thumb_copy_unmodified_16bit (gdbarch, insn1,
7237 "data-processing",
7238 dsc);
7239 break;
7240 case 1: /* Special data instructions and branch and exchange. */
7241 {
7242 unsigned short op = bits (insn1, 7, 9);
7243 if (op == 6 || op == 7) /* BX or BLX */
7244 err = thumb_copy_bx_blx_reg (gdbarch, insn1, regs, dsc);
7245 else if (bits (insn1, 6, 7) != 0) /* ADD/MOV/CMP high registers. */
7246 err = thumb_copy_alu_reg (gdbarch, insn1, regs, dsc);
7247 else
7248 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "special data",
7249 dsc);
7250 }
7251 break;
7252 default: /* LDR (literal) */
7253 err = thumb_copy_16bit_ldr_literal (gdbarch, insn1, regs, dsc);
7254 }
7255 break;
7256 case 5: case 6: case 7: case 8: case 9: /* Load/Store single data item */
7257 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldr/str", dsc);
7258 break;
7259 case 10:
7260 if (op_bit_10_11 < 2) /* Generate PC-relative address */
7261 err = thumb_decode_pc_relative_16bit (gdbarch, insn1, regs, dsc);
7262 else /* Generate SP-relative address */
7263 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "sp-relative", dsc);
7264 break;
7265 case 11: /* Misc 16-bit instructions */
7266 {
7267 switch (bits (insn1, 8, 11))
7268 {
7269 case 1: case 3: case 9: case 11: /* CBNZ, CBZ */
7270 err = thumb_copy_cbnz_cbz (gdbarch, insn1, regs, dsc);
7271 break;
7272 case 12: case 13: /* POP */
7273 if (bit (insn1, 8)) /* PC is in register list. */
7274 err = thumb_copy_pop_pc_16bit (gdbarch, insn1, regs, dsc);
7275 else
7276 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "pop", dsc);
7277 break;
7278 case 15: /* If-Then, and hints */
7279 if (bits (insn1, 0, 3))
7280 /* If-Then makes up to four following instructions conditional.
7281 IT instruction itself is not conditional, so handle it as a
7282 common unmodified instruction. */
7283 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "If-Then",
7284 dsc);
7285 else
7286 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "hints", dsc);
7287 break;
7288 default:
7289 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "misc", dsc);
7290 }
7291 }
7292 break;
7293 case 12:
7294 if (op_bit_10_11 < 2) /* Store multiple registers */
7295 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "stm", dsc);
7296 else /* Load multiple registers */
7297 err = thumb_copy_unmodified_16bit (gdbarch, insn1, "ldm", dsc);
7298 break;
7299 case 13: /* Conditional branch and supervisor call */
7300 if (bits (insn1, 9, 11) != 7) /* conditional branch */
7301 err = thumb_copy_b (gdbarch, insn1, dsc);
7302 else
7303 err = thumb_copy_svc (gdbarch, insn1, regs, dsc);
7304 break;
7305 case 14: /* Unconditional branch */
7306 err = thumb_copy_b (gdbarch, insn1, dsc);
7307 break;
7308 default:
7309 err = 1;
7310 }
7311
7312 if (err)
7313 internal_error (__FILE__, __LINE__,
7314 _("thumb_process_displaced_16bit_insn: Instruction decode error"));
7315}
7316
7317static int
7318decode_thumb_32bit_ld_mem_hints (struct gdbarch *gdbarch,
7319 uint16_t insn1, uint16_t insn2,
7320 struct regcache *regs,
cfba9872 7321 arm_displaced_step_closure *dsc)
34518530
YQ
7322{
7323 int rt = bits (insn2, 12, 15);
7324 int rn = bits (insn1, 0, 3);
7325 int op1 = bits (insn1, 7, 8);
34518530
YQ
7326
7327 switch (bits (insn1, 5, 6))
7328 {
7329 case 0: /* Load byte and memory hints */
7330 if (rt == 0xf) /* PLD/PLI */
7331 {
7332 if (rn == 0xf)
7333 /* PLD literal or Encoding T3 of PLI(immediate, literal). */
7334 return thumb2_copy_preload (gdbarch, insn1, insn2, regs, dsc);
7335 else
7336 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7337 "pli/pld", dsc);
7338 }
7339 else
7340 {
7341 if (rn == 0xf) /* LDRB/LDRSB (literal) */
7342 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
7343 1);
7344 else
7345 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7346 "ldrb{reg, immediate}/ldrbt",
7347 dsc);
7348 }
7349
7350 break;
7351 case 1: /* Load halfword and memory hints. */
7352 if (rt == 0xf) /* PLD{W} and Unalloc memory hint. */
7353 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7354 "pld/unalloc memhint", dsc);
7355 else
7356 {
7357 if (rn == 0xf)
7358 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc,
7359 2);
7360 else
7361 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7362 "ldrh/ldrht", dsc);
7363 }
7364 break;
7365 case 2: /* Load word */
7366 {
7367 int insn2_bit_8_11 = bits (insn2, 8, 11);
7368
7369 if (rn == 0xf)
7370 return thumb2_copy_load_literal (gdbarch, insn1, insn2, regs, dsc, 4);
7371 else if (op1 == 0x1) /* Encoding T3 */
7372 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs, dsc,
7373 0, 1);
7374 else /* op1 == 0x0 */
7375 {
7376 if (insn2_bit_8_11 == 0xc || (insn2_bit_8_11 & 0x9) == 0x9)
7377 /* LDR (immediate) */
7378 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
7379 dsc, bit (insn2, 8), 1);
7380 else if (insn2_bit_8_11 == 0xe) /* LDRT */
7381 return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7382 "ldrt", dsc);
7383 else
7384 /* LDR (register) */
7385 return thumb2_copy_load_reg_imm (gdbarch, insn1, insn2, regs,
7386 dsc, 0, 0);
7387 }
7388 break;
7389 }
7390 default:
7391 return thumb_32bit_copy_undef (gdbarch, insn1, insn2, dsc);
7392 break;
7393 }
7394 return 0;
7395}
7396
7397static void
7398thumb_process_displaced_32bit_insn (struct gdbarch *gdbarch, uint16_t insn1,
7399 uint16_t insn2, struct regcache *regs,
cfba9872 7400 arm_displaced_step_closure *dsc)
34518530
YQ
7401{
7402 int err = 0;
7403 unsigned short op = bit (insn2, 15);
7404 unsigned int op1 = bits (insn1, 11, 12);
7405
7406 switch (op1)
7407 {
7408 case 1:
7409 {
7410 switch (bits (insn1, 9, 10))
7411 {
7412 case 0:
7413 if (bit (insn1, 6))
7414 {
7415 /* Load/store {dual, execlusive}, table branch. */
7416 if (bits (insn1, 7, 8) == 1 && bits (insn1, 4, 5) == 1
7417 && bits (insn2, 5, 7) == 0)
7418 err = thumb2_copy_table_branch (gdbarch, insn1, insn2, regs,
7419 dsc);
7420 else
7421 /* PC is not allowed to use in load/store {dual, exclusive}
7422 instructions. */
7423 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7424 "load/store dual/ex", dsc);
7425 }
7426 else /* load/store multiple */
7427 {
7428 switch (bits (insn1, 7, 8))
7429 {
7430 case 0: case 3: /* SRS, RFE */
7431 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7432 "srs/rfe", dsc);
7433 break;
7434 case 1: case 2: /* LDM/STM/PUSH/POP */
7435 err = thumb2_copy_block_xfer (gdbarch, insn1, insn2, regs, dsc);
7436 break;
7437 }
7438 }
7439 break;
7440
7441 case 1:
7442 /* Data-processing (shift register). */
7443 err = thumb2_decode_dp_shift_reg (gdbarch, insn1, insn2, regs,
7444 dsc);
7445 break;
7446 default: /* Coprocessor instructions. */
7447 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
7448 break;
7449 }
7450 break;
7451 }
7452 case 2: /* op1 = 2 */
7453 if (op) /* Branch and misc control. */
7454 {
7455 if (bit (insn2, 14) /* BLX/BL */
7456 || bit (insn2, 12) /* Unconditional branch */
7457 || (bits (insn1, 7, 9) != 0x7)) /* Conditional branch */
7458 err = thumb2_copy_b_bl_blx (gdbarch, insn1, insn2, regs, dsc);
7459 else
7460 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7461 "misc ctrl", dsc);
7462 }
7463 else
7464 {
7465 if (bit (insn1, 9)) /* Data processing (plain binary imm). */
7466 {
b926417a 7467 int dp_op = bits (insn1, 4, 8);
34518530 7468 int rn = bits (insn1, 0, 3);
b926417a 7469 if ((dp_op == 0 || dp_op == 0xa) && rn == 0xf)
34518530
YQ
7470 err = thumb_copy_pc_relative_32bit (gdbarch, insn1, insn2,
7471 regs, dsc);
7472 else
7473 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7474 "dp/pb", dsc);
7475 }
7476 else /* Data processing (modified immeidate) */
7477 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7478 "dp/mi", dsc);
7479 }
7480 break;
7481 case 3: /* op1 = 3 */
7482 switch (bits (insn1, 9, 10))
7483 {
7484 case 0:
7485 if (bit (insn1, 4))
7486 err = decode_thumb_32bit_ld_mem_hints (gdbarch, insn1, insn2,
7487 regs, dsc);
7488 else /* NEON Load/Store and Store single data item */
7489 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7490 "neon elt/struct load/store",
7491 dsc);
7492 break;
7493 case 1: /* op1 = 3, bits (9, 10) == 1 */
7494 switch (bits (insn1, 7, 8))
7495 {
7496 case 0: case 1: /* Data processing (register) */
7497 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7498 "dp(reg)", dsc);
7499 break;
7500 case 2: /* Multiply and absolute difference */
7501 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7502 "mul/mua/diff", dsc);
7503 break;
7504 case 3: /* Long multiply and divide */
7505 err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2,
7506 "lmul/lmua", dsc);
7507 break;
7508 }
7509 break;
7510 default: /* Coprocessor instructions */
7511 err = thumb2_decode_svc_copro (gdbarch, insn1, insn2, regs, dsc);
7512 break;
7513 }
7514 break;
7515 default:
7516 err = 1;
7517 }
7518
7519 if (err)
7520 internal_error (__FILE__, __LINE__,
7521 _("thumb_process_displaced_32bit_insn: Instruction decode error"));
7522
7523}
7524
b434a28f
YQ
7525static void
7526thumb_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
12545665 7527 struct regcache *regs,
cfba9872 7528 arm_displaced_step_closure *dsc)
b434a28f 7529{
34518530
YQ
7530 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
7531 uint16_t insn1
7532 = read_memory_unsigned_integer (from, 2, byte_order_for_code);
7533
7534 if (debug_displaced)
7535 fprintf_unfiltered (gdb_stdlog, "displaced: process thumb insn %.4x "
7536 "at %.8lx\n", insn1, (unsigned long) from);
7537
7538 dsc->is_thumb = 1;
7539 dsc->insn_size = thumb_insn_size (insn1);
7540 if (thumb_insn_size (insn1) == 4)
7541 {
7542 uint16_t insn2
7543 = read_memory_unsigned_integer (from + 2, 2, byte_order_for_code);
7544 thumb_process_displaced_32bit_insn (gdbarch, insn1, insn2, regs, dsc);
7545 }
7546 else
7547 thumb_process_displaced_16bit_insn (gdbarch, insn1, regs, dsc);
b434a28f
YQ
7548}
7549
cca44b1b 7550void
b434a28f
YQ
7551arm_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
7552 CORE_ADDR to, struct regcache *regs,
cfba9872 7553 arm_displaced_step_closure *dsc)
cca44b1b
JB
7554{
7555 int err = 0;
b434a28f
YQ
7556 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
7557 uint32_t insn;
cca44b1b
JB
7558
7559 /* Most displaced instructions use a 1-instruction scratch space, so set this
7560 here and override below if/when necessary. */
7561 dsc->numinsns = 1;
7562 dsc->insn_addr = from;
7563 dsc->scratch_base = to;
7564 dsc->cleanup = NULL;
7565 dsc->wrote_to_pc = 0;
7566
b434a28f 7567 if (!displaced_in_arm_mode (regs))
12545665 7568 return thumb_process_displaced_insn (gdbarch, from, regs, dsc);
b434a28f 7569
4db71c0b
YQ
7570 dsc->is_thumb = 0;
7571 dsc->insn_size = 4;
b434a28f
YQ
7572 insn = read_memory_unsigned_integer (from, 4, byte_order_for_code);
7573 if (debug_displaced)
7574 fprintf_unfiltered (gdb_stdlog, "displaced: stepping insn %.8lx "
7575 "at %.8lx\n", (unsigned long) insn,
7576 (unsigned long) from);
7577
cca44b1b 7578 if ((insn & 0xf0000000) == 0xf0000000)
7ff120b4 7579 err = arm_decode_unconditional (gdbarch, insn, regs, dsc);
cca44b1b
JB
7580 else switch (((insn & 0x10) >> 4) | ((insn & 0xe000000) >> 24))
7581 {
7582 case 0x0: case 0x1: case 0x2: case 0x3:
7ff120b4 7583 err = arm_decode_dp_misc (gdbarch, insn, regs, dsc);
cca44b1b
JB
7584 break;
7585
7586 case 0x4: case 0x5: case 0x6:
7ff120b4 7587 err = arm_decode_ld_st_word_ubyte (gdbarch, insn, regs, dsc);
cca44b1b
JB
7588 break;
7589
7590 case 0x7:
7ff120b4 7591 err = arm_decode_media (gdbarch, insn, dsc);
cca44b1b
JB
7592 break;
7593
7594 case 0x8: case 0x9: case 0xa: case 0xb:
7ff120b4 7595 err = arm_decode_b_bl_ldmstm (gdbarch, insn, regs, dsc);
cca44b1b
JB
7596 break;
7597
7598 case 0xc: case 0xd: case 0xe: case 0xf:
12545665 7599 err = arm_decode_svc_copro (gdbarch, insn, regs, dsc);
cca44b1b
JB
7600 break;
7601 }
7602
7603 if (err)
7604 internal_error (__FILE__, __LINE__,
7605 _("arm_process_displaced_insn: Instruction decode error"));
7606}
7607
7608/* Actually set up the scratch space for a displaced instruction. */
7609
7610void
7611arm_displaced_init_closure (struct gdbarch *gdbarch, CORE_ADDR from,
cfba9872 7612 CORE_ADDR to, arm_displaced_step_closure *dsc)
cca44b1b
JB
7613{
7614 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
4db71c0b 7615 unsigned int i, len, offset;
cca44b1b 7616 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
4db71c0b 7617 int size = dsc->is_thumb? 2 : 4;
948f8e3d 7618 const gdb_byte *bkp_insn;
cca44b1b 7619
4db71c0b 7620 offset = 0;
cca44b1b
JB
7621 /* Poke modified instruction(s). */
7622 for (i = 0; i < dsc->numinsns; i++)
7623 {
7624 if (debug_displaced)
4db71c0b
YQ
7625 {
7626 fprintf_unfiltered (gdb_stdlog, "displaced: writing insn ");
7627 if (size == 4)
7628 fprintf_unfiltered (gdb_stdlog, "%.8lx",
7629 dsc->modinsn[i]);
7630 else if (size == 2)
7631 fprintf_unfiltered (gdb_stdlog, "%.4x",
7632 (unsigned short)dsc->modinsn[i]);
7633
7634 fprintf_unfiltered (gdb_stdlog, " at %.8lx\n",
7635 (unsigned long) to + offset);
7636
7637 }
7638 write_memory_unsigned_integer (to + offset, size,
7639 byte_order_for_code,
cca44b1b 7640 dsc->modinsn[i]);
4db71c0b
YQ
7641 offset += size;
7642 }
7643
7644 /* Choose the correct breakpoint instruction. */
7645 if (dsc->is_thumb)
7646 {
7647 bkp_insn = tdep->thumb_breakpoint;
7648 len = tdep->thumb_breakpoint_size;
7649 }
7650 else
7651 {
7652 bkp_insn = tdep->arm_breakpoint;
7653 len = tdep->arm_breakpoint_size;
cca44b1b
JB
7654 }
7655
7656 /* Put breakpoint afterwards. */
4db71c0b 7657 write_memory (to + offset, bkp_insn, len);
cca44b1b
JB
7658
7659 if (debug_displaced)
7660 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
7661 paddress (gdbarch, from), paddress (gdbarch, to));
7662}
7663
cca44b1b
JB
7664/* Entry point for cleaning things up after a displaced instruction has been
7665 single-stepped. */
7666
7667void
7668arm_displaced_step_fixup (struct gdbarch *gdbarch,
cfba9872 7669 struct displaced_step_closure *dsc_,
cca44b1b
JB
7670 CORE_ADDR from, CORE_ADDR to,
7671 struct regcache *regs)
7672{
cfba9872
SM
7673 arm_displaced_step_closure *dsc = (arm_displaced_step_closure *) dsc_;
7674
cca44b1b
JB
7675 if (dsc->cleanup)
7676 dsc->cleanup (gdbarch, regs, dsc);
7677
7678 if (!dsc->wrote_to_pc)
4db71c0b
YQ
7679 regcache_cooked_write_unsigned (regs, ARM_PC_REGNUM,
7680 dsc->insn_addr + dsc->insn_size);
7681
cca44b1b
JB
7682}
7683
7684#include "bfd-in2.h"
7685#include "libcoff.h"
7686
7687static int
7688gdb_print_insn_arm (bfd_vma memaddr, disassemble_info *info)
7689{
e47ad6c0
YQ
7690 gdb_disassembler *di
7691 = static_cast<gdb_disassembler *>(info->application_data);
7692 struct gdbarch *gdbarch = di->arch ();
9779414d
DJ
7693
7694 if (arm_pc_is_thumb (gdbarch, memaddr))
cca44b1b
JB
7695 {
7696 static asymbol *asym;
7697 static combined_entry_type ce;
7698 static struct coff_symbol_struct csym;
7699 static struct bfd fake_bfd;
7700 static bfd_target fake_target;
7701
7702 if (csym.native == NULL)
7703 {
7704 /* Create a fake symbol vector containing a Thumb symbol.
7705 This is solely so that the code in print_insn_little_arm()
7706 and print_insn_big_arm() in opcodes/arm-dis.c will detect
7707 the presence of a Thumb symbol and switch to decoding
7708 Thumb instructions. */
7709
7710 fake_target.flavour = bfd_target_coff_flavour;
7711 fake_bfd.xvec = &fake_target;
7712 ce.u.syment.n_sclass = C_THUMBEXTFUNC;
7713 csym.native = &ce;
7714 csym.symbol.the_bfd = &fake_bfd;
7715 csym.symbol.name = "fake";
7716 asym = (asymbol *) & csym;
7717 }
7718
7719 memaddr = UNMAKE_THUMB_ADDR (memaddr);
7720 info->symbols = &asym;
7721 }
7722 else
7723 info->symbols = NULL;
7724
e60eb288
YQ
7725 /* GDB is able to get bfd_mach from the exe_bfd, info->mach is
7726 accurate, so mark USER_SPECIFIED_MACHINE_TYPE bit. Otherwise,
7727 opcodes/arm-dis.c:print_insn reset info->mach, and it will trigger
7728 the assert on the mismatch of info->mach and bfd_get_mach (exec_bfd)
7729 in default_print_insn. */
7730 if (exec_bfd != NULL)
7731 info->flags |= USER_SPECIFIED_MACHINE_TYPE;
7732
6394c606 7733 return default_print_insn (memaddr, info);
cca44b1b
JB
7734}
7735
7736/* The following define instruction sequences that will cause ARM
7737 cpu's to take an undefined instruction trap. These are used to
7738 signal a breakpoint to GDB.
7739
7740 The newer ARMv4T cpu's are capable of operating in ARM or Thumb
7741 modes. A different instruction is required for each mode. The ARM
7742 cpu's can also be big or little endian. Thus four different
7743 instructions are needed to support all cases.
7744
7745 Note: ARMv4 defines several new instructions that will take the
7746 undefined instruction trap. ARM7TDMI is nominally ARMv4T, but does
7747 not in fact add the new instructions. The new undefined
7748 instructions in ARMv4 are all instructions that had no defined
7749 behaviour in earlier chips. There is no guarantee that they will
7750 raise an exception, but may be treated as NOP's. In practice, it
7751 may only safe to rely on instructions matching:
7752
7753 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
7754 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
7755 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
7756
0963b4bd 7757 Even this may only true if the condition predicate is true. The
cca44b1b
JB
7758 following use a condition predicate of ALWAYS so it is always TRUE.
7759
7760 There are other ways of forcing a breakpoint. GNU/Linux, RISC iX,
7761 and NetBSD all use a software interrupt rather than an undefined
7762 instruction to force a trap. This can be handled by by the
7763 abi-specific code during establishment of the gdbarch vector. */
7764
7765#define ARM_LE_BREAKPOINT {0xFE,0xDE,0xFF,0xE7}
7766#define ARM_BE_BREAKPOINT {0xE7,0xFF,0xDE,0xFE}
7767#define THUMB_LE_BREAKPOINT {0xbe,0xbe}
7768#define THUMB_BE_BREAKPOINT {0xbe,0xbe}
7769
948f8e3d
PA
7770static const gdb_byte arm_default_arm_le_breakpoint[] = ARM_LE_BREAKPOINT;
7771static const gdb_byte arm_default_arm_be_breakpoint[] = ARM_BE_BREAKPOINT;
7772static const gdb_byte arm_default_thumb_le_breakpoint[] = THUMB_LE_BREAKPOINT;
7773static const gdb_byte arm_default_thumb_be_breakpoint[] = THUMB_BE_BREAKPOINT;
cca44b1b 7774
cd6c3b4f
YQ
7775/* Implement the breakpoint_kind_from_pc gdbarch method. */
7776
d19280ad
YQ
7777static int
7778arm_breakpoint_kind_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr)
cca44b1b
JB
7779{
7780 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
177321bd 7781 enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch);
cca44b1b 7782
9779414d 7783 if (arm_pc_is_thumb (gdbarch, *pcptr))
cca44b1b
JB
7784 {
7785 *pcptr = UNMAKE_THUMB_ADDR (*pcptr);
177321bd
DJ
7786
7787 /* If we have a separate 32-bit breakpoint instruction for Thumb-2,
7788 check whether we are replacing a 32-bit instruction. */
7789 if (tdep->thumb2_breakpoint != NULL)
7790 {
7791 gdb_byte buf[2];
d19280ad 7792
177321bd
DJ
7793 if (target_read_memory (*pcptr, buf, 2) == 0)
7794 {
7795 unsigned short inst1;
d19280ad 7796
177321bd 7797 inst1 = extract_unsigned_integer (buf, 2, byte_order_for_code);
db24da6d 7798 if (thumb_insn_size (inst1) == 4)
d19280ad 7799 return ARM_BP_KIND_THUMB2;
177321bd
DJ
7800 }
7801 }
7802
d19280ad 7803 return ARM_BP_KIND_THUMB;
cca44b1b
JB
7804 }
7805 else
d19280ad
YQ
7806 return ARM_BP_KIND_ARM;
7807
7808}
7809
cd6c3b4f
YQ
7810/* Implement the sw_breakpoint_from_kind gdbarch method. */
7811
d19280ad
YQ
7812static const gdb_byte *
7813arm_sw_breakpoint_from_kind (struct gdbarch *gdbarch, int kind, int *size)
7814{
7815 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
7816
7817 switch (kind)
cca44b1b 7818 {
d19280ad
YQ
7819 case ARM_BP_KIND_ARM:
7820 *size = tdep->arm_breakpoint_size;
cca44b1b 7821 return tdep->arm_breakpoint;
d19280ad
YQ
7822 case ARM_BP_KIND_THUMB:
7823 *size = tdep->thumb_breakpoint_size;
7824 return tdep->thumb_breakpoint;
7825 case ARM_BP_KIND_THUMB2:
7826 *size = tdep->thumb2_breakpoint_size;
7827 return tdep->thumb2_breakpoint;
7828 default:
7829 gdb_assert_not_reached ("unexpected arm breakpoint kind");
cca44b1b
JB
7830 }
7831}
7832
833b7ab5
YQ
7833/* Implement the breakpoint_kind_from_current_state gdbarch method. */
7834
7835static int
7836arm_breakpoint_kind_from_current_state (struct gdbarch *gdbarch,
7837 struct regcache *regcache,
7838 CORE_ADDR *pcptr)
7839{
7840 gdb_byte buf[4];
7841
7842 /* Check the memory pointed by PC is readable. */
7843 if (target_read_memory (regcache_read_pc (regcache), buf, 4) == 0)
7844 {
7845 struct arm_get_next_pcs next_pcs_ctx;
833b7ab5
YQ
7846
7847 arm_get_next_pcs_ctor (&next_pcs_ctx,
7848 &arm_get_next_pcs_ops,
7849 gdbarch_byte_order (gdbarch),
7850 gdbarch_byte_order_for_code (gdbarch),
7851 0,
7852 regcache);
7853
a0ff9e1a 7854 std::vector<CORE_ADDR> next_pcs = arm_get_next_pcs (&next_pcs_ctx);
833b7ab5
YQ
7855
7856 /* If MEMADDR is the next instruction of current pc, do the
7857 software single step computation, and get the thumb mode by
7858 the destination address. */
a0ff9e1a 7859 for (CORE_ADDR pc : next_pcs)
833b7ab5
YQ
7860 {
7861 if (UNMAKE_THUMB_ADDR (pc) == *pcptr)
7862 {
833b7ab5
YQ
7863 if (IS_THUMB_ADDR (pc))
7864 {
7865 *pcptr = MAKE_THUMB_ADDR (*pcptr);
7866 return arm_breakpoint_kind_from_pc (gdbarch, pcptr);
7867 }
7868 else
7869 return ARM_BP_KIND_ARM;
7870 }
7871 }
833b7ab5
YQ
7872 }
7873
7874 return arm_breakpoint_kind_from_pc (gdbarch, pcptr);
7875}
7876
cca44b1b
JB
7877/* Extract from an array REGBUF containing the (raw) register state a
7878 function return value of type TYPE, and copy that, in virtual
7879 format, into VALBUF. */
7880
7881static void
7882arm_extract_return_value (struct type *type, struct regcache *regs,
7883 gdb_byte *valbuf)
7884{
ac7936df 7885 struct gdbarch *gdbarch = regs->arch ();
cca44b1b
JB
7886 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7887
7888 if (TYPE_CODE_FLT == TYPE_CODE (type))
7889 {
7890 switch (gdbarch_tdep (gdbarch)->fp_model)
7891 {
7892 case ARM_FLOAT_FPA:
7893 {
7894 /* The value is in register F0 in internal format. We need to
7895 extract the raw value and then convert it to the desired
7896 internal type. */
7897 bfd_byte tmpbuf[FP_REGISTER_SIZE];
7898
dca08e1f 7899 regs->cooked_read (ARM_F0_REGNUM, tmpbuf);
3b2ca824
UW
7900 target_float_convert (tmpbuf, arm_ext_type (gdbarch),
7901 valbuf, type);
cca44b1b
JB
7902 }
7903 break;
7904
7905 case ARM_FLOAT_SOFT_FPA:
7906 case ARM_FLOAT_SOFT_VFP:
7907 /* ARM_FLOAT_VFP can arise if this is a variadic function so
7908 not using the VFP ABI code. */
7909 case ARM_FLOAT_VFP:
dca08e1f 7910 regs->cooked_read (ARM_A1_REGNUM, valbuf);
cca44b1b 7911 if (TYPE_LENGTH (type) > 4)
dca08e1f 7912 regs->cooked_read (ARM_A1_REGNUM + 1, valbuf + INT_REGISTER_SIZE);
cca44b1b
JB
7913 break;
7914
7915 default:
0963b4bd
MS
7916 internal_error (__FILE__, __LINE__,
7917 _("arm_extract_return_value: "
7918 "Floating point model not supported"));
cca44b1b
JB
7919 break;
7920 }
7921 }
7922 else if (TYPE_CODE (type) == TYPE_CODE_INT
7923 || TYPE_CODE (type) == TYPE_CODE_CHAR
7924 || TYPE_CODE (type) == TYPE_CODE_BOOL
7925 || TYPE_CODE (type) == TYPE_CODE_PTR
aa006118 7926 || TYPE_IS_REFERENCE (type)
cca44b1b
JB
7927 || TYPE_CODE (type) == TYPE_CODE_ENUM)
7928 {
b021a221
MS
7929 /* If the type is a plain integer, then the access is
7930 straight-forward. Otherwise we have to play around a bit
7931 more. */
cca44b1b
JB
7932 int len = TYPE_LENGTH (type);
7933 int regno = ARM_A1_REGNUM;
7934 ULONGEST tmp;
7935
7936 while (len > 0)
7937 {
7938 /* By using store_unsigned_integer we avoid having to do
7939 anything special for small big-endian values. */
7940 regcache_cooked_read_unsigned (regs, regno++, &tmp);
7941 store_unsigned_integer (valbuf,
7942 (len > INT_REGISTER_SIZE
7943 ? INT_REGISTER_SIZE : len),
7944 byte_order, tmp);
7945 len -= INT_REGISTER_SIZE;
7946 valbuf += INT_REGISTER_SIZE;
7947 }
7948 }
7949 else
7950 {
7951 /* For a structure or union the behaviour is as if the value had
7952 been stored to word-aligned memory and then loaded into
7953 registers with 32-bit load instruction(s). */
7954 int len = TYPE_LENGTH (type);
7955 int regno = ARM_A1_REGNUM;
7956 bfd_byte tmpbuf[INT_REGISTER_SIZE];
7957
7958 while (len > 0)
7959 {
dca08e1f 7960 regs->cooked_read (regno++, tmpbuf);
cca44b1b
JB
7961 memcpy (valbuf, tmpbuf,
7962 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
7963 len -= INT_REGISTER_SIZE;
7964 valbuf += INT_REGISTER_SIZE;
7965 }
7966 }
7967}
7968
7969
7970/* Will a function return an aggregate type in memory or in a
7971 register? Return 0 if an aggregate type can be returned in a
7972 register, 1 if it must be returned in memory. */
7973
7974static int
7975arm_return_in_memory (struct gdbarch *gdbarch, struct type *type)
7976{
cca44b1b
JB
7977 enum type_code code;
7978
f168693b 7979 type = check_typedef (type);
cca44b1b 7980
b13c8ab2
YQ
7981 /* Simple, non-aggregate types (ie not including vectors and
7982 complex) are always returned in a register (or registers). */
7983 code = TYPE_CODE (type);
7984 if (TYPE_CODE_STRUCT != code && TYPE_CODE_UNION != code
7985 && TYPE_CODE_ARRAY != code && TYPE_CODE_COMPLEX != code)
7986 return 0;
cca44b1b 7987
c4312b19
YQ
7988 if (TYPE_CODE_ARRAY == code && TYPE_VECTOR (type))
7989 {
7990 /* Vector values should be returned using ARM registers if they
7991 are not over 16 bytes. */
7992 return (TYPE_LENGTH (type) > 16);
7993 }
7994
b13c8ab2 7995 if (gdbarch_tdep (gdbarch)->arm_abi != ARM_ABI_APCS)
cca44b1b 7996 {
b13c8ab2
YQ
7997 /* The AAPCS says all aggregates not larger than a word are returned
7998 in a register. */
7999 if (TYPE_LENGTH (type) <= INT_REGISTER_SIZE)
8000 return 0;
8001
cca44b1b
JB
8002 return 1;
8003 }
b13c8ab2
YQ
8004 else
8005 {
8006 int nRc;
cca44b1b 8007
b13c8ab2
YQ
8008 /* All aggregate types that won't fit in a register must be returned
8009 in memory. */
8010 if (TYPE_LENGTH (type) > INT_REGISTER_SIZE)
8011 return 1;
cca44b1b 8012
b13c8ab2
YQ
8013 /* In the ARM ABI, "integer" like aggregate types are returned in
8014 registers. For an aggregate type to be integer like, its size
8015 must be less than or equal to INT_REGISTER_SIZE and the
8016 offset of each addressable subfield must be zero. Note that bit
8017 fields are not addressable, and all addressable subfields of
8018 unions always start at offset zero.
cca44b1b 8019
b13c8ab2
YQ
8020 This function is based on the behaviour of GCC 2.95.1.
8021 See: gcc/arm.c: arm_return_in_memory() for details.
cca44b1b 8022
b13c8ab2
YQ
8023 Note: All versions of GCC before GCC 2.95.2 do not set up the
8024 parameters correctly for a function returning the following
8025 structure: struct { float f;}; This should be returned in memory,
8026 not a register. Richard Earnshaw sent me a patch, but I do not
8027 know of any way to detect if a function like the above has been
8028 compiled with the correct calling convention. */
8029
8030 /* Assume all other aggregate types can be returned in a register.
8031 Run a check for structures, unions and arrays. */
8032 nRc = 0;
67255d04 8033
b13c8ab2
YQ
8034 if ((TYPE_CODE_STRUCT == code) || (TYPE_CODE_UNION == code))
8035 {
8036 int i;
8037 /* Need to check if this struct/union is "integer" like. For
8038 this to be true, its size must be less than or equal to
8039 INT_REGISTER_SIZE and the offset of each addressable
8040 subfield must be zero. Note that bit fields are not
8041 addressable, and unions always start at offset zero. If any
8042 of the subfields is a floating point type, the struct/union
8043 cannot be an integer type. */
8044
8045 /* For each field in the object, check:
8046 1) Is it FP? --> yes, nRc = 1;
8047 2) Is it addressable (bitpos != 0) and
8048 not packed (bitsize == 0)?
8049 --> yes, nRc = 1
8050 */
8051
8052 for (i = 0; i < TYPE_NFIELDS (type); i++)
67255d04 8053 {
b13c8ab2
YQ
8054 enum type_code field_type_code;
8055
8056 field_type_code
8057 = TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type,
8058 i)));
8059
8060 /* Is it a floating point type field? */
8061 if (field_type_code == TYPE_CODE_FLT)
67255d04
RE
8062 {
8063 nRc = 1;
8064 break;
8065 }
b13c8ab2
YQ
8066
8067 /* If bitpos != 0, then we have to care about it. */
8068 if (TYPE_FIELD_BITPOS (type, i) != 0)
8069 {
8070 /* Bitfields are not addressable. If the field bitsize is
8071 zero, then the field is not packed. Hence it cannot be
8072 a bitfield or any other packed type. */
8073 if (TYPE_FIELD_BITSIZE (type, i) == 0)
8074 {
8075 nRc = 1;
8076 break;
8077 }
8078 }
67255d04
RE
8079 }
8080 }
67255d04 8081
b13c8ab2
YQ
8082 return nRc;
8083 }
67255d04
RE
8084}
8085
34e8f22d
RE
8086/* Write into appropriate registers a function return value of type
8087 TYPE, given in virtual format. */
8088
8089static void
b508a996 8090arm_store_return_value (struct type *type, struct regcache *regs,
5238cf52 8091 const gdb_byte *valbuf)
34e8f22d 8092{
ac7936df 8093 struct gdbarch *gdbarch = regs->arch ();
e17a4113 8094 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
be8626e0 8095
34e8f22d
RE
8096 if (TYPE_CODE (type) == TYPE_CODE_FLT)
8097 {
64403bd1 8098 gdb_byte buf[FP_REGISTER_SIZE];
34e8f22d 8099
be8626e0 8100 switch (gdbarch_tdep (gdbarch)->fp_model)
08216dd7
RE
8101 {
8102 case ARM_FLOAT_FPA:
8103
3b2ca824 8104 target_float_convert (valbuf, type, buf, arm_ext_type (gdbarch));
b66f5587 8105 regs->cooked_write (ARM_F0_REGNUM, buf);
08216dd7
RE
8106 break;
8107
fd50bc42 8108 case ARM_FLOAT_SOFT_FPA:
08216dd7 8109 case ARM_FLOAT_SOFT_VFP:
90445bd3
DJ
8110 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8111 not using the VFP ABI code. */
8112 case ARM_FLOAT_VFP:
b66f5587 8113 regs->cooked_write (ARM_A1_REGNUM, valbuf);
b508a996 8114 if (TYPE_LENGTH (type) > 4)
b66f5587 8115 regs->cooked_write (ARM_A1_REGNUM + 1, valbuf + INT_REGISTER_SIZE);
08216dd7
RE
8116 break;
8117
8118 default:
9b20d036
MS
8119 internal_error (__FILE__, __LINE__,
8120 _("arm_store_return_value: Floating "
8121 "point model not supported"));
08216dd7
RE
8122 break;
8123 }
34e8f22d 8124 }
b508a996
RE
8125 else if (TYPE_CODE (type) == TYPE_CODE_INT
8126 || TYPE_CODE (type) == TYPE_CODE_CHAR
8127 || TYPE_CODE (type) == TYPE_CODE_BOOL
8128 || TYPE_CODE (type) == TYPE_CODE_PTR
aa006118 8129 || TYPE_IS_REFERENCE (type)
b508a996
RE
8130 || TYPE_CODE (type) == TYPE_CODE_ENUM)
8131 {
8132 if (TYPE_LENGTH (type) <= 4)
8133 {
8134 /* Values of one word or less are zero/sign-extended and
8135 returned in r0. */
7a5ea0d4 8136 bfd_byte tmpbuf[INT_REGISTER_SIZE];
b508a996
RE
8137 LONGEST val = unpack_long (type, valbuf);
8138
e17a4113 8139 store_signed_integer (tmpbuf, INT_REGISTER_SIZE, byte_order, val);
b66f5587 8140 regs->cooked_write (ARM_A1_REGNUM, tmpbuf);
b508a996
RE
8141 }
8142 else
8143 {
8144 /* Integral values greater than one word are stored in consecutive
8145 registers starting with r0. This will always be a multiple of
8146 the regiser size. */
8147 int len = TYPE_LENGTH (type);
8148 int regno = ARM_A1_REGNUM;
8149
8150 while (len > 0)
8151 {
b66f5587 8152 regs->cooked_write (regno++, valbuf);
7a5ea0d4
DJ
8153 len -= INT_REGISTER_SIZE;
8154 valbuf += INT_REGISTER_SIZE;
b508a996
RE
8155 }
8156 }
8157 }
34e8f22d 8158 else
b508a996
RE
8159 {
8160 /* For a structure or union the behaviour is as if the value had
8161 been stored to word-aligned memory and then loaded into
8162 registers with 32-bit load instruction(s). */
8163 int len = TYPE_LENGTH (type);
8164 int regno = ARM_A1_REGNUM;
7a5ea0d4 8165 bfd_byte tmpbuf[INT_REGISTER_SIZE];
b508a996
RE
8166
8167 while (len > 0)
8168 {
8169 memcpy (tmpbuf, valbuf,
7a5ea0d4 8170 len > INT_REGISTER_SIZE ? INT_REGISTER_SIZE : len);
b66f5587 8171 regs->cooked_write (regno++, tmpbuf);
7a5ea0d4
DJ
8172 len -= INT_REGISTER_SIZE;
8173 valbuf += INT_REGISTER_SIZE;
b508a996
RE
8174 }
8175 }
34e8f22d
RE
8176}
8177
2af48f68
PB
8178
8179/* Handle function return values. */
8180
8181static enum return_value_convention
6a3a010b 8182arm_return_value (struct gdbarch *gdbarch, struct value *function,
c055b101
CV
8183 struct type *valtype, struct regcache *regcache,
8184 gdb_byte *readbuf, const gdb_byte *writebuf)
2af48f68 8185{
7c00367c 8186 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
6a3a010b 8187 struct type *func_type = function ? value_type (function) : NULL;
90445bd3
DJ
8188 enum arm_vfp_cprc_base_type vfp_base_type;
8189 int vfp_base_count;
8190
8191 if (arm_vfp_abi_for_function (gdbarch, func_type)
8192 && arm_vfp_call_candidate (valtype, &vfp_base_type, &vfp_base_count))
8193 {
8194 int reg_char = arm_vfp_cprc_reg_char (vfp_base_type);
8195 int unit_length = arm_vfp_cprc_unit_length (vfp_base_type);
8196 int i;
8197 for (i = 0; i < vfp_base_count; i++)
8198 {
58d6951d
DJ
8199 if (reg_char == 'q')
8200 {
8201 if (writebuf)
8202 arm_neon_quad_write (gdbarch, regcache, i,
8203 writebuf + i * unit_length);
8204
8205 if (readbuf)
8206 arm_neon_quad_read (gdbarch, regcache, i,
8207 readbuf + i * unit_length);
8208 }
8209 else
8210 {
8211 char name_buf[4];
8212 int regnum;
8213
8c042590 8214 xsnprintf (name_buf, sizeof (name_buf), "%c%d", reg_char, i);
58d6951d
DJ
8215 regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8216 strlen (name_buf));
8217 if (writebuf)
b66f5587 8218 regcache->cooked_write (regnum, writebuf + i * unit_length);
58d6951d 8219 if (readbuf)
dca08e1f 8220 regcache->cooked_read (regnum, readbuf + i * unit_length);
58d6951d 8221 }
90445bd3
DJ
8222 }
8223 return RETURN_VALUE_REGISTER_CONVENTION;
8224 }
7c00367c 8225
2af48f68
PB
8226 if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
8227 || TYPE_CODE (valtype) == TYPE_CODE_UNION
8228 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
8229 {
7c00367c
MK
8230 if (tdep->struct_return == pcc_struct_return
8231 || arm_return_in_memory (gdbarch, valtype))
2af48f68
PB
8232 return RETURN_VALUE_STRUCT_CONVENTION;
8233 }
b13c8ab2
YQ
8234 else if (TYPE_CODE (valtype) == TYPE_CODE_COMPLEX)
8235 {
8236 if (arm_return_in_memory (gdbarch, valtype))
8237 return RETURN_VALUE_STRUCT_CONVENTION;
8238 }
7052e42c 8239
2af48f68
PB
8240 if (writebuf)
8241 arm_store_return_value (valtype, regcache, writebuf);
8242
8243 if (readbuf)
8244 arm_extract_return_value (valtype, regcache, readbuf);
8245
8246 return RETURN_VALUE_REGISTER_CONVENTION;
8247}
8248
8249
9df628e0 8250static int
60ade65d 8251arm_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
9df628e0 8252{
e17a4113
UW
8253 struct gdbarch *gdbarch = get_frame_arch (frame);
8254 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
8255 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
9df628e0 8256 CORE_ADDR jb_addr;
e362b510 8257 gdb_byte buf[INT_REGISTER_SIZE];
9df628e0 8258
60ade65d 8259 jb_addr = get_frame_register_unsigned (frame, ARM_A1_REGNUM);
9df628e0
RE
8260
8261 if (target_read_memory (jb_addr + tdep->jb_pc * tdep->jb_elt_size, buf,
7a5ea0d4 8262 INT_REGISTER_SIZE))
9df628e0
RE
8263 return 0;
8264
e17a4113 8265 *pc = extract_unsigned_integer (buf, INT_REGISTER_SIZE, byte_order);
9df628e0
RE
8266 return 1;
8267}
8268
faa95490
DJ
8269/* Recognize GCC and GNU ld's trampolines. If we are in a trampoline,
8270 return the target PC. Otherwise return 0. */
c906108c
SS
8271
8272CORE_ADDR
52f729a7 8273arm_skip_stub (struct frame_info *frame, CORE_ADDR pc)
c906108c 8274{
2c02bd72 8275 const char *name;
faa95490 8276 int namelen;
c906108c
SS
8277 CORE_ADDR start_addr;
8278
8279 /* Find the starting address and name of the function containing the PC. */
8280 if (find_pc_partial_function (pc, &name, &start_addr, NULL) == 0)
80d8d390
YQ
8281 {
8282 /* Trampoline 'bx reg' doesn't belong to any functions. Do the
8283 check here. */
8284 start_addr = arm_skip_bx_reg (frame, pc);
8285 if (start_addr != 0)
8286 return start_addr;
8287
8288 return 0;
8289 }
c906108c 8290
faa95490
DJ
8291 /* If PC is in a Thumb call or return stub, return the address of the
8292 target PC, which is in a register. The thunk functions are called
8293 _call_via_xx, where x is the register name. The possible names
3d8d5e79
DJ
8294 are r0-r9, sl, fp, ip, sp, and lr. ARM RealView has similar
8295 functions, named __ARM_call_via_r[0-7]. */
61012eef
GB
8296 if (startswith (name, "_call_via_")
8297 || startswith (name, "__ARM_call_via_"))
c906108c 8298 {
ed9a39eb
JM
8299 /* Use the name suffix to determine which register contains the
8300 target PC. */
a121b7c1 8301 static const char *table[15] =
c5aa993b
JM
8302 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
8303 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
8304 };
c906108c 8305 int regno;
faa95490 8306 int offset = strlen (name) - 2;
c906108c
SS
8307
8308 for (regno = 0; regno <= 14; regno++)
faa95490 8309 if (strcmp (&name[offset], table[regno]) == 0)
52f729a7 8310 return get_frame_register_unsigned (frame, regno);
c906108c 8311 }
ed9a39eb 8312
faa95490
DJ
8313 /* GNU ld generates __foo_from_arm or __foo_from_thumb for
8314 non-interworking calls to foo. We could decode the stubs
8315 to find the target but it's easier to use the symbol table. */
8316 namelen = strlen (name);
8317 if (name[0] == '_' && name[1] == '_'
8318 && ((namelen > 2 + strlen ("_from_thumb")
61012eef 8319 && startswith (name + namelen - strlen ("_from_thumb"), "_from_thumb"))
faa95490 8320 || (namelen > 2 + strlen ("_from_arm")
61012eef 8321 && startswith (name + namelen - strlen ("_from_arm"), "_from_arm"))))
faa95490
DJ
8322 {
8323 char *target_name;
8324 int target_len = namelen - 2;
3b7344d5 8325 struct bound_minimal_symbol minsym;
faa95490
DJ
8326 struct objfile *objfile;
8327 struct obj_section *sec;
8328
8329 if (name[namelen - 1] == 'b')
8330 target_len -= strlen ("_from_thumb");
8331 else
8332 target_len -= strlen ("_from_arm");
8333
224c3ddb 8334 target_name = (char *) alloca (target_len + 1);
faa95490
DJ
8335 memcpy (target_name, name + 2, target_len);
8336 target_name[target_len] = '\0';
8337
8338 sec = find_pc_section (pc);
8339 objfile = (sec == NULL) ? NULL : sec->objfile;
8340 minsym = lookup_minimal_symbol (target_name, NULL, objfile);
3b7344d5 8341 if (minsym.minsym != NULL)
77e371c0 8342 return BMSYMBOL_VALUE_ADDRESS (minsym);
faa95490
DJ
8343 else
8344 return 0;
8345 }
8346
c5aa993b 8347 return 0; /* not a stub */
c906108c
SS
8348}
8349
afd7eef0 8350static void
981a3fb3 8351set_arm_command (const char *args, int from_tty)
afd7eef0 8352{
edefbb7c
AC
8353 printf_unfiltered (_("\
8354\"set arm\" must be followed by an apporpriate subcommand.\n"));
afd7eef0
RE
8355 help_list (setarmcmdlist, "set arm ", all_commands, gdb_stdout);
8356}
8357
8358static void
981a3fb3 8359show_arm_command (const char *args, int from_tty)
afd7eef0 8360{
26304000 8361 cmd_show_list (showarmcmdlist, from_tty, "");
afd7eef0
RE
8362}
8363
28e97307
DJ
8364static void
8365arm_update_current_architecture (void)
fd50bc42 8366{
28e97307 8367 struct gdbarch_info info;
fd50bc42 8368
28e97307 8369 /* If the current architecture is not ARM, we have nothing to do. */
f5656ead 8370 if (gdbarch_bfd_arch_info (target_gdbarch ())->arch != bfd_arch_arm)
28e97307 8371 return;
fd50bc42 8372
28e97307
DJ
8373 /* Update the architecture. */
8374 gdbarch_info_init (&info);
fd50bc42 8375
28e97307 8376 if (!gdbarch_update_p (info))
9b20d036 8377 internal_error (__FILE__, __LINE__, _("could not update architecture"));
fd50bc42
RE
8378}
8379
8380static void
eb4c3f4a 8381set_fp_model_sfunc (const char *args, int from_tty,
fd50bc42
RE
8382 struct cmd_list_element *c)
8383{
570dc176 8384 int fp_model;
fd50bc42
RE
8385
8386 for (fp_model = ARM_FLOAT_AUTO; fp_model != ARM_FLOAT_LAST; fp_model++)
8387 if (strcmp (current_fp_model, fp_model_strings[fp_model]) == 0)
8388 {
aead7601 8389 arm_fp_model = (enum arm_float_model) fp_model;
fd50bc42
RE
8390 break;
8391 }
8392
8393 if (fp_model == ARM_FLOAT_LAST)
edefbb7c 8394 internal_error (__FILE__, __LINE__, _("Invalid fp model accepted: %s."),
fd50bc42
RE
8395 current_fp_model);
8396
28e97307 8397 arm_update_current_architecture ();
fd50bc42
RE
8398}
8399
8400static void
08546159
AC
8401show_fp_model (struct ui_file *file, int from_tty,
8402 struct cmd_list_element *c, const char *value)
fd50bc42 8403{
f5656ead 8404 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch ());
fd50bc42 8405
28e97307 8406 if (arm_fp_model == ARM_FLOAT_AUTO
f5656ead 8407 && gdbarch_bfd_arch_info (target_gdbarch ())->arch == bfd_arch_arm)
28e97307
DJ
8408 fprintf_filtered (file, _("\
8409The current ARM floating point model is \"auto\" (currently \"%s\").\n"),
8410 fp_model_strings[tdep->fp_model]);
8411 else
8412 fprintf_filtered (file, _("\
8413The current ARM floating point model is \"%s\".\n"),
8414 fp_model_strings[arm_fp_model]);
8415}
8416
8417static void
eb4c3f4a 8418arm_set_abi (const char *args, int from_tty,
28e97307
DJ
8419 struct cmd_list_element *c)
8420{
570dc176 8421 int arm_abi;
28e97307
DJ
8422
8423 for (arm_abi = ARM_ABI_AUTO; arm_abi != ARM_ABI_LAST; arm_abi++)
8424 if (strcmp (arm_abi_string, arm_abi_strings[arm_abi]) == 0)
8425 {
aead7601 8426 arm_abi_global = (enum arm_abi_kind) arm_abi;
28e97307
DJ
8427 break;
8428 }
8429
8430 if (arm_abi == ARM_ABI_LAST)
8431 internal_error (__FILE__, __LINE__, _("Invalid ABI accepted: %s."),
8432 arm_abi_string);
8433
8434 arm_update_current_architecture ();
8435}
8436
8437static void
8438arm_show_abi (struct ui_file *file, int from_tty,
8439 struct cmd_list_element *c, const char *value)
8440{
f5656ead 8441 struct gdbarch_tdep *tdep = gdbarch_tdep (target_gdbarch ());
28e97307
DJ
8442
8443 if (arm_abi_global == ARM_ABI_AUTO
f5656ead 8444 && gdbarch_bfd_arch_info (target_gdbarch ())->arch == bfd_arch_arm)
28e97307
DJ
8445 fprintf_filtered (file, _("\
8446The current ARM ABI is \"auto\" (currently \"%s\").\n"),
8447 arm_abi_strings[tdep->arm_abi]);
8448 else
8449 fprintf_filtered (file, _("The current ARM ABI is \"%s\".\n"),
8450 arm_abi_string);
fd50bc42
RE
8451}
8452
0428b8f5
DJ
8453static void
8454arm_show_fallback_mode (struct ui_file *file, int from_tty,
8455 struct cmd_list_element *c, const char *value)
8456{
0963b4bd
MS
8457 fprintf_filtered (file,
8458 _("The current execution mode assumed "
8459 "(when symbols are unavailable) is \"%s\".\n"),
0428b8f5
DJ
8460 arm_fallback_mode_string);
8461}
8462
8463static void
8464arm_show_force_mode (struct ui_file *file, int from_tty,
8465 struct cmd_list_element *c, const char *value)
8466{
0963b4bd
MS
8467 fprintf_filtered (file,
8468 _("The current execution mode assumed "
8469 "(even when symbols are available) is \"%s\".\n"),
0428b8f5
DJ
8470 arm_force_mode_string);
8471}
8472
afd7eef0
RE
8473/* If the user changes the register disassembly style used for info
8474 register and other commands, we have to also switch the style used
8475 in opcodes for disassembly output. This function is run in the "set
8476 arm disassembly" command, and does that. */
bc90b915
FN
8477
8478static void
eb4c3f4a 8479set_disassembly_style_sfunc (const char *args, int from_tty,
65b48a81 8480 struct cmd_list_element *c)
bc90b915 8481{
65b48a81
PB
8482 /* Convert the short style name into the long style name (eg, reg-names-*)
8483 before calling the generic set_disassembler_options() function. */
8484 std::string long_name = std::string ("reg-names-") + disassembly_style;
8485 set_disassembler_options (&long_name[0]);
8486}
8487
8488static void
8489show_disassembly_style_sfunc (struct ui_file *file, int from_tty,
8490 struct cmd_list_element *c, const char *value)
8491{
8492 struct gdbarch *gdbarch = get_current_arch ();
8493 char *options = get_disassembler_options (gdbarch);
8494 const char *style = "";
8495 int len = 0;
f995bbe8 8496 const char *opt;
65b48a81
PB
8497
8498 FOR_EACH_DISASSEMBLER_OPTION (opt, options)
8499 if (CONST_STRNEQ (opt, "reg-names-"))
8500 {
8501 style = &opt[strlen ("reg-names-")];
8502 len = strcspn (style, ",");
8503 }
8504
8505 fprintf_unfiltered (file, "The disassembly style is \"%.*s\".\n", len, style);
bc90b915
FN
8506}
8507\f
966fbf70 8508/* Return the ARM register name corresponding to register I. */
a208b0cb 8509static const char *
d93859e2 8510arm_register_name (struct gdbarch *gdbarch, int i)
966fbf70 8511{
58d6951d
DJ
8512 const int num_regs = gdbarch_num_regs (gdbarch);
8513
8514 if (gdbarch_tdep (gdbarch)->have_vfp_pseudos
8515 && i >= num_regs && i < num_regs + 32)
8516 {
8517 static const char *const vfp_pseudo_names[] = {
8518 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
8519 "s8", "s9", "s10", "s11", "s12", "s13", "s14", "s15",
8520 "s16", "s17", "s18", "s19", "s20", "s21", "s22", "s23",
8521 "s24", "s25", "s26", "s27", "s28", "s29", "s30", "s31",
8522 };
8523
8524 return vfp_pseudo_names[i - num_regs];
8525 }
8526
8527 if (gdbarch_tdep (gdbarch)->have_neon_pseudos
8528 && i >= num_regs + 32 && i < num_regs + 32 + 16)
8529 {
8530 static const char *const neon_pseudo_names[] = {
8531 "q0", "q1", "q2", "q3", "q4", "q5", "q6", "q7",
8532 "q8", "q9", "q10", "q11", "q12", "q13", "q14", "q15",
8533 };
8534
8535 return neon_pseudo_names[i - num_regs - 32];
8536 }
8537
ff6f572f
DJ
8538 if (i >= ARRAY_SIZE (arm_register_names))
8539 /* These registers are only supported on targets which supply
8540 an XML description. */
8541 return "";
8542
966fbf70
RE
8543 return arm_register_names[i];
8544}
8545
082fc60d
RE
8546/* Test whether the coff symbol specific value corresponds to a Thumb
8547 function. */
8548
8549static int
8550coff_sym_is_thumb (int val)
8551{
f8bf5763
PM
8552 return (val == C_THUMBEXT
8553 || val == C_THUMBSTAT
8554 || val == C_THUMBEXTFUNC
8555 || val == C_THUMBSTATFUNC
8556 || val == C_THUMBLABEL);
082fc60d
RE
8557}
8558
8559/* arm_coff_make_msymbol_special()
8560 arm_elf_make_msymbol_special()
8561
8562 These functions test whether the COFF or ELF symbol corresponds to
8563 an address in thumb code, and set a "special" bit in a minimal
8564 symbol to indicate that it does. */
8565
34e8f22d 8566static void
082fc60d
RE
8567arm_elf_make_msymbol_special(asymbol *sym, struct minimal_symbol *msym)
8568{
39d911fc
TP
8569 elf_symbol_type *elfsym = (elf_symbol_type *) sym;
8570
8571 if (ARM_GET_SYM_BRANCH_TYPE (elfsym->internal_elf_sym.st_target_internal)
467d42c4 8572 == ST_BRANCH_TO_THUMB)
082fc60d
RE
8573 MSYMBOL_SET_SPECIAL (msym);
8574}
8575
34e8f22d 8576static void
082fc60d
RE
8577arm_coff_make_msymbol_special(int val, struct minimal_symbol *msym)
8578{
8579 if (coff_sym_is_thumb (val))
8580 MSYMBOL_SET_SPECIAL (msym);
8581}
8582
60c5725c 8583static void
c1bd65d0 8584arm_objfile_data_free (struct objfile *objfile, void *arg)
60c5725c 8585{
9a3c8263 8586 struct arm_per_objfile *data = (struct arm_per_objfile *) arg;
60c5725c
DJ
8587 unsigned int i;
8588
8589 for (i = 0; i < objfile->obfd->section_count; i++)
8590 VEC_free (arm_mapping_symbol_s, data->section_maps[i]);
8591}
8592
8593static void
8594arm_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile,
8595 asymbol *sym)
8596{
8597 const char *name = bfd_asymbol_name (sym);
8598 struct arm_per_objfile *data;
8599 VEC(arm_mapping_symbol_s) **map_p;
8600 struct arm_mapping_symbol new_map_sym;
8601
8602 gdb_assert (name[0] == '$');
8603 if (name[1] != 'a' && name[1] != 't' && name[1] != 'd')
8604 return;
8605
9a3c8263
SM
8606 data = (struct arm_per_objfile *) objfile_data (objfile,
8607 arm_objfile_data_key);
60c5725c
DJ
8608 if (data == NULL)
8609 {
8610 data = OBSTACK_ZALLOC (&objfile->objfile_obstack,
8611 struct arm_per_objfile);
8612 set_objfile_data (objfile, arm_objfile_data_key, data);
8613 data->section_maps = OBSTACK_CALLOC (&objfile->objfile_obstack,
8614 objfile->obfd->section_count,
8615 VEC(arm_mapping_symbol_s) *);
8616 }
8617 map_p = &data->section_maps[bfd_get_section (sym)->index];
8618
8619 new_map_sym.value = sym->value;
8620 new_map_sym.type = name[1];
8621
8622 /* Assume that most mapping symbols appear in order of increasing
8623 value. If they were randomly distributed, it would be faster to
8624 always push here and then sort at first use. */
8625 if (!VEC_empty (arm_mapping_symbol_s, *map_p))
8626 {
8627 struct arm_mapping_symbol *prev_map_sym;
8628
8629 prev_map_sym = VEC_last (arm_mapping_symbol_s, *map_p);
8630 if (prev_map_sym->value >= sym->value)
8631 {
8632 unsigned int idx;
8633 idx = VEC_lower_bound (arm_mapping_symbol_s, *map_p, &new_map_sym,
8634 arm_compare_mapping_symbols);
8635 VEC_safe_insert (arm_mapping_symbol_s, *map_p, idx, &new_map_sym);
8636 return;
8637 }
8638 }
8639
8640 VEC_safe_push (arm_mapping_symbol_s, *map_p, &new_map_sym);
8641}
8642
756fe439 8643static void
61a1198a 8644arm_write_pc (struct regcache *regcache, CORE_ADDR pc)
756fe439 8645{
ac7936df 8646 struct gdbarch *gdbarch = regcache->arch ();
61a1198a 8647 regcache_cooked_write_unsigned (regcache, ARM_PC_REGNUM, pc);
756fe439
DJ
8648
8649 /* If necessary, set the T bit. */
8650 if (arm_apcs_32)
8651 {
9779414d 8652 ULONGEST val, t_bit;
61a1198a 8653 regcache_cooked_read_unsigned (regcache, ARM_PS_REGNUM, &val);
9779414d
DJ
8654 t_bit = arm_psr_thumb_bit (gdbarch);
8655 if (arm_pc_is_thumb (gdbarch, pc))
8656 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
8657 val | t_bit);
756fe439 8658 else
61a1198a 8659 regcache_cooked_write_unsigned (regcache, ARM_PS_REGNUM,
9779414d 8660 val & ~t_bit);
756fe439
DJ
8661 }
8662}
123dc839 8663
58d6951d
DJ
8664/* Read the contents of a NEON quad register, by reading from two
8665 double registers. This is used to implement the quad pseudo
8666 registers, and for argument passing in case the quad registers are
8667 missing; vectors are passed in quad registers when using the VFP
8668 ABI, even if a NEON unit is not present. REGNUM is the index of
8669 the quad register, in [0, 15]. */
8670
05d1431c 8671static enum register_status
849d0ba8 8672arm_neon_quad_read (struct gdbarch *gdbarch, readable_regcache *regcache,
58d6951d
DJ
8673 int regnum, gdb_byte *buf)
8674{
8675 char name_buf[4];
8676 gdb_byte reg_buf[8];
8677 int offset, double_regnum;
05d1431c 8678 enum register_status status;
58d6951d 8679
8c042590 8680 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum << 1);
58d6951d
DJ
8681 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8682 strlen (name_buf));
8683
8684 /* d0 is always the least significant half of q0. */
8685 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8686 offset = 8;
8687 else
8688 offset = 0;
8689
03f50fc8 8690 status = regcache->raw_read (double_regnum, reg_buf);
05d1431c
PA
8691 if (status != REG_VALID)
8692 return status;
58d6951d
DJ
8693 memcpy (buf + offset, reg_buf, 8);
8694
8695 offset = 8 - offset;
03f50fc8 8696 status = regcache->raw_read (double_regnum + 1, reg_buf);
05d1431c
PA
8697 if (status != REG_VALID)
8698 return status;
58d6951d 8699 memcpy (buf + offset, reg_buf, 8);
05d1431c
PA
8700
8701 return REG_VALID;
58d6951d
DJ
8702}
8703
05d1431c 8704static enum register_status
849d0ba8 8705arm_pseudo_read (struct gdbarch *gdbarch, readable_regcache *regcache,
58d6951d
DJ
8706 int regnum, gdb_byte *buf)
8707{
8708 const int num_regs = gdbarch_num_regs (gdbarch);
8709 char name_buf[4];
8710 gdb_byte reg_buf[8];
8711 int offset, double_regnum;
8712
8713 gdb_assert (regnum >= num_regs);
8714 regnum -= num_regs;
8715
8716 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
8717 /* Quad-precision register. */
05d1431c 8718 return arm_neon_quad_read (gdbarch, regcache, regnum - 32, buf);
58d6951d
DJ
8719 else
8720 {
05d1431c
PA
8721 enum register_status status;
8722
58d6951d
DJ
8723 /* Single-precision register. */
8724 gdb_assert (regnum < 32);
8725
8726 /* s0 is always the least significant half of d0. */
8727 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8728 offset = (regnum & 1) ? 0 : 4;
8729 else
8730 offset = (regnum & 1) ? 4 : 0;
8731
8c042590 8732 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum >> 1);
58d6951d
DJ
8733 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8734 strlen (name_buf));
8735
03f50fc8 8736 status = regcache->raw_read (double_regnum, reg_buf);
05d1431c
PA
8737 if (status == REG_VALID)
8738 memcpy (buf, reg_buf + offset, 4);
8739 return status;
58d6951d
DJ
8740 }
8741}
8742
8743/* Store the contents of BUF to a NEON quad register, by writing to
8744 two double registers. This is used to implement the quad pseudo
8745 registers, and for argument passing in case the quad registers are
8746 missing; vectors are passed in quad registers when using the VFP
8747 ABI, even if a NEON unit is not present. REGNUM is the index
8748 of the quad register, in [0, 15]. */
8749
8750static void
8751arm_neon_quad_write (struct gdbarch *gdbarch, struct regcache *regcache,
8752 int regnum, const gdb_byte *buf)
8753{
8754 char name_buf[4];
58d6951d
DJ
8755 int offset, double_regnum;
8756
8c042590 8757 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum << 1);
58d6951d
DJ
8758 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8759 strlen (name_buf));
8760
8761 /* d0 is always the least significant half of q0. */
8762 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8763 offset = 8;
8764 else
8765 offset = 0;
8766
10eaee5f 8767 regcache->raw_write (double_regnum, buf + offset);
58d6951d 8768 offset = 8 - offset;
10eaee5f 8769 regcache->raw_write (double_regnum + 1, buf + offset);
58d6951d
DJ
8770}
8771
8772static void
8773arm_pseudo_write (struct gdbarch *gdbarch, struct regcache *regcache,
8774 int regnum, const gdb_byte *buf)
8775{
8776 const int num_regs = gdbarch_num_regs (gdbarch);
8777 char name_buf[4];
8778 gdb_byte reg_buf[8];
8779 int offset, double_regnum;
8780
8781 gdb_assert (regnum >= num_regs);
8782 regnum -= num_regs;
8783
8784 if (gdbarch_tdep (gdbarch)->have_neon_pseudos && regnum >= 32 && regnum < 48)
8785 /* Quad-precision register. */
8786 arm_neon_quad_write (gdbarch, regcache, regnum - 32, buf);
8787 else
8788 {
8789 /* Single-precision register. */
8790 gdb_assert (regnum < 32);
8791
8792 /* s0 is always the least significant half of d0. */
8793 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
8794 offset = (regnum & 1) ? 0 : 4;
8795 else
8796 offset = (regnum & 1) ? 4 : 0;
8797
8c042590 8798 xsnprintf (name_buf, sizeof (name_buf), "d%d", regnum >> 1);
58d6951d
DJ
8799 double_regnum = user_reg_map_name_to_regnum (gdbarch, name_buf,
8800 strlen (name_buf));
8801
0b883586 8802 regcache->raw_read (double_regnum, reg_buf);
58d6951d 8803 memcpy (reg_buf + offset, buf, 4);
10eaee5f 8804 regcache->raw_write (double_regnum, reg_buf);
58d6951d
DJ
8805 }
8806}
8807
123dc839
DJ
8808static struct value *
8809value_of_arm_user_reg (struct frame_info *frame, const void *baton)
8810{
9a3c8263 8811 const int *reg_p = (const int *) baton;
123dc839
DJ
8812 return value_of_register (*reg_p, frame);
8813}
97e03143 8814\f
70f80edf
JT
8815static enum gdb_osabi
8816arm_elf_osabi_sniffer (bfd *abfd)
97e03143 8817{
2af48f68 8818 unsigned int elfosabi;
70f80edf 8819 enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
97e03143 8820
70f80edf 8821 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
97e03143 8822
28e97307
DJ
8823 if (elfosabi == ELFOSABI_ARM)
8824 /* GNU tools use this value. Check note sections in this case,
8825 as well. */
8826 bfd_map_over_sections (abfd,
8827 generic_elf_osabi_sniff_abi_tag_sections,
8828 &osabi);
97e03143 8829
28e97307 8830 /* Anything else will be handled by the generic ELF sniffer. */
70f80edf 8831 return osabi;
97e03143
RE
8832}
8833
54483882
YQ
8834static int
8835arm_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
8836 struct reggroup *group)
8837{
2c291032
YQ
8838 /* FPS register's type is INT, but belongs to float_reggroup. Beside
8839 this, FPS register belongs to save_regroup, restore_reggroup, and
8840 all_reggroup, of course. */
54483882 8841 if (regnum == ARM_FPS_REGNUM)
2c291032
YQ
8842 return (group == float_reggroup
8843 || group == save_reggroup
8844 || group == restore_reggroup
8845 || group == all_reggroup);
54483882
YQ
8846 else
8847 return default_register_reggroup_p (gdbarch, regnum, group);
8848}
8849
25f8c692
JL
8850\f
8851/* For backward-compatibility we allow two 'g' packet lengths with
8852 the remote protocol depending on whether FPA registers are
8853 supplied. M-profile targets do not have FPA registers, but some
8854 stubs already exist in the wild which use a 'g' packet which
8855 supplies them albeit with dummy values. The packet format which
8856 includes FPA registers should be considered deprecated for
8857 M-profile targets. */
8858
8859static void
8860arm_register_g_packet_guesses (struct gdbarch *gdbarch)
8861{
8862 if (gdbarch_tdep (gdbarch)->is_m)
8863 {
8864 /* If we know from the executable this is an M-profile target,
8865 cater for remote targets whose register set layout is the
8866 same as the FPA layout. */
8867 register_remote_g_packet_guess (gdbarch,
03145bf4 8868 /* r0-r12,sp,lr,pc; f0-f7; fps,xpsr */
25f8c692
JL
8869 (16 * INT_REGISTER_SIZE)
8870 + (8 * FP_REGISTER_SIZE)
8871 + (2 * INT_REGISTER_SIZE),
8872 tdesc_arm_with_m_fpa_layout);
8873
8874 /* The regular M-profile layout. */
8875 register_remote_g_packet_guess (gdbarch,
8876 /* r0-r12,sp,lr,pc; xpsr */
8877 (16 * INT_REGISTER_SIZE)
8878 + INT_REGISTER_SIZE,
8879 tdesc_arm_with_m);
3184d3f9
JL
8880
8881 /* M-profile plus M4F VFP. */
8882 register_remote_g_packet_guess (gdbarch,
8883 /* r0-r12,sp,lr,pc; d0-d15; fpscr,xpsr */
8884 (16 * INT_REGISTER_SIZE)
8885 + (16 * VFP_REGISTER_SIZE)
8886 + (2 * INT_REGISTER_SIZE),
8887 tdesc_arm_with_m_vfp_d16);
25f8c692
JL
8888 }
8889
8890 /* Otherwise we don't have a useful guess. */
8891}
8892
7eb89530
YQ
8893/* Implement the code_of_frame_writable gdbarch method. */
8894
8895static int
8896arm_code_of_frame_writable (struct gdbarch *gdbarch, struct frame_info *frame)
8897{
8898 if (gdbarch_tdep (gdbarch)->is_m
8899 && get_frame_type (frame) == SIGTRAMP_FRAME)
8900 {
8901 /* M-profile exception frames return to some magic PCs, where
8902 isn't writable at all. */
8903 return 0;
8904 }
8905 else
8906 return 1;
8907}
8908
70f80edf 8909\f
da3c6d4a
MS
8910/* Initialize the current architecture based on INFO. If possible,
8911 re-use an architecture from ARCHES, which is a list of
8912 architectures already created during this debugging session.
97e03143 8913
da3c6d4a
MS
8914 Called e.g. at program startup, when reading a core file, and when
8915 reading a binary file. */
97e03143 8916
39bbf761
RE
8917static struct gdbarch *
8918arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
8919{
97e03143 8920 struct gdbarch_tdep *tdep;
39bbf761 8921 struct gdbarch *gdbarch;
28e97307
DJ
8922 struct gdbarch_list *best_arch;
8923 enum arm_abi_kind arm_abi = arm_abi_global;
8924 enum arm_float_model fp_model = arm_fp_model;
123dc839 8925 struct tdesc_arch_data *tdesc_data = NULL;
9779414d 8926 int i, is_m = 0;
330c6ca9 8927 int vfp_register_count = 0, have_vfp_pseudos = 0, have_neon_pseudos = 0;
a56cc1ce 8928 int have_wmmx_registers = 0;
58d6951d 8929 int have_neon = 0;
ff6f572f 8930 int have_fpa_registers = 1;
9779414d
DJ
8931 const struct target_desc *tdesc = info.target_desc;
8932
8933 /* If we have an object to base this architecture on, try to determine
8934 its ABI. */
8935
8936 if (arm_abi == ARM_ABI_AUTO && info.abfd != NULL)
8937 {
8938 int ei_osabi, e_flags;
8939
8940 switch (bfd_get_flavour (info.abfd))
8941 {
9779414d
DJ
8942 case bfd_target_coff_flavour:
8943 /* Assume it's an old APCS-style ABI. */
8944 /* XXX WinCE? */
8945 arm_abi = ARM_ABI_APCS;
8946 break;
8947
8948 case bfd_target_elf_flavour:
8949 ei_osabi = elf_elfheader (info.abfd)->e_ident[EI_OSABI];
8950 e_flags = elf_elfheader (info.abfd)->e_flags;
8951
8952 if (ei_osabi == ELFOSABI_ARM)
8953 {
8954 /* GNU tools used to use this value, but do not for EABI
8955 objects. There's nowhere to tag an EABI version
8956 anyway, so assume APCS. */
8957 arm_abi = ARM_ABI_APCS;
8958 }
d403db27 8959 else if (ei_osabi == ELFOSABI_NONE || ei_osabi == ELFOSABI_GNU)
9779414d
DJ
8960 {
8961 int eabi_ver = EF_ARM_EABI_VERSION (e_flags);
9779414d
DJ
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. */
17cbafdb
SM
9032 int attr_arch
9033 = bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_PROC,
9034 Tag_CPU_arch);
9035 int attr_profile
9036 = bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_PROC,
9037 Tag_CPU_arch_profile);
9038
9779414d
DJ
9039 /* GCC specifies the profile for v6-M; RealView only
9040 specifies the profile for architectures starting with
9041 V7 (as opposed to architectures with a tag
9042 numerically greater than TAG_CPU_ARCH_V7). */
9043 if (!tdesc_has_registers (tdesc)
9044 && (attr_arch == TAG_CPU_ARCH_V6_M
9045 || attr_arch == TAG_CPU_ARCH_V6S_M
9046 || attr_profile == 'M'))
25f8c692 9047 is_m = 1;
9779414d
DJ
9048#endif
9049 }
9050
9051 if (fp_model == ARM_FLOAT_AUTO)
9052 {
9779414d
DJ
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 9577 arm_disassembler_options = xstrdup ("reg-names-std");
471b9d15
MR
9578 const disasm_options_t *disasm_options
9579 = &disassembler_options_arm ()->options;
65b48a81
PB
9580 int num_disassembly_styles = 0;
9581 for (i = 0; disasm_options->name[i] != NULL; i++)
9582 if (CONST_STRNEQ (disasm_options->name[i], "reg-names-"))
9583 num_disassembly_styles++;
9584
9585 /* Initialize the array that will be passed to add_setshow_enum_cmd(). */
8d749320 9586 valid_disassembly_styles = XNEWVEC (const char *,
65b48a81
PB
9587 num_disassembly_styles + 1);
9588 for (i = j = 0; disasm_options->name[i] != NULL; i++)
9589 if (CONST_STRNEQ (disasm_options->name[i], "reg-names-"))
9590 {
9591 size_t offset = strlen ("reg-names-");
9592 const char *style = disasm_options->name[i];
9593 valid_disassembly_styles[j++] = &style[offset];
9594 length = snprintf (rdptr, rest, "%s - %s\n", &style[offset],
9595 disasm_options->description[i]);
9596 rdptr += length;
9597 rest -= length;
9598 }
94c30b78 9599 /* Mark the end of valid options. */
65b48a81 9600 valid_disassembly_styles[num_disassembly_styles] = NULL;
c906108c 9601
edefbb7c 9602 /* Create the help text. */
d7e74731
PA
9603 std::string helptext = string_printf ("%s%s%s",
9604 _("The valid values are:\n"),
9605 regdesc,
9606 _("The default is \"std\"."));
ed9a39eb 9607
edefbb7c
AC
9608 add_setshow_enum_cmd("disassembler", no_class,
9609 valid_disassembly_styles, &disassembly_style,
9610 _("Set the disassembly style."),
9611 _("Show the disassembly style."),
09b0e4b0 9612 helptext.c_str (),
2c5b56ce 9613 set_disassembly_style_sfunc,
65b48a81 9614 show_disassembly_style_sfunc,
7376b4c2 9615 &setarmcmdlist, &showarmcmdlist);
edefbb7c
AC
9616
9617 add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32,
9618 _("Set usage of ARM 32-bit mode."),
9619 _("Show usage of ARM 32-bit mode."),
9620 _("When off, a 26-bit PC will be used."),
2c5b56ce 9621 NULL,
0963b4bd
MS
9622 NULL, /* FIXME: i18n: Usage of ARM 32-bit
9623 mode is %s. */
26304000 9624 &setarmcmdlist, &showarmcmdlist);
c906108c 9625
fd50bc42 9626 /* Add a command to allow the user to force the FPU model. */
edefbb7c
AC
9627 add_setshow_enum_cmd ("fpu", no_class, fp_model_strings, &current_fp_model,
9628 _("Set the floating point type."),
9629 _("Show the floating point type."),
9630 _("auto - Determine the FP typefrom the OS-ABI.\n\
9631softfpa - Software FP, mixed-endian doubles on little-endian ARMs.\n\
9632fpa - FPA co-processor (GCC compiled).\n\
9633softvfp - Software FP with pure-endian doubles.\n\
9634vfp - VFP co-processor."),
edefbb7c 9635 set_fp_model_sfunc, show_fp_model,
7376b4c2 9636 &setarmcmdlist, &showarmcmdlist);
fd50bc42 9637
28e97307
DJ
9638 /* Add a command to allow the user to force the ABI. */
9639 add_setshow_enum_cmd ("abi", class_support, arm_abi_strings, &arm_abi_string,
9640 _("Set the ABI."),
9641 _("Show the ABI."),
9642 NULL, arm_set_abi, arm_show_abi,
9643 &setarmcmdlist, &showarmcmdlist);
9644
0428b8f5
DJ
9645 /* Add two commands to allow the user to force the assumed
9646 execution mode. */
9647 add_setshow_enum_cmd ("fallback-mode", class_support,
9648 arm_mode_strings, &arm_fallback_mode_string,
9649 _("Set the mode assumed when symbols are unavailable."),
9650 _("Show the mode assumed when symbols are unavailable."),
9651 NULL, NULL, arm_show_fallback_mode,
9652 &setarmcmdlist, &showarmcmdlist);
9653 add_setshow_enum_cmd ("force-mode", class_support,
9654 arm_mode_strings, &arm_force_mode_string,
9655 _("Set the mode assumed even when symbols are available."),
9656 _("Show the mode assumed even when symbols are available."),
9657 NULL, NULL, arm_show_force_mode,
9658 &setarmcmdlist, &showarmcmdlist);
9659
6529d2dd 9660 /* Debugging flag. */
edefbb7c
AC
9661 add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
9662 _("Set ARM debugging."),
9663 _("Show ARM debugging."),
9664 _("When on, arm-specific debugging is enabled."),
2c5b56ce 9665 NULL,
7915a72c 9666 NULL, /* FIXME: i18n: "ARM debugging is %s. */
26304000 9667 &setdebuglist, &showdebuglist);
b121eeb9
YQ
9668
9669#if GDB_SELF_TEST
1526853e 9670 selftests::register_test ("arm-record", selftests::arm_record_test);
b121eeb9
YQ
9671#endif
9672
c906108c 9673}
72508ac0
PO
9674
9675/* ARM-reversible process record data structures. */
9676
9677#define ARM_INSN_SIZE_BYTES 4
9678#define THUMB_INSN_SIZE_BYTES 2
9679#define THUMB2_INSN_SIZE_BYTES 4
9680
9681
71e396f9
LM
9682/* Position of the bit within a 32-bit ARM instruction
9683 that defines whether the instruction is a load or store. */
72508ac0
PO
9684#define INSN_S_L_BIT_NUM 20
9685
9686#define REG_ALLOC(REGS, LENGTH, RECORD_BUF) \
9687 do \
9688 { \
9689 unsigned int reg_len = LENGTH; \
9690 if (reg_len) \
9691 { \
9692 REGS = XNEWVEC (uint32_t, reg_len); \
9693 memcpy(&REGS[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
9694 } \
9695 } \
9696 while (0)
9697
9698#define MEM_ALLOC(MEMS, LENGTH, RECORD_BUF) \
9699 do \
9700 { \
9701 unsigned int mem_len = LENGTH; \
9702 if (mem_len) \
9703 { \
9704 MEMS = XNEWVEC (struct arm_mem_r, mem_len); \
9705 memcpy(&MEMS->len, &RECORD_BUF[0], \
9706 sizeof(struct arm_mem_r) * LENGTH); \
9707 } \
9708 } \
9709 while (0)
9710
9711/* Checks whether insn is already recorded or yet to be decoded. (boolean expression). */
9712#define INSN_RECORDED(ARM_RECORD) \
9713 (0 != (ARM_RECORD)->reg_rec_count || 0 != (ARM_RECORD)->mem_rec_count)
9714
9715/* ARM memory record structure. */
9716struct arm_mem_r
9717{
9718 uint32_t len; /* Record length. */
bfbbec00 9719 uint32_t addr; /* Memory address. */
72508ac0
PO
9720};
9721
9722/* ARM instruction record contains opcode of current insn
9723 and execution state (before entry to decode_insn()),
9724 contains list of to-be-modified registers and
9725 memory blocks (on return from decode_insn()). */
9726
9727typedef struct insn_decode_record_t
9728{
9729 struct gdbarch *gdbarch;
9730 struct regcache *regcache;
9731 CORE_ADDR this_addr; /* Address of the insn being decoded. */
9732 uint32_t arm_insn; /* Should accommodate thumb. */
9733 uint32_t cond; /* Condition code. */
9734 uint32_t opcode; /* Insn opcode. */
9735 uint32_t decode; /* Insn decode bits. */
9736 uint32_t mem_rec_count; /* No of mem records. */
9737 uint32_t reg_rec_count; /* No of reg records. */
9738 uint32_t *arm_regs; /* Registers to be saved for this record. */
9739 struct arm_mem_r *arm_mems; /* Memory to be saved for this record. */
9740} insn_decode_record;
9741
9742
9743/* Checks ARM SBZ and SBO mandatory fields. */
9744
9745static int
9746sbo_sbz (uint32_t insn, uint32_t bit_num, uint32_t len, uint32_t sbo)
9747{
9748 uint32_t ones = bits (insn, bit_num - 1, (bit_num -1) + (len - 1));
9749
9750 if (!len)
9751 return 1;
9752
9753 if (!sbo)
9754 ones = ~ones;
9755
9756 while (ones)
9757 {
9758 if (!(ones & sbo))
9759 {
9760 return 0;
9761 }
9762 ones = ones >> 1;
9763 }
9764 return 1;
9765}
9766
c6ec2b30
OJ
9767enum arm_record_result
9768{
9769 ARM_RECORD_SUCCESS = 0,
9770 ARM_RECORD_FAILURE = 1
9771};
9772
72508ac0
PO
9773typedef enum
9774{
9775 ARM_RECORD_STRH=1,
9776 ARM_RECORD_STRD
9777} arm_record_strx_t;
9778
9779typedef enum
9780{
9781 ARM_RECORD=1,
9782 THUMB_RECORD,
9783 THUMB2_RECORD
9784} record_type_t;
9785
9786
9787static int
9788arm_record_strx (insn_decode_record *arm_insn_r, uint32_t *record_buf,
9789 uint32_t *record_buf_mem, arm_record_strx_t str_type)
9790{
9791
9792 struct regcache *reg_cache = arm_insn_r->regcache;
9793 ULONGEST u_regval[2]= {0};
9794
9795 uint32_t reg_src1 = 0, reg_src2 = 0;
9796 uint32_t immed_high = 0, immed_low = 0,offset_8 = 0, tgt_mem_addr = 0;
72508ac0
PO
9797
9798 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
9799 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
72508ac0
PO
9800
9801 if (14 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
9802 {
9803 /* 1) Handle misc store, immediate offset. */
9804 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
9805 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
9806 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
9807 regcache_raw_read_unsigned (reg_cache, reg_src1,
9808 &u_regval[0]);
9809 if (ARM_PC_REGNUM == reg_src1)
9810 {
9811 /* If R15 was used as Rn, hence current PC+8. */
9812 u_regval[0] = u_regval[0] + 8;
9813 }
9814 offset_8 = (immed_high << 4) | immed_low;
9815 /* Calculate target store address. */
9816 if (14 == arm_insn_r->opcode)
9817 {
9818 tgt_mem_addr = u_regval[0] + offset_8;
9819 }
9820 else
9821 {
9822 tgt_mem_addr = u_regval[0] - offset_8;
9823 }
9824 if (ARM_RECORD_STRH == str_type)
9825 {
9826 record_buf_mem[0] = 2;
9827 record_buf_mem[1] = tgt_mem_addr;
9828 arm_insn_r->mem_rec_count = 1;
9829 }
9830 else if (ARM_RECORD_STRD == str_type)
9831 {
9832 record_buf_mem[0] = 4;
9833 record_buf_mem[1] = tgt_mem_addr;
9834 record_buf_mem[2] = 4;
9835 record_buf_mem[3] = tgt_mem_addr + 4;
9836 arm_insn_r->mem_rec_count = 2;
9837 }
9838 }
9839 else if (12 == arm_insn_r->opcode || 8 == arm_insn_r->opcode)
9840 {
9841 /* 2) Store, register offset. */
9842 /* Get Rm. */
9843 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
9844 /* Get Rn. */
9845 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
9846 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9847 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
9848 if (15 == reg_src2)
9849 {
9850 /* If R15 was used as Rn, hence current PC+8. */
9851 u_regval[0] = u_regval[0] + 8;
9852 }
9853 /* Calculate target store address, Rn +/- Rm, register offset. */
9854 if (12 == arm_insn_r->opcode)
9855 {
9856 tgt_mem_addr = u_regval[0] + u_regval[1];
9857 }
9858 else
9859 {
9860 tgt_mem_addr = u_regval[1] - u_regval[0];
9861 }
9862 if (ARM_RECORD_STRH == str_type)
9863 {
9864 record_buf_mem[0] = 2;
9865 record_buf_mem[1] = tgt_mem_addr;
9866 arm_insn_r->mem_rec_count = 1;
9867 }
9868 else if (ARM_RECORD_STRD == str_type)
9869 {
9870 record_buf_mem[0] = 4;
9871 record_buf_mem[1] = tgt_mem_addr;
9872 record_buf_mem[2] = 4;
9873 record_buf_mem[3] = tgt_mem_addr + 4;
9874 arm_insn_r->mem_rec_count = 2;
9875 }
9876 }
9877 else if (11 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
9878 || 2 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
9879 {
9880 /* 3) Store, immediate pre-indexed. */
9881 /* 5) Store, immediate post-indexed. */
9882 immed_low = bits (arm_insn_r->arm_insn, 0, 3);
9883 immed_high = bits (arm_insn_r->arm_insn, 8, 11);
9884 offset_8 = (immed_high << 4) | immed_low;
9885 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
9886 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9887 /* Calculate target store address, Rn +/- Rm, register offset. */
9888 if (15 == arm_insn_r->opcode || 6 == arm_insn_r->opcode)
9889 {
9890 tgt_mem_addr = u_regval[0] + offset_8;
9891 }
9892 else
9893 {
9894 tgt_mem_addr = u_regval[0] - offset_8;
9895 }
9896 if (ARM_RECORD_STRH == str_type)
9897 {
9898 record_buf_mem[0] = 2;
9899 record_buf_mem[1] = tgt_mem_addr;
9900 arm_insn_r->mem_rec_count = 1;
9901 }
9902 else if (ARM_RECORD_STRD == str_type)
9903 {
9904 record_buf_mem[0] = 4;
9905 record_buf_mem[1] = tgt_mem_addr;
9906 record_buf_mem[2] = 4;
9907 record_buf_mem[3] = tgt_mem_addr + 4;
9908 arm_insn_r->mem_rec_count = 2;
9909 }
9910 /* Record Rn also as it changes. */
9911 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
9912 arm_insn_r->reg_rec_count = 1;
9913 }
9914 else if (9 == arm_insn_r->opcode || 13 == arm_insn_r->opcode
9915 || 0 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
9916 {
9917 /* 4) Store, register pre-indexed. */
9918 /* 6) Store, register post -indexed. */
9919 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
9920 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
9921 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
9922 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
9923 /* Calculate target store address, Rn +/- Rm, register offset. */
9924 if (13 == arm_insn_r->opcode || 4 == arm_insn_r->opcode)
9925 {
9926 tgt_mem_addr = u_regval[0] + u_regval[1];
9927 }
9928 else
9929 {
9930 tgt_mem_addr = u_regval[1] - u_regval[0];
9931 }
9932 if (ARM_RECORD_STRH == str_type)
9933 {
9934 record_buf_mem[0] = 2;
9935 record_buf_mem[1] = tgt_mem_addr;
9936 arm_insn_r->mem_rec_count = 1;
9937 }
9938 else if (ARM_RECORD_STRD == str_type)
9939 {
9940 record_buf_mem[0] = 4;
9941 record_buf_mem[1] = tgt_mem_addr;
9942 record_buf_mem[2] = 4;
9943 record_buf_mem[3] = tgt_mem_addr + 4;
9944 arm_insn_r->mem_rec_count = 2;
9945 }
9946 /* Record Rn also as it changes. */
9947 *(record_buf) = bits (arm_insn_r->arm_insn, 16, 19);
9948 arm_insn_r->reg_rec_count = 1;
9949 }
9950 return 0;
9951}
9952
9953/* Handling ARM extension space insns. */
9954
9955static int
9956arm_record_extension_space (insn_decode_record *arm_insn_r)
9957{
df95a9cf 9958 int ret = 0; /* Return value: -1:record failure ; 0:success */
72508ac0
PO
9959 uint32_t opcode1 = 0, opcode2 = 0, insn_op1 = 0;
9960 uint32_t record_buf[8], record_buf_mem[8];
9961 uint32_t reg_src1 = 0;
72508ac0
PO
9962 struct regcache *reg_cache = arm_insn_r->regcache;
9963 ULONGEST u_regval = 0;
9964
9965 gdb_assert (!INSN_RECORDED(arm_insn_r));
9966 /* Handle unconditional insn extension space. */
9967
9968 opcode1 = bits (arm_insn_r->arm_insn, 20, 27);
9969 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
9970 if (arm_insn_r->cond)
9971 {
9972 /* PLD has no affect on architectural state, it just affects
9973 the caches. */
9974 if (5 == ((opcode1 & 0xE0) >> 5))
9975 {
9976 /* BLX(1) */
9977 record_buf[0] = ARM_PS_REGNUM;
9978 record_buf[1] = ARM_LR_REGNUM;
9979 arm_insn_r->reg_rec_count = 2;
9980 }
9981 /* STC2, LDC2, MCR2, MRC2, CDP2: <TBD>, co-processor insn. */
9982 }
9983
9984
9985 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
9986 if (3 == opcode1 && bit (arm_insn_r->arm_insn, 4))
9987 {
9988 ret = -1;
9989 /* Undefined instruction on ARM V5; need to handle if later
9990 versions define it. */
9991 }
9992
9993 opcode1 = bits (arm_insn_r->arm_insn, 24, 27);
9994 opcode2 = bits (arm_insn_r->arm_insn, 4, 7);
9995 insn_op1 = bits (arm_insn_r->arm_insn, 20, 23);
9996
9997 /* Handle arithmetic insn extension space. */
9998 if (!opcode1 && 9 == opcode2 && 1 != arm_insn_r->cond
9999 && !INSN_RECORDED(arm_insn_r))
10000 {
10001 /* Handle MLA(S) and MUL(S). */
b020ff80 10002 if (in_inclusive_range (insn_op1, 0U, 3U))
72508ac0
PO
10003 {
10004 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10005 record_buf[1] = ARM_PS_REGNUM;
10006 arm_insn_r->reg_rec_count = 2;
10007 }
b020ff80 10008 else if (in_inclusive_range (insn_op1, 4U, 15U))
72508ac0
PO
10009 {
10010 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
10011 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10012 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10013 record_buf[2] = ARM_PS_REGNUM;
10014 arm_insn_r->reg_rec_count = 3;
10015 }
10016 }
10017
10018 opcode1 = bits (arm_insn_r->arm_insn, 26, 27);
10019 opcode2 = bits (arm_insn_r->arm_insn, 23, 24);
10020 insn_op1 = bits (arm_insn_r->arm_insn, 21, 22);
10021
10022 /* Handle control insn extension space. */
10023
10024 if (!opcode1 && 2 == opcode2 && !bit (arm_insn_r->arm_insn, 20)
10025 && 1 != arm_insn_r->cond && !INSN_RECORDED(arm_insn_r))
10026 {
10027 if (!bit (arm_insn_r->arm_insn,25))
10028 {
10029 if (!bits (arm_insn_r->arm_insn, 4, 7))
10030 {
10031 if ((0 == insn_op1) || (2 == insn_op1))
10032 {
10033 /* MRS. */
10034 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10035 arm_insn_r->reg_rec_count = 1;
10036 }
10037 else if (1 == insn_op1)
10038 {
10039 /* CSPR is going to be changed. */
10040 record_buf[0] = ARM_PS_REGNUM;
10041 arm_insn_r->reg_rec_count = 1;
10042 }
10043 else if (3 == insn_op1)
10044 {
10045 /* SPSR is going to be changed. */
10046 /* We need to get SPSR value, which is yet to be done. */
72508ac0
PO
10047 return -1;
10048 }
10049 }
10050 else if (1 == bits (arm_insn_r->arm_insn, 4, 7))
10051 {
10052 if (1 == insn_op1)
10053 {
10054 /* BX. */
10055 record_buf[0] = ARM_PS_REGNUM;
10056 arm_insn_r->reg_rec_count = 1;
10057 }
10058 else if (3 == insn_op1)
10059 {
10060 /* CLZ. */
10061 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10062 arm_insn_r->reg_rec_count = 1;
10063 }
10064 }
10065 else if (3 == bits (arm_insn_r->arm_insn, 4, 7))
10066 {
10067 /* BLX. */
10068 record_buf[0] = ARM_PS_REGNUM;
10069 record_buf[1] = ARM_LR_REGNUM;
10070 arm_insn_r->reg_rec_count = 2;
10071 }
10072 else if (5 == bits (arm_insn_r->arm_insn, 4, 7))
10073 {
10074 /* QADD, QSUB, QDADD, QDSUB */
10075 record_buf[0] = ARM_PS_REGNUM;
10076 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10077 arm_insn_r->reg_rec_count = 2;
10078 }
10079 else if (7 == bits (arm_insn_r->arm_insn, 4, 7))
10080 {
10081 /* BKPT. */
10082 record_buf[0] = ARM_PS_REGNUM;
10083 record_buf[1] = ARM_LR_REGNUM;
10084 arm_insn_r->reg_rec_count = 2;
10085
10086 /* Save SPSR also;how? */
72508ac0
PO
10087 return -1;
10088 }
10089 else if(8 == bits (arm_insn_r->arm_insn, 4, 7)
10090 || 10 == bits (arm_insn_r->arm_insn, 4, 7)
10091 || 12 == bits (arm_insn_r->arm_insn, 4, 7)
10092 || 14 == bits (arm_insn_r->arm_insn, 4, 7)
10093 )
10094 {
10095 if (0 == insn_op1 || 1 == insn_op1)
10096 {
10097 /* SMLA<x><y>, SMLAW<y>, SMULW<y>. */
10098 /* We dont do optimization for SMULW<y> where we
10099 need only Rd. */
10100 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10101 record_buf[1] = ARM_PS_REGNUM;
10102 arm_insn_r->reg_rec_count = 2;
10103 }
10104 else if (2 == insn_op1)
10105 {
10106 /* SMLAL<x><y>. */
10107 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10108 record_buf[1] = bits (arm_insn_r->arm_insn, 16, 19);
10109 arm_insn_r->reg_rec_count = 2;
10110 }
10111 else if (3 == insn_op1)
10112 {
10113 /* SMUL<x><y>. */
10114 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10115 arm_insn_r->reg_rec_count = 1;
10116 }
10117 }
10118 }
10119 else
10120 {
10121 /* MSR : immediate form. */
10122 if (1 == insn_op1)
10123 {
10124 /* CSPR is going to be changed. */
10125 record_buf[0] = ARM_PS_REGNUM;
10126 arm_insn_r->reg_rec_count = 1;
10127 }
10128 else if (3 == insn_op1)
10129 {
10130 /* SPSR is going to be changed. */
10131 /* we need to get SPSR value, which is yet to be done */
72508ac0
PO
10132 return -1;
10133 }
10134 }
10135 }
10136
10137 opcode1 = bits (arm_insn_r->arm_insn, 25, 27);
10138 opcode2 = bits (arm_insn_r->arm_insn, 20, 24);
10139 insn_op1 = bits (arm_insn_r->arm_insn, 5, 6);
10140
10141 /* Handle load/store insn extension space. */
10142
10143 if (!opcode1 && bit (arm_insn_r->arm_insn, 7)
10144 && bit (arm_insn_r->arm_insn, 4) && 1 != arm_insn_r->cond
10145 && !INSN_RECORDED(arm_insn_r))
10146 {
10147 /* SWP/SWPB. */
10148 if (0 == insn_op1)
10149 {
10150 /* These insn, changes register and memory as well. */
10151 /* SWP or SWPB insn. */
10152 /* Get memory address given by Rn. */
10153 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10154 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
10155 /* SWP insn ?, swaps word. */
10156 if (8 == arm_insn_r->opcode)
10157 {
10158 record_buf_mem[0] = 4;
10159 }
10160 else
10161 {
10162 /* SWPB insn, swaps only byte. */
10163 record_buf_mem[0] = 1;
10164 }
10165 record_buf_mem[1] = u_regval;
10166 arm_insn_r->mem_rec_count = 1;
10167 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10168 arm_insn_r->reg_rec_count = 1;
10169 }
10170 else if (1 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10171 {
10172 /* STRH. */
10173 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10174 ARM_RECORD_STRH);
10175 }
10176 else if (2 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10177 {
10178 /* LDRD. */
10179 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10180 record_buf[1] = record_buf[0] + 1;
10181 arm_insn_r->reg_rec_count = 2;
10182 }
10183 else if (3 == insn_op1 && !bit (arm_insn_r->arm_insn, 20))
10184 {
10185 /* STRD. */
10186 arm_record_strx(arm_insn_r, &record_buf[0], &record_buf_mem[0],
10187 ARM_RECORD_STRD);
10188 }
10189 else if (bit (arm_insn_r->arm_insn, 20) && insn_op1 <= 3)
10190 {
10191 /* LDRH, LDRSB, LDRSH. */
10192 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10193 arm_insn_r->reg_rec_count = 1;
10194 }
10195
10196 }
10197
10198 opcode1 = bits (arm_insn_r->arm_insn, 23, 27);
10199 if (24 == opcode1 && bit (arm_insn_r->arm_insn, 21)
10200 && !INSN_RECORDED(arm_insn_r))
10201 {
10202 ret = -1;
10203 /* Handle coprocessor insn extension space. */
10204 }
10205
10206 /* To be done for ARMv5 and later; as of now we return -1. */
10207 if (-1 == ret)
ca92db2d 10208 return ret;
72508ac0
PO
10209
10210 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10211 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10212
10213 return ret;
10214}
10215
10216/* Handling opcode 000 insns. */
10217
10218static int
10219arm_record_data_proc_misc_ld_str (insn_decode_record *arm_insn_r)
10220{
10221 struct regcache *reg_cache = arm_insn_r->regcache;
10222 uint32_t record_buf[8], record_buf_mem[8];
10223 ULONGEST u_regval[2] = {0};
10224
8d49165d 10225 uint32_t reg_src1 = 0;
72508ac0
PO
10226 uint32_t opcode1 = 0;
10227
10228 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10229 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10230 opcode1 = bits (arm_insn_r->arm_insn, 20, 24);
10231
2d9e6acb 10232 if (!((opcode1 & 0x19) == 0x10))
72508ac0 10233 {
2d9e6acb
YQ
10234 /* Data-processing (register) and Data-processing (register-shifted
10235 register */
10236 /* Out of 11 shifter operands mode, all the insn modifies destination
10237 register, which is specified by 13-16 decode. */
10238 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10239 record_buf[1] = ARM_PS_REGNUM;
10240 arm_insn_r->reg_rec_count = 2;
72508ac0 10241 }
2d9e6acb 10242 else if ((arm_insn_r->decode < 8) && ((opcode1 & 0x19) == 0x10))
72508ac0 10243 {
2d9e6acb
YQ
10244 /* Miscellaneous instructions */
10245
10246 if (3 == arm_insn_r->decode && 0x12 == opcode1
10247 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
10248 {
10249 /* Handle BLX, branch and link/exchange. */
10250 if (9 == arm_insn_r->opcode)
10251 {
10252 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm,
10253 and R14 stores the return address. */
10254 record_buf[0] = ARM_PS_REGNUM;
10255 record_buf[1] = ARM_LR_REGNUM;
10256 arm_insn_r->reg_rec_count = 2;
10257 }
10258 }
10259 else if (7 == arm_insn_r->decode && 0x12 == opcode1)
10260 {
10261 /* Handle enhanced software breakpoint insn, BKPT. */
10262 /* CPSR is changed to be executed in ARM state, disabling normal
10263 interrupts, entering abort mode. */
10264 /* According to high vector configuration PC is set. */
10265 /* user hit breakpoint and type reverse, in
10266 that case, we need to go back with previous CPSR and
10267 Program Counter. */
10268 record_buf[0] = ARM_PS_REGNUM;
10269 record_buf[1] = ARM_LR_REGNUM;
10270 arm_insn_r->reg_rec_count = 2;
10271
10272 /* Save SPSR also; how? */
10273 return -1;
10274 }
10275 else if (1 == arm_insn_r->decode && 0x12 == opcode1
10276 && sbo_sbz (arm_insn_r->arm_insn, 9, 12, 1))
10277 {
10278 /* Handle BX, branch and link/exchange. */
10279 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm. */
10280 record_buf[0] = ARM_PS_REGNUM;
10281 arm_insn_r->reg_rec_count = 1;
10282 }
10283 else if (1 == arm_insn_r->decode && 0x16 == opcode1
10284 && sbo_sbz (arm_insn_r->arm_insn, 9, 4, 1)
10285 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1))
10286 {
10287 /* Count leading zeros: CLZ. */
10288 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10289 arm_insn_r->reg_rec_count = 1;
10290 }
10291 else if (!bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM)
10292 && (8 == arm_insn_r->opcode || 10 == arm_insn_r->opcode)
10293 && sbo_sbz (arm_insn_r->arm_insn, 17, 4, 1)
10294 && sbo_sbz (arm_insn_r->arm_insn, 1, 12, 0))
10295 {
10296 /* Handle MRS insn. */
10297 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10298 arm_insn_r->reg_rec_count = 1;
10299 }
72508ac0 10300 }
2d9e6acb 10301 else if (9 == arm_insn_r->decode && opcode1 < 0x10)
72508ac0 10302 {
2d9e6acb
YQ
10303 /* Multiply and multiply-accumulate */
10304
10305 /* Handle multiply instructions. */
10306 /* MLA, MUL, SMLAL, SMULL, UMLAL, UMULL. */
10307 if (0 == arm_insn_r->opcode || 1 == arm_insn_r->opcode)
10308 {
10309 /* Handle MLA and MUL. */
10310 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10311 record_buf[1] = ARM_PS_REGNUM;
10312 arm_insn_r->reg_rec_count = 2;
10313 }
10314 else if (4 <= arm_insn_r->opcode && 7 >= arm_insn_r->opcode)
10315 {
10316 /* Handle SMLAL, SMULL, UMLAL, UMULL. */
10317 record_buf[0] = bits (arm_insn_r->arm_insn, 16, 19);
10318 record_buf[1] = bits (arm_insn_r->arm_insn, 12, 15);
10319 record_buf[2] = ARM_PS_REGNUM;
10320 arm_insn_r->reg_rec_count = 3;
10321 }
10322 }
10323 else if (9 == arm_insn_r->decode && opcode1 > 0x10)
10324 {
10325 /* Synchronization primitives */
10326
72508ac0
PO
10327 /* Handling SWP, SWPB. */
10328 /* These insn, changes register and memory as well. */
10329 /* SWP or SWPB insn. */
10330
10331 reg_src1 = bits (arm_insn_r->arm_insn, 16, 19);
10332 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10333 /* SWP insn ?, swaps word. */
10334 if (8 == arm_insn_r->opcode)
2d9e6acb
YQ
10335 {
10336 record_buf_mem[0] = 4;
10337 }
10338 else
10339 {
10340 /* SWPB insn, swaps only byte. */
10341 record_buf_mem[0] = 1;
10342 }
72508ac0
PO
10343 record_buf_mem[1] = u_regval[0];
10344 arm_insn_r->mem_rec_count = 1;
10345 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10346 arm_insn_r->reg_rec_count = 1;
10347 }
2d9e6acb
YQ
10348 else if (11 == arm_insn_r->decode || 13 == arm_insn_r->decode
10349 || 15 == arm_insn_r->decode)
72508ac0 10350 {
2d9e6acb
YQ
10351 if ((opcode1 & 0x12) == 2)
10352 {
10353 /* Extra load/store (unprivileged) */
10354 return -1;
10355 }
10356 else
10357 {
10358 /* Extra load/store */
10359 switch (bits (arm_insn_r->arm_insn, 5, 6))
10360 {
10361 case 1:
10362 if ((opcode1 & 0x05) == 0x0 || (opcode1 & 0x05) == 0x4)
10363 {
10364 /* STRH (register), STRH (immediate) */
10365 arm_record_strx (arm_insn_r, &record_buf[0],
10366 &record_buf_mem[0], ARM_RECORD_STRH);
10367 }
10368 else if ((opcode1 & 0x05) == 0x1)
10369 {
10370 /* LDRH (register) */
10371 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10372 arm_insn_r->reg_rec_count = 1;
72508ac0 10373
2d9e6acb
YQ
10374 if (bit (arm_insn_r->arm_insn, 21))
10375 {
10376 /* Write back to Rn. */
10377 record_buf[arm_insn_r->reg_rec_count++]
10378 = bits (arm_insn_r->arm_insn, 16, 19);
10379 }
10380 }
10381 else if ((opcode1 & 0x05) == 0x5)
10382 {
10383 /* LDRH (immediate), LDRH (literal) */
10384 int rn = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0 10385
2d9e6acb
YQ
10386 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10387 arm_insn_r->reg_rec_count = 1;
10388
10389 if (rn != 15)
10390 {
10391 /*LDRH (immediate) */
10392 if (bit (arm_insn_r->arm_insn, 21))
10393 {
10394 /* Write back to Rn. */
10395 record_buf[arm_insn_r->reg_rec_count++] = rn;
10396 }
10397 }
10398 }
10399 else
10400 return -1;
10401 break;
10402 case 2:
10403 if ((opcode1 & 0x05) == 0x0)
10404 {
10405 /* LDRD (register) */
10406 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10407 record_buf[1] = record_buf[0] + 1;
10408 arm_insn_r->reg_rec_count = 2;
10409
10410 if (bit (arm_insn_r->arm_insn, 21))
10411 {
10412 /* Write back to Rn. */
10413 record_buf[arm_insn_r->reg_rec_count++]
10414 = bits (arm_insn_r->arm_insn, 16, 19);
10415 }
10416 }
10417 else if ((opcode1 & 0x05) == 0x1)
10418 {
10419 /* LDRSB (register) */
10420 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10421 arm_insn_r->reg_rec_count = 1;
10422
10423 if (bit (arm_insn_r->arm_insn, 21))
10424 {
10425 /* Write back to Rn. */
10426 record_buf[arm_insn_r->reg_rec_count++]
10427 = bits (arm_insn_r->arm_insn, 16, 19);
10428 }
10429 }
10430 else if ((opcode1 & 0x05) == 0x4 || (opcode1 & 0x05) == 0x5)
10431 {
10432 /* LDRD (immediate), LDRD (literal), LDRSB (immediate),
10433 LDRSB (literal) */
10434 int rn = bits (arm_insn_r->arm_insn, 16, 19);
10435
10436 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10437 arm_insn_r->reg_rec_count = 1;
10438
10439 if (rn != 15)
10440 {
10441 /*LDRD (immediate), LDRSB (immediate) */
10442 if (bit (arm_insn_r->arm_insn, 21))
10443 {
10444 /* Write back to Rn. */
10445 record_buf[arm_insn_r->reg_rec_count++] = rn;
10446 }
10447 }
10448 }
10449 else
10450 return -1;
10451 break;
10452 case 3:
10453 if ((opcode1 & 0x05) == 0x0)
10454 {
10455 /* STRD (register) */
10456 arm_record_strx (arm_insn_r, &record_buf[0],
10457 &record_buf_mem[0], ARM_RECORD_STRD);
10458 }
10459 else if ((opcode1 & 0x05) == 0x1)
10460 {
10461 /* LDRSH (register) */
10462 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10463 arm_insn_r->reg_rec_count = 1;
10464
10465 if (bit (arm_insn_r->arm_insn, 21))
10466 {
10467 /* Write back to Rn. */
10468 record_buf[arm_insn_r->reg_rec_count++]
10469 = bits (arm_insn_r->arm_insn, 16, 19);
10470 }
10471 }
10472 else if ((opcode1 & 0x05) == 0x4)
10473 {
10474 /* STRD (immediate) */
10475 arm_record_strx (arm_insn_r, &record_buf[0],
10476 &record_buf_mem[0], ARM_RECORD_STRD);
10477 }
10478 else if ((opcode1 & 0x05) == 0x5)
10479 {
10480 /* LDRSH (immediate), LDRSH (literal) */
10481 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10482 arm_insn_r->reg_rec_count = 1;
10483
10484 if (bit (arm_insn_r->arm_insn, 21))
10485 {
10486 /* Write back to Rn. */
10487 record_buf[arm_insn_r->reg_rec_count++]
10488 = bits (arm_insn_r->arm_insn, 16, 19);
10489 }
10490 }
10491 else
10492 return -1;
10493 break;
10494 default:
10495 return -1;
10496 }
10497 }
72508ac0
PO
10498 }
10499 else
10500 {
10501 return -1;
10502 }
10503
10504 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10505 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10506 return 0;
10507}
10508
10509/* Handling opcode 001 insns. */
10510
10511static int
10512arm_record_data_proc_imm (insn_decode_record *arm_insn_r)
10513{
10514 uint32_t record_buf[8], record_buf_mem[8];
10515
10516 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10517 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10518
10519 if ((9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode)
10520 && 2 == bits (arm_insn_r->arm_insn, 20, 21)
10521 && sbo_sbz (arm_insn_r->arm_insn, 13, 4, 1)
10522 )
10523 {
10524 /* Handle MSR insn. */
10525 if (9 == arm_insn_r->opcode)
10526 {
10527 /* CSPR is going to be changed. */
10528 record_buf[0] = ARM_PS_REGNUM;
10529 arm_insn_r->reg_rec_count = 1;
10530 }
10531 else
10532 {
10533 /* SPSR is going to be changed. */
10534 }
10535 }
10536 else if (arm_insn_r->opcode <= 15)
10537 {
10538 /* Normal data processing insns. */
10539 /* Out of 11 shifter operands mode, all the insn modifies destination
10540 register, which is specified by 13-16 decode. */
10541 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10542 record_buf[1] = ARM_PS_REGNUM;
10543 arm_insn_r->reg_rec_count = 2;
10544 }
10545 else
10546 {
10547 return -1;
10548 }
10549
10550 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10551 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10552 return 0;
10553}
10554
c55978a6
YQ
10555static int
10556arm_record_media (insn_decode_record *arm_insn_r)
10557{
10558 uint32_t record_buf[8];
10559
10560 switch (bits (arm_insn_r->arm_insn, 22, 24))
10561 {
10562 case 0:
10563 /* Parallel addition and subtraction, signed */
10564 case 1:
10565 /* Parallel addition and subtraction, unsigned */
10566 case 2:
10567 case 3:
10568 /* Packing, unpacking, saturation and reversal */
10569 {
10570 int rd = bits (arm_insn_r->arm_insn, 12, 15);
10571
10572 record_buf[arm_insn_r->reg_rec_count++] = rd;
10573 }
10574 break;
10575
10576 case 4:
10577 case 5:
10578 /* Signed multiplies */
10579 {
10580 int rd = bits (arm_insn_r->arm_insn, 16, 19);
10581 unsigned int op1 = bits (arm_insn_r->arm_insn, 20, 22);
10582
10583 record_buf[arm_insn_r->reg_rec_count++] = rd;
10584 if (op1 == 0x0)
10585 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
10586 else if (op1 == 0x4)
10587 record_buf[arm_insn_r->reg_rec_count++]
10588 = bits (arm_insn_r->arm_insn, 12, 15);
10589 }
10590 break;
10591
10592 case 6:
10593 {
10594 if (bit (arm_insn_r->arm_insn, 21)
10595 && bits (arm_insn_r->arm_insn, 5, 6) == 0x2)
10596 {
10597 /* SBFX */
10598 record_buf[arm_insn_r->reg_rec_count++]
10599 = bits (arm_insn_r->arm_insn, 12, 15);
10600 }
10601 else if (bits (arm_insn_r->arm_insn, 20, 21) == 0x0
10602 && bits (arm_insn_r->arm_insn, 5, 7) == 0x0)
10603 {
10604 /* USAD8 and USADA8 */
10605 record_buf[arm_insn_r->reg_rec_count++]
10606 = bits (arm_insn_r->arm_insn, 16, 19);
10607 }
10608 }
10609 break;
10610
10611 case 7:
10612 {
10613 if (bits (arm_insn_r->arm_insn, 20, 21) == 0x3
10614 && bits (arm_insn_r->arm_insn, 5, 7) == 0x7)
10615 {
10616 /* Permanently UNDEFINED */
10617 return -1;
10618 }
10619 else
10620 {
10621 /* BFC, BFI and UBFX */
10622 record_buf[arm_insn_r->reg_rec_count++]
10623 = bits (arm_insn_r->arm_insn, 12, 15);
10624 }
10625 }
10626 break;
10627
10628 default:
10629 return -1;
10630 }
10631
10632 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10633
10634 return 0;
10635}
10636
71e396f9 10637/* Handle ARM mode instructions with opcode 010. */
72508ac0
PO
10638
10639static int
10640arm_record_ld_st_imm_offset (insn_decode_record *arm_insn_r)
10641{
10642 struct regcache *reg_cache = arm_insn_r->regcache;
10643
71e396f9
LM
10644 uint32_t reg_base , reg_dest;
10645 uint32_t offset_12, tgt_mem_addr;
72508ac0 10646 uint32_t record_buf[8], record_buf_mem[8];
71e396f9
LM
10647 unsigned char wback;
10648 ULONGEST u_regval;
72508ac0 10649
71e396f9
LM
10650 /* Calculate wback. */
10651 wback = (bit (arm_insn_r->arm_insn, 24) == 0)
10652 || (bit (arm_insn_r->arm_insn, 21) == 1);
72508ac0 10653
71e396f9
LM
10654 arm_insn_r->reg_rec_count = 0;
10655 reg_base = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0
PO
10656
10657 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
10658 {
71e396f9
LM
10659 /* LDR (immediate), LDR (literal), LDRB (immediate), LDRB (literal), LDRBT
10660 and LDRT. */
10661
72508ac0 10662 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
71e396f9
LM
10663 record_buf[arm_insn_r->reg_rec_count++] = reg_dest;
10664
10665 /* The LDR instruction is capable of doing branching. If MOV LR, PC
10666 preceeds a LDR instruction having R15 as reg_base, it
10667 emulates a branch and link instruction, and hence we need to save
10668 CPSR and PC as well. */
10669 if (ARM_PC_REGNUM == reg_dest)
10670 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
10671
10672 /* If wback is true, also save the base register, which is going to be
10673 written to. */
10674 if (wback)
10675 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
10676 }
10677 else
10678 {
71e396f9
LM
10679 /* STR (immediate), STRB (immediate), STRBT and STRT. */
10680
72508ac0 10681 offset_12 = bits (arm_insn_r->arm_insn, 0, 11);
71e396f9
LM
10682 regcache_raw_read_unsigned (reg_cache, reg_base, &u_regval);
10683
10684 /* Handle bit U. */
72508ac0 10685 if (bit (arm_insn_r->arm_insn, 23))
71e396f9
LM
10686 {
10687 /* U == 1: Add the offset. */
10688 tgt_mem_addr = (uint32_t) u_regval + offset_12;
10689 }
72508ac0 10690 else
71e396f9
LM
10691 {
10692 /* U == 0: subtract the offset. */
10693 tgt_mem_addr = (uint32_t) u_regval - offset_12;
10694 }
10695
10696 /* Bit 22 tells us whether the store instruction writes 1 byte or 4
10697 bytes. */
10698 if (bit (arm_insn_r->arm_insn, 22))
10699 {
10700 /* STRB and STRBT: 1 byte. */
10701 record_buf_mem[0] = 1;
10702 }
10703 else
10704 {
10705 /* STR and STRT: 4 bytes. */
10706 record_buf_mem[0] = 4;
10707 }
10708
10709 /* Handle bit P. */
10710 if (bit (arm_insn_r->arm_insn, 24))
10711 record_buf_mem[1] = tgt_mem_addr;
10712 else
10713 record_buf_mem[1] = (uint32_t) u_regval;
72508ac0 10714
72508ac0
PO
10715 arm_insn_r->mem_rec_count = 1;
10716
71e396f9
LM
10717 /* If wback is true, also save the base register, which is going to be
10718 written to. */
10719 if (wback)
10720 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
10721 }
10722
10723 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10724 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10725 return 0;
10726}
10727
10728/* Handling opcode 011 insns. */
10729
10730static int
10731arm_record_ld_st_reg_offset (insn_decode_record *arm_insn_r)
10732{
10733 struct regcache *reg_cache = arm_insn_r->regcache;
10734
10735 uint32_t shift_imm = 0;
10736 uint32_t reg_src1 = 0, reg_src2 = 0, reg_dest = 0;
10737 uint32_t offset_12 = 0, tgt_mem_addr = 0;
10738 uint32_t record_buf[8], record_buf_mem[8];
10739
10740 LONGEST s_word;
10741 ULONGEST u_regval[2];
10742
c55978a6
YQ
10743 if (bit (arm_insn_r->arm_insn, 4))
10744 return arm_record_media (arm_insn_r);
10745
72508ac0
PO
10746 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 21, 24);
10747 arm_insn_r->decode = bits (arm_insn_r->arm_insn, 4, 7);
10748
10749 /* Handle enhanced store insns and LDRD DSP insn,
10750 order begins according to addressing modes for store insns
10751 STRH insn. */
10752
10753 /* LDR or STR? */
10754 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
10755 {
10756 reg_dest = bits (arm_insn_r->arm_insn, 12, 15);
10757 /* LDR insn has a capability to do branching, if
10758 MOV LR, PC is precedded by LDR insn having Rn as R15
10759 in that case, it emulates branch and link insn, and hence we
10760 need to save CSPR and PC as well. */
10761 if (15 != reg_dest)
10762 {
10763 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
10764 arm_insn_r->reg_rec_count = 1;
10765 }
10766 else
10767 {
10768 record_buf[0] = reg_dest;
10769 record_buf[1] = ARM_PS_REGNUM;
10770 arm_insn_r->reg_rec_count = 2;
10771 }
10772 }
10773 else
10774 {
10775 if (! bits (arm_insn_r->arm_insn, 4, 11))
10776 {
10777 /* Store insn, register offset and register pre-indexed,
10778 register post-indexed. */
10779 /* Get Rm. */
10780 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10781 /* Get Rn. */
10782 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10783 regcache_raw_read_unsigned (reg_cache, reg_src1
10784 , &u_regval[0]);
10785 regcache_raw_read_unsigned (reg_cache, reg_src2
10786 , &u_regval[1]);
10787 if (15 == reg_src2)
10788 {
10789 /* If R15 was used as Rn, hence current PC+8. */
10790 /* Pre-indexed mode doesnt reach here ; illegal insn. */
10791 u_regval[0] = u_regval[0] + 8;
10792 }
10793 /* Calculate target store address, Rn +/- Rm, register offset. */
10794 /* U == 1. */
10795 if (bit (arm_insn_r->arm_insn, 23))
10796 {
10797 tgt_mem_addr = u_regval[0] + u_regval[1];
10798 }
10799 else
10800 {
10801 tgt_mem_addr = u_regval[1] - u_regval[0];
10802 }
10803
10804 switch (arm_insn_r->opcode)
10805 {
10806 /* STR. */
10807 case 8:
10808 case 12:
10809 /* STR. */
10810 case 9:
10811 case 13:
10812 /* STRT. */
10813 case 1:
10814 case 5:
10815 /* STR. */
10816 case 0:
10817 case 4:
10818 record_buf_mem[0] = 4;
10819 break;
10820
10821 /* STRB. */
10822 case 10:
10823 case 14:
10824 /* STRB. */
10825 case 11:
10826 case 15:
10827 /* STRBT. */
10828 case 3:
10829 case 7:
10830 /* STRB. */
10831 case 2:
10832 case 6:
10833 record_buf_mem[0] = 1;
10834 break;
10835
10836 default:
10837 gdb_assert_not_reached ("no decoding pattern found");
10838 break;
10839 }
10840 record_buf_mem[1] = tgt_mem_addr;
10841 arm_insn_r->mem_rec_count = 1;
10842
10843 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
10844 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
10845 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
10846 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
10847 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
10848 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
10849 )
10850 {
10851 /* Rn is going to be changed in pre-indexed mode and
10852 post-indexed mode as well. */
10853 record_buf[0] = reg_src2;
10854 arm_insn_r->reg_rec_count = 1;
10855 }
10856 }
10857 else
10858 {
10859 /* Store insn, scaled register offset; scaled pre-indexed. */
10860 offset_12 = bits (arm_insn_r->arm_insn, 5, 6);
10861 /* Get Rm. */
10862 reg_src1 = bits (arm_insn_r->arm_insn, 0, 3);
10863 /* Get Rn. */
10864 reg_src2 = bits (arm_insn_r->arm_insn, 16, 19);
10865 /* Get shift_imm. */
10866 shift_imm = bits (arm_insn_r->arm_insn, 7, 11);
10867 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
10868 regcache_raw_read_signed (reg_cache, reg_src1, &s_word);
10869 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10870 /* Offset_12 used as shift. */
10871 switch (offset_12)
10872 {
10873 case 0:
10874 /* Offset_12 used as index. */
10875 offset_12 = u_regval[0] << shift_imm;
10876 break;
10877
10878 case 1:
10879 offset_12 = (!shift_imm)?0:u_regval[0] >> shift_imm;
10880 break;
10881
10882 case 2:
10883 if (!shift_imm)
10884 {
10885 if (bit (u_regval[0], 31))
10886 {
10887 offset_12 = 0xFFFFFFFF;
10888 }
10889 else
10890 {
10891 offset_12 = 0;
10892 }
10893 }
10894 else
10895 {
10896 /* This is arithmetic shift. */
10897 offset_12 = s_word >> shift_imm;
10898 }
10899 break;
10900
10901 case 3:
10902 if (!shift_imm)
10903 {
10904 regcache_raw_read_unsigned (reg_cache, ARM_PS_REGNUM,
10905 &u_regval[1]);
10906 /* Get C flag value and shift it by 31. */
10907 offset_12 = (((bit (u_regval[1], 29)) << 31) \
10908 | (u_regval[0]) >> 1);
10909 }
10910 else
10911 {
10912 offset_12 = (u_regval[0] >> shift_imm) \
10913 | (u_regval[0] <<
10914 (sizeof(uint32_t) - shift_imm));
10915 }
10916 break;
10917
10918 default:
10919 gdb_assert_not_reached ("no decoding pattern found");
10920 break;
10921 }
10922
10923 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
10924 /* bit U set. */
10925 if (bit (arm_insn_r->arm_insn, 23))
10926 {
10927 tgt_mem_addr = u_regval[1] + offset_12;
10928 }
10929 else
10930 {
10931 tgt_mem_addr = u_regval[1] - offset_12;
10932 }
10933
10934 switch (arm_insn_r->opcode)
10935 {
10936 /* STR. */
10937 case 8:
10938 case 12:
10939 /* STR. */
10940 case 9:
10941 case 13:
10942 /* STRT. */
10943 case 1:
10944 case 5:
10945 /* STR. */
10946 case 0:
10947 case 4:
10948 record_buf_mem[0] = 4;
10949 break;
10950
10951 /* STRB. */
10952 case 10:
10953 case 14:
10954 /* STRB. */
10955 case 11:
10956 case 15:
10957 /* STRBT. */
10958 case 3:
10959 case 7:
10960 /* STRB. */
10961 case 2:
10962 case 6:
10963 record_buf_mem[0] = 1;
10964 break;
10965
10966 default:
10967 gdb_assert_not_reached ("no decoding pattern found");
10968 break;
10969 }
10970 record_buf_mem[1] = tgt_mem_addr;
10971 arm_insn_r->mem_rec_count = 1;
10972
10973 if (9 == arm_insn_r->opcode || 11 == arm_insn_r->opcode
10974 || 13 == arm_insn_r->opcode || 15 == arm_insn_r->opcode
10975 || 0 == arm_insn_r->opcode || 2 == arm_insn_r->opcode
10976 || 4 == arm_insn_r->opcode || 6 == arm_insn_r->opcode
10977 || 1 == arm_insn_r->opcode || 3 == arm_insn_r->opcode
10978 || 5 == arm_insn_r->opcode || 7 == arm_insn_r->opcode
10979 )
10980 {
10981 /* Rn is going to be changed in register scaled pre-indexed
10982 mode,and scaled post indexed mode. */
10983 record_buf[0] = reg_src2;
10984 arm_insn_r->reg_rec_count = 1;
10985 }
10986 }
10987 }
10988
10989 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
10990 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
10991 return 0;
10992}
10993
71e396f9 10994/* Handle ARM mode instructions with opcode 100. */
72508ac0
PO
10995
10996static int
10997arm_record_ld_st_multiple (insn_decode_record *arm_insn_r)
10998{
10999 struct regcache *reg_cache = arm_insn_r->regcache;
71e396f9
LM
11000 uint32_t register_count = 0, register_bits;
11001 uint32_t reg_base, addr_mode;
72508ac0 11002 uint32_t record_buf[24], record_buf_mem[48];
71e396f9
LM
11003 uint32_t wback;
11004 ULONGEST u_regval;
72508ac0 11005
71e396f9
LM
11006 /* Fetch the list of registers. */
11007 register_bits = bits (arm_insn_r->arm_insn, 0, 15);
11008 arm_insn_r->reg_rec_count = 0;
11009
11010 /* Fetch the base register that contains the address we are loading data
11011 to. */
11012 reg_base = bits (arm_insn_r->arm_insn, 16, 19);
72508ac0 11013
71e396f9
LM
11014 /* Calculate wback. */
11015 wback = (bit (arm_insn_r->arm_insn, 21) == 1);
72508ac0
PO
11016
11017 if (bit (arm_insn_r->arm_insn, INSN_S_L_BIT_NUM))
11018 {
71e396f9 11019 /* LDM/LDMIA/LDMFD, LDMDA/LDMFA, LDMDB and LDMIB. */
72508ac0 11020
71e396f9 11021 /* Find out which registers are going to be loaded from memory. */
72508ac0 11022 while (register_bits)
71e396f9
LM
11023 {
11024 if (register_bits & 0x00000001)
11025 record_buf[arm_insn_r->reg_rec_count++] = register_count;
11026 register_bits = register_bits >> 1;
11027 register_count++;
11028 }
72508ac0 11029
71e396f9
LM
11030
11031 /* If wback is true, also save the base register, which is going to be
11032 written to. */
11033 if (wback)
11034 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
11035
11036 /* Save the CPSR register. */
11037 record_buf[arm_insn_r->reg_rec_count++] = ARM_PS_REGNUM;
72508ac0
PO
11038 }
11039 else
11040 {
71e396f9 11041 /* STM (STMIA, STMEA), STMDA (STMED), STMDB (STMFD) and STMIB (STMFA). */
72508ac0 11042
71e396f9
LM
11043 addr_mode = bits (arm_insn_r->arm_insn, 23, 24);
11044
11045 regcache_raw_read_unsigned (reg_cache, reg_base, &u_regval);
11046
11047 /* Find out how many registers are going to be stored to memory. */
72508ac0 11048 while (register_bits)
71e396f9
LM
11049 {
11050 if (register_bits & 0x00000001)
11051 register_count++;
11052 register_bits = register_bits >> 1;
11053 }
72508ac0
PO
11054
11055 switch (addr_mode)
71e396f9
LM
11056 {
11057 /* STMDA (STMED): Decrement after. */
11058 case 0:
11059 record_buf_mem[1] = (uint32_t) u_regval
11060 - register_count * INT_REGISTER_SIZE + 4;
11061 break;
11062 /* STM (STMIA, STMEA): Increment after. */
11063 case 1:
11064 record_buf_mem[1] = (uint32_t) u_regval;
11065 break;
11066 /* STMDB (STMFD): Decrement before. */
11067 case 2:
11068 record_buf_mem[1] = (uint32_t) u_regval
11069 - register_count * INT_REGISTER_SIZE;
11070 break;
11071 /* STMIB (STMFA): Increment before. */
11072 case 3:
11073 record_buf_mem[1] = (uint32_t) u_regval + INT_REGISTER_SIZE;
11074 break;
11075 default:
11076 gdb_assert_not_reached ("no decoding pattern found");
11077 break;
11078 }
72508ac0 11079
71e396f9
LM
11080 record_buf_mem[0] = register_count * INT_REGISTER_SIZE;
11081 arm_insn_r->mem_rec_count = 1;
11082
11083 /* If wback is true, also save the base register, which is going to be
11084 written to. */
11085 if (wback)
11086 record_buf[arm_insn_r->reg_rec_count++] = reg_base;
72508ac0
PO
11087 }
11088
11089 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11090 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11091 return 0;
11092}
11093
11094/* Handling opcode 101 insns. */
11095
11096static int
11097arm_record_b_bl (insn_decode_record *arm_insn_r)
11098{
11099 uint32_t record_buf[8];
11100
11101 /* Handle B, BL, BLX(1) insns. */
11102 /* B simply branches so we do nothing here. */
11103 /* Note: BLX(1) doesnt fall here but instead it falls into
11104 extension space. */
11105 if (bit (arm_insn_r->arm_insn, 24))
11106 {
11107 record_buf[0] = ARM_LR_REGNUM;
11108 arm_insn_r->reg_rec_count = 1;
11109 }
11110
11111 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11112
11113 return 0;
11114}
11115
72508ac0 11116static int
c6ec2b30 11117arm_record_unsupported_insn (insn_decode_record *arm_insn_r)
72508ac0
PO
11118{
11119 printf_unfiltered (_("Process record does not support instruction "
01e57735
YQ
11120 "0x%0x at address %s.\n"),arm_insn_r->arm_insn,
11121 paddress (arm_insn_r->gdbarch, arm_insn_r->this_addr));
72508ac0
PO
11122
11123 return -1;
11124}
11125
5a578da5
OJ
11126/* Record handler for vector data transfer instructions. */
11127
11128static int
11129arm_record_vdata_transfer_insn (insn_decode_record *arm_insn_r)
11130{
11131 uint32_t bits_a, bit_c, bit_l, reg_t, reg_v;
11132 uint32_t record_buf[4];
11133
5a578da5
OJ
11134 reg_t = bits (arm_insn_r->arm_insn, 12, 15);
11135 reg_v = bits (arm_insn_r->arm_insn, 21, 23);
11136 bits_a = bits (arm_insn_r->arm_insn, 21, 23);
11137 bit_l = bit (arm_insn_r->arm_insn, 20);
11138 bit_c = bit (arm_insn_r->arm_insn, 8);
11139
11140 /* Handle VMOV instruction. */
11141 if (bit_l && bit_c)
11142 {
11143 record_buf[0] = reg_t;
11144 arm_insn_r->reg_rec_count = 1;
11145 }
11146 else if (bit_l && !bit_c)
11147 {
11148 /* Handle VMOV instruction. */
11149 if (bits_a == 0x00)
11150 {
f1771dce 11151 record_buf[0] = reg_t;
5a578da5
OJ
11152 arm_insn_r->reg_rec_count = 1;
11153 }
11154 /* Handle VMRS instruction. */
11155 else if (bits_a == 0x07)
11156 {
11157 if (reg_t == 15)
11158 reg_t = ARM_PS_REGNUM;
11159
11160 record_buf[0] = reg_t;
11161 arm_insn_r->reg_rec_count = 1;
11162 }
11163 }
11164 else if (!bit_l && !bit_c)
11165 {
11166 /* Handle VMOV instruction. */
11167 if (bits_a == 0x00)
11168 {
f1771dce 11169 record_buf[0] = ARM_D0_REGNUM + reg_v;
5a578da5
OJ
11170
11171 arm_insn_r->reg_rec_count = 1;
11172 }
11173 /* Handle VMSR instruction. */
11174 else if (bits_a == 0x07)
11175 {
11176 record_buf[0] = ARM_FPSCR_REGNUM;
11177 arm_insn_r->reg_rec_count = 1;
11178 }
11179 }
11180 else if (!bit_l && bit_c)
11181 {
11182 /* Handle VMOV instruction. */
11183 if (!(bits_a & 0x04))
11184 {
11185 record_buf[0] = (reg_v | (bit (arm_insn_r->arm_insn, 7) << 4))
11186 + ARM_D0_REGNUM;
11187 arm_insn_r->reg_rec_count = 1;
11188 }
11189 /* Handle VDUP instruction. */
11190 else
11191 {
11192 if (bit (arm_insn_r->arm_insn, 21))
11193 {
11194 reg_v = reg_v | (bit (arm_insn_r->arm_insn, 7) << 4);
11195 record_buf[0] = reg_v + ARM_D0_REGNUM;
11196 record_buf[1] = reg_v + ARM_D0_REGNUM + 1;
11197 arm_insn_r->reg_rec_count = 2;
11198 }
11199 else
11200 {
11201 reg_v = reg_v | (bit (arm_insn_r->arm_insn, 7) << 4);
11202 record_buf[0] = reg_v + ARM_D0_REGNUM;
11203 arm_insn_r->reg_rec_count = 1;
11204 }
11205 }
11206 }
11207
11208 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11209 return 0;
11210}
11211
f20f80dd
OJ
11212/* Record handler for extension register load/store instructions. */
11213
11214static int
11215arm_record_exreg_ld_st_insn (insn_decode_record *arm_insn_r)
11216{
11217 uint32_t opcode, single_reg;
11218 uint8_t op_vldm_vstm;
11219 uint32_t record_buf[8], record_buf_mem[128];
11220 ULONGEST u_regval = 0;
11221
11222 struct regcache *reg_cache = arm_insn_r->regcache;
f20f80dd
OJ
11223
11224 opcode = bits (arm_insn_r->arm_insn, 20, 24);
9fde51ed 11225 single_reg = !bit (arm_insn_r->arm_insn, 8);
f20f80dd
OJ
11226 op_vldm_vstm = opcode & 0x1b;
11227
11228 /* Handle VMOV instructions. */
11229 if ((opcode & 0x1e) == 0x04)
11230 {
9fde51ed 11231 if (bit (arm_insn_r->arm_insn, 20)) /* to_arm_registers bit 20? */
01e57735
YQ
11232 {
11233 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11234 record_buf[1] = bits (arm_insn_r->arm_insn, 16, 19);
11235 arm_insn_r->reg_rec_count = 2;
11236 }
f20f80dd 11237 else
01e57735 11238 {
9fde51ed
YQ
11239 uint8_t reg_m = bits (arm_insn_r->arm_insn, 0, 3);
11240 uint8_t bit_m = bit (arm_insn_r->arm_insn, 5);
f20f80dd 11241
9fde51ed 11242 if (single_reg)
01e57735 11243 {
9fde51ed
YQ
11244 /* The first S register number m is REG_M:M (M is bit 5),
11245 the corresponding D register number is REG_M:M / 2, which
11246 is REG_M. */
11247 record_buf[arm_insn_r->reg_rec_count++] = ARM_D0_REGNUM + reg_m;
11248 /* The second S register number is REG_M:M + 1, the
11249 corresponding D register number is (REG_M:M + 1) / 2.
11250 IOW, if bit M is 1, the first and second S registers
11251 are mapped to different D registers, otherwise, they are
11252 in the same D register. */
11253 if (bit_m)
11254 {
11255 record_buf[arm_insn_r->reg_rec_count++]
11256 = ARM_D0_REGNUM + reg_m + 1;
11257 }
01e57735
YQ
11258 }
11259 else
11260 {
9fde51ed 11261 record_buf[0] = ((bit_m << 4) + reg_m + ARM_D0_REGNUM);
01e57735
YQ
11262 arm_insn_r->reg_rec_count = 1;
11263 }
11264 }
f20f80dd
OJ
11265 }
11266 /* Handle VSTM and VPUSH instructions. */
11267 else if (op_vldm_vstm == 0x08 || op_vldm_vstm == 0x0a
01e57735 11268 || op_vldm_vstm == 0x12)
f20f80dd
OJ
11269 {
11270 uint32_t start_address, reg_rn, imm_off32, imm_off8, memory_count;
11271 uint32_t memory_index = 0;
11272
11273 reg_rn = bits (arm_insn_r->arm_insn, 16, 19);
11274 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
11275 imm_off8 = bits (arm_insn_r->arm_insn, 0, 7);
9fde51ed 11276 imm_off32 = imm_off8 << 2;
f20f80dd
OJ
11277 memory_count = imm_off8;
11278
11279 if (bit (arm_insn_r->arm_insn, 23))
01e57735 11280 start_address = u_regval;
f20f80dd 11281 else
01e57735 11282 start_address = u_regval - imm_off32;
f20f80dd
OJ
11283
11284 if (bit (arm_insn_r->arm_insn, 21))
01e57735
YQ
11285 {
11286 record_buf[0] = reg_rn;
11287 arm_insn_r->reg_rec_count = 1;
11288 }
f20f80dd
OJ
11289
11290 while (memory_count > 0)
01e57735 11291 {
9fde51ed 11292 if (single_reg)
01e57735 11293 {
9fde51ed
YQ
11294 record_buf_mem[memory_index] = 4;
11295 record_buf_mem[memory_index + 1] = start_address;
01e57735
YQ
11296 start_address = start_address + 4;
11297 memory_index = memory_index + 2;
11298 }
11299 else
11300 {
9fde51ed
YQ
11301 record_buf_mem[memory_index] = 4;
11302 record_buf_mem[memory_index + 1] = start_address;
11303 record_buf_mem[memory_index + 2] = 4;
11304 record_buf_mem[memory_index + 3] = start_address + 4;
01e57735
YQ
11305 start_address = start_address + 8;
11306 memory_index = memory_index + 4;
11307 }
11308 memory_count--;
11309 }
f20f80dd
OJ
11310 arm_insn_r->mem_rec_count = (memory_index >> 1);
11311 }
11312 /* Handle VLDM instructions. */
11313 else if (op_vldm_vstm == 0x09 || op_vldm_vstm == 0x0b
01e57735 11314 || op_vldm_vstm == 0x13)
f20f80dd
OJ
11315 {
11316 uint32_t reg_count, reg_vd;
11317 uint32_t reg_index = 0;
9fde51ed 11318 uint32_t bit_d = bit (arm_insn_r->arm_insn, 22);
f20f80dd
OJ
11319
11320 reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11321 reg_count = bits (arm_insn_r->arm_insn, 0, 7);
11322
9fde51ed
YQ
11323 /* REG_VD is the first D register number. If the instruction
11324 loads memory to S registers (SINGLE_REG is TRUE), the register
11325 number is (REG_VD << 1 | bit D), so the corresponding D
11326 register number is (REG_VD << 1 | bit D) / 2 = REG_VD. */
11327 if (!single_reg)
11328 reg_vd = reg_vd | (bit_d << 4);
f20f80dd 11329
9fde51ed 11330 if (bit (arm_insn_r->arm_insn, 21) /* write back */)
01e57735 11331 record_buf[reg_index++] = bits (arm_insn_r->arm_insn, 16, 19);
f20f80dd 11332
9fde51ed
YQ
11333 /* If the instruction loads memory to D register, REG_COUNT should
11334 be divided by 2, according to the ARM Architecture Reference
11335 Manual. If the instruction loads memory to S register, divide by
11336 2 as well because two S registers are mapped to D register. */
11337 reg_count = reg_count / 2;
11338 if (single_reg && bit_d)
01e57735 11339 {
9fde51ed
YQ
11340 /* Increase the register count if S register list starts from
11341 an odd number (bit d is one). */
11342 reg_count++;
11343 }
f20f80dd 11344
9fde51ed
YQ
11345 while (reg_count > 0)
11346 {
11347 record_buf[reg_index++] = ARM_D0_REGNUM + reg_vd + reg_count - 1;
01e57735
YQ
11348 reg_count--;
11349 }
f20f80dd
OJ
11350 arm_insn_r->reg_rec_count = reg_index;
11351 }
11352 /* VSTR Vector store register. */
11353 else if ((opcode & 0x13) == 0x10)
11354 {
bec2ab5a 11355 uint32_t start_address, reg_rn, imm_off32, imm_off8;
f20f80dd
OJ
11356 uint32_t memory_index = 0;
11357
11358 reg_rn = bits (arm_insn_r->arm_insn, 16, 19);
11359 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
11360 imm_off8 = bits (arm_insn_r->arm_insn, 0, 7);
9fde51ed 11361 imm_off32 = imm_off8 << 2;
f20f80dd
OJ
11362
11363 if (bit (arm_insn_r->arm_insn, 23))
01e57735 11364 start_address = u_regval + imm_off32;
f20f80dd 11365 else
01e57735 11366 start_address = u_regval - imm_off32;
f20f80dd
OJ
11367
11368 if (single_reg)
01e57735 11369 {
9fde51ed
YQ
11370 record_buf_mem[memory_index] = 4;
11371 record_buf_mem[memory_index + 1] = start_address;
01e57735
YQ
11372 arm_insn_r->mem_rec_count = 1;
11373 }
f20f80dd 11374 else
01e57735 11375 {
9fde51ed
YQ
11376 record_buf_mem[memory_index] = 4;
11377 record_buf_mem[memory_index + 1] = start_address;
11378 record_buf_mem[memory_index + 2] = 4;
11379 record_buf_mem[memory_index + 3] = start_address + 4;
01e57735
YQ
11380 arm_insn_r->mem_rec_count = 2;
11381 }
f20f80dd
OJ
11382 }
11383 /* VLDR Vector load register. */
11384 else if ((opcode & 0x13) == 0x11)
11385 {
11386 uint32_t reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11387
11388 if (!single_reg)
01e57735
YQ
11389 {
11390 reg_vd = reg_vd | (bit (arm_insn_r->arm_insn, 22) << 4);
11391 record_buf[0] = ARM_D0_REGNUM + reg_vd;
11392 }
f20f80dd 11393 else
01e57735
YQ
11394 {
11395 reg_vd = (reg_vd << 1) | bit (arm_insn_r->arm_insn, 22);
9fde51ed
YQ
11396 /* Record register D rather than pseudo register S. */
11397 record_buf[0] = ARM_D0_REGNUM + reg_vd / 2;
01e57735 11398 }
f20f80dd
OJ
11399 arm_insn_r->reg_rec_count = 1;
11400 }
11401
11402 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11403 MEM_ALLOC (arm_insn_r->arm_mems, arm_insn_r->mem_rec_count, record_buf_mem);
11404 return 0;
11405}
11406
851f26ae
OJ
11407/* Record handler for arm/thumb mode VFP data processing instructions. */
11408
11409static int
11410arm_record_vfp_data_proc_insn (insn_decode_record *arm_insn_r)
11411{
11412 uint32_t opc1, opc2, opc3, dp_op_sz, bit_d, reg_vd;
11413 uint32_t record_buf[4];
11414 enum insn_types {INSN_T0, INSN_T1, INSN_T2, INSN_T3, INSN_INV};
11415 enum insn_types curr_insn_type = INSN_INV;
11416
11417 reg_vd = bits (arm_insn_r->arm_insn, 12, 15);
11418 opc1 = bits (arm_insn_r->arm_insn, 20, 23);
11419 opc2 = bits (arm_insn_r->arm_insn, 16, 19);
11420 opc3 = bits (arm_insn_r->arm_insn, 6, 7);
11421 dp_op_sz = bit (arm_insn_r->arm_insn, 8);
11422 bit_d = bit (arm_insn_r->arm_insn, 22);
ce887586
TT
11423 /* Mask off the "D" bit. */
11424 opc1 = opc1 & ~0x04;
851f26ae
OJ
11425
11426 /* Handle VMLA, VMLS. */
11427 if (opc1 == 0x00)
11428 {
11429 if (bit (arm_insn_r->arm_insn, 10))
11430 {
11431 if (bit (arm_insn_r->arm_insn, 6))
11432 curr_insn_type = INSN_T0;
11433 else
11434 curr_insn_type = INSN_T1;
11435 }
11436 else
11437 {
11438 if (dp_op_sz)
11439 curr_insn_type = INSN_T1;
11440 else
11441 curr_insn_type = INSN_T2;
11442 }
11443 }
11444 /* Handle VNMLA, VNMLS, VNMUL. */
11445 else if (opc1 == 0x01)
11446 {
11447 if (dp_op_sz)
11448 curr_insn_type = INSN_T1;
11449 else
11450 curr_insn_type = INSN_T2;
11451 }
11452 /* Handle VMUL. */
11453 else if (opc1 == 0x02 && !(opc3 & 0x01))
11454 {
11455 if (bit (arm_insn_r->arm_insn, 10))
11456 {
11457 if (bit (arm_insn_r->arm_insn, 6))
11458 curr_insn_type = INSN_T0;
11459 else
11460 curr_insn_type = INSN_T1;
11461 }
11462 else
11463 {
11464 if (dp_op_sz)
11465 curr_insn_type = INSN_T1;
11466 else
11467 curr_insn_type = INSN_T2;
11468 }
11469 }
11470 /* Handle VADD, VSUB. */
11471 else if (opc1 == 0x03)
11472 {
11473 if (!bit (arm_insn_r->arm_insn, 9))
11474 {
11475 if (bit (arm_insn_r->arm_insn, 6))
11476 curr_insn_type = INSN_T0;
11477 else
11478 curr_insn_type = INSN_T1;
11479 }
11480 else
11481 {
11482 if (dp_op_sz)
11483 curr_insn_type = INSN_T1;
11484 else
11485 curr_insn_type = INSN_T2;
11486 }
11487 }
11488 /* Handle VDIV. */
ce887586 11489 else if (opc1 == 0x08)
851f26ae
OJ
11490 {
11491 if (dp_op_sz)
11492 curr_insn_type = INSN_T1;
11493 else
11494 curr_insn_type = INSN_T2;
11495 }
11496 /* Handle all other vfp data processing instructions. */
11497 else if (opc1 == 0x0b)
11498 {
11499 /* Handle VMOV. */
11500 if (!(opc3 & 0x01) || (opc2 == 0x00 && opc3 == 0x01))
11501 {
11502 if (bit (arm_insn_r->arm_insn, 4))
11503 {
11504 if (bit (arm_insn_r->arm_insn, 6))
11505 curr_insn_type = INSN_T0;
11506 else
11507 curr_insn_type = INSN_T1;
11508 }
11509 else
11510 {
11511 if (dp_op_sz)
11512 curr_insn_type = INSN_T1;
11513 else
11514 curr_insn_type = INSN_T2;
11515 }
11516 }
11517 /* Handle VNEG and VABS. */
11518 else if ((opc2 == 0x01 && opc3 == 0x01)
11519 || (opc2 == 0x00 && opc3 == 0x03))
11520 {
11521 if (!bit (arm_insn_r->arm_insn, 11))
11522 {
11523 if (bit (arm_insn_r->arm_insn, 6))
11524 curr_insn_type = INSN_T0;
11525 else
11526 curr_insn_type = INSN_T1;
11527 }
11528 else
11529 {
11530 if (dp_op_sz)
11531 curr_insn_type = INSN_T1;
11532 else
11533 curr_insn_type = INSN_T2;
11534 }
11535 }
11536 /* Handle VSQRT. */
11537 else if (opc2 == 0x01 && opc3 == 0x03)
11538 {
11539 if (dp_op_sz)
11540 curr_insn_type = INSN_T1;
11541 else
11542 curr_insn_type = INSN_T2;
11543 }
11544 /* Handle VCVT. */
11545 else if (opc2 == 0x07 && opc3 == 0x03)
11546 {
11547 if (!dp_op_sz)
11548 curr_insn_type = INSN_T1;
11549 else
11550 curr_insn_type = INSN_T2;
11551 }
11552 else if (opc3 & 0x01)
11553 {
11554 /* Handle VCVT. */
11555 if ((opc2 == 0x08) || (opc2 & 0x0e) == 0x0c)
11556 {
11557 if (!bit (arm_insn_r->arm_insn, 18))
11558 curr_insn_type = INSN_T2;
11559 else
11560 {
11561 if (dp_op_sz)
11562 curr_insn_type = INSN_T1;
11563 else
11564 curr_insn_type = INSN_T2;
11565 }
11566 }
11567 /* Handle VCVT. */
11568 else if ((opc2 & 0x0e) == 0x0a || (opc2 & 0x0e) == 0x0e)
11569 {
11570 if (dp_op_sz)
11571 curr_insn_type = INSN_T1;
11572 else
11573 curr_insn_type = INSN_T2;
11574 }
11575 /* Handle VCVTB, VCVTT. */
11576 else if ((opc2 & 0x0e) == 0x02)
11577 curr_insn_type = INSN_T2;
11578 /* Handle VCMP, VCMPE. */
11579 else if ((opc2 & 0x0e) == 0x04)
11580 curr_insn_type = INSN_T3;
11581 }
11582 }
11583
11584 switch (curr_insn_type)
11585 {
11586 case INSN_T0:
11587 reg_vd = reg_vd | (bit_d << 4);
11588 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11589 record_buf[1] = reg_vd + ARM_D0_REGNUM + 1;
11590 arm_insn_r->reg_rec_count = 2;
11591 break;
11592
11593 case INSN_T1:
11594 reg_vd = reg_vd | (bit_d << 4);
11595 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11596 arm_insn_r->reg_rec_count = 1;
11597 break;
11598
11599 case INSN_T2:
11600 reg_vd = (reg_vd << 1) | bit_d;
11601 record_buf[0] = reg_vd + ARM_D0_REGNUM;
11602 arm_insn_r->reg_rec_count = 1;
11603 break;
11604
11605 case INSN_T3:
11606 record_buf[0] = ARM_FPSCR_REGNUM;
11607 arm_insn_r->reg_rec_count = 1;
11608 break;
11609
11610 default:
11611 gdb_assert_not_reached ("no decoding pattern found");
11612 break;
11613 }
11614
11615 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, record_buf);
11616 return 0;
11617}
11618
60cc5e93
OJ
11619/* Handling opcode 110 insns. */
11620
11621static int
11622arm_record_asimd_vfp_coproc (insn_decode_record *arm_insn_r)
11623{
bec2ab5a 11624 uint32_t op1, op1_ebit, coproc;
60cc5e93
OJ
11625
11626 coproc = bits (arm_insn_r->arm_insn, 8, 11);
11627 op1 = bits (arm_insn_r->arm_insn, 20, 25);
11628 op1_ebit = bit (arm_insn_r->arm_insn, 20);
11629
11630 if ((coproc & 0x0e) == 0x0a)
11631 {
11632 /* Handle extension register ld/st instructions. */
11633 if (!(op1 & 0x20))
f20f80dd 11634 return arm_record_exreg_ld_st_insn (arm_insn_r);
60cc5e93
OJ
11635
11636 /* 64-bit transfers between arm core and extension registers. */
11637 if ((op1 & 0x3e) == 0x04)
f20f80dd 11638 return arm_record_exreg_ld_st_insn (arm_insn_r);
60cc5e93
OJ
11639 }
11640 else
11641 {
11642 /* Handle coprocessor ld/st instructions. */
11643 if (!(op1 & 0x3a))
11644 {
11645 /* Store. */
11646 if (!op1_ebit)
11647 return arm_record_unsupported_insn (arm_insn_r);
11648 else
11649 /* Load. */
11650 return arm_record_unsupported_insn (arm_insn_r);
11651 }
11652
11653 /* Move to coprocessor from two arm core registers. */
11654 if (op1 == 0x4)
11655 return arm_record_unsupported_insn (arm_insn_r);
11656
11657 /* Move to two arm core registers from coprocessor. */
11658 if (op1 == 0x5)
11659 {
11660 uint32_t reg_t[2];
11661
11662 reg_t[0] = bits (arm_insn_r->arm_insn, 12, 15);
11663 reg_t[1] = bits (arm_insn_r->arm_insn, 16, 19);
11664 arm_insn_r->reg_rec_count = 2;
11665
11666 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count, reg_t);
11667 return 0;
11668 }
11669 }
11670 return arm_record_unsupported_insn (arm_insn_r);
11671}
11672
72508ac0
PO
11673/* Handling opcode 111 insns. */
11674
11675static int
11676arm_record_coproc_data_proc (insn_decode_record *arm_insn_r)
11677{
2d9e6acb 11678 uint32_t op, op1_ebit, coproc, bits_24_25;
72508ac0
PO
11679 struct gdbarch_tdep *tdep = gdbarch_tdep (arm_insn_r->gdbarch);
11680 struct regcache *reg_cache = arm_insn_r->regcache;
72508ac0
PO
11681
11682 arm_insn_r->opcode = bits (arm_insn_r->arm_insn, 24, 27);
60cc5e93 11683 coproc = bits (arm_insn_r->arm_insn, 8, 11);
60cc5e93
OJ
11684 op1_ebit = bit (arm_insn_r->arm_insn, 20);
11685 op = bit (arm_insn_r->arm_insn, 4);
2d9e6acb 11686 bits_24_25 = bits (arm_insn_r->arm_insn, 24, 25);
97dfe206
OJ
11687
11688 /* Handle arm SWI/SVC system call instructions. */
2d9e6acb 11689 if (bits_24_25 == 0x3)
97dfe206
OJ
11690 {
11691 if (tdep->arm_syscall_record != NULL)
11692 {
11693 ULONGEST svc_operand, svc_number;
11694
11695 svc_operand = (0x00ffffff & arm_insn_r->arm_insn);
11696
11697 if (svc_operand) /* OABI. */
11698 svc_number = svc_operand - 0x900000;
11699 else /* EABI. */
11700 regcache_raw_read_unsigned (reg_cache, 7, &svc_number);
11701
60cc5e93 11702 return tdep->arm_syscall_record (reg_cache, svc_number);
97dfe206
OJ
11703 }
11704 else
11705 {
11706 printf_unfiltered (_("no syscall record support\n"));
60cc5e93 11707 return -1;
97dfe206
OJ
11708 }
11709 }
2d9e6acb 11710 else if (bits_24_25 == 0x02)
60cc5e93 11711 {
2d9e6acb
YQ
11712 if (op)
11713 {
11714 if ((coproc & 0x0e) == 0x0a)
11715 {
11716 /* 8, 16, and 32-bit transfer */
11717 return arm_record_vdata_transfer_insn (arm_insn_r);
11718 }
11719 else
11720 {
11721 if (op1_ebit)
11722 {
11723 /* MRC, MRC2 */
11724 uint32_t record_buf[1];
11725
11726 record_buf[0] = bits (arm_insn_r->arm_insn, 12, 15);
11727 if (record_buf[0] == 15)
11728 record_buf[0] = ARM_PS_REGNUM;
60cc5e93 11729
2d9e6acb
YQ
11730 arm_insn_r->reg_rec_count = 1;
11731 REG_ALLOC (arm_insn_r->arm_regs, arm_insn_r->reg_rec_count,
11732 record_buf);
11733 return 0;
11734 }
11735 else
11736 {
11737 /* MCR, MCR2 */
11738 return -1;
11739 }
11740 }
11741 }
11742 else
11743 {
11744 if ((coproc & 0x0e) == 0x0a)
11745 {
11746 /* VFP data-processing instructions. */
11747 return arm_record_vfp_data_proc_insn (arm_insn_r);
11748 }
11749 else
11750 {
11751 /* CDP, CDP2 */
11752 return -1;
11753 }
11754 }
60cc5e93 11755 }
97dfe206
OJ
11756 else
11757 {
2d9e6acb 11758 unsigned int op1 = bits (arm_insn_r->arm_insn, 20, 25);
60cc5e93 11759
2d9e6acb
YQ
11760 if (op1 == 5)
11761 {
11762 if ((coproc & 0x0e) != 0x0a)
11763 {
11764 /* MRRC, MRRC2 */
11765 return -1;
11766 }
11767 }
11768 else if (op1 == 4 || op1 == 5)
11769 {
11770 if ((coproc & 0x0e) == 0x0a)
11771 {
11772 /* 64-bit transfers between ARM core and extension */
11773 return -1;
11774 }
11775 else if (op1 == 4)
11776 {
11777 /* MCRR, MCRR2 */
11778 return -1;
11779 }
11780 }
11781 else if (op1 == 0 || op1 == 1)
11782 {
11783 /* UNDEFINED */
11784 return -1;
11785 }
11786 else
11787 {
11788 if ((coproc & 0x0e) == 0x0a)
11789 {
11790 /* Extension register load/store */
11791 }
11792 else
11793 {
11794 /* STC, STC2, LDC, LDC2 */
11795 }
11796 return -1;
11797 }
97dfe206 11798 }
72508ac0 11799
2d9e6acb 11800 return -1;
72508ac0
PO
11801}
11802
11803/* Handling opcode 000 insns. */
11804
11805static int
11806thumb_record_shift_add_sub (insn_decode_record *thumb_insn_r)
11807{
11808 uint32_t record_buf[8];
11809 uint32_t reg_src1 = 0;
11810
11811 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11812
11813 record_buf[0] = ARM_PS_REGNUM;
11814 record_buf[1] = reg_src1;
11815 thumb_insn_r->reg_rec_count = 2;
11816
11817 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11818
11819 return 0;
11820}
11821
11822
11823/* Handling opcode 001 insns. */
11824
11825static int
11826thumb_record_add_sub_cmp_mov (insn_decode_record *thumb_insn_r)
11827{
11828 uint32_t record_buf[8];
11829 uint32_t reg_src1 = 0;
11830
11831 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11832
11833 record_buf[0] = ARM_PS_REGNUM;
11834 record_buf[1] = reg_src1;
11835 thumb_insn_r->reg_rec_count = 2;
11836
11837 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11838
11839 return 0;
11840}
11841
11842/* Handling opcode 010 insns. */
11843
11844static int
11845thumb_record_ld_st_reg_offset (insn_decode_record *thumb_insn_r)
11846{
11847 struct regcache *reg_cache = thumb_insn_r->regcache;
11848 uint32_t record_buf[8], record_buf_mem[8];
11849
11850 uint32_t reg_src1 = 0, reg_src2 = 0;
11851 uint32_t opcode1 = 0, opcode2 = 0, opcode3 = 0;
11852
11853 ULONGEST u_regval[2] = {0};
11854
11855 opcode1 = bits (thumb_insn_r->arm_insn, 10, 12);
11856
11857 if (bit (thumb_insn_r->arm_insn, 12))
11858 {
11859 /* Handle load/store register offset. */
b121eeb9
YQ
11860 uint32_t opB = bits (thumb_insn_r->arm_insn, 9, 11);
11861
b020ff80 11862 if (in_inclusive_range (opB, 4U, 7U))
72508ac0
PO
11863 {
11864 /* LDR(2), LDRB(2) , LDRH(2), LDRSB, LDRSH. */
11865 reg_src1 = bits (thumb_insn_r->arm_insn,0, 2);
11866 record_buf[0] = reg_src1;
11867 thumb_insn_r->reg_rec_count = 1;
11868 }
b020ff80 11869 else if (in_inclusive_range (opB, 0U, 2U))
72508ac0
PO
11870 {
11871 /* STR(2), STRB(2), STRH(2) . */
11872 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11873 reg_src2 = bits (thumb_insn_r->arm_insn, 6, 8);
11874 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval[0]);
11875 regcache_raw_read_unsigned (reg_cache, reg_src2, &u_regval[1]);
b121eeb9 11876 if (0 == opB)
72508ac0 11877 record_buf_mem[0] = 4; /* STR (2). */
b121eeb9 11878 else if (2 == opB)
72508ac0 11879 record_buf_mem[0] = 1; /* STRB (2). */
b121eeb9 11880 else if (1 == opB)
72508ac0
PO
11881 record_buf_mem[0] = 2; /* STRH (2). */
11882 record_buf_mem[1] = u_regval[0] + u_regval[1];
11883 thumb_insn_r->mem_rec_count = 1;
11884 }
11885 }
11886 else if (bit (thumb_insn_r->arm_insn, 11))
11887 {
11888 /* Handle load from literal pool. */
11889 /* LDR(3). */
11890 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11891 record_buf[0] = reg_src1;
11892 thumb_insn_r->reg_rec_count = 1;
11893 }
11894 else if (opcode1)
11895 {
b121eeb9 11896 /* Special data instructions and branch and exchange */
72508ac0
PO
11897 opcode2 = bits (thumb_insn_r->arm_insn, 8, 9);
11898 opcode3 = bits (thumb_insn_r->arm_insn, 0, 2);
11899 if ((3 == opcode2) && (!opcode3))
11900 {
11901 /* Branch with exchange. */
11902 record_buf[0] = ARM_PS_REGNUM;
11903 thumb_insn_r->reg_rec_count = 1;
11904 }
11905 else
11906 {
1f33efec
YQ
11907 /* Format 8; special data processing insns. */
11908 record_buf[0] = ARM_PS_REGNUM;
11909 record_buf[1] = (bit (thumb_insn_r->arm_insn, 7) << 3
11910 | bits (thumb_insn_r->arm_insn, 0, 2));
72508ac0
PO
11911 thumb_insn_r->reg_rec_count = 2;
11912 }
11913 }
11914 else
11915 {
11916 /* Format 5; data processing insns. */
11917 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11918 if (bit (thumb_insn_r->arm_insn, 7))
11919 {
11920 reg_src1 = reg_src1 + 8;
11921 }
11922 record_buf[0] = ARM_PS_REGNUM;
11923 record_buf[1] = reg_src1;
11924 thumb_insn_r->reg_rec_count = 2;
11925 }
11926
11927 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11928 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11929 record_buf_mem);
11930
11931 return 0;
11932}
11933
11934/* Handling opcode 001 insns. */
11935
11936static int
11937thumb_record_ld_st_imm_offset (insn_decode_record *thumb_insn_r)
11938{
11939 struct regcache *reg_cache = thumb_insn_r->regcache;
11940 uint32_t record_buf[8], record_buf_mem[8];
11941
11942 uint32_t reg_src1 = 0;
11943 uint32_t opcode = 0, immed_5 = 0;
11944
11945 ULONGEST u_regval = 0;
11946
11947 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
11948
11949 if (opcode)
11950 {
11951 /* LDR(1). */
11952 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
11953 record_buf[0] = reg_src1;
11954 thumb_insn_r->reg_rec_count = 1;
11955 }
11956 else
11957 {
11958 /* STR(1). */
11959 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
11960 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
11961 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
11962 record_buf_mem[0] = 4;
11963 record_buf_mem[1] = u_regval + (immed_5 * 4);
11964 thumb_insn_r->mem_rec_count = 1;
11965 }
11966
11967 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
11968 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
11969 record_buf_mem);
11970
11971 return 0;
11972}
11973
11974/* Handling opcode 100 insns. */
11975
11976static int
11977thumb_record_ld_st_stack (insn_decode_record *thumb_insn_r)
11978{
11979 struct regcache *reg_cache = thumb_insn_r->regcache;
11980 uint32_t record_buf[8], record_buf_mem[8];
11981
11982 uint32_t reg_src1 = 0;
11983 uint32_t opcode = 0, immed_8 = 0, immed_5 = 0;
11984
11985 ULONGEST u_regval = 0;
11986
11987 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
11988
11989 if (3 == opcode)
11990 {
11991 /* LDR(4). */
11992 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
11993 record_buf[0] = reg_src1;
11994 thumb_insn_r->reg_rec_count = 1;
11995 }
11996 else if (1 == opcode)
11997 {
11998 /* LDRH(1). */
11999 reg_src1 = bits (thumb_insn_r->arm_insn, 0, 2);
12000 record_buf[0] = reg_src1;
12001 thumb_insn_r->reg_rec_count = 1;
12002 }
12003 else if (2 == opcode)
12004 {
12005 /* STR(3). */
12006 immed_8 = bits (thumb_insn_r->arm_insn, 0, 7);
12007 regcache_raw_read_unsigned (reg_cache, ARM_SP_REGNUM, &u_regval);
12008 record_buf_mem[0] = 4;
12009 record_buf_mem[1] = u_regval + (immed_8 * 4);
12010 thumb_insn_r->mem_rec_count = 1;
12011 }
12012 else if (0 == opcode)
12013 {
12014 /* STRH(1). */
12015 immed_5 = bits (thumb_insn_r->arm_insn, 6, 10);
12016 reg_src1 = bits (thumb_insn_r->arm_insn, 3, 5);
12017 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12018 record_buf_mem[0] = 2;
12019 record_buf_mem[1] = u_regval + (immed_5 * 2);
12020 thumb_insn_r->mem_rec_count = 1;
12021 }
12022
12023 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12024 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12025 record_buf_mem);
12026
12027 return 0;
12028}
12029
12030/* Handling opcode 101 insns. */
12031
12032static int
12033thumb_record_misc (insn_decode_record *thumb_insn_r)
12034{
12035 struct regcache *reg_cache = thumb_insn_r->regcache;
12036
b121eeb9 12037 uint32_t opcode = 0;
72508ac0 12038 uint32_t register_bits = 0, register_count = 0;
bec2ab5a 12039 uint32_t index = 0, start_address = 0;
72508ac0
PO
12040 uint32_t record_buf[24], record_buf_mem[48];
12041 uint32_t reg_src1;
12042
12043 ULONGEST u_regval = 0;
12044
12045 opcode = bits (thumb_insn_r->arm_insn, 11, 12);
72508ac0 12046
b121eeb9 12047 if (opcode == 0 || opcode == 1)
72508ac0 12048 {
b121eeb9
YQ
12049 /* ADR and ADD (SP plus immediate) */
12050
72508ac0
PO
12051 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12052 record_buf[0] = reg_src1;
12053 thumb_insn_r->reg_rec_count = 1;
12054 }
b121eeb9 12055 else
72508ac0 12056 {
b121eeb9
YQ
12057 /* Miscellaneous 16-bit instructions */
12058 uint32_t opcode2 = bits (thumb_insn_r->arm_insn, 8, 11);
12059
12060 switch (opcode2)
12061 {
12062 case 6:
12063 /* SETEND and CPS */
12064 break;
12065 case 0:
12066 /* ADD/SUB (SP plus immediate) */
12067 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12068 record_buf[0] = ARM_SP_REGNUM;
12069 thumb_insn_r->reg_rec_count = 1;
12070 break;
12071 case 1: /* fall through */
12072 case 3: /* fall through */
12073 case 9: /* fall through */
12074 case 11:
12075 /* CBNZ, CBZ */
b121eeb9
YQ
12076 break;
12077 case 2:
12078 /* SXTH, SXTB, UXTH, UXTB */
12079 record_buf[0] = bits (thumb_insn_r->arm_insn, 0, 2);
12080 thumb_insn_r->reg_rec_count = 1;
12081 break;
12082 case 4: /* fall through */
12083 case 5:
12084 /* PUSH. */
12085 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12086 regcache_raw_read_unsigned (reg_cache, ARM_SP_REGNUM, &u_regval);
12087 while (register_bits)
12088 {
12089 if (register_bits & 0x00000001)
12090 register_count++;
12091 register_bits = register_bits >> 1;
12092 }
12093 start_address = u_regval - \
12094 (4 * (bit (thumb_insn_r->arm_insn, 8) + register_count));
12095 thumb_insn_r->mem_rec_count = register_count;
12096 while (register_count)
12097 {
12098 record_buf_mem[(register_count * 2) - 1] = start_address;
12099 record_buf_mem[(register_count * 2) - 2] = 4;
12100 start_address = start_address + 4;
12101 register_count--;
12102 }
12103 record_buf[0] = ARM_SP_REGNUM;
12104 thumb_insn_r->reg_rec_count = 1;
12105 break;
12106 case 10:
12107 /* REV, REV16, REVSH */
ba14f379
YQ
12108 record_buf[0] = bits (thumb_insn_r->arm_insn, 0, 2);
12109 thumb_insn_r->reg_rec_count = 1;
b121eeb9
YQ
12110 break;
12111 case 12: /* fall through */
12112 case 13:
12113 /* POP. */
12114 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12115 while (register_bits)
12116 {
12117 if (register_bits & 0x00000001)
12118 record_buf[index++] = register_count;
12119 register_bits = register_bits >> 1;
12120 register_count++;
12121 }
12122 record_buf[index++] = ARM_PS_REGNUM;
12123 record_buf[index++] = ARM_SP_REGNUM;
12124 thumb_insn_r->reg_rec_count = index;
12125 break;
12126 case 0xe:
12127 /* BKPT insn. */
12128 /* Handle enhanced software breakpoint insn, BKPT. */
12129 /* CPSR is changed to be executed in ARM state, disabling normal
12130 interrupts, entering abort mode. */
12131 /* According to high vector configuration PC is set. */
12132 /* User hits breakpoint and type reverse, in that case, we need to go back with
12133 previous CPSR and Program Counter. */
12134 record_buf[0] = ARM_PS_REGNUM;
12135 record_buf[1] = ARM_LR_REGNUM;
12136 thumb_insn_r->reg_rec_count = 2;
12137 /* We need to save SPSR value, which is not yet done. */
12138 printf_unfiltered (_("Process record does not support instruction "
12139 "0x%0x at address %s.\n"),
12140 thumb_insn_r->arm_insn,
12141 paddress (thumb_insn_r->gdbarch,
12142 thumb_insn_r->this_addr));
12143 return -1;
12144
12145 case 0xf:
12146 /* If-Then, and hints */
12147 break;
12148 default:
12149 return -1;
12150 };
72508ac0
PO
12151 }
12152
12153 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12154 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12155 record_buf_mem);
12156
12157 return 0;
12158}
12159
12160/* Handling opcode 110 insns. */
12161
12162static int
12163thumb_record_ldm_stm_swi (insn_decode_record *thumb_insn_r)
12164{
12165 struct gdbarch_tdep *tdep = gdbarch_tdep (thumb_insn_r->gdbarch);
12166 struct regcache *reg_cache = thumb_insn_r->regcache;
12167
12168 uint32_t ret = 0; /* function return value: -1:record failure ; 0:success */
12169 uint32_t reg_src1 = 0;
12170 uint32_t opcode1 = 0, opcode2 = 0, register_bits = 0, register_count = 0;
bec2ab5a 12171 uint32_t index = 0, start_address = 0;
72508ac0
PO
12172 uint32_t record_buf[24], record_buf_mem[48];
12173
12174 ULONGEST u_regval = 0;
12175
12176 opcode1 = bits (thumb_insn_r->arm_insn, 8, 12);
12177 opcode2 = bits (thumb_insn_r->arm_insn, 11, 12);
12178
12179 if (1 == opcode2)
12180 {
12181
12182 /* LDMIA. */
12183 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12184 /* Get Rn. */
12185 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12186 while (register_bits)
12187 {
12188 if (register_bits & 0x00000001)
f969241e 12189 record_buf[index++] = register_count;
72508ac0 12190 register_bits = register_bits >> 1;
f969241e 12191 register_count++;
72508ac0 12192 }
f969241e
OJ
12193 record_buf[index++] = reg_src1;
12194 thumb_insn_r->reg_rec_count = index;
72508ac0
PO
12195 }
12196 else if (0 == opcode2)
12197 {
12198 /* It handles both STMIA. */
12199 register_bits = bits (thumb_insn_r->arm_insn, 0, 7);
12200 /* Get Rn. */
12201 reg_src1 = bits (thumb_insn_r->arm_insn, 8, 10);
12202 regcache_raw_read_unsigned (reg_cache, reg_src1, &u_regval);
12203 while (register_bits)
12204 {
12205 if (register_bits & 0x00000001)
12206 register_count++;
12207 register_bits = register_bits >> 1;
12208 }
12209 start_address = u_regval;
12210 thumb_insn_r->mem_rec_count = register_count;
12211 while (register_count)
12212 {
12213 record_buf_mem[(register_count * 2) - 1] = start_address;
12214 record_buf_mem[(register_count * 2) - 2] = 4;
12215 start_address = start_address + 4;
12216 register_count--;
12217 }
12218 }
12219 else if (0x1F == opcode1)
12220 {
12221 /* Handle arm syscall insn. */
97dfe206 12222 if (tdep->arm_syscall_record != NULL)
72508ac0 12223 {
97dfe206
OJ
12224 regcache_raw_read_unsigned (reg_cache, 7, &u_regval);
12225 ret = tdep->arm_syscall_record (reg_cache, u_regval);
72508ac0
PO
12226 }
12227 else
12228 {
12229 printf_unfiltered (_("no syscall record support\n"));
12230 return -1;
12231 }
12232 }
12233
12234 /* B (1), conditional branch is automatically taken care in process_record,
12235 as PC is saved there. */
12236
12237 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12238 MEM_ALLOC (thumb_insn_r->arm_mems, thumb_insn_r->mem_rec_count,
12239 record_buf_mem);
12240
12241 return ret;
12242}
12243
12244/* Handling opcode 111 insns. */
12245
12246static int
12247thumb_record_branch (insn_decode_record *thumb_insn_r)
12248{
12249 uint32_t record_buf[8];
12250 uint32_t bits_h = 0;
12251
12252 bits_h = bits (thumb_insn_r->arm_insn, 11, 12);
12253
12254 if (2 == bits_h || 3 == bits_h)
12255 {
12256 /* BL */
12257 record_buf[0] = ARM_LR_REGNUM;
12258 thumb_insn_r->reg_rec_count = 1;
12259 }
12260 else if (1 == bits_h)
12261 {
12262 /* BLX(1). */
12263 record_buf[0] = ARM_PS_REGNUM;
12264 record_buf[1] = ARM_LR_REGNUM;
12265 thumb_insn_r->reg_rec_count = 2;
12266 }
12267
12268 /* B(2) is automatically taken care in process_record, as PC is
12269 saved there. */
12270
12271 REG_ALLOC (thumb_insn_r->arm_regs, thumb_insn_r->reg_rec_count, record_buf);
12272
12273 return 0;
12274}
12275
c6ec2b30
OJ
12276/* Handler for thumb2 load/store multiple instructions. */
12277
12278static int
12279thumb2_record_ld_st_multiple (insn_decode_record *thumb2_insn_r)
12280{
12281 struct regcache *reg_cache = thumb2_insn_r->regcache;
12282
12283 uint32_t reg_rn, op;
12284 uint32_t register_bits = 0, register_count = 0;
12285 uint32_t index = 0, start_address = 0;
12286 uint32_t record_buf[24], record_buf_mem[48];
12287
12288 ULONGEST u_regval = 0;
12289
12290 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12291 op = bits (thumb2_insn_r->arm_insn, 23, 24);
12292
12293 if (0 == op || 3 == op)
12294 {
12295 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12296 {
12297 /* Handle RFE instruction. */
12298 record_buf[0] = ARM_PS_REGNUM;
12299 thumb2_insn_r->reg_rec_count = 1;
12300 }
12301 else
12302 {
12303 /* Handle SRS instruction after reading banked SP. */
12304 return arm_record_unsupported_insn (thumb2_insn_r);
12305 }
12306 }
12307 else if (1 == op || 2 == op)
12308 {
12309 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12310 {
12311 /* Handle LDM/LDMIA/LDMFD and LDMDB/LDMEA instructions. */
12312 register_bits = bits (thumb2_insn_r->arm_insn, 0, 15);
12313 while (register_bits)
12314 {
12315 if (register_bits & 0x00000001)
12316 record_buf[index++] = register_count;
12317
12318 register_count++;
12319 register_bits = register_bits >> 1;
12320 }
12321 record_buf[index++] = reg_rn;
12322 record_buf[index++] = ARM_PS_REGNUM;
12323 thumb2_insn_r->reg_rec_count = index;
12324 }
12325 else
12326 {
12327 /* Handle STM/STMIA/STMEA and STMDB/STMFD. */
12328 register_bits = bits (thumb2_insn_r->arm_insn, 0, 15);
12329 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
12330 while (register_bits)
12331 {
12332 if (register_bits & 0x00000001)
12333 register_count++;
12334
12335 register_bits = register_bits >> 1;
12336 }
12337
12338 if (1 == op)
12339 {
12340 /* Start address calculation for LDMDB/LDMEA. */
12341 start_address = u_regval;
12342 }
12343 else if (2 == op)
12344 {
12345 /* Start address calculation for LDMDB/LDMEA. */
12346 start_address = u_regval - register_count * 4;
12347 }
12348
12349 thumb2_insn_r->mem_rec_count = register_count;
12350 while (register_count)
12351 {
12352 record_buf_mem[register_count * 2 - 1] = start_address;
12353 record_buf_mem[register_count * 2 - 2] = 4;
12354 start_address = start_address + 4;
12355 register_count--;
12356 }
12357 record_buf[0] = reg_rn;
12358 record_buf[1] = ARM_PS_REGNUM;
12359 thumb2_insn_r->reg_rec_count = 2;
12360 }
12361 }
12362
12363 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12364 record_buf_mem);
12365 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12366 record_buf);
12367 return ARM_RECORD_SUCCESS;
12368}
12369
12370/* Handler for thumb2 load/store (dual/exclusive) and table branch
12371 instructions. */
12372
12373static int
12374thumb2_record_ld_st_dual_ex_tbb (insn_decode_record *thumb2_insn_r)
12375{
12376 struct regcache *reg_cache = thumb2_insn_r->regcache;
12377
12378 uint32_t reg_rd, reg_rn, offset_imm;
12379 uint32_t reg_dest1, reg_dest2;
12380 uint32_t address, offset_addr;
12381 uint32_t record_buf[8], record_buf_mem[8];
12382 uint32_t op1, op2, op3;
c6ec2b30
OJ
12383
12384 ULONGEST u_regval[2];
12385
12386 op1 = bits (thumb2_insn_r->arm_insn, 23, 24);
12387 op2 = bits (thumb2_insn_r->arm_insn, 20, 21);
12388 op3 = bits (thumb2_insn_r->arm_insn, 4, 7);
12389
12390 if (bit (thumb2_insn_r->arm_insn, INSN_S_L_BIT_NUM))
12391 {
12392 if(!(1 == op1 && 1 == op2 && (0 == op3 || 1 == op3)))
12393 {
12394 reg_dest1 = bits (thumb2_insn_r->arm_insn, 12, 15);
12395 record_buf[0] = reg_dest1;
12396 record_buf[1] = ARM_PS_REGNUM;
12397 thumb2_insn_r->reg_rec_count = 2;
12398 }
12399
12400 if (3 == op2 || (op1 & 2) || (1 == op1 && 1 == op2 && 7 == op3))
12401 {
12402 reg_dest2 = bits (thumb2_insn_r->arm_insn, 8, 11);
12403 record_buf[2] = reg_dest2;
12404 thumb2_insn_r->reg_rec_count = 3;
12405 }
12406 }
12407 else
12408 {
12409 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12410 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval[0]);
12411
12412 if (0 == op1 && 0 == op2)
12413 {
12414 /* Handle STREX. */
12415 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12416 address = u_regval[0] + (offset_imm * 4);
12417 record_buf_mem[0] = 4;
12418 record_buf_mem[1] = address;
12419 thumb2_insn_r->mem_rec_count = 1;
12420 reg_rd = bits (thumb2_insn_r->arm_insn, 0, 3);
12421 record_buf[0] = reg_rd;
12422 thumb2_insn_r->reg_rec_count = 1;
12423 }
12424 else if (1 == op1 && 0 == op2)
12425 {
12426 reg_rd = bits (thumb2_insn_r->arm_insn, 0, 3);
12427 record_buf[0] = reg_rd;
12428 thumb2_insn_r->reg_rec_count = 1;
12429 address = u_regval[0];
12430 record_buf_mem[1] = address;
12431
12432 if (4 == op3)
12433 {
12434 /* Handle STREXB. */
12435 record_buf_mem[0] = 1;
12436 thumb2_insn_r->mem_rec_count = 1;
12437 }
12438 else if (5 == op3)
12439 {
12440 /* Handle STREXH. */
12441 record_buf_mem[0] = 2 ;
12442 thumb2_insn_r->mem_rec_count = 1;
12443 }
12444 else if (7 == op3)
12445 {
12446 /* Handle STREXD. */
12447 address = u_regval[0];
12448 record_buf_mem[0] = 4;
12449 record_buf_mem[2] = 4;
12450 record_buf_mem[3] = address + 4;
12451 thumb2_insn_r->mem_rec_count = 2;
12452 }
12453 }
12454 else
12455 {
12456 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12457
12458 if (bit (thumb2_insn_r->arm_insn, 24))
12459 {
12460 if (bit (thumb2_insn_r->arm_insn, 23))
12461 offset_addr = u_regval[0] + (offset_imm * 4);
12462 else
12463 offset_addr = u_regval[0] - (offset_imm * 4);
12464
12465 address = offset_addr;
12466 }
12467 else
12468 address = u_regval[0];
12469
12470 record_buf_mem[0] = 4;
12471 record_buf_mem[1] = address;
12472 record_buf_mem[2] = 4;
12473 record_buf_mem[3] = address + 4;
12474 thumb2_insn_r->mem_rec_count = 2;
12475 record_buf[0] = reg_rn;
12476 thumb2_insn_r->reg_rec_count = 1;
12477 }
12478 }
12479
12480 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12481 record_buf);
12482 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12483 record_buf_mem);
12484 return ARM_RECORD_SUCCESS;
12485}
12486
12487/* Handler for thumb2 data processing (shift register and modified immediate)
12488 instructions. */
12489
12490static int
12491thumb2_record_data_proc_sreg_mimm (insn_decode_record *thumb2_insn_r)
12492{
12493 uint32_t reg_rd, op;
12494 uint32_t record_buf[8];
12495
12496 op = bits (thumb2_insn_r->arm_insn, 21, 24);
12497 reg_rd = bits (thumb2_insn_r->arm_insn, 8, 11);
12498
12499 if ((0 == op || 4 == op || 8 == op || 13 == op) && 15 == reg_rd)
12500 {
12501 record_buf[0] = ARM_PS_REGNUM;
12502 thumb2_insn_r->reg_rec_count = 1;
12503 }
12504 else
12505 {
12506 record_buf[0] = reg_rd;
12507 record_buf[1] = ARM_PS_REGNUM;
12508 thumb2_insn_r->reg_rec_count = 2;
12509 }
12510
12511 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12512 record_buf);
12513 return ARM_RECORD_SUCCESS;
12514}
12515
12516/* Generic handler for thumb2 instructions which effect destination and PS
12517 registers. */
12518
12519static int
12520thumb2_record_ps_dest_generic (insn_decode_record *thumb2_insn_r)
12521{
12522 uint32_t reg_rd;
12523 uint32_t record_buf[8];
12524
12525 reg_rd = bits (thumb2_insn_r->arm_insn, 8, 11);
12526
12527 record_buf[0] = reg_rd;
12528 record_buf[1] = ARM_PS_REGNUM;
12529 thumb2_insn_r->reg_rec_count = 2;
12530
12531 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12532 record_buf);
12533 return ARM_RECORD_SUCCESS;
12534}
12535
12536/* Handler for thumb2 branch and miscellaneous control instructions. */
12537
12538static int
12539thumb2_record_branch_misc_cntrl (insn_decode_record *thumb2_insn_r)
12540{
12541 uint32_t op, op1, op2;
12542 uint32_t record_buf[8];
12543
12544 op = bits (thumb2_insn_r->arm_insn, 20, 26);
12545 op1 = bits (thumb2_insn_r->arm_insn, 12, 14);
12546 op2 = bits (thumb2_insn_r->arm_insn, 8, 11);
12547
12548 /* Handle MSR insn. */
12549 if (!(op1 & 0x2) && 0x38 == op)
12550 {
12551 if (!(op2 & 0x3))
12552 {
12553 /* CPSR is going to be changed. */
12554 record_buf[0] = ARM_PS_REGNUM;
12555 thumb2_insn_r->reg_rec_count = 1;
12556 }
12557 else
12558 {
12559 arm_record_unsupported_insn(thumb2_insn_r);
12560 return -1;
12561 }
12562 }
12563 else if (4 == (op1 & 0x5) || 5 == (op1 & 0x5))
12564 {
12565 /* BLX. */
12566 record_buf[0] = ARM_PS_REGNUM;
12567 record_buf[1] = ARM_LR_REGNUM;
12568 thumb2_insn_r->reg_rec_count = 2;
12569 }
12570
12571 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12572 record_buf);
12573 return ARM_RECORD_SUCCESS;
12574}
12575
12576/* Handler for thumb2 store single data item instructions. */
12577
12578static int
12579thumb2_record_str_single_data (insn_decode_record *thumb2_insn_r)
12580{
12581 struct regcache *reg_cache = thumb2_insn_r->regcache;
12582
12583 uint32_t reg_rn, reg_rm, offset_imm, shift_imm;
12584 uint32_t address, offset_addr;
12585 uint32_t record_buf[8], record_buf_mem[8];
12586 uint32_t op1, op2;
12587
12588 ULONGEST u_regval[2];
12589
12590 op1 = bits (thumb2_insn_r->arm_insn, 21, 23);
12591 op2 = bits (thumb2_insn_r->arm_insn, 6, 11);
12592 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12593 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval[0]);
12594
12595 if (bit (thumb2_insn_r->arm_insn, 23))
12596 {
12597 /* T2 encoding. */
12598 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 11);
12599 offset_addr = u_regval[0] + offset_imm;
12600 address = offset_addr;
12601 }
12602 else
12603 {
12604 /* T3 encoding. */
12605 if ((0 == op1 || 1 == op1 || 2 == op1) && !(op2 & 0x20))
12606 {
12607 /* Handle STRB (register). */
12608 reg_rm = bits (thumb2_insn_r->arm_insn, 0, 3);
12609 regcache_raw_read_unsigned (reg_cache, reg_rm, &u_regval[1]);
12610 shift_imm = bits (thumb2_insn_r->arm_insn, 4, 5);
12611 offset_addr = u_regval[1] << shift_imm;
12612 address = u_regval[0] + offset_addr;
12613 }
12614 else
12615 {
12616 offset_imm = bits (thumb2_insn_r->arm_insn, 0, 7);
12617 if (bit (thumb2_insn_r->arm_insn, 10))
12618 {
12619 if (bit (thumb2_insn_r->arm_insn, 9))
12620 offset_addr = u_regval[0] + offset_imm;
12621 else
12622 offset_addr = u_regval[0] - offset_imm;
12623
12624 address = offset_addr;
12625 }
12626 else
12627 address = u_regval[0];
12628 }
12629 }
12630
12631 switch (op1)
12632 {
12633 /* Store byte instructions. */
12634 case 4:
12635 case 0:
12636 record_buf_mem[0] = 1;
12637 break;
12638 /* Store half word instructions. */
12639 case 1:
12640 case 5:
12641 record_buf_mem[0] = 2;
12642 break;
12643 /* Store word instructions. */
12644 case 2:
12645 case 6:
12646 record_buf_mem[0] = 4;
12647 break;
12648
12649 default:
12650 gdb_assert_not_reached ("no decoding pattern found");
12651 break;
12652 }
12653
12654 record_buf_mem[1] = address;
12655 thumb2_insn_r->mem_rec_count = 1;
12656 record_buf[0] = reg_rn;
12657 thumb2_insn_r->reg_rec_count = 1;
12658
12659 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12660 record_buf);
12661 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12662 record_buf_mem);
12663 return ARM_RECORD_SUCCESS;
12664}
12665
12666/* Handler for thumb2 load memory hints instructions. */
12667
12668static int
12669thumb2_record_ld_mem_hints (insn_decode_record *thumb2_insn_r)
12670{
12671 uint32_t record_buf[8];
12672 uint32_t reg_rt, reg_rn;
12673
12674 reg_rt = bits (thumb2_insn_r->arm_insn, 12, 15);
12675 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12676
12677 if (ARM_PC_REGNUM != reg_rt)
12678 {
12679 record_buf[0] = reg_rt;
12680 record_buf[1] = reg_rn;
12681 record_buf[2] = ARM_PS_REGNUM;
12682 thumb2_insn_r->reg_rec_count = 3;
12683
12684 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12685 record_buf);
12686 return ARM_RECORD_SUCCESS;
12687 }
12688
12689 return ARM_RECORD_FAILURE;
12690}
12691
12692/* Handler for thumb2 load word instructions. */
12693
12694static int
12695thumb2_record_ld_word (insn_decode_record *thumb2_insn_r)
12696{
c6ec2b30
OJ
12697 uint32_t record_buf[8];
12698
12699 record_buf[0] = bits (thumb2_insn_r->arm_insn, 12, 15);
12700 record_buf[1] = ARM_PS_REGNUM;
12701 thumb2_insn_r->reg_rec_count = 2;
12702
12703 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12704 record_buf);
12705 return ARM_RECORD_SUCCESS;
12706}
12707
12708/* Handler for thumb2 long multiply, long multiply accumulate, and
12709 divide instructions. */
12710
12711static int
12712thumb2_record_lmul_lmla_div (insn_decode_record *thumb2_insn_r)
12713{
12714 uint32_t opcode1 = 0, opcode2 = 0;
12715 uint32_t record_buf[8];
c6ec2b30
OJ
12716
12717 opcode1 = bits (thumb2_insn_r->arm_insn, 20, 22);
12718 opcode2 = bits (thumb2_insn_r->arm_insn, 4, 7);
12719
12720 if (0 == opcode1 || 2 == opcode1 || (opcode1 >= 4 && opcode1 <= 6))
12721 {
12722 /* Handle SMULL, UMULL, SMULAL. */
12723 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
12724 record_buf[0] = bits (thumb2_insn_r->arm_insn, 16, 19);
12725 record_buf[1] = bits (thumb2_insn_r->arm_insn, 12, 15);
12726 record_buf[2] = ARM_PS_REGNUM;
12727 thumb2_insn_r->reg_rec_count = 3;
12728 }
12729 else if (1 == opcode1 || 3 == opcode2)
12730 {
12731 /* Handle SDIV and UDIV. */
12732 record_buf[0] = bits (thumb2_insn_r->arm_insn, 16, 19);
12733 record_buf[1] = bits (thumb2_insn_r->arm_insn, 12, 15);
12734 record_buf[2] = ARM_PS_REGNUM;
12735 thumb2_insn_r->reg_rec_count = 3;
12736 }
12737 else
12738 return ARM_RECORD_FAILURE;
12739
12740 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12741 record_buf);
12742 return ARM_RECORD_SUCCESS;
12743}
12744
60cc5e93
OJ
12745/* Record handler for thumb32 coprocessor instructions. */
12746
12747static int
12748thumb2_record_coproc_insn (insn_decode_record *thumb2_insn_r)
12749{
12750 if (bit (thumb2_insn_r->arm_insn, 25))
12751 return arm_record_coproc_data_proc (thumb2_insn_r);
12752 else
12753 return arm_record_asimd_vfp_coproc (thumb2_insn_r);
12754}
12755
1e1b6563
OJ
12756/* Record handler for advance SIMD structure load/store instructions. */
12757
12758static int
12759thumb2_record_asimd_struct_ld_st (insn_decode_record *thumb2_insn_r)
12760{
12761 struct regcache *reg_cache = thumb2_insn_r->regcache;
12762 uint32_t l_bit, a_bit, b_bits;
12763 uint32_t record_buf[128], record_buf_mem[128];
bec2ab5a 12764 uint32_t reg_rn, reg_vd, address, f_elem;
1e1b6563
OJ
12765 uint32_t index_r = 0, index_e = 0, bf_regs = 0, index_m = 0, loop_t = 0;
12766 uint8_t f_ebytes;
12767
12768 l_bit = bit (thumb2_insn_r->arm_insn, 21);
12769 a_bit = bit (thumb2_insn_r->arm_insn, 23);
12770 b_bits = bits (thumb2_insn_r->arm_insn, 8, 11);
12771 reg_rn = bits (thumb2_insn_r->arm_insn, 16, 19);
12772 reg_vd = bits (thumb2_insn_r->arm_insn, 12, 15);
12773 reg_vd = (bit (thumb2_insn_r->arm_insn, 22) << 4) | reg_vd;
12774 f_ebytes = (1 << bits (thumb2_insn_r->arm_insn, 6, 7));
1e1b6563
OJ
12775 f_elem = 8 / f_ebytes;
12776
12777 if (!l_bit)
12778 {
12779 ULONGEST u_regval = 0;
12780 regcache_raw_read_unsigned (reg_cache, reg_rn, &u_regval);
12781 address = u_regval;
12782
12783 if (!a_bit)
12784 {
12785 /* Handle VST1. */
12786 if (b_bits == 0x02 || b_bits == 0x0a || (b_bits & 0x0e) == 0x06)
12787 {
12788 if (b_bits == 0x07)
12789 bf_regs = 1;
12790 else if (b_bits == 0x0a)
12791 bf_regs = 2;
12792 else if (b_bits == 0x06)
12793 bf_regs = 3;
12794 else if (b_bits == 0x02)
12795 bf_regs = 4;
12796 else
12797 bf_regs = 0;
12798
12799 for (index_r = 0; index_r < bf_regs; index_r++)
12800 {
12801 for (index_e = 0; index_e < f_elem; index_e++)
12802 {
12803 record_buf_mem[index_m++] = f_ebytes;
12804 record_buf_mem[index_m++] = address;
12805 address = address + f_ebytes;
12806 thumb2_insn_r->mem_rec_count += 1;
12807 }
12808 }
12809 }
12810 /* Handle VST2. */
12811 else if (b_bits == 0x03 || (b_bits & 0x0e) == 0x08)
12812 {
12813 if (b_bits == 0x09 || b_bits == 0x08)
12814 bf_regs = 1;
12815 else if (b_bits == 0x03)
12816 bf_regs = 2;
12817 else
12818 bf_regs = 0;
12819
12820 for (index_r = 0; index_r < bf_regs; index_r++)
12821 for (index_e = 0; index_e < f_elem; index_e++)
12822 {
12823 for (loop_t = 0; loop_t < 2; loop_t++)
12824 {
12825 record_buf_mem[index_m++] = f_ebytes;
12826 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12827 thumb2_insn_r->mem_rec_count += 1;
12828 }
12829 address = address + (2 * f_ebytes);
12830 }
12831 }
12832 /* Handle VST3. */
12833 else if ((b_bits & 0x0e) == 0x04)
12834 {
12835 for (index_e = 0; index_e < f_elem; index_e++)
12836 {
12837 for (loop_t = 0; loop_t < 3; loop_t++)
12838 {
12839 record_buf_mem[index_m++] = f_ebytes;
12840 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12841 thumb2_insn_r->mem_rec_count += 1;
12842 }
12843 address = address + (3 * f_ebytes);
12844 }
12845 }
12846 /* Handle VST4. */
12847 else if (!(b_bits & 0x0e))
12848 {
12849 for (index_e = 0; index_e < f_elem; index_e++)
12850 {
12851 for (loop_t = 0; loop_t < 4; loop_t++)
12852 {
12853 record_buf_mem[index_m++] = f_ebytes;
12854 record_buf_mem[index_m++] = address + (loop_t * f_ebytes);
12855 thumb2_insn_r->mem_rec_count += 1;
12856 }
12857 address = address + (4 * f_ebytes);
12858 }
12859 }
12860 }
12861 else
12862 {
12863 uint8_t bft_size = bits (thumb2_insn_r->arm_insn, 10, 11);
12864
12865 if (bft_size == 0x00)
12866 f_ebytes = 1;
12867 else if (bft_size == 0x01)
12868 f_ebytes = 2;
12869 else if (bft_size == 0x02)
12870 f_ebytes = 4;
12871 else
12872 f_ebytes = 0;
12873
12874 /* Handle VST1. */
12875 if (!(b_bits & 0x0b) || b_bits == 0x08)
12876 thumb2_insn_r->mem_rec_count = 1;
12877 /* Handle VST2. */
12878 else if ((b_bits & 0x0b) == 0x01 || b_bits == 0x09)
12879 thumb2_insn_r->mem_rec_count = 2;
12880 /* Handle VST3. */
12881 else if ((b_bits & 0x0b) == 0x02 || b_bits == 0x0a)
12882 thumb2_insn_r->mem_rec_count = 3;
12883 /* Handle VST4. */
12884 else if ((b_bits & 0x0b) == 0x03 || b_bits == 0x0b)
12885 thumb2_insn_r->mem_rec_count = 4;
12886
12887 for (index_m = 0; index_m < thumb2_insn_r->mem_rec_count; index_m++)
12888 {
12889 record_buf_mem[index_m] = f_ebytes;
12890 record_buf_mem[index_m] = address + (index_m * f_ebytes);
12891 }
12892 }
12893 }
12894 else
12895 {
12896 if (!a_bit)
12897 {
12898 /* Handle VLD1. */
12899 if (b_bits == 0x02 || b_bits == 0x0a || (b_bits & 0x0e) == 0x06)
12900 thumb2_insn_r->reg_rec_count = 1;
12901 /* Handle VLD2. */
12902 else if (b_bits == 0x03 || (b_bits & 0x0e) == 0x08)
12903 thumb2_insn_r->reg_rec_count = 2;
12904 /* Handle VLD3. */
12905 else if ((b_bits & 0x0e) == 0x04)
12906 thumb2_insn_r->reg_rec_count = 3;
12907 /* Handle VLD4. */
12908 else if (!(b_bits & 0x0e))
12909 thumb2_insn_r->reg_rec_count = 4;
12910 }
12911 else
12912 {
12913 /* Handle VLD1. */
12914 if (!(b_bits & 0x0b) || b_bits == 0x08 || b_bits == 0x0c)
12915 thumb2_insn_r->reg_rec_count = 1;
12916 /* Handle VLD2. */
12917 else if ((b_bits & 0x0b) == 0x01 || b_bits == 0x09 || b_bits == 0x0d)
12918 thumb2_insn_r->reg_rec_count = 2;
12919 /* Handle VLD3. */
12920 else if ((b_bits & 0x0b) == 0x02 || b_bits == 0x0a || b_bits == 0x0e)
12921 thumb2_insn_r->reg_rec_count = 3;
12922 /* Handle VLD4. */
12923 else if ((b_bits & 0x0b) == 0x03 || b_bits == 0x0b || b_bits == 0x0f)
12924 thumb2_insn_r->reg_rec_count = 4;
12925
12926 for (index_r = 0; index_r < thumb2_insn_r->reg_rec_count; index_r++)
12927 record_buf[index_r] = reg_vd + ARM_D0_REGNUM + index_r;
12928 }
12929 }
12930
12931 if (bits (thumb2_insn_r->arm_insn, 0, 3) != 15)
12932 {
12933 record_buf[index_r] = reg_rn;
12934 thumb2_insn_r->reg_rec_count += 1;
12935 }
12936
12937 REG_ALLOC (thumb2_insn_r->arm_regs, thumb2_insn_r->reg_rec_count,
12938 record_buf);
12939 MEM_ALLOC (thumb2_insn_r->arm_mems, thumb2_insn_r->mem_rec_count,
12940 record_buf_mem);
12941 return 0;
12942}
12943
c6ec2b30
OJ
12944/* Decodes thumb2 instruction type and invokes its record handler. */
12945
12946static unsigned int
12947thumb2_record_decode_insn_handler (insn_decode_record *thumb2_insn_r)
12948{
12949 uint32_t op, op1, op2;
12950
12951 op = bit (thumb2_insn_r->arm_insn, 15);
12952 op1 = bits (thumb2_insn_r->arm_insn, 27, 28);
12953 op2 = bits (thumb2_insn_r->arm_insn, 20, 26);
12954
12955 if (op1 == 0x01)
12956 {
12957 if (!(op2 & 0x64 ))
12958 {
12959 /* Load/store multiple instruction. */
12960 return thumb2_record_ld_st_multiple (thumb2_insn_r);
12961 }
b121eeb9 12962 else if ((op2 & 0x64) == 0x4)
c6ec2b30
OJ
12963 {
12964 /* Load/store (dual/exclusive) and table branch instruction. */
12965 return thumb2_record_ld_st_dual_ex_tbb (thumb2_insn_r);
12966 }
b121eeb9 12967 else if ((op2 & 0x60) == 0x20)
c6ec2b30
OJ
12968 {
12969 /* Data-processing (shifted register). */
12970 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r);
12971 }
12972 else if (op2 & 0x40)
12973 {
12974 /* Co-processor instructions. */
60cc5e93 12975 return thumb2_record_coproc_insn (thumb2_insn_r);
c6ec2b30
OJ
12976 }
12977 }
12978 else if (op1 == 0x02)
12979 {
12980 if (op)
12981 {
12982 /* Branches and miscellaneous control instructions. */
12983 return thumb2_record_branch_misc_cntrl (thumb2_insn_r);
12984 }
12985 else if (op2 & 0x20)
12986 {
12987 /* Data-processing (plain binary immediate) instruction. */
12988 return thumb2_record_ps_dest_generic (thumb2_insn_r);
12989 }
12990 else
12991 {
12992 /* Data-processing (modified immediate). */
12993 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r);
12994 }
12995 }
12996 else if (op1 == 0x03)
12997 {
12998 if (!(op2 & 0x71 ))
12999 {
13000 /* Store single data item. */
13001 return thumb2_record_str_single_data (thumb2_insn_r);
13002 }
13003 else if (!((op2 & 0x71) ^ 0x10))
13004 {
13005 /* Advanced SIMD or structure load/store instructions. */
1e1b6563 13006 return thumb2_record_asimd_struct_ld_st (thumb2_insn_r);
c6ec2b30
OJ
13007 }
13008 else if (!((op2 & 0x67) ^ 0x01))
13009 {
13010 /* Load byte, memory hints instruction. */
13011 return thumb2_record_ld_mem_hints (thumb2_insn_r);
13012 }
13013 else if (!((op2 & 0x67) ^ 0x03))
13014 {
13015 /* Load halfword, memory hints instruction. */
13016 return thumb2_record_ld_mem_hints (thumb2_insn_r);
13017 }
13018 else if (!((op2 & 0x67) ^ 0x05))
13019 {
13020 /* Load word instruction. */
13021 return thumb2_record_ld_word (thumb2_insn_r);
13022 }
13023 else if (!((op2 & 0x70) ^ 0x20))
13024 {
13025 /* Data-processing (register) instruction. */
13026 return thumb2_record_ps_dest_generic (thumb2_insn_r);
13027 }
13028 else if (!((op2 & 0x78) ^ 0x30))
13029 {
13030 /* Multiply, multiply accumulate, abs diff instruction. */
13031 return thumb2_record_ps_dest_generic (thumb2_insn_r);
13032 }
13033 else if (!((op2 & 0x78) ^ 0x38))
13034 {
13035 /* Long multiply, long multiply accumulate, and divide. */
13036 return thumb2_record_lmul_lmla_div (thumb2_insn_r);
13037 }
13038 else if (op2 & 0x40)
13039 {
13040 /* Co-processor instructions. */
60cc5e93 13041 return thumb2_record_coproc_insn (thumb2_insn_r);
c6ec2b30
OJ
13042 }
13043 }
13044
13045 return -1;
13046}
72508ac0 13047
ffdbe864 13048namespace {
728a7913
YQ
13049/* Abstract memory reader. */
13050
13051class abstract_memory_reader
13052{
13053public:
13054 /* Read LEN bytes of target memory at address MEMADDR, placing the
13055 results in GDB's memory at BUF. Return true on success. */
13056
13057 virtual bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) = 0;
13058};
13059
13060/* Instruction reader from real target. */
13061
13062class instruction_reader : public abstract_memory_reader
13063{
13064 public:
632e107b 13065 bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) override
728a7913
YQ
13066 {
13067 if (target_read_memory (memaddr, buf, len))
13068 return false;
13069 else
13070 return true;
13071 }
13072};
13073
ffdbe864
YQ
13074} // namespace
13075
72508ac0
PO
13076/* Extracts arm/thumb/thumb2 insn depending on the size, and returns 0 on success
13077and positive val on fauilure. */
13078
13079static int
728a7913
YQ
13080extract_arm_insn (abstract_memory_reader& reader,
13081 insn_decode_record *insn_record, uint32_t insn_size)
72508ac0
PO
13082{
13083 gdb_byte buf[insn_size];
13084
13085 memset (&buf[0], 0, insn_size);
13086
728a7913 13087 if (!reader.read (insn_record->this_addr, buf, insn_size))
72508ac0
PO
13088 return 1;
13089 insn_record->arm_insn = (uint32_t) extract_unsigned_integer (&buf[0],
13090 insn_size,
2959fed9 13091 gdbarch_byte_order_for_code (insn_record->gdbarch));
72508ac0
PO
13092 return 0;
13093}
13094
13095typedef int (*sti_arm_hdl_fp_t) (insn_decode_record*);
13096
13097/* Decode arm/thumb insn depending on condition cods and opcodes; and
13098 dispatch it. */
13099
13100static int
728a7913
YQ
13101decode_insn (abstract_memory_reader &reader, insn_decode_record *arm_record,
13102 record_type_t record_type, uint32_t insn_size)
72508ac0
PO
13103{
13104
01e57735
YQ
13105 /* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm
13106 instruction. */
0fa9c223 13107 static const sti_arm_hdl_fp_t arm_handle_insn[8] =
72508ac0
PO
13108 {
13109 arm_record_data_proc_misc_ld_str, /* 000. */
13110 arm_record_data_proc_imm, /* 001. */
13111 arm_record_ld_st_imm_offset, /* 010. */
13112 arm_record_ld_st_reg_offset, /* 011. */
13113 arm_record_ld_st_multiple, /* 100. */
13114 arm_record_b_bl, /* 101. */
60cc5e93 13115 arm_record_asimd_vfp_coproc, /* 110. */
72508ac0
PO
13116 arm_record_coproc_data_proc /* 111. */
13117 };
13118
01e57735
YQ
13119 /* (Starting from numerical 0); bits 13,14,15 decodes type of thumb
13120 instruction. */
0fa9c223 13121 static const sti_arm_hdl_fp_t thumb_handle_insn[8] =
72508ac0
PO
13122 { \
13123 thumb_record_shift_add_sub, /* 000. */
13124 thumb_record_add_sub_cmp_mov, /* 001. */
13125 thumb_record_ld_st_reg_offset, /* 010. */
13126 thumb_record_ld_st_imm_offset, /* 011. */
13127 thumb_record_ld_st_stack, /* 100. */
13128 thumb_record_misc, /* 101. */
13129 thumb_record_ldm_stm_swi, /* 110. */
13130 thumb_record_branch /* 111. */
13131 };
13132
13133 uint32_t ret = 0; /* return value: negative:failure 0:success. */
13134 uint32_t insn_id = 0;
13135
728a7913 13136 if (extract_arm_insn (reader, arm_record, insn_size))
72508ac0
PO
13137 {
13138 if (record_debug)
01e57735
YQ
13139 {
13140 printf_unfiltered (_("Process record: error reading memory at "
13141 "addr %s len = %d.\n"),
13142 paddress (arm_record->gdbarch,
13143 arm_record->this_addr), insn_size);
13144 }
72508ac0
PO
13145 return -1;
13146 }
13147 else if (ARM_RECORD == record_type)
13148 {
13149 arm_record->cond = bits (arm_record->arm_insn, 28, 31);
13150 insn_id = bits (arm_record->arm_insn, 25, 27);
ca92db2d
YQ
13151
13152 if (arm_record->cond == 0xf)
13153 ret = arm_record_extension_space (arm_record);
13154 else
01e57735 13155 {
ca92db2d
YQ
13156 /* If this insn has fallen into extension space
13157 then we need not decode it anymore. */
01e57735
YQ
13158 ret = arm_handle_insn[insn_id] (arm_record);
13159 }
ca92db2d
YQ
13160 if (ret != ARM_RECORD_SUCCESS)
13161 {
13162 arm_record_unsupported_insn (arm_record);
13163 ret = -1;
13164 }
72508ac0
PO
13165 }
13166 else if (THUMB_RECORD == record_type)
13167 {
13168 /* As thumb does not have condition codes, we set negative. */
13169 arm_record->cond = -1;
13170 insn_id = bits (arm_record->arm_insn, 13, 15);
13171 ret = thumb_handle_insn[insn_id] (arm_record);
ca92db2d
YQ
13172 if (ret != ARM_RECORD_SUCCESS)
13173 {
13174 arm_record_unsupported_insn (arm_record);
13175 ret = -1;
13176 }
72508ac0
PO
13177 }
13178 else if (THUMB2_RECORD == record_type)
13179 {
c6ec2b30
OJ
13180 /* As thumb does not have condition codes, we set negative. */
13181 arm_record->cond = -1;
13182
13183 /* Swap first half of 32bit thumb instruction with second half. */
13184 arm_record->arm_insn
01e57735 13185 = (arm_record->arm_insn >> 16) | (arm_record->arm_insn << 16);
c6ec2b30 13186
ca92db2d 13187 ret = thumb2_record_decode_insn_handler (arm_record);
c6ec2b30 13188
ca92db2d 13189 if (ret != ARM_RECORD_SUCCESS)
01e57735
YQ
13190 {
13191 arm_record_unsupported_insn (arm_record);
13192 ret = -1;
13193 }
72508ac0
PO
13194 }
13195 else
13196 {
13197 /* Throw assertion. */
13198 gdb_assert_not_reached ("not a valid instruction, could not decode");
13199 }
13200
13201 return ret;
13202}
13203
b121eeb9
YQ
13204#if GDB_SELF_TEST
13205namespace selftests {
13206
13207/* Provide both 16-bit and 32-bit thumb instructions. */
13208
13209class instruction_reader_thumb : public abstract_memory_reader
13210{
13211public:
13212 template<size_t SIZE>
13213 instruction_reader_thumb (enum bfd_endian endian,
13214 const uint16_t (&insns)[SIZE])
13215 : m_endian (endian), m_insns (insns), m_insns_size (SIZE)
13216 {}
13217
632e107b 13218 bool read (CORE_ADDR memaddr, gdb_byte *buf, const size_t len) override
b121eeb9
YQ
13219 {
13220 SELF_CHECK (len == 4 || len == 2);
13221 SELF_CHECK (memaddr % 2 == 0);
13222 SELF_CHECK ((memaddr / 2) < m_insns_size);
13223
13224 store_unsigned_integer (buf, 2, m_endian, m_insns[memaddr / 2]);
13225 if (len == 4)
13226 {
13227 store_unsigned_integer (&buf[2], 2, m_endian,
13228 m_insns[memaddr / 2 + 1]);
13229 }
13230 return true;
13231 }
13232
13233private:
13234 enum bfd_endian m_endian;
13235 const uint16_t *m_insns;
13236 size_t m_insns_size;
13237};
13238
13239static void
13240arm_record_test (void)
13241{
13242 struct gdbarch_info info;
13243 gdbarch_info_init (&info);
13244 info.bfd_arch_info = bfd_scan_arch ("arm");
13245
13246 struct gdbarch *gdbarch = gdbarch_find_by_info (info);
13247
13248 SELF_CHECK (gdbarch != NULL);
13249
13250 /* 16-bit Thumb instructions. */
13251 {
13252 insn_decode_record arm_record;
13253
13254 memset (&arm_record, 0, sizeof (insn_decode_record));
13255 arm_record.gdbarch = gdbarch;
13256
13257 static const uint16_t insns[] = {
13258 /* db b2 uxtb r3, r3 */
13259 0xb2db,
13260 /* cd 58 ldr r5, [r1, r3] */
13261 0x58cd,
13262 };
13263
13264 enum bfd_endian endian = gdbarch_byte_order_for_code (arm_record.gdbarch);
13265 instruction_reader_thumb reader (endian, insns);
13266 int ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13267 THUMB_INSN_SIZE_BYTES);
13268
13269 SELF_CHECK (ret == 0);
13270 SELF_CHECK (arm_record.mem_rec_count == 0);
13271 SELF_CHECK (arm_record.reg_rec_count == 1);
13272 SELF_CHECK (arm_record.arm_regs[0] == 3);
13273
13274 arm_record.this_addr += 2;
13275 ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13276 THUMB_INSN_SIZE_BYTES);
13277
13278 SELF_CHECK (ret == 0);
13279 SELF_CHECK (arm_record.mem_rec_count == 0);
13280 SELF_CHECK (arm_record.reg_rec_count == 1);
13281 SELF_CHECK (arm_record.arm_regs[0] == 5);
13282 }
13283
13284 /* 32-bit Thumb-2 instructions. */
13285 {
13286 insn_decode_record arm_record;
13287
13288 memset (&arm_record, 0, sizeof (insn_decode_record));
13289 arm_record.gdbarch = gdbarch;
13290
13291 static const uint16_t insns[] = {
13292 /* 1d ee 70 7f mrc 15, 0, r7, cr13, cr0, {3} */
13293 0xee1d, 0x7f70,
13294 };
13295
13296 enum bfd_endian endian = gdbarch_byte_order_for_code (arm_record.gdbarch);
13297 instruction_reader_thumb reader (endian, insns);
13298 int ret = decode_insn (reader, &arm_record, THUMB2_RECORD,
13299 THUMB2_INSN_SIZE_BYTES);
13300
13301 SELF_CHECK (ret == 0);
13302 SELF_CHECK (arm_record.mem_rec_count == 0);
13303 SELF_CHECK (arm_record.reg_rec_count == 1);
13304 SELF_CHECK (arm_record.arm_regs[0] == 7);
13305 }
13306}
13307} // namespace selftests
13308#endif /* GDB_SELF_TEST */
72508ac0
PO
13309
13310/* Cleans up local record registers and memory allocations. */
13311
13312static void
13313deallocate_reg_mem (insn_decode_record *record)
13314{
13315 xfree (record->arm_regs);
13316 xfree (record->arm_mems);
13317}
13318
13319
01e57735 13320/* Parse the current instruction and record the values of the registers and
72508ac0
PO
13321 memory that will be changed in current instruction to record_arch_list".
13322 Return -1 if something is wrong. */
13323
13324int
01e57735
YQ
13325arm_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
13326 CORE_ADDR insn_addr)
72508ac0
PO
13327{
13328
72508ac0
PO
13329 uint32_t no_of_rec = 0;
13330 uint32_t ret = 0; /* return value: -1:record failure ; 0:success */
13331 ULONGEST t_bit = 0, insn_id = 0;
13332
13333 ULONGEST u_regval = 0;
13334
13335 insn_decode_record arm_record;
13336
13337 memset (&arm_record, 0, sizeof (insn_decode_record));
13338 arm_record.regcache = regcache;
13339 arm_record.this_addr = insn_addr;
13340 arm_record.gdbarch = gdbarch;
13341
13342
13343 if (record_debug > 1)
13344 {
13345 fprintf_unfiltered (gdb_stdlog, "Process record: arm_process_record "
01e57735 13346 "addr = %s\n",
72508ac0
PO
13347 paddress (gdbarch, arm_record.this_addr));
13348 }
13349
728a7913
YQ
13350 instruction_reader reader;
13351 if (extract_arm_insn (reader, &arm_record, 2))
72508ac0
PO
13352 {
13353 if (record_debug)
01e57735
YQ
13354 {
13355 printf_unfiltered (_("Process record: error reading memory at "
13356 "addr %s len = %d.\n"),
13357 paddress (arm_record.gdbarch,
13358 arm_record.this_addr), 2);
13359 }
72508ac0
PO
13360 return -1;
13361 }
13362
13363 /* Check the insn, whether it is thumb or arm one. */
13364
13365 t_bit = arm_psr_thumb_bit (arm_record.gdbarch);
13366 regcache_raw_read_unsigned (arm_record.regcache, ARM_PS_REGNUM, &u_regval);
13367
13368
13369 if (!(u_regval & t_bit))
13370 {
13371 /* We are decoding arm insn. */
728a7913 13372 ret = decode_insn (reader, &arm_record, ARM_RECORD, ARM_INSN_SIZE_BYTES);
72508ac0
PO
13373 }
13374 else
13375 {
13376 insn_id = bits (arm_record.arm_insn, 11, 15);
13377 /* is it thumb2 insn? */
13378 if ((0x1D == insn_id) || (0x1E == insn_id) || (0x1F == insn_id))
01e57735 13379 {
728a7913 13380 ret = decode_insn (reader, &arm_record, THUMB2_RECORD,
01e57735
YQ
13381 THUMB2_INSN_SIZE_BYTES);
13382 }
72508ac0 13383 else
01e57735
YQ
13384 {
13385 /* We are decoding thumb insn. */
728a7913
YQ
13386 ret = decode_insn (reader, &arm_record, THUMB_RECORD,
13387 THUMB_INSN_SIZE_BYTES);
01e57735 13388 }
72508ac0
PO
13389 }
13390
13391 if (0 == ret)
13392 {
13393 /* Record registers. */
25ea693b 13394 record_full_arch_list_add_reg (arm_record.regcache, ARM_PC_REGNUM);
72508ac0 13395 if (arm_record.arm_regs)
01e57735
YQ
13396 {
13397 for (no_of_rec = 0; no_of_rec < arm_record.reg_rec_count; no_of_rec++)
13398 {
13399 if (record_full_arch_list_add_reg
25ea693b 13400 (arm_record.regcache , arm_record.arm_regs[no_of_rec]))
01e57735
YQ
13401 ret = -1;
13402 }
13403 }
72508ac0
PO
13404 /* Record memories. */
13405 if (arm_record.arm_mems)
01e57735
YQ
13406 {
13407 for (no_of_rec = 0; no_of_rec < arm_record.mem_rec_count; no_of_rec++)
13408 {
13409 if (record_full_arch_list_add_mem
13410 ((CORE_ADDR)arm_record.arm_mems[no_of_rec].addr,
25ea693b 13411 arm_record.arm_mems[no_of_rec].len))
01e57735
YQ
13412 ret = -1;
13413 }
13414 }
72508ac0 13415
25ea693b 13416 if (record_full_arch_list_add_end ())
01e57735 13417 ret = -1;
72508ac0
PO
13418 }
13419
13420
13421 deallocate_reg_mem (&arm_record);
13422
13423 return ret;
13424}
This page took 2.613462 seconds and 4 git commands to generate.