1 /* Common target dependent code for GDB on ARM systems.
3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include <ctype.h> /* XXX for isupper (). */
29 #include "dis-asm.h" /* For register styles. */
32 #include "reggroups.h"
33 #include "target-float.h"
35 #include "arch-utils.h"
37 #include "frame-unwind.h"
38 #include "frame-base.h"
39 #include "trad-frame.h"
41 #include "dwarf2/frame.h"
43 #include "prologue-value.h"
45 #include "target-descriptions.h"
46 #include "user-regs.h"
47 #include "observable.h"
48 #include "count-one-bits.h"
51 #include "arch/arm-get-next-pcs.h"
53 #include "gdb/sim-arm.h"
56 #include "coff/internal.h"
60 #include "record-full.h"
64 #include "gdbsupport/selftest.h"
67 static bool arm_debug
;
69 /* Macros for setting and testing a bit in a minimal symbol that marks
70 it as Thumb function. The MSB of the minimal symbol's "info" field
71 is used for this purpose.
73 MSYMBOL_SET_SPECIAL Actually sets the "special" bit.
74 MSYMBOL_IS_SPECIAL Tests the "special" bit in a minimal symbol. */
76 #define MSYMBOL_SET_SPECIAL(msym) \
77 MSYMBOL_TARGET_FLAG_1 (msym) = 1
79 #define MSYMBOL_IS_SPECIAL(msym) \
80 MSYMBOL_TARGET_FLAG_1 (msym)
82 struct arm_mapping_symbol
87 bool operator< (const arm_mapping_symbol
&other
) const
88 { return this->value
< other
.value
; }
91 typedef std::vector
<arm_mapping_symbol
> arm_mapping_symbol_vec
;
95 explicit arm_per_bfd (size_t num_sections
)
96 : section_maps (new arm_mapping_symbol_vec
[num_sections
]),
97 section_maps_sorted (new bool[num_sections
] ())
100 DISABLE_COPY_AND_ASSIGN (arm_per_bfd
);
102 /* Information about mapping symbols ($a, $d, $t) in the objfile.
104 The format is an array of vectors of arm_mapping_symbols, there is one
105 vector for each section of the objfile (the array is index by BFD section
108 For each section, the vector of arm_mapping_symbol is sorted by
109 symbol value (address). */
110 std::unique_ptr
<arm_mapping_symbol_vec
[]> section_maps
;
112 /* For each corresponding element of section_maps above, is this vector
114 std::unique_ptr
<bool[]> section_maps_sorted
;
117 /* Per-bfd data used for mapping symbols. */
118 static bfd_key
<arm_per_bfd
> arm_bfd_data_key
;
120 /* The list of available "set arm ..." and "show arm ..." commands. */
121 static struct cmd_list_element
*setarmcmdlist
= NULL
;
122 static struct cmd_list_element
*showarmcmdlist
= NULL
;
124 /* The type of floating-point to use. Keep this in sync with enum
125 arm_float_model, and the help string in _initialize_arm_tdep. */
126 static const char *const fp_model_strings
[] =
136 /* A variable that can be configured by the user. */
137 static enum arm_float_model arm_fp_model
= ARM_FLOAT_AUTO
;
138 static const char *current_fp_model
= "auto";
140 /* The ABI to use. Keep this in sync with arm_abi_kind. */
141 static const char *const arm_abi_strings
[] =
149 /* A variable that can be configured by the user. */
150 static enum arm_abi_kind arm_abi_global
= ARM_ABI_AUTO
;
151 static const char *arm_abi_string
= "auto";
153 /* The execution mode to assume. */
154 static const char *const arm_mode_strings
[] =
162 static const char *arm_fallback_mode_string
= "auto";
163 static const char *arm_force_mode_string
= "auto";
165 /* The standard register names, and all the valid aliases for them. Note
166 that `fp', `sp' and `pc' are not added in this alias list, because they
167 have been added as builtin user registers in
168 std-regs.c:_initialize_frame_reg. */
173 } arm_register_aliases
[] = {
174 /* Basic register numbers. */
191 /* Synonyms (argument and variable registers). */
204 /* Other platform-specific names for r9. */
210 /* Names used by GCC (not listed in the ARM EABI). */
212 /* A special name from the older ATPCS. */
216 static const char *const arm_register_names
[] =
217 {"r0", "r1", "r2", "r3", /* 0 1 2 3 */
218 "r4", "r5", "r6", "r7", /* 4 5 6 7 */
219 "r8", "r9", "r10", "r11", /* 8 9 10 11 */
220 "r12", "sp", "lr", "pc", /* 12 13 14 15 */
221 "f0", "f1", "f2", "f3", /* 16 17 18 19 */
222 "f4", "f5", "f6", "f7", /* 20 21 22 23 */
223 "fps", "cpsr" }; /* 24 25 */
225 /* Holds the current set of options to be passed to the disassembler. */
226 static char *arm_disassembler_options
;
228 /* Valid register name styles. */
229 static const char **valid_disassembly_styles
;
231 /* Disassembly style to use. Default to "std" register names. */
232 static const char *disassembly_style
;
234 /* All possible arm target descriptors. */
235 static struct target_desc
*tdesc_arm_list
[ARM_FP_TYPE_INVALID
];
236 static struct target_desc
*tdesc_arm_mprofile_list
[ARM_M_TYPE_INVALID
];
238 /* This is used to keep the bfd arch_info in sync with the disassembly
240 static void set_disassembly_style_sfunc (const char *, int,
241 struct cmd_list_element
*);
242 static void show_disassembly_style_sfunc (struct ui_file
*, int,
243 struct cmd_list_element
*,
246 static enum register_status
arm_neon_quad_read (struct gdbarch
*gdbarch
,
247 readable_regcache
*regcache
,
248 int regnum
, gdb_byte
*buf
);
249 static void arm_neon_quad_write (struct gdbarch
*gdbarch
,
250 struct regcache
*regcache
,
251 int regnum
, const gdb_byte
*buf
);
254 arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs
*self
);
257 /* get_next_pcs operations. */
258 static struct arm_get_next_pcs_ops arm_get_next_pcs_ops
= {
259 arm_get_next_pcs_read_memory_unsigned_integer
,
260 arm_get_next_pcs_syscall_next_pc
,
261 arm_get_next_pcs_addr_bits_remove
,
262 arm_get_next_pcs_is_thumb
,
266 struct arm_prologue_cache
268 /* The stack pointer at the time this frame was created; i.e. the
269 caller's stack pointer when this function was called. It is used
270 to identify this frame. */
273 /* The frame base for this frame is just prev_sp - frame size.
274 FRAMESIZE is the distance from the frame pointer to the
275 initial stack pointer. */
279 /* The register used to hold the frame pointer for this frame. */
282 /* Saved register offsets. */
283 struct trad_frame_saved_reg
*saved_regs
;
286 static CORE_ADDR
arm_analyze_prologue (struct gdbarch
*gdbarch
,
287 CORE_ADDR prologue_start
,
288 CORE_ADDR prologue_end
,
289 struct arm_prologue_cache
*cache
);
291 /* Architecture version for displaced stepping. This effects the behaviour of
292 certain instructions, and really should not be hard-wired. */
294 #define DISPLACED_STEPPING_ARCH_VERSION 5
296 /* See arm-tdep.h. */
298 bool arm_apcs_32
= true;
300 /* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
303 arm_psr_thumb_bit (struct gdbarch
*gdbarch
)
305 if (gdbarch_tdep (gdbarch
)->is_m
)
311 /* Determine if the processor is currently executing in Thumb mode. */
314 arm_is_thumb (struct regcache
*regcache
)
317 ULONGEST t_bit
= arm_psr_thumb_bit (regcache
->arch ());
319 cpsr
= regcache_raw_get_unsigned (regcache
, ARM_PS_REGNUM
);
321 return (cpsr
& t_bit
) != 0;
324 /* Determine if FRAME is executing in Thumb mode. */
327 arm_frame_is_thumb (struct frame_info
*frame
)
330 ULONGEST t_bit
= arm_psr_thumb_bit (get_frame_arch (frame
));
332 /* Every ARM frame unwinder can unwind the T bit of the CPSR, either
333 directly (from a signal frame or dummy frame) or by interpreting
334 the saved LR (from a prologue or DWARF frame). So consult it and
335 trust the unwinders. */
336 cpsr
= get_frame_register_unsigned (frame
, ARM_PS_REGNUM
);
338 return (cpsr
& t_bit
) != 0;
341 /* Search for the mapping symbol covering MEMADDR. If one is found,
342 return its type. Otherwise, return 0. If START is non-NULL,
343 set *START to the location of the mapping symbol. */
346 arm_find_mapping_symbol (CORE_ADDR memaddr
, CORE_ADDR
*start
)
348 struct obj_section
*sec
;
350 /* If there are mapping symbols, consult them. */
351 sec
= find_pc_section (memaddr
);
354 arm_per_bfd
*data
= arm_bfd_data_key
.get (sec
->objfile
->obfd
);
357 unsigned int section_idx
= sec
->the_bfd_section
->index
;
358 arm_mapping_symbol_vec
&map
359 = data
->section_maps
[section_idx
];
361 /* Sort the vector on first use. */
362 if (!data
->section_maps_sorted
[section_idx
])
364 std::sort (map
.begin (), map
.end ());
365 data
->section_maps_sorted
[section_idx
] = true;
368 struct arm_mapping_symbol map_key
369 = { memaddr
- obj_section_addr (sec
), 0 };
370 arm_mapping_symbol_vec::const_iterator it
371 = std::lower_bound (map
.begin (), map
.end (), map_key
);
373 /* std::lower_bound finds the earliest ordered insertion
374 point. If the symbol at this position starts at this exact
375 address, we use that; otherwise, the preceding
376 mapping symbol covers this address. */
379 if (it
->value
== map_key
.value
)
382 *start
= it
->value
+ obj_section_addr (sec
);
387 if (it
> map
.begin ())
389 arm_mapping_symbol_vec::const_iterator prev_it
393 *start
= prev_it
->value
+ obj_section_addr (sec
);
394 return prev_it
->type
;
402 /* Determine if the program counter specified in MEMADDR is in a Thumb
403 function. This function should be called for addresses unrelated to
404 any executing frame; otherwise, prefer arm_frame_is_thumb. */
407 arm_pc_is_thumb (struct gdbarch
*gdbarch
, CORE_ADDR memaddr
)
409 struct bound_minimal_symbol sym
;
411 arm_displaced_step_closure
*dsc
412 = ((arm_displaced_step_closure
* )
413 get_displaced_step_closure_by_addr (memaddr
));
415 /* If checking the mode of displaced instruction in copy area, the mode
416 should be determined by instruction on the original address. */
420 fprintf_unfiltered (gdb_stdlog
,
421 "displaced: check mode of %.8lx instead of %.8lx\n",
422 (unsigned long) dsc
->insn_addr
,
423 (unsigned long) memaddr
);
424 memaddr
= dsc
->insn_addr
;
427 /* If bit 0 of the address is set, assume this is a Thumb address. */
428 if (IS_THUMB_ADDR (memaddr
))
431 /* If the user wants to override the symbol table, let him. */
432 if (strcmp (arm_force_mode_string
, "arm") == 0)
434 if (strcmp (arm_force_mode_string
, "thumb") == 0)
437 /* ARM v6-M and v7-M are always in Thumb mode. */
438 if (gdbarch_tdep (gdbarch
)->is_m
)
441 /* If there are mapping symbols, consult them. */
442 type
= arm_find_mapping_symbol (memaddr
, NULL
);
446 /* Thumb functions have a "special" bit set in minimal symbols. */
447 sym
= lookup_minimal_symbol_by_pc (memaddr
);
449 return (MSYMBOL_IS_SPECIAL (sym
.minsym
));
451 /* If the user wants to override the fallback mode, let them. */
452 if (strcmp (arm_fallback_mode_string
, "arm") == 0)
454 if (strcmp (arm_fallback_mode_string
, "thumb") == 0)
457 /* If we couldn't find any symbol, but we're talking to a running
458 target, then trust the current value of $cpsr. This lets
459 "display/i $pc" always show the correct mode (though if there is
460 a symbol table we will not reach here, so it still may not be
461 displayed in the mode it will be executed). */
462 if (target_has_registers
)
463 return arm_frame_is_thumb (get_current_frame ());
465 /* Otherwise we're out of luck; we assume ARM. */
469 /* Determine if the address specified equals any of these magic return
470 values, called EXC_RETURN, defined by the ARM v6-M and v7-M
473 From ARMv6-M Reference Manual B1.5.8
474 Table B1-5 Exception return behavior
476 EXC_RETURN Return To Return Stack
477 0xFFFFFFF1 Handler mode Main
478 0xFFFFFFF9 Thread mode Main
479 0xFFFFFFFD Thread mode Process
481 From ARMv7-M Reference Manual B1.5.8
482 Table B1-8 EXC_RETURN definition of exception return behavior, no FP
484 EXC_RETURN Return To Return Stack
485 0xFFFFFFF1 Handler mode Main
486 0xFFFFFFF9 Thread mode Main
487 0xFFFFFFFD Thread mode Process
489 Table B1-9 EXC_RETURN definition of exception return behavior, with
492 EXC_RETURN Return To Return Stack Frame Type
493 0xFFFFFFE1 Handler mode Main Extended
494 0xFFFFFFE9 Thread mode Main Extended
495 0xFFFFFFED Thread mode Process Extended
496 0xFFFFFFF1 Handler mode Main Basic
497 0xFFFFFFF9 Thread mode Main Basic
498 0xFFFFFFFD Thread mode Process Basic
500 For more details see "B1.5.8 Exception return behavior"
501 in both ARMv6-M and ARMv7-M Architecture Reference Manuals. */
504 arm_m_addr_is_magic (CORE_ADDR addr
)
508 /* Values from Tables in B1.5.8 the EXC_RETURN definitions of
509 the exception return behavior. */
516 /* Address is magic. */
520 /* Address is not magic. */
525 /* Remove useless bits from addresses in a running program. */
527 arm_addr_bits_remove (struct gdbarch
*gdbarch
, CORE_ADDR val
)
529 /* On M-profile devices, do not strip the low bit from EXC_RETURN
530 (the magic exception return address). */
531 if (gdbarch_tdep (gdbarch
)->is_m
532 && arm_m_addr_is_magic (val
))
536 return UNMAKE_THUMB_ADDR (val
);
538 return (val
& 0x03fffffc);
541 /* Return 1 if PC is the start of a compiler helper function which
542 can be safely ignored during prologue skipping. IS_THUMB is true
543 if the function is known to be a Thumb function due to the way it
546 skip_prologue_function (struct gdbarch
*gdbarch
, CORE_ADDR pc
, int is_thumb
)
548 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
549 struct bound_minimal_symbol msym
;
551 msym
= lookup_minimal_symbol_by_pc (pc
);
552 if (msym
.minsym
!= NULL
553 && BMSYMBOL_VALUE_ADDRESS (msym
) == pc
554 && msym
.minsym
->linkage_name () != NULL
)
556 const char *name
= msym
.minsym
->linkage_name ();
558 /* The GNU linker's Thumb call stub to foo is named
560 if (strstr (name
, "_from_thumb") != NULL
)
563 /* On soft-float targets, __truncdfsf2 is called to convert promoted
564 arguments to their argument types in non-prototyped
566 if (startswith (name
, "__truncdfsf2"))
568 if (startswith (name
, "__aeabi_d2f"))
571 /* Internal functions related to thread-local storage. */
572 if (startswith (name
, "__tls_get_addr"))
574 if (startswith (name
, "__aeabi_read_tp"))
579 /* If we run against a stripped glibc, we may be unable to identify
580 special functions by name. Check for one important case,
581 __aeabi_read_tp, by comparing the *code* against the default
582 implementation (this is hand-written ARM assembler in glibc). */
585 && read_code_unsigned_integer (pc
, 4, byte_order_for_code
)
586 == 0xe3e00a0f /* mov r0, #0xffff0fff */
587 && read_code_unsigned_integer (pc
+ 4, 4, byte_order_for_code
)
588 == 0xe240f01f) /* sub pc, r0, #31 */
595 /* Extract the immediate from instruction movw/movt of encoding T. INSN1 is
596 the first 16-bit of instruction, and INSN2 is the second 16-bit of
598 #define EXTRACT_MOVW_MOVT_IMM_T(insn1, insn2) \
599 ((bits ((insn1), 0, 3) << 12) \
600 | (bits ((insn1), 10, 10) << 11) \
601 | (bits ((insn2), 12, 14) << 8) \
602 | bits ((insn2), 0, 7))
604 /* Extract the immediate from instruction movw/movt of encoding A. INSN is
605 the 32-bit instruction. */
606 #define EXTRACT_MOVW_MOVT_IMM_A(insn) \
607 ((bits ((insn), 16, 19) << 12) \
608 | bits ((insn), 0, 11))
610 /* Decode immediate value; implements ThumbExpandImmediate pseudo-op. */
613 thumb_expand_immediate (unsigned int imm
)
615 unsigned int count
= imm
>> 7;
623 return (imm
& 0xff) | ((imm
& 0xff) << 16);
625 return ((imm
& 0xff) << 8) | ((imm
& 0xff) << 24);
627 return (imm
& 0xff) | ((imm
& 0xff) << 8)
628 | ((imm
& 0xff) << 16) | ((imm
& 0xff) << 24);
631 return (0x80 | (imm
& 0x7f)) << (32 - count
);
634 /* Return 1 if the 16-bit Thumb instruction INSN restores SP in
635 epilogue, 0 otherwise. */
638 thumb_instruction_restores_sp (unsigned short insn
)
640 return (insn
== 0x46bd /* mov sp, r7 */
641 || (insn
& 0xff80) == 0xb000 /* add sp, imm */
642 || (insn
& 0xfe00) == 0xbc00); /* pop <registers> */
645 /* Analyze a Thumb prologue, looking for a recognizable stack frame
646 and frame pointer. Scan until we encounter a store that could
647 clobber the stack frame unexpectedly, or an unknown instruction.
648 Return the last address which is definitely safe to skip for an
649 initial breakpoint. */
652 thumb_analyze_prologue (struct gdbarch
*gdbarch
,
653 CORE_ADDR start
, CORE_ADDR limit
,
654 struct arm_prologue_cache
*cache
)
656 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
657 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
661 CORE_ADDR unrecognized_pc
= 0;
663 for (i
= 0; i
< 16; i
++)
664 regs
[i
] = pv_register (i
, 0);
665 pv_area
stack (ARM_SP_REGNUM
, gdbarch_addr_bit (gdbarch
));
667 while (start
< limit
)
671 insn
= read_code_unsigned_integer (start
, 2, byte_order_for_code
);
673 if ((insn
& 0xfe00) == 0xb400) /* push { rlist } */
678 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
681 /* Bits 0-7 contain a mask for registers R0-R7. Bit 8 says
682 whether to save LR (R14). */
683 mask
= (insn
& 0xff) | ((insn
& 0x100) << 6);
685 /* Calculate offsets of saved R0-R7 and LR. */
686 for (regno
= ARM_LR_REGNUM
; regno
>= 0; regno
--)
687 if (mask
& (1 << regno
))
689 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
],
691 stack
.store (regs
[ARM_SP_REGNUM
], 4, regs
[regno
]);
694 else if ((insn
& 0xff80) == 0xb080) /* sub sp, #imm */
696 offset
= (insn
& 0x7f) << 2; /* get scaled offset */
697 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
],
700 else if (thumb_instruction_restores_sp (insn
))
702 /* Don't scan past the epilogue. */
705 else if ((insn
& 0xf800) == 0xa800) /* add Rd, sp, #imm */
706 regs
[bits (insn
, 8, 10)] = pv_add_constant (regs
[ARM_SP_REGNUM
],
708 else if ((insn
& 0xfe00) == 0x1c00 /* add Rd, Rn, #imm */
709 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
))
710 regs
[bits (insn
, 0, 2)] = pv_add_constant (regs
[bits (insn
, 3, 5)],
712 else if ((insn
& 0xf800) == 0x3000 /* add Rd, #imm */
713 && pv_is_register (regs
[bits (insn
, 8, 10)], ARM_SP_REGNUM
))
714 regs
[bits (insn
, 8, 10)] = pv_add_constant (regs
[bits (insn
, 8, 10)],
716 else if ((insn
& 0xfe00) == 0x1800 /* add Rd, Rn, Rm */
717 && pv_is_register (regs
[bits (insn
, 6, 8)], ARM_SP_REGNUM
)
718 && pv_is_constant (regs
[bits (insn
, 3, 5)]))
719 regs
[bits (insn
, 0, 2)] = pv_add (regs
[bits (insn
, 3, 5)],
720 regs
[bits (insn
, 6, 8)]);
721 else if ((insn
& 0xff00) == 0x4400 /* add Rd, Rm */
722 && pv_is_constant (regs
[bits (insn
, 3, 6)]))
724 int rd
= (bit (insn
, 7) << 3) + bits (insn
, 0, 2);
725 int rm
= bits (insn
, 3, 6);
726 regs
[rd
] = pv_add (regs
[rd
], regs
[rm
]);
728 else if ((insn
& 0xff00) == 0x4600) /* mov hi, lo or mov lo, hi */
730 int dst_reg
= (insn
& 0x7) + ((insn
& 0x80) >> 4);
731 int src_reg
= (insn
& 0x78) >> 3;
732 regs
[dst_reg
] = regs
[src_reg
];
734 else if ((insn
& 0xf800) == 0x9000) /* str rd, [sp, #off] */
736 /* Handle stores to the stack. Normally pushes are used,
737 but with GCC -mtpcs-frame, there may be other stores
738 in the prologue to create the frame. */
739 int regno
= (insn
>> 8) & 0x7;
742 offset
= (insn
& 0xff) << 2;
743 addr
= pv_add_constant (regs
[ARM_SP_REGNUM
], offset
);
745 if (stack
.store_would_trash (addr
))
748 stack
.store (addr
, 4, regs
[regno
]);
750 else if ((insn
& 0xf800) == 0x6000) /* str rd, [rn, #off] */
752 int rd
= bits (insn
, 0, 2);
753 int rn
= bits (insn
, 3, 5);
756 offset
= bits (insn
, 6, 10) << 2;
757 addr
= pv_add_constant (regs
[rn
], offset
);
759 if (stack
.store_would_trash (addr
))
762 stack
.store (addr
, 4, regs
[rd
]);
764 else if (((insn
& 0xf800) == 0x7000 /* strb Rd, [Rn, #off] */
765 || (insn
& 0xf800) == 0x8000) /* strh Rd, [Rn, #off] */
766 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
))
767 /* Ignore stores of argument registers to the stack. */
769 else if ((insn
& 0xf800) == 0xc800 /* ldmia Rn!, { registers } */
770 && pv_is_register (regs
[bits (insn
, 8, 10)], ARM_SP_REGNUM
))
771 /* Ignore block loads from the stack, potentially copying
772 parameters from memory. */
774 else if ((insn
& 0xf800) == 0x9800 /* ldr Rd, [Rn, #immed] */
775 || ((insn
& 0xf800) == 0x6800 /* ldr Rd, [sp, #immed] */
776 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
)))
777 /* Similarly ignore single loads from the stack. */
779 else if ((insn
& 0xffc0) == 0x0000 /* lsls Rd, Rm, #0 */
780 || (insn
& 0xffc0) == 0x1c00) /* add Rd, Rn, #0 */
781 /* Skip register copies, i.e. saves to another register
782 instead of the stack. */
784 else if ((insn
& 0xf800) == 0x2000) /* movs Rd, #imm */
785 /* Recognize constant loads; even with small stacks these are necessary
787 regs
[bits (insn
, 8, 10)] = pv_constant (bits (insn
, 0, 7));
788 else if ((insn
& 0xf800) == 0x4800) /* ldr Rd, [pc, #imm] */
790 /* Constant pool loads, for the same reason. */
791 unsigned int constant
;
794 loc
= start
+ 4 + bits (insn
, 0, 7) * 4;
795 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
796 regs
[bits (insn
, 8, 10)] = pv_constant (constant
);
798 else if (thumb_insn_size (insn
) == 4) /* 32-bit Thumb-2 instructions. */
800 unsigned short inst2
;
802 inst2
= read_code_unsigned_integer (start
+ 2, 2,
803 byte_order_for_code
);
805 if ((insn
& 0xf800) == 0xf000 && (inst2
& 0xe800) == 0xe800)
807 /* BL, BLX. Allow some special function calls when
808 skipping the prologue; GCC generates these before
809 storing arguments to the stack. */
811 int j1
, j2
, imm1
, imm2
;
813 imm1
= sbits (insn
, 0, 10);
814 imm2
= bits (inst2
, 0, 10);
815 j1
= bit (inst2
, 13);
816 j2
= bit (inst2
, 11);
818 offset
= ((imm1
<< 12) + (imm2
<< 1));
819 offset
^= ((!j2
) << 22) | ((!j1
) << 23);
821 nextpc
= start
+ 4 + offset
;
822 /* For BLX make sure to clear the low bits. */
823 if (bit (inst2
, 12) == 0)
824 nextpc
= nextpc
& 0xfffffffc;
826 if (!skip_prologue_function (gdbarch
, nextpc
,
827 bit (inst2
, 12) != 0))
831 else if ((insn
& 0xffd0) == 0xe900 /* stmdb Rn{!},
833 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
835 pv_t addr
= regs
[bits (insn
, 0, 3)];
838 if (stack
.store_would_trash (addr
))
841 /* Calculate offsets of saved registers. */
842 for (regno
= ARM_LR_REGNUM
; regno
>= 0; regno
--)
843 if (inst2
& (1 << regno
))
845 addr
= pv_add_constant (addr
, -4);
846 stack
.store (addr
, 4, regs
[regno
]);
850 regs
[bits (insn
, 0, 3)] = addr
;
853 else if ((insn
& 0xff50) == 0xe940 /* strd Rt, Rt2,
855 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
857 int regno1
= bits (inst2
, 12, 15);
858 int regno2
= bits (inst2
, 8, 11);
859 pv_t addr
= regs
[bits (insn
, 0, 3)];
861 offset
= inst2
& 0xff;
863 addr
= pv_add_constant (addr
, offset
);
865 addr
= pv_add_constant (addr
, -offset
);
867 if (stack
.store_would_trash (addr
))
870 stack
.store (addr
, 4, regs
[regno1
]);
871 stack
.store (pv_add_constant (addr
, 4),
875 regs
[bits (insn
, 0, 3)] = addr
;
878 else if ((insn
& 0xfff0) == 0xf8c0 /* str Rt,[Rn,+/-#imm]{!} */
879 && (inst2
& 0x0c00) == 0x0c00
880 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
882 int regno
= bits (inst2
, 12, 15);
883 pv_t addr
= regs
[bits (insn
, 0, 3)];
885 offset
= inst2
& 0xff;
887 addr
= pv_add_constant (addr
, offset
);
889 addr
= pv_add_constant (addr
, -offset
);
891 if (stack
.store_would_trash (addr
))
894 stack
.store (addr
, 4, regs
[regno
]);
897 regs
[bits (insn
, 0, 3)] = addr
;
900 else if ((insn
& 0xfff0) == 0xf8c0 /* str.w Rt,[Rn,#imm] */
901 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
903 int regno
= bits (inst2
, 12, 15);
906 offset
= inst2
& 0xfff;
907 addr
= pv_add_constant (regs
[bits (insn
, 0, 3)], offset
);
909 if (stack
.store_would_trash (addr
))
912 stack
.store (addr
, 4, regs
[regno
]);
915 else if ((insn
& 0xffd0) == 0xf880 /* str{bh}.w Rt,[Rn,#imm] */
916 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
917 /* Ignore stores of argument registers to the stack. */
920 else if ((insn
& 0xffd0) == 0xf800 /* str{bh} Rt,[Rn,#+/-imm] */
921 && (inst2
& 0x0d00) == 0x0c00
922 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
923 /* Ignore stores of argument registers to the stack. */
926 else if ((insn
& 0xffd0) == 0xe890 /* ldmia Rn[!],
928 && (inst2
& 0x8000) == 0x0000
929 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
930 /* Ignore block loads from the stack, potentially copying
931 parameters from memory. */
934 else if ((insn
& 0xffb0) == 0xe950 /* ldrd Rt, Rt2,
936 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
937 /* Similarly ignore dual loads from the stack. */
940 else if ((insn
& 0xfff0) == 0xf850 /* ldr Rt,[Rn,#+/-imm] */
941 && (inst2
& 0x0d00) == 0x0c00
942 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
943 /* Similarly ignore single loads from the stack. */
946 else if ((insn
& 0xfff0) == 0xf8d0 /* ldr.w Rt,[Rn,#imm] */
947 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
948 /* Similarly ignore single loads from the stack. */
951 else if ((insn
& 0xfbf0) == 0xf100 /* add.w Rd, Rn, #imm */
952 && (inst2
& 0x8000) == 0x0000)
954 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
955 | (bits (inst2
, 12, 14) << 8)
956 | bits (inst2
, 0, 7));
958 regs
[bits (inst2
, 8, 11)]
959 = pv_add_constant (regs
[bits (insn
, 0, 3)],
960 thumb_expand_immediate (imm
));
963 else if ((insn
& 0xfbf0) == 0xf200 /* addw Rd, Rn, #imm */
964 && (inst2
& 0x8000) == 0x0000)
966 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
967 | (bits (inst2
, 12, 14) << 8)
968 | bits (inst2
, 0, 7));
970 regs
[bits (inst2
, 8, 11)]
971 = pv_add_constant (regs
[bits (insn
, 0, 3)], imm
);
974 else if ((insn
& 0xfbf0) == 0xf1a0 /* sub.w Rd, Rn, #imm */
975 && (inst2
& 0x8000) == 0x0000)
977 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
978 | (bits (inst2
, 12, 14) << 8)
979 | bits (inst2
, 0, 7));
981 regs
[bits (inst2
, 8, 11)]
982 = pv_add_constant (regs
[bits (insn
, 0, 3)],
983 - (CORE_ADDR
) thumb_expand_immediate (imm
));
986 else if ((insn
& 0xfbf0) == 0xf2a0 /* subw Rd, Rn, #imm */
987 && (inst2
& 0x8000) == 0x0000)
989 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
990 | (bits (inst2
, 12, 14) << 8)
991 | bits (inst2
, 0, 7));
993 regs
[bits (inst2
, 8, 11)]
994 = pv_add_constant (regs
[bits (insn
, 0, 3)], - (CORE_ADDR
) imm
);
997 else if ((insn
& 0xfbff) == 0xf04f) /* mov.w Rd, #const */
999 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1000 | (bits (inst2
, 12, 14) << 8)
1001 | bits (inst2
, 0, 7));
1003 regs
[bits (inst2
, 8, 11)]
1004 = pv_constant (thumb_expand_immediate (imm
));
1007 else if ((insn
& 0xfbf0) == 0xf240) /* movw Rd, #const */
1010 = EXTRACT_MOVW_MOVT_IMM_T (insn
, inst2
);
1012 regs
[bits (inst2
, 8, 11)] = pv_constant (imm
);
1015 else if (insn
== 0xea5f /* mov.w Rd,Rm */
1016 && (inst2
& 0xf0f0) == 0)
1018 int dst_reg
= (inst2
& 0x0f00) >> 8;
1019 int src_reg
= inst2
& 0xf;
1020 regs
[dst_reg
] = regs
[src_reg
];
1023 else if ((insn
& 0xff7f) == 0xf85f) /* ldr.w Rt,<label> */
1025 /* Constant pool loads. */
1026 unsigned int constant
;
1029 offset
= bits (inst2
, 0, 11);
1031 loc
= start
+ 4 + offset
;
1033 loc
= start
+ 4 - offset
;
1035 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
1036 regs
[bits (inst2
, 12, 15)] = pv_constant (constant
);
1039 else if ((insn
& 0xff7f) == 0xe95f) /* ldrd Rt,Rt2,<label> */
1041 /* Constant pool loads. */
1042 unsigned int constant
;
1045 offset
= bits (inst2
, 0, 7) << 2;
1047 loc
= start
+ 4 + offset
;
1049 loc
= start
+ 4 - offset
;
1051 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
1052 regs
[bits (inst2
, 12, 15)] = pv_constant (constant
);
1054 constant
= read_memory_unsigned_integer (loc
+ 4, 4, byte_order
);
1055 regs
[bits (inst2
, 8, 11)] = pv_constant (constant
);
1058 else if (thumb2_instruction_changes_pc (insn
, inst2
))
1060 /* Don't scan past anything that might change control flow. */
1065 /* The optimizer might shove anything into the prologue,
1066 so we just skip what we don't recognize. */
1067 unrecognized_pc
= start
;
1072 else if (thumb_instruction_changes_pc (insn
))
1074 /* Don't scan past anything that might change control flow. */
1079 /* The optimizer might shove anything into the prologue,
1080 so we just skip what we don't recognize. */
1081 unrecognized_pc
= start
;
1088 fprintf_unfiltered (gdb_stdlog
, "Prologue scan stopped at %s\n",
1089 paddress (gdbarch
, start
));
1091 if (unrecognized_pc
== 0)
1092 unrecognized_pc
= start
;
1095 return unrecognized_pc
;
1097 if (pv_is_register (regs
[ARM_FP_REGNUM
], ARM_SP_REGNUM
))
1099 /* Frame pointer is fp. Frame size is constant. */
1100 cache
->framereg
= ARM_FP_REGNUM
;
1101 cache
->framesize
= -regs
[ARM_FP_REGNUM
].k
;
1103 else if (pv_is_register (regs
[THUMB_FP_REGNUM
], ARM_SP_REGNUM
))
1105 /* Frame pointer is r7. Frame size is constant. */
1106 cache
->framereg
= THUMB_FP_REGNUM
;
1107 cache
->framesize
= -regs
[THUMB_FP_REGNUM
].k
;
1111 /* Try the stack pointer... this is a bit desperate. */
1112 cache
->framereg
= ARM_SP_REGNUM
;
1113 cache
->framesize
= -regs
[ARM_SP_REGNUM
].k
;
1116 for (i
= 0; i
< 16; i
++)
1117 if (stack
.find_reg (gdbarch
, i
, &offset
))
1118 cache
->saved_regs
[i
].addr
= offset
;
1120 return unrecognized_pc
;
1124 /* Try to analyze the instructions starting from PC, which load symbol
1125 __stack_chk_guard. Return the address of instruction after loading this
1126 symbol, set the dest register number to *BASEREG, and set the size of
1127 instructions for loading symbol in OFFSET. Return 0 if instructions are
1131 arm_analyze_load_stack_chk_guard(CORE_ADDR pc
, struct gdbarch
*gdbarch
,
1132 unsigned int *destreg
, int *offset
)
1134 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1135 int is_thumb
= arm_pc_is_thumb (gdbarch
, pc
);
1136 unsigned int low
, high
, address
;
1141 unsigned short insn1
1142 = read_code_unsigned_integer (pc
, 2, byte_order_for_code
);
1144 if ((insn1
& 0xf800) == 0x4800) /* ldr Rd, #immed */
1146 *destreg
= bits (insn1
, 8, 10);
1148 address
= (pc
& 0xfffffffc) + 4 + (bits (insn1
, 0, 7) << 2);
1149 address
= read_memory_unsigned_integer (address
, 4,
1150 byte_order_for_code
);
1152 else if ((insn1
& 0xfbf0) == 0xf240) /* movw Rd, #const */
1154 unsigned short insn2
1155 = read_code_unsigned_integer (pc
+ 2, 2, byte_order_for_code
);
1157 low
= EXTRACT_MOVW_MOVT_IMM_T (insn1
, insn2
);
1160 = read_code_unsigned_integer (pc
+ 4, 2, byte_order_for_code
);
1162 = read_code_unsigned_integer (pc
+ 6, 2, byte_order_for_code
);
1164 /* movt Rd, #const */
1165 if ((insn1
& 0xfbc0) == 0xf2c0)
1167 high
= EXTRACT_MOVW_MOVT_IMM_T (insn1
, insn2
);
1168 *destreg
= bits (insn2
, 8, 11);
1170 address
= (high
<< 16 | low
);
1177 = read_code_unsigned_integer (pc
, 4, byte_order_for_code
);
1179 if ((insn
& 0x0e5f0000) == 0x041f0000) /* ldr Rd, [PC, #immed] */
1181 address
= bits (insn
, 0, 11) + pc
+ 8;
1182 address
= read_memory_unsigned_integer (address
, 4,
1183 byte_order_for_code
);
1185 *destreg
= bits (insn
, 12, 15);
1188 else if ((insn
& 0x0ff00000) == 0x03000000) /* movw Rd, #const */
1190 low
= EXTRACT_MOVW_MOVT_IMM_A (insn
);
1193 = read_code_unsigned_integer (pc
+ 4, 4, byte_order_for_code
);
1195 if ((insn
& 0x0ff00000) == 0x03400000) /* movt Rd, #const */
1197 high
= EXTRACT_MOVW_MOVT_IMM_A (insn
);
1198 *destreg
= bits (insn
, 12, 15);
1200 address
= (high
<< 16 | low
);
1208 /* Try to skip a sequence of instructions used for stack protector. If PC
1209 points to the first instruction of this sequence, return the address of
1210 first instruction after this sequence, otherwise, return original PC.
1212 On arm, this sequence of instructions is composed of mainly three steps,
1213 Step 1: load symbol __stack_chk_guard,
1214 Step 2: load from address of __stack_chk_guard,
1215 Step 3: store it to somewhere else.
1217 Usually, instructions on step 2 and step 3 are the same on various ARM
1218 architectures. On step 2, it is one instruction 'ldr Rx, [Rn, #0]', and
1219 on step 3, it is also one instruction 'str Rx, [r7, #immd]'. However,
1220 instructions in step 1 vary from different ARM architectures. On ARMv7,
1223 movw Rn, #:lower16:__stack_chk_guard
1224 movt Rn, #:upper16:__stack_chk_guard
1231 .word __stack_chk_guard
1233 Since ldr/str is a very popular instruction, we can't use them as
1234 'fingerprint' or 'signature' of stack protector sequence. Here we choose
1235 sequence {movw/movt, ldr}/ldr/str plus symbol __stack_chk_guard, if not
1236 stripped, as the 'fingerprint' of a stack protector cdoe sequence. */
1239 arm_skip_stack_protector(CORE_ADDR pc
, struct gdbarch
*gdbarch
)
1241 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1242 unsigned int basereg
;
1243 struct bound_minimal_symbol stack_chk_guard
;
1245 int is_thumb
= arm_pc_is_thumb (gdbarch
, pc
);
1248 /* Try to parse the instructions in Step 1. */
1249 addr
= arm_analyze_load_stack_chk_guard (pc
, gdbarch
,
1254 stack_chk_guard
= lookup_minimal_symbol_by_pc (addr
);
1255 /* ADDR must correspond to a symbol whose name is __stack_chk_guard.
1256 Otherwise, this sequence cannot be for stack protector. */
1257 if (stack_chk_guard
.minsym
== NULL
1258 || !startswith (stack_chk_guard
.minsym
->linkage_name (), "__stack_chk_guard"))
1263 unsigned int destreg
;
1265 = read_code_unsigned_integer (pc
+ offset
, 2, byte_order_for_code
);
1267 /* Step 2: ldr Rd, [Rn, #immed], encoding T1. */
1268 if ((insn
& 0xf800) != 0x6800)
1270 if (bits (insn
, 3, 5) != basereg
)
1272 destreg
= bits (insn
, 0, 2);
1274 insn
= read_code_unsigned_integer (pc
+ offset
+ 2, 2,
1275 byte_order_for_code
);
1276 /* Step 3: str Rd, [Rn, #immed], encoding T1. */
1277 if ((insn
& 0xf800) != 0x6000)
1279 if (destreg
!= bits (insn
, 0, 2))
1284 unsigned int destreg
;
1286 = read_code_unsigned_integer (pc
+ offset
, 4, byte_order_for_code
);
1288 /* Step 2: ldr Rd, [Rn, #immed], encoding A1. */
1289 if ((insn
& 0x0e500000) != 0x04100000)
1291 if (bits (insn
, 16, 19) != basereg
)
1293 destreg
= bits (insn
, 12, 15);
1294 /* Step 3: str Rd, [Rn, #immed], encoding A1. */
1295 insn
= read_code_unsigned_integer (pc
+ offset
+ 4,
1296 4, byte_order_for_code
);
1297 if ((insn
& 0x0e500000) != 0x04000000)
1299 if (bits (insn
, 12, 15) != destreg
)
1302 /* The size of total two instructions ldr/str is 4 on Thumb-2, while 8
1305 return pc
+ offset
+ 4;
1307 return pc
+ offset
+ 8;
1310 /* Advance the PC across any function entry prologue instructions to
1311 reach some "real" code.
1313 The APCS (ARM Procedure Call Standard) defines the following
1317 [stmfd sp!, {a1,a2,a3,a4}]
1318 stmfd sp!, {...,fp,ip,lr,pc}
1319 [stfe f7, [sp, #-12]!]
1320 [stfe f6, [sp, #-12]!]
1321 [stfe f5, [sp, #-12]!]
1322 [stfe f4, [sp, #-12]!]
1323 sub fp, ip, #nn @@ nn == 20 or 4 depending on second insn. */
1326 arm_skip_prologue (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
1328 CORE_ADDR func_addr
, limit_pc
;
1330 /* See if we can determine the end of the prologue via the symbol table.
1331 If so, then return either PC, or the PC after the prologue, whichever
1333 if (find_pc_partial_function (pc
, NULL
, &func_addr
, NULL
))
1335 CORE_ADDR post_prologue_pc
1336 = skip_prologue_using_sal (gdbarch
, func_addr
);
1337 struct compunit_symtab
*cust
= find_pc_compunit_symtab (func_addr
);
1339 if (post_prologue_pc
)
1341 = arm_skip_stack_protector (post_prologue_pc
, gdbarch
);
1344 /* GCC always emits a line note before the prologue and another
1345 one after, even if the two are at the same address or on the
1346 same line. Take advantage of this so that we do not need to
1347 know every instruction that might appear in the prologue. We
1348 will have producer information for most binaries; if it is
1349 missing (e.g. for -gstabs), assuming the GNU tools. */
1350 if (post_prologue_pc
1352 || COMPUNIT_PRODUCER (cust
) == NULL
1353 || startswith (COMPUNIT_PRODUCER (cust
), "GNU ")
1354 || startswith (COMPUNIT_PRODUCER (cust
), "clang ")))
1355 return post_prologue_pc
;
1357 if (post_prologue_pc
!= 0)
1359 CORE_ADDR analyzed_limit
;
1361 /* For non-GCC compilers, make sure the entire line is an
1362 acceptable prologue; GDB will round this function's
1363 return value up to the end of the following line so we
1364 can not skip just part of a line (and we do not want to).
1366 RealView does not treat the prologue specially, but does
1367 associate prologue code with the opening brace; so this
1368 lets us skip the first line if we think it is the opening
1370 if (arm_pc_is_thumb (gdbarch
, func_addr
))
1371 analyzed_limit
= thumb_analyze_prologue (gdbarch
, func_addr
,
1372 post_prologue_pc
, NULL
);
1374 analyzed_limit
= arm_analyze_prologue (gdbarch
, func_addr
,
1375 post_prologue_pc
, NULL
);
1377 if (analyzed_limit
!= post_prologue_pc
)
1380 return post_prologue_pc
;
1384 /* Can't determine prologue from the symbol table, need to examine
1387 /* Find an upper limit on the function prologue using the debug
1388 information. If the debug information could not be used to provide
1389 that bound, then use an arbitrary large number as the upper bound. */
1390 /* Like arm_scan_prologue, stop no later than pc + 64. */
1391 limit_pc
= skip_prologue_using_sal (gdbarch
, pc
);
1393 limit_pc
= pc
+ 64; /* Magic. */
1396 /* Check if this is Thumb code. */
1397 if (arm_pc_is_thumb (gdbarch
, pc
))
1398 return thumb_analyze_prologue (gdbarch
, pc
, limit_pc
, NULL
);
1400 return arm_analyze_prologue (gdbarch
, pc
, limit_pc
, NULL
);
1404 /* Function: thumb_scan_prologue (helper function for arm_scan_prologue)
1405 This function decodes a Thumb function prologue to determine:
1406 1) the size of the stack frame
1407 2) which registers are saved on it
1408 3) the offsets of saved regs
1409 4) the offset from the stack pointer to the frame pointer
1411 A typical Thumb function prologue would create this stack frame
1412 (offsets relative to FP)
1413 old SP -> 24 stack parameters
1416 R7 -> 0 local variables (16 bytes)
1417 SP -> -12 additional stack space (12 bytes)
1418 The frame size would thus be 36 bytes, and the frame offset would be
1419 12 bytes. The frame register is R7.
1421 The comments for thumb_skip_prolog() describe the algorithm we use
1422 to detect the end of the prolog. */
1426 thumb_scan_prologue (struct gdbarch
*gdbarch
, CORE_ADDR prev_pc
,
1427 CORE_ADDR block_addr
, struct arm_prologue_cache
*cache
)
1429 CORE_ADDR prologue_start
;
1430 CORE_ADDR prologue_end
;
1432 if (find_pc_partial_function (block_addr
, NULL
, &prologue_start
,
1435 /* See comment in arm_scan_prologue for an explanation of
1437 if (prologue_end
> prologue_start
+ 64)
1439 prologue_end
= prologue_start
+ 64;
1443 /* We're in the boondocks: we have no idea where the start of the
1447 prologue_end
= std::min (prologue_end
, prev_pc
);
1449 thumb_analyze_prologue (gdbarch
, prologue_start
, prologue_end
, cache
);
1452 /* Return 1 if the ARM instruction INSN restores SP in epilogue, 0
1456 arm_instruction_restores_sp (unsigned int insn
)
1458 if (bits (insn
, 28, 31) != INST_NV
)
1460 if ((insn
& 0x0df0f000) == 0x0080d000
1461 /* ADD SP (register or immediate). */
1462 || (insn
& 0x0df0f000) == 0x0040d000
1463 /* SUB SP (register or immediate). */
1464 || (insn
& 0x0ffffff0) == 0x01a0d000
1466 || (insn
& 0x0fff0000) == 0x08bd0000
1468 || (insn
& 0x0fff0000) == 0x049d0000)
1469 /* POP of a single register. */
1476 /* Analyze an ARM mode prologue starting at PROLOGUE_START and
1477 continuing no further than PROLOGUE_END. If CACHE is non-NULL,
1478 fill it in. Return the first address not recognized as a prologue
1481 We recognize all the instructions typically found in ARM prologues,
1482 plus harmless instructions which can be skipped (either for analysis
1483 purposes, or a more restrictive set that can be skipped when finding
1484 the end of the prologue). */
1487 arm_analyze_prologue (struct gdbarch
*gdbarch
,
1488 CORE_ADDR prologue_start
, CORE_ADDR prologue_end
,
1489 struct arm_prologue_cache
*cache
)
1491 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1493 CORE_ADDR offset
, current_pc
;
1494 pv_t regs
[ARM_FPS_REGNUM
];
1495 CORE_ADDR unrecognized_pc
= 0;
1497 /* Search the prologue looking for instructions that set up the
1498 frame pointer, adjust the stack pointer, and save registers.
1500 Be careful, however, and if it doesn't look like a prologue,
1501 don't try to scan it. If, for instance, a frameless function
1502 begins with stmfd sp!, then we will tell ourselves there is
1503 a frame, which will confuse stack traceback, as well as "finish"
1504 and other operations that rely on a knowledge of the stack
1507 for (regno
= 0; regno
< ARM_FPS_REGNUM
; regno
++)
1508 regs
[regno
] = pv_register (regno
, 0);
1509 pv_area
stack (ARM_SP_REGNUM
, gdbarch_addr_bit (gdbarch
));
1511 for (current_pc
= prologue_start
;
1512 current_pc
< prologue_end
;
1516 = read_code_unsigned_integer (current_pc
, 4, byte_order_for_code
);
1518 if (insn
== 0xe1a0c00d) /* mov ip, sp */
1520 regs
[ARM_IP_REGNUM
] = regs
[ARM_SP_REGNUM
];
1523 else if ((insn
& 0xfff00000) == 0xe2800000 /* add Rd, Rn, #n */
1524 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1526 unsigned imm
= insn
& 0xff; /* immediate value */
1527 unsigned rot
= (insn
& 0xf00) >> 7; /* rotate amount */
1528 int rd
= bits (insn
, 12, 15);
1529 imm
= (imm
>> rot
) | (imm
<< (32 - rot
));
1530 regs
[rd
] = pv_add_constant (regs
[bits (insn
, 16, 19)], imm
);
1533 else if ((insn
& 0xfff00000) == 0xe2400000 /* sub Rd, Rn, #n */
1534 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1536 unsigned imm
= insn
& 0xff; /* immediate value */
1537 unsigned rot
= (insn
& 0xf00) >> 7; /* rotate amount */
1538 int rd
= bits (insn
, 12, 15);
1539 imm
= (imm
>> rot
) | (imm
<< (32 - rot
));
1540 regs
[rd
] = pv_add_constant (regs
[bits (insn
, 16, 19)], -imm
);
1543 else if ((insn
& 0xffff0fff) == 0xe52d0004) /* str Rd,
1546 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1548 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -4);
1549 stack
.store (regs
[ARM_SP_REGNUM
], 4,
1550 regs
[bits (insn
, 12, 15)]);
1553 else if ((insn
& 0xffff0000) == 0xe92d0000)
1554 /* stmfd sp!, {..., fp, ip, lr, pc}
1556 stmfd sp!, {a1, a2, a3, a4} */
1558 int mask
= insn
& 0xffff;
1560 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1563 /* Calculate offsets of saved registers. */
1564 for (regno
= ARM_PC_REGNUM
; regno
>= 0; regno
--)
1565 if (mask
& (1 << regno
))
1568 = pv_add_constant (regs
[ARM_SP_REGNUM
], -4);
1569 stack
.store (regs
[ARM_SP_REGNUM
], 4, regs
[regno
]);
1572 else if ((insn
& 0xffff0000) == 0xe54b0000 /* strb rx,[r11,#-n] */
1573 || (insn
& 0xffff00f0) == 0xe14b00b0 /* strh rx,[r11,#-n] */
1574 || (insn
& 0xffffc000) == 0xe50b0000) /* str rx,[r11,#-n] */
1576 /* No need to add this to saved_regs -- it's just an arg reg. */
1579 else if ((insn
& 0xffff0000) == 0xe5cd0000 /* strb rx,[sp,#n] */
1580 || (insn
& 0xffff00f0) == 0xe1cd00b0 /* strh rx,[sp,#n] */
1581 || (insn
& 0xffffc000) == 0xe58d0000) /* str rx,[sp,#n] */
1583 /* No need to add this to saved_regs -- it's just an arg reg. */
1586 else if ((insn
& 0xfff00000) == 0xe8800000 /* stm Rn,
1588 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1590 /* No need to add this to saved_regs -- it's just arg regs. */
1593 else if ((insn
& 0xfffff000) == 0xe24cb000) /* sub fp, ip #n */
1595 unsigned imm
= insn
& 0xff; /* immediate value */
1596 unsigned rot
= (insn
& 0xf00) >> 7; /* rotate amount */
1597 imm
= (imm
>> rot
) | (imm
<< (32 - rot
));
1598 regs
[ARM_FP_REGNUM
] = pv_add_constant (regs
[ARM_IP_REGNUM
], -imm
);
1600 else if ((insn
& 0xfffff000) == 0xe24dd000) /* sub sp, sp #n */
1602 unsigned imm
= insn
& 0xff; /* immediate value */
1603 unsigned rot
= (insn
& 0xf00) >> 7; /* rotate amount */
1604 imm
= (imm
>> rot
) | (imm
<< (32 - rot
));
1605 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -imm
);
1607 else if ((insn
& 0xffff7fff) == 0xed6d0103 /* stfe f?,
1609 && gdbarch_tdep (gdbarch
)->have_fpa_registers
)
1611 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1614 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -12);
1615 regno
= ARM_F0_REGNUM
+ ((insn
>> 12) & 0x07);
1616 stack
.store (regs
[ARM_SP_REGNUM
], 12, regs
[regno
]);
1618 else if ((insn
& 0xffbf0fff) == 0xec2d0200 /* sfmfd f0, 4,
1620 && gdbarch_tdep (gdbarch
)->have_fpa_registers
)
1622 int n_saved_fp_regs
;
1623 unsigned int fp_start_reg
, fp_bound_reg
;
1625 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1628 if ((insn
& 0x800) == 0x800) /* N0 is set */
1630 if ((insn
& 0x40000) == 0x40000) /* N1 is set */
1631 n_saved_fp_regs
= 3;
1633 n_saved_fp_regs
= 1;
1637 if ((insn
& 0x40000) == 0x40000) /* N1 is set */
1638 n_saved_fp_regs
= 2;
1640 n_saved_fp_regs
= 4;
1643 fp_start_reg
= ARM_F0_REGNUM
+ ((insn
>> 12) & 0x7);
1644 fp_bound_reg
= fp_start_reg
+ n_saved_fp_regs
;
1645 for (; fp_start_reg
< fp_bound_reg
; fp_start_reg
++)
1647 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -12);
1648 stack
.store (regs
[ARM_SP_REGNUM
], 12,
1649 regs
[fp_start_reg
++]);
1652 else if ((insn
& 0xff000000) == 0xeb000000 && cache
== NULL
) /* bl */
1654 /* Allow some special function calls when skipping the
1655 prologue; GCC generates these before storing arguments to
1657 CORE_ADDR dest
= BranchDest (current_pc
, insn
);
1659 if (skip_prologue_function (gdbarch
, dest
, 0))
1664 else if ((insn
& 0xf0000000) != 0xe0000000)
1665 break; /* Condition not true, exit early. */
1666 else if (arm_instruction_changes_pc (insn
))
1667 /* Don't scan past anything that might change control flow. */
1669 else if (arm_instruction_restores_sp (insn
))
1671 /* Don't scan past the epilogue. */
1674 else if ((insn
& 0xfe500000) == 0xe8100000 /* ldm */
1675 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1676 /* Ignore block loads from the stack, potentially copying
1677 parameters from memory. */
1679 else if ((insn
& 0xfc500000) == 0xe4100000
1680 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1681 /* Similarly ignore single loads from the stack. */
1683 else if ((insn
& 0xffff0ff0) == 0xe1a00000)
1684 /* MOV Rd, Rm. Skip register copies, i.e. saves to another
1685 register instead of the stack. */
1689 /* The optimizer might shove anything into the prologue, if
1690 we build up cache (cache != NULL) from scanning prologue,
1691 we just skip what we don't recognize and scan further to
1692 make cache as complete as possible. However, if we skip
1693 prologue, we'll stop immediately on unrecognized
1695 unrecognized_pc
= current_pc
;
1703 if (unrecognized_pc
== 0)
1704 unrecognized_pc
= current_pc
;
1708 int framereg
, framesize
;
1710 /* The frame size is just the distance from the frame register
1711 to the original stack pointer. */
1712 if (pv_is_register (regs
[ARM_FP_REGNUM
], ARM_SP_REGNUM
))
1714 /* Frame pointer is fp. */
1715 framereg
= ARM_FP_REGNUM
;
1716 framesize
= -regs
[ARM_FP_REGNUM
].k
;
1720 /* Try the stack pointer... this is a bit desperate. */
1721 framereg
= ARM_SP_REGNUM
;
1722 framesize
= -regs
[ARM_SP_REGNUM
].k
;
1725 cache
->framereg
= framereg
;
1726 cache
->framesize
= framesize
;
1728 for (regno
= 0; regno
< ARM_FPS_REGNUM
; regno
++)
1729 if (stack
.find_reg (gdbarch
, regno
, &offset
))
1730 cache
->saved_regs
[regno
].addr
= offset
;
1734 fprintf_unfiltered (gdb_stdlog
, "Prologue scan stopped at %s\n",
1735 paddress (gdbarch
, unrecognized_pc
));
1737 return unrecognized_pc
;
1741 arm_scan_prologue (struct frame_info
*this_frame
,
1742 struct arm_prologue_cache
*cache
)
1744 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
1745 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1746 CORE_ADDR prologue_start
, prologue_end
;
1747 CORE_ADDR prev_pc
= get_frame_pc (this_frame
);
1748 CORE_ADDR block_addr
= get_frame_address_in_block (this_frame
);
1750 /* Assume there is no frame until proven otherwise. */
1751 cache
->framereg
= ARM_SP_REGNUM
;
1752 cache
->framesize
= 0;
1754 /* Check for Thumb prologue. */
1755 if (arm_frame_is_thumb (this_frame
))
1757 thumb_scan_prologue (gdbarch
, prev_pc
, block_addr
, cache
);
1761 /* Find the function prologue. If we can't find the function in
1762 the symbol table, peek in the stack frame to find the PC. */
1763 if (find_pc_partial_function (block_addr
, NULL
, &prologue_start
,
1766 /* One way to find the end of the prologue (which works well
1767 for unoptimized code) is to do the following:
1769 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
1772 prologue_end = prev_pc;
1773 else if (sal.end < prologue_end)
1774 prologue_end = sal.end;
1776 This mechanism is very accurate so long as the optimizer
1777 doesn't move any instructions from the function body into the
1778 prologue. If this happens, sal.end will be the last
1779 instruction in the first hunk of prologue code just before
1780 the first instruction that the scheduler has moved from
1781 the body to the prologue.
1783 In order to make sure that we scan all of the prologue
1784 instructions, we use a slightly less accurate mechanism which
1785 may scan more than necessary. To help compensate for this
1786 lack of accuracy, the prologue scanning loop below contains
1787 several clauses which'll cause the loop to terminate early if
1788 an implausible prologue instruction is encountered.
1794 is a suitable endpoint since it accounts for the largest
1795 possible prologue plus up to five instructions inserted by
1798 if (prologue_end
> prologue_start
+ 64)
1800 prologue_end
= prologue_start
+ 64; /* See above. */
1805 /* We have no symbol information. Our only option is to assume this
1806 function has a standard stack frame and the normal frame register.
1807 Then, we can find the value of our frame pointer on entrance to
1808 the callee (or at the present moment if this is the innermost frame).
1809 The value stored there should be the address of the stmfd + 8. */
1810 CORE_ADDR frame_loc
;
1811 ULONGEST return_value
;
1813 /* AAPCS does not use a frame register, so we can abort here. */
1814 if (gdbarch_tdep (gdbarch
)->arm_abi
== ARM_ABI_AAPCS
)
1817 frame_loc
= get_frame_register_unsigned (this_frame
, ARM_FP_REGNUM
);
1818 if (!safe_read_memory_unsigned_integer (frame_loc
, 4, byte_order
,
1823 prologue_start
= gdbarch_addr_bits_remove
1824 (gdbarch
, return_value
) - 8;
1825 prologue_end
= prologue_start
+ 64; /* See above. */
1829 if (prev_pc
< prologue_end
)
1830 prologue_end
= prev_pc
;
1832 arm_analyze_prologue (gdbarch
, prologue_start
, prologue_end
, cache
);
1835 static struct arm_prologue_cache
*
1836 arm_make_prologue_cache (struct frame_info
*this_frame
)
1839 struct arm_prologue_cache
*cache
;
1840 CORE_ADDR unwound_fp
;
1842 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
1843 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
1845 arm_scan_prologue (this_frame
, cache
);
1847 unwound_fp
= get_frame_register_unsigned (this_frame
, cache
->framereg
);
1848 if (unwound_fp
== 0)
1851 cache
->prev_sp
= unwound_fp
+ cache
->framesize
;
1853 /* Calculate actual addresses of saved registers using offsets
1854 determined by arm_scan_prologue. */
1855 for (reg
= 0; reg
< gdbarch_num_regs (get_frame_arch (this_frame
)); reg
++)
1856 if (trad_frame_addr_p (cache
->saved_regs
, reg
))
1857 cache
->saved_regs
[reg
].addr
+= cache
->prev_sp
;
1862 /* Implementation of the stop_reason hook for arm_prologue frames. */
1864 static enum unwind_stop_reason
1865 arm_prologue_unwind_stop_reason (struct frame_info
*this_frame
,
1868 struct arm_prologue_cache
*cache
;
1871 if (*this_cache
== NULL
)
1872 *this_cache
= arm_make_prologue_cache (this_frame
);
1873 cache
= (struct arm_prologue_cache
*) *this_cache
;
1875 /* This is meant to halt the backtrace at "_start". */
1876 pc
= get_frame_pc (this_frame
);
1877 if (pc
<= gdbarch_tdep (get_frame_arch (this_frame
))->lowest_pc
)
1878 return UNWIND_OUTERMOST
;
1880 /* If we've hit a wall, stop. */
1881 if (cache
->prev_sp
== 0)
1882 return UNWIND_OUTERMOST
;
1884 return UNWIND_NO_REASON
;
1887 /* Our frame ID for a normal frame is the current function's starting PC
1888 and the caller's SP when we were called. */
1891 arm_prologue_this_id (struct frame_info
*this_frame
,
1893 struct frame_id
*this_id
)
1895 struct arm_prologue_cache
*cache
;
1899 if (*this_cache
== NULL
)
1900 *this_cache
= arm_make_prologue_cache (this_frame
);
1901 cache
= (struct arm_prologue_cache
*) *this_cache
;
1903 /* Use function start address as part of the frame ID. If we cannot
1904 identify the start address (due to missing symbol information),
1905 fall back to just using the current PC. */
1906 pc
= get_frame_pc (this_frame
);
1907 func
= get_frame_func (this_frame
);
1911 id
= frame_id_build (cache
->prev_sp
, func
);
1915 static struct value
*
1916 arm_prologue_prev_register (struct frame_info
*this_frame
,
1920 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
1921 struct arm_prologue_cache
*cache
;
1923 if (*this_cache
== NULL
)
1924 *this_cache
= arm_make_prologue_cache (this_frame
);
1925 cache
= (struct arm_prologue_cache
*) *this_cache
;
1927 /* If we are asked to unwind the PC, then we need to return the LR
1928 instead. The prologue may save PC, but it will point into this
1929 frame's prologue, not the next frame's resume location. Also
1930 strip the saved T bit. A valid LR may have the low bit set, but
1931 a valid PC never does. */
1932 if (prev_regnum
== ARM_PC_REGNUM
)
1936 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
1937 return frame_unwind_got_constant (this_frame
, prev_regnum
,
1938 arm_addr_bits_remove (gdbarch
, lr
));
1941 /* SP is generally not saved to the stack, but this frame is
1942 identified by the next frame's stack pointer at the time of the call.
1943 The value was already reconstructed into PREV_SP. */
1944 if (prev_regnum
== ARM_SP_REGNUM
)
1945 return frame_unwind_got_constant (this_frame
, prev_regnum
, cache
->prev_sp
);
1947 /* The CPSR may have been changed by the call instruction and by the
1948 called function. The only bit we can reconstruct is the T bit,
1949 by checking the low bit of LR as of the call. This is a reliable
1950 indicator of Thumb-ness except for some ARM v4T pre-interworking
1951 Thumb code, which could get away with a clear low bit as long as
1952 the called function did not use bx. Guess that all other
1953 bits are unchanged; the condition flags are presumably lost,
1954 but the processor status is likely valid. */
1955 if (prev_regnum
== ARM_PS_REGNUM
)
1958 ULONGEST t_bit
= arm_psr_thumb_bit (gdbarch
);
1960 cpsr
= get_frame_register_unsigned (this_frame
, prev_regnum
);
1961 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
1962 if (IS_THUMB_ADDR (lr
))
1966 return frame_unwind_got_constant (this_frame
, prev_regnum
, cpsr
);
1969 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
,
1973 struct frame_unwind arm_prologue_unwind
= {
1975 arm_prologue_unwind_stop_reason
,
1976 arm_prologue_this_id
,
1977 arm_prologue_prev_register
,
1979 default_frame_sniffer
1982 /* Maintain a list of ARM exception table entries per objfile, similar to the
1983 list of mapping symbols. We only cache entries for standard ARM-defined
1984 personality routines; the cache will contain only the frame unwinding
1985 instructions associated with the entry (not the descriptors). */
1987 struct arm_exidx_entry
1992 bool operator< (const arm_exidx_entry
&other
) const
1994 return addr
< other
.addr
;
1998 struct arm_exidx_data
2000 std::vector
<std::vector
<arm_exidx_entry
>> section_maps
;
2003 /* Per-BFD key to store exception handling information. */
2004 static const struct bfd_key
<arm_exidx_data
> arm_exidx_data_key
;
2006 static struct obj_section
*
2007 arm_obj_section_from_vma (struct objfile
*objfile
, bfd_vma vma
)
2009 struct obj_section
*osect
;
2011 ALL_OBJFILE_OSECTIONS (objfile
, osect
)
2012 if (bfd_section_flags (osect
->the_bfd_section
) & SEC_ALLOC
)
2014 bfd_vma start
, size
;
2015 start
= bfd_section_vma (osect
->the_bfd_section
);
2016 size
= bfd_section_size (osect
->the_bfd_section
);
2018 if (start
<= vma
&& vma
< start
+ size
)
2025 /* Parse contents of exception table and exception index sections
2026 of OBJFILE, and fill in the exception table entry cache.
2028 For each entry that refers to a standard ARM-defined personality
2029 routine, extract the frame unwinding instructions (from either
2030 the index or the table section). The unwinding instructions
2032 - extracting them from the rest of the table data
2033 - converting to host endianness
2034 - appending the implicit 0xb0 ("Finish") code
2036 The extracted and normalized instructions are stored for later
2037 retrieval by the arm_find_exidx_entry routine. */
2040 arm_exidx_new_objfile (struct objfile
*objfile
)
2042 struct arm_exidx_data
*data
;
2043 asection
*exidx
, *extab
;
2044 bfd_vma exidx_vma
= 0, extab_vma
= 0;
2047 /* If we've already touched this file, do nothing. */
2048 if (!objfile
|| arm_exidx_data_key
.get (objfile
->obfd
) != NULL
)
2051 /* Read contents of exception table and index. */
2052 exidx
= bfd_get_section_by_name (objfile
->obfd
, ELF_STRING_ARM_unwind
);
2053 gdb::byte_vector exidx_data
;
2056 exidx_vma
= bfd_section_vma (exidx
);
2057 exidx_data
.resize (bfd_section_size (exidx
));
2059 if (!bfd_get_section_contents (objfile
->obfd
, exidx
,
2060 exidx_data
.data (), 0,
2061 exidx_data
.size ()))
2065 extab
= bfd_get_section_by_name (objfile
->obfd
, ".ARM.extab");
2066 gdb::byte_vector extab_data
;
2069 extab_vma
= bfd_section_vma (extab
);
2070 extab_data
.resize (bfd_section_size (extab
));
2072 if (!bfd_get_section_contents (objfile
->obfd
, extab
,
2073 extab_data
.data (), 0,
2074 extab_data
.size ()))
2078 /* Allocate exception table data structure. */
2079 data
= arm_exidx_data_key
.emplace (objfile
->obfd
);
2080 data
->section_maps
.resize (objfile
->obfd
->section_count
);
2082 /* Fill in exception table. */
2083 for (i
= 0; i
< exidx_data
.size () / 8; i
++)
2085 struct arm_exidx_entry new_exidx_entry
;
2086 bfd_vma idx
= bfd_h_get_32 (objfile
->obfd
, exidx_data
.data () + i
* 8);
2087 bfd_vma val
= bfd_h_get_32 (objfile
->obfd
,
2088 exidx_data
.data () + i
* 8 + 4);
2089 bfd_vma addr
= 0, word
= 0;
2090 int n_bytes
= 0, n_words
= 0;
2091 struct obj_section
*sec
;
2092 gdb_byte
*entry
= NULL
;
2094 /* Extract address of start of function. */
2095 idx
= ((idx
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2096 idx
+= exidx_vma
+ i
* 8;
2098 /* Find section containing function and compute section offset. */
2099 sec
= arm_obj_section_from_vma (objfile
, idx
);
2102 idx
-= bfd_section_vma (sec
->the_bfd_section
);
2104 /* Determine address of exception table entry. */
2107 /* EXIDX_CANTUNWIND -- no exception table entry present. */
2109 else if ((val
& 0xff000000) == 0x80000000)
2111 /* Exception table entry embedded in .ARM.exidx
2112 -- must be short form. */
2116 else if (!(val
& 0x80000000))
2118 /* Exception table entry in .ARM.extab. */
2119 addr
= ((val
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2120 addr
+= exidx_vma
+ i
* 8 + 4;
2122 if (addr
>= extab_vma
&& addr
+ 4 <= extab_vma
+ extab_data
.size ())
2124 word
= bfd_h_get_32 (objfile
->obfd
,
2125 extab_data
.data () + addr
- extab_vma
);
2128 if ((word
& 0xff000000) == 0x80000000)
2133 else if ((word
& 0xff000000) == 0x81000000
2134 || (word
& 0xff000000) == 0x82000000)
2138 n_words
= ((word
>> 16) & 0xff);
2140 else if (!(word
& 0x80000000))
2143 struct obj_section
*pers_sec
;
2144 int gnu_personality
= 0;
2146 /* Custom personality routine. */
2147 pers
= ((word
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2148 pers
= UNMAKE_THUMB_ADDR (pers
+ addr
- 4);
2150 /* Check whether we've got one of the variants of the
2151 GNU personality routines. */
2152 pers_sec
= arm_obj_section_from_vma (objfile
, pers
);
2155 static const char *personality
[] =
2157 "__gcc_personality_v0",
2158 "__gxx_personality_v0",
2159 "__gcj_personality_v0",
2160 "__gnu_objc_personality_v0",
2164 CORE_ADDR pc
= pers
+ obj_section_offset (pers_sec
);
2167 for (k
= 0; personality
[k
]; k
++)
2168 if (lookup_minimal_symbol_by_pc_name
2169 (pc
, personality
[k
], objfile
))
2171 gnu_personality
= 1;
2176 /* If so, the next word contains a word count in the high
2177 byte, followed by the same unwind instructions as the
2178 pre-defined forms. */
2180 && addr
+ 4 <= extab_vma
+ extab_data
.size ())
2182 word
= bfd_h_get_32 (objfile
->obfd
,
2184 + addr
- extab_vma
));
2187 n_words
= ((word
>> 24) & 0xff);
2193 /* Sanity check address. */
2195 if (addr
< extab_vma
2196 || addr
+ 4 * n_words
> extab_vma
+ extab_data
.size ())
2197 n_words
= n_bytes
= 0;
2199 /* The unwind instructions reside in WORD (only the N_BYTES least
2200 significant bytes are valid), followed by N_WORDS words in the
2201 extab section starting at ADDR. */
2202 if (n_bytes
|| n_words
)
2205 = (gdb_byte
*) obstack_alloc (&objfile
->objfile_obstack
,
2206 n_bytes
+ n_words
* 4 + 1);
2209 *p
++ = (gdb_byte
) ((word
>> (8 * n_bytes
)) & 0xff);
2213 word
= bfd_h_get_32 (objfile
->obfd
,
2214 extab_data
.data () + addr
- extab_vma
);
2217 *p
++ = (gdb_byte
) ((word
>> 24) & 0xff);
2218 *p
++ = (gdb_byte
) ((word
>> 16) & 0xff);
2219 *p
++ = (gdb_byte
) ((word
>> 8) & 0xff);
2220 *p
++ = (gdb_byte
) (word
& 0xff);
2223 /* Implied "Finish" to terminate the list. */
2227 /* Push entry onto vector. They are guaranteed to always
2228 appear in order of increasing addresses. */
2229 new_exidx_entry
.addr
= idx
;
2230 new_exidx_entry
.entry
= entry
;
2231 data
->section_maps
[sec
->the_bfd_section
->index
].push_back
2236 /* Search for the exception table entry covering MEMADDR. If one is found,
2237 return a pointer to its data. Otherwise, return 0. If START is non-NULL,
2238 set *START to the start of the region covered by this entry. */
2241 arm_find_exidx_entry (CORE_ADDR memaddr
, CORE_ADDR
*start
)
2243 struct obj_section
*sec
;
2245 sec
= find_pc_section (memaddr
);
2248 struct arm_exidx_data
*data
;
2249 struct arm_exidx_entry map_key
= { memaddr
- obj_section_addr (sec
), 0 };
2251 data
= arm_exidx_data_key
.get (sec
->objfile
->obfd
);
2254 std::vector
<arm_exidx_entry
> &map
2255 = data
->section_maps
[sec
->the_bfd_section
->index
];
2258 auto idx
= std::lower_bound (map
.begin (), map
.end (), map_key
);
2260 /* std::lower_bound finds the earliest ordered insertion
2261 point. If the following symbol starts at this exact
2262 address, we use that; otherwise, the preceding
2263 exception table entry covers this address. */
2264 if (idx
< map
.end ())
2266 if (idx
->addr
== map_key
.addr
)
2269 *start
= idx
->addr
+ obj_section_addr (sec
);
2274 if (idx
> map
.begin ())
2278 *start
= idx
->addr
+ obj_section_addr (sec
);
2288 /* Given the current frame THIS_FRAME, and its associated frame unwinding
2289 instruction list from the ARM exception table entry ENTRY, allocate and
2290 return a prologue cache structure describing how to unwind this frame.
2292 Return NULL if the unwinding instruction list contains a "spare",
2293 "reserved" or "refuse to unwind" instruction as defined in section
2294 "9.3 Frame unwinding instructions" of the "Exception Handling ABI
2295 for the ARM Architecture" document. */
2297 static struct arm_prologue_cache
*
2298 arm_exidx_fill_cache (struct frame_info
*this_frame
, gdb_byte
*entry
)
2303 struct arm_prologue_cache
*cache
;
2304 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2305 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
2311 /* Whenever we reload SP, we actually have to retrieve its
2312 actual value in the current frame. */
2315 if (trad_frame_realreg_p (cache
->saved_regs
, ARM_SP_REGNUM
))
2317 int reg
= cache
->saved_regs
[ARM_SP_REGNUM
].realreg
;
2318 vsp
= get_frame_register_unsigned (this_frame
, reg
);
2322 CORE_ADDR addr
= cache
->saved_regs
[ARM_SP_REGNUM
].addr
;
2323 vsp
= get_frame_memory_unsigned (this_frame
, addr
, 4);
2329 /* Decode next unwind instruction. */
2332 if ((insn
& 0xc0) == 0)
2334 int offset
= insn
& 0x3f;
2335 vsp
+= (offset
<< 2) + 4;
2337 else if ((insn
& 0xc0) == 0x40)
2339 int offset
= insn
& 0x3f;
2340 vsp
-= (offset
<< 2) + 4;
2342 else if ((insn
& 0xf0) == 0x80)
2344 int mask
= ((insn
& 0xf) << 8) | *entry
++;
2347 /* The special case of an all-zero mask identifies
2348 "Refuse to unwind". We return NULL to fall back
2349 to the prologue analyzer. */
2353 /* Pop registers r4..r15 under mask. */
2354 for (i
= 0; i
< 12; i
++)
2355 if (mask
& (1 << i
))
2357 cache
->saved_regs
[4 + i
].addr
= vsp
;
2361 /* Special-case popping SP -- we need to reload vsp. */
2362 if (mask
& (1 << (ARM_SP_REGNUM
- 4)))
2365 else if ((insn
& 0xf0) == 0x90)
2367 int reg
= insn
& 0xf;
2369 /* Reserved cases. */
2370 if (reg
== ARM_SP_REGNUM
|| reg
== ARM_PC_REGNUM
)
2373 /* Set SP from another register and mark VSP for reload. */
2374 cache
->saved_regs
[ARM_SP_REGNUM
] = cache
->saved_regs
[reg
];
2377 else if ((insn
& 0xf0) == 0xa0)
2379 int count
= insn
& 0x7;
2380 int pop_lr
= (insn
& 0x8) != 0;
2383 /* Pop r4..r[4+count]. */
2384 for (i
= 0; i
<= count
; i
++)
2386 cache
->saved_regs
[4 + i
].addr
= vsp
;
2390 /* If indicated by flag, pop LR as well. */
2393 cache
->saved_regs
[ARM_LR_REGNUM
].addr
= vsp
;
2397 else if (insn
== 0xb0)
2399 /* We could only have updated PC by popping into it; if so, it
2400 will show up as address. Otherwise, copy LR into PC. */
2401 if (!trad_frame_addr_p (cache
->saved_regs
, ARM_PC_REGNUM
))
2402 cache
->saved_regs
[ARM_PC_REGNUM
]
2403 = cache
->saved_regs
[ARM_LR_REGNUM
];
2408 else if (insn
== 0xb1)
2410 int mask
= *entry
++;
2413 /* All-zero mask and mask >= 16 is "spare". */
2414 if (mask
== 0 || mask
>= 16)
2417 /* Pop r0..r3 under mask. */
2418 for (i
= 0; i
< 4; i
++)
2419 if (mask
& (1 << i
))
2421 cache
->saved_regs
[i
].addr
= vsp
;
2425 else if (insn
== 0xb2)
2427 ULONGEST offset
= 0;
2432 offset
|= (*entry
& 0x7f) << shift
;
2435 while (*entry
++ & 0x80);
2437 vsp
+= 0x204 + (offset
<< 2);
2439 else if (insn
== 0xb3)
2441 int start
= *entry
>> 4;
2442 int count
= (*entry
++) & 0xf;
2445 /* Only registers D0..D15 are valid here. */
2446 if (start
+ count
>= 16)
2449 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2450 for (i
= 0; i
<= count
; i
++)
2452 cache
->saved_regs
[ARM_D0_REGNUM
+ start
+ i
].addr
= vsp
;
2456 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2459 else if ((insn
& 0xf8) == 0xb8)
2461 int count
= insn
& 0x7;
2464 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2465 for (i
= 0; i
<= count
; i
++)
2467 cache
->saved_regs
[ARM_D0_REGNUM
+ 8 + i
].addr
= vsp
;
2471 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2474 else if (insn
== 0xc6)
2476 int start
= *entry
>> 4;
2477 int count
= (*entry
++) & 0xf;
2480 /* Only registers WR0..WR15 are valid. */
2481 if (start
+ count
>= 16)
2484 /* Pop iwmmx registers WR[start]..WR[start+count]. */
2485 for (i
= 0; i
<= count
; i
++)
2487 cache
->saved_regs
[ARM_WR0_REGNUM
+ start
+ i
].addr
= vsp
;
2491 else if (insn
== 0xc7)
2493 int mask
= *entry
++;
2496 /* All-zero mask and mask >= 16 is "spare". */
2497 if (mask
== 0 || mask
>= 16)
2500 /* Pop iwmmx general-purpose registers WCGR0..WCGR3 under mask. */
2501 for (i
= 0; i
< 4; i
++)
2502 if (mask
& (1 << i
))
2504 cache
->saved_regs
[ARM_WCGR0_REGNUM
+ i
].addr
= vsp
;
2508 else if ((insn
& 0xf8) == 0xc0)
2510 int count
= insn
& 0x7;
2513 /* Pop iwmmx registers WR[10]..WR[10+count]. */
2514 for (i
= 0; i
<= count
; i
++)
2516 cache
->saved_regs
[ARM_WR0_REGNUM
+ 10 + i
].addr
= vsp
;
2520 else if (insn
== 0xc8)
2522 int start
= *entry
>> 4;
2523 int count
= (*entry
++) & 0xf;
2526 /* Only registers D0..D31 are valid. */
2527 if (start
+ count
>= 16)
2530 /* Pop VFP double-precision registers
2531 D[16+start]..D[16+start+count]. */
2532 for (i
= 0; i
<= count
; i
++)
2534 cache
->saved_regs
[ARM_D0_REGNUM
+ 16 + start
+ i
].addr
= vsp
;
2538 else if (insn
== 0xc9)
2540 int start
= *entry
>> 4;
2541 int count
= (*entry
++) & 0xf;
2544 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2545 for (i
= 0; i
<= count
; i
++)
2547 cache
->saved_regs
[ARM_D0_REGNUM
+ start
+ i
].addr
= vsp
;
2551 else if ((insn
& 0xf8) == 0xd0)
2553 int count
= insn
& 0x7;
2556 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2557 for (i
= 0; i
<= count
; i
++)
2559 cache
->saved_regs
[ARM_D0_REGNUM
+ 8 + i
].addr
= vsp
;
2565 /* Everything else is "spare". */
2570 /* If we restore SP from a register, assume this was the frame register.
2571 Otherwise just fall back to SP as frame register. */
2572 if (trad_frame_realreg_p (cache
->saved_regs
, ARM_SP_REGNUM
))
2573 cache
->framereg
= cache
->saved_regs
[ARM_SP_REGNUM
].realreg
;
2575 cache
->framereg
= ARM_SP_REGNUM
;
2577 /* Determine offset to previous frame. */
2579 = vsp
- get_frame_register_unsigned (this_frame
, cache
->framereg
);
2581 /* We already got the previous SP. */
2582 cache
->prev_sp
= vsp
;
2587 /* Unwinding via ARM exception table entries. Note that the sniffer
2588 already computes a filled-in prologue cache, which is then used
2589 with the same arm_prologue_this_id and arm_prologue_prev_register
2590 routines also used for prologue-parsing based unwinding. */
2593 arm_exidx_unwind_sniffer (const struct frame_unwind
*self
,
2594 struct frame_info
*this_frame
,
2595 void **this_prologue_cache
)
2597 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2598 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
2599 CORE_ADDR addr_in_block
, exidx_region
, func_start
;
2600 struct arm_prologue_cache
*cache
;
2603 /* See if we have an ARM exception table entry covering this address. */
2604 addr_in_block
= get_frame_address_in_block (this_frame
);
2605 entry
= arm_find_exidx_entry (addr_in_block
, &exidx_region
);
2609 /* The ARM exception table does not describe unwind information
2610 for arbitrary PC values, but is guaranteed to be correct only
2611 at call sites. We have to decide here whether we want to use
2612 ARM exception table information for this frame, or fall back
2613 to using prologue parsing. (Note that if we have DWARF CFI,
2614 this sniffer isn't even called -- CFI is always preferred.)
2616 Before we make this decision, however, we check whether we
2617 actually have *symbol* information for the current frame.
2618 If not, prologue parsing would not work anyway, so we might
2619 as well use the exception table and hope for the best. */
2620 if (find_pc_partial_function (addr_in_block
, NULL
, &func_start
, NULL
))
2624 /* If the next frame is "normal", we are at a call site in this
2625 frame, so exception information is guaranteed to be valid. */
2626 if (get_next_frame (this_frame
)
2627 && get_frame_type (get_next_frame (this_frame
)) == NORMAL_FRAME
)
2630 /* We also assume exception information is valid if we're currently
2631 blocked in a system call. The system library is supposed to
2632 ensure this, so that e.g. pthread cancellation works. */
2633 if (arm_frame_is_thumb (this_frame
))
2637 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame
) - 2,
2638 2, byte_order_for_code
, &insn
)
2639 && (insn
& 0xff00) == 0xdf00 /* svc */)
2646 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame
) - 4,
2647 4, byte_order_for_code
, &insn
)
2648 && (insn
& 0x0f000000) == 0x0f000000 /* svc */)
2652 /* Bail out if we don't know that exception information is valid. */
2656 /* The ARM exception index does not mark the *end* of the region
2657 covered by the entry, and some functions will not have any entry.
2658 To correctly recognize the end of the covered region, the linker
2659 should have inserted dummy records with a CANTUNWIND marker.
2661 Unfortunately, current versions of GNU ld do not reliably do
2662 this, and thus we may have found an incorrect entry above.
2663 As a (temporary) sanity check, we only use the entry if it
2664 lies *within* the bounds of the function. Note that this check
2665 might reject perfectly valid entries that just happen to cover
2666 multiple functions; therefore this check ought to be removed
2667 once the linker is fixed. */
2668 if (func_start
> exidx_region
)
2672 /* Decode the list of unwinding instructions into a prologue cache.
2673 Note that this may fail due to e.g. a "refuse to unwind" code. */
2674 cache
= arm_exidx_fill_cache (this_frame
, entry
);
2678 *this_prologue_cache
= cache
;
2682 struct frame_unwind arm_exidx_unwind
= {
2684 default_frame_unwind_stop_reason
,
2685 arm_prologue_this_id
,
2686 arm_prologue_prev_register
,
2688 arm_exidx_unwind_sniffer
2691 static struct arm_prologue_cache
*
2692 arm_make_epilogue_frame_cache (struct frame_info
*this_frame
)
2694 struct arm_prologue_cache
*cache
;
2697 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2698 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
2700 /* Still rely on the offset calculated from prologue. */
2701 arm_scan_prologue (this_frame
, cache
);
2703 /* Since we are in epilogue, the SP has been restored. */
2704 cache
->prev_sp
= get_frame_register_unsigned (this_frame
, ARM_SP_REGNUM
);
2706 /* Calculate actual addresses of saved registers using offsets
2707 determined by arm_scan_prologue. */
2708 for (reg
= 0; reg
< gdbarch_num_regs (get_frame_arch (this_frame
)); reg
++)
2709 if (trad_frame_addr_p (cache
->saved_regs
, reg
))
2710 cache
->saved_regs
[reg
].addr
+= cache
->prev_sp
;
2715 /* Implementation of function hook 'this_id' in
2716 'struct frame_uwnind' for epilogue unwinder. */
2719 arm_epilogue_frame_this_id (struct frame_info
*this_frame
,
2721 struct frame_id
*this_id
)
2723 struct arm_prologue_cache
*cache
;
2726 if (*this_cache
== NULL
)
2727 *this_cache
= arm_make_epilogue_frame_cache (this_frame
);
2728 cache
= (struct arm_prologue_cache
*) *this_cache
;
2730 /* Use function start address as part of the frame ID. If we cannot
2731 identify the start address (due to missing symbol information),
2732 fall back to just using the current PC. */
2733 pc
= get_frame_pc (this_frame
);
2734 func
= get_frame_func (this_frame
);
2738 (*this_id
) = frame_id_build (cache
->prev_sp
, pc
);
2741 /* Implementation of function hook 'prev_register' in
2742 'struct frame_uwnind' for epilogue unwinder. */
2744 static struct value
*
2745 arm_epilogue_frame_prev_register (struct frame_info
*this_frame
,
2746 void **this_cache
, int regnum
)
2748 if (*this_cache
== NULL
)
2749 *this_cache
= arm_make_epilogue_frame_cache (this_frame
);
2751 return arm_prologue_prev_register (this_frame
, this_cache
, regnum
);
2754 static int arm_stack_frame_destroyed_p_1 (struct gdbarch
*gdbarch
,
2756 static int thumb_stack_frame_destroyed_p (struct gdbarch
*gdbarch
,
2759 /* Implementation of function hook 'sniffer' in
2760 'struct frame_uwnind' for epilogue unwinder. */
2763 arm_epilogue_frame_sniffer (const struct frame_unwind
*self
,
2764 struct frame_info
*this_frame
,
2765 void **this_prologue_cache
)
2767 if (frame_relative_level (this_frame
) == 0)
2769 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2770 CORE_ADDR pc
= get_frame_pc (this_frame
);
2772 if (arm_frame_is_thumb (this_frame
))
2773 return thumb_stack_frame_destroyed_p (gdbarch
, pc
);
2775 return arm_stack_frame_destroyed_p_1 (gdbarch
, pc
);
2781 /* Frame unwinder from epilogue. */
2783 static const struct frame_unwind arm_epilogue_frame_unwind
=
2786 default_frame_unwind_stop_reason
,
2787 arm_epilogue_frame_this_id
,
2788 arm_epilogue_frame_prev_register
,
2790 arm_epilogue_frame_sniffer
,
2793 /* Recognize GCC's trampoline for thumb call-indirect. If we are in a
2794 trampoline, return the target PC. Otherwise return 0.
2796 void call0a (char c, short s, int i, long l) {}
2800 (*pointer_to_call0a) (c, s, i, l);
2803 Instead of calling a stub library function _call_via_xx (xx is
2804 the register name), GCC may inline the trampoline in the object
2805 file as below (register r2 has the address of call0a).
2808 .type main, %function
2817 The trampoline 'bx r2' doesn't belong to main. */
2820 arm_skip_bx_reg (struct frame_info
*frame
, CORE_ADDR pc
)
2822 /* The heuristics of recognizing such trampoline is that FRAME is
2823 executing in Thumb mode and the instruction on PC is 'bx Rm'. */
2824 if (arm_frame_is_thumb (frame
))
2828 if (target_read_memory (pc
, buf
, 2) == 0)
2830 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
2831 enum bfd_endian byte_order_for_code
2832 = gdbarch_byte_order_for_code (gdbarch
);
2834 = extract_unsigned_integer (buf
, 2, byte_order_for_code
);
2836 if ((insn
& 0xff80) == 0x4700) /* bx <Rm> */
2839 = get_frame_register_unsigned (frame
, bits (insn
, 3, 6));
2841 /* Clear the LSB so that gdb core sets step-resume
2842 breakpoint at the right address. */
2843 return UNMAKE_THUMB_ADDR (dest
);
2851 static struct arm_prologue_cache
*
2852 arm_make_stub_cache (struct frame_info
*this_frame
)
2854 struct arm_prologue_cache
*cache
;
2856 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2857 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
2859 cache
->prev_sp
= get_frame_register_unsigned (this_frame
, ARM_SP_REGNUM
);
2864 /* Our frame ID for a stub frame is the current SP and LR. */
2867 arm_stub_this_id (struct frame_info
*this_frame
,
2869 struct frame_id
*this_id
)
2871 struct arm_prologue_cache
*cache
;
2873 if (*this_cache
== NULL
)
2874 *this_cache
= arm_make_stub_cache (this_frame
);
2875 cache
= (struct arm_prologue_cache
*) *this_cache
;
2877 *this_id
= frame_id_build (cache
->prev_sp
, get_frame_pc (this_frame
));
2881 arm_stub_unwind_sniffer (const struct frame_unwind
*self
,
2882 struct frame_info
*this_frame
,
2883 void **this_prologue_cache
)
2885 CORE_ADDR addr_in_block
;
2887 CORE_ADDR pc
, start_addr
;
2890 addr_in_block
= get_frame_address_in_block (this_frame
);
2891 pc
= get_frame_pc (this_frame
);
2892 if (in_plt_section (addr_in_block
)
2893 /* We also use the stub winder if the target memory is unreadable
2894 to avoid having the prologue unwinder trying to read it. */
2895 || target_read_memory (pc
, dummy
, 4) != 0)
2898 if (find_pc_partial_function (pc
, &name
, &start_addr
, NULL
) == 0
2899 && arm_skip_bx_reg (this_frame
, pc
) != 0)
2905 struct frame_unwind arm_stub_unwind
= {
2907 default_frame_unwind_stop_reason
,
2909 arm_prologue_prev_register
,
2911 arm_stub_unwind_sniffer
2914 /* Put here the code to store, into CACHE->saved_regs, the addresses
2915 of the saved registers of frame described by THIS_FRAME. CACHE is
2918 static struct arm_prologue_cache
*
2919 arm_m_exception_cache (struct frame_info
*this_frame
)
2921 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2922 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2923 struct arm_prologue_cache
*cache
;
2924 CORE_ADDR unwound_sp
;
2927 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2928 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
2930 unwound_sp
= get_frame_register_unsigned (this_frame
,
2933 /* The hardware saves eight 32-bit words, comprising xPSR,
2934 ReturnAddress, LR (R14), R12, R3, R2, R1, R0. See details in
2935 "B1.5.6 Exception entry behavior" in
2936 "ARMv7-M Architecture Reference Manual". */
2937 cache
->saved_regs
[0].addr
= unwound_sp
;
2938 cache
->saved_regs
[1].addr
= unwound_sp
+ 4;
2939 cache
->saved_regs
[2].addr
= unwound_sp
+ 8;
2940 cache
->saved_regs
[3].addr
= unwound_sp
+ 12;
2941 cache
->saved_regs
[12].addr
= unwound_sp
+ 16;
2942 cache
->saved_regs
[14].addr
= unwound_sp
+ 20;
2943 cache
->saved_regs
[15].addr
= unwound_sp
+ 24;
2944 cache
->saved_regs
[ARM_PS_REGNUM
].addr
= unwound_sp
+ 28;
2946 /* If bit 9 of the saved xPSR is set, then there is a four-byte
2947 aligner between the top of the 32-byte stack frame and the
2948 previous context's stack pointer. */
2949 cache
->prev_sp
= unwound_sp
+ 32;
2950 if (safe_read_memory_integer (unwound_sp
+ 28, 4, byte_order
, &xpsr
)
2951 && (xpsr
& (1 << 9)) != 0)
2952 cache
->prev_sp
+= 4;
2957 /* Implementation of function hook 'this_id' in
2958 'struct frame_uwnind'. */
2961 arm_m_exception_this_id (struct frame_info
*this_frame
,
2963 struct frame_id
*this_id
)
2965 struct arm_prologue_cache
*cache
;
2967 if (*this_cache
== NULL
)
2968 *this_cache
= arm_m_exception_cache (this_frame
);
2969 cache
= (struct arm_prologue_cache
*) *this_cache
;
2971 /* Our frame ID for a stub frame is the current SP and LR. */
2972 *this_id
= frame_id_build (cache
->prev_sp
,
2973 get_frame_pc (this_frame
));
2976 /* Implementation of function hook 'prev_register' in
2977 'struct frame_uwnind'. */
2979 static struct value
*
2980 arm_m_exception_prev_register (struct frame_info
*this_frame
,
2984 struct arm_prologue_cache
*cache
;
2986 if (*this_cache
== NULL
)
2987 *this_cache
= arm_m_exception_cache (this_frame
);
2988 cache
= (struct arm_prologue_cache
*) *this_cache
;
2990 /* The value was already reconstructed into PREV_SP. */
2991 if (prev_regnum
== ARM_SP_REGNUM
)
2992 return frame_unwind_got_constant (this_frame
, prev_regnum
,
2995 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
,
2999 /* Implementation of function hook 'sniffer' in
3000 'struct frame_uwnind'. */
3003 arm_m_exception_unwind_sniffer (const struct frame_unwind
*self
,
3004 struct frame_info
*this_frame
,
3005 void **this_prologue_cache
)
3007 CORE_ADDR this_pc
= get_frame_pc (this_frame
);
3009 /* No need to check is_m; this sniffer is only registered for
3010 M-profile architectures. */
3012 /* Check if exception frame returns to a magic PC value. */
3013 return arm_m_addr_is_magic (this_pc
);
3016 /* Frame unwinder for M-profile exceptions. */
3018 struct frame_unwind arm_m_exception_unwind
=
3021 default_frame_unwind_stop_reason
,
3022 arm_m_exception_this_id
,
3023 arm_m_exception_prev_register
,
3025 arm_m_exception_unwind_sniffer
3029 arm_normal_frame_base (struct frame_info
*this_frame
, void **this_cache
)
3031 struct arm_prologue_cache
*cache
;
3033 if (*this_cache
== NULL
)
3034 *this_cache
= arm_make_prologue_cache (this_frame
);
3035 cache
= (struct arm_prologue_cache
*) *this_cache
;
3037 return cache
->prev_sp
- cache
->framesize
;
3040 struct frame_base arm_normal_base
= {
3041 &arm_prologue_unwind
,
3042 arm_normal_frame_base
,
3043 arm_normal_frame_base
,
3044 arm_normal_frame_base
3047 static struct value
*
3048 arm_dwarf2_prev_register (struct frame_info
*this_frame
, void **this_cache
,
3051 struct gdbarch
* gdbarch
= get_frame_arch (this_frame
);
3053 ULONGEST t_bit
= arm_psr_thumb_bit (gdbarch
);
3058 /* The PC is normally copied from the return column, which
3059 describes saves of LR. However, that version may have an
3060 extra bit set to indicate Thumb state. The bit is not
3062 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
3063 return frame_unwind_got_constant (this_frame
, regnum
,
3064 arm_addr_bits_remove (gdbarch
, lr
));
3067 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
3068 cpsr
= get_frame_register_unsigned (this_frame
, regnum
);
3069 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
3070 if (IS_THUMB_ADDR (lr
))
3074 return frame_unwind_got_constant (this_frame
, regnum
, cpsr
);
3077 internal_error (__FILE__
, __LINE__
,
3078 _("Unexpected register %d"), regnum
);
3083 arm_dwarf2_frame_init_reg (struct gdbarch
*gdbarch
, int regnum
,
3084 struct dwarf2_frame_state_reg
*reg
,
3085 struct frame_info
*this_frame
)
3091 reg
->how
= DWARF2_FRAME_REG_FN
;
3092 reg
->loc
.fn
= arm_dwarf2_prev_register
;
3095 reg
->how
= DWARF2_FRAME_REG_CFA
;
3100 /* Implement the stack_frame_destroyed_p gdbarch method. */
3103 thumb_stack_frame_destroyed_p (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3105 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
3106 unsigned int insn
, insn2
;
3107 int found_return
= 0, found_stack_adjust
= 0;
3108 CORE_ADDR func_start
, func_end
;
3112 if (!find_pc_partial_function (pc
, NULL
, &func_start
, &func_end
))
3115 /* The epilogue is a sequence of instructions along the following lines:
3117 - add stack frame size to SP or FP
3118 - [if frame pointer used] restore SP from FP
3119 - restore registers from SP [may include PC]
3120 - a return-type instruction [if PC wasn't already restored]
3122 In a first pass, we scan forward from the current PC and verify the
3123 instructions we find as compatible with this sequence, ending in a
3126 However, this is not sufficient to distinguish indirect function calls
3127 within a function from indirect tail calls in the epilogue in some cases.
3128 Therefore, if we didn't already find any SP-changing instruction during
3129 forward scan, we add a backward scanning heuristic to ensure we actually
3130 are in the epilogue. */
3133 while (scan_pc
< func_end
&& !found_return
)
3135 if (target_read_memory (scan_pc
, buf
, 2))
3139 insn
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3141 if ((insn
& 0xff80) == 0x4700) /* bx <Rm> */
3143 else if (insn
== 0x46f7) /* mov pc, lr */
3145 else if (thumb_instruction_restores_sp (insn
))
3147 if ((insn
& 0xff00) == 0xbd00) /* pop <registers, PC> */
3150 else if (thumb_insn_size (insn
) == 4) /* 32-bit Thumb-2 instruction */
3152 if (target_read_memory (scan_pc
, buf
, 2))
3156 insn2
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3158 if (insn
== 0xe8bd) /* ldm.w sp!, <registers> */
3160 if (insn2
& 0x8000) /* <registers> include PC. */
3163 else if (insn
== 0xf85d /* ldr.w <Rt>, [sp], #4 */
3164 && (insn2
& 0x0fff) == 0x0b04)
3166 if ((insn2
& 0xf000) == 0xf000) /* <Rt> is PC. */
3169 else if ((insn
& 0xffbf) == 0xecbd /* vldm sp!, <list> */
3170 && (insn2
& 0x0e00) == 0x0a00)
3182 /* Since any instruction in the epilogue sequence, with the possible
3183 exception of return itself, updates the stack pointer, we need to
3184 scan backwards for at most one instruction. Try either a 16-bit or
3185 a 32-bit instruction. This is just a heuristic, so we do not worry
3186 too much about false positives. */
3188 if (pc
- 4 < func_start
)
3190 if (target_read_memory (pc
- 4, buf
, 4))
3193 insn
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3194 insn2
= extract_unsigned_integer (buf
+ 2, 2, byte_order_for_code
);
3196 if (thumb_instruction_restores_sp (insn2
))
3197 found_stack_adjust
= 1;
3198 else if (insn
== 0xe8bd) /* ldm.w sp!, <registers> */
3199 found_stack_adjust
= 1;
3200 else if (insn
== 0xf85d /* ldr.w <Rt>, [sp], #4 */
3201 && (insn2
& 0x0fff) == 0x0b04)
3202 found_stack_adjust
= 1;
3203 else if ((insn
& 0xffbf) == 0xecbd /* vldm sp!, <list> */
3204 && (insn2
& 0x0e00) == 0x0a00)
3205 found_stack_adjust
= 1;
3207 return found_stack_adjust
;
3211 arm_stack_frame_destroyed_p_1 (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3213 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
3216 CORE_ADDR func_start
, func_end
;
3218 if (!find_pc_partial_function (pc
, NULL
, &func_start
, &func_end
))
3221 /* We are in the epilogue if the previous instruction was a stack
3222 adjustment and the next instruction is a possible return (bx, mov
3223 pc, or pop). We could have to scan backwards to find the stack
3224 adjustment, or forwards to find the return, but this is a decent
3225 approximation. First scan forwards. */
3228 insn
= read_memory_unsigned_integer (pc
, 4, byte_order_for_code
);
3229 if (bits (insn
, 28, 31) != INST_NV
)
3231 if ((insn
& 0x0ffffff0) == 0x012fff10)
3234 else if ((insn
& 0x0ffffff0) == 0x01a0f000)
3237 else if ((insn
& 0x0fff0000) == 0x08bd0000
3238 && (insn
& 0x0000c000) != 0)
3239 /* POP (LDMIA), including PC or LR. */
3246 /* Scan backwards. This is just a heuristic, so do not worry about
3247 false positives from mode changes. */
3249 if (pc
< func_start
+ 4)
3252 insn
= read_memory_unsigned_integer (pc
- 4, 4, byte_order_for_code
);
3253 if (arm_instruction_restores_sp (insn
))
3259 /* Implement the stack_frame_destroyed_p gdbarch method. */
3262 arm_stack_frame_destroyed_p (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3264 if (arm_pc_is_thumb (gdbarch
, pc
))
3265 return thumb_stack_frame_destroyed_p (gdbarch
, pc
);
3267 return arm_stack_frame_destroyed_p_1 (gdbarch
, pc
);
3270 /* When arguments must be pushed onto the stack, they go on in reverse
3271 order. The code below implements a FILO (stack) to do this. */
3276 struct stack_item
*prev
;
3280 static struct stack_item
*
3281 push_stack_item (struct stack_item
*prev
, const gdb_byte
*contents
, int len
)
3283 struct stack_item
*si
;
3284 si
= XNEW (struct stack_item
);
3285 si
->data
= (gdb_byte
*) xmalloc (len
);
3288 memcpy (si
->data
, contents
, len
);
3292 static struct stack_item
*
3293 pop_stack_item (struct stack_item
*si
)
3295 struct stack_item
*dead
= si
;
3302 /* Implement the gdbarch type alignment method, overrides the generic
3303 alignment algorithm for anything that is arm specific. */
3306 arm_type_align (gdbarch
*gdbarch
, struct type
*t
)
3308 t
= check_typedef (t
);
3309 if (TYPE_CODE (t
) == TYPE_CODE_ARRAY
&& TYPE_VECTOR (t
))
3311 /* Use the natural alignment for vector types (the same for
3312 scalar type), but the maximum alignment is 64-bit. */
3313 if (TYPE_LENGTH (t
) > 8)
3316 return TYPE_LENGTH (t
);
3319 /* Allow the common code to calculate the alignment. */
3323 /* Possible base types for a candidate for passing and returning in
3326 enum arm_vfp_cprc_base_type
3335 /* The length of one element of base type B. */
3338 arm_vfp_cprc_unit_length (enum arm_vfp_cprc_base_type b
)
3342 case VFP_CPRC_SINGLE
:
3344 case VFP_CPRC_DOUBLE
:
3346 case VFP_CPRC_VEC64
:
3348 case VFP_CPRC_VEC128
:
3351 internal_error (__FILE__
, __LINE__
, _("Invalid VFP CPRC type: %d."),
3356 /* The character ('s', 'd' or 'q') for the type of VFP register used
3357 for passing base type B. */
3360 arm_vfp_cprc_reg_char (enum arm_vfp_cprc_base_type b
)
3364 case VFP_CPRC_SINGLE
:
3366 case VFP_CPRC_DOUBLE
:
3368 case VFP_CPRC_VEC64
:
3370 case VFP_CPRC_VEC128
:
3373 internal_error (__FILE__
, __LINE__
, _("Invalid VFP CPRC type: %d."),
3378 /* Determine whether T may be part of a candidate for passing and
3379 returning in VFP registers, ignoring the limit on the total number
3380 of components. If *BASE_TYPE is VFP_CPRC_UNKNOWN, set it to the
3381 classification of the first valid component found; if it is not
3382 VFP_CPRC_UNKNOWN, all components must have the same classification
3383 as *BASE_TYPE. If it is found that T contains a type not permitted
3384 for passing and returning in VFP registers, a type differently
3385 classified from *BASE_TYPE, or two types differently classified
3386 from each other, return -1, otherwise return the total number of
3387 base-type elements found (possibly 0 in an empty structure or
3388 array). Vector types are not currently supported, matching the
3389 generic AAPCS support. */
3392 arm_vfp_cprc_sub_candidate (struct type
*t
,
3393 enum arm_vfp_cprc_base_type
*base_type
)
3395 t
= check_typedef (t
);
3396 switch (TYPE_CODE (t
))
3399 switch (TYPE_LENGTH (t
))
3402 if (*base_type
== VFP_CPRC_UNKNOWN
)
3403 *base_type
= VFP_CPRC_SINGLE
;
3404 else if (*base_type
!= VFP_CPRC_SINGLE
)
3409 if (*base_type
== VFP_CPRC_UNKNOWN
)
3410 *base_type
= VFP_CPRC_DOUBLE
;
3411 else if (*base_type
!= VFP_CPRC_DOUBLE
)
3420 case TYPE_CODE_COMPLEX
:
3421 /* Arguments of complex T where T is one of the types float or
3422 double get treated as if they are implemented as:
3431 switch (TYPE_LENGTH (t
))
3434 if (*base_type
== VFP_CPRC_UNKNOWN
)
3435 *base_type
= VFP_CPRC_SINGLE
;
3436 else if (*base_type
!= VFP_CPRC_SINGLE
)
3441 if (*base_type
== VFP_CPRC_UNKNOWN
)
3442 *base_type
= VFP_CPRC_DOUBLE
;
3443 else if (*base_type
!= VFP_CPRC_DOUBLE
)
3452 case TYPE_CODE_ARRAY
:
3454 if (TYPE_VECTOR (t
))
3456 /* A 64-bit or 128-bit containerized vector type are VFP
3458 switch (TYPE_LENGTH (t
))
3461 if (*base_type
== VFP_CPRC_UNKNOWN
)
3462 *base_type
= VFP_CPRC_VEC64
;
3465 if (*base_type
== VFP_CPRC_UNKNOWN
)
3466 *base_type
= VFP_CPRC_VEC128
;
3477 count
= arm_vfp_cprc_sub_candidate (TYPE_TARGET_TYPE (t
),
3481 if (TYPE_LENGTH (t
) == 0)
3483 gdb_assert (count
== 0);
3486 else if (count
== 0)
3488 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
3489 gdb_assert ((TYPE_LENGTH (t
) % unitlen
) == 0);
3490 return TYPE_LENGTH (t
) / unitlen
;
3495 case TYPE_CODE_STRUCT
:
3500 for (i
= 0; i
< TYPE_NFIELDS (t
); i
++)
3504 if (!field_is_static (&TYPE_FIELD (t
, i
)))
3505 sub_count
= arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t
, i
),
3507 if (sub_count
== -1)
3511 if (TYPE_LENGTH (t
) == 0)
3513 gdb_assert (count
== 0);
3516 else if (count
== 0)
3518 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
3519 if (TYPE_LENGTH (t
) != unitlen
* count
)
3524 case TYPE_CODE_UNION
:
3529 for (i
= 0; i
< TYPE_NFIELDS (t
); i
++)
3531 int sub_count
= arm_vfp_cprc_sub_candidate (TYPE_FIELD_TYPE (t
, i
),
3533 if (sub_count
== -1)
3535 count
= (count
> sub_count
? count
: sub_count
);
3537 if (TYPE_LENGTH (t
) == 0)
3539 gdb_assert (count
== 0);
3542 else if (count
== 0)
3544 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
3545 if (TYPE_LENGTH (t
) != unitlen
* count
)
3557 /* Determine whether T is a VFP co-processor register candidate (CPRC)
3558 if passed to or returned from a non-variadic function with the VFP
3559 ABI in effect. Return 1 if it is, 0 otherwise. If it is, set
3560 *BASE_TYPE to the base type for T and *COUNT to the number of
3561 elements of that base type before returning. */
3564 arm_vfp_call_candidate (struct type
*t
, enum arm_vfp_cprc_base_type
*base_type
,
3567 enum arm_vfp_cprc_base_type b
= VFP_CPRC_UNKNOWN
;
3568 int c
= arm_vfp_cprc_sub_candidate (t
, &b
);
3569 if (c
<= 0 || c
> 4)
3576 /* Return 1 if the VFP ABI should be used for passing arguments to and
3577 returning values from a function of type FUNC_TYPE, 0
3581 arm_vfp_abi_for_function (struct gdbarch
*gdbarch
, struct type
*func_type
)
3583 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3584 /* Variadic functions always use the base ABI. Assume that functions
3585 without debug info are not variadic. */
3586 if (func_type
&& TYPE_VARARGS (check_typedef (func_type
)))
3588 /* The VFP ABI is only supported as a variant of AAPCS. */
3589 if (tdep
->arm_abi
!= ARM_ABI_AAPCS
)
3591 return gdbarch_tdep (gdbarch
)->fp_model
== ARM_FLOAT_VFP
;
3594 /* We currently only support passing parameters in integer registers, which
3595 conforms with GCC's default model, and VFP argument passing following
3596 the VFP variant of AAPCS. Several other variants exist and
3597 we should probably support some of them based on the selected ABI. */
3600 arm_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
3601 struct regcache
*regcache
, CORE_ADDR bp_addr
, int nargs
,
3602 struct value
**args
, CORE_ADDR sp
,
3603 function_call_return_method return_method
,
3604 CORE_ADDR struct_addr
)
3606 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
3610 struct stack_item
*si
= NULL
;
3613 unsigned vfp_regs_free
= (1 << 16) - 1;
3615 /* Determine the type of this function and whether the VFP ABI
3617 ftype
= check_typedef (value_type (function
));
3618 if (TYPE_CODE (ftype
) == TYPE_CODE_PTR
)
3619 ftype
= check_typedef (TYPE_TARGET_TYPE (ftype
));
3620 use_vfp_abi
= arm_vfp_abi_for_function (gdbarch
, ftype
);
3622 /* Set the return address. For the ARM, the return breakpoint is
3623 always at BP_ADDR. */
3624 if (arm_pc_is_thumb (gdbarch
, bp_addr
))
3626 regcache_cooked_write_unsigned (regcache
, ARM_LR_REGNUM
, bp_addr
);
3628 /* Walk through the list of args and determine how large a temporary
3629 stack is required. Need to take care here as structs may be
3630 passed on the stack, and we have to push them. */
3633 argreg
= ARM_A1_REGNUM
;
3636 /* The struct_return pointer occupies the first parameter
3637 passing register. */
3638 if (return_method
== return_method_struct
)
3641 fprintf_unfiltered (gdb_stdlog
, "struct return in %s = %s\n",
3642 gdbarch_register_name (gdbarch
, argreg
),
3643 paddress (gdbarch
, struct_addr
));
3644 regcache_cooked_write_unsigned (regcache
, argreg
, struct_addr
);
3648 for (argnum
= 0; argnum
< nargs
; argnum
++)
3651 struct type
*arg_type
;
3652 struct type
*target_type
;
3653 enum type_code typecode
;
3654 const bfd_byte
*val
;
3656 enum arm_vfp_cprc_base_type vfp_base_type
;
3658 int may_use_core_reg
= 1;
3660 arg_type
= check_typedef (value_type (args
[argnum
]));
3661 len
= TYPE_LENGTH (arg_type
);
3662 target_type
= TYPE_TARGET_TYPE (arg_type
);
3663 typecode
= TYPE_CODE (arg_type
);
3664 val
= value_contents (args
[argnum
]);
3666 align
= type_align (arg_type
);
3667 /* Round alignment up to a whole number of words. */
3668 align
= (align
+ ARM_INT_REGISTER_SIZE
- 1)
3669 & ~(ARM_INT_REGISTER_SIZE
- 1);
3670 /* Different ABIs have different maximum alignments. */
3671 if (gdbarch_tdep (gdbarch
)->arm_abi
== ARM_ABI_APCS
)
3673 /* The APCS ABI only requires word alignment. */
3674 align
= ARM_INT_REGISTER_SIZE
;
3678 /* The AAPCS requires at most doubleword alignment. */
3679 if (align
> ARM_INT_REGISTER_SIZE
* 2)
3680 align
= ARM_INT_REGISTER_SIZE
* 2;
3684 && arm_vfp_call_candidate (arg_type
, &vfp_base_type
,
3692 /* Because this is a CPRC it cannot go in a core register or
3693 cause a core register to be skipped for alignment.
3694 Either it goes in VFP registers and the rest of this loop
3695 iteration is skipped for this argument, or it goes on the
3696 stack (and the stack alignment code is correct for this
3698 may_use_core_reg
= 0;
3700 unit_length
= arm_vfp_cprc_unit_length (vfp_base_type
);
3701 shift
= unit_length
/ 4;
3702 mask
= (1 << (shift
* vfp_base_count
)) - 1;
3703 for (regno
= 0; regno
< 16; regno
+= shift
)
3704 if (((vfp_regs_free
>> regno
) & mask
) == mask
)
3713 vfp_regs_free
&= ~(mask
<< regno
);
3714 reg_scaled
= regno
/ shift
;
3715 reg_char
= arm_vfp_cprc_reg_char (vfp_base_type
);
3716 for (i
= 0; i
< vfp_base_count
; i
++)
3720 if (reg_char
== 'q')
3721 arm_neon_quad_write (gdbarch
, regcache
, reg_scaled
+ i
,
3722 val
+ i
* unit_length
);
3725 xsnprintf (name_buf
, sizeof (name_buf
), "%c%d",
3726 reg_char
, reg_scaled
+ i
);
3727 regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
3729 regcache
->cooked_write (regnum
, val
+ i
* unit_length
);
3736 /* This CPRC could not go in VFP registers, so all VFP
3737 registers are now marked as used. */
3742 /* Push stack padding for doubleword alignment. */
3743 if (nstack
& (align
- 1))
3745 si
= push_stack_item (si
, val
, ARM_INT_REGISTER_SIZE
);
3746 nstack
+= ARM_INT_REGISTER_SIZE
;
3749 /* Doubleword aligned quantities must go in even register pairs. */
3750 if (may_use_core_reg
3751 && argreg
<= ARM_LAST_ARG_REGNUM
3752 && align
> ARM_INT_REGISTER_SIZE
3756 /* If the argument is a pointer to a function, and it is a
3757 Thumb function, create a LOCAL copy of the value and set
3758 the THUMB bit in it. */
3759 if (TYPE_CODE_PTR
== typecode
3760 && target_type
!= NULL
3761 && TYPE_CODE_FUNC
== TYPE_CODE (check_typedef (target_type
)))
3763 CORE_ADDR regval
= extract_unsigned_integer (val
, len
, byte_order
);
3764 if (arm_pc_is_thumb (gdbarch
, regval
))
3766 bfd_byte
*copy
= (bfd_byte
*) alloca (len
);
3767 store_unsigned_integer (copy
, len
, byte_order
,
3768 MAKE_THUMB_ADDR (regval
));
3773 /* Copy the argument to general registers or the stack in
3774 register-sized pieces. Large arguments are split between
3775 registers and stack. */
3778 int partial_len
= len
< ARM_INT_REGISTER_SIZE
3779 ? len
: ARM_INT_REGISTER_SIZE
;
3781 = extract_unsigned_integer (val
, partial_len
, byte_order
);
3783 if (may_use_core_reg
&& argreg
<= ARM_LAST_ARG_REGNUM
)
3785 /* The argument is being passed in a general purpose
3787 if (byte_order
== BFD_ENDIAN_BIG
)
3788 regval
<<= (ARM_INT_REGISTER_SIZE
- partial_len
) * 8;
3790 fprintf_unfiltered (gdb_stdlog
, "arg %d in %s = 0x%s\n",
3792 gdbarch_register_name
3794 phex (regval
, ARM_INT_REGISTER_SIZE
));
3795 regcache_cooked_write_unsigned (regcache
, argreg
, regval
);
3800 gdb_byte buf
[ARM_INT_REGISTER_SIZE
];
3802 memset (buf
, 0, sizeof (buf
));
3803 store_unsigned_integer (buf
, partial_len
, byte_order
, regval
);
3805 /* Push the arguments onto the stack. */
3807 fprintf_unfiltered (gdb_stdlog
, "arg %d @ sp + %d\n",
3809 si
= push_stack_item (si
, buf
, ARM_INT_REGISTER_SIZE
);
3810 nstack
+= ARM_INT_REGISTER_SIZE
;
3817 /* If we have an odd number of words to push, then decrement the stack
3818 by one word now, so first stack argument will be dword aligned. */
3825 write_memory (sp
, si
->data
, si
->len
);
3826 si
= pop_stack_item (si
);
3829 /* Finally, update teh SP register. */
3830 regcache_cooked_write_unsigned (regcache
, ARM_SP_REGNUM
, sp
);
3836 /* Always align the frame to an 8-byte boundary. This is required on
3837 some platforms and harmless on the rest. */
3840 arm_frame_align (struct gdbarch
*gdbarch
, CORE_ADDR sp
)
3842 /* Align the stack to eight bytes. */
3843 return sp
& ~ (CORE_ADDR
) 7;
3847 print_fpu_flags (struct ui_file
*file
, int flags
)
3849 if (flags
& (1 << 0))
3850 fputs_filtered ("IVO ", file
);
3851 if (flags
& (1 << 1))
3852 fputs_filtered ("DVZ ", file
);
3853 if (flags
& (1 << 2))
3854 fputs_filtered ("OFL ", file
);
3855 if (flags
& (1 << 3))
3856 fputs_filtered ("UFL ", file
);
3857 if (flags
& (1 << 4))
3858 fputs_filtered ("INX ", file
);
3859 fputc_filtered ('\n', file
);
3862 /* Print interesting information about the floating point processor
3863 (if present) or emulator. */
3865 arm_print_float_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
3866 struct frame_info
*frame
, const char *args
)
3868 unsigned long status
= get_frame_register_unsigned (frame
, ARM_FPS_REGNUM
);
3871 type
= (status
>> 24) & 127;
3872 if (status
& (1 << 31))
3873 fprintf_filtered (file
, _("Hardware FPU type %d\n"), type
);
3875 fprintf_filtered (file
, _("Software FPU type %d\n"), type
);
3876 /* i18n: [floating point unit] mask */
3877 fputs_filtered (_("mask: "), file
);
3878 print_fpu_flags (file
, status
>> 16);
3879 /* i18n: [floating point unit] flags */
3880 fputs_filtered (_("flags: "), file
);
3881 print_fpu_flags (file
, status
);
3884 /* Construct the ARM extended floating point type. */
3885 static struct type
*
3886 arm_ext_type (struct gdbarch
*gdbarch
)
3888 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3890 if (!tdep
->arm_ext_type
)
3892 = arch_float_type (gdbarch
, -1, "builtin_type_arm_ext",
3893 floatformats_arm_ext
);
3895 return tdep
->arm_ext_type
;
3898 static struct type
*
3899 arm_neon_double_type (struct gdbarch
*gdbarch
)
3901 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3903 if (tdep
->neon_double_type
== NULL
)
3905 struct type
*t
, *elem
;
3907 t
= arch_composite_type (gdbarch
, "__gdb_builtin_type_neon_d",
3909 elem
= builtin_type (gdbarch
)->builtin_uint8
;
3910 append_composite_type_field (t
, "u8", init_vector_type (elem
, 8));
3911 elem
= builtin_type (gdbarch
)->builtin_uint16
;
3912 append_composite_type_field (t
, "u16", init_vector_type (elem
, 4));
3913 elem
= builtin_type (gdbarch
)->builtin_uint32
;
3914 append_composite_type_field (t
, "u32", init_vector_type (elem
, 2));
3915 elem
= builtin_type (gdbarch
)->builtin_uint64
;
3916 append_composite_type_field (t
, "u64", elem
);
3917 elem
= builtin_type (gdbarch
)->builtin_float
;
3918 append_composite_type_field (t
, "f32", init_vector_type (elem
, 2));
3919 elem
= builtin_type (gdbarch
)->builtin_double
;
3920 append_composite_type_field (t
, "f64", elem
);
3922 TYPE_VECTOR (t
) = 1;
3923 TYPE_NAME (t
) = "neon_d";
3924 tdep
->neon_double_type
= t
;
3927 return tdep
->neon_double_type
;
3930 /* FIXME: The vector types are not correctly ordered on big-endian
3931 targets. Just as s0 is the low bits of d0, d0[0] is also the low
3932 bits of d0 - regardless of what unit size is being held in d0. So
3933 the offset of the first uint8 in d0 is 7, but the offset of the
3934 first float is 4. This code works as-is for little-endian
3937 static struct type
*
3938 arm_neon_quad_type (struct gdbarch
*gdbarch
)
3940 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
3942 if (tdep
->neon_quad_type
== NULL
)
3944 struct type
*t
, *elem
;
3946 t
= arch_composite_type (gdbarch
, "__gdb_builtin_type_neon_q",
3948 elem
= builtin_type (gdbarch
)->builtin_uint8
;
3949 append_composite_type_field (t
, "u8", init_vector_type (elem
, 16));
3950 elem
= builtin_type (gdbarch
)->builtin_uint16
;
3951 append_composite_type_field (t
, "u16", init_vector_type (elem
, 8));
3952 elem
= builtin_type (gdbarch
)->builtin_uint32
;
3953 append_composite_type_field (t
, "u32", init_vector_type (elem
, 4));
3954 elem
= builtin_type (gdbarch
)->builtin_uint64
;
3955 append_composite_type_field (t
, "u64", init_vector_type (elem
, 2));
3956 elem
= builtin_type (gdbarch
)->builtin_float
;
3957 append_composite_type_field (t
, "f32", init_vector_type (elem
, 4));
3958 elem
= builtin_type (gdbarch
)->builtin_double
;
3959 append_composite_type_field (t
, "f64", init_vector_type (elem
, 2));
3961 TYPE_VECTOR (t
) = 1;
3962 TYPE_NAME (t
) = "neon_q";
3963 tdep
->neon_quad_type
= t
;
3966 return tdep
->neon_quad_type
;
3969 /* Return the GDB type object for the "standard" data type of data in
3972 static struct type
*
3973 arm_register_type (struct gdbarch
*gdbarch
, int regnum
)
3975 int num_regs
= gdbarch_num_regs (gdbarch
);
3977 if (gdbarch_tdep (gdbarch
)->have_vfp_pseudos
3978 && regnum
>= num_regs
&& regnum
< num_regs
+ 32)
3979 return builtin_type (gdbarch
)->builtin_float
;
3981 if (gdbarch_tdep (gdbarch
)->have_neon_pseudos
3982 && regnum
>= num_regs
+ 32 && regnum
< num_regs
+ 32 + 16)
3983 return arm_neon_quad_type (gdbarch
);
3985 /* If the target description has register information, we are only
3986 in this function so that we can override the types of
3987 double-precision registers for NEON. */
3988 if (tdesc_has_registers (gdbarch_target_desc (gdbarch
)))
3990 struct type
*t
= tdesc_register_type (gdbarch
, regnum
);
3992 if (regnum
>= ARM_D0_REGNUM
&& regnum
< ARM_D0_REGNUM
+ 32
3993 && TYPE_CODE (t
) == TYPE_CODE_FLT
3994 && gdbarch_tdep (gdbarch
)->have_neon
)
3995 return arm_neon_double_type (gdbarch
);
4000 if (regnum
>= ARM_F0_REGNUM
&& regnum
< ARM_F0_REGNUM
+ NUM_FREGS
)
4002 if (!gdbarch_tdep (gdbarch
)->have_fpa_registers
)
4003 return builtin_type (gdbarch
)->builtin_void
;
4005 return arm_ext_type (gdbarch
);
4007 else if (regnum
== ARM_SP_REGNUM
)
4008 return builtin_type (gdbarch
)->builtin_data_ptr
;
4009 else if (regnum
== ARM_PC_REGNUM
)
4010 return builtin_type (gdbarch
)->builtin_func_ptr
;
4011 else if (regnum
>= ARRAY_SIZE (arm_register_names
))
4012 /* These registers are only supported on targets which supply
4013 an XML description. */
4014 return builtin_type (gdbarch
)->builtin_int0
;
4016 return builtin_type (gdbarch
)->builtin_uint32
;
4019 /* Map a DWARF register REGNUM onto the appropriate GDB register
4023 arm_dwarf_reg_to_regnum (struct gdbarch
*gdbarch
, int reg
)
4025 /* Core integer regs. */
4026 if (reg
>= 0 && reg
<= 15)
4029 /* Legacy FPA encoding. These were once used in a way which
4030 overlapped with VFP register numbering, so their use is
4031 discouraged, but GDB doesn't support the ARM toolchain
4032 which used them for VFP. */
4033 if (reg
>= 16 && reg
<= 23)
4034 return ARM_F0_REGNUM
+ reg
- 16;
4036 /* New assignments for the FPA registers. */
4037 if (reg
>= 96 && reg
<= 103)
4038 return ARM_F0_REGNUM
+ reg
- 96;
4040 /* WMMX register assignments. */
4041 if (reg
>= 104 && reg
<= 111)
4042 return ARM_WCGR0_REGNUM
+ reg
- 104;
4044 if (reg
>= 112 && reg
<= 127)
4045 return ARM_WR0_REGNUM
+ reg
- 112;
4047 if (reg
>= 192 && reg
<= 199)
4048 return ARM_WC0_REGNUM
+ reg
- 192;
4050 /* VFP v2 registers. A double precision value is actually
4051 in d1 rather than s2, but the ABI only defines numbering
4052 for the single precision registers. This will "just work"
4053 in GDB for little endian targets (we'll read eight bytes,
4054 starting in s0 and then progressing to s1), but will be
4055 reversed on big endian targets with VFP. This won't
4056 be a problem for the new Neon quad registers; you're supposed
4057 to use DW_OP_piece for those. */
4058 if (reg
>= 64 && reg
<= 95)
4062 xsnprintf (name_buf
, sizeof (name_buf
), "s%d", reg
- 64);
4063 return user_reg_map_name_to_regnum (gdbarch
, name_buf
,
4067 /* VFP v3 / Neon registers. This range is also used for VFP v2
4068 registers, except that it now describes d0 instead of s0. */
4069 if (reg
>= 256 && reg
<= 287)
4073 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", reg
- 256);
4074 return user_reg_map_name_to_regnum (gdbarch
, name_buf
,
4081 /* Map GDB internal REGNUM onto the Arm simulator register numbers. */
4083 arm_register_sim_regno (struct gdbarch
*gdbarch
, int regnum
)
4086 gdb_assert (reg
>= 0 && reg
< gdbarch_num_regs (gdbarch
));
4088 if (regnum
>= ARM_WR0_REGNUM
&& regnum
<= ARM_WR15_REGNUM
)
4089 return regnum
- ARM_WR0_REGNUM
+ SIM_ARM_IWMMXT_COP0R0_REGNUM
;
4091 if (regnum
>= ARM_WC0_REGNUM
&& regnum
<= ARM_WC7_REGNUM
)
4092 return regnum
- ARM_WC0_REGNUM
+ SIM_ARM_IWMMXT_COP1R0_REGNUM
;
4094 if (regnum
>= ARM_WCGR0_REGNUM
&& regnum
<= ARM_WCGR7_REGNUM
)
4095 return regnum
- ARM_WCGR0_REGNUM
+ SIM_ARM_IWMMXT_COP1R8_REGNUM
;
4097 if (reg
< NUM_GREGS
)
4098 return SIM_ARM_R0_REGNUM
+ reg
;
4101 if (reg
< NUM_FREGS
)
4102 return SIM_ARM_FP0_REGNUM
+ reg
;
4105 if (reg
< NUM_SREGS
)
4106 return SIM_ARM_FPS_REGNUM
+ reg
;
4109 internal_error (__FILE__
, __LINE__
, _("Bad REGNUM %d"), regnum
);
4112 /* Given BUF, which is OLD_LEN bytes ending at ENDADDR, expand
4113 the buffer to be NEW_LEN bytes ending at ENDADDR. Return
4114 NULL if an error occurs. BUF is freed. */
4117 extend_buffer_earlier (gdb_byte
*buf
, CORE_ADDR endaddr
,
4118 int old_len
, int new_len
)
4121 int bytes_to_read
= new_len
- old_len
;
4123 new_buf
= (gdb_byte
*) xmalloc (new_len
);
4124 memcpy (new_buf
+ bytes_to_read
, buf
, old_len
);
4126 if (target_read_code (endaddr
- new_len
, new_buf
, bytes_to_read
) != 0)
4134 /* An IT block is at most the 2-byte IT instruction followed by
4135 four 4-byte instructions. The furthest back we must search to
4136 find an IT block that affects the current instruction is thus
4137 2 + 3 * 4 == 14 bytes. */
4138 #define MAX_IT_BLOCK_PREFIX 14
4140 /* Use a quick scan if there are more than this many bytes of
4142 #define IT_SCAN_THRESHOLD 32
4144 /* Adjust a breakpoint's address to move breakpoints out of IT blocks.
4145 A breakpoint in an IT block may not be hit, depending on the
4148 arm_adjust_breakpoint_address (struct gdbarch
*gdbarch
, CORE_ADDR bpaddr
)
4152 CORE_ADDR boundary
, func_start
;
4154 enum bfd_endian order
= gdbarch_byte_order_for_code (gdbarch
);
4155 int i
, any
, last_it
, last_it_count
;
4157 /* If we are using BKPT breakpoints, none of this is necessary. */
4158 if (gdbarch_tdep (gdbarch
)->thumb2_breakpoint
== NULL
)
4161 /* ARM mode does not have this problem. */
4162 if (!arm_pc_is_thumb (gdbarch
, bpaddr
))
4165 /* We are setting a breakpoint in Thumb code that could potentially
4166 contain an IT block. The first step is to find how much Thumb
4167 code there is; we do not need to read outside of known Thumb
4169 map_type
= arm_find_mapping_symbol (bpaddr
, &boundary
);
4171 /* Thumb-2 code must have mapping symbols to have a chance. */
4174 bpaddr
= gdbarch_addr_bits_remove (gdbarch
, bpaddr
);
4176 if (find_pc_partial_function (bpaddr
, NULL
, &func_start
, NULL
)
4177 && func_start
> boundary
)
4178 boundary
= func_start
;
4180 /* Search for a candidate IT instruction. We have to do some fancy
4181 footwork to distinguish a real IT instruction from the second
4182 half of a 32-bit instruction, but there is no need for that if
4183 there's no candidate. */
4184 buf_len
= std::min (bpaddr
- boundary
, (CORE_ADDR
) MAX_IT_BLOCK_PREFIX
);
4186 /* No room for an IT instruction. */
4189 buf
= (gdb_byte
*) xmalloc (buf_len
);
4190 if (target_read_code (bpaddr
- buf_len
, buf
, buf_len
) != 0)
4193 for (i
= 0; i
< buf_len
; i
+= 2)
4195 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
4196 if ((inst1
& 0xff00) == 0xbf00 && (inst1
& 0x000f) != 0)
4209 /* OK, the code bytes before this instruction contain at least one
4210 halfword which resembles an IT instruction. We know that it's
4211 Thumb code, but there are still two possibilities. Either the
4212 halfword really is an IT instruction, or it is the second half of
4213 a 32-bit Thumb instruction. The only way we can tell is to
4214 scan forwards from a known instruction boundary. */
4215 if (bpaddr
- boundary
> IT_SCAN_THRESHOLD
)
4219 /* There's a lot of code before this instruction. Start with an
4220 optimistic search; it's easy to recognize halfwords that can
4221 not be the start of a 32-bit instruction, and use that to
4222 lock on to the instruction boundaries. */
4223 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
, IT_SCAN_THRESHOLD
);
4226 buf_len
= IT_SCAN_THRESHOLD
;
4229 for (i
= 0; i
< buf_len
- sizeof (buf
) && ! definite
; i
+= 2)
4231 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
4232 if (thumb_insn_size (inst1
) == 2)
4239 /* At this point, if DEFINITE, BUF[I] is the first place we
4240 are sure that we know the instruction boundaries, and it is far
4241 enough from BPADDR that we could not miss an IT instruction
4242 affecting BPADDR. If ! DEFINITE, give up - start from a
4246 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
,
4250 buf_len
= bpaddr
- boundary
;
4256 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
, bpaddr
- boundary
);
4259 buf_len
= bpaddr
- boundary
;
4263 /* Scan forwards. Find the last IT instruction before BPADDR. */
4268 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
4270 if ((inst1
& 0xff00) == 0xbf00 && (inst1
& 0x000f) != 0)
4275 else if (inst1
& 0x0002)
4277 else if (inst1
& 0x0004)
4282 i
+= thumb_insn_size (inst1
);
4288 /* There wasn't really an IT instruction after all. */
4291 if (last_it_count
< 1)
4292 /* It was too far away. */
4295 /* This really is a trouble spot. Move the breakpoint to the IT
4297 return bpaddr
- buf_len
+ last_it
;
4300 /* ARM displaced stepping support.
4302 Generally ARM displaced stepping works as follows:
4304 1. When an instruction is to be single-stepped, it is first decoded by
4305 arm_process_displaced_insn. Depending on the type of instruction, it is
4306 then copied to a scratch location, possibly in a modified form. The
4307 copy_* set of functions performs such modification, as necessary. A
4308 breakpoint is placed after the modified instruction in the scratch space
4309 to return control to GDB. Note in particular that instructions which
4310 modify the PC will no longer do so after modification.
4312 2. The instruction is single-stepped, by setting the PC to the scratch
4313 location address, and resuming. Control returns to GDB when the
4316 3. A cleanup function (cleanup_*) is called corresponding to the copy_*
4317 function used for the current instruction. This function's job is to
4318 put the CPU/memory state back to what it would have been if the
4319 instruction had been executed unmodified in its original location. */
4321 /* NOP instruction (mov r0, r0). */
4322 #define ARM_NOP 0xe1a00000
4323 #define THUMB_NOP 0x4600
4325 /* Helper for register reads for displaced stepping. In particular, this
4326 returns the PC as it would be seen by the instruction at its original
4330 displaced_read_reg (struct regcache
*regs
, arm_displaced_step_closure
*dsc
,
4334 CORE_ADDR from
= dsc
->insn_addr
;
4336 if (regno
== ARM_PC_REGNUM
)
4338 /* Compute pipeline offset:
4339 - When executing an ARM instruction, PC reads as the address of the
4340 current instruction plus 8.
4341 - When executing a Thumb instruction, PC reads as the address of the
4342 current instruction plus 4. */
4349 if (debug_displaced
)
4350 fprintf_unfiltered (gdb_stdlog
, "displaced: read pc value %.8lx\n",
4351 (unsigned long) from
);
4352 return (ULONGEST
) from
;
4356 regcache_cooked_read_unsigned (regs
, regno
, &ret
);
4357 if (debug_displaced
)
4358 fprintf_unfiltered (gdb_stdlog
, "displaced: read r%d value %.8lx\n",
4359 regno
, (unsigned long) ret
);
4365 displaced_in_arm_mode (struct regcache
*regs
)
4368 ULONGEST t_bit
= arm_psr_thumb_bit (regs
->arch ());
4370 regcache_cooked_read_unsigned (regs
, ARM_PS_REGNUM
, &ps
);
4372 return (ps
& t_bit
) == 0;
4375 /* Write to the PC as from a branch instruction. */
4378 branch_write_pc (struct regcache
*regs
, arm_displaced_step_closure
*dsc
,
4382 /* Note: If bits 0/1 are set, this branch would be unpredictable for
4383 architecture versions < 6. */
4384 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
4385 val
& ~(ULONGEST
) 0x3);
4387 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
4388 val
& ~(ULONGEST
) 0x1);
4391 /* Write to the PC as from a branch-exchange instruction. */
4394 bx_write_pc (struct regcache
*regs
, ULONGEST val
)
4397 ULONGEST t_bit
= arm_psr_thumb_bit (regs
->arch ());
4399 regcache_cooked_read_unsigned (regs
, ARM_PS_REGNUM
, &ps
);
4403 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
| t_bit
);
4404 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
& 0xfffffffe);
4406 else if ((val
& 2) == 0)
4408 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
& ~t_bit
);
4409 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
);
4413 /* Unpredictable behaviour. Try to do something sensible (switch to ARM
4414 mode, align dest to 4 bytes). */
4415 warning (_("Single-stepping BX to non-word-aligned ARM instruction."));
4416 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
& ~t_bit
);
4417 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
& 0xfffffffc);
4421 /* Write to the PC as if from a load instruction. */
4424 load_write_pc (struct regcache
*regs
, arm_displaced_step_closure
*dsc
,
4427 if (DISPLACED_STEPPING_ARCH_VERSION
>= 5)
4428 bx_write_pc (regs
, val
);
4430 branch_write_pc (regs
, dsc
, val
);
4433 /* Write to the PC as if from an ALU instruction. */
4436 alu_write_pc (struct regcache
*regs
, arm_displaced_step_closure
*dsc
,
4439 if (DISPLACED_STEPPING_ARCH_VERSION
>= 7 && !dsc
->is_thumb
)
4440 bx_write_pc (regs
, val
);
4442 branch_write_pc (regs
, dsc
, val
);
4445 /* Helper for writing to registers for displaced stepping. Writing to the PC
4446 has a varying effects depending on the instruction which does the write:
4447 this is controlled by the WRITE_PC argument. */
4450 displaced_write_reg (struct regcache
*regs
, arm_displaced_step_closure
*dsc
,
4451 int regno
, ULONGEST val
, enum pc_write_style write_pc
)
4453 if (regno
== ARM_PC_REGNUM
)
4455 if (debug_displaced
)
4456 fprintf_unfiltered (gdb_stdlog
, "displaced: writing pc %.8lx\n",
4457 (unsigned long) val
);
4460 case BRANCH_WRITE_PC
:
4461 branch_write_pc (regs
, dsc
, val
);
4465 bx_write_pc (regs
, val
);
4469 load_write_pc (regs
, dsc
, val
);
4473 alu_write_pc (regs
, dsc
, val
);
4476 case CANNOT_WRITE_PC
:
4477 warning (_("Instruction wrote to PC in an unexpected way when "
4478 "single-stepping"));
4482 internal_error (__FILE__
, __LINE__
,
4483 _("Invalid argument to displaced_write_reg"));
4486 dsc
->wrote_to_pc
= 1;
4490 if (debug_displaced
)
4491 fprintf_unfiltered (gdb_stdlog
, "displaced: writing r%d value %.8lx\n",
4492 regno
, (unsigned long) val
);
4493 regcache_cooked_write_unsigned (regs
, regno
, val
);
4497 /* This function is used to concisely determine if an instruction INSN
4498 references PC. Register fields of interest in INSN should have the
4499 corresponding fields of BITMASK set to 0b1111. The function
4500 returns return 1 if any of these fields in INSN reference the PC
4501 (also 0b1111, r15), else it returns 0. */
4504 insn_references_pc (uint32_t insn
, uint32_t bitmask
)
4506 uint32_t lowbit
= 1;
4508 while (bitmask
!= 0)
4512 for (; lowbit
&& (bitmask
& lowbit
) == 0; lowbit
<<= 1)
4518 mask
= lowbit
* 0xf;
4520 if ((insn
& mask
) == mask
)
4529 /* The simplest copy function. Many instructions have the same effect no
4530 matter what address they are executed at: in those cases, use this. */
4533 arm_copy_unmodified (struct gdbarch
*gdbarch
, uint32_t insn
,
4534 const char *iname
, arm_displaced_step_closure
*dsc
)
4536 if (debug_displaced
)
4537 fprintf_unfiltered (gdb_stdlog
, "displaced: copying insn %.8lx, "
4538 "opcode/class '%s' unmodified\n", (unsigned long) insn
,
4541 dsc
->modinsn
[0] = insn
;
4547 thumb_copy_unmodified_32bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
4548 uint16_t insn2
, const char *iname
,
4549 arm_displaced_step_closure
*dsc
)
4551 if (debug_displaced
)
4552 fprintf_unfiltered (gdb_stdlog
, "displaced: copying insn %.4x %.4x, "
4553 "opcode/class '%s' unmodified\n", insn1
, insn2
,
4556 dsc
->modinsn
[0] = insn1
;
4557 dsc
->modinsn
[1] = insn2
;
4563 /* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
4566 thumb_copy_unmodified_16bit (struct gdbarch
*gdbarch
, uint16_t insn
,
4568 arm_displaced_step_closure
*dsc
)
4570 if (debug_displaced
)
4571 fprintf_unfiltered (gdb_stdlog
, "displaced: copying insn %.4x, "
4572 "opcode/class '%s' unmodified\n", insn
,
4575 dsc
->modinsn
[0] = insn
;
4580 /* Preload instructions with immediate offset. */
4583 cleanup_preload (struct gdbarch
*gdbarch
,
4584 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
4586 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
4587 if (!dsc
->u
.preload
.immed
)
4588 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
4592 install_preload (struct gdbarch
*gdbarch
, struct regcache
*regs
,
4593 arm_displaced_step_closure
*dsc
, unsigned int rn
)
4596 /* Preload instructions:
4598 {pli/pld} [rn, #+/-imm]
4600 {pli/pld} [r0, #+/-imm]. */
4602 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
4603 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
4604 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
4605 dsc
->u
.preload
.immed
= 1;
4607 dsc
->cleanup
= &cleanup_preload
;
4611 arm_copy_preload (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
4612 arm_displaced_step_closure
*dsc
)
4614 unsigned int rn
= bits (insn
, 16, 19);
4616 if (!insn_references_pc (insn
, 0x000f0000ul
))
4617 return arm_copy_unmodified (gdbarch
, insn
, "preload", dsc
);
4619 if (debug_displaced
)
4620 fprintf_unfiltered (gdb_stdlog
, "displaced: copying preload insn %.8lx\n",
4621 (unsigned long) insn
);
4623 dsc
->modinsn
[0] = insn
& 0xfff0ffff;
4625 install_preload (gdbarch
, regs
, dsc
, rn
);
4631 thumb2_copy_preload (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
4632 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
4634 unsigned int rn
= bits (insn1
, 0, 3);
4635 unsigned int u_bit
= bit (insn1
, 7);
4636 int imm12
= bits (insn2
, 0, 11);
4639 if (rn
!= ARM_PC_REGNUM
)
4640 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "preload", dsc
);
4642 /* PC is only allowed to use in PLI (immediate,literal) Encoding T3, and
4643 PLD (literal) Encoding T1. */
4644 if (debug_displaced
)
4645 fprintf_unfiltered (gdb_stdlog
,
4646 "displaced: copying pld/pli pc (0x%x) %c imm12 %.4x\n",
4647 (unsigned int) dsc
->insn_addr
, u_bit
? '+' : '-',
4653 /* Rewrite instruction {pli/pld} PC imm12 into:
4654 Prepare: tmp[0] <- r0, tmp[1] <- r1, r0 <- pc, r1 <- imm12
4658 Cleanup: r0 <- tmp[0], r1 <- tmp[1]. */
4660 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
4661 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
4663 pc_val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
4665 displaced_write_reg (regs
, dsc
, 0, pc_val
, CANNOT_WRITE_PC
);
4666 displaced_write_reg (regs
, dsc
, 1, imm12
, CANNOT_WRITE_PC
);
4667 dsc
->u
.preload
.immed
= 0;
4669 /* {pli/pld} [r0, r1] */
4670 dsc
->modinsn
[0] = insn1
& 0xfff0;
4671 dsc
->modinsn
[1] = 0xf001;
4674 dsc
->cleanup
= &cleanup_preload
;
4678 /* Preload instructions with register offset. */
4681 install_preload_reg(struct gdbarch
*gdbarch
, struct regcache
*regs
,
4682 arm_displaced_step_closure
*dsc
, unsigned int rn
,
4685 ULONGEST rn_val
, rm_val
;
4687 /* Preload register-offset instructions:
4689 {pli/pld} [rn, rm {, shift}]
4691 {pli/pld} [r0, r1 {, shift}]. */
4693 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
4694 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
4695 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
4696 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
4697 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
4698 displaced_write_reg (regs
, dsc
, 1, rm_val
, CANNOT_WRITE_PC
);
4699 dsc
->u
.preload
.immed
= 0;
4701 dsc
->cleanup
= &cleanup_preload
;
4705 arm_copy_preload_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
4706 struct regcache
*regs
,
4707 arm_displaced_step_closure
*dsc
)
4709 unsigned int rn
= bits (insn
, 16, 19);
4710 unsigned int rm
= bits (insn
, 0, 3);
4713 if (!insn_references_pc (insn
, 0x000f000ful
))
4714 return arm_copy_unmodified (gdbarch
, insn
, "preload reg", dsc
);
4716 if (debug_displaced
)
4717 fprintf_unfiltered (gdb_stdlog
, "displaced: copying preload insn %.8lx\n",
4718 (unsigned long) insn
);
4720 dsc
->modinsn
[0] = (insn
& 0xfff0fff0) | 0x1;
4722 install_preload_reg (gdbarch
, regs
, dsc
, rn
, rm
);
4726 /* Copy/cleanup coprocessor load and store instructions. */
4729 cleanup_copro_load_store (struct gdbarch
*gdbarch
,
4730 struct regcache
*regs
,
4731 arm_displaced_step_closure
*dsc
)
4733 ULONGEST rn_val
= displaced_read_reg (regs
, dsc
, 0);
4735 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
4737 if (dsc
->u
.ldst
.writeback
)
4738 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, LOAD_WRITE_PC
);
4742 install_copro_load_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
4743 arm_displaced_step_closure
*dsc
,
4744 int writeback
, unsigned int rn
)
4748 /* Coprocessor load/store instructions:
4750 {stc/stc2} [<Rn>, #+/-imm] (and other immediate addressing modes)
4752 {stc/stc2} [r0, #+/-imm].
4754 ldc/ldc2 are handled identically. */
4756 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
4757 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
4758 /* PC should be 4-byte aligned. */
4759 rn_val
= rn_val
& 0xfffffffc;
4760 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
4762 dsc
->u
.ldst
.writeback
= writeback
;
4763 dsc
->u
.ldst
.rn
= rn
;
4765 dsc
->cleanup
= &cleanup_copro_load_store
;
4769 arm_copy_copro_load_store (struct gdbarch
*gdbarch
, uint32_t insn
,
4770 struct regcache
*regs
,
4771 arm_displaced_step_closure
*dsc
)
4773 unsigned int rn
= bits (insn
, 16, 19);
4775 if (!insn_references_pc (insn
, 0x000f0000ul
))
4776 return arm_copy_unmodified (gdbarch
, insn
, "copro load/store", dsc
);
4778 if (debug_displaced
)
4779 fprintf_unfiltered (gdb_stdlog
, "displaced: copying coprocessor "
4780 "load/store insn %.8lx\n", (unsigned long) insn
);
4782 dsc
->modinsn
[0] = insn
& 0xfff0ffff;
4784 install_copro_load_store (gdbarch
, regs
, dsc
, bit (insn
, 25), rn
);
4790 thumb2_copy_copro_load_store (struct gdbarch
*gdbarch
, uint16_t insn1
,
4791 uint16_t insn2
, struct regcache
*regs
,
4792 arm_displaced_step_closure
*dsc
)
4794 unsigned int rn
= bits (insn1
, 0, 3);
4796 if (rn
!= ARM_PC_REGNUM
)
4797 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
4798 "copro load/store", dsc
);
4800 if (debug_displaced
)
4801 fprintf_unfiltered (gdb_stdlog
, "displaced: copying coprocessor "
4802 "load/store insn %.4x%.4x\n", insn1
, insn2
);
4804 dsc
->modinsn
[0] = insn1
& 0xfff0;
4805 dsc
->modinsn
[1] = insn2
;
4808 /* This function is called for copying instruction LDC/LDC2/VLDR, which
4809 doesn't support writeback, so pass 0. */
4810 install_copro_load_store (gdbarch
, regs
, dsc
, 0, rn
);
4815 /* Clean up branch instructions (actually perform the branch, by setting
4819 cleanup_branch (struct gdbarch
*gdbarch
, struct regcache
*regs
,
4820 arm_displaced_step_closure
*dsc
)
4822 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
4823 int branch_taken
= condition_true (dsc
->u
.branch
.cond
, status
);
4824 enum pc_write_style write_pc
= dsc
->u
.branch
.exchange
4825 ? BX_WRITE_PC
: BRANCH_WRITE_PC
;
4830 if (dsc
->u
.branch
.link
)
4832 /* The value of LR should be the next insn of current one. In order
4833 not to confuse logic handling later insn `bx lr', if current insn mode
4834 is Thumb, the bit 0 of LR value should be set to 1. */
4835 ULONGEST next_insn_addr
= dsc
->insn_addr
+ dsc
->insn_size
;
4838 next_insn_addr
|= 0x1;
4840 displaced_write_reg (regs
, dsc
, ARM_LR_REGNUM
, next_insn_addr
,
4844 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, dsc
->u
.branch
.dest
, write_pc
);
4847 /* Copy B/BL/BLX instructions with immediate destinations. */
4850 install_b_bl_blx (struct gdbarch
*gdbarch
, struct regcache
*regs
,
4851 arm_displaced_step_closure
*dsc
,
4852 unsigned int cond
, int exchange
, int link
, long offset
)
4854 /* Implement "BL<cond> <label>" as:
4856 Preparation: cond <- instruction condition
4857 Insn: mov r0, r0 (nop)
4858 Cleanup: if (condition true) { r14 <- pc; pc <- label }.
4860 B<cond> similar, but don't set r14 in cleanup. */
4862 dsc
->u
.branch
.cond
= cond
;
4863 dsc
->u
.branch
.link
= link
;
4864 dsc
->u
.branch
.exchange
= exchange
;
4866 dsc
->u
.branch
.dest
= dsc
->insn_addr
;
4867 if (link
&& exchange
)
4868 /* For BLX, offset is computed from the Align (PC, 4). */
4869 dsc
->u
.branch
.dest
= dsc
->u
.branch
.dest
& 0xfffffffc;
4872 dsc
->u
.branch
.dest
+= 4 + offset
;
4874 dsc
->u
.branch
.dest
+= 8 + offset
;
4876 dsc
->cleanup
= &cleanup_branch
;
4879 arm_copy_b_bl_blx (struct gdbarch
*gdbarch
, uint32_t insn
,
4880 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
4882 unsigned int cond
= bits (insn
, 28, 31);
4883 int exchange
= (cond
== 0xf);
4884 int link
= exchange
|| bit (insn
, 24);
4887 if (debug_displaced
)
4888 fprintf_unfiltered (gdb_stdlog
, "displaced: copying %s immediate insn "
4889 "%.8lx\n", (exchange
) ? "blx" : (link
) ? "bl" : "b",
4890 (unsigned long) insn
);
4892 /* For BLX, set bit 0 of the destination. The cleanup_branch function will
4893 then arrange the switch into Thumb mode. */
4894 offset
= (bits (insn
, 0, 23) << 2) | (bit (insn
, 24) << 1) | 1;
4896 offset
= bits (insn
, 0, 23) << 2;
4898 if (bit (offset
, 25))
4899 offset
= offset
| ~0x3ffffff;
4901 dsc
->modinsn
[0] = ARM_NOP
;
4903 install_b_bl_blx (gdbarch
, regs
, dsc
, cond
, exchange
, link
, offset
);
4908 thumb2_copy_b_bl_blx (struct gdbarch
*gdbarch
, uint16_t insn1
,
4909 uint16_t insn2
, struct regcache
*regs
,
4910 arm_displaced_step_closure
*dsc
)
4912 int link
= bit (insn2
, 14);
4913 int exchange
= link
&& !bit (insn2
, 12);
4916 int j1
= bit (insn2
, 13);
4917 int j2
= bit (insn2
, 11);
4918 int s
= sbits (insn1
, 10, 10);
4919 int i1
= !(j1
^ bit (insn1
, 10));
4920 int i2
= !(j2
^ bit (insn1
, 10));
4922 if (!link
&& !exchange
) /* B */
4924 offset
= (bits (insn2
, 0, 10) << 1);
4925 if (bit (insn2
, 12)) /* Encoding T4 */
4927 offset
|= (bits (insn1
, 0, 9) << 12)
4933 else /* Encoding T3 */
4935 offset
|= (bits (insn1
, 0, 5) << 12)
4939 cond
= bits (insn1
, 6, 9);
4944 offset
= (bits (insn1
, 0, 9) << 12);
4945 offset
|= ((i2
<< 22) | (i1
<< 23) | (s
<< 24));
4946 offset
|= exchange
?
4947 (bits (insn2
, 1, 10) << 2) : (bits (insn2
, 0, 10) << 1);
4950 if (debug_displaced
)
4951 fprintf_unfiltered (gdb_stdlog
, "displaced: copying %s insn "
4952 "%.4x %.4x with offset %.8lx\n",
4953 link
? (exchange
) ? "blx" : "bl" : "b",
4954 insn1
, insn2
, offset
);
4956 dsc
->modinsn
[0] = THUMB_NOP
;
4958 install_b_bl_blx (gdbarch
, regs
, dsc
, cond
, exchange
, link
, offset
);
4962 /* Copy B Thumb instructions. */
4964 thumb_copy_b (struct gdbarch
*gdbarch
, uint16_t insn
,
4965 arm_displaced_step_closure
*dsc
)
4967 unsigned int cond
= 0;
4969 unsigned short bit_12_15
= bits (insn
, 12, 15);
4970 CORE_ADDR from
= dsc
->insn_addr
;
4972 if (bit_12_15
== 0xd)
4974 /* offset = SignExtend (imm8:0, 32) */
4975 offset
= sbits ((insn
<< 1), 0, 8);
4976 cond
= bits (insn
, 8, 11);
4978 else if (bit_12_15
== 0xe) /* Encoding T2 */
4980 offset
= sbits ((insn
<< 1), 0, 11);
4984 if (debug_displaced
)
4985 fprintf_unfiltered (gdb_stdlog
,
4986 "displaced: copying b immediate insn %.4x "
4987 "with offset %d\n", insn
, offset
);
4989 dsc
->u
.branch
.cond
= cond
;
4990 dsc
->u
.branch
.link
= 0;
4991 dsc
->u
.branch
.exchange
= 0;
4992 dsc
->u
.branch
.dest
= from
+ 4 + offset
;
4994 dsc
->modinsn
[0] = THUMB_NOP
;
4996 dsc
->cleanup
= &cleanup_branch
;
5001 /* Copy BX/BLX with register-specified destinations. */
5004 install_bx_blx_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5005 arm_displaced_step_closure
*dsc
, int link
,
5006 unsigned int cond
, unsigned int rm
)
5008 /* Implement {BX,BLX}<cond> <reg>" as:
5010 Preparation: cond <- instruction condition
5011 Insn: mov r0, r0 (nop)
5012 Cleanup: if (condition true) { r14 <- pc; pc <- dest; }.
5014 Don't set r14 in cleanup for BX. */
5016 dsc
->u
.branch
.dest
= displaced_read_reg (regs
, dsc
, rm
);
5018 dsc
->u
.branch
.cond
= cond
;
5019 dsc
->u
.branch
.link
= link
;
5021 dsc
->u
.branch
.exchange
= 1;
5023 dsc
->cleanup
= &cleanup_branch
;
5027 arm_copy_bx_blx_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
5028 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
5030 unsigned int cond
= bits (insn
, 28, 31);
5033 int link
= bit (insn
, 5);
5034 unsigned int rm
= bits (insn
, 0, 3);
5036 if (debug_displaced
)
5037 fprintf_unfiltered (gdb_stdlog
, "displaced: copying insn %.8lx",
5038 (unsigned long) insn
);
5040 dsc
->modinsn
[0] = ARM_NOP
;
5042 install_bx_blx_reg (gdbarch
, regs
, dsc
, link
, cond
, rm
);
5047 thumb_copy_bx_blx_reg (struct gdbarch
*gdbarch
, uint16_t insn
,
5048 struct regcache
*regs
,
5049 arm_displaced_step_closure
*dsc
)
5051 int link
= bit (insn
, 7);
5052 unsigned int rm
= bits (insn
, 3, 6);
5054 if (debug_displaced
)
5055 fprintf_unfiltered (gdb_stdlog
, "displaced: copying insn %.4x",
5056 (unsigned short) insn
);
5058 dsc
->modinsn
[0] = THUMB_NOP
;
5060 install_bx_blx_reg (gdbarch
, regs
, dsc
, link
, INST_AL
, rm
);
5066 /* Copy/cleanup arithmetic/logic instruction with immediate RHS. */
5069 cleanup_alu_imm (struct gdbarch
*gdbarch
,
5070 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
5072 ULONGEST rd_val
= displaced_read_reg (regs
, dsc
, 0);
5073 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5074 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
5075 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
5079 arm_copy_alu_imm (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
5080 arm_displaced_step_closure
*dsc
)
5082 unsigned int rn
= bits (insn
, 16, 19);
5083 unsigned int rd
= bits (insn
, 12, 15);
5084 unsigned int op
= bits (insn
, 21, 24);
5085 int is_mov
= (op
== 0xd);
5086 ULONGEST rd_val
, rn_val
;
5088 if (!insn_references_pc (insn
, 0x000ff000ul
))
5089 return arm_copy_unmodified (gdbarch
, insn
, "ALU immediate", dsc
);
5091 if (debug_displaced
)
5092 fprintf_unfiltered (gdb_stdlog
, "displaced: copying immediate %s insn "
5093 "%.8lx\n", is_mov
? "move" : "ALU",
5094 (unsigned long) insn
);
5096 /* Instruction is of form:
5098 <op><cond> rd, [rn,] #imm
5102 Preparation: tmp1, tmp2 <- r0, r1;
5104 Insn: <op><cond> r0, r1, #imm
5105 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5108 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5109 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5110 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5111 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5112 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5113 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5117 dsc
->modinsn
[0] = insn
& 0xfff00fff;
5119 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x10000;
5121 dsc
->cleanup
= &cleanup_alu_imm
;
5127 thumb2_copy_alu_imm (struct gdbarch
*gdbarch
, uint16_t insn1
,
5128 uint16_t insn2
, struct regcache
*regs
,
5129 arm_displaced_step_closure
*dsc
)
5131 unsigned int op
= bits (insn1
, 5, 8);
5132 unsigned int rn
, rm
, rd
;
5133 ULONGEST rd_val
, rn_val
;
5135 rn
= bits (insn1
, 0, 3); /* Rn */
5136 rm
= bits (insn2
, 0, 3); /* Rm */
5137 rd
= bits (insn2
, 8, 11); /* Rd */
5139 /* This routine is only called for instruction MOV. */
5140 gdb_assert (op
== 0x2 && rn
== 0xf);
5142 if (rm
!= ARM_PC_REGNUM
&& rd
!= ARM_PC_REGNUM
)
5143 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "ALU imm", dsc
);
5145 if (debug_displaced
)
5146 fprintf_unfiltered (gdb_stdlog
, "displaced: copying reg %s insn %.4x%.4x\n",
5147 "ALU", insn1
, insn2
);
5149 /* Instruction is of form:
5151 <op><cond> rd, [rn,] #imm
5155 Preparation: tmp1, tmp2 <- r0, r1;
5157 Insn: <op><cond> r0, r1, #imm
5158 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5161 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5162 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5163 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5164 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5165 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5166 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5169 dsc
->modinsn
[0] = insn1
;
5170 dsc
->modinsn
[1] = ((insn2
& 0xf0f0) | 0x1);
5173 dsc
->cleanup
= &cleanup_alu_imm
;
5178 /* Copy/cleanup arithmetic/logic insns with register RHS. */
5181 cleanup_alu_reg (struct gdbarch
*gdbarch
,
5182 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
5187 rd_val
= displaced_read_reg (regs
, dsc
, 0);
5189 for (i
= 0; i
< 3; i
++)
5190 displaced_write_reg (regs
, dsc
, i
, dsc
->tmp
[i
], CANNOT_WRITE_PC
);
5192 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
5196 install_alu_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5197 arm_displaced_step_closure
*dsc
,
5198 unsigned int rd
, unsigned int rn
, unsigned int rm
)
5200 ULONGEST rd_val
, rn_val
, rm_val
;
5202 /* Instruction is of form:
5204 <op><cond> rd, [rn,] rm [, <shift>]
5208 Preparation: tmp1, tmp2, tmp3 <- r0, r1, r2;
5209 r0, r1, r2 <- rd, rn, rm
5210 Insn: <op><cond> r0, [r1,] r2 [, <shift>]
5211 Cleanup: rd <- r0; r0, r1, r2 <- tmp1, tmp2, tmp3
5214 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5215 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5216 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
5217 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5218 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5219 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
5220 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5221 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5222 displaced_write_reg (regs
, dsc
, 2, rm_val
, CANNOT_WRITE_PC
);
5225 dsc
->cleanup
= &cleanup_alu_reg
;
5229 arm_copy_alu_reg (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
5230 arm_displaced_step_closure
*dsc
)
5232 unsigned int op
= bits (insn
, 21, 24);
5233 int is_mov
= (op
== 0xd);
5235 if (!insn_references_pc (insn
, 0x000ff00ful
))
5236 return arm_copy_unmodified (gdbarch
, insn
, "ALU reg", dsc
);
5238 if (debug_displaced
)
5239 fprintf_unfiltered (gdb_stdlog
, "displaced: copying reg %s insn %.8lx\n",
5240 is_mov
? "move" : "ALU", (unsigned long) insn
);
5243 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x2;
5245 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x10002;
5247 install_alu_reg (gdbarch
, regs
, dsc
, bits (insn
, 12, 15), bits (insn
, 16, 19),
5253 thumb_copy_alu_reg (struct gdbarch
*gdbarch
, uint16_t insn
,
5254 struct regcache
*regs
,
5255 arm_displaced_step_closure
*dsc
)
5259 rm
= bits (insn
, 3, 6);
5260 rd
= (bit (insn
, 7) << 3) | bits (insn
, 0, 2);
5262 if (rd
!= ARM_PC_REGNUM
&& rm
!= ARM_PC_REGNUM
)
5263 return thumb_copy_unmodified_16bit (gdbarch
, insn
, "ALU reg", dsc
);
5265 if (debug_displaced
)
5266 fprintf_unfiltered (gdb_stdlog
, "displaced: copying ALU reg insn %.4x\n",
5267 (unsigned short) insn
);
5269 dsc
->modinsn
[0] = ((insn
& 0xff00) | 0x10);
5271 install_alu_reg (gdbarch
, regs
, dsc
, rd
, rd
, rm
);
5276 /* Cleanup/copy arithmetic/logic insns with shifted register RHS. */
5279 cleanup_alu_shifted_reg (struct gdbarch
*gdbarch
,
5280 struct regcache
*regs
,
5281 arm_displaced_step_closure
*dsc
)
5283 ULONGEST rd_val
= displaced_read_reg (regs
, dsc
, 0);
5286 for (i
= 0; i
< 4; i
++)
5287 displaced_write_reg (regs
, dsc
, i
, dsc
->tmp
[i
], CANNOT_WRITE_PC
);
5289 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
5293 install_alu_shifted_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5294 arm_displaced_step_closure
*dsc
,
5295 unsigned int rd
, unsigned int rn
, unsigned int rm
,
5299 ULONGEST rd_val
, rn_val
, rm_val
, rs_val
;
5301 /* Instruction is of form:
5303 <op><cond> rd, [rn,] rm, <shift> rs
5307 Preparation: tmp1, tmp2, tmp3, tmp4 <- r0, r1, r2, r3
5308 r0, r1, r2, r3 <- rd, rn, rm, rs
5309 Insn: <op><cond> r0, r1, r2, <shift> r3
5311 r0, r1, r2, r3 <- tmp1, tmp2, tmp3, tmp4
5315 for (i
= 0; i
< 4; i
++)
5316 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
5318 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5319 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5320 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
5321 rs_val
= displaced_read_reg (regs
, dsc
, rs
);
5322 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5323 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5324 displaced_write_reg (regs
, dsc
, 2, rm_val
, CANNOT_WRITE_PC
);
5325 displaced_write_reg (regs
, dsc
, 3, rs_val
, CANNOT_WRITE_PC
);
5327 dsc
->cleanup
= &cleanup_alu_shifted_reg
;
5331 arm_copy_alu_shifted_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
5332 struct regcache
*regs
,
5333 arm_displaced_step_closure
*dsc
)
5335 unsigned int op
= bits (insn
, 21, 24);
5336 int is_mov
= (op
== 0xd);
5337 unsigned int rd
, rn
, rm
, rs
;
5339 if (!insn_references_pc (insn
, 0x000fff0ful
))
5340 return arm_copy_unmodified (gdbarch
, insn
, "ALU shifted reg", dsc
);
5342 if (debug_displaced
)
5343 fprintf_unfiltered (gdb_stdlog
, "displaced: copying shifted reg %s insn "
5344 "%.8lx\n", is_mov
? "move" : "ALU",
5345 (unsigned long) insn
);
5347 rn
= bits (insn
, 16, 19);
5348 rm
= bits (insn
, 0, 3);
5349 rs
= bits (insn
, 8, 11);
5350 rd
= bits (insn
, 12, 15);
5353 dsc
->modinsn
[0] = (insn
& 0xfff000f0) | 0x302;
5355 dsc
->modinsn
[0] = (insn
& 0xfff000f0) | 0x10302;
5357 install_alu_shifted_reg (gdbarch
, regs
, dsc
, rd
, rn
, rm
, rs
);
5362 /* Clean up load instructions. */
5365 cleanup_load (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5366 arm_displaced_step_closure
*dsc
)
5368 ULONGEST rt_val
, rt_val2
= 0, rn_val
;
5370 rt_val
= displaced_read_reg (regs
, dsc
, 0);
5371 if (dsc
->u
.ldst
.xfersize
== 8)
5372 rt_val2
= displaced_read_reg (regs
, dsc
, 1);
5373 rn_val
= displaced_read_reg (regs
, dsc
, 2);
5375 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5376 if (dsc
->u
.ldst
.xfersize
> 4)
5377 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
5378 displaced_write_reg (regs
, dsc
, 2, dsc
->tmp
[2], CANNOT_WRITE_PC
);
5379 if (!dsc
->u
.ldst
.immed
)
5380 displaced_write_reg (regs
, dsc
, 3, dsc
->tmp
[3], CANNOT_WRITE_PC
);
5382 /* Handle register writeback. */
5383 if (dsc
->u
.ldst
.writeback
)
5384 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, CANNOT_WRITE_PC
);
5385 /* Put result in right place. */
5386 displaced_write_reg (regs
, dsc
, dsc
->rd
, rt_val
, LOAD_WRITE_PC
);
5387 if (dsc
->u
.ldst
.xfersize
== 8)
5388 displaced_write_reg (regs
, dsc
, dsc
->rd
+ 1, rt_val2
, LOAD_WRITE_PC
);
5391 /* Clean up store instructions. */
5394 cleanup_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5395 arm_displaced_step_closure
*dsc
)
5397 ULONGEST rn_val
= displaced_read_reg (regs
, dsc
, 2);
5399 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5400 if (dsc
->u
.ldst
.xfersize
> 4)
5401 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
5402 displaced_write_reg (regs
, dsc
, 2, dsc
->tmp
[2], CANNOT_WRITE_PC
);
5403 if (!dsc
->u
.ldst
.immed
)
5404 displaced_write_reg (regs
, dsc
, 3, dsc
->tmp
[3], CANNOT_WRITE_PC
);
5405 if (!dsc
->u
.ldst
.restore_r4
)
5406 displaced_write_reg (regs
, dsc
, 4, dsc
->tmp
[4], CANNOT_WRITE_PC
);
5409 if (dsc
->u
.ldst
.writeback
)
5410 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, CANNOT_WRITE_PC
);
5413 /* Copy "extra" load/store instructions. These are halfword/doubleword
5414 transfers, which have a different encoding to byte/word transfers. */
5417 arm_copy_extra_ld_st (struct gdbarch
*gdbarch
, uint32_t insn
, int unprivileged
,
5418 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
5420 unsigned int op1
= bits (insn
, 20, 24);
5421 unsigned int op2
= bits (insn
, 5, 6);
5422 unsigned int rt
= bits (insn
, 12, 15);
5423 unsigned int rn
= bits (insn
, 16, 19);
5424 unsigned int rm
= bits (insn
, 0, 3);
5425 char load
[12] = {0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1};
5426 char bytesize
[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2};
5427 int immed
= (op1
& 0x4) != 0;
5429 ULONGEST rt_val
, rt_val2
= 0, rn_val
, rm_val
= 0;
5431 if (!insn_references_pc (insn
, 0x000ff00ful
))
5432 return arm_copy_unmodified (gdbarch
, insn
, "extra load/store", dsc
);
5434 if (debug_displaced
)
5435 fprintf_unfiltered (gdb_stdlog
, "displaced: copying %sextra load/store "
5436 "insn %.8lx\n", unprivileged
? "unprivileged " : "",
5437 (unsigned long) insn
);
5439 opcode
= ((op2
<< 2) | (op1
& 0x1) | ((op1
& 0x4) >> 1)) - 4;
5442 internal_error (__FILE__
, __LINE__
,
5443 _("copy_extra_ld_st: instruction decode error"));
5445 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5446 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5447 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
5449 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
5451 rt_val
= displaced_read_reg (regs
, dsc
, rt
);
5452 if (bytesize
[opcode
] == 8)
5453 rt_val2
= displaced_read_reg (regs
, dsc
, rt
+ 1);
5454 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5456 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
5458 displaced_write_reg (regs
, dsc
, 0, rt_val
, CANNOT_WRITE_PC
);
5459 if (bytesize
[opcode
] == 8)
5460 displaced_write_reg (regs
, dsc
, 1, rt_val2
, CANNOT_WRITE_PC
);
5461 displaced_write_reg (regs
, dsc
, 2, rn_val
, CANNOT_WRITE_PC
);
5463 displaced_write_reg (regs
, dsc
, 3, rm_val
, CANNOT_WRITE_PC
);
5466 dsc
->u
.ldst
.xfersize
= bytesize
[opcode
];
5467 dsc
->u
.ldst
.rn
= rn
;
5468 dsc
->u
.ldst
.immed
= immed
;
5469 dsc
->u
.ldst
.writeback
= bit (insn
, 24) == 0 || bit (insn
, 21) != 0;
5470 dsc
->u
.ldst
.restore_r4
= 0;
5473 /* {ldr,str}<width><cond> rt, [rt2,] [rn, #imm]
5475 {ldr,str}<width><cond> r0, [r1,] [r2, #imm]. */
5476 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x20000;
5478 /* {ldr,str}<width><cond> rt, [rt2,] [rn, +/-rm]
5480 {ldr,str}<width><cond> r0, [r1,] [r2, +/-r3]. */
5481 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x20003;
5483 dsc
->cleanup
= load
[opcode
] ? &cleanup_load
: &cleanup_store
;
5488 /* Copy byte/half word/word loads and stores. */
5491 install_load_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5492 arm_displaced_step_closure
*dsc
, int load
,
5493 int immed
, int writeback
, int size
, int usermode
,
5494 int rt
, int rm
, int rn
)
5496 ULONGEST rt_val
, rn_val
, rm_val
= 0;
5498 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5499 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
5501 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
5503 dsc
->tmp
[4] = displaced_read_reg (regs
, dsc
, 4);
5505 rt_val
= displaced_read_reg (regs
, dsc
, rt
);
5506 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5508 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
5510 displaced_write_reg (regs
, dsc
, 0, rt_val
, CANNOT_WRITE_PC
);
5511 displaced_write_reg (regs
, dsc
, 2, rn_val
, CANNOT_WRITE_PC
);
5513 displaced_write_reg (regs
, dsc
, 3, rm_val
, CANNOT_WRITE_PC
);
5515 dsc
->u
.ldst
.xfersize
= size
;
5516 dsc
->u
.ldst
.rn
= rn
;
5517 dsc
->u
.ldst
.immed
= immed
;
5518 dsc
->u
.ldst
.writeback
= writeback
;
5520 /* To write PC we can do:
5522 Before this sequence of instructions:
5523 r0 is the PC value got from displaced_read_reg, so r0 = from + 8;
5524 r2 is the Rn value got from displaced_read_reg.
5526 Insn1: push {pc} Write address of STR instruction + offset on stack
5527 Insn2: pop {r4} Read it back from stack, r4 = addr(Insn1) + offset
5528 Insn3: sub r4, r4, pc r4 = addr(Insn1) + offset - pc
5529 = addr(Insn1) + offset - addr(Insn3) - 8
5531 Insn4: add r4, r4, #8 r4 = offset - 8
5532 Insn5: add r0, r0, r4 r0 = from + 8 + offset - 8
5534 Insn6: str r0, [r2, #imm] (or str r0, [r2, r3])
5536 Otherwise we don't know what value to write for PC, since the offset is
5537 architecture-dependent (sometimes PC+8, sometimes PC+12). More details
5538 of this can be found in Section "Saving from r15" in
5539 http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
5541 dsc
->cleanup
= load
? &cleanup_load
: &cleanup_store
;
5546 thumb2_copy_load_literal (struct gdbarch
*gdbarch
, uint16_t insn1
,
5547 uint16_t insn2
, struct regcache
*regs
,
5548 arm_displaced_step_closure
*dsc
, int size
)
5550 unsigned int u_bit
= bit (insn1
, 7);
5551 unsigned int rt
= bits (insn2
, 12, 15);
5552 int imm12
= bits (insn2
, 0, 11);
5555 if (debug_displaced
)
5556 fprintf_unfiltered (gdb_stdlog
,
5557 "displaced: copying ldr pc (0x%x) R%d %c imm12 %.4x\n",
5558 (unsigned int) dsc
->insn_addr
, rt
, u_bit
? '+' : '-',
5564 /* Rewrite instruction LDR Rt imm12 into:
5566 Prepare: tmp[0] <- r0, tmp[1] <- r2, tmp[2] <- r3, r2 <- pc, r3 <- imm12
5570 Cleanup: rt <- r0, r0 <- tmp[0], r2 <- tmp[1], r3 <- tmp[2]. */
5573 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5574 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
5575 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
5577 pc_val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
5579 pc_val
= pc_val
& 0xfffffffc;
5581 displaced_write_reg (regs
, dsc
, 2, pc_val
, CANNOT_WRITE_PC
);
5582 displaced_write_reg (regs
, dsc
, 3, imm12
, CANNOT_WRITE_PC
);
5586 dsc
->u
.ldst
.xfersize
= size
;
5587 dsc
->u
.ldst
.immed
= 0;
5588 dsc
->u
.ldst
.writeback
= 0;
5589 dsc
->u
.ldst
.restore_r4
= 0;
5591 /* LDR R0, R2, R3 */
5592 dsc
->modinsn
[0] = 0xf852;
5593 dsc
->modinsn
[1] = 0x3;
5596 dsc
->cleanup
= &cleanup_load
;
5602 thumb2_copy_load_reg_imm (struct gdbarch
*gdbarch
, uint16_t insn1
,
5603 uint16_t insn2
, struct regcache
*regs
,
5604 arm_displaced_step_closure
*dsc
,
5605 int writeback
, int immed
)
5607 unsigned int rt
= bits (insn2
, 12, 15);
5608 unsigned int rn
= bits (insn1
, 0, 3);
5609 unsigned int rm
= bits (insn2
, 0, 3); /* Only valid if !immed. */
5610 /* In LDR (register), there is also a register Rm, which is not allowed to
5611 be PC, so we don't have to check it. */
5613 if (rt
!= ARM_PC_REGNUM
&& rn
!= ARM_PC_REGNUM
)
5614 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "load",
5617 if (debug_displaced
)
5618 fprintf_unfiltered (gdb_stdlog
,
5619 "displaced: copying ldr r%d [r%d] insn %.4x%.4x\n",
5620 rt
, rn
, insn1
, insn2
);
5622 install_load_store (gdbarch
, regs
, dsc
, 1, immed
, writeback
, 4,
5625 dsc
->u
.ldst
.restore_r4
= 0;
5628 /* ldr[b]<cond> rt, [rn, #imm], etc.
5630 ldr[b]<cond> r0, [r2, #imm]. */
5632 dsc
->modinsn
[0] = (insn1
& 0xfff0) | 0x2;
5633 dsc
->modinsn
[1] = insn2
& 0x0fff;
5636 /* ldr[b]<cond> rt, [rn, rm], etc.
5638 ldr[b]<cond> r0, [r2, r3]. */
5640 dsc
->modinsn
[0] = (insn1
& 0xfff0) | 0x2;
5641 dsc
->modinsn
[1] = (insn2
& 0x0ff0) | 0x3;
5651 arm_copy_ldr_str_ldrb_strb (struct gdbarch
*gdbarch
, uint32_t insn
,
5652 struct regcache
*regs
,
5653 arm_displaced_step_closure
*dsc
,
5654 int load
, int size
, int usermode
)
5656 int immed
= !bit (insn
, 25);
5657 int writeback
= (bit (insn
, 24) == 0 || bit (insn
, 21) != 0);
5658 unsigned int rt
= bits (insn
, 12, 15);
5659 unsigned int rn
= bits (insn
, 16, 19);
5660 unsigned int rm
= bits (insn
, 0, 3); /* Only valid if !immed. */
5662 if (!insn_references_pc (insn
, 0x000ff00ful
))
5663 return arm_copy_unmodified (gdbarch
, insn
, "load/store", dsc
);
5665 if (debug_displaced
)
5666 fprintf_unfiltered (gdb_stdlog
,
5667 "displaced: copying %s%s r%d [r%d] insn %.8lx\n",
5668 load
? (size
== 1 ? "ldrb" : "ldr")
5669 : (size
== 1 ? "strb" : "str"), usermode
? "t" : "",
5671 (unsigned long) insn
);
5673 install_load_store (gdbarch
, regs
, dsc
, load
, immed
, writeback
, size
,
5674 usermode
, rt
, rm
, rn
);
5676 if (load
|| rt
!= ARM_PC_REGNUM
)
5678 dsc
->u
.ldst
.restore_r4
= 0;
5681 /* {ldr,str}[b]<cond> rt, [rn, #imm], etc.
5683 {ldr,str}[b]<cond> r0, [r2, #imm]. */
5684 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x20000;
5686 /* {ldr,str}[b]<cond> rt, [rn, rm], etc.
5688 {ldr,str}[b]<cond> r0, [r2, r3]. */
5689 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x20003;
5693 /* We need to use r4 as scratch. Make sure it's restored afterwards. */
5694 dsc
->u
.ldst
.restore_r4
= 1;
5695 dsc
->modinsn
[0] = 0xe92d8000; /* push {pc} */
5696 dsc
->modinsn
[1] = 0xe8bd0010; /* pop {r4} */
5697 dsc
->modinsn
[2] = 0xe044400f; /* sub r4, r4, pc. */
5698 dsc
->modinsn
[3] = 0xe2844008; /* add r4, r4, #8. */
5699 dsc
->modinsn
[4] = 0xe0800004; /* add r0, r0, r4. */
5703 dsc
->modinsn
[5] = (insn
& 0xfff00fff) | 0x20000;
5705 dsc
->modinsn
[5] = (insn
& 0xfff00ff0) | 0x20003;
5710 dsc
->cleanup
= load
? &cleanup_load
: &cleanup_store
;
5715 /* Cleanup LDM instructions with fully-populated register list. This is an
5716 unfortunate corner case: it's impossible to implement correctly by modifying
5717 the instruction. The issue is as follows: we have an instruction,
5721 which we must rewrite to avoid loading PC. A possible solution would be to
5722 do the load in two halves, something like (with suitable cleanup
5726 ldm[id][ab] r8!, {r0-r7}
5728 ldm[id][ab] r8, {r7-r14}
5731 but at present there's no suitable place for <temp>, since the scratch space
5732 is overwritten before the cleanup routine is called. For now, we simply
5733 emulate the instruction. */
5736 cleanup_block_load_all (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5737 arm_displaced_step_closure
*dsc
)
5739 int inc
= dsc
->u
.block
.increment
;
5740 int bump_before
= dsc
->u
.block
.before
? (inc
? 4 : -4) : 0;
5741 int bump_after
= dsc
->u
.block
.before
? 0 : (inc
? 4 : -4);
5742 uint32_t regmask
= dsc
->u
.block
.regmask
;
5743 int regno
= inc
? 0 : 15;
5744 CORE_ADDR xfer_addr
= dsc
->u
.block
.xfer_addr
;
5745 int exception_return
= dsc
->u
.block
.load
&& dsc
->u
.block
.user
5746 && (regmask
& 0x8000) != 0;
5747 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
5748 int do_transfer
= condition_true (dsc
->u
.block
.cond
, status
);
5749 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
5754 /* If the instruction is ldm rN, {...pc}^, I don't think there's anything
5755 sensible we can do here. Complain loudly. */
5756 if (exception_return
)
5757 error (_("Cannot single-step exception return"));
5759 /* We don't handle any stores here for now. */
5760 gdb_assert (dsc
->u
.block
.load
!= 0);
5762 if (debug_displaced
)
5763 fprintf_unfiltered (gdb_stdlog
, "displaced: emulating block transfer: "
5764 "%s %s %s\n", dsc
->u
.block
.load
? "ldm" : "stm",
5765 dsc
->u
.block
.increment
? "inc" : "dec",
5766 dsc
->u
.block
.before
? "before" : "after");
5773 while (regno
<= ARM_PC_REGNUM
&& (regmask
& (1 << regno
)) == 0)
5776 while (regno
>= 0 && (regmask
& (1 << regno
)) == 0)
5779 xfer_addr
+= bump_before
;
5781 memword
= read_memory_unsigned_integer (xfer_addr
, 4, byte_order
);
5782 displaced_write_reg (regs
, dsc
, regno
, memword
, LOAD_WRITE_PC
);
5784 xfer_addr
+= bump_after
;
5786 regmask
&= ~(1 << regno
);
5789 if (dsc
->u
.block
.writeback
)
5790 displaced_write_reg (regs
, dsc
, dsc
->u
.block
.rn
, xfer_addr
,
5794 /* Clean up an STM which included the PC in the register list. */
5797 cleanup_block_store_pc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5798 arm_displaced_step_closure
*dsc
)
5800 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
5801 int store_executed
= condition_true (dsc
->u
.block
.cond
, status
);
5802 CORE_ADDR pc_stored_at
, transferred_regs
5803 = count_one_bits (dsc
->u
.block
.regmask
);
5804 CORE_ADDR stm_insn_addr
;
5807 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
5809 /* If condition code fails, there's nothing else to do. */
5810 if (!store_executed
)
5813 if (dsc
->u
.block
.increment
)
5815 pc_stored_at
= dsc
->u
.block
.xfer_addr
+ 4 * transferred_regs
;
5817 if (dsc
->u
.block
.before
)
5822 pc_stored_at
= dsc
->u
.block
.xfer_addr
;
5824 if (dsc
->u
.block
.before
)
5828 pc_val
= read_memory_unsigned_integer (pc_stored_at
, 4, byte_order
);
5829 stm_insn_addr
= dsc
->scratch_base
;
5830 offset
= pc_val
- stm_insn_addr
;
5832 if (debug_displaced
)
5833 fprintf_unfiltered (gdb_stdlog
, "displaced: detected PC offset %.8lx for "
5834 "STM instruction\n", offset
);
5836 /* Rewrite the stored PC to the proper value for the non-displaced original
5838 write_memory_unsigned_integer (pc_stored_at
, 4, byte_order
,
5839 dsc
->insn_addr
+ offset
);
5842 /* Clean up an LDM which includes the PC in the register list. We clumped all
5843 the registers in the transferred list into a contiguous range r0...rX (to
5844 avoid loading PC directly and losing control of the debugged program), so we
5845 must undo that here. */
5848 cleanup_block_load_pc (struct gdbarch
*gdbarch
,
5849 struct regcache
*regs
,
5850 arm_displaced_step_closure
*dsc
)
5852 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
5853 int load_executed
= condition_true (dsc
->u
.block
.cond
, status
);
5854 unsigned int mask
= dsc
->u
.block
.regmask
, write_reg
= ARM_PC_REGNUM
;
5855 unsigned int regs_loaded
= count_one_bits (mask
);
5856 unsigned int num_to_shuffle
= regs_loaded
, clobbered
;
5858 /* The method employed here will fail if the register list is fully populated
5859 (we need to avoid loading PC directly). */
5860 gdb_assert (num_to_shuffle
< 16);
5865 clobbered
= (1 << num_to_shuffle
) - 1;
5867 while (num_to_shuffle
> 0)
5869 if ((mask
& (1 << write_reg
)) != 0)
5871 unsigned int read_reg
= num_to_shuffle
- 1;
5873 if (read_reg
!= write_reg
)
5875 ULONGEST rval
= displaced_read_reg (regs
, dsc
, read_reg
);
5876 displaced_write_reg (regs
, dsc
, write_reg
, rval
, LOAD_WRITE_PC
);
5877 if (debug_displaced
)
5878 fprintf_unfiltered (gdb_stdlog
, _("displaced: LDM: move "
5879 "loaded register r%d to r%d\n"), read_reg
,
5882 else if (debug_displaced
)
5883 fprintf_unfiltered (gdb_stdlog
, _("displaced: LDM: register "
5884 "r%d already in the right place\n"),
5887 clobbered
&= ~(1 << write_reg
);
5895 /* Restore any registers we scribbled over. */
5896 for (write_reg
= 0; clobbered
!= 0; write_reg
++)
5898 if ((clobbered
& (1 << write_reg
)) != 0)
5900 displaced_write_reg (regs
, dsc
, write_reg
, dsc
->tmp
[write_reg
],
5902 if (debug_displaced
)
5903 fprintf_unfiltered (gdb_stdlog
, _("displaced: LDM: restored "
5904 "clobbered register r%d\n"), write_reg
);
5905 clobbered
&= ~(1 << write_reg
);
5909 /* Perform register writeback manually. */
5910 if (dsc
->u
.block
.writeback
)
5912 ULONGEST new_rn_val
= dsc
->u
.block
.xfer_addr
;
5914 if (dsc
->u
.block
.increment
)
5915 new_rn_val
+= regs_loaded
* 4;
5917 new_rn_val
-= regs_loaded
* 4;
5919 displaced_write_reg (regs
, dsc
, dsc
->u
.block
.rn
, new_rn_val
,
5924 /* Handle ldm/stm, apart from some tricky cases which are unlikely to occur
5925 in user-level code (in particular exception return, ldm rn, {...pc}^). */
5928 arm_copy_block_xfer (struct gdbarch
*gdbarch
, uint32_t insn
,
5929 struct regcache
*regs
,
5930 arm_displaced_step_closure
*dsc
)
5932 int load
= bit (insn
, 20);
5933 int user
= bit (insn
, 22);
5934 int increment
= bit (insn
, 23);
5935 int before
= bit (insn
, 24);
5936 int writeback
= bit (insn
, 21);
5937 int rn
= bits (insn
, 16, 19);
5939 /* Block transfers which don't mention PC can be run directly
5941 if (rn
!= ARM_PC_REGNUM
&& (insn
& 0x8000) == 0)
5942 return arm_copy_unmodified (gdbarch
, insn
, "ldm/stm", dsc
);
5944 if (rn
== ARM_PC_REGNUM
)
5946 warning (_("displaced: Unpredictable LDM or STM with "
5947 "base register r15"));
5948 return arm_copy_unmodified (gdbarch
, insn
, "unpredictable ldm/stm", dsc
);
5951 if (debug_displaced
)
5952 fprintf_unfiltered (gdb_stdlog
, "displaced: copying block transfer insn "
5953 "%.8lx\n", (unsigned long) insn
);
5955 dsc
->u
.block
.xfer_addr
= displaced_read_reg (regs
, dsc
, rn
);
5956 dsc
->u
.block
.rn
= rn
;
5958 dsc
->u
.block
.load
= load
;
5959 dsc
->u
.block
.user
= user
;
5960 dsc
->u
.block
.increment
= increment
;
5961 dsc
->u
.block
.before
= before
;
5962 dsc
->u
.block
.writeback
= writeback
;
5963 dsc
->u
.block
.cond
= bits (insn
, 28, 31);
5965 dsc
->u
.block
.regmask
= insn
& 0xffff;
5969 if ((insn
& 0xffff) == 0xffff)
5971 /* LDM with a fully-populated register list. This case is
5972 particularly tricky. Implement for now by fully emulating the
5973 instruction (which might not behave perfectly in all cases, but
5974 these instructions should be rare enough for that not to matter
5976 dsc
->modinsn
[0] = ARM_NOP
;
5978 dsc
->cleanup
= &cleanup_block_load_all
;
5982 /* LDM of a list of registers which includes PC. Implement by
5983 rewriting the list of registers to be transferred into a
5984 contiguous chunk r0...rX before doing the transfer, then shuffling
5985 registers into the correct places in the cleanup routine. */
5986 unsigned int regmask
= insn
& 0xffff;
5987 unsigned int num_in_list
= count_one_bits (regmask
), new_regmask
;
5990 for (i
= 0; i
< num_in_list
; i
++)
5991 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
5993 /* Writeback makes things complicated. We need to avoid clobbering
5994 the base register with one of the registers in our modified
5995 register list, but just using a different register can't work in
5998 ldm r14!, {r0-r13,pc}
6000 which would need to be rewritten as:
6004 but that can't work, because there's no free register for N.
6006 Solve this by turning off the writeback bit, and emulating
6007 writeback manually in the cleanup routine. */
6012 new_regmask
= (1 << num_in_list
) - 1;
6014 if (debug_displaced
)
6015 fprintf_unfiltered (gdb_stdlog
, _("displaced: LDM r%d%s, "
6016 "{..., pc}: original reg list %.4x, modified "
6017 "list %.4x\n"), rn
, writeback
? "!" : "",
6018 (int) insn
& 0xffff, new_regmask
);
6020 dsc
->modinsn
[0] = (insn
& ~0xffff) | (new_regmask
& 0xffff);
6022 dsc
->cleanup
= &cleanup_block_load_pc
;
6027 /* STM of a list of registers which includes PC. Run the instruction
6028 as-is, but out of line: this will store the wrong value for the PC,
6029 so we must manually fix up the memory in the cleanup routine.
6030 Doing things this way has the advantage that we can auto-detect
6031 the offset of the PC write (which is architecture-dependent) in
6032 the cleanup routine. */
6033 dsc
->modinsn
[0] = insn
;
6035 dsc
->cleanup
= &cleanup_block_store_pc
;
6042 thumb2_copy_block_xfer (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
6043 struct regcache
*regs
,
6044 arm_displaced_step_closure
*dsc
)
6046 int rn
= bits (insn1
, 0, 3);
6047 int load
= bit (insn1
, 4);
6048 int writeback
= bit (insn1
, 5);
6050 /* Block transfers which don't mention PC can be run directly
6052 if (rn
!= ARM_PC_REGNUM
&& (insn2
& 0x8000) == 0)
6053 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "ldm/stm", dsc
);
6055 if (rn
== ARM_PC_REGNUM
)
6057 warning (_("displaced: Unpredictable LDM or STM with "
6058 "base register r15"));
6059 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6060 "unpredictable ldm/stm", dsc
);
6063 if (debug_displaced
)
6064 fprintf_unfiltered (gdb_stdlog
, "displaced: copying block transfer insn "
6065 "%.4x%.4x\n", insn1
, insn2
);
6067 /* Clear bit 13, since it should be always zero. */
6068 dsc
->u
.block
.regmask
= (insn2
& 0xdfff);
6069 dsc
->u
.block
.rn
= rn
;
6071 dsc
->u
.block
.load
= load
;
6072 dsc
->u
.block
.user
= 0;
6073 dsc
->u
.block
.increment
= bit (insn1
, 7);
6074 dsc
->u
.block
.before
= bit (insn1
, 8);
6075 dsc
->u
.block
.writeback
= writeback
;
6076 dsc
->u
.block
.cond
= INST_AL
;
6077 dsc
->u
.block
.xfer_addr
= displaced_read_reg (regs
, dsc
, rn
);
6081 if (dsc
->u
.block
.regmask
== 0xffff)
6083 /* This branch is impossible to happen. */
6088 unsigned int regmask
= dsc
->u
.block
.regmask
;
6089 unsigned int num_in_list
= count_one_bits (regmask
), new_regmask
;
6092 for (i
= 0; i
< num_in_list
; i
++)
6093 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
6098 new_regmask
= (1 << num_in_list
) - 1;
6100 if (debug_displaced
)
6101 fprintf_unfiltered (gdb_stdlog
, _("displaced: LDM r%d%s, "
6102 "{..., pc}: original reg list %.4x, modified "
6103 "list %.4x\n"), rn
, writeback
? "!" : "",
6104 (int) dsc
->u
.block
.regmask
, new_regmask
);
6106 dsc
->modinsn
[0] = insn1
;
6107 dsc
->modinsn
[1] = (new_regmask
& 0xffff);
6110 dsc
->cleanup
= &cleanup_block_load_pc
;
6115 dsc
->modinsn
[0] = insn1
;
6116 dsc
->modinsn
[1] = insn2
;
6118 dsc
->cleanup
= &cleanup_block_store_pc
;
6123 /* Wrapper over read_memory_unsigned_integer for use in arm_get_next_pcs.
6124 This is used to avoid a dependency on BFD's bfd_endian enum. */
6127 arm_get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr
, int len
,
6130 return read_memory_unsigned_integer (memaddr
, len
,
6131 (enum bfd_endian
) byte_order
);
6134 /* Wrapper over gdbarch_addr_bits_remove for use in arm_get_next_pcs. */
6137 arm_get_next_pcs_addr_bits_remove (struct arm_get_next_pcs
*self
,
6140 return gdbarch_addr_bits_remove (self
->regcache
->arch (), val
);
6143 /* Wrapper over syscall_next_pc for use in get_next_pcs. */
6146 arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs
*self
)
6151 /* Wrapper over arm_is_thumb for use in arm_get_next_pcs. */
6154 arm_get_next_pcs_is_thumb (struct arm_get_next_pcs
*self
)
6156 return arm_is_thumb (self
->regcache
);
6159 /* single_step() is called just before we want to resume the inferior,
6160 if we want to single-step it but there is no hardware or kernel
6161 single-step support. We find the target of the coming instructions
6162 and breakpoint them. */
6164 std::vector
<CORE_ADDR
>
6165 arm_software_single_step (struct regcache
*regcache
)
6167 struct gdbarch
*gdbarch
= regcache
->arch ();
6168 struct arm_get_next_pcs next_pcs_ctx
;
6170 arm_get_next_pcs_ctor (&next_pcs_ctx
,
6171 &arm_get_next_pcs_ops
,
6172 gdbarch_byte_order (gdbarch
),
6173 gdbarch_byte_order_for_code (gdbarch
),
6177 std::vector
<CORE_ADDR
> next_pcs
= arm_get_next_pcs (&next_pcs_ctx
);
6179 for (CORE_ADDR
&pc_ref
: next_pcs
)
6180 pc_ref
= gdbarch_addr_bits_remove (gdbarch
, pc_ref
);
6185 /* Cleanup/copy SVC (SWI) instructions. These two functions are overridden
6186 for Linux, where some SVC instructions must be treated specially. */
6189 cleanup_svc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6190 arm_displaced_step_closure
*dsc
)
6192 CORE_ADDR resume_addr
= dsc
->insn_addr
+ dsc
->insn_size
;
6194 if (debug_displaced
)
6195 fprintf_unfiltered (gdb_stdlog
, "displaced: cleanup for svc, resume at "
6196 "%.8lx\n", (unsigned long) resume_addr
);
6198 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, resume_addr
, BRANCH_WRITE_PC
);
6202 /* Common copy routine for svc instruction. */
6205 install_svc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6206 arm_displaced_step_closure
*dsc
)
6208 /* Preparation: none.
6209 Insn: unmodified svc.
6210 Cleanup: pc <- insn_addr + insn_size. */
6212 /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
6214 dsc
->wrote_to_pc
= 1;
6216 /* Allow OS-specific code to override SVC handling. */
6217 if (dsc
->u
.svc
.copy_svc_os
)
6218 return dsc
->u
.svc
.copy_svc_os (gdbarch
, regs
, dsc
);
6221 dsc
->cleanup
= &cleanup_svc
;
6227 arm_copy_svc (struct gdbarch
*gdbarch
, uint32_t insn
,
6228 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
6231 if (debug_displaced
)
6232 fprintf_unfiltered (gdb_stdlog
, "displaced: copying svc insn %.8lx\n",
6233 (unsigned long) insn
);
6235 dsc
->modinsn
[0] = insn
;
6237 return install_svc (gdbarch
, regs
, dsc
);
6241 thumb_copy_svc (struct gdbarch
*gdbarch
, uint16_t insn
,
6242 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
6245 if (debug_displaced
)
6246 fprintf_unfiltered (gdb_stdlog
, "displaced: copying svc insn %.4x\n",
6249 dsc
->modinsn
[0] = insn
;
6251 return install_svc (gdbarch
, regs
, dsc
);
6254 /* Copy undefined instructions. */
6257 arm_copy_undef (struct gdbarch
*gdbarch
, uint32_t insn
,
6258 arm_displaced_step_closure
*dsc
)
6260 if (debug_displaced
)
6261 fprintf_unfiltered (gdb_stdlog
,
6262 "displaced: copying undefined insn %.8lx\n",
6263 (unsigned long) insn
);
6265 dsc
->modinsn
[0] = insn
;
6271 thumb_32bit_copy_undef (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
6272 arm_displaced_step_closure
*dsc
)
6275 if (debug_displaced
)
6276 fprintf_unfiltered (gdb_stdlog
, "displaced: copying undefined insn "
6277 "%.4x %.4x\n", (unsigned short) insn1
,
6278 (unsigned short) insn2
);
6280 dsc
->modinsn
[0] = insn1
;
6281 dsc
->modinsn
[1] = insn2
;
6287 /* Copy unpredictable instructions. */
6290 arm_copy_unpred (struct gdbarch
*gdbarch
, uint32_t insn
,
6291 arm_displaced_step_closure
*dsc
)
6293 if (debug_displaced
)
6294 fprintf_unfiltered (gdb_stdlog
, "displaced: copying unpredictable insn "
6295 "%.8lx\n", (unsigned long) insn
);
6297 dsc
->modinsn
[0] = insn
;
6302 /* The decode_* functions are instruction decoding helpers. They mostly follow
6303 the presentation in the ARM ARM. */
6306 arm_decode_misc_memhint_neon (struct gdbarch
*gdbarch
, uint32_t insn
,
6307 struct regcache
*regs
,
6308 arm_displaced_step_closure
*dsc
)
6310 unsigned int op1
= bits (insn
, 20, 26), op2
= bits (insn
, 4, 7);
6311 unsigned int rn
= bits (insn
, 16, 19);
6313 if (op1
== 0x10 && (op2
& 0x2) == 0x0 && (rn
& 0x1) == 0x0)
6314 return arm_copy_unmodified (gdbarch
, insn
, "cps", dsc
);
6315 else if (op1
== 0x10 && op2
== 0x0 && (rn
& 0x1) == 0x1)
6316 return arm_copy_unmodified (gdbarch
, insn
, "setend", dsc
);
6317 else if ((op1
& 0x60) == 0x20)
6318 return arm_copy_unmodified (gdbarch
, insn
, "neon dataproc", dsc
);
6319 else if ((op1
& 0x71) == 0x40)
6320 return arm_copy_unmodified (gdbarch
, insn
, "neon elt/struct load/store",
6322 else if ((op1
& 0x77) == 0x41)
6323 return arm_copy_unmodified (gdbarch
, insn
, "unallocated mem hint", dsc
);
6324 else if ((op1
& 0x77) == 0x45)
6325 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pli. */
6326 else if ((op1
& 0x77) == 0x51)
6329 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pld/pldw. */
6331 return arm_copy_unpred (gdbarch
, insn
, dsc
);
6333 else if ((op1
& 0x77) == 0x55)
6334 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pld/pldw. */
6335 else if (op1
== 0x57)
6338 case 0x1: return arm_copy_unmodified (gdbarch
, insn
, "clrex", dsc
);
6339 case 0x4: return arm_copy_unmodified (gdbarch
, insn
, "dsb", dsc
);
6340 case 0x5: return arm_copy_unmodified (gdbarch
, insn
, "dmb", dsc
);
6341 case 0x6: return arm_copy_unmodified (gdbarch
, insn
, "isb", dsc
);
6342 default: return arm_copy_unpred (gdbarch
, insn
, dsc
);
6344 else if ((op1
& 0x63) == 0x43)
6345 return arm_copy_unpred (gdbarch
, insn
, dsc
);
6346 else if ((op2
& 0x1) == 0x0)
6347 switch (op1
& ~0x80)
6350 return arm_copy_unmodified (gdbarch
, insn
, "unallocated mem hint", dsc
);
6352 return arm_copy_preload_reg (gdbarch
, insn
, regs
, dsc
); /* pli reg. */
6353 case 0x71: case 0x75:
6355 return arm_copy_preload_reg (gdbarch
, insn
, regs
, dsc
);
6356 case 0x63: case 0x67: case 0x73: case 0x77:
6357 return arm_copy_unpred (gdbarch
, insn
, dsc
);
6359 return arm_copy_undef (gdbarch
, insn
, dsc
);
6362 return arm_copy_undef (gdbarch
, insn
, dsc
); /* Probably unreachable. */
6366 arm_decode_unconditional (struct gdbarch
*gdbarch
, uint32_t insn
,
6367 struct regcache
*regs
,
6368 arm_displaced_step_closure
*dsc
)
6370 if (bit (insn
, 27) == 0)
6371 return arm_decode_misc_memhint_neon (gdbarch
, insn
, regs
, dsc
);
6372 /* Switch on bits: 0bxxxxx321xxx0xxxxxxxxxxxxxxxxxxxx. */
6373 else switch (((insn
& 0x7000000) >> 23) | ((insn
& 0x100000) >> 20))
6376 return arm_copy_unmodified (gdbarch
, insn
, "srs", dsc
);
6379 return arm_copy_unmodified (gdbarch
, insn
, "rfe", dsc
);
6381 case 0x4: case 0x5: case 0x6: case 0x7:
6382 return arm_copy_b_bl_blx (gdbarch
, insn
, regs
, dsc
);
6385 switch ((insn
& 0xe00000) >> 21)
6387 case 0x1: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
6389 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6392 return arm_copy_unmodified (gdbarch
, insn
, "mcrr/mcrr2", dsc
);
6395 return arm_copy_undef (gdbarch
, insn
, dsc
);
6400 int rn_f
= (bits (insn
, 16, 19) == 0xf);
6401 switch ((insn
& 0xe00000) >> 21)
6404 /* ldc/ldc2 imm (undefined for rn == pc). */
6405 return rn_f
? arm_copy_undef (gdbarch
, insn
, dsc
)
6406 : arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6409 return arm_copy_unmodified (gdbarch
, insn
, "mrrc/mrrc2", dsc
);
6411 case 0x4: case 0x5: case 0x6: case 0x7:
6412 /* ldc/ldc2 lit (undefined for rn != pc). */
6413 return rn_f
? arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
)
6414 : arm_copy_undef (gdbarch
, insn
, dsc
);
6417 return arm_copy_undef (gdbarch
, insn
, dsc
);
6422 return arm_copy_unmodified (gdbarch
, insn
, "stc/stc2", dsc
);
6425 if (bits (insn
, 16, 19) == 0xf)
6427 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6429 return arm_copy_undef (gdbarch
, insn
, dsc
);
6433 return arm_copy_unmodified (gdbarch
, insn
, "mcr/mcr2", dsc
);
6435 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
6439 return arm_copy_unmodified (gdbarch
, insn
, "mrc/mrc2", dsc
);
6441 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
6444 return arm_copy_undef (gdbarch
, insn
, dsc
);
6448 /* Decode miscellaneous instructions in dp/misc encoding space. */
6451 arm_decode_miscellaneous (struct gdbarch
*gdbarch
, uint32_t insn
,
6452 struct regcache
*regs
,
6453 arm_displaced_step_closure
*dsc
)
6455 unsigned int op2
= bits (insn
, 4, 6);
6456 unsigned int op
= bits (insn
, 21, 22);
6461 return arm_copy_unmodified (gdbarch
, insn
, "mrs/msr", dsc
);
6464 if (op
== 0x1) /* bx. */
6465 return arm_copy_bx_blx_reg (gdbarch
, insn
, regs
, dsc
);
6467 return arm_copy_unmodified (gdbarch
, insn
, "clz", dsc
);
6469 return arm_copy_undef (gdbarch
, insn
, dsc
);
6473 /* Not really supported. */
6474 return arm_copy_unmodified (gdbarch
, insn
, "bxj", dsc
);
6476 return arm_copy_undef (gdbarch
, insn
, dsc
);
6480 return arm_copy_bx_blx_reg (gdbarch
, insn
,
6481 regs
, dsc
); /* blx register. */
6483 return arm_copy_undef (gdbarch
, insn
, dsc
);
6486 return arm_copy_unmodified (gdbarch
, insn
, "saturating add/sub", dsc
);
6490 return arm_copy_unmodified (gdbarch
, insn
, "bkpt", dsc
);
6492 /* Not really supported. */
6493 return arm_copy_unmodified (gdbarch
, insn
, "smc", dsc
);
6497 return arm_copy_undef (gdbarch
, insn
, dsc
);
6502 arm_decode_dp_misc (struct gdbarch
*gdbarch
, uint32_t insn
,
6503 struct regcache
*regs
,
6504 arm_displaced_step_closure
*dsc
)
6507 switch (bits (insn
, 20, 24))
6510 return arm_copy_unmodified (gdbarch
, insn
, "movw", dsc
);
6513 return arm_copy_unmodified (gdbarch
, insn
, "movt", dsc
);
6515 case 0x12: case 0x16:
6516 return arm_copy_unmodified (gdbarch
, insn
, "msr imm", dsc
);
6519 return arm_copy_alu_imm (gdbarch
, insn
, regs
, dsc
);
6523 uint32_t op1
= bits (insn
, 20, 24), op2
= bits (insn
, 4, 7);
6525 if ((op1
& 0x19) != 0x10 && (op2
& 0x1) == 0x0)
6526 return arm_copy_alu_reg (gdbarch
, insn
, regs
, dsc
);
6527 else if ((op1
& 0x19) != 0x10 && (op2
& 0x9) == 0x1)
6528 return arm_copy_alu_shifted_reg (gdbarch
, insn
, regs
, dsc
);
6529 else if ((op1
& 0x19) == 0x10 && (op2
& 0x8) == 0x0)
6530 return arm_decode_miscellaneous (gdbarch
, insn
, regs
, dsc
);
6531 else if ((op1
& 0x19) == 0x10 && (op2
& 0x9) == 0x8)
6532 return arm_copy_unmodified (gdbarch
, insn
, "halfword mul/mla", dsc
);
6533 else if ((op1
& 0x10) == 0x00 && op2
== 0x9)
6534 return arm_copy_unmodified (gdbarch
, insn
, "mul/mla", dsc
);
6535 else if ((op1
& 0x10) == 0x10 && op2
== 0x9)
6536 return arm_copy_unmodified (gdbarch
, insn
, "synch", dsc
);
6537 else if (op2
== 0xb || (op2
& 0xd) == 0xd)
6538 /* 2nd arg means "unprivileged". */
6539 return arm_copy_extra_ld_st (gdbarch
, insn
, (op1
& 0x12) == 0x02, regs
,
6543 /* Should be unreachable. */
6548 arm_decode_ld_st_word_ubyte (struct gdbarch
*gdbarch
, uint32_t insn
,
6549 struct regcache
*regs
,
6550 arm_displaced_step_closure
*dsc
)
6552 int a
= bit (insn
, 25), b
= bit (insn
, 4);
6553 uint32_t op1
= bits (insn
, 20, 24);
6555 if ((!a
&& (op1
& 0x05) == 0x00 && (op1
& 0x17) != 0x02)
6556 || (a
&& (op1
& 0x05) == 0x00 && (op1
& 0x17) != 0x02 && !b
))
6557 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 4, 0);
6558 else if ((!a
&& (op1
& 0x17) == 0x02)
6559 || (a
&& (op1
& 0x17) == 0x02 && !b
))
6560 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 4, 1);
6561 else if ((!a
&& (op1
& 0x05) == 0x01 && (op1
& 0x17) != 0x03)
6562 || (a
&& (op1
& 0x05) == 0x01 && (op1
& 0x17) != 0x03 && !b
))
6563 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 4, 0);
6564 else if ((!a
&& (op1
& 0x17) == 0x03)
6565 || (a
&& (op1
& 0x17) == 0x03 && !b
))
6566 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 4, 1);
6567 else if ((!a
&& (op1
& 0x05) == 0x04 && (op1
& 0x17) != 0x06)
6568 || (a
&& (op1
& 0x05) == 0x04 && (op1
& 0x17) != 0x06 && !b
))
6569 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 1, 0);
6570 else if ((!a
&& (op1
& 0x17) == 0x06)
6571 || (a
&& (op1
& 0x17) == 0x06 && !b
))
6572 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 1, 1);
6573 else if ((!a
&& (op1
& 0x05) == 0x05 && (op1
& 0x17) != 0x07)
6574 || (a
&& (op1
& 0x05) == 0x05 && (op1
& 0x17) != 0x07 && !b
))
6575 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 1, 0);
6576 else if ((!a
&& (op1
& 0x17) == 0x07)
6577 || (a
&& (op1
& 0x17) == 0x07 && !b
))
6578 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 1, 1);
6580 /* Should be unreachable. */
6585 arm_decode_media (struct gdbarch
*gdbarch
, uint32_t insn
,
6586 arm_displaced_step_closure
*dsc
)
6588 switch (bits (insn
, 20, 24))
6590 case 0x00: case 0x01: case 0x02: case 0x03:
6591 return arm_copy_unmodified (gdbarch
, insn
, "parallel add/sub signed", dsc
);
6593 case 0x04: case 0x05: case 0x06: case 0x07:
6594 return arm_copy_unmodified (gdbarch
, insn
, "parallel add/sub unsigned", dsc
);
6596 case 0x08: case 0x09: case 0x0a: case 0x0b:
6597 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
6598 return arm_copy_unmodified (gdbarch
, insn
,
6599 "decode/pack/unpack/saturate/reverse", dsc
);
6602 if (bits (insn
, 5, 7) == 0) /* op2. */
6604 if (bits (insn
, 12, 15) == 0xf)
6605 return arm_copy_unmodified (gdbarch
, insn
, "usad8", dsc
);
6607 return arm_copy_unmodified (gdbarch
, insn
, "usada8", dsc
);
6610 return arm_copy_undef (gdbarch
, insn
, dsc
);
6612 case 0x1a: case 0x1b:
6613 if (bits (insn
, 5, 6) == 0x2) /* op2[1:0]. */
6614 return arm_copy_unmodified (gdbarch
, insn
, "sbfx", dsc
);
6616 return arm_copy_undef (gdbarch
, insn
, dsc
);
6618 case 0x1c: case 0x1d:
6619 if (bits (insn
, 5, 6) == 0x0) /* op2[1:0]. */
6621 if (bits (insn
, 0, 3) == 0xf)
6622 return arm_copy_unmodified (gdbarch
, insn
, "bfc", dsc
);
6624 return arm_copy_unmodified (gdbarch
, insn
, "bfi", dsc
);
6627 return arm_copy_undef (gdbarch
, insn
, dsc
);
6629 case 0x1e: case 0x1f:
6630 if (bits (insn
, 5, 6) == 0x2) /* op2[1:0]. */
6631 return arm_copy_unmodified (gdbarch
, insn
, "ubfx", dsc
);
6633 return arm_copy_undef (gdbarch
, insn
, dsc
);
6636 /* Should be unreachable. */
6641 arm_decode_b_bl_ldmstm (struct gdbarch
*gdbarch
, uint32_t insn
,
6642 struct regcache
*regs
,
6643 arm_displaced_step_closure
*dsc
)
6646 return arm_copy_b_bl_blx (gdbarch
, insn
, regs
, dsc
);
6648 return arm_copy_block_xfer (gdbarch
, insn
, regs
, dsc
);
6652 arm_decode_ext_reg_ld_st (struct gdbarch
*gdbarch
, uint32_t insn
,
6653 struct regcache
*regs
,
6654 arm_displaced_step_closure
*dsc
)
6656 unsigned int opcode
= bits (insn
, 20, 24);
6660 case 0x04: case 0x05: /* VFP/Neon mrrc/mcrr. */
6661 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon mrrc/mcrr", dsc
);
6663 case 0x08: case 0x0a: case 0x0c: case 0x0e:
6664 case 0x12: case 0x16:
6665 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon vstm/vpush", dsc
);
6667 case 0x09: case 0x0b: case 0x0d: case 0x0f:
6668 case 0x13: case 0x17:
6669 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon vldm/vpop", dsc
);
6671 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6672 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6673 /* Note: no writeback for these instructions. Bit 25 will always be
6674 zero though (via caller), so the following works OK. */
6675 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6678 /* Should be unreachable. */
6682 /* Decode shifted register instructions. */
6685 thumb2_decode_dp_shift_reg (struct gdbarch
*gdbarch
, uint16_t insn1
,
6686 uint16_t insn2
, struct regcache
*regs
,
6687 arm_displaced_step_closure
*dsc
)
6689 /* PC is only allowed to be used in instruction MOV. */
6691 unsigned int op
= bits (insn1
, 5, 8);
6692 unsigned int rn
= bits (insn1
, 0, 3);
6694 if (op
== 0x2 && rn
== 0xf) /* MOV */
6695 return thumb2_copy_alu_imm (gdbarch
, insn1
, insn2
, regs
, dsc
);
6697 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6698 "dp (shift reg)", dsc
);
6702 /* Decode extension register load/store. Exactly the same as
6703 arm_decode_ext_reg_ld_st. */
6706 thumb2_decode_ext_reg_ld_st (struct gdbarch
*gdbarch
, uint16_t insn1
,
6707 uint16_t insn2
, struct regcache
*regs
,
6708 arm_displaced_step_closure
*dsc
)
6710 unsigned int opcode
= bits (insn1
, 4, 8);
6714 case 0x04: case 0x05:
6715 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6716 "vfp/neon vmov", dsc
);
6718 case 0x08: case 0x0c: /* 01x00 */
6719 case 0x0a: case 0x0e: /* 01x10 */
6720 case 0x12: case 0x16: /* 10x10 */
6721 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6722 "vfp/neon vstm/vpush", dsc
);
6724 case 0x09: case 0x0d: /* 01x01 */
6725 case 0x0b: case 0x0f: /* 01x11 */
6726 case 0x13: case 0x17: /* 10x11 */
6727 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6728 "vfp/neon vldm/vpop", dsc
);
6730 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
6731 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6733 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
6734 return thumb2_copy_copro_load_store (gdbarch
, insn1
, insn2
, regs
, dsc
);
6737 /* Should be unreachable. */
6742 arm_decode_svc_copro (struct gdbarch
*gdbarch
, uint32_t insn
,
6743 struct regcache
*regs
, arm_displaced_step_closure
*dsc
)
6745 unsigned int op1
= bits (insn
, 20, 25);
6746 int op
= bit (insn
, 4);
6747 unsigned int coproc
= bits (insn
, 8, 11);
6749 if ((op1
& 0x20) == 0x00 && (op1
& 0x3a) != 0x00 && (coproc
& 0xe) == 0xa)
6750 return arm_decode_ext_reg_ld_st (gdbarch
, insn
, regs
, dsc
);
6751 else if ((op1
& 0x21) == 0x00 && (op1
& 0x3a) != 0x00
6752 && (coproc
& 0xe) != 0xa)
6754 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6755 else if ((op1
& 0x21) == 0x01 && (op1
& 0x3a) != 0x00
6756 && (coproc
& 0xe) != 0xa)
6757 /* ldc/ldc2 imm/lit. */
6758 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
6759 else if ((op1
& 0x3e) == 0x00)
6760 return arm_copy_undef (gdbarch
, insn
, dsc
);
6761 else if ((op1
& 0x3e) == 0x04 && (coproc
& 0xe) == 0xa)
6762 return arm_copy_unmodified (gdbarch
, insn
, "neon 64bit xfer", dsc
);
6763 else if (op1
== 0x04 && (coproc
& 0xe) != 0xa)
6764 return arm_copy_unmodified (gdbarch
, insn
, "mcrr/mcrr2", dsc
);
6765 else if (op1
== 0x05 && (coproc
& 0xe) != 0xa)
6766 return arm_copy_unmodified (gdbarch
, insn
, "mrrc/mrrc2", dsc
);
6767 else if ((op1
& 0x30) == 0x20 && !op
)
6769 if ((coproc
& 0xe) == 0xa)
6770 return arm_copy_unmodified (gdbarch
, insn
, "vfp dataproc", dsc
);
6772 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
6774 else if ((op1
& 0x30) == 0x20 && op
)
6775 return arm_copy_unmodified (gdbarch
, insn
, "neon 8/16/32 bit xfer", dsc
);
6776 else if ((op1
& 0x31) == 0x20 && op
&& (coproc
& 0xe) != 0xa)
6777 return arm_copy_unmodified (gdbarch
, insn
, "mcr/mcr2", dsc
);
6778 else if ((op1
& 0x31) == 0x21 && op
&& (coproc
& 0xe) != 0xa)
6779 return arm_copy_unmodified (gdbarch
, insn
, "mrc/mrc2", dsc
);
6780 else if ((op1
& 0x30) == 0x30)
6781 return arm_copy_svc (gdbarch
, insn
, regs
, dsc
);
6783 return arm_copy_undef (gdbarch
, insn
, dsc
); /* Possibly unreachable. */
6787 thumb2_decode_svc_copro (struct gdbarch
*gdbarch
, uint16_t insn1
,
6788 uint16_t insn2
, struct regcache
*regs
,
6789 arm_displaced_step_closure
*dsc
)
6791 unsigned int coproc
= bits (insn2
, 8, 11);
6792 unsigned int bit_5_8
= bits (insn1
, 5, 8);
6793 unsigned int bit_9
= bit (insn1
, 9);
6794 unsigned int bit_4
= bit (insn1
, 4);
6799 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6800 "neon 64bit xfer/mrrc/mrrc2/mcrr/mcrr2",
6802 else if (bit_5_8
== 0) /* UNDEFINED. */
6803 return thumb_32bit_copy_undef (gdbarch
, insn1
, insn2
, dsc
);
6806 /*coproc is 101x. SIMD/VFP, ext registers load/store. */
6807 if ((coproc
& 0xe) == 0xa)
6808 return thumb2_decode_ext_reg_ld_st (gdbarch
, insn1
, insn2
, regs
,
6810 else /* coproc is not 101x. */
6812 if (bit_4
== 0) /* STC/STC2. */
6813 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6815 else /* LDC/LDC2 {literal, immediate}. */
6816 return thumb2_copy_copro_load_store (gdbarch
, insn1
, insn2
,
6822 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "coproc", dsc
);
6828 install_pc_relative (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6829 arm_displaced_step_closure
*dsc
, int rd
)
6835 Preparation: Rd <- PC
6841 int val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
6842 displaced_write_reg (regs
, dsc
, rd
, val
, CANNOT_WRITE_PC
);
6846 thumb_copy_pc_relative_16bit (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6847 arm_displaced_step_closure
*dsc
,
6848 int rd
, unsigned int imm
)
6851 /* Encoding T2: ADDS Rd, #imm */
6852 dsc
->modinsn
[0] = (0x3000 | (rd
<< 8) | imm
);
6854 install_pc_relative (gdbarch
, regs
, dsc
, rd
);
6860 thumb_decode_pc_relative_16bit (struct gdbarch
*gdbarch
, uint16_t insn
,
6861 struct regcache
*regs
,
6862 arm_displaced_step_closure
*dsc
)
6864 unsigned int rd
= bits (insn
, 8, 10);
6865 unsigned int imm8
= bits (insn
, 0, 7);
6867 if (debug_displaced
)
6868 fprintf_unfiltered (gdb_stdlog
,
6869 "displaced: copying thumb adr r%d, #%d insn %.4x\n",
6872 return thumb_copy_pc_relative_16bit (gdbarch
, regs
, dsc
, rd
, imm8
);
6876 thumb_copy_pc_relative_32bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
6877 uint16_t insn2
, struct regcache
*regs
,
6878 arm_displaced_step_closure
*dsc
)
6880 unsigned int rd
= bits (insn2
, 8, 11);
6881 /* Since immediate has the same encoding in ADR ADD and SUB, so we simply
6882 extract raw immediate encoding rather than computing immediate. When
6883 generating ADD or SUB instruction, we can simply perform OR operation to
6884 set immediate into ADD. */
6885 unsigned int imm_3_8
= insn2
& 0x70ff;
6886 unsigned int imm_i
= insn1
& 0x0400; /* Clear all bits except bit 10. */
6888 if (debug_displaced
)
6889 fprintf_unfiltered (gdb_stdlog
,
6890 "displaced: copying thumb adr r%d, #%d:%d insn %.4x%.4x\n",
6891 rd
, imm_i
, imm_3_8
, insn1
, insn2
);
6893 if (bit (insn1
, 7)) /* Encoding T2 */
6895 /* Encoding T3: SUB Rd, Rd, #imm */
6896 dsc
->modinsn
[0] = (0xf1a0 | rd
| imm_i
);
6897 dsc
->modinsn
[1] = ((rd
<< 8) | imm_3_8
);
6899 else /* Encoding T3 */
6901 /* Encoding T3: ADD Rd, Rd, #imm */
6902 dsc
->modinsn
[0] = (0xf100 | rd
| imm_i
);
6903 dsc
->modinsn
[1] = ((rd
<< 8) | imm_3_8
);
6907 install_pc_relative (gdbarch
, regs
, dsc
, rd
);
6913 thumb_copy_16bit_ldr_literal (struct gdbarch
*gdbarch
, uint16_t insn1
,
6914 struct regcache
*regs
,
6915 arm_displaced_step_closure
*dsc
)
6917 unsigned int rt
= bits (insn1
, 8, 10);
6919 int imm8
= (bits (insn1
, 0, 7) << 2);
6925 Preparation: tmp0 <- R0, tmp2 <- R2, tmp3 <- R3, R2 <- PC, R3 <- #imm8;
6927 Insn: LDR R0, [R2, R3];
6928 Cleanup: R2 <- tmp2, R3 <- tmp3, Rd <- R0, R0 <- tmp0 */
6930 if (debug_displaced
)
6931 fprintf_unfiltered (gdb_stdlog
,
6932 "displaced: copying thumb ldr r%d [pc #%d]\n"
6935 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
6936 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
6937 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
6938 pc
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
6939 /* The assembler calculates the required value of the offset from the
6940 Align(PC,4) value of this instruction to the label. */
6941 pc
= pc
& 0xfffffffc;
6943 displaced_write_reg (regs
, dsc
, 2, pc
, CANNOT_WRITE_PC
);
6944 displaced_write_reg (regs
, dsc
, 3, imm8
, CANNOT_WRITE_PC
);
6947 dsc
->u
.ldst
.xfersize
= 4;
6949 dsc
->u
.ldst
.immed
= 0;
6950 dsc
->u
.ldst
.writeback
= 0;
6951 dsc
->u
.ldst
.restore_r4
= 0;
6953 dsc
->modinsn
[0] = 0x58d0; /* ldr r0, [r2, r3]*/
6955 dsc
->cleanup
= &cleanup_load
;
6960 /* Copy Thumb cbnz/cbz instruction. */
6963 thumb_copy_cbnz_cbz (struct gdbarch
*gdbarch
, uint16_t insn1
,
6964 struct regcache
*regs
,
6965 arm_displaced_step_closure
*dsc
)
6967 int non_zero
= bit (insn1
, 11);
6968 unsigned int imm5
= (bit (insn1
, 9) << 6) | (bits (insn1
, 3, 7) << 1);
6969 CORE_ADDR from
= dsc
->insn_addr
;
6970 int rn
= bits (insn1
, 0, 2);
6971 int rn_val
= displaced_read_reg (regs
, dsc
, rn
);
6973 dsc
->u
.branch
.cond
= (rn_val
&& non_zero
) || (!rn_val
&& !non_zero
);
6974 /* CBNZ and CBZ do not affect the condition flags. If condition is true,
6975 set it INST_AL, so cleanup_branch will know branch is taken, otherwise,
6976 condition is false, let it be, cleanup_branch will do nothing. */
6977 if (dsc
->u
.branch
.cond
)
6979 dsc
->u
.branch
.cond
= INST_AL
;
6980 dsc
->u
.branch
.dest
= from
+ 4 + imm5
;
6983 dsc
->u
.branch
.dest
= from
+ 2;
6985 dsc
->u
.branch
.link
= 0;
6986 dsc
->u
.branch
.exchange
= 0;
6988 if (debug_displaced
)
6989 fprintf_unfiltered (gdb_stdlog
, "displaced: copying %s [r%d = 0x%x]"
6990 " insn %.4x to %.8lx\n", non_zero
? "cbnz" : "cbz",
6991 rn
, rn_val
, insn1
, dsc
->u
.branch
.dest
);
6993 dsc
->modinsn
[0] = THUMB_NOP
;
6995 dsc
->cleanup
= &cleanup_branch
;
6999 /* Copy Table Branch Byte/Halfword */
7001 thumb2_copy_table_branch (struct gdbarch
*gdbarch
, uint16_t insn1
,
7002 uint16_t insn2
, struct regcache
*regs
,
7003 arm_displaced_step_closure
*dsc
)
7005 ULONGEST rn_val
, rm_val
;
7006 int is_tbh
= bit (insn2
, 4);
7007 CORE_ADDR halfwords
= 0;
7008 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
7010 rn_val
= displaced_read_reg (regs
, dsc
, bits (insn1
, 0, 3));
7011 rm_val
= displaced_read_reg (regs
, dsc
, bits (insn2
, 0, 3));
7017 target_read_memory (rn_val
+ 2 * rm_val
, buf
, 2);
7018 halfwords
= extract_unsigned_integer (buf
, 2, byte_order
);
7024 target_read_memory (rn_val
+ rm_val
, buf
, 1);
7025 halfwords
= extract_unsigned_integer (buf
, 1, byte_order
);
7028 if (debug_displaced
)
7029 fprintf_unfiltered (gdb_stdlog
, "displaced: %s base 0x%x offset 0x%x"
7030 " offset 0x%x\n", is_tbh
? "tbh" : "tbb",
7031 (unsigned int) rn_val
, (unsigned int) rm_val
,
7032 (unsigned int) halfwords
);
7034 dsc
->u
.branch
.cond
= INST_AL
;
7035 dsc
->u
.branch
.link
= 0;
7036 dsc
->u
.branch
.exchange
= 0;
7037 dsc
->u
.branch
.dest
= dsc
->insn_addr
+ 4 + 2 * halfwords
;
7039 dsc
->cleanup
= &cleanup_branch
;
7045 cleanup_pop_pc_16bit_all (struct gdbarch
*gdbarch
, struct regcache
*regs
,
7046 arm_displaced_step_closure
*dsc
)
7049 int val
= displaced_read_reg (regs
, dsc
, 7);
7050 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, val
, BX_WRITE_PC
);
7053 val
= displaced_read_reg (regs
, dsc
, 8);
7054 displaced_write_reg (regs
, dsc
, 7, val
, CANNOT_WRITE_PC
);
7057 displaced_write_reg (regs
, dsc
, 8, dsc
->tmp
[0], CANNOT_WRITE_PC
);
7062 thumb_copy_pop_pc_16bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
7063 struct regcache
*regs
,
7064 arm_displaced_step_closure
*dsc
)
7066 dsc
->u
.block
.regmask
= insn1
& 0x00ff;
7068 /* Rewrite instruction: POP {rX, rY, ...,rZ, PC}
7071 (1) register list is full, that is, r0-r7 are used.
7072 Prepare: tmp[0] <- r8
7074 POP {r0, r1, ...., r6, r7}; remove PC from reglist
7075 MOV r8, r7; Move value of r7 to r8;
7076 POP {r7}; Store PC value into r7.
7078 Cleanup: PC <- r7, r7 <- r8, r8 <-tmp[0]
7080 (2) register list is not full, supposing there are N registers in
7081 register list (except PC, 0 <= N <= 7).
7082 Prepare: for each i, 0 - N, tmp[i] <- ri.
7084 POP {r0, r1, ...., rN};
7086 Cleanup: Set registers in original reglist from r0 - rN. Restore r0 - rN
7087 from tmp[] properly.
7089 if (debug_displaced
)
7090 fprintf_unfiltered (gdb_stdlog
,
7091 "displaced: copying thumb pop {%.8x, pc} insn %.4x\n",
7092 dsc
->u
.block
.regmask
, insn1
);
7094 if (dsc
->u
.block
.regmask
== 0xff)
7096 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 8);
7098 dsc
->modinsn
[0] = (insn1
& 0xfeff); /* POP {r0,r1,...,r6, r7} */
7099 dsc
->modinsn
[1] = 0x46b8; /* MOV r8, r7 */
7100 dsc
->modinsn
[2] = 0xbc80; /* POP {r7} */
7103 dsc
->cleanup
= &cleanup_pop_pc_16bit_all
;
7107 unsigned int num_in_list
= count_one_bits (dsc
->u
.block
.regmask
);
7109 unsigned int new_regmask
;
7111 for (i
= 0; i
< num_in_list
+ 1; i
++)
7112 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
7114 new_regmask
= (1 << (num_in_list
+ 1)) - 1;
7116 if (debug_displaced
)
7117 fprintf_unfiltered (gdb_stdlog
, _("displaced: POP "
7118 "{..., pc}: original reg list %.4x,"
7119 " modified list %.4x\n"),
7120 (int) dsc
->u
.block
.regmask
, new_regmask
);
7122 dsc
->u
.block
.regmask
|= 0x8000;
7123 dsc
->u
.block
.writeback
= 0;
7124 dsc
->u
.block
.cond
= INST_AL
;
7126 dsc
->modinsn
[0] = (insn1
& ~0x1ff) | (new_regmask
& 0xff);
7128 dsc
->cleanup
= &cleanup_block_load_pc
;
7135 thumb_process_displaced_16bit_insn (struct gdbarch
*gdbarch
, uint16_t insn1
,
7136 struct regcache
*regs
,
7137 arm_displaced_step_closure
*dsc
)
7139 unsigned short op_bit_12_15
= bits (insn1
, 12, 15);
7140 unsigned short op_bit_10_11
= bits (insn1
, 10, 11);
7143 /* 16-bit thumb instructions. */
7144 switch (op_bit_12_15
)
7146 /* Shift (imme), add, subtract, move and compare. */
7147 case 0: case 1: case 2: case 3:
7148 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
,
7149 "shift/add/sub/mov/cmp",
7153 switch (op_bit_10_11
)
7155 case 0: /* Data-processing */
7156 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
,
7160 case 1: /* Special data instructions and branch and exchange. */
7162 unsigned short op
= bits (insn1
, 7, 9);
7163 if (op
== 6 || op
== 7) /* BX or BLX */
7164 err
= thumb_copy_bx_blx_reg (gdbarch
, insn1
, regs
, dsc
);
7165 else if (bits (insn1
, 6, 7) != 0) /* ADD/MOV/CMP high registers. */
7166 err
= thumb_copy_alu_reg (gdbarch
, insn1
, regs
, dsc
);
7168 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "special data",
7172 default: /* LDR (literal) */
7173 err
= thumb_copy_16bit_ldr_literal (gdbarch
, insn1
, regs
, dsc
);
7176 case 5: case 6: case 7: case 8: case 9: /* Load/Store single data item */
7177 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "ldr/str", dsc
);
7180 if (op_bit_10_11
< 2) /* Generate PC-relative address */
7181 err
= thumb_decode_pc_relative_16bit (gdbarch
, insn1
, regs
, dsc
);
7182 else /* Generate SP-relative address */
7183 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "sp-relative", dsc
);
7185 case 11: /* Misc 16-bit instructions */
7187 switch (bits (insn1
, 8, 11))
7189 case 1: case 3: case 9: case 11: /* CBNZ, CBZ */
7190 err
= thumb_copy_cbnz_cbz (gdbarch
, insn1
, regs
, dsc
);
7192 case 12: case 13: /* POP */
7193 if (bit (insn1
, 8)) /* PC is in register list. */
7194 err
= thumb_copy_pop_pc_16bit (gdbarch
, insn1
, regs
, dsc
);
7196 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "pop", dsc
);
7198 case 15: /* If-Then, and hints */
7199 if (bits (insn1
, 0, 3))
7200 /* If-Then makes up to four following instructions conditional.
7201 IT instruction itself is not conditional, so handle it as a
7202 common unmodified instruction. */
7203 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "If-Then",
7206 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "hints", dsc
);
7209 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "misc", dsc
);
7214 if (op_bit_10_11
< 2) /* Store multiple registers */
7215 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "stm", dsc
);
7216 else /* Load multiple registers */
7217 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "ldm", dsc
);
7219 case 13: /* Conditional branch and supervisor call */
7220 if (bits (insn1
, 9, 11) != 7) /* conditional branch */
7221 err
= thumb_copy_b (gdbarch
, insn1
, dsc
);
7223 err
= thumb_copy_svc (gdbarch
, insn1
, regs
, dsc
);
7225 case 14: /* Unconditional branch */
7226 err
= thumb_copy_b (gdbarch
, insn1
, dsc
);
7233 internal_error (__FILE__
, __LINE__
,
7234 _("thumb_process_displaced_16bit_insn: Instruction decode error"));
7238 decode_thumb_32bit_ld_mem_hints (struct gdbarch
*gdbarch
,
7239 uint16_t insn1
, uint16_t insn2
,
7240 struct regcache
*regs
,
7241 arm_displaced_step_closure
*dsc
)
7243 int rt
= bits (insn2
, 12, 15);
7244 int rn
= bits (insn1
, 0, 3);
7245 int op1
= bits (insn1
, 7, 8);
7247 switch (bits (insn1
, 5, 6))
7249 case 0: /* Load byte and memory hints */
7250 if (rt
== 0xf) /* PLD/PLI */
7253 /* PLD literal or Encoding T3 of PLI(immediate, literal). */
7254 return thumb2_copy_preload (gdbarch
, insn1
, insn2
, regs
, dsc
);
7256 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7261 if (rn
== 0xf) /* LDRB/LDRSB (literal) */
7262 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
,
7265 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7266 "ldrb{reg, immediate}/ldrbt",
7271 case 1: /* Load halfword and memory hints. */
7272 if (rt
== 0xf) /* PLD{W} and Unalloc memory hint. */
7273 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7274 "pld/unalloc memhint", dsc
);
7278 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
,
7281 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7285 case 2: /* Load word */
7287 int insn2_bit_8_11
= bits (insn2
, 8, 11);
7290 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
, 4);
7291 else if (op1
== 0x1) /* Encoding T3 */
7292 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
, dsc
,
7294 else /* op1 == 0x0 */
7296 if (insn2_bit_8_11
== 0xc || (insn2_bit_8_11
& 0x9) == 0x9)
7297 /* LDR (immediate) */
7298 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
,
7299 dsc
, bit (insn2
, 8), 1);
7300 else if (insn2_bit_8_11
== 0xe) /* LDRT */
7301 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7304 /* LDR (register) */
7305 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
,
7311 return thumb_32bit_copy_undef (gdbarch
, insn1
, insn2
, dsc
);
7318 thumb_process_displaced_32bit_insn (struct gdbarch
*gdbarch
, uint16_t insn1
,
7319 uint16_t insn2
, struct regcache
*regs
,
7320 arm_displaced_step_closure
*dsc
)
7323 unsigned short op
= bit (insn2
, 15);
7324 unsigned int op1
= bits (insn1
, 11, 12);
7330 switch (bits (insn1
, 9, 10))
7335 /* Load/store {dual, exclusive}, table branch. */
7336 if (bits (insn1
, 7, 8) == 1 && bits (insn1
, 4, 5) == 1
7337 && bits (insn2
, 5, 7) == 0)
7338 err
= thumb2_copy_table_branch (gdbarch
, insn1
, insn2
, regs
,
7341 /* PC is not allowed to use in load/store {dual, exclusive}
7343 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7344 "load/store dual/ex", dsc
);
7346 else /* load/store multiple */
7348 switch (bits (insn1
, 7, 8))
7350 case 0: case 3: /* SRS, RFE */
7351 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7354 case 1: case 2: /* LDM/STM/PUSH/POP */
7355 err
= thumb2_copy_block_xfer (gdbarch
, insn1
, insn2
, regs
, dsc
);
7362 /* Data-processing (shift register). */
7363 err
= thumb2_decode_dp_shift_reg (gdbarch
, insn1
, insn2
, regs
,
7366 default: /* Coprocessor instructions. */
7367 err
= thumb2_decode_svc_copro (gdbarch
, insn1
, insn2
, regs
, dsc
);
7372 case 2: /* op1 = 2 */
7373 if (op
) /* Branch and misc control. */
7375 if (bit (insn2
, 14) /* BLX/BL */
7376 || bit (insn2
, 12) /* Unconditional branch */
7377 || (bits (insn1
, 7, 9) != 0x7)) /* Conditional branch */
7378 err
= thumb2_copy_b_bl_blx (gdbarch
, insn1
, insn2
, regs
, dsc
);
7380 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7385 if (bit (insn1
, 9)) /* Data processing (plain binary imm). */
7387 int dp_op
= bits (insn1
, 4, 8);
7388 int rn
= bits (insn1
, 0, 3);
7389 if ((dp_op
== 0 || dp_op
== 0xa) && rn
== 0xf)
7390 err
= thumb_copy_pc_relative_32bit (gdbarch
, insn1
, insn2
,
7393 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7396 else /* Data processing (modified immediate) */
7397 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7401 case 3: /* op1 = 3 */
7402 switch (bits (insn1
, 9, 10))
7406 err
= decode_thumb_32bit_ld_mem_hints (gdbarch
, insn1
, insn2
,
7408 else /* NEON Load/Store and Store single data item */
7409 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7410 "neon elt/struct load/store",
7413 case 1: /* op1 = 3, bits (9, 10) == 1 */
7414 switch (bits (insn1
, 7, 8))
7416 case 0: case 1: /* Data processing (register) */
7417 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7420 case 2: /* Multiply and absolute difference */
7421 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7422 "mul/mua/diff", dsc
);
7424 case 3: /* Long multiply and divide */
7425 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7430 default: /* Coprocessor instructions */
7431 err
= thumb2_decode_svc_copro (gdbarch
, insn1
, insn2
, regs
, dsc
);
7440 internal_error (__FILE__
, __LINE__
,
7441 _("thumb_process_displaced_32bit_insn: Instruction decode error"));
7446 thumb_process_displaced_insn (struct gdbarch
*gdbarch
, CORE_ADDR from
,
7447 struct regcache
*regs
,
7448 arm_displaced_step_closure
*dsc
)
7450 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
7452 = read_memory_unsigned_integer (from
, 2, byte_order_for_code
);
7454 if (debug_displaced
)
7455 fprintf_unfiltered (gdb_stdlog
, "displaced: process thumb insn %.4x "
7456 "at %.8lx\n", insn1
, (unsigned long) from
);
7459 dsc
->insn_size
= thumb_insn_size (insn1
);
7460 if (thumb_insn_size (insn1
) == 4)
7463 = read_memory_unsigned_integer (from
+ 2, 2, byte_order_for_code
);
7464 thumb_process_displaced_32bit_insn (gdbarch
, insn1
, insn2
, regs
, dsc
);
7467 thumb_process_displaced_16bit_insn (gdbarch
, insn1
, regs
, dsc
);
7471 arm_process_displaced_insn (struct gdbarch
*gdbarch
, CORE_ADDR from
,
7472 CORE_ADDR to
, struct regcache
*regs
,
7473 arm_displaced_step_closure
*dsc
)
7476 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
7479 /* Most displaced instructions use a 1-instruction scratch space, so set this
7480 here and override below if/when necessary. */
7482 dsc
->insn_addr
= from
;
7483 dsc
->scratch_base
= to
;
7484 dsc
->cleanup
= NULL
;
7485 dsc
->wrote_to_pc
= 0;
7487 if (!displaced_in_arm_mode (regs
))
7488 return thumb_process_displaced_insn (gdbarch
, from
, regs
, dsc
);
7492 insn
= read_memory_unsigned_integer (from
, 4, byte_order_for_code
);
7493 if (debug_displaced
)
7494 fprintf_unfiltered (gdb_stdlog
, "displaced: stepping insn %.8lx "
7495 "at %.8lx\n", (unsigned long) insn
,
7496 (unsigned long) from
);
7498 if ((insn
& 0xf0000000) == 0xf0000000)
7499 err
= arm_decode_unconditional (gdbarch
, insn
, regs
, dsc
);
7500 else switch (((insn
& 0x10) >> 4) | ((insn
& 0xe000000) >> 24))
7502 case 0x0: case 0x1: case 0x2: case 0x3:
7503 err
= arm_decode_dp_misc (gdbarch
, insn
, regs
, dsc
);
7506 case 0x4: case 0x5: case 0x6:
7507 err
= arm_decode_ld_st_word_ubyte (gdbarch
, insn
, regs
, dsc
);
7511 err
= arm_decode_media (gdbarch
, insn
, dsc
);
7514 case 0x8: case 0x9: case 0xa: case 0xb:
7515 err
= arm_decode_b_bl_ldmstm (gdbarch
, insn
, regs
, dsc
);
7518 case 0xc: case 0xd: case 0xe: case 0xf:
7519 err
= arm_decode_svc_copro (gdbarch
, insn
, regs
, dsc
);
7524 internal_error (__FILE__
, __LINE__
,
7525 _("arm_process_displaced_insn: Instruction decode error"));
7528 /* Actually set up the scratch space for a displaced instruction. */
7531 arm_displaced_init_closure (struct gdbarch
*gdbarch
, CORE_ADDR from
,
7532 CORE_ADDR to
, arm_displaced_step_closure
*dsc
)
7534 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
7535 unsigned int i
, len
, offset
;
7536 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
7537 int size
= dsc
->is_thumb
? 2 : 4;
7538 const gdb_byte
*bkp_insn
;
7541 /* Poke modified instruction(s). */
7542 for (i
= 0; i
< dsc
->numinsns
; i
++)
7544 if (debug_displaced
)
7546 fprintf_unfiltered (gdb_stdlog
, "displaced: writing insn ");
7548 fprintf_unfiltered (gdb_stdlog
, "%.8lx",
7551 fprintf_unfiltered (gdb_stdlog
, "%.4x",
7552 (unsigned short)dsc
->modinsn
[i
]);
7554 fprintf_unfiltered (gdb_stdlog
, " at %.8lx\n",
7555 (unsigned long) to
+ offset
);
7558 write_memory_unsigned_integer (to
+ offset
, size
,
7559 byte_order_for_code
,
7564 /* Choose the correct breakpoint instruction. */
7567 bkp_insn
= tdep
->thumb_breakpoint
;
7568 len
= tdep
->thumb_breakpoint_size
;
7572 bkp_insn
= tdep
->arm_breakpoint
;
7573 len
= tdep
->arm_breakpoint_size
;
7576 /* Put breakpoint afterwards. */
7577 write_memory (to
+ offset
, bkp_insn
, len
);
7579 if (debug_displaced
)
7580 fprintf_unfiltered (gdb_stdlog
, "displaced: copy %s->%s: ",
7581 paddress (gdbarch
, from
), paddress (gdbarch
, to
));
7584 /* Entry point for cleaning things up after a displaced instruction has been
7588 arm_displaced_step_fixup (struct gdbarch
*gdbarch
,
7589 struct displaced_step_closure
*dsc_
,
7590 CORE_ADDR from
, CORE_ADDR to
,
7591 struct regcache
*regs
)
7593 arm_displaced_step_closure
*dsc
= (arm_displaced_step_closure
*) dsc_
;
7596 dsc
->cleanup (gdbarch
, regs
, dsc
);
7598 if (!dsc
->wrote_to_pc
)
7599 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
7600 dsc
->insn_addr
+ dsc
->insn_size
);
7604 #include "bfd-in2.h"
7605 #include "libcoff.h"
7608 gdb_print_insn_arm (bfd_vma memaddr
, disassemble_info
*info
)
7610 gdb_disassembler
*di
7611 = static_cast<gdb_disassembler
*>(info
->application_data
);
7612 struct gdbarch
*gdbarch
= di
->arch ();
7614 if (arm_pc_is_thumb (gdbarch
, memaddr
))
7616 static asymbol
*asym
;
7617 static combined_entry_type ce
;
7618 static struct coff_symbol_struct csym
;
7619 static struct bfd fake_bfd
;
7620 static bfd_target fake_target
;
7622 if (csym
.native
== NULL
)
7624 /* Create a fake symbol vector containing a Thumb symbol.
7625 This is solely so that the code in print_insn_little_arm()
7626 and print_insn_big_arm() in opcodes/arm-dis.c will detect
7627 the presence of a Thumb symbol and switch to decoding
7628 Thumb instructions. */
7630 fake_target
.flavour
= bfd_target_coff_flavour
;
7631 fake_bfd
.xvec
= &fake_target
;
7632 ce
.u
.syment
.n_sclass
= C_THUMBEXTFUNC
;
7634 csym
.symbol
.the_bfd
= &fake_bfd
;
7635 csym
.symbol
.name
= "fake";
7636 asym
= (asymbol
*) & csym
;
7639 memaddr
= UNMAKE_THUMB_ADDR (memaddr
);
7640 info
->symbols
= &asym
;
7643 info
->symbols
= NULL
;
7645 /* GDB is able to get bfd_mach from the exe_bfd, info->mach is
7646 accurate, so mark USER_SPECIFIED_MACHINE_TYPE bit. Otherwise,
7647 opcodes/arm-dis.c:print_insn reset info->mach, and it will trigger
7648 the assert on the mismatch of info->mach and bfd_get_mach (exec_bfd)
7649 in default_print_insn. */
7650 if (exec_bfd
!= NULL
)
7651 info
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
7653 return default_print_insn (memaddr
, info
);
7656 /* The following define instruction sequences that will cause ARM
7657 cpu's to take an undefined instruction trap. These are used to
7658 signal a breakpoint to GDB.
7660 The newer ARMv4T cpu's are capable of operating in ARM or Thumb
7661 modes. A different instruction is required for each mode. The ARM
7662 cpu's can also be big or little endian. Thus four different
7663 instructions are needed to support all cases.
7665 Note: ARMv4 defines several new instructions that will take the
7666 undefined instruction trap. ARM7TDMI is nominally ARMv4T, but does
7667 not in fact add the new instructions. The new undefined
7668 instructions in ARMv4 are all instructions that had no defined
7669 behaviour in earlier chips. There is no guarantee that they will
7670 raise an exception, but may be treated as NOP's. In practice, it
7671 may only safe to rely on instructions matching:
7673 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
7674 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
7675 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
7677 Even this may only true if the condition predicate is true. The
7678 following use a condition predicate of ALWAYS so it is always TRUE.
7680 There are other ways of forcing a breakpoint. GNU/Linux, RISC iX,
7681 and NetBSD all use a software interrupt rather than an undefined
7682 instruction to force a trap. This can be handled by by the
7683 abi-specific code during establishment of the gdbarch vector. */
7685 #define ARM_LE_BREAKPOINT {0xFE,0xDE,0xFF,0xE7}
7686 #define ARM_BE_BREAKPOINT {0xE7,0xFF,0xDE,0xFE}
7687 #define THUMB_LE_BREAKPOINT {0xbe,0xbe}
7688 #define THUMB_BE_BREAKPOINT {0xbe,0xbe}
7690 static const gdb_byte arm_default_arm_le_breakpoint
[] = ARM_LE_BREAKPOINT
;
7691 static const gdb_byte arm_default_arm_be_breakpoint
[] = ARM_BE_BREAKPOINT
;
7692 static const gdb_byte arm_default_thumb_le_breakpoint
[] = THUMB_LE_BREAKPOINT
;
7693 static const gdb_byte arm_default_thumb_be_breakpoint
[] = THUMB_BE_BREAKPOINT
;
7695 /* Implement the breakpoint_kind_from_pc gdbarch method. */
7698 arm_breakpoint_kind_from_pc (struct gdbarch
*gdbarch
, CORE_ADDR
*pcptr
)
7700 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
7701 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
7703 if (arm_pc_is_thumb (gdbarch
, *pcptr
))
7705 *pcptr
= UNMAKE_THUMB_ADDR (*pcptr
);
7707 /* If we have a separate 32-bit breakpoint instruction for Thumb-2,
7708 check whether we are replacing a 32-bit instruction. */
7709 if (tdep
->thumb2_breakpoint
!= NULL
)
7713 if (target_read_memory (*pcptr
, buf
, 2) == 0)
7715 unsigned short inst1
;
7717 inst1
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
7718 if (thumb_insn_size (inst1
) == 4)
7719 return ARM_BP_KIND_THUMB2
;
7723 return ARM_BP_KIND_THUMB
;
7726 return ARM_BP_KIND_ARM
;
7730 /* Implement the sw_breakpoint_from_kind gdbarch method. */
7732 static const gdb_byte
*
7733 arm_sw_breakpoint_from_kind (struct gdbarch
*gdbarch
, int kind
, int *size
)
7735 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
7739 case ARM_BP_KIND_ARM
:
7740 *size
= tdep
->arm_breakpoint_size
;
7741 return tdep
->arm_breakpoint
;
7742 case ARM_BP_KIND_THUMB
:
7743 *size
= tdep
->thumb_breakpoint_size
;
7744 return tdep
->thumb_breakpoint
;
7745 case ARM_BP_KIND_THUMB2
:
7746 *size
= tdep
->thumb2_breakpoint_size
;
7747 return tdep
->thumb2_breakpoint
;
7749 gdb_assert_not_reached ("unexpected arm breakpoint kind");
7753 /* Implement the breakpoint_kind_from_current_state gdbarch method. */
7756 arm_breakpoint_kind_from_current_state (struct gdbarch
*gdbarch
,
7757 struct regcache
*regcache
,
7762 /* Check the memory pointed by PC is readable. */
7763 if (target_read_memory (regcache_read_pc (regcache
), buf
, 4) == 0)
7765 struct arm_get_next_pcs next_pcs_ctx
;
7767 arm_get_next_pcs_ctor (&next_pcs_ctx
,
7768 &arm_get_next_pcs_ops
,
7769 gdbarch_byte_order (gdbarch
),
7770 gdbarch_byte_order_for_code (gdbarch
),
7774 std::vector
<CORE_ADDR
> next_pcs
= arm_get_next_pcs (&next_pcs_ctx
);
7776 /* If MEMADDR is the next instruction of current pc, do the
7777 software single step computation, and get the thumb mode by
7778 the destination address. */
7779 for (CORE_ADDR pc
: next_pcs
)
7781 if (UNMAKE_THUMB_ADDR (pc
) == *pcptr
)
7783 if (IS_THUMB_ADDR (pc
))
7785 *pcptr
= MAKE_THUMB_ADDR (*pcptr
);
7786 return arm_breakpoint_kind_from_pc (gdbarch
, pcptr
);
7789 return ARM_BP_KIND_ARM
;
7794 return arm_breakpoint_kind_from_pc (gdbarch
, pcptr
);
7797 /* Extract from an array REGBUF containing the (raw) register state a
7798 function return value of type TYPE, and copy that, in virtual
7799 format, into VALBUF. */
7802 arm_extract_return_value (struct type
*type
, struct regcache
*regs
,
7805 struct gdbarch
*gdbarch
= regs
->arch ();
7806 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
7808 if (TYPE_CODE_FLT
== TYPE_CODE (type
))
7810 switch (gdbarch_tdep (gdbarch
)->fp_model
)
7814 /* The value is in register F0 in internal format. We need to
7815 extract the raw value and then convert it to the desired
7817 bfd_byte tmpbuf
[ARM_FP_REGISTER_SIZE
];
7819 regs
->cooked_read (ARM_F0_REGNUM
, tmpbuf
);
7820 target_float_convert (tmpbuf
, arm_ext_type (gdbarch
),
7825 case ARM_FLOAT_SOFT_FPA
:
7826 case ARM_FLOAT_SOFT_VFP
:
7827 /* ARM_FLOAT_VFP can arise if this is a variadic function so
7828 not using the VFP ABI code. */
7830 regs
->cooked_read (ARM_A1_REGNUM
, valbuf
);
7831 if (TYPE_LENGTH (type
) > 4)
7832 regs
->cooked_read (ARM_A1_REGNUM
+ 1,
7833 valbuf
+ ARM_INT_REGISTER_SIZE
);
7837 internal_error (__FILE__
, __LINE__
,
7838 _("arm_extract_return_value: "
7839 "Floating point model not supported"));
7843 else if (TYPE_CODE (type
) == TYPE_CODE_INT
7844 || TYPE_CODE (type
) == TYPE_CODE_CHAR
7845 || TYPE_CODE (type
) == TYPE_CODE_BOOL
7846 || TYPE_CODE (type
) == TYPE_CODE_PTR
7847 || TYPE_IS_REFERENCE (type
)
7848 || TYPE_CODE (type
) == TYPE_CODE_ENUM
)
7850 /* If the type is a plain integer, then the access is
7851 straight-forward. Otherwise we have to play around a bit
7853 int len
= TYPE_LENGTH (type
);
7854 int regno
= ARM_A1_REGNUM
;
7859 /* By using store_unsigned_integer we avoid having to do
7860 anything special for small big-endian values. */
7861 regcache_cooked_read_unsigned (regs
, regno
++, &tmp
);
7862 store_unsigned_integer (valbuf
,
7863 (len
> ARM_INT_REGISTER_SIZE
7864 ? ARM_INT_REGISTER_SIZE
: len
),
7866 len
-= ARM_INT_REGISTER_SIZE
;
7867 valbuf
+= ARM_INT_REGISTER_SIZE
;
7872 /* For a structure or union the behaviour is as if the value had
7873 been stored to word-aligned memory and then loaded into
7874 registers with 32-bit load instruction(s). */
7875 int len
= TYPE_LENGTH (type
);
7876 int regno
= ARM_A1_REGNUM
;
7877 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
7881 regs
->cooked_read (regno
++, tmpbuf
);
7882 memcpy (valbuf
, tmpbuf
,
7883 len
> ARM_INT_REGISTER_SIZE
? ARM_INT_REGISTER_SIZE
: len
);
7884 len
-= ARM_INT_REGISTER_SIZE
;
7885 valbuf
+= ARM_INT_REGISTER_SIZE
;
7891 /* Will a function return an aggregate type in memory or in a
7892 register? Return 0 if an aggregate type can be returned in a
7893 register, 1 if it must be returned in memory. */
7896 arm_return_in_memory (struct gdbarch
*gdbarch
, struct type
*type
)
7898 enum type_code code
;
7900 type
= check_typedef (type
);
7902 /* Simple, non-aggregate types (ie not including vectors and
7903 complex) are always returned in a register (or registers). */
7904 code
= TYPE_CODE (type
);
7905 if (TYPE_CODE_STRUCT
!= code
&& TYPE_CODE_UNION
!= code
7906 && TYPE_CODE_ARRAY
!= code
&& TYPE_CODE_COMPLEX
!= code
)
7909 if (TYPE_CODE_ARRAY
== code
&& TYPE_VECTOR (type
))
7911 /* Vector values should be returned using ARM registers if they
7912 are not over 16 bytes. */
7913 return (TYPE_LENGTH (type
) > 16);
7916 if (gdbarch_tdep (gdbarch
)->arm_abi
!= ARM_ABI_APCS
)
7918 /* The AAPCS says all aggregates not larger than a word are returned
7920 if (TYPE_LENGTH (type
) <= ARM_INT_REGISTER_SIZE
)
7929 /* All aggregate types that won't fit in a register must be returned
7931 if (TYPE_LENGTH (type
) > ARM_INT_REGISTER_SIZE
)
7934 /* In the ARM ABI, "integer" like aggregate types are returned in
7935 registers. For an aggregate type to be integer like, its size
7936 must be less than or equal to ARM_INT_REGISTER_SIZE and the
7937 offset of each addressable subfield must be zero. Note that bit
7938 fields are not addressable, and all addressable subfields of
7939 unions always start at offset zero.
7941 This function is based on the behaviour of GCC 2.95.1.
7942 See: gcc/arm.c: arm_return_in_memory() for details.
7944 Note: All versions of GCC before GCC 2.95.2 do not set up the
7945 parameters correctly for a function returning the following
7946 structure: struct { float f;}; This should be returned in memory,
7947 not a register. Richard Earnshaw sent me a patch, but I do not
7948 know of any way to detect if a function like the above has been
7949 compiled with the correct calling convention. */
7951 /* Assume all other aggregate types can be returned in a register.
7952 Run a check for structures, unions and arrays. */
7955 if ((TYPE_CODE_STRUCT
== code
) || (TYPE_CODE_UNION
== code
))
7958 /* Need to check if this struct/union is "integer" like. For
7959 this to be true, its size must be less than or equal to
7960 ARM_INT_REGISTER_SIZE and the offset of each addressable
7961 subfield must be zero. Note that bit fields are not
7962 addressable, and unions always start at offset zero. If any
7963 of the subfields is a floating point type, the struct/union
7964 cannot be an integer type. */
7966 /* For each field in the object, check:
7967 1) Is it FP? --> yes, nRc = 1;
7968 2) Is it addressable (bitpos != 0) and
7969 not packed (bitsize == 0)?
7973 for (i
= 0; i
< TYPE_NFIELDS (type
); i
++)
7975 enum type_code field_type_code
;
7978 = TYPE_CODE (check_typedef (TYPE_FIELD_TYPE (type
,
7981 /* Is it a floating point type field? */
7982 if (field_type_code
== TYPE_CODE_FLT
)
7988 /* If bitpos != 0, then we have to care about it. */
7989 if (TYPE_FIELD_BITPOS (type
, i
) != 0)
7991 /* Bitfields are not addressable. If the field bitsize is
7992 zero, then the field is not packed. Hence it cannot be
7993 a bitfield or any other packed type. */
7994 if (TYPE_FIELD_BITSIZE (type
, i
) == 0)
8007 /* Write into appropriate registers a function return value of type
8008 TYPE, given in virtual format. */
8011 arm_store_return_value (struct type
*type
, struct regcache
*regs
,
8012 const gdb_byte
*valbuf
)
8014 struct gdbarch
*gdbarch
= regs
->arch ();
8015 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
8017 if (TYPE_CODE (type
) == TYPE_CODE_FLT
)
8019 gdb_byte buf
[ARM_FP_REGISTER_SIZE
];
8021 switch (gdbarch_tdep (gdbarch
)->fp_model
)
8025 target_float_convert (valbuf
, type
, buf
, arm_ext_type (gdbarch
));
8026 regs
->cooked_write (ARM_F0_REGNUM
, buf
);
8029 case ARM_FLOAT_SOFT_FPA
:
8030 case ARM_FLOAT_SOFT_VFP
:
8031 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8032 not using the VFP ABI code. */
8034 regs
->cooked_write (ARM_A1_REGNUM
, valbuf
);
8035 if (TYPE_LENGTH (type
) > 4)
8036 regs
->cooked_write (ARM_A1_REGNUM
+ 1,
8037 valbuf
+ ARM_INT_REGISTER_SIZE
);
8041 internal_error (__FILE__
, __LINE__
,
8042 _("arm_store_return_value: Floating "
8043 "point model not supported"));
8047 else if (TYPE_CODE (type
) == TYPE_CODE_INT
8048 || TYPE_CODE (type
) == TYPE_CODE_CHAR
8049 || TYPE_CODE (type
) == TYPE_CODE_BOOL
8050 || TYPE_CODE (type
) == TYPE_CODE_PTR
8051 || TYPE_IS_REFERENCE (type
)
8052 || TYPE_CODE (type
) == TYPE_CODE_ENUM
)
8054 if (TYPE_LENGTH (type
) <= 4)
8056 /* Values of one word or less are zero/sign-extended and
8058 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
8059 LONGEST val
= unpack_long (type
, valbuf
);
8061 store_signed_integer (tmpbuf
, ARM_INT_REGISTER_SIZE
, byte_order
, val
);
8062 regs
->cooked_write (ARM_A1_REGNUM
, tmpbuf
);
8066 /* Integral values greater than one word are stored in consecutive
8067 registers starting with r0. This will always be a multiple of
8068 the regiser size. */
8069 int len
= TYPE_LENGTH (type
);
8070 int regno
= ARM_A1_REGNUM
;
8074 regs
->cooked_write (regno
++, valbuf
);
8075 len
-= ARM_INT_REGISTER_SIZE
;
8076 valbuf
+= ARM_INT_REGISTER_SIZE
;
8082 /* For a structure or union the behaviour is as if the value had
8083 been stored to word-aligned memory and then loaded into
8084 registers with 32-bit load instruction(s). */
8085 int len
= TYPE_LENGTH (type
);
8086 int regno
= ARM_A1_REGNUM
;
8087 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
8091 memcpy (tmpbuf
, valbuf
,
8092 len
> ARM_INT_REGISTER_SIZE
? ARM_INT_REGISTER_SIZE
: len
);
8093 regs
->cooked_write (regno
++, tmpbuf
);
8094 len
-= ARM_INT_REGISTER_SIZE
;
8095 valbuf
+= ARM_INT_REGISTER_SIZE
;
8101 /* Handle function return values. */
8103 static enum return_value_convention
8104 arm_return_value (struct gdbarch
*gdbarch
, struct value
*function
,
8105 struct type
*valtype
, struct regcache
*regcache
,
8106 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
8108 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
8109 struct type
*func_type
= function
? value_type (function
) : NULL
;
8110 enum arm_vfp_cprc_base_type vfp_base_type
;
8113 if (arm_vfp_abi_for_function (gdbarch
, func_type
)
8114 && arm_vfp_call_candidate (valtype
, &vfp_base_type
, &vfp_base_count
))
8116 int reg_char
= arm_vfp_cprc_reg_char (vfp_base_type
);
8117 int unit_length
= arm_vfp_cprc_unit_length (vfp_base_type
);
8119 for (i
= 0; i
< vfp_base_count
; i
++)
8121 if (reg_char
== 'q')
8124 arm_neon_quad_write (gdbarch
, regcache
, i
,
8125 writebuf
+ i
* unit_length
);
8128 arm_neon_quad_read (gdbarch
, regcache
, i
,
8129 readbuf
+ i
* unit_length
);
8136 xsnprintf (name_buf
, sizeof (name_buf
), "%c%d", reg_char
, i
);
8137 regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8140 regcache
->cooked_write (regnum
, writebuf
+ i
* unit_length
);
8142 regcache
->cooked_read (regnum
, readbuf
+ i
* unit_length
);
8145 return RETURN_VALUE_REGISTER_CONVENTION
;
8148 if (TYPE_CODE (valtype
) == TYPE_CODE_STRUCT
8149 || TYPE_CODE (valtype
) == TYPE_CODE_UNION
8150 || TYPE_CODE (valtype
) == TYPE_CODE_ARRAY
)
8152 if (tdep
->struct_return
== pcc_struct_return
8153 || arm_return_in_memory (gdbarch
, valtype
))
8154 return RETURN_VALUE_STRUCT_CONVENTION
;
8156 else if (TYPE_CODE (valtype
) == TYPE_CODE_COMPLEX
)
8158 if (arm_return_in_memory (gdbarch
, valtype
))
8159 return RETURN_VALUE_STRUCT_CONVENTION
;
8163 arm_store_return_value (valtype
, regcache
, writebuf
);
8166 arm_extract_return_value (valtype
, regcache
, readbuf
);
8168 return RETURN_VALUE_REGISTER_CONVENTION
;
8173 arm_get_longjmp_target (struct frame_info
*frame
, CORE_ADDR
*pc
)
8175 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
8176 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
8177 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
8179 gdb_byte buf
[ARM_INT_REGISTER_SIZE
];
8181 jb_addr
= get_frame_register_unsigned (frame
, ARM_A1_REGNUM
);
8183 if (target_read_memory (jb_addr
+ tdep
->jb_pc
* tdep
->jb_elt_size
, buf
,
8184 ARM_INT_REGISTER_SIZE
))
8187 *pc
= extract_unsigned_integer (buf
, ARM_INT_REGISTER_SIZE
, byte_order
);
8190 /* A call to cmse secure entry function "foo" at "a" is modified by
8197 b) bl yyyy <__acle_se_foo>
8199 section .gnu.sgstubs:
8201 yyyy: sg // secure gateway
8202 b.w xxxx <__acle_se_foo> // original_branch_dest
8207 When the control at "b", the pc contains "yyyy" (sg address) which is a
8208 trampoline and does not exist in source code. This function returns the
8209 target pc "xxxx". For more details please refer to section 5.4
8210 (Entry functions) and section 3.4.4 (C level development flow of secure code)
8211 of "armv8-m-security-extensions-requirements-on-development-tools-engineering-specification"
8212 document on www.developer.arm.com. */
8215 arm_skip_cmse_entry (CORE_ADDR pc
, const char *name
, struct objfile
*objfile
)
8217 int target_len
= strlen (name
) + strlen ("__acle_se_") + 1;
8218 char *target_name
= (char *) alloca (target_len
);
8219 xsnprintf (target_name
, target_len
, "%s%s", "__acle_se_", name
);
8221 struct bound_minimal_symbol minsym
8222 = lookup_minimal_symbol (target_name
, NULL
, objfile
);
8224 if (minsym
.minsym
!= nullptr)
8225 return BMSYMBOL_VALUE_ADDRESS (minsym
);
8230 /* Return true when SEC points to ".gnu.sgstubs" section. */
8233 arm_is_sgstubs_section (struct obj_section
*sec
)
8235 return (sec
!= nullptr
8236 && sec
->the_bfd_section
!= nullptr
8237 && sec
->the_bfd_section
->name
!= nullptr
8238 && streq (sec
->the_bfd_section
->name
, ".gnu.sgstubs"));
8241 /* Recognize GCC and GNU ld's trampolines. If we are in a trampoline,
8242 return the target PC. Otherwise return 0. */
8245 arm_skip_stub (struct frame_info
*frame
, CORE_ADDR pc
)
8249 CORE_ADDR start_addr
;
8251 /* Find the starting address and name of the function containing the PC. */
8252 if (find_pc_partial_function (pc
, &name
, &start_addr
, NULL
) == 0)
8254 /* Trampoline 'bx reg' doesn't belong to any functions. Do the
8256 start_addr
= arm_skip_bx_reg (frame
, pc
);
8257 if (start_addr
!= 0)
8263 /* If PC is in a Thumb call or return stub, return the address of the
8264 target PC, which is in a register. The thunk functions are called
8265 _call_via_xx, where x is the register name. The possible names
8266 are r0-r9, sl, fp, ip, sp, and lr. ARM RealView has similar
8267 functions, named __ARM_call_via_r[0-7]. */
8268 if (startswith (name
, "_call_via_")
8269 || startswith (name
, "__ARM_call_via_"))
8271 /* Use the name suffix to determine which register contains the
8273 static const char *table
[15] =
8274 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
8275 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
8278 int offset
= strlen (name
) - 2;
8280 for (regno
= 0; regno
<= 14; regno
++)
8281 if (strcmp (&name
[offset
], table
[regno
]) == 0)
8282 return get_frame_register_unsigned (frame
, regno
);
8285 /* GNU ld generates __foo_from_arm or __foo_from_thumb for
8286 non-interworking calls to foo. We could decode the stubs
8287 to find the target but it's easier to use the symbol table. */
8288 namelen
= strlen (name
);
8289 if (name
[0] == '_' && name
[1] == '_'
8290 && ((namelen
> 2 + strlen ("_from_thumb")
8291 && startswith (name
+ namelen
- strlen ("_from_thumb"), "_from_thumb"))
8292 || (namelen
> 2 + strlen ("_from_arm")
8293 && startswith (name
+ namelen
- strlen ("_from_arm"), "_from_arm"))))
8296 int target_len
= namelen
- 2;
8297 struct bound_minimal_symbol minsym
;
8298 struct objfile
*objfile
;
8299 struct obj_section
*sec
;
8301 if (name
[namelen
- 1] == 'b')
8302 target_len
-= strlen ("_from_thumb");
8304 target_len
-= strlen ("_from_arm");
8306 target_name
= (char *) alloca (target_len
+ 1);
8307 memcpy (target_name
, name
+ 2, target_len
);
8308 target_name
[target_len
] = '\0';
8310 sec
= find_pc_section (pc
);
8311 objfile
= (sec
== NULL
) ? NULL
: sec
->objfile
;
8312 minsym
= lookup_minimal_symbol (target_name
, NULL
, objfile
);
8313 if (minsym
.minsym
!= NULL
)
8314 return BMSYMBOL_VALUE_ADDRESS (minsym
);
8319 struct obj_section
*section
= find_pc_section (pc
);
8321 /* Check whether SECTION points to the ".gnu.sgstubs" section. */
8322 if (arm_is_sgstubs_section (section
))
8323 return arm_skip_cmse_entry (pc
, name
, section
->objfile
);
8325 return 0; /* not a stub */
8329 set_arm_command (const char *args
, int from_tty
)
8331 printf_unfiltered (_("\
8332 \"set arm\" must be followed by an apporpriate subcommand.\n"));
8333 help_list (setarmcmdlist
, "set arm ", all_commands
, gdb_stdout
);
8337 show_arm_command (const char *args
, int from_tty
)
8339 cmd_show_list (showarmcmdlist
, from_tty
, "");
8343 arm_update_current_architecture (void)
8345 struct gdbarch_info info
;
8347 /* If the current architecture is not ARM, we have nothing to do. */
8348 if (gdbarch_bfd_arch_info (target_gdbarch ())->arch
!= bfd_arch_arm
)
8351 /* Update the architecture. */
8352 gdbarch_info_init (&info
);
8354 if (!gdbarch_update_p (info
))
8355 internal_error (__FILE__
, __LINE__
, _("could not update architecture"));
8359 set_fp_model_sfunc (const char *args
, int from_tty
,
8360 struct cmd_list_element
*c
)
8364 for (fp_model
= ARM_FLOAT_AUTO
; fp_model
!= ARM_FLOAT_LAST
; fp_model
++)
8365 if (strcmp (current_fp_model
, fp_model_strings
[fp_model
]) == 0)
8367 arm_fp_model
= (enum arm_float_model
) fp_model
;
8371 if (fp_model
== ARM_FLOAT_LAST
)
8372 internal_error (__FILE__
, __LINE__
, _("Invalid fp model accepted: %s."),
8375 arm_update_current_architecture ();
8379 show_fp_model (struct ui_file
*file
, int from_tty
,
8380 struct cmd_list_element
*c
, const char *value
)
8382 struct gdbarch_tdep
*tdep
= gdbarch_tdep (target_gdbarch ());
8384 if (arm_fp_model
== ARM_FLOAT_AUTO
8385 && gdbarch_bfd_arch_info (target_gdbarch ())->arch
== bfd_arch_arm
)
8386 fprintf_filtered (file
, _("\
8387 The current ARM floating point model is \"auto\" (currently \"%s\").\n"),
8388 fp_model_strings
[tdep
->fp_model
]);
8390 fprintf_filtered (file
, _("\
8391 The current ARM floating point model is \"%s\".\n"),
8392 fp_model_strings
[arm_fp_model
]);
8396 arm_set_abi (const char *args
, int from_tty
,
8397 struct cmd_list_element
*c
)
8401 for (arm_abi
= ARM_ABI_AUTO
; arm_abi
!= ARM_ABI_LAST
; arm_abi
++)
8402 if (strcmp (arm_abi_string
, arm_abi_strings
[arm_abi
]) == 0)
8404 arm_abi_global
= (enum arm_abi_kind
) arm_abi
;
8408 if (arm_abi
== ARM_ABI_LAST
)
8409 internal_error (__FILE__
, __LINE__
, _("Invalid ABI accepted: %s."),
8412 arm_update_current_architecture ();
8416 arm_show_abi (struct ui_file
*file
, int from_tty
,
8417 struct cmd_list_element
*c
, const char *value
)
8419 struct gdbarch_tdep
*tdep
= gdbarch_tdep (target_gdbarch ());
8421 if (arm_abi_global
== ARM_ABI_AUTO
8422 && gdbarch_bfd_arch_info (target_gdbarch ())->arch
== bfd_arch_arm
)
8423 fprintf_filtered (file
, _("\
8424 The current ARM ABI is \"auto\" (currently \"%s\").\n"),
8425 arm_abi_strings
[tdep
->arm_abi
]);
8427 fprintf_filtered (file
, _("The current ARM ABI is \"%s\".\n"),
8432 arm_show_fallback_mode (struct ui_file
*file
, int from_tty
,
8433 struct cmd_list_element
*c
, const char *value
)
8435 fprintf_filtered (file
,
8436 _("The current execution mode assumed "
8437 "(when symbols are unavailable) is \"%s\".\n"),
8438 arm_fallback_mode_string
);
8442 arm_show_force_mode (struct ui_file
*file
, int from_tty
,
8443 struct cmd_list_element
*c
, const char *value
)
8445 fprintf_filtered (file
,
8446 _("The current execution mode assumed "
8447 "(even when symbols are available) is \"%s\".\n"),
8448 arm_force_mode_string
);
8451 /* If the user changes the register disassembly style used for info
8452 register and other commands, we have to also switch the style used
8453 in opcodes for disassembly output. This function is run in the "set
8454 arm disassembly" command, and does that. */
8457 set_disassembly_style_sfunc (const char *args
, int from_tty
,
8458 struct cmd_list_element
*c
)
8460 /* Convert the short style name into the long style name (eg, reg-names-*)
8461 before calling the generic set_disassembler_options() function. */
8462 std::string long_name
= std::string ("reg-names-") + disassembly_style
;
8463 set_disassembler_options (&long_name
[0]);
8467 show_disassembly_style_sfunc (struct ui_file
*file
, int from_tty
,
8468 struct cmd_list_element
*c
, const char *value
)
8470 struct gdbarch
*gdbarch
= get_current_arch ();
8471 char *options
= get_disassembler_options (gdbarch
);
8472 const char *style
= "";
8476 FOR_EACH_DISASSEMBLER_OPTION (opt
, options
)
8477 if (CONST_STRNEQ (opt
, "reg-names-"))
8479 style
= &opt
[strlen ("reg-names-")];
8480 len
= strcspn (style
, ",");
8483 fprintf_unfiltered (file
, "The disassembly style is \"%.*s\".\n", len
, style
);
8486 /* Return the ARM register name corresponding to register I. */
8488 arm_register_name (struct gdbarch
*gdbarch
, int i
)
8490 const int num_regs
= gdbarch_num_regs (gdbarch
);
8492 if (gdbarch_tdep (gdbarch
)->have_vfp_pseudos
8493 && i
>= num_regs
&& i
< num_regs
+ 32)
8495 static const char *const vfp_pseudo_names
[] = {
8496 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
8497 "s8", "s9", "s10", "s11", "s12", "s13", "s14", "s15",
8498 "s16", "s17", "s18", "s19", "s20", "s21", "s22", "s23",
8499 "s24", "s25", "s26", "s27", "s28", "s29", "s30", "s31",
8502 return vfp_pseudo_names
[i
- num_regs
];
8505 if (gdbarch_tdep (gdbarch
)->have_neon_pseudos
8506 && i
>= num_regs
+ 32 && i
< num_regs
+ 32 + 16)
8508 static const char *const neon_pseudo_names
[] = {
8509 "q0", "q1", "q2", "q3", "q4", "q5", "q6", "q7",
8510 "q8", "q9", "q10", "q11", "q12", "q13", "q14", "q15",
8513 return neon_pseudo_names
[i
- num_regs
- 32];
8516 if (i
>= ARRAY_SIZE (arm_register_names
))
8517 /* These registers are only supported on targets which supply
8518 an XML description. */
8521 return arm_register_names
[i
];
8524 /* Test whether the coff symbol specific value corresponds to a Thumb
8528 coff_sym_is_thumb (int val
)
8530 return (val
== C_THUMBEXT
8531 || val
== C_THUMBSTAT
8532 || val
== C_THUMBEXTFUNC
8533 || val
== C_THUMBSTATFUNC
8534 || val
== C_THUMBLABEL
);
8537 /* arm_coff_make_msymbol_special()
8538 arm_elf_make_msymbol_special()
8540 These functions test whether the COFF or ELF symbol corresponds to
8541 an address in thumb code, and set a "special" bit in a minimal
8542 symbol to indicate that it does. */
8545 arm_elf_make_msymbol_special(asymbol
*sym
, struct minimal_symbol
*msym
)
8547 elf_symbol_type
*elfsym
= (elf_symbol_type
*) sym
;
8549 if (ARM_GET_SYM_BRANCH_TYPE (elfsym
->internal_elf_sym
.st_target_internal
)
8550 == ST_BRANCH_TO_THUMB
)
8551 MSYMBOL_SET_SPECIAL (msym
);
8555 arm_coff_make_msymbol_special(int val
, struct minimal_symbol
*msym
)
8557 if (coff_sym_is_thumb (val
))
8558 MSYMBOL_SET_SPECIAL (msym
);
8562 arm_record_special_symbol (struct gdbarch
*gdbarch
, struct objfile
*objfile
,
8565 const char *name
= bfd_asymbol_name (sym
);
8566 struct arm_per_bfd
*data
;
8567 struct arm_mapping_symbol new_map_sym
;
8569 gdb_assert (name
[0] == '$');
8570 if (name
[1] != 'a' && name
[1] != 't' && name
[1] != 'd')
8573 data
= arm_bfd_data_key
.get (objfile
->obfd
);
8575 data
= arm_bfd_data_key
.emplace (objfile
->obfd
,
8576 objfile
->obfd
->section_count
);
8577 arm_mapping_symbol_vec
&map
8578 = data
->section_maps
[bfd_asymbol_section (sym
)->index
];
8580 new_map_sym
.value
= sym
->value
;
8581 new_map_sym
.type
= name
[1];
8583 /* Insert at the end, the vector will be sorted on first use. */
8584 map
.push_back (new_map_sym
);
8588 arm_write_pc (struct regcache
*regcache
, CORE_ADDR pc
)
8590 struct gdbarch
*gdbarch
= regcache
->arch ();
8591 regcache_cooked_write_unsigned (regcache
, ARM_PC_REGNUM
, pc
);
8593 /* If necessary, set the T bit. */
8596 ULONGEST val
, t_bit
;
8597 regcache_cooked_read_unsigned (regcache
, ARM_PS_REGNUM
, &val
);
8598 t_bit
= arm_psr_thumb_bit (gdbarch
);
8599 if (arm_pc_is_thumb (gdbarch
, pc
))
8600 regcache_cooked_write_unsigned (regcache
, ARM_PS_REGNUM
,
8603 regcache_cooked_write_unsigned (regcache
, ARM_PS_REGNUM
,
8608 /* Read the contents of a NEON quad register, by reading from two
8609 double registers. This is used to implement the quad pseudo
8610 registers, and for argument passing in case the quad registers are
8611 missing; vectors are passed in quad registers when using the VFP
8612 ABI, even if a NEON unit is not present. REGNUM is the index of
8613 the quad register, in [0, 15]. */
8615 static enum register_status
8616 arm_neon_quad_read (struct gdbarch
*gdbarch
, readable_regcache
*regcache
,
8617 int regnum
, gdb_byte
*buf
)
8620 gdb_byte reg_buf
[8];
8621 int offset
, double_regnum
;
8622 enum register_status status
;
8624 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
<< 1);
8625 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8628 /* d0 is always the least significant half of q0. */
8629 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
8634 status
= regcache
->raw_read (double_regnum
, reg_buf
);
8635 if (status
!= REG_VALID
)
8637 memcpy (buf
+ offset
, reg_buf
, 8);
8639 offset
= 8 - offset
;
8640 status
= regcache
->raw_read (double_regnum
+ 1, reg_buf
);
8641 if (status
!= REG_VALID
)
8643 memcpy (buf
+ offset
, reg_buf
, 8);
8648 static enum register_status
8649 arm_pseudo_read (struct gdbarch
*gdbarch
, readable_regcache
*regcache
,
8650 int regnum
, gdb_byte
*buf
)
8652 const int num_regs
= gdbarch_num_regs (gdbarch
);
8654 gdb_byte reg_buf
[8];
8655 int offset
, double_regnum
;
8657 gdb_assert (regnum
>= num_regs
);
8660 if (gdbarch_tdep (gdbarch
)->have_neon_pseudos
&& regnum
>= 32 && regnum
< 48)
8661 /* Quad-precision register. */
8662 return arm_neon_quad_read (gdbarch
, regcache
, regnum
- 32, buf
);
8665 enum register_status status
;
8667 /* Single-precision register. */
8668 gdb_assert (regnum
< 32);
8670 /* s0 is always the least significant half of d0. */
8671 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
8672 offset
= (regnum
& 1) ? 0 : 4;
8674 offset
= (regnum
& 1) ? 4 : 0;
8676 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
>> 1);
8677 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8680 status
= regcache
->raw_read (double_regnum
, reg_buf
);
8681 if (status
== REG_VALID
)
8682 memcpy (buf
, reg_buf
+ offset
, 4);
8687 /* Store the contents of BUF to a NEON quad register, by writing to
8688 two double registers. This is used to implement the quad pseudo
8689 registers, and for argument passing in case the quad registers are
8690 missing; vectors are passed in quad registers when using the VFP
8691 ABI, even if a NEON unit is not present. REGNUM is the index
8692 of the quad register, in [0, 15]. */
8695 arm_neon_quad_write (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
8696 int regnum
, const gdb_byte
*buf
)
8699 int offset
, double_regnum
;
8701 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
<< 1);
8702 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8705 /* d0 is always the least significant half of q0. */
8706 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
8711 regcache
->raw_write (double_regnum
, buf
+ offset
);
8712 offset
= 8 - offset
;
8713 regcache
->raw_write (double_regnum
+ 1, buf
+ offset
);
8717 arm_pseudo_write (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
8718 int regnum
, const gdb_byte
*buf
)
8720 const int num_regs
= gdbarch_num_regs (gdbarch
);
8722 gdb_byte reg_buf
[8];
8723 int offset
, double_regnum
;
8725 gdb_assert (regnum
>= num_regs
);
8728 if (gdbarch_tdep (gdbarch
)->have_neon_pseudos
&& regnum
>= 32 && regnum
< 48)
8729 /* Quad-precision register. */
8730 arm_neon_quad_write (gdbarch
, regcache
, regnum
- 32, buf
);
8733 /* Single-precision register. */
8734 gdb_assert (regnum
< 32);
8736 /* s0 is always the least significant half of d0. */
8737 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
8738 offset
= (regnum
& 1) ? 0 : 4;
8740 offset
= (regnum
& 1) ? 4 : 0;
8742 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
>> 1);
8743 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8746 regcache
->raw_read (double_regnum
, reg_buf
);
8747 memcpy (reg_buf
+ offset
, buf
, 4);
8748 regcache
->raw_write (double_regnum
, reg_buf
);
8752 static struct value
*
8753 value_of_arm_user_reg (struct frame_info
*frame
, const void *baton
)
8755 const int *reg_p
= (const int *) baton
;
8756 return value_of_register (*reg_p
, frame
);
8759 static enum gdb_osabi
8760 arm_elf_osabi_sniffer (bfd
*abfd
)
8762 unsigned int elfosabi
;
8763 enum gdb_osabi osabi
= GDB_OSABI_UNKNOWN
;
8765 elfosabi
= elf_elfheader (abfd
)->e_ident
[EI_OSABI
];
8767 if (elfosabi
== ELFOSABI_ARM
)
8768 /* GNU tools use this value. Check note sections in this case,
8770 bfd_map_over_sections (abfd
,
8771 generic_elf_osabi_sniff_abi_tag_sections
,
8774 /* Anything else will be handled by the generic ELF sniffer. */
8779 arm_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
8780 struct reggroup
*group
)
8782 /* FPS register's type is INT, but belongs to float_reggroup. Beside
8783 this, FPS register belongs to save_regroup, restore_reggroup, and
8784 all_reggroup, of course. */
8785 if (regnum
== ARM_FPS_REGNUM
)
8786 return (group
== float_reggroup
8787 || group
== save_reggroup
8788 || group
== restore_reggroup
8789 || group
== all_reggroup
);
8791 return default_register_reggroup_p (gdbarch
, regnum
, group
);
8794 /* For backward-compatibility we allow two 'g' packet lengths with
8795 the remote protocol depending on whether FPA registers are
8796 supplied. M-profile targets do not have FPA registers, but some
8797 stubs already exist in the wild which use a 'g' packet which
8798 supplies them albeit with dummy values. The packet format which
8799 includes FPA registers should be considered deprecated for
8800 M-profile targets. */
8803 arm_register_g_packet_guesses (struct gdbarch
*gdbarch
)
8805 if (gdbarch_tdep (gdbarch
)->is_m
)
8807 const target_desc
*tdesc
;
8809 /* If we know from the executable this is an M-profile target,
8810 cater for remote targets whose register set layout is the
8811 same as the FPA layout. */
8812 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_WITH_FPA
);
8813 register_remote_g_packet_guess (gdbarch
,
8814 ARM_CORE_REGS_SIZE
+ ARM_FP_REGS_SIZE
,
8817 /* The regular M-profile layout. */
8818 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_M_PROFILE
);
8819 register_remote_g_packet_guess (gdbarch
, ARM_CORE_REGS_SIZE
,
8822 /* M-profile plus M4F VFP. */
8823 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_VFP_D16
);
8824 register_remote_g_packet_guess (gdbarch
,
8825 ARM_CORE_REGS_SIZE
+ ARM_VFP2_REGS_SIZE
,
8829 /* Otherwise we don't have a useful guess. */
8832 /* Implement the code_of_frame_writable gdbarch method. */
8835 arm_code_of_frame_writable (struct gdbarch
*gdbarch
, struct frame_info
*frame
)
8837 if (gdbarch_tdep (gdbarch
)->is_m
8838 && get_frame_type (frame
) == SIGTRAMP_FRAME
)
8840 /* M-profile exception frames return to some magic PCs, where
8841 isn't writable at all. */
8848 /* Implement gdbarch_gnu_triplet_regexp. If the arch name is arm then allow it
8849 to be postfixed by a version (eg armv7hl). */
8852 arm_gnu_triplet_regexp (struct gdbarch
*gdbarch
)
8854 if (strcmp (gdbarch_bfd_arch_info (gdbarch
)->arch_name
, "arm") == 0)
8855 return "arm(v[^- ]*)?";
8856 return gdbarch_bfd_arch_info (gdbarch
)->arch_name
;
8859 /* Initialize the current architecture based on INFO. If possible,
8860 re-use an architecture from ARCHES, which is a list of
8861 architectures already created during this debugging session.
8863 Called e.g. at program startup, when reading a core file, and when
8864 reading a binary file. */
8866 static struct gdbarch
*
8867 arm_gdbarch_init (struct gdbarch_info info
, struct gdbarch_list
*arches
)
8869 struct gdbarch_tdep
*tdep
;
8870 struct gdbarch
*gdbarch
;
8871 struct gdbarch_list
*best_arch
;
8872 enum arm_abi_kind arm_abi
= arm_abi_global
;
8873 enum arm_float_model fp_model
= arm_fp_model
;
8874 struct tdesc_arch_data
*tdesc_data
= NULL
;
8877 int vfp_register_count
= 0;
8878 bool have_vfp_pseudos
= false, have_neon_pseudos
= false;
8879 bool have_wmmx_registers
= false;
8880 bool have_neon
= false;
8881 bool have_fpa_registers
= true;
8882 const struct target_desc
*tdesc
= info
.target_desc
;
8884 /* If we have an object to base this architecture on, try to determine
8887 if (arm_abi
== ARM_ABI_AUTO
&& info
.abfd
!= NULL
)
8889 int ei_osabi
, e_flags
;
8891 switch (bfd_get_flavour (info
.abfd
))
8893 case bfd_target_coff_flavour
:
8894 /* Assume it's an old APCS-style ABI. */
8896 arm_abi
= ARM_ABI_APCS
;
8899 case bfd_target_elf_flavour
:
8900 ei_osabi
= elf_elfheader (info
.abfd
)->e_ident
[EI_OSABI
];
8901 e_flags
= elf_elfheader (info
.abfd
)->e_flags
;
8903 if (ei_osabi
== ELFOSABI_ARM
)
8905 /* GNU tools used to use this value, but do not for EABI
8906 objects. There's nowhere to tag an EABI version
8907 anyway, so assume APCS. */
8908 arm_abi
= ARM_ABI_APCS
;
8910 else if (ei_osabi
== ELFOSABI_NONE
|| ei_osabi
== ELFOSABI_GNU
)
8912 int eabi_ver
= EF_ARM_EABI_VERSION (e_flags
);
8916 case EF_ARM_EABI_UNKNOWN
:
8917 /* Assume GNU tools. */
8918 arm_abi
= ARM_ABI_APCS
;
8921 case EF_ARM_EABI_VER4
:
8922 case EF_ARM_EABI_VER5
:
8923 arm_abi
= ARM_ABI_AAPCS
;
8924 /* EABI binaries default to VFP float ordering.
8925 They may also contain build attributes that can
8926 be used to identify if the VFP argument-passing
8928 if (fp_model
== ARM_FLOAT_AUTO
)
8931 switch (bfd_elf_get_obj_attr_int (info
.abfd
,
8935 case AEABI_VFP_args_base
:
8936 /* "The user intended FP parameter/result
8937 passing to conform to AAPCS, base
8939 fp_model
= ARM_FLOAT_SOFT_VFP
;
8941 case AEABI_VFP_args_vfp
:
8942 /* "The user intended FP parameter/result
8943 passing to conform to AAPCS, VFP
8945 fp_model
= ARM_FLOAT_VFP
;
8947 case AEABI_VFP_args_toolchain
:
8948 /* "The user intended FP parameter/result
8949 passing to conform to tool chain-specific
8950 conventions" - we don't know any such
8951 conventions, so leave it as "auto". */
8953 case AEABI_VFP_args_compatible
:
8954 /* "Code is compatible with both the base
8955 and VFP variants; the user did not permit
8956 non-variadic functions to pass FP
8957 parameters/results" - leave it as
8961 /* Attribute value not mentioned in the
8962 November 2012 ABI, so leave it as
8967 fp_model
= ARM_FLOAT_SOFT_VFP
;
8973 /* Leave it as "auto". */
8974 warning (_("unknown ARM EABI version 0x%x"), eabi_ver
);
8979 /* Detect M-profile programs. This only works if the
8980 executable file includes build attributes; GCC does
8981 copy them to the executable, but e.g. RealView does
8984 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
8987 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
8988 Tag_CPU_arch_profile
);
8990 /* GCC specifies the profile for v6-M; RealView only
8991 specifies the profile for architectures starting with
8992 V7 (as opposed to architectures with a tag
8993 numerically greater than TAG_CPU_ARCH_V7). */
8994 if (!tdesc_has_registers (tdesc
)
8995 && (attr_arch
== TAG_CPU_ARCH_V6_M
8996 || attr_arch
== TAG_CPU_ARCH_V6S_M
8997 || attr_profile
== 'M'))
9002 if (fp_model
== ARM_FLOAT_AUTO
)
9004 switch (e_flags
& (EF_ARM_SOFT_FLOAT
| EF_ARM_VFP_FLOAT
))
9007 /* Leave it as "auto". Strictly speaking this case
9008 means FPA, but almost nobody uses that now, and
9009 many toolchains fail to set the appropriate bits
9010 for the floating-point model they use. */
9012 case EF_ARM_SOFT_FLOAT
:
9013 fp_model
= ARM_FLOAT_SOFT_FPA
;
9015 case EF_ARM_VFP_FLOAT
:
9016 fp_model
= ARM_FLOAT_VFP
;
9018 case EF_ARM_SOFT_FLOAT
| EF_ARM_VFP_FLOAT
:
9019 fp_model
= ARM_FLOAT_SOFT_VFP
;
9024 if (e_flags
& EF_ARM_BE8
)
9025 info
.byte_order_for_code
= BFD_ENDIAN_LITTLE
;
9030 /* Leave it as "auto". */
9035 /* Check any target description for validity. */
9036 if (tdesc_has_registers (tdesc
))
9038 /* For most registers we require GDB's default names; but also allow
9039 the numeric names for sp / lr / pc, as a convenience. */
9040 static const char *const arm_sp_names
[] = { "r13", "sp", NULL
};
9041 static const char *const arm_lr_names
[] = { "r14", "lr", NULL
};
9042 static const char *const arm_pc_names
[] = { "r15", "pc", NULL
};
9044 const struct tdesc_feature
*feature
;
9047 feature
= tdesc_find_feature (tdesc
,
9048 "org.gnu.gdb.arm.core");
9049 if (feature
== NULL
)
9051 feature
= tdesc_find_feature (tdesc
,
9052 "org.gnu.gdb.arm.m-profile");
9053 if (feature
== NULL
)
9059 tdesc_data
= tdesc_data_alloc ();
9062 for (i
= 0; i
< ARM_SP_REGNUM
; i
++)
9063 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
, i
,
9064 arm_register_names
[i
]);
9065 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
,
9068 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
,
9071 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
,
9075 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
,
9076 ARM_PS_REGNUM
, "xpsr");
9078 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
,
9079 ARM_PS_REGNUM
, "cpsr");
9083 tdesc_data_cleanup (tdesc_data
);
9087 feature
= tdesc_find_feature (tdesc
,
9088 "org.gnu.gdb.arm.fpa");
9089 if (feature
!= NULL
)
9092 for (i
= ARM_F0_REGNUM
; i
<= ARM_FPS_REGNUM
; i
++)
9093 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
, i
,
9094 arm_register_names
[i
]);
9097 tdesc_data_cleanup (tdesc_data
);
9102 have_fpa_registers
= false;
9104 feature
= tdesc_find_feature (tdesc
,
9105 "org.gnu.gdb.xscale.iwmmxt");
9106 if (feature
!= NULL
)
9108 static const char *const iwmmxt_names
[] = {
9109 "wR0", "wR1", "wR2", "wR3", "wR4", "wR5", "wR6", "wR7",
9110 "wR8", "wR9", "wR10", "wR11", "wR12", "wR13", "wR14", "wR15",
9111 "wCID", "wCon", "wCSSF", "wCASF", "", "", "", "",
9112 "wCGR0", "wCGR1", "wCGR2", "wCGR3", "", "", "", "",
9116 for (i
= ARM_WR0_REGNUM
; i
<= ARM_WR15_REGNUM
; i
++)
9118 &= tdesc_numbered_register (feature
, tdesc_data
, i
,
9119 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
9121 /* Check for the control registers, but do not fail if they
9123 for (i
= ARM_WC0_REGNUM
; i
<= ARM_WCASF_REGNUM
; i
++)
9124 tdesc_numbered_register (feature
, tdesc_data
, i
,
9125 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
9127 for (i
= ARM_WCGR0_REGNUM
; i
<= ARM_WCGR3_REGNUM
; i
++)
9129 &= tdesc_numbered_register (feature
, tdesc_data
, i
,
9130 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
9134 tdesc_data_cleanup (tdesc_data
);
9138 have_wmmx_registers
= true;
9141 /* If we have a VFP unit, check whether the single precision registers
9142 are present. If not, then we will synthesize them as pseudo
9144 feature
= tdesc_find_feature (tdesc
,
9145 "org.gnu.gdb.arm.vfp");
9146 if (feature
!= NULL
)
9148 static const char *const vfp_double_names
[] = {
9149 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
9150 "d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15",
9151 "d16", "d17", "d18", "d19", "d20", "d21", "d22", "d23",
9152 "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31",
9155 /* Require the double precision registers. There must be either
9158 for (i
= 0; i
< 32; i
++)
9160 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
,
9162 vfp_double_names
[i
]);
9166 if (!valid_p
&& i
== 16)
9169 /* Also require FPSCR. */
9170 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
,
9171 ARM_FPSCR_REGNUM
, "fpscr");
9174 tdesc_data_cleanup (tdesc_data
);
9178 if (tdesc_unnumbered_register (feature
, "s0") == 0)
9179 have_vfp_pseudos
= true;
9181 vfp_register_count
= i
;
9183 /* If we have VFP, also check for NEON. The architecture allows
9184 NEON without VFP (integer vector operations only), but GDB
9185 does not support that. */
9186 feature
= tdesc_find_feature (tdesc
,
9187 "org.gnu.gdb.arm.neon");
9188 if (feature
!= NULL
)
9190 /* NEON requires 32 double-precision registers. */
9193 tdesc_data_cleanup (tdesc_data
);
9197 /* If there are quad registers defined by the stub, use
9198 their type; otherwise (normally) provide them with
9199 the default type. */
9200 if (tdesc_unnumbered_register (feature
, "q0") == 0)
9201 have_neon_pseudos
= true;
9208 /* If there is already a candidate, use it. */
9209 for (best_arch
= gdbarch_list_lookup_by_info (arches
, &info
);
9211 best_arch
= gdbarch_list_lookup_by_info (best_arch
->next
, &info
))
9213 if (arm_abi
!= ARM_ABI_AUTO
9214 && arm_abi
!= gdbarch_tdep (best_arch
->gdbarch
)->arm_abi
)
9217 if (fp_model
!= ARM_FLOAT_AUTO
9218 && fp_model
!= gdbarch_tdep (best_arch
->gdbarch
)->fp_model
)
9221 /* There are various other properties in tdep that we do not
9222 need to check here: those derived from a target description,
9223 since gdbarches with a different target description are
9224 automatically disqualified. */
9226 /* Do check is_m, though, since it might come from the binary. */
9227 if (is_m
!= gdbarch_tdep (best_arch
->gdbarch
)->is_m
)
9230 /* Found a match. */
9234 if (best_arch
!= NULL
)
9236 if (tdesc_data
!= NULL
)
9237 tdesc_data_cleanup (tdesc_data
);
9238 return best_arch
->gdbarch
;
9241 tdep
= XCNEW (struct gdbarch_tdep
);
9242 gdbarch
= gdbarch_alloc (&info
, tdep
);
9244 /* Record additional information about the architecture we are defining.
9245 These are gdbarch discriminators, like the OSABI. */
9246 tdep
->arm_abi
= arm_abi
;
9247 tdep
->fp_model
= fp_model
;
9249 tdep
->have_fpa_registers
= have_fpa_registers
;
9250 tdep
->have_wmmx_registers
= have_wmmx_registers
;
9251 gdb_assert (vfp_register_count
== 0
9252 || vfp_register_count
== 16
9253 || vfp_register_count
== 32);
9254 tdep
->vfp_register_count
= vfp_register_count
;
9255 tdep
->have_vfp_pseudos
= have_vfp_pseudos
;
9256 tdep
->have_neon_pseudos
= have_neon_pseudos
;
9257 tdep
->have_neon
= have_neon
;
9259 arm_register_g_packet_guesses (gdbarch
);
9262 switch (info
.byte_order_for_code
)
9264 case BFD_ENDIAN_BIG
:
9265 tdep
->arm_breakpoint
= arm_default_arm_be_breakpoint
;
9266 tdep
->arm_breakpoint_size
= sizeof (arm_default_arm_be_breakpoint
);
9267 tdep
->thumb_breakpoint
= arm_default_thumb_be_breakpoint
;
9268 tdep
->thumb_breakpoint_size
= sizeof (arm_default_thumb_be_breakpoint
);
9272 case BFD_ENDIAN_LITTLE
:
9273 tdep
->arm_breakpoint
= arm_default_arm_le_breakpoint
;
9274 tdep
->arm_breakpoint_size
= sizeof (arm_default_arm_le_breakpoint
);
9275 tdep
->thumb_breakpoint
= arm_default_thumb_le_breakpoint
;
9276 tdep
->thumb_breakpoint_size
= sizeof (arm_default_thumb_le_breakpoint
);
9281 internal_error (__FILE__
, __LINE__
,
9282 _("arm_gdbarch_init: bad byte order for float format"));
9285 /* On ARM targets char defaults to unsigned. */
9286 set_gdbarch_char_signed (gdbarch
, 0);
9288 /* wchar_t is unsigned under the AAPCS. */
9289 if (tdep
->arm_abi
== ARM_ABI_AAPCS
)
9290 set_gdbarch_wchar_signed (gdbarch
, 0);
9292 set_gdbarch_wchar_signed (gdbarch
, 1);
9294 /* Compute type alignment. */
9295 set_gdbarch_type_align (gdbarch
, arm_type_align
);
9297 /* Note: for displaced stepping, this includes the breakpoint, and one word
9298 of additional scratch space. This setting isn't used for anything beside
9299 displaced stepping at present. */
9300 set_gdbarch_max_insn_length (gdbarch
, 4 * ARM_DISPLACED_MODIFIED_INSNS
);
9302 /* This should be low enough for everything. */
9303 tdep
->lowest_pc
= 0x20;
9304 tdep
->jb_pc
= -1; /* Longjump support not enabled by default. */
9306 /* The default, for both APCS and AAPCS, is to return small
9307 structures in registers. */
9308 tdep
->struct_return
= reg_struct_return
;
9310 set_gdbarch_push_dummy_call (gdbarch
, arm_push_dummy_call
);
9311 set_gdbarch_frame_align (gdbarch
, arm_frame_align
);
9314 set_gdbarch_code_of_frame_writable (gdbarch
, arm_code_of_frame_writable
);
9316 set_gdbarch_write_pc (gdbarch
, arm_write_pc
);
9318 frame_base_set_default (gdbarch
, &arm_normal_base
);
9320 /* Address manipulation. */
9321 set_gdbarch_addr_bits_remove (gdbarch
, arm_addr_bits_remove
);
9323 /* Advance PC across function entry code. */
9324 set_gdbarch_skip_prologue (gdbarch
, arm_skip_prologue
);
9326 /* Detect whether PC is at a point where the stack has been destroyed. */
9327 set_gdbarch_stack_frame_destroyed_p (gdbarch
, arm_stack_frame_destroyed_p
);
9329 /* Skip trampolines. */
9330 set_gdbarch_skip_trampoline_code (gdbarch
, arm_skip_stub
);
9332 /* The stack grows downward. */
9333 set_gdbarch_inner_than (gdbarch
, core_addr_lessthan
);
9335 /* Breakpoint manipulation. */
9336 set_gdbarch_breakpoint_kind_from_pc (gdbarch
, arm_breakpoint_kind_from_pc
);
9337 set_gdbarch_sw_breakpoint_from_kind (gdbarch
, arm_sw_breakpoint_from_kind
);
9338 set_gdbarch_breakpoint_kind_from_current_state (gdbarch
,
9339 arm_breakpoint_kind_from_current_state
);
9341 /* Information about registers, etc. */
9342 set_gdbarch_sp_regnum (gdbarch
, ARM_SP_REGNUM
);
9343 set_gdbarch_pc_regnum (gdbarch
, ARM_PC_REGNUM
);
9344 set_gdbarch_num_regs (gdbarch
, ARM_NUM_REGS
);
9345 set_gdbarch_register_type (gdbarch
, arm_register_type
);
9346 set_gdbarch_register_reggroup_p (gdbarch
, arm_register_reggroup_p
);
9348 /* This "info float" is FPA-specific. Use the generic version if we
9350 if (gdbarch_tdep (gdbarch
)->have_fpa_registers
)
9351 set_gdbarch_print_float_info (gdbarch
, arm_print_float_info
);
9353 /* Internal <-> external register number maps. */
9354 set_gdbarch_dwarf2_reg_to_regnum (gdbarch
, arm_dwarf_reg_to_regnum
);
9355 set_gdbarch_register_sim_regno (gdbarch
, arm_register_sim_regno
);
9357 set_gdbarch_register_name (gdbarch
, arm_register_name
);
9359 /* Returning results. */
9360 set_gdbarch_return_value (gdbarch
, arm_return_value
);
9363 set_gdbarch_print_insn (gdbarch
, gdb_print_insn_arm
);
9365 /* Minsymbol frobbing. */
9366 set_gdbarch_elf_make_msymbol_special (gdbarch
, arm_elf_make_msymbol_special
);
9367 set_gdbarch_coff_make_msymbol_special (gdbarch
,
9368 arm_coff_make_msymbol_special
);
9369 set_gdbarch_record_special_symbol (gdbarch
, arm_record_special_symbol
);
9371 /* Thumb-2 IT block support. */
9372 set_gdbarch_adjust_breakpoint_address (gdbarch
,
9373 arm_adjust_breakpoint_address
);
9375 /* Virtual tables. */
9376 set_gdbarch_vbit_in_delta (gdbarch
, 1);
9378 /* Hook in the ABI-specific overrides, if they have been registered. */
9379 gdbarch_init_osabi (info
, gdbarch
);
9381 dwarf2_frame_set_init_reg (gdbarch
, arm_dwarf2_frame_init_reg
);
9383 /* Add some default predicates. */
9385 frame_unwind_append_unwinder (gdbarch
, &arm_m_exception_unwind
);
9386 frame_unwind_append_unwinder (gdbarch
, &arm_stub_unwind
);
9387 dwarf2_append_unwinders (gdbarch
);
9388 frame_unwind_append_unwinder (gdbarch
, &arm_exidx_unwind
);
9389 frame_unwind_append_unwinder (gdbarch
, &arm_epilogue_frame_unwind
);
9390 frame_unwind_append_unwinder (gdbarch
, &arm_prologue_unwind
);
9392 /* Now we have tuned the configuration, set a few final things,
9393 based on what the OS ABI has told us. */
9395 /* If the ABI is not otherwise marked, assume the old GNU APCS. EABI
9396 binaries are always marked. */
9397 if (tdep
->arm_abi
== ARM_ABI_AUTO
)
9398 tdep
->arm_abi
= ARM_ABI_APCS
;
9400 /* Watchpoints are not steppable. */
9401 set_gdbarch_have_nonsteppable_watchpoint (gdbarch
, 1);
9403 /* We used to default to FPA for generic ARM, but almost nobody
9404 uses that now, and we now provide a way for the user to force
9405 the model. So default to the most useful variant. */
9406 if (tdep
->fp_model
== ARM_FLOAT_AUTO
)
9407 tdep
->fp_model
= ARM_FLOAT_SOFT_FPA
;
9409 if (tdep
->jb_pc
>= 0)
9410 set_gdbarch_get_longjmp_target (gdbarch
, arm_get_longjmp_target
);
9412 /* Floating point sizes and format. */
9413 set_gdbarch_float_format (gdbarch
, floatformats_ieee_single
);
9414 if (tdep
->fp_model
== ARM_FLOAT_SOFT_FPA
|| tdep
->fp_model
== ARM_FLOAT_FPA
)
9416 set_gdbarch_double_format
9417 (gdbarch
, floatformats_ieee_double_littlebyte_bigword
);
9418 set_gdbarch_long_double_format
9419 (gdbarch
, floatformats_ieee_double_littlebyte_bigword
);
9423 set_gdbarch_double_format (gdbarch
, floatformats_ieee_double
);
9424 set_gdbarch_long_double_format (gdbarch
, floatformats_ieee_double
);
9427 if (have_vfp_pseudos
)
9429 /* NOTE: These are the only pseudo registers used by
9430 the ARM target at the moment. If more are added, a
9431 little more care in numbering will be needed. */
9433 int num_pseudos
= 32;
9434 if (have_neon_pseudos
)
9436 set_gdbarch_num_pseudo_regs (gdbarch
, num_pseudos
);
9437 set_gdbarch_pseudo_register_read (gdbarch
, arm_pseudo_read
);
9438 set_gdbarch_pseudo_register_write (gdbarch
, arm_pseudo_write
);
9443 set_tdesc_pseudo_register_name (gdbarch
, arm_register_name
);
9445 tdesc_use_registers (gdbarch
, tdesc
, tdesc_data
);
9447 /* Override tdesc_register_type to adjust the types of VFP
9448 registers for NEON. */
9449 set_gdbarch_register_type (gdbarch
, arm_register_type
);
9452 /* Add standard register aliases. We add aliases even for those
9453 names which are used by the current architecture - it's simpler,
9454 and does no harm, since nothing ever lists user registers. */
9455 for (i
= 0; i
< ARRAY_SIZE (arm_register_aliases
); i
++)
9456 user_reg_add (gdbarch
, arm_register_aliases
[i
].name
,
9457 value_of_arm_user_reg
, &arm_register_aliases
[i
].regnum
);
9459 set_gdbarch_disassembler_options (gdbarch
, &arm_disassembler_options
);
9460 set_gdbarch_valid_disassembler_options (gdbarch
, disassembler_options_arm ());
9462 set_gdbarch_gnu_triplet_regexp (gdbarch
, arm_gnu_triplet_regexp
);
9468 arm_dump_tdep (struct gdbarch
*gdbarch
, struct ui_file
*file
)
9470 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
9475 fprintf_unfiltered (file
, _("arm_dump_tdep: fp_model = %i\n"),
9476 (int) tdep
->fp_model
);
9477 fprintf_unfiltered (file
, _("arm_dump_tdep: have_fpa_registers = %i\n"),
9478 (int) tdep
->have_fpa_registers
);
9479 fprintf_unfiltered (file
, _("arm_dump_tdep: have_wmmx_registers = %i\n"),
9480 (int) tdep
->have_wmmx_registers
);
9481 fprintf_unfiltered (file
, _("arm_dump_tdep: vfp_register_count = %i\n"),
9482 (int) tdep
->vfp_register_count
);
9483 fprintf_unfiltered (file
, _("arm_dump_tdep: have_vfp_pseudos = %i\n"),
9484 (int) tdep
->have_vfp_pseudos
);
9485 fprintf_unfiltered (file
, _("arm_dump_tdep: have_neon_pseudos = %i\n"),
9486 (int) tdep
->have_neon_pseudos
);
9487 fprintf_unfiltered (file
, _("arm_dump_tdep: have_neon = %i\n"),
9488 (int) tdep
->have_neon
);
9489 fprintf_unfiltered (file
, _("arm_dump_tdep: Lowest pc = 0x%lx\n"),
9490 (unsigned long) tdep
->lowest_pc
);
9496 static void arm_record_test (void);
9500 void _initialize_arm_tdep ();
9502 _initialize_arm_tdep ()
9506 char regdesc
[1024], *rdptr
= regdesc
;
9507 size_t rest
= sizeof (regdesc
);
9509 gdbarch_register (bfd_arch_arm
, arm_gdbarch_init
, arm_dump_tdep
);
9511 /* Add ourselves to objfile event chain. */
9512 gdb::observers::new_objfile
.attach (arm_exidx_new_objfile
);
9514 /* Register an ELF OS ABI sniffer for ARM binaries. */
9515 gdbarch_register_osabi_sniffer (bfd_arch_arm
,
9516 bfd_target_elf_flavour
,
9517 arm_elf_osabi_sniffer
);
9519 /* Add root prefix command for all "set arm"/"show arm" commands. */
9520 add_prefix_cmd ("arm", no_class
, set_arm_command
,
9521 _("Various ARM-specific commands."),
9522 &setarmcmdlist
, "set arm ", 0, &setlist
);
9524 add_prefix_cmd ("arm", no_class
, show_arm_command
,
9525 _("Various ARM-specific commands."),
9526 &showarmcmdlist
, "show arm ", 0, &showlist
);
9529 arm_disassembler_options
= xstrdup ("reg-names-std");
9530 const disasm_options_t
*disasm_options
9531 = &disassembler_options_arm ()->options
;
9532 int num_disassembly_styles
= 0;
9533 for (i
= 0; disasm_options
->name
[i
] != NULL
; i
++)
9534 if (CONST_STRNEQ (disasm_options
->name
[i
], "reg-names-"))
9535 num_disassembly_styles
++;
9537 /* Initialize the array that will be passed to add_setshow_enum_cmd(). */
9538 valid_disassembly_styles
= XNEWVEC (const char *,
9539 num_disassembly_styles
+ 1);
9540 for (i
= j
= 0; disasm_options
->name
[i
] != NULL
; i
++)
9541 if (CONST_STRNEQ (disasm_options
->name
[i
], "reg-names-"))
9543 size_t offset
= strlen ("reg-names-");
9544 const char *style
= disasm_options
->name
[i
];
9545 valid_disassembly_styles
[j
++] = &style
[offset
];
9546 length
= snprintf (rdptr
, rest
, "%s - %s\n", &style
[offset
],
9547 disasm_options
->description
[i
]);
9551 /* Mark the end of valid options. */
9552 valid_disassembly_styles
[num_disassembly_styles
] = NULL
;
9554 /* Create the help text. */
9555 std::string helptext
= string_printf ("%s%s%s",
9556 _("The valid values are:\n"),
9558 _("The default is \"std\"."));
9560 add_setshow_enum_cmd("disassembler", no_class
,
9561 valid_disassembly_styles
, &disassembly_style
,
9562 _("Set the disassembly style."),
9563 _("Show the disassembly style."),
9565 set_disassembly_style_sfunc
,
9566 show_disassembly_style_sfunc
,
9567 &setarmcmdlist
, &showarmcmdlist
);
9569 add_setshow_boolean_cmd ("apcs32", no_class
, &arm_apcs_32
,
9570 _("Set usage of ARM 32-bit mode."),
9571 _("Show usage of ARM 32-bit mode."),
9572 _("When off, a 26-bit PC will be used."),
9574 NULL
, /* FIXME: i18n: Usage of ARM 32-bit
9576 &setarmcmdlist
, &showarmcmdlist
);
9578 /* Add a command to allow the user to force the FPU model. */
9579 add_setshow_enum_cmd ("fpu", no_class
, fp_model_strings
, ¤t_fp_model
,
9580 _("Set the floating point type."),
9581 _("Show the floating point type."),
9582 _("auto - Determine the FP typefrom the OS-ABI.\n\
9583 softfpa - Software FP, mixed-endian doubles on little-endian ARMs.\n\
9584 fpa - FPA co-processor (GCC compiled).\n\
9585 softvfp - Software FP with pure-endian doubles.\n\
9586 vfp - VFP co-processor."),
9587 set_fp_model_sfunc
, show_fp_model
,
9588 &setarmcmdlist
, &showarmcmdlist
);
9590 /* Add a command to allow the user to force the ABI. */
9591 add_setshow_enum_cmd ("abi", class_support
, arm_abi_strings
, &arm_abi_string
,
9594 NULL
, arm_set_abi
, arm_show_abi
,
9595 &setarmcmdlist
, &showarmcmdlist
);
9597 /* Add two commands to allow the user to force the assumed
9599 add_setshow_enum_cmd ("fallback-mode", class_support
,
9600 arm_mode_strings
, &arm_fallback_mode_string
,
9601 _("Set the mode assumed when symbols are unavailable."),
9602 _("Show the mode assumed when symbols are unavailable."),
9603 NULL
, NULL
, arm_show_fallback_mode
,
9604 &setarmcmdlist
, &showarmcmdlist
);
9605 add_setshow_enum_cmd ("force-mode", class_support
,
9606 arm_mode_strings
, &arm_force_mode_string
,
9607 _("Set the mode assumed even when symbols are available."),
9608 _("Show the mode assumed even when symbols are available."),
9609 NULL
, NULL
, arm_show_force_mode
,
9610 &setarmcmdlist
, &showarmcmdlist
);
9612 /* Debugging flag. */
9613 add_setshow_boolean_cmd ("arm", class_maintenance
, &arm_debug
,
9614 _("Set ARM debugging."),
9615 _("Show ARM debugging."),
9616 _("When on, arm-specific debugging is enabled."),
9618 NULL
, /* FIXME: i18n: "ARM debugging is %s. */
9619 &setdebuglist
, &showdebuglist
);
9622 selftests::register_test ("arm-record", selftests::arm_record_test
);
9627 /* ARM-reversible process record data structures. */
9629 #define ARM_INSN_SIZE_BYTES 4
9630 #define THUMB_INSN_SIZE_BYTES 2
9631 #define THUMB2_INSN_SIZE_BYTES 4
9634 /* Position of the bit within a 32-bit ARM instruction
9635 that defines whether the instruction is a load or store. */
9636 #define INSN_S_L_BIT_NUM 20
9638 #define REG_ALLOC(REGS, LENGTH, RECORD_BUF) \
9641 unsigned int reg_len = LENGTH; \
9644 REGS = XNEWVEC (uint32_t, reg_len); \
9645 memcpy(®S[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
9650 #define MEM_ALLOC(MEMS, LENGTH, RECORD_BUF) \
9653 unsigned int mem_len = LENGTH; \
9656 MEMS = XNEWVEC (struct arm_mem_r, mem_len); \
9657 memcpy(&MEMS->len, &RECORD_BUF[0], \
9658 sizeof(struct arm_mem_r) * LENGTH); \
9663 /* Checks whether insn is already recorded or yet to be decoded. (boolean expression). */
9664 #define INSN_RECORDED(ARM_RECORD) \
9665 (0 != (ARM_RECORD)->reg_rec_count || 0 != (ARM_RECORD)->mem_rec_count)
9667 /* ARM memory record structure. */
9670 uint32_t len
; /* Record length. */
9671 uint32_t addr
; /* Memory address. */
9674 /* ARM instruction record contains opcode of current insn
9675 and execution state (before entry to decode_insn()),
9676 contains list of to-be-modified registers and
9677 memory blocks (on return from decode_insn()). */
9679 typedef struct insn_decode_record_t
9681 struct gdbarch
*gdbarch
;
9682 struct regcache
*regcache
;
9683 CORE_ADDR this_addr
; /* Address of the insn being decoded. */
9684 uint32_t arm_insn
; /* Should accommodate thumb. */
9685 uint32_t cond
; /* Condition code. */
9686 uint32_t opcode
; /* Insn opcode. */
9687 uint32_t decode
; /* Insn decode bits. */
9688 uint32_t mem_rec_count
; /* No of mem records. */
9689 uint32_t reg_rec_count
; /* No of reg records. */
9690 uint32_t *arm_regs
; /* Registers to be saved for this record. */
9691 struct arm_mem_r
*arm_mems
; /* Memory to be saved for this record. */
9692 } insn_decode_record
;
9695 /* Checks ARM SBZ and SBO mandatory fields. */
9698 sbo_sbz (uint32_t insn
, uint32_t bit_num
, uint32_t len
, uint32_t sbo
)
9700 uint32_t ones
= bits (insn
, bit_num
- 1, (bit_num
-1) + (len
- 1));
9719 enum arm_record_result
9721 ARM_RECORD_SUCCESS
= 0,
9722 ARM_RECORD_FAILURE
= 1
9729 } arm_record_strx_t
;
9740 arm_record_strx (insn_decode_record
*arm_insn_r
, uint32_t *record_buf
,
9741 uint32_t *record_buf_mem
, arm_record_strx_t str_type
)
9744 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
9745 ULONGEST u_regval
[2]= {0};
9747 uint32_t reg_src1
= 0, reg_src2
= 0;
9748 uint32_t immed_high
= 0, immed_low
= 0,offset_8
= 0, tgt_mem_addr
= 0;
9750 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
9751 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
9753 if (14 == arm_insn_r
->opcode
|| 10 == arm_insn_r
->opcode
)
9755 /* 1) Handle misc store, immediate offset. */
9756 immed_low
= bits (arm_insn_r
->arm_insn
, 0, 3);
9757 immed_high
= bits (arm_insn_r
->arm_insn
, 8, 11);
9758 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
9759 regcache_raw_read_unsigned (reg_cache
, reg_src1
,
9761 if (ARM_PC_REGNUM
== reg_src1
)
9763 /* If R15 was used as Rn, hence current PC+8. */
9764 u_regval
[0] = u_regval
[0] + 8;
9766 offset_8
= (immed_high
<< 4) | immed_low
;
9767 /* Calculate target store address. */
9768 if (14 == arm_insn_r
->opcode
)
9770 tgt_mem_addr
= u_regval
[0] + offset_8
;
9774 tgt_mem_addr
= u_regval
[0] - offset_8
;
9776 if (ARM_RECORD_STRH
== str_type
)
9778 record_buf_mem
[0] = 2;
9779 record_buf_mem
[1] = tgt_mem_addr
;
9780 arm_insn_r
->mem_rec_count
= 1;
9782 else if (ARM_RECORD_STRD
== str_type
)
9784 record_buf_mem
[0] = 4;
9785 record_buf_mem
[1] = tgt_mem_addr
;
9786 record_buf_mem
[2] = 4;
9787 record_buf_mem
[3] = tgt_mem_addr
+ 4;
9788 arm_insn_r
->mem_rec_count
= 2;
9791 else if (12 == arm_insn_r
->opcode
|| 8 == arm_insn_r
->opcode
)
9793 /* 2) Store, register offset. */
9795 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
9797 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
9798 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
9799 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
9802 /* If R15 was used as Rn, hence current PC+8. */
9803 u_regval
[0] = u_regval
[0] + 8;
9805 /* Calculate target store address, Rn +/- Rm, register offset. */
9806 if (12 == arm_insn_r
->opcode
)
9808 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
9812 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
9814 if (ARM_RECORD_STRH
== str_type
)
9816 record_buf_mem
[0] = 2;
9817 record_buf_mem
[1] = tgt_mem_addr
;
9818 arm_insn_r
->mem_rec_count
= 1;
9820 else if (ARM_RECORD_STRD
== str_type
)
9822 record_buf_mem
[0] = 4;
9823 record_buf_mem
[1] = tgt_mem_addr
;
9824 record_buf_mem
[2] = 4;
9825 record_buf_mem
[3] = tgt_mem_addr
+ 4;
9826 arm_insn_r
->mem_rec_count
= 2;
9829 else if (11 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
9830 || 2 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
)
9832 /* 3) Store, immediate pre-indexed. */
9833 /* 5) Store, immediate post-indexed. */
9834 immed_low
= bits (arm_insn_r
->arm_insn
, 0, 3);
9835 immed_high
= bits (arm_insn_r
->arm_insn
, 8, 11);
9836 offset_8
= (immed_high
<< 4) | immed_low
;
9837 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
9838 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
9839 /* Calculate target store address, Rn +/- Rm, register offset. */
9840 if (15 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
)
9842 tgt_mem_addr
= u_regval
[0] + offset_8
;
9846 tgt_mem_addr
= u_regval
[0] - offset_8
;
9848 if (ARM_RECORD_STRH
== str_type
)
9850 record_buf_mem
[0] = 2;
9851 record_buf_mem
[1] = tgt_mem_addr
;
9852 arm_insn_r
->mem_rec_count
= 1;
9854 else if (ARM_RECORD_STRD
== str_type
)
9856 record_buf_mem
[0] = 4;
9857 record_buf_mem
[1] = tgt_mem_addr
;
9858 record_buf_mem
[2] = 4;
9859 record_buf_mem
[3] = tgt_mem_addr
+ 4;
9860 arm_insn_r
->mem_rec_count
= 2;
9862 /* Record Rn also as it changes. */
9863 *(record_buf
) = bits (arm_insn_r
->arm_insn
, 16, 19);
9864 arm_insn_r
->reg_rec_count
= 1;
9866 else if (9 == arm_insn_r
->opcode
|| 13 == arm_insn_r
->opcode
9867 || 0 == arm_insn_r
->opcode
|| 4 == arm_insn_r
->opcode
)
9869 /* 4) Store, register pre-indexed. */
9870 /* 6) Store, register post -indexed. */
9871 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
9872 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
9873 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
9874 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
9875 /* Calculate target store address, Rn +/- Rm, register offset. */
9876 if (13 == arm_insn_r
->opcode
|| 4 == arm_insn_r
->opcode
)
9878 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
9882 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
9884 if (ARM_RECORD_STRH
== str_type
)
9886 record_buf_mem
[0] = 2;
9887 record_buf_mem
[1] = tgt_mem_addr
;
9888 arm_insn_r
->mem_rec_count
= 1;
9890 else if (ARM_RECORD_STRD
== str_type
)
9892 record_buf_mem
[0] = 4;
9893 record_buf_mem
[1] = tgt_mem_addr
;
9894 record_buf_mem
[2] = 4;
9895 record_buf_mem
[3] = tgt_mem_addr
+ 4;
9896 arm_insn_r
->mem_rec_count
= 2;
9898 /* Record Rn also as it changes. */
9899 *(record_buf
) = bits (arm_insn_r
->arm_insn
, 16, 19);
9900 arm_insn_r
->reg_rec_count
= 1;
9905 /* Handling ARM extension space insns. */
9908 arm_record_extension_space (insn_decode_record
*arm_insn_r
)
9910 int ret
= 0; /* Return value: -1:record failure ; 0:success */
9911 uint32_t opcode1
= 0, opcode2
= 0, insn_op1
= 0;
9912 uint32_t record_buf
[8], record_buf_mem
[8];
9913 uint32_t reg_src1
= 0;
9914 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
9915 ULONGEST u_regval
= 0;
9917 gdb_assert (!INSN_RECORDED(arm_insn_r
));
9918 /* Handle unconditional insn extension space. */
9920 opcode1
= bits (arm_insn_r
->arm_insn
, 20, 27);
9921 opcode2
= bits (arm_insn_r
->arm_insn
, 4, 7);
9922 if (arm_insn_r
->cond
)
9924 /* PLD has no affect on architectural state, it just affects
9926 if (5 == ((opcode1
& 0xE0) >> 5))
9929 record_buf
[0] = ARM_PS_REGNUM
;
9930 record_buf
[1] = ARM_LR_REGNUM
;
9931 arm_insn_r
->reg_rec_count
= 2;
9933 /* STC2, LDC2, MCR2, MRC2, CDP2: <TBD>, co-processor insn. */
9937 opcode1
= bits (arm_insn_r
->arm_insn
, 25, 27);
9938 if (3 == opcode1
&& bit (arm_insn_r
->arm_insn
, 4))
9941 /* Undefined instruction on ARM V5; need to handle if later
9942 versions define it. */
9945 opcode1
= bits (arm_insn_r
->arm_insn
, 24, 27);
9946 opcode2
= bits (arm_insn_r
->arm_insn
, 4, 7);
9947 insn_op1
= bits (arm_insn_r
->arm_insn
, 20, 23);
9949 /* Handle arithmetic insn extension space. */
9950 if (!opcode1
&& 9 == opcode2
&& 1 != arm_insn_r
->cond
9951 && !INSN_RECORDED(arm_insn_r
))
9953 /* Handle MLA(S) and MUL(S). */
9954 if (in_inclusive_range (insn_op1
, 0U, 3U))
9956 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
9957 record_buf
[1] = ARM_PS_REGNUM
;
9958 arm_insn_r
->reg_rec_count
= 2;
9960 else if (in_inclusive_range (insn_op1
, 4U, 15U))
9962 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
9963 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
9964 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
9965 record_buf
[2] = ARM_PS_REGNUM
;
9966 arm_insn_r
->reg_rec_count
= 3;
9970 opcode1
= bits (arm_insn_r
->arm_insn
, 26, 27);
9971 opcode2
= bits (arm_insn_r
->arm_insn
, 23, 24);
9972 insn_op1
= bits (arm_insn_r
->arm_insn
, 21, 22);
9974 /* Handle control insn extension space. */
9976 if (!opcode1
&& 2 == opcode2
&& !bit (arm_insn_r
->arm_insn
, 20)
9977 && 1 != arm_insn_r
->cond
&& !INSN_RECORDED(arm_insn_r
))
9979 if (!bit (arm_insn_r
->arm_insn
,25))
9981 if (!bits (arm_insn_r
->arm_insn
, 4, 7))
9983 if ((0 == insn_op1
) || (2 == insn_op1
))
9986 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
9987 arm_insn_r
->reg_rec_count
= 1;
9989 else if (1 == insn_op1
)
9991 /* CSPR is going to be changed. */
9992 record_buf
[0] = ARM_PS_REGNUM
;
9993 arm_insn_r
->reg_rec_count
= 1;
9995 else if (3 == insn_op1
)
9997 /* SPSR is going to be changed. */
9998 /* We need to get SPSR value, which is yet to be done. */
10002 else if (1 == bits (arm_insn_r
->arm_insn
, 4, 7))
10007 record_buf
[0] = ARM_PS_REGNUM
;
10008 arm_insn_r
->reg_rec_count
= 1;
10010 else if (3 == insn_op1
)
10013 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10014 arm_insn_r
->reg_rec_count
= 1;
10017 else if (3 == bits (arm_insn_r
->arm_insn
, 4, 7))
10020 record_buf
[0] = ARM_PS_REGNUM
;
10021 record_buf
[1] = ARM_LR_REGNUM
;
10022 arm_insn_r
->reg_rec_count
= 2;
10024 else if (5 == bits (arm_insn_r
->arm_insn
, 4, 7))
10026 /* QADD, QSUB, QDADD, QDSUB */
10027 record_buf
[0] = ARM_PS_REGNUM
;
10028 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
10029 arm_insn_r
->reg_rec_count
= 2;
10031 else if (7 == bits (arm_insn_r
->arm_insn
, 4, 7))
10034 record_buf
[0] = ARM_PS_REGNUM
;
10035 record_buf
[1] = ARM_LR_REGNUM
;
10036 arm_insn_r
->reg_rec_count
= 2;
10038 /* Save SPSR also;how? */
10041 else if(8 == bits (arm_insn_r
->arm_insn
, 4, 7)
10042 || 10 == bits (arm_insn_r
->arm_insn
, 4, 7)
10043 || 12 == bits (arm_insn_r
->arm_insn
, 4, 7)
10044 || 14 == bits (arm_insn_r
->arm_insn
, 4, 7)
10047 if (0 == insn_op1
|| 1 == insn_op1
)
10049 /* SMLA<x><y>, SMLAW<y>, SMULW<y>. */
10050 /* We dont do optimization for SMULW<y> where we
10052 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10053 record_buf
[1] = ARM_PS_REGNUM
;
10054 arm_insn_r
->reg_rec_count
= 2;
10056 else if (2 == insn_op1
)
10059 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10060 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
10061 arm_insn_r
->reg_rec_count
= 2;
10063 else if (3 == insn_op1
)
10066 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10067 arm_insn_r
->reg_rec_count
= 1;
10073 /* MSR : immediate form. */
10076 /* CSPR is going to be changed. */
10077 record_buf
[0] = ARM_PS_REGNUM
;
10078 arm_insn_r
->reg_rec_count
= 1;
10080 else if (3 == insn_op1
)
10082 /* SPSR is going to be changed. */
10083 /* we need to get SPSR value, which is yet to be done */
10089 opcode1
= bits (arm_insn_r
->arm_insn
, 25, 27);
10090 opcode2
= bits (arm_insn_r
->arm_insn
, 20, 24);
10091 insn_op1
= bits (arm_insn_r
->arm_insn
, 5, 6);
10093 /* Handle load/store insn extension space. */
10095 if (!opcode1
&& bit (arm_insn_r
->arm_insn
, 7)
10096 && bit (arm_insn_r
->arm_insn
, 4) && 1 != arm_insn_r
->cond
10097 && !INSN_RECORDED(arm_insn_r
))
10102 /* These insn, changes register and memory as well. */
10103 /* SWP or SWPB insn. */
10104 /* Get memory address given by Rn. */
10105 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
10106 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
10107 /* SWP insn ?, swaps word. */
10108 if (8 == arm_insn_r
->opcode
)
10110 record_buf_mem
[0] = 4;
10114 /* SWPB insn, swaps only byte. */
10115 record_buf_mem
[0] = 1;
10117 record_buf_mem
[1] = u_regval
;
10118 arm_insn_r
->mem_rec_count
= 1;
10119 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10120 arm_insn_r
->reg_rec_count
= 1;
10122 else if (1 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
10125 arm_record_strx(arm_insn_r
, &record_buf
[0], &record_buf_mem
[0],
10128 else if (2 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
10131 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10132 record_buf
[1] = record_buf
[0] + 1;
10133 arm_insn_r
->reg_rec_count
= 2;
10135 else if (3 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
10138 arm_record_strx(arm_insn_r
, &record_buf
[0], &record_buf_mem
[0],
10141 else if (bit (arm_insn_r
->arm_insn
, 20) && insn_op1
<= 3)
10143 /* LDRH, LDRSB, LDRSH. */
10144 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10145 arm_insn_r
->reg_rec_count
= 1;
10150 opcode1
= bits (arm_insn_r
->arm_insn
, 23, 27);
10151 if (24 == opcode1
&& bit (arm_insn_r
->arm_insn
, 21)
10152 && !INSN_RECORDED(arm_insn_r
))
10155 /* Handle coprocessor insn extension space. */
10158 /* To be done for ARMv5 and later; as of now we return -1. */
10162 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10163 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
10168 /* Handling opcode 000 insns. */
10171 arm_record_data_proc_misc_ld_str (insn_decode_record
*arm_insn_r
)
10173 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
10174 uint32_t record_buf
[8], record_buf_mem
[8];
10175 ULONGEST u_regval
[2] = {0};
10177 uint32_t reg_src1
= 0;
10178 uint32_t opcode1
= 0;
10180 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
10181 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
10182 opcode1
= bits (arm_insn_r
->arm_insn
, 20, 24);
10184 if (!((opcode1
& 0x19) == 0x10))
10186 /* Data-processing (register) and Data-processing (register-shifted
10188 /* Out of 11 shifter operands mode, all the insn modifies destination
10189 register, which is specified by 13-16 decode. */
10190 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10191 record_buf
[1] = ARM_PS_REGNUM
;
10192 arm_insn_r
->reg_rec_count
= 2;
10194 else if ((arm_insn_r
->decode
< 8) && ((opcode1
& 0x19) == 0x10))
10196 /* Miscellaneous instructions */
10198 if (3 == arm_insn_r
->decode
&& 0x12 == opcode1
10199 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 12, 1))
10201 /* Handle BLX, branch and link/exchange. */
10202 if (9 == arm_insn_r
->opcode
)
10204 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm,
10205 and R14 stores the return address. */
10206 record_buf
[0] = ARM_PS_REGNUM
;
10207 record_buf
[1] = ARM_LR_REGNUM
;
10208 arm_insn_r
->reg_rec_count
= 2;
10211 else if (7 == arm_insn_r
->decode
&& 0x12 == opcode1
)
10213 /* Handle enhanced software breakpoint insn, BKPT. */
10214 /* CPSR is changed to be executed in ARM state, disabling normal
10215 interrupts, entering abort mode. */
10216 /* According to high vector configuration PC is set. */
10217 /* user hit breakpoint and type reverse, in
10218 that case, we need to go back with previous CPSR and
10219 Program Counter. */
10220 record_buf
[0] = ARM_PS_REGNUM
;
10221 record_buf
[1] = ARM_LR_REGNUM
;
10222 arm_insn_r
->reg_rec_count
= 2;
10224 /* Save SPSR also; how? */
10227 else if (1 == arm_insn_r
->decode
&& 0x12 == opcode1
10228 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 12, 1))
10230 /* Handle BX, branch and link/exchange. */
10231 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm. */
10232 record_buf
[0] = ARM_PS_REGNUM
;
10233 arm_insn_r
->reg_rec_count
= 1;
10235 else if (1 == arm_insn_r
->decode
&& 0x16 == opcode1
10236 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 4, 1)
10237 && sbo_sbz (arm_insn_r
->arm_insn
, 17, 4, 1))
10239 /* Count leading zeros: CLZ. */
10240 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10241 arm_insn_r
->reg_rec_count
= 1;
10243 else if (!bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
)
10244 && (8 == arm_insn_r
->opcode
|| 10 == arm_insn_r
->opcode
)
10245 && sbo_sbz (arm_insn_r
->arm_insn
, 17, 4, 1)
10246 && sbo_sbz (arm_insn_r
->arm_insn
, 1, 12, 0))
10248 /* Handle MRS insn. */
10249 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10250 arm_insn_r
->reg_rec_count
= 1;
10253 else if (9 == arm_insn_r
->decode
&& opcode1
< 0x10)
10255 /* Multiply and multiply-accumulate */
10257 /* Handle multiply instructions. */
10258 /* MLA, MUL, SMLAL, SMULL, UMLAL, UMULL. */
10259 if (0 == arm_insn_r
->opcode
|| 1 == arm_insn_r
->opcode
)
10261 /* Handle MLA and MUL. */
10262 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
10263 record_buf
[1] = ARM_PS_REGNUM
;
10264 arm_insn_r
->reg_rec_count
= 2;
10266 else if (4 <= arm_insn_r
->opcode
&& 7 >= arm_insn_r
->opcode
)
10268 /* Handle SMLAL, SMULL, UMLAL, UMULL. */
10269 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
10270 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
10271 record_buf
[2] = ARM_PS_REGNUM
;
10272 arm_insn_r
->reg_rec_count
= 3;
10275 else if (9 == arm_insn_r
->decode
&& opcode1
> 0x10)
10277 /* Synchronization primitives */
10279 /* Handling SWP, SWPB. */
10280 /* These insn, changes register and memory as well. */
10281 /* SWP or SWPB insn. */
10283 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
10284 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
10285 /* SWP insn ?, swaps word. */
10286 if (8 == arm_insn_r
->opcode
)
10288 record_buf_mem
[0] = 4;
10292 /* SWPB insn, swaps only byte. */
10293 record_buf_mem
[0] = 1;
10295 record_buf_mem
[1] = u_regval
[0];
10296 arm_insn_r
->mem_rec_count
= 1;
10297 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10298 arm_insn_r
->reg_rec_count
= 1;
10300 else if (11 == arm_insn_r
->decode
|| 13 == arm_insn_r
->decode
10301 || 15 == arm_insn_r
->decode
)
10303 if ((opcode1
& 0x12) == 2)
10305 /* Extra load/store (unprivileged) */
10310 /* Extra load/store */
10311 switch (bits (arm_insn_r
->arm_insn
, 5, 6))
10314 if ((opcode1
& 0x05) == 0x0 || (opcode1
& 0x05) == 0x4)
10316 /* STRH (register), STRH (immediate) */
10317 arm_record_strx (arm_insn_r
, &record_buf
[0],
10318 &record_buf_mem
[0], ARM_RECORD_STRH
);
10320 else if ((opcode1
& 0x05) == 0x1)
10322 /* LDRH (register) */
10323 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10324 arm_insn_r
->reg_rec_count
= 1;
10326 if (bit (arm_insn_r
->arm_insn
, 21))
10328 /* Write back to Rn. */
10329 record_buf
[arm_insn_r
->reg_rec_count
++]
10330 = bits (arm_insn_r
->arm_insn
, 16, 19);
10333 else if ((opcode1
& 0x05) == 0x5)
10335 /* LDRH (immediate), LDRH (literal) */
10336 int rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
10338 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10339 arm_insn_r
->reg_rec_count
= 1;
10343 /*LDRH (immediate) */
10344 if (bit (arm_insn_r
->arm_insn
, 21))
10346 /* Write back to Rn. */
10347 record_buf
[arm_insn_r
->reg_rec_count
++] = rn
;
10355 if ((opcode1
& 0x05) == 0x0)
10357 /* LDRD (register) */
10358 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10359 record_buf
[1] = record_buf
[0] + 1;
10360 arm_insn_r
->reg_rec_count
= 2;
10362 if (bit (arm_insn_r
->arm_insn
, 21))
10364 /* Write back to Rn. */
10365 record_buf
[arm_insn_r
->reg_rec_count
++]
10366 = bits (arm_insn_r
->arm_insn
, 16, 19);
10369 else if ((opcode1
& 0x05) == 0x1)
10371 /* LDRSB (register) */
10372 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10373 arm_insn_r
->reg_rec_count
= 1;
10375 if (bit (arm_insn_r
->arm_insn
, 21))
10377 /* Write back to Rn. */
10378 record_buf
[arm_insn_r
->reg_rec_count
++]
10379 = bits (arm_insn_r
->arm_insn
, 16, 19);
10382 else if ((opcode1
& 0x05) == 0x4 || (opcode1
& 0x05) == 0x5)
10384 /* LDRD (immediate), LDRD (literal), LDRSB (immediate),
10386 int rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
10388 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10389 arm_insn_r
->reg_rec_count
= 1;
10393 /*LDRD (immediate), LDRSB (immediate) */
10394 if (bit (arm_insn_r
->arm_insn
, 21))
10396 /* Write back to Rn. */
10397 record_buf
[arm_insn_r
->reg_rec_count
++] = rn
;
10405 if ((opcode1
& 0x05) == 0x0)
10407 /* STRD (register) */
10408 arm_record_strx (arm_insn_r
, &record_buf
[0],
10409 &record_buf_mem
[0], ARM_RECORD_STRD
);
10411 else if ((opcode1
& 0x05) == 0x1)
10413 /* LDRSH (register) */
10414 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10415 arm_insn_r
->reg_rec_count
= 1;
10417 if (bit (arm_insn_r
->arm_insn
, 21))
10419 /* Write back to Rn. */
10420 record_buf
[arm_insn_r
->reg_rec_count
++]
10421 = bits (arm_insn_r
->arm_insn
, 16, 19);
10424 else if ((opcode1
& 0x05) == 0x4)
10426 /* STRD (immediate) */
10427 arm_record_strx (arm_insn_r
, &record_buf
[0],
10428 &record_buf_mem
[0], ARM_RECORD_STRD
);
10430 else if ((opcode1
& 0x05) == 0x5)
10432 /* LDRSH (immediate), LDRSH (literal) */
10433 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10434 arm_insn_r
->reg_rec_count
= 1;
10436 if (bit (arm_insn_r
->arm_insn
, 21))
10438 /* Write back to Rn. */
10439 record_buf
[arm_insn_r
->reg_rec_count
++]
10440 = bits (arm_insn_r
->arm_insn
, 16, 19);
10456 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10457 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
10461 /* Handling opcode 001 insns. */
10464 arm_record_data_proc_imm (insn_decode_record
*arm_insn_r
)
10466 uint32_t record_buf
[8], record_buf_mem
[8];
10468 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
10469 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
10471 if ((9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
)
10472 && 2 == bits (arm_insn_r
->arm_insn
, 20, 21)
10473 && sbo_sbz (arm_insn_r
->arm_insn
, 13, 4, 1)
10476 /* Handle MSR insn. */
10477 if (9 == arm_insn_r
->opcode
)
10479 /* CSPR is going to be changed. */
10480 record_buf
[0] = ARM_PS_REGNUM
;
10481 arm_insn_r
->reg_rec_count
= 1;
10485 /* SPSR is going to be changed. */
10488 else if (arm_insn_r
->opcode
<= 15)
10490 /* Normal data processing insns. */
10491 /* Out of 11 shifter operands mode, all the insn modifies destination
10492 register, which is specified by 13-16 decode. */
10493 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10494 record_buf
[1] = ARM_PS_REGNUM
;
10495 arm_insn_r
->reg_rec_count
= 2;
10502 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10503 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
10508 arm_record_media (insn_decode_record
*arm_insn_r
)
10510 uint32_t record_buf
[8];
10512 switch (bits (arm_insn_r
->arm_insn
, 22, 24))
10515 /* Parallel addition and subtraction, signed */
10517 /* Parallel addition and subtraction, unsigned */
10520 /* Packing, unpacking, saturation and reversal */
10522 int rd
= bits (arm_insn_r
->arm_insn
, 12, 15);
10524 record_buf
[arm_insn_r
->reg_rec_count
++] = rd
;
10530 /* Signed multiplies */
10532 int rd
= bits (arm_insn_r
->arm_insn
, 16, 19);
10533 unsigned int op1
= bits (arm_insn_r
->arm_insn
, 20, 22);
10535 record_buf
[arm_insn_r
->reg_rec_count
++] = rd
;
10537 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
10538 else if (op1
== 0x4)
10539 record_buf
[arm_insn_r
->reg_rec_count
++]
10540 = bits (arm_insn_r
->arm_insn
, 12, 15);
10546 if (bit (arm_insn_r
->arm_insn
, 21)
10547 && bits (arm_insn_r
->arm_insn
, 5, 6) == 0x2)
10550 record_buf
[arm_insn_r
->reg_rec_count
++]
10551 = bits (arm_insn_r
->arm_insn
, 12, 15);
10553 else if (bits (arm_insn_r
->arm_insn
, 20, 21) == 0x0
10554 && bits (arm_insn_r
->arm_insn
, 5, 7) == 0x0)
10556 /* USAD8 and USADA8 */
10557 record_buf
[arm_insn_r
->reg_rec_count
++]
10558 = bits (arm_insn_r
->arm_insn
, 16, 19);
10565 if (bits (arm_insn_r
->arm_insn
, 20, 21) == 0x3
10566 && bits (arm_insn_r
->arm_insn
, 5, 7) == 0x7)
10568 /* Permanently UNDEFINED */
10573 /* BFC, BFI and UBFX */
10574 record_buf
[arm_insn_r
->reg_rec_count
++]
10575 = bits (arm_insn_r
->arm_insn
, 12, 15);
10584 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10589 /* Handle ARM mode instructions with opcode 010. */
10592 arm_record_ld_st_imm_offset (insn_decode_record
*arm_insn_r
)
10594 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
10596 uint32_t reg_base
, reg_dest
;
10597 uint32_t offset_12
, tgt_mem_addr
;
10598 uint32_t record_buf
[8], record_buf_mem
[8];
10599 unsigned char wback
;
10602 /* Calculate wback. */
10603 wback
= (bit (arm_insn_r
->arm_insn
, 24) == 0)
10604 || (bit (arm_insn_r
->arm_insn
, 21) == 1);
10606 arm_insn_r
->reg_rec_count
= 0;
10607 reg_base
= bits (arm_insn_r
->arm_insn
, 16, 19);
10609 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
10611 /* LDR (immediate), LDR (literal), LDRB (immediate), LDRB (literal), LDRBT
10614 reg_dest
= bits (arm_insn_r
->arm_insn
, 12, 15);
10615 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_dest
;
10617 /* The LDR instruction is capable of doing branching. If MOV LR, PC
10618 preceeds a LDR instruction having R15 as reg_base, it
10619 emulates a branch and link instruction, and hence we need to save
10620 CPSR and PC as well. */
10621 if (ARM_PC_REGNUM
== reg_dest
)
10622 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
10624 /* If wback is true, also save the base register, which is going to be
10627 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
10631 /* STR (immediate), STRB (immediate), STRBT and STRT. */
10633 offset_12
= bits (arm_insn_r
->arm_insn
, 0, 11);
10634 regcache_raw_read_unsigned (reg_cache
, reg_base
, &u_regval
);
10636 /* Handle bit U. */
10637 if (bit (arm_insn_r
->arm_insn
, 23))
10639 /* U == 1: Add the offset. */
10640 tgt_mem_addr
= (uint32_t) u_regval
+ offset_12
;
10644 /* U == 0: subtract the offset. */
10645 tgt_mem_addr
= (uint32_t) u_regval
- offset_12
;
10648 /* Bit 22 tells us whether the store instruction writes 1 byte or 4
10650 if (bit (arm_insn_r
->arm_insn
, 22))
10652 /* STRB and STRBT: 1 byte. */
10653 record_buf_mem
[0] = 1;
10657 /* STR and STRT: 4 bytes. */
10658 record_buf_mem
[0] = 4;
10661 /* Handle bit P. */
10662 if (bit (arm_insn_r
->arm_insn
, 24))
10663 record_buf_mem
[1] = tgt_mem_addr
;
10665 record_buf_mem
[1] = (uint32_t) u_regval
;
10667 arm_insn_r
->mem_rec_count
= 1;
10669 /* If wback is true, also save the base register, which is going to be
10672 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
10675 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10676 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
10680 /* Handling opcode 011 insns. */
10683 arm_record_ld_st_reg_offset (insn_decode_record
*arm_insn_r
)
10685 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
10687 uint32_t shift_imm
= 0;
10688 uint32_t reg_src1
= 0, reg_src2
= 0, reg_dest
= 0;
10689 uint32_t offset_12
= 0, tgt_mem_addr
= 0;
10690 uint32_t record_buf
[8], record_buf_mem
[8];
10693 ULONGEST u_regval
[2];
10695 if (bit (arm_insn_r
->arm_insn
, 4))
10696 return arm_record_media (arm_insn_r
);
10698 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
10699 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
10701 /* Handle enhanced store insns and LDRD DSP insn,
10702 order begins according to addressing modes for store insns
10706 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
10708 reg_dest
= bits (arm_insn_r
->arm_insn
, 12, 15);
10709 /* LDR insn has a capability to do branching, if
10710 MOV LR, PC is preceded by LDR insn having Rn as R15
10711 in that case, it emulates branch and link insn, and hence we
10712 need to save CSPR and PC as well. */
10713 if (15 != reg_dest
)
10715 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
10716 arm_insn_r
->reg_rec_count
= 1;
10720 record_buf
[0] = reg_dest
;
10721 record_buf
[1] = ARM_PS_REGNUM
;
10722 arm_insn_r
->reg_rec_count
= 2;
10727 if (! bits (arm_insn_r
->arm_insn
, 4, 11))
10729 /* Store insn, register offset and register pre-indexed,
10730 register post-indexed. */
10732 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
10734 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
10735 regcache_raw_read_unsigned (reg_cache
, reg_src1
10737 regcache_raw_read_unsigned (reg_cache
, reg_src2
10739 if (15 == reg_src2
)
10741 /* If R15 was used as Rn, hence current PC+8. */
10742 /* Pre-indexed mode doesnt reach here ; illegal insn. */
10743 u_regval
[0] = u_regval
[0] + 8;
10745 /* Calculate target store address, Rn +/- Rm, register offset. */
10747 if (bit (arm_insn_r
->arm_insn
, 23))
10749 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
10753 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
10756 switch (arm_insn_r
->opcode
)
10770 record_buf_mem
[0] = 4;
10785 record_buf_mem
[0] = 1;
10789 gdb_assert_not_reached ("no decoding pattern found");
10792 record_buf_mem
[1] = tgt_mem_addr
;
10793 arm_insn_r
->mem_rec_count
= 1;
10795 if (9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
10796 || 13 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
10797 || 0 == arm_insn_r
->opcode
|| 2 == arm_insn_r
->opcode
10798 || 4 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
10799 || 1 == arm_insn_r
->opcode
|| 3 == arm_insn_r
->opcode
10800 || 5 == arm_insn_r
->opcode
|| 7 == arm_insn_r
->opcode
10803 /* Rn is going to be changed in pre-indexed mode and
10804 post-indexed mode as well. */
10805 record_buf
[0] = reg_src2
;
10806 arm_insn_r
->reg_rec_count
= 1;
10811 /* Store insn, scaled register offset; scaled pre-indexed. */
10812 offset_12
= bits (arm_insn_r
->arm_insn
, 5, 6);
10814 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
10816 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
10817 /* Get shift_imm. */
10818 shift_imm
= bits (arm_insn_r
->arm_insn
, 7, 11);
10819 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
10820 regcache_raw_read_signed (reg_cache
, reg_src1
, &s_word
);
10821 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
10822 /* Offset_12 used as shift. */
10826 /* Offset_12 used as index. */
10827 offset_12
= u_regval
[0] << shift_imm
;
10831 offset_12
= (!shift_imm
)?0:u_regval
[0] >> shift_imm
;
10837 if (bit (u_regval
[0], 31))
10839 offset_12
= 0xFFFFFFFF;
10848 /* This is arithmetic shift. */
10849 offset_12
= s_word
>> shift_imm
;
10856 regcache_raw_read_unsigned (reg_cache
, ARM_PS_REGNUM
,
10858 /* Get C flag value and shift it by 31. */
10859 offset_12
= (((bit (u_regval
[1], 29)) << 31) \
10860 | (u_regval
[0]) >> 1);
10864 offset_12
= (u_regval
[0] >> shift_imm
) \
10866 (sizeof(uint32_t) - shift_imm
));
10871 gdb_assert_not_reached ("no decoding pattern found");
10875 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
10877 if (bit (arm_insn_r
->arm_insn
, 23))
10879 tgt_mem_addr
= u_regval
[1] + offset_12
;
10883 tgt_mem_addr
= u_regval
[1] - offset_12
;
10886 switch (arm_insn_r
->opcode
)
10900 record_buf_mem
[0] = 4;
10915 record_buf_mem
[0] = 1;
10919 gdb_assert_not_reached ("no decoding pattern found");
10922 record_buf_mem
[1] = tgt_mem_addr
;
10923 arm_insn_r
->mem_rec_count
= 1;
10925 if (9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
10926 || 13 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
10927 || 0 == arm_insn_r
->opcode
|| 2 == arm_insn_r
->opcode
10928 || 4 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
10929 || 1 == arm_insn_r
->opcode
|| 3 == arm_insn_r
->opcode
10930 || 5 == arm_insn_r
->opcode
|| 7 == arm_insn_r
->opcode
10933 /* Rn is going to be changed in register scaled pre-indexed
10934 mode,and scaled post indexed mode. */
10935 record_buf
[0] = reg_src2
;
10936 arm_insn_r
->reg_rec_count
= 1;
10941 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
10942 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
10946 /* Handle ARM mode instructions with opcode 100. */
10949 arm_record_ld_st_multiple (insn_decode_record
*arm_insn_r
)
10951 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
10952 uint32_t register_count
= 0, register_bits
;
10953 uint32_t reg_base
, addr_mode
;
10954 uint32_t record_buf
[24], record_buf_mem
[48];
10958 /* Fetch the list of registers. */
10959 register_bits
= bits (arm_insn_r
->arm_insn
, 0, 15);
10960 arm_insn_r
->reg_rec_count
= 0;
10962 /* Fetch the base register that contains the address we are loading data
10964 reg_base
= bits (arm_insn_r
->arm_insn
, 16, 19);
10966 /* Calculate wback. */
10967 wback
= (bit (arm_insn_r
->arm_insn
, 21) == 1);
10969 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
10971 /* LDM/LDMIA/LDMFD, LDMDA/LDMFA, LDMDB and LDMIB. */
10973 /* Find out which registers are going to be loaded from memory. */
10974 while (register_bits
)
10976 if (register_bits
& 0x00000001)
10977 record_buf
[arm_insn_r
->reg_rec_count
++] = register_count
;
10978 register_bits
= register_bits
>> 1;
10983 /* If wback is true, also save the base register, which is going to be
10986 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
10988 /* Save the CPSR register. */
10989 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
10993 /* STM (STMIA, STMEA), STMDA (STMED), STMDB (STMFD) and STMIB (STMFA). */
10995 addr_mode
= bits (arm_insn_r
->arm_insn
, 23, 24);
10997 regcache_raw_read_unsigned (reg_cache
, reg_base
, &u_regval
);
10999 /* Find out how many registers are going to be stored to memory. */
11000 while (register_bits
)
11002 if (register_bits
& 0x00000001)
11004 register_bits
= register_bits
>> 1;
11009 /* STMDA (STMED): Decrement after. */
11011 record_buf_mem
[1] = (uint32_t) u_regval
11012 - register_count
* ARM_INT_REGISTER_SIZE
+ 4;
11014 /* STM (STMIA, STMEA): Increment after. */
11016 record_buf_mem
[1] = (uint32_t) u_regval
;
11018 /* STMDB (STMFD): Decrement before. */
11020 record_buf_mem
[1] = (uint32_t) u_regval
11021 - register_count
* ARM_INT_REGISTER_SIZE
;
11023 /* STMIB (STMFA): Increment before. */
11025 record_buf_mem
[1] = (uint32_t) u_regval
+ ARM_INT_REGISTER_SIZE
;
11028 gdb_assert_not_reached ("no decoding pattern found");
11032 record_buf_mem
[0] = register_count
* ARM_INT_REGISTER_SIZE
;
11033 arm_insn_r
->mem_rec_count
= 1;
11035 /* If wback is true, also save the base register, which is going to be
11038 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
11041 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11042 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11046 /* Handling opcode 101 insns. */
11049 arm_record_b_bl (insn_decode_record
*arm_insn_r
)
11051 uint32_t record_buf
[8];
11053 /* Handle B, BL, BLX(1) insns. */
11054 /* B simply branches so we do nothing here. */
11055 /* Note: BLX(1) doesnt fall here but instead it falls into
11056 extension space. */
11057 if (bit (arm_insn_r
->arm_insn
, 24))
11059 record_buf
[0] = ARM_LR_REGNUM
;
11060 arm_insn_r
->reg_rec_count
= 1;
11063 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11069 arm_record_unsupported_insn (insn_decode_record
*arm_insn_r
)
11071 printf_unfiltered (_("Process record does not support instruction "
11072 "0x%0x at address %s.\n"),arm_insn_r
->arm_insn
,
11073 paddress (arm_insn_r
->gdbarch
, arm_insn_r
->this_addr
));
11078 /* Record handler for vector data transfer instructions. */
11081 arm_record_vdata_transfer_insn (insn_decode_record
*arm_insn_r
)
11083 uint32_t bits_a
, bit_c
, bit_l
, reg_t
, reg_v
;
11084 uint32_t record_buf
[4];
11086 reg_t
= bits (arm_insn_r
->arm_insn
, 12, 15);
11087 reg_v
= bits (arm_insn_r
->arm_insn
, 21, 23);
11088 bits_a
= bits (arm_insn_r
->arm_insn
, 21, 23);
11089 bit_l
= bit (arm_insn_r
->arm_insn
, 20);
11090 bit_c
= bit (arm_insn_r
->arm_insn
, 8);
11092 /* Handle VMOV instruction. */
11093 if (bit_l
&& bit_c
)
11095 record_buf
[0] = reg_t
;
11096 arm_insn_r
->reg_rec_count
= 1;
11098 else if (bit_l
&& !bit_c
)
11100 /* Handle VMOV instruction. */
11101 if (bits_a
== 0x00)
11103 record_buf
[0] = reg_t
;
11104 arm_insn_r
->reg_rec_count
= 1;
11106 /* Handle VMRS instruction. */
11107 else if (bits_a
== 0x07)
11110 reg_t
= ARM_PS_REGNUM
;
11112 record_buf
[0] = reg_t
;
11113 arm_insn_r
->reg_rec_count
= 1;
11116 else if (!bit_l
&& !bit_c
)
11118 /* Handle VMOV instruction. */
11119 if (bits_a
== 0x00)
11121 record_buf
[0] = ARM_D0_REGNUM
+ reg_v
;
11123 arm_insn_r
->reg_rec_count
= 1;
11125 /* Handle VMSR instruction. */
11126 else if (bits_a
== 0x07)
11128 record_buf
[0] = ARM_FPSCR_REGNUM
;
11129 arm_insn_r
->reg_rec_count
= 1;
11132 else if (!bit_l
&& bit_c
)
11134 /* Handle VMOV instruction. */
11135 if (!(bits_a
& 0x04))
11137 record_buf
[0] = (reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4))
11139 arm_insn_r
->reg_rec_count
= 1;
11141 /* Handle VDUP instruction. */
11144 if (bit (arm_insn_r
->arm_insn
, 21))
11146 reg_v
= reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4);
11147 record_buf
[0] = reg_v
+ ARM_D0_REGNUM
;
11148 record_buf
[1] = reg_v
+ ARM_D0_REGNUM
+ 1;
11149 arm_insn_r
->reg_rec_count
= 2;
11153 reg_v
= reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4);
11154 record_buf
[0] = reg_v
+ ARM_D0_REGNUM
;
11155 arm_insn_r
->reg_rec_count
= 1;
11160 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11164 /* Record handler for extension register load/store instructions. */
11167 arm_record_exreg_ld_st_insn (insn_decode_record
*arm_insn_r
)
11169 uint32_t opcode
, single_reg
;
11170 uint8_t op_vldm_vstm
;
11171 uint32_t record_buf
[8], record_buf_mem
[128];
11172 ULONGEST u_regval
= 0;
11174 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11176 opcode
= bits (arm_insn_r
->arm_insn
, 20, 24);
11177 single_reg
= !bit (arm_insn_r
->arm_insn
, 8);
11178 op_vldm_vstm
= opcode
& 0x1b;
11180 /* Handle VMOV instructions. */
11181 if ((opcode
& 0x1e) == 0x04)
11183 if (bit (arm_insn_r
->arm_insn
, 20)) /* to_arm_registers bit 20? */
11185 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11186 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
11187 arm_insn_r
->reg_rec_count
= 2;
11191 uint8_t reg_m
= bits (arm_insn_r
->arm_insn
, 0, 3);
11192 uint8_t bit_m
= bit (arm_insn_r
->arm_insn
, 5);
11196 /* The first S register number m is REG_M:M (M is bit 5),
11197 the corresponding D register number is REG_M:M / 2, which
11199 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_D0_REGNUM
+ reg_m
;
11200 /* The second S register number is REG_M:M + 1, the
11201 corresponding D register number is (REG_M:M + 1) / 2.
11202 IOW, if bit M is 1, the first and second S registers
11203 are mapped to different D registers, otherwise, they are
11204 in the same D register. */
11207 record_buf
[arm_insn_r
->reg_rec_count
++]
11208 = ARM_D0_REGNUM
+ reg_m
+ 1;
11213 record_buf
[0] = ((bit_m
<< 4) + reg_m
+ ARM_D0_REGNUM
);
11214 arm_insn_r
->reg_rec_count
= 1;
11218 /* Handle VSTM and VPUSH instructions. */
11219 else if (op_vldm_vstm
== 0x08 || op_vldm_vstm
== 0x0a
11220 || op_vldm_vstm
== 0x12)
11222 uint32_t start_address
, reg_rn
, imm_off32
, imm_off8
, memory_count
;
11223 uint32_t memory_index
= 0;
11225 reg_rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
11226 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
11227 imm_off8
= bits (arm_insn_r
->arm_insn
, 0, 7);
11228 imm_off32
= imm_off8
<< 2;
11229 memory_count
= imm_off8
;
11231 if (bit (arm_insn_r
->arm_insn
, 23))
11232 start_address
= u_regval
;
11234 start_address
= u_regval
- imm_off32
;
11236 if (bit (arm_insn_r
->arm_insn
, 21))
11238 record_buf
[0] = reg_rn
;
11239 arm_insn_r
->reg_rec_count
= 1;
11242 while (memory_count
> 0)
11246 record_buf_mem
[memory_index
] = 4;
11247 record_buf_mem
[memory_index
+ 1] = start_address
;
11248 start_address
= start_address
+ 4;
11249 memory_index
= memory_index
+ 2;
11253 record_buf_mem
[memory_index
] = 4;
11254 record_buf_mem
[memory_index
+ 1] = start_address
;
11255 record_buf_mem
[memory_index
+ 2] = 4;
11256 record_buf_mem
[memory_index
+ 3] = start_address
+ 4;
11257 start_address
= start_address
+ 8;
11258 memory_index
= memory_index
+ 4;
11262 arm_insn_r
->mem_rec_count
= (memory_index
>> 1);
11264 /* Handle VLDM instructions. */
11265 else if (op_vldm_vstm
== 0x09 || op_vldm_vstm
== 0x0b
11266 || op_vldm_vstm
== 0x13)
11268 uint32_t reg_count
, reg_vd
;
11269 uint32_t reg_index
= 0;
11270 uint32_t bit_d
= bit (arm_insn_r
->arm_insn
, 22);
11272 reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
11273 reg_count
= bits (arm_insn_r
->arm_insn
, 0, 7);
11275 /* REG_VD is the first D register number. If the instruction
11276 loads memory to S registers (SINGLE_REG is TRUE), the register
11277 number is (REG_VD << 1 | bit D), so the corresponding D
11278 register number is (REG_VD << 1 | bit D) / 2 = REG_VD. */
11280 reg_vd
= reg_vd
| (bit_d
<< 4);
11282 if (bit (arm_insn_r
->arm_insn
, 21) /* write back */)
11283 record_buf
[reg_index
++] = bits (arm_insn_r
->arm_insn
, 16, 19);
11285 /* If the instruction loads memory to D register, REG_COUNT should
11286 be divided by 2, according to the ARM Architecture Reference
11287 Manual. If the instruction loads memory to S register, divide by
11288 2 as well because two S registers are mapped to D register. */
11289 reg_count
= reg_count
/ 2;
11290 if (single_reg
&& bit_d
)
11292 /* Increase the register count if S register list starts from
11293 an odd number (bit d is one). */
11297 while (reg_count
> 0)
11299 record_buf
[reg_index
++] = ARM_D0_REGNUM
+ reg_vd
+ reg_count
- 1;
11302 arm_insn_r
->reg_rec_count
= reg_index
;
11304 /* VSTR Vector store register. */
11305 else if ((opcode
& 0x13) == 0x10)
11307 uint32_t start_address
, reg_rn
, imm_off32
, imm_off8
;
11308 uint32_t memory_index
= 0;
11310 reg_rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
11311 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
11312 imm_off8
= bits (arm_insn_r
->arm_insn
, 0, 7);
11313 imm_off32
= imm_off8
<< 2;
11315 if (bit (arm_insn_r
->arm_insn
, 23))
11316 start_address
= u_regval
+ imm_off32
;
11318 start_address
= u_regval
- imm_off32
;
11322 record_buf_mem
[memory_index
] = 4;
11323 record_buf_mem
[memory_index
+ 1] = start_address
;
11324 arm_insn_r
->mem_rec_count
= 1;
11328 record_buf_mem
[memory_index
] = 4;
11329 record_buf_mem
[memory_index
+ 1] = start_address
;
11330 record_buf_mem
[memory_index
+ 2] = 4;
11331 record_buf_mem
[memory_index
+ 3] = start_address
+ 4;
11332 arm_insn_r
->mem_rec_count
= 2;
11335 /* VLDR Vector load register. */
11336 else if ((opcode
& 0x13) == 0x11)
11338 uint32_t reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
11342 reg_vd
= reg_vd
| (bit (arm_insn_r
->arm_insn
, 22) << 4);
11343 record_buf
[0] = ARM_D0_REGNUM
+ reg_vd
;
11347 reg_vd
= (reg_vd
<< 1) | bit (arm_insn_r
->arm_insn
, 22);
11348 /* Record register D rather than pseudo register S. */
11349 record_buf
[0] = ARM_D0_REGNUM
+ reg_vd
/ 2;
11351 arm_insn_r
->reg_rec_count
= 1;
11354 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11355 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11359 /* Record handler for arm/thumb mode VFP data processing instructions. */
11362 arm_record_vfp_data_proc_insn (insn_decode_record
*arm_insn_r
)
11364 uint32_t opc1
, opc2
, opc3
, dp_op_sz
, bit_d
, reg_vd
;
11365 uint32_t record_buf
[4];
11366 enum insn_types
{INSN_T0
, INSN_T1
, INSN_T2
, INSN_T3
, INSN_INV
};
11367 enum insn_types curr_insn_type
= INSN_INV
;
11369 reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
11370 opc1
= bits (arm_insn_r
->arm_insn
, 20, 23);
11371 opc2
= bits (arm_insn_r
->arm_insn
, 16, 19);
11372 opc3
= bits (arm_insn_r
->arm_insn
, 6, 7);
11373 dp_op_sz
= bit (arm_insn_r
->arm_insn
, 8);
11374 bit_d
= bit (arm_insn_r
->arm_insn
, 22);
11375 /* Mask off the "D" bit. */
11376 opc1
= opc1
& ~0x04;
11378 /* Handle VMLA, VMLS. */
11381 if (bit (arm_insn_r
->arm_insn
, 10))
11383 if (bit (arm_insn_r
->arm_insn
, 6))
11384 curr_insn_type
= INSN_T0
;
11386 curr_insn_type
= INSN_T1
;
11391 curr_insn_type
= INSN_T1
;
11393 curr_insn_type
= INSN_T2
;
11396 /* Handle VNMLA, VNMLS, VNMUL. */
11397 else if (opc1
== 0x01)
11400 curr_insn_type
= INSN_T1
;
11402 curr_insn_type
= INSN_T2
;
11405 else if (opc1
== 0x02 && !(opc3
& 0x01))
11407 if (bit (arm_insn_r
->arm_insn
, 10))
11409 if (bit (arm_insn_r
->arm_insn
, 6))
11410 curr_insn_type
= INSN_T0
;
11412 curr_insn_type
= INSN_T1
;
11417 curr_insn_type
= INSN_T1
;
11419 curr_insn_type
= INSN_T2
;
11422 /* Handle VADD, VSUB. */
11423 else if (opc1
== 0x03)
11425 if (!bit (arm_insn_r
->arm_insn
, 9))
11427 if (bit (arm_insn_r
->arm_insn
, 6))
11428 curr_insn_type
= INSN_T0
;
11430 curr_insn_type
= INSN_T1
;
11435 curr_insn_type
= INSN_T1
;
11437 curr_insn_type
= INSN_T2
;
11441 else if (opc1
== 0x08)
11444 curr_insn_type
= INSN_T1
;
11446 curr_insn_type
= INSN_T2
;
11448 /* Handle all other vfp data processing instructions. */
11449 else if (opc1
== 0x0b)
11452 if (!(opc3
& 0x01) || (opc2
== 0x00 && opc3
== 0x01))
11454 if (bit (arm_insn_r
->arm_insn
, 4))
11456 if (bit (arm_insn_r
->arm_insn
, 6))
11457 curr_insn_type
= INSN_T0
;
11459 curr_insn_type
= INSN_T1
;
11464 curr_insn_type
= INSN_T1
;
11466 curr_insn_type
= INSN_T2
;
11469 /* Handle VNEG and VABS. */
11470 else if ((opc2
== 0x01 && opc3
== 0x01)
11471 || (opc2
== 0x00 && opc3
== 0x03))
11473 if (!bit (arm_insn_r
->arm_insn
, 11))
11475 if (bit (arm_insn_r
->arm_insn
, 6))
11476 curr_insn_type
= INSN_T0
;
11478 curr_insn_type
= INSN_T1
;
11483 curr_insn_type
= INSN_T1
;
11485 curr_insn_type
= INSN_T2
;
11488 /* Handle VSQRT. */
11489 else if (opc2
== 0x01 && opc3
== 0x03)
11492 curr_insn_type
= INSN_T1
;
11494 curr_insn_type
= INSN_T2
;
11497 else if (opc2
== 0x07 && opc3
== 0x03)
11500 curr_insn_type
= INSN_T1
;
11502 curr_insn_type
= INSN_T2
;
11504 else if (opc3
& 0x01)
11507 if ((opc2
== 0x08) || (opc2
& 0x0e) == 0x0c)
11509 if (!bit (arm_insn_r
->arm_insn
, 18))
11510 curr_insn_type
= INSN_T2
;
11514 curr_insn_type
= INSN_T1
;
11516 curr_insn_type
= INSN_T2
;
11520 else if ((opc2
& 0x0e) == 0x0a || (opc2
& 0x0e) == 0x0e)
11523 curr_insn_type
= INSN_T1
;
11525 curr_insn_type
= INSN_T2
;
11527 /* Handle VCVTB, VCVTT. */
11528 else if ((opc2
& 0x0e) == 0x02)
11529 curr_insn_type
= INSN_T2
;
11530 /* Handle VCMP, VCMPE. */
11531 else if ((opc2
& 0x0e) == 0x04)
11532 curr_insn_type
= INSN_T3
;
11536 switch (curr_insn_type
)
11539 reg_vd
= reg_vd
| (bit_d
<< 4);
11540 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
11541 record_buf
[1] = reg_vd
+ ARM_D0_REGNUM
+ 1;
11542 arm_insn_r
->reg_rec_count
= 2;
11546 reg_vd
= reg_vd
| (bit_d
<< 4);
11547 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
11548 arm_insn_r
->reg_rec_count
= 1;
11552 reg_vd
= (reg_vd
<< 1) | bit_d
;
11553 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
11554 arm_insn_r
->reg_rec_count
= 1;
11558 record_buf
[0] = ARM_FPSCR_REGNUM
;
11559 arm_insn_r
->reg_rec_count
= 1;
11563 gdb_assert_not_reached ("no decoding pattern found");
11567 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11571 /* Handling opcode 110 insns. */
11574 arm_record_asimd_vfp_coproc (insn_decode_record
*arm_insn_r
)
11576 uint32_t op1
, op1_ebit
, coproc
;
11578 coproc
= bits (arm_insn_r
->arm_insn
, 8, 11);
11579 op1
= bits (arm_insn_r
->arm_insn
, 20, 25);
11580 op1_ebit
= bit (arm_insn_r
->arm_insn
, 20);
11582 if ((coproc
& 0x0e) == 0x0a)
11584 /* Handle extension register ld/st instructions. */
11586 return arm_record_exreg_ld_st_insn (arm_insn_r
);
11588 /* 64-bit transfers between arm core and extension registers. */
11589 if ((op1
& 0x3e) == 0x04)
11590 return arm_record_exreg_ld_st_insn (arm_insn_r
);
11594 /* Handle coprocessor ld/st instructions. */
11599 return arm_record_unsupported_insn (arm_insn_r
);
11602 return arm_record_unsupported_insn (arm_insn_r
);
11605 /* Move to coprocessor from two arm core registers. */
11607 return arm_record_unsupported_insn (arm_insn_r
);
11609 /* Move to two arm core registers from coprocessor. */
11614 reg_t
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11615 reg_t
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
11616 arm_insn_r
->reg_rec_count
= 2;
11618 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, reg_t
);
11622 return arm_record_unsupported_insn (arm_insn_r
);
11625 /* Handling opcode 111 insns. */
11628 arm_record_coproc_data_proc (insn_decode_record
*arm_insn_r
)
11630 uint32_t op
, op1_ebit
, coproc
, bits_24_25
;
11631 struct gdbarch_tdep
*tdep
= gdbarch_tdep (arm_insn_r
->gdbarch
);
11632 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11634 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 24, 27);
11635 coproc
= bits (arm_insn_r
->arm_insn
, 8, 11);
11636 op1_ebit
= bit (arm_insn_r
->arm_insn
, 20);
11637 op
= bit (arm_insn_r
->arm_insn
, 4);
11638 bits_24_25
= bits (arm_insn_r
->arm_insn
, 24, 25);
11640 /* Handle arm SWI/SVC system call instructions. */
11641 if (bits_24_25
== 0x3)
11643 if (tdep
->arm_syscall_record
!= NULL
)
11645 ULONGEST svc_operand
, svc_number
;
11647 svc_operand
= (0x00ffffff & arm_insn_r
->arm_insn
);
11649 if (svc_operand
) /* OABI. */
11650 svc_number
= svc_operand
- 0x900000;
11652 regcache_raw_read_unsigned (reg_cache
, 7, &svc_number
);
11654 return tdep
->arm_syscall_record (reg_cache
, svc_number
);
11658 printf_unfiltered (_("no syscall record support\n"));
11662 else if (bits_24_25
== 0x02)
11666 if ((coproc
& 0x0e) == 0x0a)
11668 /* 8, 16, and 32-bit transfer */
11669 return arm_record_vdata_transfer_insn (arm_insn_r
);
11676 uint32_t record_buf
[1];
11678 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11679 if (record_buf
[0] == 15)
11680 record_buf
[0] = ARM_PS_REGNUM
;
11682 arm_insn_r
->reg_rec_count
= 1;
11683 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
,
11696 if ((coproc
& 0x0e) == 0x0a)
11698 /* VFP data-processing instructions. */
11699 return arm_record_vfp_data_proc_insn (arm_insn_r
);
11710 unsigned int op1
= bits (arm_insn_r
->arm_insn
, 20, 25);
11714 if ((coproc
& 0x0e) != 0x0a)
11720 else if (op1
== 4 || op1
== 5)
11722 if ((coproc
& 0x0e) == 0x0a)
11724 /* 64-bit transfers between ARM core and extension */
11733 else if (op1
== 0 || op1
== 1)
11740 if ((coproc
& 0x0e) == 0x0a)
11742 /* Extension register load/store */
11746 /* STC, STC2, LDC, LDC2 */
11755 /* Handling opcode 000 insns. */
11758 thumb_record_shift_add_sub (insn_decode_record
*thumb_insn_r
)
11760 uint32_t record_buf
[8];
11761 uint32_t reg_src1
= 0;
11763 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
11765 record_buf
[0] = ARM_PS_REGNUM
;
11766 record_buf
[1] = reg_src1
;
11767 thumb_insn_r
->reg_rec_count
= 2;
11769 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
11775 /* Handling opcode 001 insns. */
11778 thumb_record_add_sub_cmp_mov (insn_decode_record
*thumb_insn_r
)
11780 uint32_t record_buf
[8];
11781 uint32_t reg_src1
= 0;
11783 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
11785 record_buf
[0] = ARM_PS_REGNUM
;
11786 record_buf
[1] = reg_src1
;
11787 thumb_insn_r
->reg_rec_count
= 2;
11789 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
11794 /* Handling opcode 010 insns. */
11797 thumb_record_ld_st_reg_offset (insn_decode_record
*thumb_insn_r
)
11799 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
11800 uint32_t record_buf
[8], record_buf_mem
[8];
11802 uint32_t reg_src1
= 0, reg_src2
= 0;
11803 uint32_t opcode1
= 0, opcode2
= 0, opcode3
= 0;
11805 ULONGEST u_regval
[2] = {0};
11807 opcode1
= bits (thumb_insn_r
->arm_insn
, 10, 12);
11809 if (bit (thumb_insn_r
->arm_insn
, 12))
11811 /* Handle load/store register offset. */
11812 uint32_t opB
= bits (thumb_insn_r
->arm_insn
, 9, 11);
11814 if (in_inclusive_range (opB
, 4U, 7U))
11816 /* LDR(2), LDRB(2) , LDRH(2), LDRSB, LDRSH. */
11817 reg_src1
= bits (thumb_insn_r
->arm_insn
,0, 2);
11818 record_buf
[0] = reg_src1
;
11819 thumb_insn_r
->reg_rec_count
= 1;
11821 else if (in_inclusive_range (opB
, 0U, 2U))
11823 /* STR(2), STRB(2), STRH(2) . */
11824 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
11825 reg_src2
= bits (thumb_insn_r
->arm_insn
, 6, 8);
11826 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
11827 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
11829 record_buf_mem
[0] = 4; /* STR (2). */
11831 record_buf_mem
[0] = 1; /* STRB (2). */
11833 record_buf_mem
[0] = 2; /* STRH (2). */
11834 record_buf_mem
[1] = u_regval
[0] + u_regval
[1];
11835 thumb_insn_r
->mem_rec_count
= 1;
11838 else if (bit (thumb_insn_r
->arm_insn
, 11))
11840 /* Handle load from literal pool. */
11842 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
11843 record_buf
[0] = reg_src1
;
11844 thumb_insn_r
->reg_rec_count
= 1;
11848 /* Special data instructions and branch and exchange */
11849 opcode2
= bits (thumb_insn_r
->arm_insn
, 8, 9);
11850 opcode3
= bits (thumb_insn_r
->arm_insn
, 0, 2);
11851 if ((3 == opcode2
) && (!opcode3
))
11853 /* Branch with exchange. */
11854 record_buf
[0] = ARM_PS_REGNUM
;
11855 thumb_insn_r
->reg_rec_count
= 1;
11859 /* Format 8; special data processing insns. */
11860 record_buf
[0] = ARM_PS_REGNUM
;
11861 record_buf
[1] = (bit (thumb_insn_r
->arm_insn
, 7) << 3
11862 | bits (thumb_insn_r
->arm_insn
, 0, 2));
11863 thumb_insn_r
->reg_rec_count
= 2;
11868 /* Format 5; data processing insns. */
11869 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
11870 if (bit (thumb_insn_r
->arm_insn
, 7))
11872 reg_src1
= reg_src1
+ 8;
11874 record_buf
[0] = ARM_PS_REGNUM
;
11875 record_buf
[1] = reg_src1
;
11876 thumb_insn_r
->reg_rec_count
= 2;
11879 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
11880 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
11886 /* Handling opcode 001 insns. */
11889 thumb_record_ld_st_imm_offset (insn_decode_record
*thumb_insn_r
)
11891 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
11892 uint32_t record_buf
[8], record_buf_mem
[8];
11894 uint32_t reg_src1
= 0;
11895 uint32_t opcode
= 0, immed_5
= 0;
11897 ULONGEST u_regval
= 0;
11899 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
11904 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
11905 record_buf
[0] = reg_src1
;
11906 thumb_insn_r
->reg_rec_count
= 1;
11911 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
11912 immed_5
= bits (thumb_insn_r
->arm_insn
, 6, 10);
11913 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
11914 record_buf_mem
[0] = 4;
11915 record_buf_mem
[1] = u_regval
+ (immed_5
* 4);
11916 thumb_insn_r
->mem_rec_count
= 1;
11919 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
11920 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
11926 /* Handling opcode 100 insns. */
11929 thumb_record_ld_st_stack (insn_decode_record
*thumb_insn_r
)
11931 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
11932 uint32_t record_buf
[8], record_buf_mem
[8];
11934 uint32_t reg_src1
= 0;
11935 uint32_t opcode
= 0, immed_8
= 0, immed_5
= 0;
11937 ULONGEST u_regval
= 0;
11939 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
11944 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
11945 record_buf
[0] = reg_src1
;
11946 thumb_insn_r
->reg_rec_count
= 1;
11948 else if (1 == opcode
)
11951 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
11952 record_buf
[0] = reg_src1
;
11953 thumb_insn_r
->reg_rec_count
= 1;
11955 else if (2 == opcode
)
11958 immed_8
= bits (thumb_insn_r
->arm_insn
, 0, 7);
11959 regcache_raw_read_unsigned (reg_cache
, ARM_SP_REGNUM
, &u_regval
);
11960 record_buf_mem
[0] = 4;
11961 record_buf_mem
[1] = u_regval
+ (immed_8
* 4);
11962 thumb_insn_r
->mem_rec_count
= 1;
11964 else if (0 == opcode
)
11967 immed_5
= bits (thumb_insn_r
->arm_insn
, 6, 10);
11968 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
11969 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
11970 record_buf_mem
[0] = 2;
11971 record_buf_mem
[1] = u_regval
+ (immed_5
* 2);
11972 thumb_insn_r
->mem_rec_count
= 1;
11975 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
11976 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
11982 /* Handling opcode 101 insns. */
11985 thumb_record_misc (insn_decode_record
*thumb_insn_r
)
11987 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
11989 uint32_t opcode
= 0;
11990 uint32_t register_bits
= 0, register_count
= 0;
11991 uint32_t index
= 0, start_address
= 0;
11992 uint32_t record_buf
[24], record_buf_mem
[48];
11995 ULONGEST u_regval
= 0;
11997 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
11999 if (opcode
== 0 || opcode
== 1)
12001 /* ADR and ADD (SP plus immediate) */
12003 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12004 record_buf
[0] = reg_src1
;
12005 thumb_insn_r
->reg_rec_count
= 1;
12009 /* Miscellaneous 16-bit instructions */
12010 uint32_t opcode2
= bits (thumb_insn_r
->arm_insn
, 8, 11);
12015 /* SETEND and CPS */
12018 /* ADD/SUB (SP plus immediate) */
12019 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12020 record_buf
[0] = ARM_SP_REGNUM
;
12021 thumb_insn_r
->reg_rec_count
= 1;
12023 case 1: /* fall through */
12024 case 3: /* fall through */
12025 case 9: /* fall through */
12030 /* SXTH, SXTB, UXTH, UXTB */
12031 record_buf
[0] = bits (thumb_insn_r
->arm_insn
, 0, 2);
12032 thumb_insn_r
->reg_rec_count
= 1;
12034 case 4: /* fall through */
12037 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
12038 regcache_raw_read_unsigned (reg_cache
, ARM_SP_REGNUM
, &u_regval
);
12039 while (register_bits
)
12041 if (register_bits
& 0x00000001)
12043 register_bits
= register_bits
>> 1;
12045 start_address
= u_regval
- \
12046 (4 * (bit (thumb_insn_r
->arm_insn
, 8) + register_count
));
12047 thumb_insn_r
->mem_rec_count
= register_count
;
12048 while (register_count
)
12050 record_buf_mem
[(register_count
* 2) - 1] = start_address
;
12051 record_buf_mem
[(register_count
* 2) - 2] = 4;
12052 start_address
= start_address
+ 4;
12055 record_buf
[0] = ARM_SP_REGNUM
;
12056 thumb_insn_r
->reg_rec_count
= 1;
12059 /* REV, REV16, REVSH */
12060 record_buf
[0] = bits (thumb_insn_r
->arm_insn
, 0, 2);
12061 thumb_insn_r
->reg_rec_count
= 1;
12063 case 12: /* fall through */
12066 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
12067 while (register_bits
)
12069 if (register_bits
& 0x00000001)
12070 record_buf
[index
++] = register_count
;
12071 register_bits
= register_bits
>> 1;
12074 record_buf
[index
++] = ARM_PS_REGNUM
;
12075 record_buf
[index
++] = ARM_SP_REGNUM
;
12076 thumb_insn_r
->reg_rec_count
= index
;
12080 /* Handle enhanced software breakpoint insn, BKPT. */
12081 /* CPSR is changed to be executed in ARM state, disabling normal
12082 interrupts, entering abort mode. */
12083 /* According to high vector configuration PC is set. */
12084 /* User hits breakpoint and type reverse, in that case, we need to go back with
12085 previous CPSR and Program Counter. */
12086 record_buf
[0] = ARM_PS_REGNUM
;
12087 record_buf
[1] = ARM_LR_REGNUM
;
12088 thumb_insn_r
->reg_rec_count
= 2;
12089 /* We need to save SPSR value, which is not yet done. */
12090 printf_unfiltered (_("Process record does not support instruction "
12091 "0x%0x at address %s.\n"),
12092 thumb_insn_r
->arm_insn
,
12093 paddress (thumb_insn_r
->gdbarch
,
12094 thumb_insn_r
->this_addr
));
12098 /* If-Then, and hints */
12105 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
12106 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
12112 /* Handling opcode 110 insns. */
12115 thumb_record_ldm_stm_swi (insn_decode_record
*thumb_insn_r
)
12117 struct gdbarch_tdep
*tdep
= gdbarch_tdep (thumb_insn_r
->gdbarch
);
12118 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
12120 uint32_t ret
= 0; /* function return value: -1:record failure ; 0:success */
12121 uint32_t reg_src1
= 0;
12122 uint32_t opcode1
= 0, opcode2
= 0, register_bits
= 0, register_count
= 0;
12123 uint32_t index
= 0, start_address
= 0;
12124 uint32_t record_buf
[24], record_buf_mem
[48];
12126 ULONGEST u_regval
= 0;
12128 opcode1
= bits (thumb_insn_r
->arm_insn
, 8, 12);
12129 opcode2
= bits (thumb_insn_r
->arm_insn
, 11, 12);
12135 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
12137 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12138 while (register_bits
)
12140 if (register_bits
& 0x00000001)
12141 record_buf
[index
++] = register_count
;
12142 register_bits
= register_bits
>> 1;
12145 record_buf
[index
++] = reg_src1
;
12146 thumb_insn_r
->reg_rec_count
= index
;
12148 else if (0 == opcode2
)
12150 /* It handles both STMIA. */
12151 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
12153 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12154 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
12155 while (register_bits
)
12157 if (register_bits
& 0x00000001)
12159 register_bits
= register_bits
>> 1;
12161 start_address
= u_regval
;
12162 thumb_insn_r
->mem_rec_count
= register_count
;
12163 while (register_count
)
12165 record_buf_mem
[(register_count
* 2) - 1] = start_address
;
12166 record_buf_mem
[(register_count
* 2) - 2] = 4;
12167 start_address
= start_address
+ 4;
12171 else if (0x1F == opcode1
)
12173 /* Handle arm syscall insn. */
12174 if (tdep
->arm_syscall_record
!= NULL
)
12176 regcache_raw_read_unsigned (reg_cache
, 7, &u_regval
);
12177 ret
= tdep
->arm_syscall_record (reg_cache
, u_regval
);
12181 printf_unfiltered (_("no syscall record support\n"));
12186 /* B (1), conditional branch is automatically taken care in process_record,
12187 as PC is saved there. */
12189 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
12190 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
12196 /* Handling opcode 111 insns. */
12199 thumb_record_branch (insn_decode_record
*thumb_insn_r
)
12201 uint32_t record_buf
[8];
12202 uint32_t bits_h
= 0;
12204 bits_h
= bits (thumb_insn_r
->arm_insn
, 11, 12);
12206 if (2 == bits_h
|| 3 == bits_h
)
12209 record_buf
[0] = ARM_LR_REGNUM
;
12210 thumb_insn_r
->reg_rec_count
= 1;
12212 else if (1 == bits_h
)
12215 record_buf
[0] = ARM_PS_REGNUM
;
12216 record_buf
[1] = ARM_LR_REGNUM
;
12217 thumb_insn_r
->reg_rec_count
= 2;
12220 /* B(2) is automatically taken care in process_record, as PC is
12223 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
12228 /* Handler for thumb2 load/store multiple instructions. */
12231 thumb2_record_ld_st_multiple (insn_decode_record
*thumb2_insn_r
)
12233 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
12235 uint32_t reg_rn
, op
;
12236 uint32_t register_bits
= 0, register_count
= 0;
12237 uint32_t index
= 0, start_address
= 0;
12238 uint32_t record_buf
[24], record_buf_mem
[48];
12240 ULONGEST u_regval
= 0;
12242 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
12243 op
= bits (thumb2_insn_r
->arm_insn
, 23, 24);
12245 if (0 == op
|| 3 == op
)
12247 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
12249 /* Handle RFE instruction. */
12250 record_buf
[0] = ARM_PS_REGNUM
;
12251 thumb2_insn_r
->reg_rec_count
= 1;
12255 /* Handle SRS instruction after reading banked SP. */
12256 return arm_record_unsupported_insn (thumb2_insn_r
);
12259 else if (1 == op
|| 2 == op
)
12261 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
12263 /* Handle LDM/LDMIA/LDMFD and LDMDB/LDMEA instructions. */
12264 register_bits
= bits (thumb2_insn_r
->arm_insn
, 0, 15);
12265 while (register_bits
)
12267 if (register_bits
& 0x00000001)
12268 record_buf
[index
++] = register_count
;
12271 register_bits
= register_bits
>> 1;
12273 record_buf
[index
++] = reg_rn
;
12274 record_buf
[index
++] = ARM_PS_REGNUM
;
12275 thumb2_insn_r
->reg_rec_count
= index
;
12279 /* Handle STM/STMIA/STMEA and STMDB/STMFD. */
12280 register_bits
= bits (thumb2_insn_r
->arm_insn
, 0, 15);
12281 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
12282 while (register_bits
)
12284 if (register_bits
& 0x00000001)
12287 register_bits
= register_bits
>> 1;
12292 /* Start address calculation for LDMDB/LDMEA. */
12293 start_address
= u_regval
;
12297 /* Start address calculation for LDMDB/LDMEA. */
12298 start_address
= u_regval
- register_count
* 4;
12301 thumb2_insn_r
->mem_rec_count
= register_count
;
12302 while (register_count
)
12304 record_buf_mem
[register_count
* 2 - 1] = start_address
;
12305 record_buf_mem
[register_count
* 2 - 2] = 4;
12306 start_address
= start_address
+ 4;
12309 record_buf
[0] = reg_rn
;
12310 record_buf
[1] = ARM_PS_REGNUM
;
12311 thumb2_insn_r
->reg_rec_count
= 2;
12315 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
12317 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12319 return ARM_RECORD_SUCCESS
;
12322 /* Handler for thumb2 load/store (dual/exclusive) and table branch
12326 thumb2_record_ld_st_dual_ex_tbb (insn_decode_record
*thumb2_insn_r
)
12328 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
12330 uint32_t reg_rd
, reg_rn
, offset_imm
;
12331 uint32_t reg_dest1
, reg_dest2
;
12332 uint32_t address
, offset_addr
;
12333 uint32_t record_buf
[8], record_buf_mem
[8];
12334 uint32_t op1
, op2
, op3
;
12336 ULONGEST u_regval
[2];
12338 op1
= bits (thumb2_insn_r
->arm_insn
, 23, 24);
12339 op2
= bits (thumb2_insn_r
->arm_insn
, 20, 21);
12340 op3
= bits (thumb2_insn_r
->arm_insn
, 4, 7);
12342 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
12344 if(!(1 == op1
&& 1 == op2
&& (0 == op3
|| 1 == op3
)))
12346 reg_dest1
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
12347 record_buf
[0] = reg_dest1
;
12348 record_buf
[1] = ARM_PS_REGNUM
;
12349 thumb2_insn_r
->reg_rec_count
= 2;
12352 if (3 == op2
|| (op1
& 2) || (1 == op1
&& 1 == op2
&& 7 == op3
))
12354 reg_dest2
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
12355 record_buf
[2] = reg_dest2
;
12356 thumb2_insn_r
->reg_rec_count
= 3;
12361 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
12362 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
[0]);
12364 if (0 == op1
&& 0 == op2
)
12366 /* Handle STREX. */
12367 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
12368 address
= u_regval
[0] + (offset_imm
* 4);
12369 record_buf_mem
[0] = 4;
12370 record_buf_mem
[1] = address
;
12371 thumb2_insn_r
->mem_rec_count
= 1;
12372 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
12373 record_buf
[0] = reg_rd
;
12374 thumb2_insn_r
->reg_rec_count
= 1;
12376 else if (1 == op1
&& 0 == op2
)
12378 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
12379 record_buf
[0] = reg_rd
;
12380 thumb2_insn_r
->reg_rec_count
= 1;
12381 address
= u_regval
[0];
12382 record_buf_mem
[1] = address
;
12386 /* Handle STREXB. */
12387 record_buf_mem
[0] = 1;
12388 thumb2_insn_r
->mem_rec_count
= 1;
12392 /* Handle STREXH. */
12393 record_buf_mem
[0] = 2 ;
12394 thumb2_insn_r
->mem_rec_count
= 1;
12398 /* Handle STREXD. */
12399 address
= u_regval
[0];
12400 record_buf_mem
[0] = 4;
12401 record_buf_mem
[2] = 4;
12402 record_buf_mem
[3] = address
+ 4;
12403 thumb2_insn_r
->mem_rec_count
= 2;
12408 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
12410 if (bit (thumb2_insn_r
->arm_insn
, 24))
12412 if (bit (thumb2_insn_r
->arm_insn
, 23))
12413 offset_addr
= u_regval
[0] + (offset_imm
* 4);
12415 offset_addr
= u_regval
[0] - (offset_imm
* 4);
12417 address
= offset_addr
;
12420 address
= u_regval
[0];
12422 record_buf_mem
[0] = 4;
12423 record_buf_mem
[1] = address
;
12424 record_buf_mem
[2] = 4;
12425 record_buf_mem
[3] = address
+ 4;
12426 thumb2_insn_r
->mem_rec_count
= 2;
12427 record_buf
[0] = reg_rn
;
12428 thumb2_insn_r
->reg_rec_count
= 1;
12432 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12434 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
12436 return ARM_RECORD_SUCCESS
;
12439 /* Handler for thumb2 data processing (shift register and modified immediate)
12443 thumb2_record_data_proc_sreg_mimm (insn_decode_record
*thumb2_insn_r
)
12445 uint32_t reg_rd
, op
;
12446 uint32_t record_buf
[8];
12448 op
= bits (thumb2_insn_r
->arm_insn
, 21, 24);
12449 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
12451 if ((0 == op
|| 4 == op
|| 8 == op
|| 13 == op
) && 15 == reg_rd
)
12453 record_buf
[0] = ARM_PS_REGNUM
;
12454 thumb2_insn_r
->reg_rec_count
= 1;
12458 record_buf
[0] = reg_rd
;
12459 record_buf
[1] = ARM_PS_REGNUM
;
12460 thumb2_insn_r
->reg_rec_count
= 2;
12463 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12465 return ARM_RECORD_SUCCESS
;
12468 /* Generic handler for thumb2 instructions which effect destination and PS
12472 thumb2_record_ps_dest_generic (insn_decode_record
*thumb2_insn_r
)
12475 uint32_t record_buf
[8];
12477 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
12479 record_buf
[0] = reg_rd
;
12480 record_buf
[1] = ARM_PS_REGNUM
;
12481 thumb2_insn_r
->reg_rec_count
= 2;
12483 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12485 return ARM_RECORD_SUCCESS
;
12488 /* Handler for thumb2 branch and miscellaneous control instructions. */
12491 thumb2_record_branch_misc_cntrl (insn_decode_record
*thumb2_insn_r
)
12493 uint32_t op
, op1
, op2
;
12494 uint32_t record_buf
[8];
12496 op
= bits (thumb2_insn_r
->arm_insn
, 20, 26);
12497 op1
= bits (thumb2_insn_r
->arm_insn
, 12, 14);
12498 op2
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
12500 /* Handle MSR insn. */
12501 if (!(op1
& 0x2) && 0x38 == op
)
12505 /* CPSR is going to be changed. */
12506 record_buf
[0] = ARM_PS_REGNUM
;
12507 thumb2_insn_r
->reg_rec_count
= 1;
12511 arm_record_unsupported_insn(thumb2_insn_r
);
12515 else if (4 == (op1
& 0x5) || 5 == (op1
& 0x5))
12518 record_buf
[0] = ARM_PS_REGNUM
;
12519 record_buf
[1] = ARM_LR_REGNUM
;
12520 thumb2_insn_r
->reg_rec_count
= 2;
12523 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12525 return ARM_RECORD_SUCCESS
;
12528 /* Handler for thumb2 store single data item instructions. */
12531 thumb2_record_str_single_data (insn_decode_record
*thumb2_insn_r
)
12533 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
12535 uint32_t reg_rn
, reg_rm
, offset_imm
, shift_imm
;
12536 uint32_t address
, offset_addr
;
12537 uint32_t record_buf
[8], record_buf_mem
[8];
12540 ULONGEST u_regval
[2];
12542 op1
= bits (thumb2_insn_r
->arm_insn
, 21, 23);
12543 op2
= bits (thumb2_insn_r
->arm_insn
, 6, 11);
12544 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
12545 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
[0]);
12547 if (bit (thumb2_insn_r
->arm_insn
, 23))
12550 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 11);
12551 offset_addr
= u_regval
[0] + offset_imm
;
12552 address
= offset_addr
;
12557 if ((0 == op1
|| 1 == op1
|| 2 == op1
) && !(op2
& 0x20))
12559 /* Handle STRB (register). */
12560 reg_rm
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
12561 regcache_raw_read_unsigned (reg_cache
, reg_rm
, &u_regval
[1]);
12562 shift_imm
= bits (thumb2_insn_r
->arm_insn
, 4, 5);
12563 offset_addr
= u_regval
[1] << shift_imm
;
12564 address
= u_regval
[0] + offset_addr
;
12568 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
12569 if (bit (thumb2_insn_r
->arm_insn
, 10))
12571 if (bit (thumb2_insn_r
->arm_insn
, 9))
12572 offset_addr
= u_regval
[0] + offset_imm
;
12574 offset_addr
= u_regval
[0] - offset_imm
;
12576 address
= offset_addr
;
12579 address
= u_regval
[0];
12585 /* Store byte instructions. */
12588 record_buf_mem
[0] = 1;
12590 /* Store half word instructions. */
12593 record_buf_mem
[0] = 2;
12595 /* Store word instructions. */
12598 record_buf_mem
[0] = 4;
12602 gdb_assert_not_reached ("no decoding pattern found");
12606 record_buf_mem
[1] = address
;
12607 thumb2_insn_r
->mem_rec_count
= 1;
12608 record_buf
[0] = reg_rn
;
12609 thumb2_insn_r
->reg_rec_count
= 1;
12611 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12613 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
12615 return ARM_RECORD_SUCCESS
;
12618 /* Handler for thumb2 load memory hints instructions. */
12621 thumb2_record_ld_mem_hints (insn_decode_record
*thumb2_insn_r
)
12623 uint32_t record_buf
[8];
12624 uint32_t reg_rt
, reg_rn
;
12626 reg_rt
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
12627 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
12629 if (ARM_PC_REGNUM
!= reg_rt
)
12631 record_buf
[0] = reg_rt
;
12632 record_buf
[1] = reg_rn
;
12633 record_buf
[2] = ARM_PS_REGNUM
;
12634 thumb2_insn_r
->reg_rec_count
= 3;
12636 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12638 return ARM_RECORD_SUCCESS
;
12641 return ARM_RECORD_FAILURE
;
12644 /* Handler for thumb2 load word instructions. */
12647 thumb2_record_ld_word (insn_decode_record
*thumb2_insn_r
)
12649 uint32_t record_buf
[8];
12651 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
12652 record_buf
[1] = ARM_PS_REGNUM
;
12653 thumb2_insn_r
->reg_rec_count
= 2;
12655 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12657 return ARM_RECORD_SUCCESS
;
12660 /* Handler for thumb2 long multiply, long multiply accumulate, and
12661 divide instructions. */
12664 thumb2_record_lmul_lmla_div (insn_decode_record
*thumb2_insn_r
)
12666 uint32_t opcode1
= 0, opcode2
= 0;
12667 uint32_t record_buf
[8];
12669 opcode1
= bits (thumb2_insn_r
->arm_insn
, 20, 22);
12670 opcode2
= bits (thumb2_insn_r
->arm_insn
, 4, 7);
12672 if (0 == opcode1
|| 2 == opcode1
|| (opcode1
>= 4 && opcode1
<= 6))
12674 /* Handle SMULL, UMULL, SMULAL. */
12675 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
12676 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 16, 19);
12677 record_buf
[1] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
12678 record_buf
[2] = ARM_PS_REGNUM
;
12679 thumb2_insn_r
->reg_rec_count
= 3;
12681 else if (1 == opcode1
|| 3 == opcode2
)
12683 /* Handle SDIV and UDIV. */
12684 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 16, 19);
12685 record_buf
[1] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
12686 record_buf
[2] = ARM_PS_REGNUM
;
12687 thumb2_insn_r
->reg_rec_count
= 3;
12690 return ARM_RECORD_FAILURE
;
12692 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12694 return ARM_RECORD_SUCCESS
;
12697 /* Record handler for thumb32 coprocessor instructions. */
12700 thumb2_record_coproc_insn (insn_decode_record
*thumb2_insn_r
)
12702 if (bit (thumb2_insn_r
->arm_insn
, 25))
12703 return arm_record_coproc_data_proc (thumb2_insn_r
);
12705 return arm_record_asimd_vfp_coproc (thumb2_insn_r
);
12708 /* Record handler for advance SIMD structure load/store instructions. */
12711 thumb2_record_asimd_struct_ld_st (insn_decode_record
*thumb2_insn_r
)
12713 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
12714 uint32_t l_bit
, a_bit
, b_bits
;
12715 uint32_t record_buf
[128], record_buf_mem
[128];
12716 uint32_t reg_rn
, reg_vd
, address
, f_elem
;
12717 uint32_t index_r
= 0, index_e
= 0, bf_regs
= 0, index_m
= 0, loop_t
= 0;
12720 l_bit
= bit (thumb2_insn_r
->arm_insn
, 21);
12721 a_bit
= bit (thumb2_insn_r
->arm_insn
, 23);
12722 b_bits
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
12723 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
12724 reg_vd
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
12725 reg_vd
= (bit (thumb2_insn_r
->arm_insn
, 22) << 4) | reg_vd
;
12726 f_ebytes
= (1 << bits (thumb2_insn_r
->arm_insn
, 6, 7));
12727 f_elem
= 8 / f_ebytes
;
12731 ULONGEST u_regval
= 0;
12732 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
12733 address
= u_regval
;
12738 if (b_bits
== 0x02 || b_bits
== 0x0a || (b_bits
& 0x0e) == 0x06)
12740 if (b_bits
== 0x07)
12742 else if (b_bits
== 0x0a)
12744 else if (b_bits
== 0x06)
12746 else if (b_bits
== 0x02)
12751 for (index_r
= 0; index_r
< bf_regs
; index_r
++)
12753 for (index_e
= 0; index_e
< f_elem
; index_e
++)
12755 record_buf_mem
[index_m
++] = f_ebytes
;
12756 record_buf_mem
[index_m
++] = address
;
12757 address
= address
+ f_ebytes
;
12758 thumb2_insn_r
->mem_rec_count
+= 1;
12763 else if (b_bits
== 0x03 || (b_bits
& 0x0e) == 0x08)
12765 if (b_bits
== 0x09 || b_bits
== 0x08)
12767 else if (b_bits
== 0x03)
12772 for (index_r
= 0; index_r
< bf_regs
; index_r
++)
12773 for (index_e
= 0; index_e
< f_elem
; index_e
++)
12775 for (loop_t
= 0; loop_t
< 2; loop_t
++)
12777 record_buf_mem
[index_m
++] = f_ebytes
;
12778 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
12779 thumb2_insn_r
->mem_rec_count
+= 1;
12781 address
= address
+ (2 * f_ebytes
);
12785 else if ((b_bits
& 0x0e) == 0x04)
12787 for (index_e
= 0; index_e
< f_elem
; index_e
++)
12789 for (loop_t
= 0; loop_t
< 3; loop_t
++)
12791 record_buf_mem
[index_m
++] = f_ebytes
;
12792 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
12793 thumb2_insn_r
->mem_rec_count
+= 1;
12795 address
= address
+ (3 * f_ebytes
);
12799 else if (!(b_bits
& 0x0e))
12801 for (index_e
= 0; index_e
< f_elem
; index_e
++)
12803 for (loop_t
= 0; loop_t
< 4; loop_t
++)
12805 record_buf_mem
[index_m
++] = f_ebytes
;
12806 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
12807 thumb2_insn_r
->mem_rec_count
+= 1;
12809 address
= address
+ (4 * f_ebytes
);
12815 uint8_t bft_size
= bits (thumb2_insn_r
->arm_insn
, 10, 11);
12817 if (bft_size
== 0x00)
12819 else if (bft_size
== 0x01)
12821 else if (bft_size
== 0x02)
12827 if (!(b_bits
& 0x0b) || b_bits
== 0x08)
12828 thumb2_insn_r
->mem_rec_count
= 1;
12830 else if ((b_bits
& 0x0b) == 0x01 || b_bits
== 0x09)
12831 thumb2_insn_r
->mem_rec_count
= 2;
12833 else if ((b_bits
& 0x0b) == 0x02 || b_bits
== 0x0a)
12834 thumb2_insn_r
->mem_rec_count
= 3;
12836 else if ((b_bits
& 0x0b) == 0x03 || b_bits
== 0x0b)
12837 thumb2_insn_r
->mem_rec_count
= 4;
12839 for (index_m
= 0; index_m
< thumb2_insn_r
->mem_rec_count
; index_m
++)
12841 record_buf_mem
[index_m
] = f_ebytes
;
12842 record_buf_mem
[index_m
] = address
+ (index_m
* f_ebytes
);
12851 if (b_bits
== 0x02 || b_bits
== 0x0a || (b_bits
& 0x0e) == 0x06)
12852 thumb2_insn_r
->reg_rec_count
= 1;
12854 else if (b_bits
== 0x03 || (b_bits
& 0x0e) == 0x08)
12855 thumb2_insn_r
->reg_rec_count
= 2;
12857 else if ((b_bits
& 0x0e) == 0x04)
12858 thumb2_insn_r
->reg_rec_count
= 3;
12860 else if (!(b_bits
& 0x0e))
12861 thumb2_insn_r
->reg_rec_count
= 4;
12866 if (!(b_bits
& 0x0b) || b_bits
== 0x08 || b_bits
== 0x0c)
12867 thumb2_insn_r
->reg_rec_count
= 1;
12869 else if ((b_bits
& 0x0b) == 0x01 || b_bits
== 0x09 || b_bits
== 0x0d)
12870 thumb2_insn_r
->reg_rec_count
= 2;
12872 else if ((b_bits
& 0x0b) == 0x02 || b_bits
== 0x0a || b_bits
== 0x0e)
12873 thumb2_insn_r
->reg_rec_count
= 3;
12875 else if ((b_bits
& 0x0b) == 0x03 || b_bits
== 0x0b || b_bits
== 0x0f)
12876 thumb2_insn_r
->reg_rec_count
= 4;
12878 for (index_r
= 0; index_r
< thumb2_insn_r
->reg_rec_count
; index_r
++)
12879 record_buf
[index_r
] = reg_vd
+ ARM_D0_REGNUM
+ index_r
;
12883 if (bits (thumb2_insn_r
->arm_insn
, 0, 3) != 15)
12885 record_buf
[index_r
] = reg_rn
;
12886 thumb2_insn_r
->reg_rec_count
+= 1;
12889 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
12891 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
12896 /* Decodes thumb2 instruction type and invokes its record handler. */
12898 static unsigned int
12899 thumb2_record_decode_insn_handler (insn_decode_record
*thumb2_insn_r
)
12901 uint32_t op
, op1
, op2
;
12903 op
= bit (thumb2_insn_r
->arm_insn
, 15);
12904 op1
= bits (thumb2_insn_r
->arm_insn
, 27, 28);
12905 op2
= bits (thumb2_insn_r
->arm_insn
, 20, 26);
12909 if (!(op2
& 0x64 ))
12911 /* Load/store multiple instruction. */
12912 return thumb2_record_ld_st_multiple (thumb2_insn_r
);
12914 else if ((op2
& 0x64) == 0x4)
12916 /* Load/store (dual/exclusive) and table branch instruction. */
12917 return thumb2_record_ld_st_dual_ex_tbb (thumb2_insn_r
);
12919 else if ((op2
& 0x60) == 0x20)
12921 /* Data-processing (shifted register). */
12922 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r
);
12924 else if (op2
& 0x40)
12926 /* Co-processor instructions. */
12927 return thumb2_record_coproc_insn (thumb2_insn_r
);
12930 else if (op1
== 0x02)
12934 /* Branches and miscellaneous control instructions. */
12935 return thumb2_record_branch_misc_cntrl (thumb2_insn_r
);
12937 else if (op2
& 0x20)
12939 /* Data-processing (plain binary immediate) instruction. */
12940 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
12944 /* Data-processing (modified immediate). */
12945 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r
);
12948 else if (op1
== 0x03)
12950 if (!(op2
& 0x71 ))
12952 /* Store single data item. */
12953 return thumb2_record_str_single_data (thumb2_insn_r
);
12955 else if (!((op2
& 0x71) ^ 0x10))
12957 /* Advanced SIMD or structure load/store instructions. */
12958 return thumb2_record_asimd_struct_ld_st (thumb2_insn_r
);
12960 else if (!((op2
& 0x67) ^ 0x01))
12962 /* Load byte, memory hints instruction. */
12963 return thumb2_record_ld_mem_hints (thumb2_insn_r
);
12965 else if (!((op2
& 0x67) ^ 0x03))
12967 /* Load halfword, memory hints instruction. */
12968 return thumb2_record_ld_mem_hints (thumb2_insn_r
);
12970 else if (!((op2
& 0x67) ^ 0x05))
12972 /* Load word instruction. */
12973 return thumb2_record_ld_word (thumb2_insn_r
);
12975 else if (!((op2
& 0x70) ^ 0x20))
12977 /* Data-processing (register) instruction. */
12978 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
12980 else if (!((op2
& 0x78) ^ 0x30))
12982 /* Multiply, multiply accumulate, abs diff instruction. */
12983 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
12985 else if (!((op2
& 0x78) ^ 0x38))
12987 /* Long multiply, long multiply accumulate, and divide. */
12988 return thumb2_record_lmul_lmla_div (thumb2_insn_r
);
12990 else if (op2
& 0x40)
12992 /* Co-processor instructions. */
12993 return thumb2_record_coproc_insn (thumb2_insn_r
);
13001 /* Abstract memory reader. */
13003 class abstract_memory_reader
13006 /* Read LEN bytes of target memory at address MEMADDR, placing the
13007 results in GDB's memory at BUF. Return true on success. */
13009 virtual bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) = 0;
13012 /* Instruction reader from real target. */
13014 class instruction_reader
: public abstract_memory_reader
13017 bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) override
13019 if (target_read_memory (memaddr
, buf
, len
))
13028 /* Extracts arm/thumb/thumb2 insn depending on the size, and returns 0 on success
13029 and positive val on failure. */
13032 extract_arm_insn (abstract_memory_reader
& reader
,
13033 insn_decode_record
*insn_record
, uint32_t insn_size
)
13035 gdb_byte buf
[insn_size
];
13037 memset (&buf
[0], 0, insn_size
);
13039 if (!reader
.read (insn_record
->this_addr
, buf
, insn_size
))
13041 insn_record
->arm_insn
= (uint32_t) extract_unsigned_integer (&buf
[0],
13043 gdbarch_byte_order_for_code (insn_record
->gdbarch
));
13047 typedef int (*sti_arm_hdl_fp_t
) (insn_decode_record
*);
13049 /* Decode arm/thumb insn depending on condition cods and opcodes; and
13053 decode_insn (abstract_memory_reader
&reader
, insn_decode_record
*arm_record
,
13054 record_type_t record_type
, uint32_t insn_size
)
13057 /* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm
13059 static const sti_arm_hdl_fp_t arm_handle_insn
[8] =
13061 arm_record_data_proc_misc_ld_str
, /* 000. */
13062 arm_record_data_proc_imm
, /* 001. */
13063 arm_record_ld_st_imm_offset
, /* 010. */
13064 arm_record_ld_st_reg_offset
, /* 011. */
13065 arm_record_ld_st_multiple
, /* 100. */
13066 arm_record_b_bl
, /* 101. */
13067 arm_record_asimd_vfp_coproc
, /* 110. */
13068 arm_record_coproc_data_proc
/* 111. */
13071 /* (Starting from numerical 0); bits 13,14,15 decodes type of thumb
13073 static const sti_arm_hdl_fp_t thumb_handle_insn
[8] =
13075 thumb_record_shift_add_sub
, /* 000. */
13076 thumb_record_add_sub_cmp_mov
, /* 001. */
13077 thumb_record_ld_st_reg_offset
, /* 010. */
13078 thumb_record_ld_st_imm_offset
, /* 011. */
13079 thumb_record_ld_st_stack
, /* 100. */
13080 thumb_record_misc
, /* 101. */
13081 thumb_record_ldm_stm_swi
, /* 110. */
13082 thumb_record_branch
/* 111. */
13085 uint32_t ret
= 0; /* return value: negative:failure 0:success. */
13086 uint32_t insn_id
= 0;
13088 if (extract_arm_insn (reader
, arm_record
, insn_size
))
13092 printf_unfiltered (_("Process record: error reading memory at "
13093 "addr %s len = %d.\n"),
13094 paddress (arm_record
->gdbarch
,
13095 arm_record
->this_addr
), insn_size
);
13099 else if (ARM_RECORD
== record_type
)
13101 arm_record
->cond
= bits (arm_record
->arm_insn
, 28, 31);
13102 insn_id
= bits (arm_record
->arm_insn
, 25, 27);
13104 if (arm_record
->cond
== 0xf)
13105 ret
= arm_record_extension_space (arm_record
);
13108 /* If this insn has fallen into extension space
13109 then we need not decode it anymore. */
13110 ret
= arm_handle_insn
[insn_id
] (arm_record
);
13112 if (ret
!= ARM_RECORD_SUCCESS
)
13114 arm_record_unsupported_insn (arm_record
);
13118 else if (THUMB_RECORD
== record_type
)
13120 /* As thumb does not have condition codes, we set negative. */
13121 arm_record
->cond
= -1;
13122 insn_id
= bits (arm_record
->arm_insn
, 13, 15);
13123 ret
= thumb_handle_insn
[insn_id
] (arm_record
);
13124 if (ret
!= ARM_RECORD_SUCCESS
)
13126 arm_record_unsupported_insn (arm_record
);
13130 else if (THUMB2_RECORD
== record_type
)
13132 /* As thumb does not have condition codes, we set negative. */
13133 arm_record
->cond
= -1;
13135 /* Swap first half of 32bit thumb instruction with second half. */
13136 arm_record
->arm_insn
13137 = (arm_record
->arm_insn
>> 16) | (arm_record
->arm_insn
<< 16);
13139 ret
= thumb2_record_decode_insn_handler (arm_record
);
13141 if (ret
!= ARM_RECORD_SUCCESS
)
13143 arm_record_unsupported_insn (arm_record
);
13149 /* Throw assertion. */
13150 gdb_assert_not_reached ("not a valid instruction, could not decode");
13157 namespace selftests
{
13159 /* Provide both 16-bit and 32-bit thumb instructions. */
13161 class instruction_reader_thumb
: public abstract_memory_reader
13164 template<size_t SIZE
>
13165 instruction_reader_thumb (enum bfd_endian endian
,
13166 const uint16_t (&insns
)[SIZE
])
13167 : m_endian (endian
), m_insns (insns
), m_insns_size (SIZE
)
13170 bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) override
13172 SELF_CHECK (len
== 4 || len
== 2);
13173 SELF_CHECK (memaddr
% 2 == 0);
13174 SELF_CHECK ((memaddr
/ 2) < m_insns_size
);
13176 store_unsigned_integer (buf
, 2, m_endian
, m_insns
[memaddr
/ 2]);
13179 store_unsigned_integer (&buf
[2], 2, m_endian
,
13180 m_insns
[memaddr
/ 2 + 1]);
13186 enum bfd_endian m_endian
;
13187 const uint16_t *m_insns
;
13188 size_t m_insns_size
;
13192 arm_record_test (void)
13194 struct gdbarch_info info
;
13195 gdbarch_info_init (&info
);
13196 info
.bfd_arch_info
= bfd_scan_arch ("arm");
13198 struct gdbarch
*gdbarch
= gdbarch_find_by_info (info
);
13200 SELF_CHECK (gdbarch
!= NULL
);
13202 /* 16-bit Thumb instructions. */
13204 insn_decode_record arm_record
;
13206 memset (&arm_record
, 0, sizeof (insn_decode_record
));
13207 arm_record
.gdbarch
= gdbarch
;
13209 static const uint16_t insns
[] = {
13210 /* db b2 uxtb r3, r3 */
13212 /* cd 58 ldr r5, [r1, r3] */
13216 enum bfd_endian endian
= gdbarch_byte_order_for_code (arm_record
.gdbarch
);
13217 instruction_reader_thumb
reader (endian
, insns
);
13218 int ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
13219 THUMB_INSN_SIZE_BYTES
);
13221 SELF_CHECK (ret
== 0);
13222 SELF_CHECK (arm_record
.mem_rec_count
== 0);
13223 SELF_CHECK (arm_record
.reg_rec_count
== 1);
13224 SELF_CHECK (arm_record
.arm_regs
[0] == 3);
13226 arm_record
.this_addr
+= 2;
13227 ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
13228 THUMB_INSN_SIZE_BYTES
);
13230 SELF_CHECK (ret
== 0);
13231 SELF_CHECK (arm_record
.mem_rec_count
== 0);
13232 SELF_CHECK (arm_record
.reg_rec_count
== 1);
13233 SELF_CHECK (arm_record
.arm_regs
[0] == 5);
13236 /* 32-bit Thumb-2 instructions. */
13238 insn_decode_record arm_record
;
13240 memset (&arm_record
, 0, sizeof (insn_decode_record
));
13241 arm_record
.gdbarch
= gdbarch
;
13243 static const uint16_t insns
[] = {
13244 /* 1d ee 70 7f mrc 15, 0, r7, cr13, cr0, {3} */
13248 enum bfd_endian endian
= gdbarch_byte_order_for_code (arm_record
.gdbarch
);
13249 instruction_reader_thumb
reader (endian
, insns
);
13250 int ret
= decode_insn (reader
, &arm_record
, THUMB2_RECORD
,
13251 THUMB2_INSN_SIZE_BYTES
);
13253 SELF_CHECK (ret
== 0);
13254 SELF_CHECK (arm_record
.mem_rec_count
== 0);
13255 SELF_CHECK (arm_record
.reg_rec_count
== 1);
13256 SELF_CHECK (arm_record
.arm_regs
[0] == 7);
13259 } // namespace selftests
13260 #endif /* GDB_SELF_TEST */
13262 /* Cleans up local record registers and memory allocations. */
13265 deallocate_reg_mem (insn_decode_record
*record
)
13267 xfree (record
->arm_regs
);
13268 xfree (record
->arm_mems
);
13272 /* Parse the current instruction and record the values of the registers and
13273 memory that will be changed in current instruction to record_arch_list".
13274 Return -1 if something is wrong. */
13277 arm_process_record (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
13278 CORE_ADDR insn_addr
)
13281 uint32_t no_of_rec
= 0;
13282 uint32_t ret
= 0; /* return value: -1:record failure ; 0:success */
13283 ULONGEST t_bit
= 0, insn_id
= 0;
13285 ULONGEST u_regval
= 0;
13287 insn_decode_record arm_record
;
13289 memset (&arm_record
, 0, sizeof (insn_decode_record
));
13290 arm_record
.regcache
= regcache
;
13291 arm_record
.this_addr
= insn_addr
;
13292 arm_record
.gdbarch
= gdbarch
;
13295 if (record_debug
> 1)
13297 fprintf_unfiltered (gdb_stdlog
, "Process record: arm_process_record "
13299 paddress (gdbarch
, arm_record
.this_addr
));
13302 instruction_reader reader
;
13303 if (extract_arm_insn (reader
, &arm_record
, 2))
13307 printf_unfiltered (_("Process record: error reading memory at "
13308 "addr %s len = %d.\n"),
13309 paddress (arm_record
.gdbarch
,
13310 arm_record
.this_addr
), 2);
13315 /* Check the insn, whether it is thumb or arm one. */
13317 t_bit
= arm_psr_thumb_bit (arm_record
.gdbarch
);
13318 regcache_raw_read_unsigned (arm_record
.regcache
, ARM_PS_REGNUM
, &u_regval
);
13321 if (!(u_regval
& t_bit
))
13323 /* We are decoding arm insn. */
13324 ret
= decode_insn (reader
, &arm_record
, ARM_RECORD
, ARM_INSN_SIZE_BYTES
);
13328 insn_id
= bits (arm_record
.arm_insn
, 11, 15);
13329 /* is it thumb2 insn? */
13330 if ((0x1D == insn_id
) || (0x1E == insn_id
) || (0x1F == insn_id
))
13332 ret
= decode_insn (reader
, &arm_record
, THUMB2_RECORD
,
13333 THUMB2_INSN_SIZE_BYTES
);
13337 /* We are decoding thumb insn. */
13338 ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
13339 THUMB_INSN_SIZE_BYTES
);
13345 /* Record registers. */
13346 record_full_arch_list_add_reg (arm_record
.regcache
, ARM_PC_REGNUM
);
13347 if (arm_record
.arm_regs
)
13349 for (no_of_rec
= 0; no_of_rec
< arm_record
.reg_rec_count
; no_of_rec
++)
13351 if (record_full_arch_list_add_reg
13352 (arm_record
.regcache
, arm_record
.arm_regs
[no_of_rec
]))
13356 /* Record memories. */
13357 if (arm_record
.arm_mems
)
13359 for (no_of_rec
= 0; no_of_rec
< arm_record
.mem_rec_count
; no_of_rec
++)
13361 if (record_full_arch_list_add_mem
13362 ((CORE_ADDR
)arm_record
.arm_mems
[no_of_rec
].addr
,
13363 arm_record
.arm_mems
[no_of_rec
].len
))
13368 if (record_full_arch_list_add_end ())
13373 deallocate_reg_mem (&arm_record
);
13378 /* See arm-tdep.h. */
13380 const target_desc
*
13381 arm_read_description (arm_fp_type fp_type
)
13383 struct target_desc
*tdesc
= tdesc_arm_list
[fp_type
];
13385 if (tdesc
== nullptr)
13387 tdesc
= arm_create_target_description (fp_type
);
13388 tdesc_arm_list
[fp_type
] = tdesc
;
13394 /* See arm-tdep.h. */
13396 const target_desc
*
13397 arm_read_mprofile_description (arm_m_profile_type m_type
)
13399 struct target_desc
*tdesc
= tdesc_arm_mprofile_list
[m_type
];
13401 if (tdesc
== nullptr)
13403 tdesc
= arm_create_mprofile_target_description (m_type
);
13404 tdesc_arm_mprofile_list
[m_type
] = tdesc
;